From 4a6ab6ce956487dd635a9bd076e8bd0f236519ba Mon Sep 17 00:00:00 2001
From: Daniel Maya <daniel.maya@artica.es>
Date: Mon, 4 Apr 2022 16:02:26 +0200
Subject: [PATCH 001/138] #8766 Fixed event comments

---
 pandora_console/include/ajax/events.php      | 2 +-
 pandora_console/include/functions_events.php | 3 +++
 2 files changed, 4 insertions(+), 1 deletion(-)

diff --git a/pandora_console/include/ajax/events.php b/pandora_console/include/ajax/events.php
index b8e23d235e..3a6c8b8b60 100644
--- a/pandora_console/include/ajax/events.php
+++ b/pandora_console/include/ajax/events.php
@@ -136,7 +136,7 @@ if ($get_comments === true) {
             // Default grouped message filtering (evento and estado).
             $whereGrouped = sprintf(
                 '`evento` = "%s" AND `estado` = "%s"',
-                io_safe_output($event['evento']),
+                $event['evento'],
                 $event['estado']
             );
             // If id_agente is reported, filter the messages by them as well.
diff --git a/pandora_console/include/functions_events.php b/pandora_console/include/functions_events.php
index 0c8e35b844..b444244626 100644
--- a/pandora_console/include/functions_events.php
+++ b/pandora_console/include/functions_events.php
@@ -2299,6 +2299,7 @@ function events_comment(
         $comments_format = 'new';
     } else {
         // If comments are not stored in json, the format is old.
+        $event_comments[0]['user_comment'] = str_replace(["\n", '&#x0a;'], '<br>', $event_comments[0]['user_comment']);
         $event_comments_array = json_decode($event_comments[0]['user_comment']);
 
         if (empty($event_comments_array) === true) {
@@ -5229,6 +5230,8 @@ function events_page_comments($event, $ajax=false, $groupedComments=[])
                     $comm = $comm['user_comment'];
                 }
 
+                $comm = str_replace(["\n", '&#x0a;'], '<br>', $comm);
+
                 $comments_array[] = io_safe_output(json_decode($comm, true));
             }
 

From 8ccd5ad8cbb78cfbc677502b988f6ca856250dc9 Mon Sep 17 00:00:00 2001
From: Daniel Maya <daniel.maya@artica.es>
Date: Mon, 4 Apr 2022 17:43:19 +0200
Subject: [PATCH 002/138] #8788 min number limit

---
 pandora_console/godmode/setup/performance.php | 20 ++++++++++---------
 1 file changed, 11 insertions(+), 9 deletions(-)

diff --git a/pandora_console/godmode/setup/performance.php b/pandora_console/godmode/setup/performance.php
index ad74c490c2..8c41cdda18 100644
--- a/pandora_console/godmode/setup/performance.php
+++ b/pandora_console/godmode/setup/performance.php
@@ -256,16 +256,18 @@ $table->style[0] = 'font-weight: bold';
 $table->size[0] = '70%';
 $table->size[1] = '30%';
 
-// enterprise_hook('enterprise_warnings_history_days');
 $table->data[1][0] = __('Max. days before delete events');
-
-$table->data[1][1] = html_print_input_text(
-    'event_purge',
-    $config['event_purge'],
-    '',
-    5,
-    5,
-    true
+$table->data[1][1] = html_print_input(
+    [
+        'type'   => 'number',
+        'size'   => 5,
+        'max'    => 99999,
+        'name'   => 'event_purge',
+        'value'  => $config['event_purge'],
+        'return' => true,
+        'min'    => ((((bool) $config['history_event_enabled'] === true) && $config['history_event_days'] > 0) ? $config['history_event_days'] + 1 : null),
+        'style'  => 'width:43px',
+    ]
 );
 
 $table->data[2][0] = __('Max. days before delete traps');

From bfb44be775f99c33a9236408c9c0e8bf9da13386 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Jos=C3=A9=20Gonz=C3=A1lez?= <jose.gonzalez@pandorafms.com>
Date: Tue, 5 Apr 2022 13:40:12 +0200
Subject: [PATCH 003/138] Fix styles

---
 pandora_console/general/first_task/HA_cluster_builder.php | 2 +-
 pandora_console/include/styles/pandora_black.css          | 4 ++--
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/pandora_console/general/first_task/HA_cluster_builder.php b/pandora_console/general/first_task/HA_cluster_builder.php
index 2f0bb24a20..e475dfdf1a 100644
--- a/pandora_console/general/first_task/HA_cluster_builder.php
+++ b/pandora_console/general/first_task/HA_cluster_builder.php
@@ -37,7 +37,7 @@ ui_require_css_file('first_task');
 ui_print_info_message(['no_close' => true, 'message' => __('There are no HA clusters defined yet.') ]);
 ?>
 
-<div class="new_task_cluster">
+<div class="new_task">
     <div class="image_task_cluster">
         <?php echo html_print_image('images/first_task/slave-mode.png', true, ['title' => __('Clusters')]); ?>
     </div>
diff --git a/pandora_console/include/styles/pandora_black.css b/pandora_console/include/styles/pandora_black.css
index 8057c926f3..3db3587bef 100644
--- a/pandora_console/include/styles/pandora_black.css
+++ b/pandora_console/include/styles/pandora_black.css
@@ -340,8 +340,8 @@ a.pandora_pagination {
 
 /* firts_task.css */
 .new_task,
-div.new_task_cluster,
-div.new_task_cluster > div {
+div.new_task,
+div.new_task > div {
   background-color: #222;
 }
 

From 3dc57f8a8ce732305fc2ac606cfe28770fd40ad0 Mon Sep 17 00:00:00 2001
From: fbsanchez <fborja.sanchez@artica.es>
Date: Wed, 6 Apr 2022 14:29:24 +0200
Subject: [PATCH 004/138] some fixes in version control and php memory usage

---
 .../include/class/ConsoleSupervisor.php       | 23 +++++++++++--------
 1 file changed, 13 insertions(+), 10 deletions(-)

diff --git a/pandora_console/include/class/ConsoleSupervisor.php b/pandora_console/include/class/ConsoleSupervisor.php
index 767722931d..ae61026fb3 100644
--- a/pandora_console/include/class/ConsoleSupervisor.php
+++ b/pandora_console/include/class/ConsoleSupervisor.php
@@ -1528,7 +1528,7 @@ class ConsoleSupervisor
             $this->cleanNotifications('NOTIF.PHP.UPLOAD_MAX_FILESIZE');
         }
 
-        if ($PHPmemory_limit < $PHPmemory_limit_min && $PHPmemory_limit !== '-1') {
+        if ($PHPmemory_limit < $PHPmemory_limit_min && (int) $PHPmemory_limit !== -1) {
             $url = 'http://php.net/manual/en/ini.core.php#ini.memory-limit';
             if ($config['language'] == 'es') {
                 $url = 'http://php.net/manual/es/ini.core.php#ini.memory-limit';
@@ -2490,7 +2490,7 @@ class ConsoleSupervisor
             foreach ($server_version_list as $server) {
                 if (strpos(
                     $server['version'],
-                    $config['current_package']
+                    floor($config['current_package'])
                 ) === false
                 ) {
                     $missed++;
@@ -2511,6 +2511,8 @@ class ConsoleSupervisor
                             'url'     => '__url__/index.php?sec=messages&sec2=godmode/update_manager/update_manager&tab=online',
                         ]
                     );
+
+                    break;
                 }
             }
         }
@@ -2532,18 +2534,19 @@ class ConsoleSupervisor
         global $config;
 
         $message = 'If AllowOverride is disabled, .htaccess will not works.';
-	if (PHP_OS == 'FreeBSD') {
-	    $message .= '<pre>Please check /usr/local/etc/apache24/httpd.conf to resolve this problem.';
-	} else {
+        if (PHP_OS == 'FreeBSD') {
+            $message .= '<pre>Please check /usr/local/etc/apache24/httpd.conf to resolve this problem.';
+        } else {
             $message .= '<pre>Please check /etc/httpd/conf/httpd.conf to resolve this problem.';
-	}
+        }
 
         // Get content file.
-	if (PHP_OS == 'FreeBSD') {
-	    $file = file_get_contents('/usr/local/etc/apache24/httpd.conf');
-	} else {
+        if (PHP_OS == 'FreeBSD') {
+            $file = file_get_contents('/usr/local/etc/apache24/httpd.conf');
+        } else {
             $file = file_get_contents('/etc/httpd/conf/httpd.conf');
-	}
+        }
+
         $file_lines = preg_split("#\r?\n#", $file, -1, PREG_SPLIT_NO_EMPTY);
         $is_none = false;
 

From 2ae66f7eb3f18c40b533fbff34b148cfbf7fa8ab Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Jos=C3=A9=20Gonz=C3=A1lez?= <jose.gonzalez@pandorafms.com>
Date: Wed, 6 Apr 2022 17:11:10 +0200
Subject: [PATCH 005/138] Fix x20; chars in alias when create agents with alias
 with spaces in API

---
 pandora_console/include/functions_api.php | 14 +++++++++++++-
 1 file changed, 13 insertions(+), 1 deletion(-)

diff --git a/pandora_console/include/functions_api.php b/pandora_console/include/functions_api.php
index 71128946c5..b5aac630c1 100644
--- a/pandora_console/include/functions_api.php
+++ b/pandora_console/include/functions_api.php
@@ -1855,7 +1855,19 @@ function api_set_new_agent($thrash1, $thrash2, $other, $thrash3)
         return;
     }
 
-    $alias                     = io_safe_input(trim(preg_replace('/[\/\\\|%#&$]/', '', $other['data'][0])));
+    $alias                     = io_safe_input(
+        trim(
+            preg_replace(
+                '/[\/\\\|%#&$]/',
+                '',
+                preg_replace(
+                    '/x20;/',
+                    ' ',
+                    $other['data'][0]
+                )
+            )
+        )
+    );
     $direccion_agente          = io_safe_input($other['data'][1]);
     $nombre_agente             = hash('sha256', $direccion_agente.'|'.$direccion_agente.'|'.time().'|'.sprintf('%04d', rand(0, 10000)));
     $id_parent                 = (int) $other['data'][2];

From 10f603f89f20eb4ab6e1357f85432608a9df3a98 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Jos=C3=A9=20Gonz=C3=A1lez?= <jose.gonzalez@pandorafms.com>
Date: Thu, 7 Apr 2022 12:50:53 +0200
Subject: [PATCH 006/138] Cleaned limit

---
 pandora_console/godmode/update_manager/update_manager.setup.php | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/pandora_console/godmode/update_manager/update_manager.setup.php b/pandora_console/godmode/update_manager/update_manager.setup.php
index e282028f9f..e22c31031d 100644
--- a/pandora_console/godmode/update_manager/update_manager.setup.php
+++ b/pandora_console/godmode/update_manager/update_manager.setup.php
@@ -274,7 +274,7 @@ $table->data[$i++][1] = html_print_input_text(
     $url_update_manager,
     __('URL update manager'),
     80,
-    60,
+    255,
     true
 );
 

From aea59487aaa3a11835a65be60da876ae9c9ffbee Mon Sep 17 00:00:00 2001
From: fbsanchez <fborja.sanchez@artica.es>
Date: Thu, 7 Apr 2022 13:20:35 +0200
Subject: [PATCH 007/138] some fixes in sync and minor stuff

---
 pandora_console/general/login_page.php   |   3 ++-
 pandora_console/images/icono_stop.gif    | Bin 0 -> 399949 bytes
 pandora_console/include/functions_ui.php |  15 +++++++++++++++
 pandora_console/pandoradb_data.sql       |   2 --
 4 files changed, 17 insertions(+), 3 deletions(-)
 create mode 100644 pandora_console/images/icono_stop.gif

diff --git a/pandora_console/general/login_page.php b/pandora_console/general/login_page.php
index 6d7a9864ce..9cecd1e777 100755
--- a/pandora_console/general/login_page.php
+++ b/pandora_console/general/login_page.php
@@ -484,10 +484,11 @@ if (isset($login_failed)) {
     $nick = get_parameter_post('nick');
     $fails = db_get_value('failed_attempt', 'tusuario', 'id_user', $nick);
     $attemps = ($config['number_attempts'] - $fails);
+    $icon = ui_get_stop_icon();
     echo '<div id="login_failed" title="'.__('Login failed').'">';
         echo '<div class="content_alert">';
             echo '<div class="icon_message_alert">';
-                echo html_print_image('images/icono_stop.png', true, ['alt' => __('Login failed'), 'border' => 0]);
+                echo html_print_image($icon, true, ['alt' => __('Login failed'), 'border' => 0]);
             echo '</div>';
             echo '<div class="content_message_alert">';
                 echo '<div class="text_message_alert">';
diff --git a/pandora_console/images/icono_stop.gif b/pandora_console/images/icono_stop.gif
new file mode 100644
index 0000000000000000000000000000000000000000..a905b92c5b5e6ba57e6157bb42d89fec91e745da
GIT binary patch
literal 399949
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%0AiT521gXd(PV
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
RfgR*O<p1$(BH;k}{{sR}P*4B>

literal 0
HcmV?d00001

diff --git a/pandora_console/include/functions_ui.php b/pandora_console/include/functions_ui.php
index 19f1197493..7b815e5e3e 100755
--- a/pandora_console/include/functions_ui.php
+++ b/pandora_console/include/functions_ui.php
@@ -839,6 +839,21 @@ function ui_print_os_icon(
 }
 
 
+/**
+ * Returns an stop icon.
+ *
+ * @return string
+ */
+function ui_get_stop_icon():string
+{
+    if (date('md') === '0401') {
+        return 'images/icono_stop.gif';
+    }
+
+    return 'images/icono_stop.png';
+}
+
+
 /**
  * Print type agent icon.
  *
diff --git a/pandora_console/pandoradb_data.sql b/pandora_console/pandoradb_data.sql
index 438eb0b5d6..9d38bd5a60 100644
--- a/pandora_console/pandoradb_data.sql
+++ b/pandora_console/pandoradb_data.sql
@@ -987,9 +987,7 @@ INSERT INTO `tnetwork_component` (`id_nc`, `name`, `description`, `id_group`, `t
 INSERT INTO `tnetwork_component` (`id_nc`, `name`, `description`, `id_group`, `type`, `max`, `min`, `module_interval`, `tcp_port`, `tcp_send`, `tcp_rcv`, `snmp_community`, `snmp_oid`, `id_module_group`, `id_modulo`, `id_plugin`, `plugin_user`, `plugin_pass`, `plugin_parameter`, `max_timeout`, `max_retries`, `history_data`, `min_warning`, `max_warning`, `str_warning`, `min_critical`, `max_critical`, `str_critical`, `min_ff_event`, `custom_string_1`, `custom_string_2`, `custom_string_3`, `custom_integer_1`, `custom_integer_2`, `post_process`, `unit`, `wizard_level`, `macros`, `critical_instructions`, `warning_instructions`, `unknown_instructions`, `critical_inverse`, `warning_inverse`, `id_category`, `tags`, `disabled_types_event`, `module_macros`, `min_ff_event_normal`, `min_ff_event_warning`, `min_ff_event_critical`, `each_ff`) VALUES (785,'Packet&#x20;Loss','Measure&#x20;packet&#x20;loss&#x20;in&#x20;the&#x20;network,&#x20;using&#x20;a&#x20;flood&#x20;ping&#x20;&#40;50&#x20;ping&#x20;in&#x20;8&#x20;secons&#41;&#x20;and&#x20;counting&#x20;back&#x20;missing&#x20;packets.&#x20;It&#x20;should&#x20;be&#x20;zero&#x20;on&#x20;most&#x20;cases.&#x20;',10,1,0,0,300,0,'','','','',2,4,9,'','','',0,0,1,10.00,0.00,'',30.00,0.00,'',0,'','','',0,0,0.00000,'%','nowizard','{\"1\":{\"macro\":\"_field1_\",\"desc\":\"Test&#x20;time\",\"help\":\"\",\"value\":\"8\",\"hide\":\"\"},\"2\":{\"macro\":\"_field2_\",\"desc\":\"Target&#x20;IP\",\"help\":\"\",\"value\":\"\",\"hide\":\"\"}}','You&#x20;should&#x20;check&#x20;manually&#x20;the&#x20;packet&#x20;loss&#x20;of&#x20;the&#x20;network&#x20;with&#x20;a&#x20;flood&#x20;ping&#x20;on&#x20;targeted&#x20;host&#x20;&#40;ping&#x20;-c&#x20;100&#x20;-f&#x20;xxxx&#41;.&#x20;Aditionally,&#x20;and&#x20;due&#x20;the&#x20;major&#x20;packet&#x20;loss,&#x20;probably&#x20;you&#x20;can&#x20;see&#x20;a&#x20;simple&#x20;ping&#x20;failing&#x20;here.&#x20;Check&#x20;your&#x20;network&#x20;equipment.','You&#x20;should&#x20;check&#x20;manually&#x20;the&#x20;packet&#x20;loss&#x20;of&#x20;the&#x20;network&#x20;with&#x20;a&#x20;flood&#x20;ping&#x20;on&#x20;targeted&#x20;host&#x20;&#40;ping&#x20;-c&#x20;100&#x20;-f&#x20;xxxx&#41;','',0,0,0,'','{\"going_unknown\":0}','',0,0,0,0);
 INSERT INTO `tnetwork_component` (`id_nc`, `name`, `description`, `id_group`, `type`, `max`, `min`, `module_interval`, `tcp_port`, `tcp_send`, `tcp_rcv`, `snmp_community`, `snmp_oid`, `id_module_group`, `id_modulo`, `id_plugin`, `plugin_user`, `plugin_pass`, `plugin_parameter`, `max_timeout`, `max_retries`, `history_data`, `min_warning`, `max_warning`, `max_critical`, `str_warning`, `min_ff_event`, `min_critical`, `custom_string_2`, `str_critical`, `custom_integer_1`) VALUES (786,'N.&#x20;total&#x20;processes','Number&#x20;of&#x20;running&#x20;processes&#x20;in&#x20;a&#x20;Windows&#x20;system.',11,34,0,0,300,0,'tasklist&#x20;/NH&#x20;|&#x20;find&#x20;/c&#x20;/v&#x20;&quot;&quot;','','','',6,2,0,'','','',0,0,1,0,0,'0.00','',0,'',0,'','windows');
 INSERT INTO `tnetwork_component` (`id_nc`, `name`, `description`, `id_group`, `type`, `max`, `min`, `module_interval`, `tcp_port`, `tcp_send`, `tcp_rcv`, `snmp_community`, `snmp_oid`, `id_module_group`, `id_modulo`, `id_plugin`, `plugin_user`, `plugin_pass`, `plugin_parameter`, `max_timeout`, `max_retries`, `history_data`, `min_warning`, `max_warning`, `max_critical`, `str_warning`, `min_ff_event`, `min_critical`, `custom_string_2`, `str_critical`, `custom_integer_1`) VALUES (787,'Free&#x20;space&#x20;in&#x20;C:','Free&#x20;space&#x20;available&#x20;in&#x20;C:',11,34,0,0,300,0,'powershell&#x20;$obj=&#40;Get-WmiObject&#x20;-class&#x20;&quot;Win32_LogicalDisk&quot;&#x20;-namespace&#x20;&quot;root&#92;CIMV2&quot;&#41;&#x20;;&#x20;$obj.FreeSpace[0]&#x20;*&#x20;100&#x20;/$obj.Size[0]','','','',4,2,0,'','','',0,0,1,0,0,'0.00','',0,'',0,'','windows');
-INSERT INTO `tnetwork_component` (`id_nc`, `name`, `description`, `id_group`, `type`, `max`, `min`, `module_interval`, `tcp_port`, `tcp_send`, `tcp_rcv`, `snmp_community`, `snmp_oid`, `id_module_group`, `id_modulo`, `id_plugin`, `plugin_user`, `plugin_pass`, `plugin_parameter`, `max_timeout`, `max_retries`, `history_data`, `min_warning`, `max_warning`, `max_critical`, `str_warning`, `min_ff_event`, `min_critical`, `custom_string_2`, `str_critical`, `custom_integer_1`) VALUES (788,'Linux&#x20;uptime','System&#x20;uptime',43,36,0,0,300,0,"'uptime&#x20;|sed&#x20;s/us&#92;.*$//g&#x20;|&#x20;sed&#x20;s/,&#92;.*$//g'",'','','',4,2,0,'','','',0,0,1,0,0,'0.00','',0,'',0,'','linux');
 INSERT INTO `tnetwork_component` (`id_nc`, `name`, `description`, `id_group`, `type`, `max`, `min`, `module_interval`, `tcp_port`, `tcp_send`, `tcp_rcv`, `snmp_community`, `snmp_oid`, `id_module_group`, `id_modulo`, `id_plugin`, `plugin_user`, `plugin_pass`, `plugin_parameter`, `max_timeout`, `max_retries`, `history_data`, `min_warning`, `max_warning`, `max_critical`, `str_warning`, `min_ff_event`, `min_critical`, `custom_string_2`, `str_critical`, `custom_integer_1`) VALUES (789,'Linux&#x20;processes','Running&#x20;processes',43,34,0,0,300,0,'ps&#x20;elf&#x20;|&#x20;wc&#x20;-l','','','',6,2,0,'','','',0,0,1,0,0,'0.00','',0,'',0,'','linux');
-INSERT INTO `tnetwork_component` (`id_nc`, `name`, `description`, `id_group`, `type`, `max`, `min`, `module_interval`, `tcp_port`, `tcp_send`, `tcp_rcv`, `snmp_community`, `snmp_oid`, `id_module_group`, `id_modulo`, `id_plugin`, `plugin_user`, `plugin_pass`, `plugin_parameter`, `max_timeout`, `max_retries`, `history_data`, `min_warning`, `max_warning`, `max_critical`, `str_warning`, `min_ff_event`, `min_critical`, `custom_string_2`, `str_critical`, `custom_integer_1`) VALUES (790,'Linux&#x20;system&#x20;load','Current&#x20;load&#x20;&#40;5&#x20;min&#41;',43,34,0,0,300,0,"'uptime&#x20;|&#x20;awk&#x20;&#039;{print&#x20;$&#40;NF-1&#41;}&#039;&#x20;|&#x20;tr&#x20;-d&#x20;&#039;,&#039;'",'','','',6,2,0,'','','',0,0,1,0,0,'0.00','',0,'',0,'','linux');
 INSERT INTO `tnetwork_component` (`id_nc`, `name`, `description`, `id_group`, `type`, `max`, `min`, `module_interval`, `tcp_port`, `tcp_send`, `tcp_rcv`, `snmp_community`, `snmp_oid`, `id_module_group`, `id_modulo`, `id_plugin`, `plugin_user`, `plugin_pass`, `plugin_parameter`, `max_timeout`, `max_retries`, `history_data`, `min_warning`, `max_warning`, `max_critical`, `str_warning`, `min_ff_event`, `min_critical`, `custom_string_2`, `str_critical`, `custom_integer_1`) VALUES (791,'Linux&#x20;available&#x20;memory&#x20;percent','Available&#x20;memory&#x20;%',43,34,0,0,300,0,'free&#x20;|&#x20;grep&#x20;Mem&#x20;|&#x20;awk&#x20;&#039;{print&#x20;$NF/$2&#x20;*&#x20;100}&#039;','','','',4,2,0,'','','',0,0,1,0,0,'0.00','',0,'',0,'','linux');
 INSERT INTO `tnetwork_component` (`id_nc`, `name`, `description`, `id_group`, `type`, `max`, `min`, `module_interval`, `tcp_port`, `tcp_send`, `tcp_rcv`, `snmp_community`, `snmp_oid`, `id_module_group`, `id_modulo`, `id_plugin`, `plugin_user`, `plugin_pass`, `plugin_parameter`, `max_timeout`, `max_retries`, `history_data`, `min_warning`, `max_warning`, `max_critical`, `str_warning`, `min_ff_event`, `min_critical`, `custom_string_2`, `str_critical`, `custom_integer_1`) VALUES (792,'Linux&#x20;available&#x20;disk&#x20;/','Available&#x20;free&#x20;space&#x20;in&#x20;mountpoint&#x20;/',43,34,0,0,300,0,'df&#x20;/&#x20;|&#x20;tail&#x20;-n&#x20;+2&#x20;|&#x20;awk&#x20;&#039;{print&#x20;$&#40;NF-1&#41;}&#039;&#x20;|&#x20;tr&#x20;-d&#x20;&#039;%&#039;','','','',4,2,0,'','','',0,0,1,0,0,'0.00','',0,'',0,'','inherited');
 

From d849ff0ebdcb9d9ae387feb97e88c57dd9a37316 Mon Sep 17 00:00:00 2001
From: fbsanchez <fborja.sanchez@artica.es>
Date: Thu, 7 Apr 2022 13:52:03 +0200
Subject: [PATCH 008/138] Docker ulimit fix

---
 .gitlab-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index ea329e2e57..53520ee12c 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -14,7 +14,7 @@ test:
     - sed -i "s/_PRODUCT_/$REBRANDING/g"  $CI_PROJECT_DIR/pandora_server/Makefile.PL
     - sed -i "s/TENTACLE_USER=\"pandora\"/TENTACLE_USER=\"$REBRANDING\"/g" $CI_PROJECT_DIR/pandora_server/util/tentacle_serverd
     - docker pull pandorafms/pandorafms-base:rocky8.5
-    - docker run --rm -e REBRANDING="$REBRANDING" -h pandorafms -t -v "$CI_PROJECT_DIR:/tmp/pandorafms" pandorafms/pandorafms-base:rocky8.5 /tmp/pandorafms/tests/test.sh
+    - docker run --ulimit nofile=262144:262144 --rm -e REBRANDING="$REBRANDING" -h pandorafms -t -v "$CI_PROJECT_DIR:/tmp/pandorafms" pandorafms/pandorafms-base:rocky8.5 /tmp/pandorafms/tests/test.sh
 
 test_php_legacy:
   stage: test
@@ -22,4 +22,4 @@ test_php_legacy:
     - df -h | grep instaladores | awk '{print $NF}' |xargs umount >/dev/null 2>&1 || true
   script:
     - docker pull pandorafms/pandorafms-base:centos7
-    - docker run --rm -h pandorafms -t -v "$CI_PROJECT_DIR:/tmp/pandorafms" pandorafms/pandorafms-base:centos7 /tmp/pandorafms/tests/test_legacy.sh
+    - docker run --ulimit nofile=262144:262144 --rm -h pandorafms -t -v "$CI_PROJECT_DIR:/tmp/pandorafms" pandorafms/pandorafms-base:centos7 /tmp/pandorafms/tests/test_legacy.sh

From 8a221f10b0c554ccc46a23627b05186c53403fba Mon Sep 17 00:00:00 2001
From: fbsanchez <fborja.sanchez@artica.es>
Date: Mon, 11 Apr 2022 14:20:17 +0200
Subject: [PATCH 009/138] allow disable counters on mc environments

---
 .../include/class/TreeService.class.php       | 104 ++++++++++--------
 pandora_console/include/functions_config.php  |   4 +
 2 files changed, 61 insertions(+), 47 deletions(-)

diff --git a/pandora_console/include/class/TreeService.class.php b/pandora_console/include/class/TreeService.class.php
index ebca4562a6..0b29b3a895 100644
--- a/pandora_console/include/class/TreeService.class.php
+++ b/pandora_console/include/class/TreeService.class.php
@@ -530,33 +530,6 @@ class TreeService extends Tree
                     $tmp['elementDescription'] = $item->description();
                     $tmp['disabled'] = $item->service()->disabled();
 
-                    if ($this->connectedToNode === false
-                        && is_metaconsole() === true
-                        && $tmp['metaID'] > 0
-                    ) {
-                        // Impersonate node.
-                        \enterprise_include_once('include/functions_metaconsole.php');
-                        \enterprise_hook(
-                            'metaconsole_connect',
-                            [
-                                null,
-                                $tmp['metaID'],
-                            ]
-                        );
-                    }
-
-                    if (check_acl($config['id_user'], $item->service()->id_group(), 'AR')) {
-                        $grandchildren = $item->service()->children();
-                    }
-
-                    if ($this->connectedToNode === false
-                        && is_metaconsole() === true
-                        && $tmp['metaID'] > 0
-                    ) {
-                        // Restore connection.
-                        \enterprise_hook('metaconsole_restore_db');
-                    }
-
                     $counters = [
                         'total_modules'  => 0,
                         'total_agents'   => 0,
@@ -565,29 +538,66 @@ class TreeService extends Tree
                         'total'          => 0,
                     ];
 
-                    if (is_array($grandchildren) === true) {
-                        $counters = array_reduce(
-                            $grandchildren,
-                            function ($carry, $item) {
-                                if ($item->type() === SERVICE_ELEMENT_MODULE) {
-                                    $carry['total_modules']++;
-                                } else if ($item->type() === SERVICE_ELEMENT_AGENT) {
-                                    $carry['total_agents']++;
-                                } else if ($item->type() === SERVICE_ELEMENT_SERVICE) {
-                                    $carry['total_services']++;
-                                } else if ($item->type() === SERVICE_ELEMENT_DYNAMIC) {
-                                    $carry['total_dynamic']++;
-                                }
+                    if (is_metaconsole() === false
+                        || (isset($config['realtimestats']) === true
+                        && $config['realtimestats'] === true
+                        && $tmp['metaID'] > 0)
+                    ) {
+                        // Look for counters.
+                        if ($this->connectedToNode === false
+                            && is_metaconsole() === true
+                            && $tmp['metaID'] > 0
+                        ) {
+                            // Impersonate node.
+                            \enterprise_include_once('include/functions_metaconsole.php');
+                            \enterprise_hook(
+                                'metaconsole_connect',
+                                [
+                                    null,
+                                    $tmp['metaID'],
+                                ]
+                            );
+                        }
 
-                                $carry['total']++;
+                        if (check_acl($config['id_user'], $item->service()->id_group(), 'AR')) {
+                            $grandchildren = $item->service()->children();
+                        }
 
-                                return $carry;
-                            },
-                            $counters
-                        );
-                    }
+                        if ($this->connectedToNode === false
+                            && is_metaconsole() === true
+                            && $tmp['metaID'] > 0
+                        ) {
+                            // Restore connection.
+                            \enterprise_hook('metaconsole_restore_db');
+                        }
 
-                    if ($counters['total'] > 0) {
+                        if (is_array($grandchildren) === true) {
+                            $counters = array_reduce(
+                                $grandchildren,
+                                function ($carry, $item) {
+                                    if ($item->type() === SERVICE_ELEMENT_MODULE) {
+                                        $carry['total_modules']++;
+                                    } else if ($item->type() === SERVICE_ELEMENT_AGENT) {
+                                        $carry['total_agents']++;
+                                    } else if ($item->type() === SERVICE_ELEMENT_SERVICE) {
+                                        $carry['total_services']++;
+                                    } else if ($item->type() === SERVICE_ELEMENT_DYNAMIC) {
+                                        $carry['total_dynamic']++;
+                                    }
+
+                                    $carry['total']++;
+
+                                    return $carry;
+                                },
+                                $counters
+                            );
+                        }
+
+                        if ($counters['total'] > 0) {
+                            $tmp['searchChildren'] = 1;
+                        }
+                    } else {
+                        // Always search for.
                         $tmp['searchChildren'] = 1;
                     }
 
diff --git a/pandora_console/include/functions_config.php b/pandora_console/include/functions_config.php
index 6f79be6c76..337c0d4ec6 100644
--- a/pandora_console/include/functions_config.php
+++ b/pandora_console/include/functions_config.php
@@ -2060,6 +2060,10 @@ function config_process_config()
         config_update_value('metaconsole_events_history', 0);
     }
 
+    if (!isset($config['realtimestats'])) {
+        config_update_value('realtimestats', 1);
+    }
+
     if (!isset($config['trap_purge'])) {
         config_update_value('trap_purge', 7);
     }

From 77636d68ff4ccacb2b3a14d9c0778bfd4e17a0fc Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Jos=C3=A9=20Gonz=C3=A1lez?= <jose.gonzalez@pandorafms.com>
Date: Mon, 11 Apr 2022 15:22:37 +0200
Subject: [PATCH 010/138] Fix fb64 forgiven severity params

---
 pandora_console/operation/events/events.php | 48 +++++++++++----------
 1 file changed, 26 insertions(+), 22 deletions(-)

diff --git a/pandora_console/operation/events/events.php b/pandora_console/operation/events/events.php
index 5f3a733318..b72217fa2c 100644
--- a/pandora_console/operation/events/events.php
+++ b/pandora_console/operation/events/events.php
@@ -14,7 +14,7 @@
  * |___|   |___._|__|__|_____||_____|__| |___._| |___|   |__|_|__|_______|
  *
  * ============================================================================
- * Copyright (c) 2005-2021 Artica Soluciones Tecnologicas
+ * Copyright (c) 2005-2022 Artica Soluciones Tecnologicas
  * Please see http://pandorafms.org for full contribution list
  * This program is free software; you can redistribute it and/or
  * modify it under the terms of the GNU General Public License
@@ -46,19 +46,19 @@ check_login();
 
 enterprise_include_once('/include/class/CommandCenter.class.php');
 
-$event_a = check_acl($config['id_user'], 0, 'ER');
-$event_w = check_acl($config['id_user'], 0, 'EW');
-$event_m = check_acl($config['id_user'], 0, 'EM');
+$event_a = (bool) check_acl($config['id_user'], 0, 'ER');
+$event_w = (bool) check_acl($config['id_user'], 0, 'EW');
+$event_m = (bool) check_acl($config['id_user'], 0, 'EM');
 
-if (! $event_a
-    && ! $event_w
-    && ! $event_m
+if ($event_a === false
+    && $event_w === false
+    && $event_m === false
 ) {
     db_pandora_audit(
         AUDIT_LOG_ACL_VIOLATION,
         'Trying to access event viewer'
     );
-    if (is_ajax()) {
+    if (is_ajax() === true) {
         return ['error' => 'noaccess'];
     }
 
@@ -67,14 +67,14 @@ if (! $event_a
 }
 
 
-$access = ($event_a == true) ? 'ER' : (($event_w == true) ? 'EW' : (($event_m == true) ? 'EM' : 'ER'));
+$access = ($event_a === true) ? 'ER' : (($event_w === true) ? 'EW' : (($event_m === true) ? 'EM' : 'ER'));
 
 
 $readonly = false;
 if (is_metaconsole() === false
-    && isset($config['event_replication'])
-    && $config['event_replication'] == 1
-    && $config['show_events_in_local'] == 1
+    && isset($config['event_replication']) === true
+    && (int) $config['event_replication'] === 1
+    && (int) $config['show_events_in_local'] === 1
 ) {
     $readonly = true;
 }
@@ -100,7 +100,7 @@ $default_filter = [
 ];
 
 $fb64 = get_parameter('fb64', null);
-if (isset($fb64)) {
+if (isset($fb64) === true) {
     $filter = json_decode(base64_decode($fb64), true);
     $filter['tag_with'] = [];
     $filter['tag_without'] = [];
@@ -238,20 +238,20 @@ $custom_data = get_parameter(
 
 if (is_metaconsole() === true) {
     // Connect to node database.
-    $id_node = $server_id;
-    if ($id_node != 0) {
-        if (metaconsole_connect(null, $id_node) != NOERR) {
+    $id_node = (int) $server_id;
+    if ($id_node !== 0) {
+        if (metaconsole_connect(null, $id_node) !== NOERR) {
             return false;
         }
     }
 }
 
 
-if (empty($text_agent) && empty($id_agent) === false) {
+if (empty($text_agent) === true && empty($id_agent) === false) {
     $text_agent = agents_get_alias($id_agent);
 }
 
-if (empty($text_module) && empty($id_agent_module) === false) {
+if (empty($text_module) === true && empty($id_agent_module) === false) {
     $text_module = modules_get_agentmodule_name($id_agent_module);
     $text_agent = agents_get_alias(modules_get_agentmodule_agent($id_agent_module));
 }
@@ -501,7 +501,7 @@ if ($load_filter_id === 0) {
 
 // Do not load the user filter if we come from the 24h event graph.
 $from_event_graph = get_parameter('filter[from_event_graph]', $filter['from_event_graph']);
-if ($loaded_filter !== false && $from_event_graph != 1 && !isset($fb64)) {
+if ($loaded_filter !== false && $from_event_graph != 1 && isset($fb64) === false) {
     $filter = events_get_event_filter($loaded_filter['id_filter']);
     if ($filter !== false) {
         $id_group = $filter['id_group'];
@@ -1136,15 +1136,19 @@ $in = '<div class="filter_input"><label>'.__('Free search').'</label>';
 $in .= $data.'</div>';
 $inputs[] = $in;
 
-if (empty($severity) === true && $severity !== '0') {
-    $severity = -1;
+if (is_array($severity) === false) {
+    if (empty($severity) === true && $severity !== '0') {
+        $severity = -1;
+    } else {
+        $severity = explode(',', $severity);
+    }
 }
 
 // Criticity - severity.
 $data = html_print_select(
     get_priorities(),
     'severity',
-    explode(',', $severity),
+    $severity,
     '',
     __('All'),
     -1,

From 33a5a4e53da44fc594c83e6a286748b95bce3081 Mon Sep 17 00:00:00 2001
From: fbsanchez <fborja.sanchez@artica.es>
Date: Tue, 12 Apr 2022 13:45:16 +0200
Subject: [PATCH 011/138] cleanup

---
 pandora_console/general/login_page.php   |   2 +-
 pandora_console/images/icono_stop.gif    | Bin 399949 -> 0 bytes
 pandora_console/include/functions_ui.php |  15 ---------------
 3 files changed, 1 insertion(+), 16 deletions(-)
 delete mode 100644 pandora_console/images/icono_stop.gif

diff --git a/pandora_console/general/login_page.php b/pandora_console/general/login_page.php
index 9cecd1e777..a5d294de56 100755
--- a/pandora_console/general/login_page.php
+++ b/pandora_console/general/login_page.php
@@ -484,7 +484,7 @@ if (isset($login_failed)) {
     $nick = get_parameter_post('nick');
     $fails = db_get_value('failed_attempt', 'tusuario', 'id_user', $nick);
     $attemps = ($config['number_attempts'] - $fails);
-    $icon = ui_get_stop_icon();
+    $icon = 'images/icono_stop.png';
     echo '<div id="login_failed" title="'.__('Login failed').'">';
         echo '<div class="content_alert">';
             echo '<div class="icon_message_alert">';
diff --git a/pandora_console/images/icono_stop.gif b/pandora_console/images/icono_stop.gif
deleted file mode 100644
index a905b92c5b5e6ba57e6157bb42d89fec91e745da..0000000000000000000000000000000000000000
GIT binary patch
literal 0
HcmV?d00001

literal 399949
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%0AiT521gXd(PV
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
RfgR*O<p1$(BH;k}{{sR}P*4B>

diff --git a/pandora_console/include/functions_ui.php b/pandora_console/include/functions_ui.php
index 7b815e5e3e..19f1197493 100755
--- a/pandora_console/include/functions_ui.php
+++ b/pandora_console/include/functions_ui.php
@@ -839,21 +839,6 @@ function ui_print_os_icon(
 }
 
 
-/**
- * Returns an stop icon.
- *
- * @return string
- */
-function ui_get_stop_icon():string
-{
-    if (date('md') === '0401') {
-        return 'images/icono_stop.gif';
-    }
-
-    return 'images/icono_stop.png';
-}
-
-
 /**
  * Print type agent icon.
  *

From 189327e6f69a5fd5f6695125721d92e13a31ebfb Mon Sep 17 00:00:00 2001
From: fbsanchez <fborja.sanchez@artica.es>
Date: Tue, 12 Apr 2022 13:47:57 +0200
Subject: [PATCH 012/138] cleanup

---
 pandora_console/general/login_page.php | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/pandora_console/general/login_page.php b/pandora_console/general/login_page.php
index a5d294de56..6d7a9864ce 100755
--- a/pandora_console/general/login_page.php
+++ b/pandora_console/general/login_page.php
@@ -484,11 +484,10 @@ if (isset($login_failed)) {
     $nick = get_parameter_post('nick');
     $fails = db_get_value('failed_attempt', 'tusuario', 'id_user', $nick);
     $attemps = ($config['number_attempts'] - $fails);
-    $icon = 'images/icono_stop.png';
     echo '<div id="login_failed" title="'.__('Login failed').'">';
         echo '<div class="content_alert">';
             echo '<div class="icon_message_alert">';
-                echo html_print_image($icon, true, ['alt' => __('Login failed'), 'border' => 0]);
+                echo html_print_image('images/icono_stop.png', true, ['alt' => __('Login failed'), 'border' => 0]);
             echo '</div>';
             echo '<div class="content_message_alert">';
                 echo '<div class="text_message_alert">';

From 9f1be4531be54bd2c87852bbc56f357ebb83ef40 Mon Sep 17 00:00:00 2001
From: Daniel Maya <daniel.maya@artica.es>
Date: Tue, 12 Apr 2022 17:24:47 +0200
Subject: [PATCH 013/138] #8587 Added sunburst

---
 pandora_console/extras/mr/55.sql              |  5 ++
 pandora_console/include/graphs/pandora.d3.js  |  8 +-
 .../lib/Dashboard/Widgets/service_map.php     | 87 +++++++------------
 pandora_console/pandoradb.sql                 |  1 +
 4 files changed, 41 insertions(+), 60 deletions(-)
 create mode 100644 pandora_console/extras/mr/55.sql

diff --git a/pandora_console/extras/mr/55.sql b/pandora_console/extras/mr/55.sql
new file mode 100644
index 0000000000..2618a7512c
--- /dev/null
+++ b/pandora_console/extras/mr/55.sql
@@ -0,0 +1,5 @@
+START TRANSACTION;
+
+ALTER TABLE `tservice` ADD COLUMN `enable_sunburst` tinyint(1) NOT NULL default 0;
+
+COMMIT;
diff --git a/pandora_console/include/graphs/pandora.d3.js b/pandora_console/include/graphs/pandora.d3.js
index 8495a8728b..a07c780501 100644
--- a/pandora_console/include/graphs/pandora.d3.js
+++ b/pandora_console/include/graphs/pandora.d3.js
@@ -965,8 +965,8 @@ function sunburst(recipient, data, width, height) {
   }
 
   function move_tooltip(d) {
-    var x = d3.event.pageX + 10;
-    var y = d3.event.pageY + 10;
+    var x = d3.event.pageX + 10 - $("#menu_full").width();
+    var y = d3.event.pageY - 90;
 
     $("#tooltip").css("left", x + "px");
     $("#tooltip").css("top", y + "px");
@@ -1017,10 +1017,10 @@ function sunburst(recipient, data, width, height) {
         "-moz-box-shadow:    7px 7px 5px rgba(50, 50, 50, 0.75);" +
         "box-shadow:         7px 7px 5px rgba(50, 50, 50, 0.75);" +
         "left: " +
-        x +
+        100 +
         "px;" +
         "top: " +
-        y +
+        100 +
         "px;"
     );
   }
diff --git a/pandora_console/include/lib/Dashboard/Widgets/service_map.php b/pandora_console/include/lib/Dashboard/Widgets/service_map.php
index a2122c6dca..a05f71c92a 100644
--- a/pandora_console/include/lib/Dashboard/Widgets/service_map.php
+++ b/pandora_console/include/lib/Dashboard/Widgets/service_map.php
@@ -235,6 +235,10 @@ class ServiceMapWidget extends Widget
             $values['showLegend'] = $decoder['showLegend'];
         }
 
+        if (isset($decoder['sunburst']) === true) {
+            $values['sunburst'] = $decoder['sunburst'];
+        }
+
         return $values;
     }
 
@@ -296,19 +300,16 @@ class ServiceMapWidget extends Widget
             ],
         ];
 
-        // TODO refactoriced services: Hidden legend.
-        /*
-            // Show legend.
-            $inputs[] = [
-            'label'     => __('Show legend'),
+        $inputs[] = [
+            'label'     => __('Enable sunburst'),
             'arguments' => [
-                'name'  => 'showLegend',
-                'id'    => 'showLegend',
-                'type'  => 'switch',
-                'value' => $values['showLegend'],
+                'type'   => 'switch',
+                'name'   => 'sunburst',
+                'class'  => 'event-widget-input',
+                'value'  => $values['sunburst'],
+                'return' => true,
             ],
-            ];
-        */
+        ];
 
         return $inputs;
     }
@@ -325,7 +326,9 @@ class ServiceMapWidget extends Widget
         $values = parent::getPost();
 
         $values['serviceId'] = \get_parameter('serviceId', 0);
-        // $values['showLegend'] = \get_parameter_switch('showLegend');
+
+        $values['sunburst'] = \get_parameter_switch('sunburst', 0);
+
         return $values;
     }
 
@@ -341,6 +344,7 @@ class ServiceMapWidget extends Widget
 
         $size = parent::getSize();
 
+        $output = '';
         if (check_acl($config['id_user'], 0, 'AR') === 0) {
             $output .= '<div class="container-center">';
             $output .= \ui_print_error_message(
@@ -367,42 +371,6 @@ class ServiceMapWidget extends Widget
         $style = 'position: relative; text-align: center;';
         $output .= "<div id='".$containerId."' style='".$style."'>";
 
-        // TODO refactoriced services: Hidden legend.
-        /*
-            if ($this->values['showLegend'] === 1) {
-            $output .= "<div id='container_servicemap_legend".$this->values['serviceId'].'_'.$this->cellId."'>";
-            $output .= '<table>';
-            $output .= "<tr class='legend_servicemap_title'><td colspan='3' style='padding-bottom: 10px; min-width: 177px;'><b>".__('Legend').'</b></td>';
-            $output .= "<td><img class='legend_servicemap_toggle' style='padding-bottom: 10px;' src='images/darrowup.png'></td></tr>";
-
-            $output .= "<tr class='legend_servicemap_item'><td>";
-            $output .= "<img src='images/service.png'>";
-            $output .= '</td><td>'.__('Services').'</td>';
-
-            // Coulour legend.
-            $output .= "<td rowspan='3'>";
-            $output .= '<table>';
-            $output .= "<tr><td class='legend_square'><div style='background-color: ".COL_CRITICAL.";'></div></td><td>".__('Critical').'</td></tr>';
-            $output .= "<tr><td class='legend_square'><div style='background-color: ".COL_WARNING.";'></div></td><td>".__('Warning').'</td></tr>';
-            $output .= "<tr><td class='legend_square'><div style='background-color: ".COL_NORMAL.";'></div></td><td>".__('Ok').'</td></tr>';
-            $output .= "<tr><td class='legend_square'><div style='background-color: ".COL_UNKNOWN.";'></div></td><td>".__('Unknown').'</td></tr>';
-            $output .= '</table>';
-            $output .= '</td></tr>';
-
-            $output .= "<tr class='legend_servicemap_item'><td>";
-            $output .= "<img src='images/agent.png'>";
-            $output .= '</td><td>'.__('Agents').'</td>';
-            $output .= '</tr>';
-
-            $output .= "<tr class='legend_servicemap_item'><td>";
-            $output .= "<img src='images/module.png'>";
-            $output .= '</td><td>'.__('Modules').'</td>';
-            $output .= '</tr>';
-            $output .= '</table>';
-            $output .= '</div>';
-            }
-        */
-
         // TODO: removed refactoriced services. Only 1 widget Zoom.
         $sql = sprintf(
             'SELECT COUNT(*)
@@ -425,14 +393,21 @@ class ServiceMapWidget extends Widget
         );
         // TODO:XXX fix draw service map.
         ob_start();
-        servicemap_print_servicemap(
-            $this->values['serviceId'],
-            false,
-            $size['width'],
-            $size['height'],
-            $this->cellId,
-            $disableZoom
-        );
+
+        if ($this->values['sunburst'] === 0) {
+            servicemap_print_servicemap(
+                $this->values['serviceId'],
+                false,
+                $size['width'],
+                $size['height'],
+                $this->cellId,
+                $disableZoom
+            );
+        } else {
+            include_once $config['homedir'].'/include/graphs/functions_d3.php';
+            servicemap_print_sunburst($this->values['serviceId'], $size['width'], $size['height']);
+        }
+
         $output .= ob_get_clean();
         $output .= '</div>';
         return $output;
diff --git a/pandora_console/pandoradb.sql b/pandora_console/pandoradb.sql
index 29ec6e572b..0cd5d07ac1 100644
--- a/pandora_console/pandoradb.sql
+++ b/pandora_console/pandoradb.sql
@@ -2817,6 +2817,7 @@ CREATE TABLE IF NOT EXISTS `tservice` (
   `cascade_protection` TINYINT NOT NULL DEFAULT 0,
   `evaluate_sla` INT NOT NULL DEFAULT 0,
   `is_favourite` TINYINT NOT NULL DEFAULT 0,
+  `enable_sunburst` TINYINT NOT NULL DEFAULT 0,
   PRIMARY KEY  (`id`)
 ) ENGINE=InnoDB 
 COMMENT = 'Table to define services to monitor' 

From fd7af69a1d0f34ed6dd2646a128afb0991c48e0b Mon Sep 17 00:00:00 2001
From: Daniel Maya <daniel.maya@artica.es>
Date: Wed, 13 Apr 2022 15:24:31 +0200
Subject: [PATCH 014/138] #8587 tooltip option

---
 .../include/graphs/functions_d3.php           |  4 +--
 pandora_console/include/graphs/pandora.d3.js  | 26 +++++++++++++++----
 .../lib/Dashboard/Widgets/service_map.php     |  2 +-
 3 files changed, 24 insertions(+), 8 deletions(-)

diff --git a/pandora_console/include/graphs/functions_d3.php b/pandora_console/include/graphs/functions_d3.php
index 57cf3a1f43..8c4a1b6ade 100644
--- a/pandora_console/include/graphs/functions_d3.php
+++ b/pandora_console/include/graphs/functions_d3.php
@@ -150,7 +150,7 @@ function d3_tree_map_graph($data, $width=700, $height=700, $return=false)
 }
 
 
-function d3_sunburst_graph($data, $width=700, $height=700, $return=false)
+function d3_sunburst_graph($data, $width=700, $height=700, $return=false, $tooltip=true)
 {
     global $config;
 
@@ -167,7 +167,7 @@ function d3_sunburst_graph($data, $width=700, $height=700, $return=false)
 					}
 				</style>';
     $output .= "<script language=\"javascript\" type=\"text/javascript\">
-					sunburst('#sunburst', $data, '$width', '$height');
+					sunburst('#sunburst', $data, '$width', '$height', '$tooltip');
 				</script>";
 
     if (!$return) {
diff --git a/pandora_console/include/graphs/pandora.d3.js b/pandora_console/include/graphs/pandora.d3.js
index a07c780501..aad0506f86 100644
--- a/pandora_console/include/graphs/pandora.d3.js
+++ b/pandora_console/include/graphs/pandora.d3.js
@@ -796,7 +796,7 @@ function treeMap(recipient, data, width, height) {
 // The area (or angle, depending on implementation) of each arc corresponds to its value.
 // Sunburst design by John Stasko. Data courtesy Jeff Heer.
 // http://bl.ocks.org/mbostock/4348373
-function sunburst(recipient, data, width, height) {
+function sunburst(recipient, data, width, height, tooltip = true) {
   if (width === "auto") {
     width = $(recipient).innerWidth();
   }
@@ -858,11 +858,14 @@ function sunburst(recipient, data, width, height) {
     })
     .style("cursor", "pointer")
     .on("click", click)
-    .on("mouseover", over_user)
+    .on("mouseover", tooltip === "1" ? over_user : "")
     .on("mouseout", out_user)
     .on("mousemove", move_tooltip);
 
   function computeTextRotation(d) {
+    if (d.type === "central_service") {
+      return 0;
+    }
     var ang = ((x(d.x + d.dx / 2) - Math.PI / 2) / Math.PI) * 180;
     return ang > 90 ? 180 + ang : ang;
   }
@@ -882,9 +885,18 @@ function sunburst(recipient, data, width, height) {
       return computeTextRotation(d) > 180 ? -40 : -30;
     })
     .attr("dx", "6") // margin
-    .attr("dy", ".35em") // vertical-align
+    .attr("dy", function(d) {
+      if (d.type === "central_service") {
+        return "-7em";
+      }
+      return ".35em";
+    }) // vertical-align
     .attr("opacity", function(d) {
-      if (typeof d.show_name != "undefined" && d.show_name) return 1;
+      if (
+        (typeof d.show_name != "undefined" && d.show_name) ||
+        d.type === "central_service"
+      )
+        return 1;
       else return 0;
     })
     .text(function(d) {
@@ -899,7 +911,11 @@ function sunburst(recipient, data, width, height) {
       window.location.href = d.link;
     } else {
       // fade out all text elements
-      text.transition().attr("opacity", 0);
+      if (d.type === "central_service") {
+        text.transition().attr("opacity", 1);
+      } else {
+        text.transition().attr("opacity", 0);
+      }
 
       path
         .transition()
diff --git a/pandora_console/include/lib/Dashboard/Widgets/service_map.php b/pandora_console/include/lib/Dashboard/Widgets/service_map.php
index a05f71c92a..21a7edc82c 100644
--- a/pandora_console/include/lib/Dashboard/Widgets/service_map.php
+++ b/pandora_console/include/lib/Dashboard/Widgets/service_map.php
@@ -405,7 +405,7 @@ class ServiceMapWidget extends Widget
             );
         } else {
             include_once $config['homedir'].'/include/graphs/functions_d3.php';
-            servicemap_print_sunburst($this->values['serviceId'], $size['width'], $size['height']);
+            servicemap_print_sunburst($this->values['serviceId'], $size['width'], $size['height'], false);
         }
 
         $output .= ob_get_clean();

From 2ab1aa601c7d8220a3f7c9b021c14d719f1578b2 Mon Sep 17 00:00:00 2001
From: fbsanchez <fborja.sanchez@artica.es>
Date: Wed, 20 Apr 2022 14:10:23 +0200
Subject: [PATCH 015/138] Service tree view with local scope parents

---
 pandora_console/general/header.php            |  2 +-
 .../include/class/TreeService.class.php       |  2 +
 pandora_console/include/functions.php         | 50 +++++++++++++++++++
 .../include/javascript/tree/TreeController.js |  3 +-
 4 files changed, 55 insertions(+), 2 deletions(-)

diff --git a/pandora_console/general/header.php b/pandora_console/general/header.php
index 9b0333c55a..5e2ad24ce2 100644
--- a/pandora_console/general/header.php
+++ b/pandora_console/general/header.php
@@ -954,7 +954,7 @@ echo sprintf('<div id="header_table" class="header_table_%s">', $menuTypeClass);
         
         $("a.autorefresh").click (function () {
             $("a.autorefresh_txt").toggle ();
-            $("#combo_refr").toggle ();
+            $("#combo_refr").toggle();
             $("select#ref").change (function () {
                 href = $("a.autorefresh").attr ("href");
             
diff --git a/pandora_console/include/class/TreeService.class.php b/pandora_console/include/class/TreeService.class.php
index ebca4562a6..e69862a9fd 100644
--- a/pandora_console/include/class/TreeService.class.php
+++ b/pandora_console/include/class/TreeService.class.php
@@ -523,6 +523,8 @@ class TreeService extends Tree
                         continue 2;
                     }
 
+                    $tmp['parents'] = $item->service()->getAncestors();
+                    $tmp['title'] = join('/', $tmp['parents']);
                     $tmp['id'] = (int) $item->service()->id();
                     $tmp['name'] = $item->service()->name();
                     $tmp['alias'] = $item->service()->name();
diff --git a/pandora_console/include/functions.php b/pandora_console/include/functions.php
index ca0c9dad7d..c1b6697022 100644
--- a/pandora_console/include/functions.php
+++ b/pandora_console/include/functions.php
@@ -5986,6 +5986,56 @@ function send_test_email(
 }
 
 
+/**
+ * Return array of ancestors of item, given array.
+ *
+ * @param integer     $item    From index.
+ * @param array       $data    Array data.
+ * @param string      $key     Pivot key (identifies the parent).
+ * @param string|null $extract Extract certain column or index.
+ * @param array       $visited Cycle detection.
+ *
+ * @return array Array of ancestors.
+ */
+function get_ancestors(
+    int $item,
+    array $data,
+    string $key,
+    ?string $extract=null,
+    array &$visited=[]
+) :array {
+    if (isset($visited[$item]) === true) {
+        return [];
+    }
+
+    $visited[$item] = 1;
+
+    if (isset($data[$item]) === false) {
+        return [];
+    }
+
+    if (isset($data[$item][$key]) === false) {
+        if ($extract !== null) {
+            return [$data[$item][$extract]];
+        }
+
+        return [$item];
+    }
+
+    if ($extract !== null) {
+        return array_merge(
+            get_ancestors($data[$item][$key], $data, $key, $extract, $visited),
+            [$data[$item][$extract]]
+        );
+    }
+
+    return array_merge(
+        get_ancestors($data[$item][$key], $data, $key, $extract, $visited),
+        [$item]
+    );
+}
+
+
 if (function_exists('str_contains') === false) {
 
 
diff --git a/pandora_console/include/javascript/tree/TreeController.js b/pandora_console/include/javascript/tree/TreeController.js
index 7f22c6e9d0..a09be1880d 100644
--- a/pandora_console/include/javascript/tree/TreeController.js
+++ b/pandora_console/include/javascript/tree/TreeController.js
@@ -848,6 +848,7 @@ var TreeController = {
 
               break;
             case "services":
+              console.log(element);
               if (
                 typeof element.statusImageHTML != "undefined" &&
                 element.statusImageHTML.length > 0
@@ -861,7 +862,7 @@ var TreeController = {
                 '<span><img class="invert_filter" src="' +
                 (controller.baseURL.length > 0 ? controller.baseURL : "") +
                 'images/help.png" class="img_help" title="' +
-                element.name +
+                (element.title ? element.title : element.name) +
                 '" alt="' +
                 element.name +
                 '"/></span> ';

From 87cd23b08a214eba49ae59f4a2d05c7d0a7dc6a1 Mon Sep 17 00:00:00 2001
From: fbsanchez <fborja.sanchez@artica.es>
Date: Wed, 20 Apr 2022 18:41:03 +0200
Subject: [PATCH 016/138] a nice trick

---
 pandora_console/include/class/TreeService.class.php    | 10 ++++++++--
 .../include/javascript/tree/TreeController.js          |  3 ++-
 2 files changed, 10 insertions(+), 3 deletions(-)

diff --git a/pandora_console/include/class/TreeService.class.php b/pandora_console/include/class/TreeService.class.php
index e69862a9fd..43da11116e 100644
--- a/pandora_console/include/class/TreeService.class.php
+++ b/pandora_console/include/class/TreeService.class.php
@@ -523,8 +523,14 @@ class TreeService extends Tree
                         continue 2;
                     }
 
-                    $tmp['parents'] = $item->service()->getAncestors();
-                    $tmp['title'] = join('/', $tmp['parents']);
+                    $title = get_parameter('title', '');
+                    if (empty($title) === true) {
+                        $tmp['title'] = '';
+                    } else {
+                        $tmp['title'] = $title.'/';
+                    }
+
+                    $tmp['title'] .= $service->name();
                     $tmp['id'] = (int) $item->service()->id();
                     $tmp['name'] = $item->service()->name();
                     $tmp['alias'] = $item->service()->name();
diff --git a/pandora_console/include/javascript/tree/TreeController.js b/pandora_console/include/javascript/tree/TreeController.js
index a09be1880d..b90b76a021 100644
--- a/pandora_console/include/javascript/tree/TreeController.js
+++ b/pandora_console/include/javascript/tree/TreeController.js
@@ -848,7 +848,6 @@ var TreeController = {
 
               break;
             case "services":
-              console.log(element);
               if (
                 typeof element.statusImageHTML != "undefined" &&
                 element.statusImageHTML.length > 0
@@ -1302,6 +1301,7 @@ var TreeController = {
                     .removeClass("leaf-error")
                     .addClass("leaf-loading");
 
+                  console.log(element);
                   $.ajax({
                     url: controller.ajaxURL,
                     type: "POST",
@@ -1315,6 +1315,7 @@ var TreeController = {
                       serverID: element.serverID,
                       rootType: element.rootType,
                       metaID: element.metaID,
+                      title: element.title,
                       filter: controller.filter,
                       auth_class: controller.auth_class,
                       id_user: controller.id_user,

From 78907e691c810cfee568aac4b6e05dfde138967e Mon Sep 17 00:00:00 2001
From: fbsanchez <fborja.sanchez@artica.es>
Date: Wed, 20 Apr 2022 18:45:52 +0200
Subject: [PATCH 017/138] removed traces

---
 pandora_console/include/javascript/tree/TreeController.js | 1 -
 1 file changed, 1 deletion(-)

diff --git a/pandora_console/include/javascript/tree/TreeController.js b/pandora_console/include/javascript/tree/TreeController.js
index b90b76a021..073a862c4c 100644
--- a/pandora_console/include/javascript/tree/TreeController.js
+++ b/pandora_console/include/javascript/tree/TreeController.js
@@ -1301,7 +1301,6 @@ var TreeController = {
                     .removeClass("leaf-error")
                     .addClass("leaf-loading");
 
-                  console.log(element);
                   $.ajax({
                     url: controller.ajaxURL,
                     type: "POST",

From 00f594293cbb57f05ecbb1d1930ae5eb3a4857e8 Mon Sep 17 00:00:00 2001
From: fbsanchez <fborja.sanchez@artica.es>
Date: Wed, 20 Apr 2022 19:20:54 +0200
Subject: [PATCH 018/138] hint parents in service selection

---
 .../include/lib/Dashboard/Widgets/service_map.php | 15 ++++++++++++++-
 1 file changed, 14 insertions(+), 1 deletion(-)

diff --git a/pandora_console/include/lib/Dashboard/Widgets/service_map.php b/pandora_console/include/lib/Dashboard/Widgets/service_map.php
index a2122c6dca..3dbcbdf5b0 100644
--- a/pandora_console/include/lib/Dashboard/Widgets/service_map.php
+++ b/pandora_console/include/lib/Dashboard/Widgets/service_map.php
@@ -268,7 +268,20 @@ class ServiceMapWidget extends Widget
             $fields = array_reduce(
                 $services_res,
                 function ($carry, $item) {
-                    $carry[$item['id']] = $item['name'];
+                    $parents = '';
+                    if (class_exists('\PandoraFMS\Enterprise\Service') === true) {
+                        try {
+                            $service = new \PandoraFMS\Enterprise\Service($item['id']);
+                            $ancestors = $service->getAncestors();
+                            if (empty($ancestors) === false) {
+                                $parents = '('.join('/', $ancestors).')';
+                            }
+                        } catch (\Exception $e) {
+                            $parents = '';
+                        }
+                    }
+
+                    $carry[$item['id']] = $item['name'].' '.$parents;
                     return $carry;
                 },
                 []

From 0223dd27c7be69a5c23f1244700943d4bfde80f8 Mon Sep 17 00:00:00 2001
From: "alejandro.campos@artica.es" <alejandro.campos@artica.es>
Date: Thu, 21 Apr 2022 16:56:08 +0200
Subject: [PATCH 019/138] implemented text search of select inputs

---
 pandora_console/include/javascript/pandora.js | 29 +++++++++++++++++++
 1 file changed, 29 insertions(+)

diff --git a/pandora_console/include/javascript/pandora.js b/pandora_console/include/javascript/pandora.js
index b16373785f..d22068ae1e 100644
--- a/pandora_console/include/javascript/pandora.js
+++ b/pandora_console/include/javascript/pandora.js
@@ -2029,3 +2029,32 @@ function inArray(needle, haystack) {
   }
   return false;
 }
+
+/**
+ * Filter selector item by text based on a text input.
+ *
+ * @param {string} textbox Text input.
+ *
+ * @return {void}
+ */
+$.fn.filterByText = function(textbox) {
+  var select = this;
+
+  $(textbox).bind("change keyup", function() {
+    var search = $.trim($(textbox).val());
+
+    $(select)
+      .find("option")
+      .each(function() {
+        if (
+          $(this)
+            .text()
+            .includes(search.toLowerCase()) === true
+        ) {
+          $(this).show();
+        } else {
+          $(this).hide();
+        }
+      });
+  });
+};

From ab9557c681c329cc741e36bf7dc3a0f594583d36 Mon Sep 17 00:00:00 2001
From: "alejandro.campos@artica.es" <alejandro.campos@artica.es>
Date: Thu, 21 Apr 2022 18:09:26 +0200
Subject: [PATCH 020/138] prevent registration dialog from showing up in update
 manager of metaconsole nodes

---
 pandora_console/godmode/update_manager/update_manager.php | 8 ++++++--
 1 file changed, 6 insertions(+), 2 deletions(-)

diff --git a/pandora_console/godmode/update_manager/update_manager.php b/pandora_console/godmode/update_manager/update_manager.php
index da9eb8543d..991491843a 100644
--- a/pandora_console/godmode/update_manager/update_manager.php
+++ b/pandora_console/godmode/update_manager/update_manager.php
@@ -107,7 +107,11 @@ switch ($tab) {
 
     case 'online':
     default:
-        $mode = \UpdateManager\UI\Manager::MODE_ONLINE;
-        include $config['homedir'].'/godmode/um_client/index.php';
+        if ($config['node_metaconsole'] === 0) {
+            $mode = \UpdateManager\UI\Manager::MODE_ONLINE;
+            include $config['homedir'].'/godmode/um_client/index.php';
+        } else {
+            ui_print_warning_message(__('Please register on metaconsole.'));
+        }
     break;
 }

From dfc599b2d8004ed883337780509116dc339344f7 Mon Sep 17 00:00:00 2001
From: Calvo <luis.calvo@artica.es>
Date: Fri, 22 Apr 2022 18:27:29 +0200
Subject: [PATCH 021/138] WIP: Meta disable groups CLI

---
 pandora_server/util/pandora_manage.pl | 66 +++++++++++++++++++--------
 1 file changed, 46 insertions(+), 20 deletions(-)

diff --git a/pandora_server/util/pandora_manage.pl b/pandora_server/util/pandora_manage.pl
index 0b6a96f3a4..a80b55c8ac 100755
--- a/pandora_server/util/pandora_manage.pl
+++ b/pandora_server/util/pandora_manage.pl
@@ -375,29 +375,55 @@ sub pandora_disable_group ($$$) {
 		exit;
 	}
 
-	if ($group == 0){
-		# Extract all the names of the pandora agents if it is for all = 0.
-		@agents_bd = get_db_rows ($dbh, 'SELECT nombre FROM tagente');
+	if(is_metaconsole($conf) == 1) {
+			my $servers = enterprise_hook('get_metaconsole_setup_servers',[$dbh]);
+			my @servers_id = split(',',$servers);
+			use Data:Dumper; 
+			print Dumper()
+			foreach my $server (@servers_id) {
+					my $dbh_metaconsole = enterprise_hook('get_node_dbh',[$conf, $server, $dbh]);
 
-		# Update bbdd.
-		db_do ($dbh, "UPDATE tagente SET disabled = 1");
-	}
-	else {
-		# Extract all the names of the pandora agents if it is for group.
-		@agents_bd = get_db_rows ($dbh, 'SELECT nombre FROM tagente WHERE id_grupo = ?', $group);
+					if ($group == 0){
+						# Extract all the names of the pandora agents if it is for all = 0.
+						@agents_bd = get_db_rows ($dbh_metaconsole, 'SELECT id_agente FROM tagente');
+					}
+					else {
+						# Extract all the names of the pandora agents if it is for group.
+						@agents_bd = get_db_rows ($dbh_metaconsole, 'SELECT id_agente FROM tagente WHERE id_grupo = ?', $group);
+					}
 
-		# Update bbdd.
-		db_do ($dbh, "UPDATE tagente SET disabled = 1 WHERE id_grupo = $group");
-	}
+					foreach my $id_agent (@agents_bd) {
+							# Call the API.
+							$result = api_call(
+								$conf, 'set', 'disabled_and_standby', $id_agent, $server, 1
+							);
+					}
+			}
+	} else {
+			if ($group == 0){
+				# Extract all the names of the pandora agents if it is for all = 0.
+				@agents_bd = get_db_rows ($dbh, 'SELECT nombre FROM tagente');
 
-	foreach my $name_agent (@agents_bd) {
-		# Check the standby field I put it to 0.
-		my $new_conf = update_conf_txt(
-			$conf,
-			$name_agent->{'nombre'},
-			'standby',
-			'1'
-		);
+				# Update bbdd.
+				db_do ($dbh, "UPDATE tagente SET disabled = 1");
+		}
+		else {
+				# Extract all the names of the pandora agents if it is for group.
+				@agents_bd = get_db_rows ($dbh, 'SELECT nombre FROM tagente WHERE id_grupo = ?', $group);
+
+				# Update bbdd.
+				db_do ($dbh, "UPDATE tagente SET disabled = 1 WHERE id_grupo = $group");
+		}
+
+		foreach my $name_agent (@agents_bd) {
+			# Check the standby field I put it to 0.
+			my $new_conf = update_conf_txt(
+				$conf,
+				$name_agent->{'nombre'},
+				'standby',
+				'1'
+			);
+		}
 	}
 
     return $result;

From 9adb8bae1d5ca4101459d7b62ac1277b52a49256 Mon Sep 17 00:00:00 2001
From: "alejandro.campos@artica.es" <alejandro.campos@artica.es>
Date: Mon, 25 Apr 2022 10:16:18 +0200
Subject: [PATCH 022/138] minor fix

---
 pandora_console/include/javascript/pandora.js | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/pandora_console/include/javascript/pandora.js b/pandora_console/include/javascript/pandora.js
index d22068ae1e..bdf8a8ab23 100644
--- a/pandora_console/include/javascript/pandora.js
+++ b/pandora_console/include/javascript/pandora.js
@@ -2042,6 +2042,7 @@ $.fn.filterByText = function(textbox) {
 
   $(textbox).bind("change keyup", function() {
     var search = $.trim($(textbox).val());
+    var regex = new RegExp(search, "gi");
 
     $(select)
       .find("option")
@@ -2049,7 +2050,7 @@ $.fn.filterByText = function(textbox) {
         if (
           $(this)
             .text()
-            .includes(search.toLowerCase()) === true
+            .match(regex) !== null
         ) {
           $(this).show();
         } else {

From 71d75fd6b7ca2f15d323804ca4a7a65c00beff50 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Jos=C3=A9=20Gonz=C3=A1lez?= <jose.gonzalez@pandorafms.com>
Date: Mon, 25 Apr 2022 11:23:44 +0200
Subject: [PATCH 023/138] Fix duplicated parameters

---
 pandora_server/FreeBSD/pandora_server.conf.new  | 4 ----
 pandora_server/NetBSD/pandora_server.conf.new   | 4 ----
 pandora_server/conf/pandora_server.conf.new     | 5 +----
 pandora_server/conf/pandora_server.conf.windows | 4 ----
 4 files changed, 1 insertion(+), 16 deletions(-)

diff --git a/pandora_server/FreeBSD/pandora_server.conf.new b/pandora_server/FreeBSD/pandora_server.conf.new
index 74f70a8f54..b081473adc 100644
--- a/pandora_server/FreeBSD/pandora_server.conf.new
+++ b/pandora_server/FreeBSD/pandora_server.conf.new
@@ -68,10 +68,6 @@ dbhost 127.0.0.1
 
 #dbport 3306
 
-# By default, parent agent will not be updated
-
-#update_parent 0
-
 # verbosity: level of detail on errors/messages (0 default, 1 verbose, 2 debug.... 10 noisy)
 # -v in command line (verbose) or -d (debug). Set this to 10 when try to locate problems and
 # set to 1 or 3 on production enviroments.
diff --git a/pandora_server/NetBSD/pandora_server.conf.new b/pandora_server/NetBSD/pandora_server.conf.new
index ddb8be2b9e..314c398d2d 100644
--- a/pandora_server/NetBSD/pandora_server.conf.new
+++ b/pandora_server/NetBSD/pandora_server.conf.new
@@ -68,10 +68,6 @@ dbhost 127.0.0.1
 
 #dbport 3306
 
-# By default, parent agent will not be updated
-
-#update_parent 0
-
 # verbosity: level of detail on errors/messages (0 default, 1 verbose, 2 debug.... 10 noisy)
 # -v in command line (verbose) or -d (debug). Set this to 10 when try to locate problems and
 # set to 1 or 3 on production enviroments.
diff --git a/pandora_server/conf/pandora_server.conf.new b/pandora_server/conf/pandora_server.conf.new
index 3afb1b390e..37d7a44f31 100644
--- a/pandora_server/conf/pandora_server.conf.new
+++ b/pandora_server/conf/pandora_server.conf.new
@@ -79,10 +79,6 @@ dbssl 0
 
 # dbsslcapath
 
-# By default, parent agent will not be updated
-
-#update_parent 0
-
 # verbosity: level of detail on errors/messages (0 default, 1 verbose, 2 debug.... 10 noisy)
 # -v in command line (verbose) or -d (debug). Set this to 10 when try to locate problems and
 # set to 1 or 3 on production enviroments.
@@ -430,6 +426,7 @@ sample_agent_interval 600
 # Update parent from the agent xml
 
 update_parent 1
+
 #
 #
 # This enable realtime reverse geocoding using Google Maps public api.
diff --git a/pandora_server/conf/pandora_server.conf.windows b/pandora_server/conf/pandora_server.conf.windows
index 0a2717793c..951eba889d 100644
--- a/pandora_server/conf/pandora_server.conf.windows
+++ b/pandora_server/conf/pandora_server.conf.windows
@@ -68,10 +68,6 @@ dbhost 192.168.55.1
 
 #dbport 3306
 
-# By default, parent agent will not be updated
-
-#update_parent 0
-
 # verbosity: level of detail on errors/messages (0 default, 1 verbose, 2 debug.... 10 noisy)
 # -v in command line (verbose) or -d (debug). Set this to 10 when try to locate problems and
 # set to 1 or 3 on production enviroments.

From f4ac0d19d033c46bd658d91690c0bdcebc19d688 Mon Sep 17 00:00:00 2001
From: Luis <luis.calvo@pandorafms.com>
Date: Mon, 25 Apr 2022 13:17:13 +0200
Subject: [PATCH 024/138] WIP: pandora manage disable group

---
 pandora_server/util/pandora_manage.pl | 15 ++++++++-------
 1 file changed, 8 insertions(+), 7 deletions(-)

diff --git a/pandora_server/util/pandora_manage.pl b/pandora_server/util/pandora_manage.pl
index a80b55c8ac..6b89b6c35c 100755
--- a/pandora_server/util/pandora_manage.pl
+++ b/pandora_server/util/pandora_manage.pl
@@ -36,7 +36,7 @@ use Encode::Locale;
 Encode::Locale::decode_argv;
 
 # version: define current version
-my $version = "7.0NG.761 Build 220420";
+my $version = "7.0NG.761 Build 220425";
 
 # save program name for logging
 my $progname = basename($0);
@@ -378,8 +378,6 @@ sub pandora_disable_group ($$$) {
 	if(is_metaconsole($conf) == 1) {
 			my $servers = enterprise_hook('get_metaconsole_setup_servers',[$dbh]);
 			my @servers_id = split(',',$servers);
-			use Data:Dumper; 
-			print Dumper()
 			foreach my $server (@servers_id) {
 					my $dbh_metaconsole = enterprise_hook('get_node_dbh',[$conf, $server, $dbh]);
 
@@ -394,9 +392,11 @@ sub pandora_disable_group ($$$) {
 
 					foreach my $id_agent (@agents_bd) {
 							# Call the API.
-							$result = api_call(
-								$conf, 'set', 'disabled_and_standby', $id_agent, $server, 1
-							);
+							use Data::Dumper;
+							print Dumper($conf);
+							$result .= api_call(
+								$conf, 'set', 'disabled_and_standby', $id_agent, $server, 1, 1
+							).'\n';
 					}
 			}
 	} else {
@@ -1164,7 +1164,8 @@ sub cli_disable_group() {
 		print_log "[INFO] Disabling group '$group_name'\n\n";
 	}
 	
-	pandora_disable_group ($conf, $dbh, $id_group);
+	my $result = pandora_disable_group ($conf, $dbh, $id_group);
+	print $result.'\n\n';
 }
 
 ##############################################################################

From 7c2625fddfb11325c859756aa1e501fbcbaf235e Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Jos=C3=A9=20Gonz=C3=A1lez?= <jose.gonzalez@pandorafms.com>
Date: Tue, 26 Apr 2022 11:47:34 +0200
Subject: [PATCH 025/138] Fix recursion checkbox position

---
 .../godmode/agentes/modificar_agente.php      | 28 +++++++++----------
 1 file changed, 14 insertions(+), 14 deletions(-)

diff --git a/pandora_console/godmode/agentes/modificar_agente.php b/pandora_console/godmode/agentes/modificar_agente.php
index 9c63363df2..a84bf918f8 100644
--- a/pandora_console/godmode/agentes/modificar_agente.php
+++ b/pandora_console/godmode/agentes/modificar_agente.php
@@ -315,7 +315,20 @@ html_print_select_groups(
     '',
     false
 );
-echo '</div>';
+echo '</div></td>';
+
+// Recursion checkbox.
+echo '<td>';
+echo __('Recursion').'&nbsp;';
+html_print_checkbox(
+    'recursion',
+    1,
+    $recursion,
+    false,
+    false,
+    'this.form.submit()'
+);
+echo '</td>';
 echo '<td>';
 echo __('Show Agents').'&nbsp;';
 $fields = [
@@ -346,19 +359,6 @@ foreach ($pre_fields as $key => $value) {
 
 html_print_select($fields, 'os', $os, 'this.form.submit()', 'All', 0);
 
-echo '</td>';
-
-echo '<td>';
-echo __('Recursion').'&nbsp;';
-html_print_checkbox(
-    'recursion',
-    1,
-    $recursion,
-    false,
-    false,
-    'this.form.submit()'
-);
-
 echo '</td><td>';
 echo __('Search').'&nbsp;';
 html_print_input_text('search', $search, '', 12);

From 7190a797ec17f0d2fe86c6a4f94928c091aca43e Mon Sep 17 00:00:00 2001
From: Luis <luis.calvo@pandorafms.com>
Date: Tue, 26 Apr 2022 14:47:49 +0200
Subject: [PATCH 026/138] Fix meta CLI disable group

---
 pandora_server/util/pandora_manage.pl | 18 +++++++-----------
 1 file changed, 7 insertions(+), 11 deletions(-)

diff --git a/pandora_server/util/pandora_manage.pl b/pandora_server/util/pandora_manage.pl
index 6b89b6c35c..8bdfc165cf 100755
--- a/pandora_server/util/pandora_manage.pl
+++ b/pandora_server/util/pandora_manage.pl
@@ -21,7 +21,7 @@ use JSON qw(decode_json encode_json);
 use MIME::Base64;
 use Encode qw(decode encode_utf8);
 use LWP::Simple;
-use Data::Dumper;
+#use Data::Dumper;
 
 # Default lib dir for RPM and DEB packages
 BEGIN { push @INC, '/usr/lib/perl5'; }
@@ -392,11 +392,9 @@ sub pandora_disable_group ($$$) {
 
 					foreach my $id_agent (@agents_bd) {
 							# Call the API.
-							use Data::Dumper;
-							print Dumper($conf);
-							$result .= api_call(
-								$conf, 'set', 'disabled_and_standby', $id_agent, $server, 1, 1
-							).'\n';
+							$result += api_call(
+								$conf, 'set', 'disabled_and_standby', $id_agent->{'id_agente'}, $server, '1|1' 
+							);
 					}
 			}
 	} else {
@@ -405,14 +403,14 @@ sub pandora_disable_group ($$$) {
 				@agents_bd = get_db_rows ($dbh, 'SELECT nombre FROM tagente');
 
 				# Update bbdd.
-				db_do ($dbh, "UPDATE tagente SET disabled = 1");
+				$result = db_update ($dbh, "UPDATE tagente SET disabled = 1");
 		}
 		else {
 				# Extract all the names of the pandora agents if it is for group.
 				@agents_bd = get_db_rows ($dbh, 'SELECT nombre FROM tagente WHERE id_grupo = ?', $group);
 
 				# Update bbdd.
-				db_do ($dbh, "UPDATE tagente SET disabled = 1 WHERE id_grupo = $group");
+				$result = db_update ($dbh, "UPDATE tagente SET disabled = 1 WHERE id_grupo = $group");
 		}
 
 		foreach my $name_agent (@agents_bd) {
@@ -1165,7 +1163,7 @@ sub cli_disable_group() {
 	}
 	
 	my $result = pandora_disable_group ($conf, $dbh, $id_group);
-	print $result.'\n\n';
+	print_log "[INFO] Disbaled ".$result." agents from group ".$group_name."\n\n";
 }
 
 ##############################################################################
@@ -5566,8 +5564,6 @@ sub cli_get_agents() {
 	
 	my $head_print = 0;
 
-	# use Data::Dumper;
-
 
 	foreach my $agent (@agents) {
 		if($status ne '') {

From b5b273407090cd2ffd5834cf16b209291add5c27 Mon Sep 17 00:00:00 2001
From: Luis <luis.calvo@pandorafms.com>
Date: Wed, 27 Apr 2022 10:42:06 +0200
Subject: [PATCH 027/138] Fix CLI delete group on meta

---
 pandora_server/util/pandora_manage.pl | 18 ++++++++++++++++++
 1 file changed, 18 insertions(+)

diff --git a/pandora_server/util/pandora_manage.pl b/pandora_server/util/pandora_manage.pl
index 96253a489c..890c905823 100755
--- a/pandora_server/util/pandora_manage.pl
+++ b/pandora_server/util/pandora_manage.pl
@@ -5953,6 +5953,24 @@ sub cli_delete_group() {
 
 	$group_id = db_do ($dbh, 'DELETE FROM tgrupo WHERE nombre=?', safe_input($group_name));
 
+	# Delete on nodes too if metaconsole.
+	if(is_metaconsole($conf) == 1 && pandora_get_tconfig_token ($dbh, 'centralized_management', '')) {
+		my $servers = enterprise_hook('get_metaconsole_setup_servers',[$dbh]);
+		my @servers_id = split(',',$servers);
+
+	foreach my $server (@servers_id) {
+
+		my $dbh_node = enterprise_hook('get_node_dbh',[$conf, $server, $dbh]);
+
+		my $group_id = get_group_id($dbh_node,$group_name);
+		exist_check($group_id, 'group name', $group_name);
+
+		$group_id = db_do ($dbh_node, 'DELETE FROM tgrupo WHERE nombre=?', safe_input($group_name));
+
+		}
+	}
+
+
 	if($group_id == -1) {
 		print_log "[ERROR] A problem has been ocurred deleting group '$group_name'\n\n";
 	}else{

From 8dbf64b35ab5a7d45d66d36cf52ee838eb1873fd Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Jos=C3=A9=20Gonz=C3=A1lez?= <jose.gonzalez@pandorafms.com>
Date: Wed, 27 Apr 2022 12:10:13 +0200
Subject: [PATCH 028/138] Fix visual issue

---
 .../godmode/massive/massive_delete_alerts.php      | 14 ++++++++++----
 1 file changed, 10 insertions(+), 4 deletions(-)

diff --git a/pandora_console/godmode/massive/massive_delete_alerts.php b/pandora_console/godmode/massive/massive_delete_alerts.php
index 39028789de..37961cded8 100755
--- a/pandora_console/godmode/massive/massive_delete_alerts.php
+++ b/pandora_console/godmode/massive/massive_delete_alerts.php
@@ -258,9 +258,9 @@ $table->style[0] = 'font-weight: bold;';
 $table->style[2] = 'font-weight: bold;';
 $table->size = [];
 $table->size[0] = '15%';
-$table->size[1] = '40%';
+$table->size[1] = '35%';
 $table->size[2] = '15%';
-$table->size[3] = '40%';
+$table->size[3] = '35%';
 
 $table->data = [];
 
@@ -276,7 +276,12 @@ $table->data[0][1] = html_print_select(
     false,
     __('Select'),
     0,
-    true
+    true,
+    false,
+    true,
+    '',
+    false,
+    'width: 100%;'
 );
 $table->data[0][2] = '';
 $table->data[0][3] = '';
@@ -295,7 +300,8 @@ $table->data[1][1] = html_print_select_groups(
     false,
     true,
     '',
-    $id_alert_template == 0
+    $id_alert_template == 0,
+    'width: 100%;'
 );
 
 $table->data[0][2] = __('Show alerts on disabled modules');

From 5c029effdb47dadd83015540979c6fe7f74f29e1 Mon Sep 17 00:00:00 2001
From: "alejandro.campos@artica.es" <alejandro.campos@artica.es>
Date: Thu, 28 Apr 2022 11:51:48 +0200
Subject: [PATCH 029/138] minor fix

---
 pandora_server/lib/PandoraFMS/DataServer.pm | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/pandora_server/lib/PandoraFMS/DataServer.pm b/pandora_server/lib/PandoraFMS/DataServer.pm
index 232361a50f..083fb77f8e 100644
--- a/pandora_server/lib/PandoraFMS/DataServer.pm
+++ b/pandora_server/lib/PandoraFMS/DataServer.pm
@@ -583,6 +583,11 @@ sub process_xml_data ($$$$$) {
 							
 				$module_data->{'data'} = $data->{'value'};
 				my $data_timestamp = get_tag_value ($data, 'timestamp', $timestamp);
+
+				if ($pa_config->{'use_xml_timestamp'} eq '0' && defined($timestamp)) {
+					$data_timestamp = $timestamp;
+				}
+
 				process_module_data ($pa_config, $module_data, $server_id, $agent, $module_name,
 									 $module_type, $interval, $data_timestamp, $dbh, $new_agent);
 			}

From 7164bb0137011b7f5743a2deac121e1d0c18a813 Mon Sep 17 00:00:00 2001
From: Daniel Maya <daniel.maya@artica.es>
Date: Thu, 28 Apr 2022 13:13:10 +0200
Subject: [PATCH 030/138] #8153 Added custom data

---
 .../reporting_builder.item_editor.php         | 26 +++++++++-
 .../godmode/reporting/reporting_builder.php   | 12 +++++
 .../include/functions_reporting.php           | 18 +++++--
 .../include/functions_reporting_html.php      | 51 ++++++++++++++++++-
 4 files changed, 101 insertions(+), 6 deletions(-)

diff --git a/pandora_console/godmode/reporting/reporting_builder.item_editor.php b/pandora_console/godmode/reporting/reporting_builder.item_editor.php
index 2186c455d2..b5c66651b1 100755
--- a/pandora_console/godmode/reporting/reporting_builder.item_editor.php
+++ b/pandora_console/godmode/reporting/reporting_builder.item_editor.php
@@ -606,6 +606,7 @@ switch ($action) {
                     $event_graph_by_criticity = $style['event_graph_by_criticity'];
                     $event_graph_validated_vs_unvalidated = $style['event_graph_validated_vs_unvalidated'];
                     $include_extended_events = $item['show_extended_events'];
+                    $custom_data_events = $style['custom_data_events'];
 
                     $filter_search = $style['event_filter_search'];
                     $filter_exclude = $style['event_filter_exclude'];
@@ -631,6 +632,7 @@ switch ($action) {
 
 
                     $include_extended_events = $item['show_extended_events'];
+                    $custom_data_events = $style['custom_data_events'];
                 break;
 
                 case 'event_report_module':
@@ -665,6 +667,7 @@ switch ($action) {
 
 
                     $include_extended_events = $item['show_extended_events'];
+                    $custom_data_events = $style['custom_data_events'];
                 break;
 
                 case 'general':
@@ -2911,6 +2914,23 @@ $class = 'databox filters';
             </td>
         </tr>
 
+        <tr id="row_custom_data_events" class="datos">
+            <td class="bolder">
+                <?php
+                echo __('Show custom data');
+                ?>
+            </td>
+            <td>
+                <?php
+                html_print_checkbox_switch(
+                    'custom_data_events',
+                    true,
+                    $custom_data_events
+                );
+                ?>
+            </td>
+        </tr>
+
         <tr id="row_event_graphs"   class="datos">
             <td class="bolder"><?php echo __('Event graphs'); ?></td>
             <td>
@@ -5974,6 +5994,7 @@ function chooseType() {
     $("#row_event_graph_by_criticity").hide();
     $("#row_event_graph_by_validated").hide();
     $("#row_extended_events").hide();
+    $("#row_custom_data_events").hide();
     $("#row_netflow_filter").hide();
     $("#row_max_values").hide();
     $("#row_resolution").hide();
@@ -6044,6 +6065,7 @@ function chooseType() {
             $("#row_event_graph_by_criticity").show();
             $("#row_event_graph_by_validated").show();
             $("#row_extended_events").show();
+            $("#row_custom_data_events").show();
 
             $("#row_filter_search").show();
             $("#row_filter_exclude").show();
@@ -6371,6 +6393,7 @@ function chooseType() {
             $("#row_event_graph_by_validated").show();
             $("#row_event_type").show();
             $("#row_extended_events").show();
+            $("#row_custom_data_events").show();
 
             $("#row_filter_search").show();
             $("#row_filter_exclude").show();
@@ -6389,7 +6412,7 @@ function chooseType() {
             $("#row_event_graphs").show();
             $("#row_event_type").show();
             $("#row_extended_events").show();
-            $("#row_extended_events").show();
+            $("#row_custom_data_events").show();
 
             $("#row_event_graph_by_user").show();
             $("#row_event_graph_by_criticity").show();
@@ -6414,6 +6437,7 @@ function chooseType() {
             $("#row_event_graphs").show();
             $("#row_event_type").show();
             $("#row_extended_events").show();
+            $("#row_custom_data_events").show();
 
             $("#row_event_graph_by_user").show();
             $("#row_event_graph_by_criticity").show();
diff --git a/pandora_console/godmode/reporting/reporting_builder.php b/pandora_console/godmode/reporting/reporting_builder.php
index 608f2f6a54..94c9e0b454 100755
--- a/pandora_console/godmode/reporting/reporting_builder.php
+++ b/pandora_console/godmode/reporting/reporting_builder.php
@@ -2224,12 +2224,18 @@ switch ($action) {
                                     $filter_event_status
                                 );
 
+                                $custom_data_events = get_parameter_switch(
+                                    'custom_data_events',
+                                    0
+                                );
+
                                 $style['event_graph_by_agent'] = $event_graph_by_agent;
                                 $style['event_graph_by_user_validator'] = $event_graph_by_user_validator;
                                 $style['event_graph_by_criticity'] = $event_graph_by_criticity;
                                 $style['event_graph_validated_vs_unvalidated'] = $event_graph_validated_vs_unvalidated;
                                 $style['event_filter_search'] = $event_filter_search;
                                 $style['event_filter_exclude'] = $event_filter_exclude;
+                                $style['custom_data_events'] = $custom_data_events;
 
 
                                 if ($label != '') {
@@ -2957,6 +2963,11 @@ switch ($action) {
                                     ''
                                 );
 
+                                $custom_data_events = get_parameter_switch(
+                                    'custom_data_events',
+                                    0
+                                );
+
 
                                 // Added for events items.
                                 $style['show_summary_group'] = $show_summary_group;
@@ -2976,6 +2987,7 @@ switch ($action) {
                                 $style['event_graph_validated_vs_unvalidated'] = $event_graph_validated_vs_unvalidated;
                                 $style['event_filter_search'] = $event_filter_search;
                                 $style['event_filter_exclude'] = $event_filter_exclude;
+                                $style['custom_data_events'] = $custom_data_events;
 
                                 if ($label != '') {
                                     $style['label'] = $label;
diff --git a/pandora_console/include/functions_reporting.php b/pandora_console/include/functions_reporting.php
index 6bf29c1235..ae40d03de3 100755
--- a/pandora_console/include/functions_reporting.php
+++ b/pandora_console/include/functions_reporting.php
@@ -810,7 +810,7 @@ function reporting_make_reporting_data(
                     break;
                 }
 
-                    $report['contents'][] = $report_control;
+                $report['contents'][] = $report_control;
             break;
 
             case 'event_report_module':
@@ -826,7 +826,7 @@ function reporting_make_reporting_data(
                     break;
                 }
 
-                    $report['contents'][] = $report_control;
+                $report['contents'][] = $report_control;
             break;
 
             case 'event_report_group':
@@ -1943,6 +1943,8 @@ function reporting_event_report_group(
 
     $event_filter = $content['style'];
     $return['show_summary_group'] = $event_filter['show_summary_group'];
+    $return['show_custom_data'] = (isset($event_filter['custom_data_events']) === true) ? (bool) $event_filter['custom_data_events'] : false;
+
     // Filter.
     $show_summary_group         = $event_filter['show_summary_group'];
     $filter_event_severity      = json_decode($event_filter['filter_event_severity'], true);
@@ -2246,6 +2248,8 @@ function reporting_event_report_module(
 
     $event_filter = $content['style'];
     $return['show_summary_group'] = $event_filter['show_summary_group'];
+    $return['show_custom_data'] = (isset($event_filter['custom_data_events']) === true) ? (bool) $event_filter['custom_data_events'] : false;
+
     // Filter.
     $show_summary_group = $event_filter['show_summary_group'];
     $filter_event_severity = json_decode(
@@ -3779,6 +3783,8 @@ function reporting_event_report_agent(
     $filter_event_status = json_decode($style['filter_event_status'], true);
     $filter_event_filter_search = $style['event_filter_search'];
     $filter_event_filter_exclude = $style['event_filter_exclude'];
+    $show_custom_data = (isset($style['custom_data_events']) === true) ? (bool) $style['custom_data_events'] : false;
+    $return['show_custom_data'] = $show_custom_data;
 
     // Graph.
     $event_graph_by_user_validator = $style['event_graph_by_user_validator'];
@@ -3798,7 +3804,8 @@ function reporting_event_report_agent(
         $filter_event_status,
         $filter_event_filter_search,
         $filter_event_filter_exclude,
-        $id_server
+        $id_server,
+        $show_custom_data
     );
 
     if (is_metaconsole() === true) {
@@ -10594,7 +10601,8 @@ function reporting_get_agents_detailed_event(
     $filter_event_status=false,
     $filter_event_filter_search=false,
     $filter_event_filter_exclude=false,
-    $id_server=0
+    $id_server=0,
+    $show_custom_data=false
 ) {
     global $config;
 
@@ -10651,6 +10659,7 @@ function reporting_get_agents_detailed_event(
                         'validated_by' => $e['id_usuario'],
                         'timestamp'    => $e['timestamp_rep'],
                         'id_evento'    => $e['id_evento'],
+                        'custom_data'  => ($show_custom_data === true) ? $e['custom_data'] : '',
                     ];
                 } else {
                     $return_data[] = [
@@ -10661,6 +10670,7 @@ function reporting_get_agents_detailed_event(
                         'validated_by' => $e['id_usuario'],
                         'timestamp'    => $e['timestamp'],
                         'id_evento'    => $e['id_evento'],
+                        'custom_data'  => ($show_custom_data === true) ? $e['custom_data'] : '',
                     ];
                 }
             }
diff --git a/pandora_console/include/functions_reporting_html.php b/pandora_console/include/functions_reporting_html.php
index cd6af07794..d6450e37bd 100644
--- a/pandora_console/include/functions_reporting_html.php
+++ b/pandora_console/include/functions_reporting_html.php
@@ -1025,6 +1025,7 @@ function reporting_html_event_report_group($table, $item, $pdf=0)
     global $config;
 
     $show_extended_events = $item['show_extended_events'];
+    $show_custom_data = (bool) $item['show_custom_data'];
 
     if ($item['total_events']) {
         $table1 = new stdClass();
@@ -1060,6 +1061,10 @@ function reporting_html_event_report_group($table, $item, $pdf=0)
             $table1->head[6] = __('Timestamp');
         }
 
+        if ($show_custom_data === true) {
+            $table1->head[8] = __('Custom data');
+        }
+
         foreach ($item['data'] as $k => $event) {
             // First pass along the class of this row.
             if ($item['show_summary_group']) {
@@ -1132,6 +1137,16 @@ function reporting_html_event_report_group($table, $item, $pdf=0)
                 $data[] = '<font class="font_6pt">'.date($config['date_format'], strtotime($event['timestamp'])).'</font>';
             }
 
+            if ($show_custom_data === true) {
+                $custom_data = json_decode($event['custom_data'], true);
+                $custom_data_text = '';
+                foreach ($custom_data as $key => $value) {
+                    $custom_data_text .= $key.' = '.$value.'<br>';
+                }
+
+                $data[] = $custom_data_text;
+            }
+
             array_push($table1->data, $data);
 
             if ($show_extended_events == 1 && events_has_extended_info($event['id_evento'])) {
@@ -1246,10 +1261,10 @@ function reporting_html_event_report_group($table, $item, $pdf=0)
 function reporting_html_event_report_module($table, $item, $pdf=0)
 {
     global $config;
-
     $show_extended_events = $item['show_extended_events'];
 
     $show_summary_group = $item['show_summary_group'];
+    $show_custom_data = (bool) $item['show_custom_data'];
     if ($item['total_events']) {
         if (!empty($item['failed'])) {
             $table->colspan['events']['cell'] = 3;
@@ -1279,6 +1294,10 @@ function reporting_html_event_report_module($table, $item, $pdf=0)
                     $table1->style[0] = 'text-align: center;';
                 }
 
+                if ($show_custom_data === true) {
+                    $table1->head[6]  = __('Custom data');
+                }
+
                 if (is_array($item['data']) || is_object($item['data'])) {
                     $item_data = array_reverse($item['data']);
                 }
@@ -1331,6 +1350,16 @@ function reporting_html_event_report_module($table, $item, $pdf=0)
                             $data[4] = date($config['date_format'], strtotime($event['timestamp']));
                         }
 
+                        if ($show_custom_data === true) {
+                            $custom_data = json_decode($event['custom_data'], true);
+                            $custom_data_text = '';
+                            foreach ($custom_data as $key => $value) {
+                                $custom_data_text .= $key.' = '.$value.'<br>';
+                            }
+
+                            $data[6] = $custom_data_text;
+                        }
+
                         $table1->data[] = $data;
 
                         if ($show_extended_events == 1 && events_has_extended_info($event['id_evento'])) {
@@ -2341,6 +2370,13 @@ function reporting_html_event_report_agent($table, $item, $pdf=0)
         $table1->align[0] = 'center';
         $table1->align[1] = 'center';
         $table1->align[3] = 'center';
+        if ((bool) $item['show_custom_data'] === true) {
+            if ($item['show_summary_group']) {
+                $table1->align[7] = 'left';
+            } else {
+                $table1->align[6] = 'left';
+            }
+        }
 
         $table1->data = [];
 
@@ -2355,6 +2391,9 @@ function reporting_html_event_report_agent($table, $item, $pdf=0)
         $table1->head[4] = __('Severity');
         $table1->head[5] = __('Val. by');
         $table1->head[6] = __('Timestamp');
+        if ((bool) $item['show_custom_data'] === true) {
+            $table1->head[7] = __('Custom data');
+        }
 
         foreach ($item['data'] as $i => $event) {
             if ($item['show_summary_group']) {
@@ -2420,6 +2459,16 @@ function reporting_html_event_report_agent($table, $item, $pdf=0)
                 $data[] = '<font class="font_6pt">'.date($config['date_format'], strtotime($event['timestamp'])).'</font>';
             }
 
+            if ((bool) $item['show_custom_data'] === true) {
+                $custom_data = json_decode($event['custom_data'], true);
+                $custom_data_text = '';
+                foreach ($custom_data as $key => $value) {
+                    $custom_data_text .= $key.' = '.$value.'<br>';
+                }
+
+                $data[] = $custom_data_text;
+            }
+
             array_push($table1->data, $data);
 
             if ($show_extended_events == 1 && events_has_extended_info($event['id_evento'])) {

From 9fd4e415c0f1911d579bb5e0d8d2057d843b4f60 Mon Sep 17 00:00:00 2001
From: Daniel Maya <daniel.maya@artica.es>
Date: Tue, 3 May 2022 10:02:39 +0200
Subject: [PATCH 031/138] #8899 Fixed pass with entities

---
 pandora_console/include/functions_config.php | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/pandora_console/include/functions_config.php b/pandora_console/include/functions_config.php
index 07537de173..c934a7aea7 100644
--- a/pandora_console/include/functions_config.php
+++ b/pandora_console/include/functions_config.php
@@ -1607,7 +1607,7 @@ function config_update_config()
                                 'port' => $config['history_db_port'],
                                 'name' => $config['history_db_name'],
                                 'user' => $config['history_db_user'],
-                                'pass' => $config['history_db_pass'],
+                                'pass' => io_output_password($config['history_db_pass']),
                             ]
                         );
 

From a858c31d3973c7f00ded4f540bc3e539c99c2829 Mon Sep 17 00:00:00 2001
From: Luis <luis.calvo@artica.es>
Date: Wed, 4 May 2022 12:48:39 +0000
Subject: [PATCH 032/138] Update pandora_manage.pl

---
 pandora_server/util/pandora_manage.pl | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/pandora_server/util/pandora_manage.pl b/pandora_server/util/pandora_manage.pl
index ee6dc73d2b..681d035916 100755
--- a/pandora_server/util/pandora_manage.pl
+++ b/pandora_server/util/pandora_manage.pl
@@ -1163,7 +1163,7 @@ sub cli_disable_group() {
 	}
 	
 	my $result = pandora_disable_group ($conf, $dbh, $id_group);
-	print_log "[INFO] Disbaled ".$result." agents from group ".$group_name."\n\n";
+	print_log "[INFO] Disabled ".$result." agents from group ".$group_name."\n\n";
 }
 
 ##############################################################################
@@ -8744,4 +8744,4 @@ sub pandora_validate_alert_id($$$$) {
 		);
 
     return 1;
-}
\ No newline at end of file
+}

From eaef84b5b297063bff52ff2f5e6b27dc8f2211bc Mon Sep 17 00:00:00 2001
From: Daniel Maya <daniel.maya@artica.es>
Date: Wed, 4 May 2022 16:38:38 +0200
Subject: [PATCH 033/138] #8708 only enabled agent

---
 pandora_console/include/functions_alerts.php | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/pandora_console/include/functions_alerts.php b/pandora_console/include/functions_alerts.php
index 81b36f7476..070ff52831 100644
--- a/pandora_console/include/functions_alerts.php
+++ b/pandora_console/include/functions_alerts.php
@@ -118,6 +118,9 @@ function alerts_get_alerts($id_group=0, $free_search='', $status='all', $standby
         $sql .= ' AND t3.id_agente = '.$id_agent;
     }
 
+    // Only enabled agent.
+    $sql .= ' AND t3.disabled = 0';
+
     $row_alerts = db_get_all_rows_sql($sql);
 
     if ($total) {

From 63642f7e345534206aa0b5eb325d1fcdf35ff4d5 Mon Sep 17 00:00:00 2001
From: Calvo <luis.calvo@artica.es>
Date: Thu, 5 May 2022 11:47:49 +0200
Subject: [PATCH 034/138] Fix pandora_manage typo

---
 pandora_server/util/pandora_manage.pl | 34 +++++++++++++--------------
 1 file changed, 17 insertions(+), 17 deletions(-)

diff --git a/pandora_server/util/pandora_manage.pl b/pandora_server/util/pandora_manage.pl
index 3be94fed17..14c181ca06 100755
--- a/pandora_server/util/pandora_manage.pl
+++ b/pandora_server/util/pandora_manage.pl
@@ -3078,7 +3078,7 @@ sub cli_user_update() {
 		$new_value = md5($new_value);
 	}
 	else {
-		print_log "[ERROR] Field '$field' doesnt exist\n\n";
+		print_log "[ERROR] Field '$field' doesn't exist\n\n";
 		exit;
 	}
 		
@@ -3107,7 +3107,7 @@ sub cli_agent_update_custom_fields() {
 	my $found = 0;
 
 	if($agent_name eq '') {
-		print_log "[ERROR] Agent '$id_agent' doesnt exist\n\n";
+		print_log "[ERROR] Agent '$id_agent' doesn't exist\n\n";
 		exit;
 	}
 
@@ -3116,7 +3116,7 @@ sub cli_agent_update_custom_fields() {
 
 
 	if($custom_field eq '') {
-			print_log "[ERROR] Field '$field' doesnt exist\n\n";
+			print_log "[ERROR] Field '$field' doesn't exist\n\n";
 			exit;
 	}
 
@@ -3142,7 +3142,7 @@ sub cli_agent_update_custom_fields() {
 	if($result == "0E0"){
 			print_log "[ERROR] Error updating field '$field'\n\n";
 	} else {
-			print_log "[INFO] Field '$field' updated succesfully!\n\n";
+			print_log "[INFO] Field '$field' updated successfully!\n\n";
 	}
 
 	exit;
@@ -3210,7 +3210,7 @@ sub cli_agent_update() {
 		# Check if the address already exist
 		my $address_id = get_addr_id($dbh,$new_value);
 		
-		# If the addres doesnt exist, we add it to the addresses list
+		# If the addres doesn't exist, we add it to the addresses list
 		if($address_id == -1) {
 			$address_id = add_address($dbh,$new_value);
 		}
@@ -3233,7 +3233,7 @@ sub cli_agent_update() {
 		$field = 'direccion';
 	}
 	else {
-		print_log "[ERROR] Field '$field' doesnt exist\n\n";
+		print_log "[ERROR] Field '$field' doesn't exist\n\n";
 		exit;
 	}
 	
@@ -3299,7 +3299,7 @@ sub cli_alert_template_update() {
 		$field = 'id_group';
 	}
 	else {
-		print_log "[ERROR] Field '$field' doesnt exist\n\n";
+		print_log "[ERROR] Field '$field' doesn't exist\n\n";
 		exit;
 	}
 		
@@ -3346,7 +3346,7 @@ sub pandora_check_network_module_fields($) {
 		# Check if the address already exist
 		my $address_id = get_addr_id($dbh,$field_value->{'new_value'});
 		
-		# If the addres doesnt exist, we add it to the addresses list
+		# If the addres doesn't exist, we add it to the addresses list
 		if($address_id == -1) {
 			$address_id = add_address($dbh,$field_value->{'new_value'});
 		}
@@ -3419,7 +3419,7 @@ sub pandora_check_snmp_module_fields($) {
 		# Check if the address already exist
 		my $address_id = get_addr_id($dbh,$field_value->{'new_value'});
 		
-		# If the addres doesnt exist, we add it to the addresses list
+		# If the addres doesn't exist, we add it to the addresses list
 		if($address_id == -1) {
 			$address_id = add_address($dbh,$field_value->{'new_value'});
 		}
@@ -3482,7 +3482,7 @@ sub pandora_check_plugin_module_fields($) {
 		# Check if the address already exist
 		my $address_id = get_addr_id($dbh,$field_value->{'new_value'});
 		
-		# If the addres doesnt exist, we add it to the addresses list
+		# If the addres doesn't exist, we add it to the addresses list
 		if($address_id == -1) {
 			$address_id = add_address($dbh,$field_value->{'new_value'});
 		}
@@ -3584,7 +3584,7 @@ sub cli_module_update() {
 				my $module_group_id = get_module_group_id($dbh,$new_value);
 				
 				if ($module_group_id == -1) {
-					print_log "[ERROR] Module group '$new_value' doesnt exist\n\n";
+					print_log "[ERROR] Module group '$new_value' doesn't exist\n\n";
 					exit;
 				}
 				$field = 'id_module_group';
@@ -3728,7 +3728,7 @@ sub cli_module_update() {
 			my $module_group_id = get_module_group_id($dbh,$new_value);
 			
 			if ($module_group_id == -1) {
-				print_log "[ERROR] Module group '$new_value' doesnt exist\n\n";
+				print_log "[ERROR] Module group '$new_value' doesn't exist\n\n";
 				exit;
 			}
 			$field = 'id_module_group';
@@ -4749,7 +4749,7 @@ if($result == 0) {
 		print_log "[ERROR] Alert could not be validated\n\n";
 	}
 	else {
-			print_log "[INFO] Alert succesfully validated\n\n";
+			print_log "[INFO] Alert successfully validated\n\n";
 ;
 	}
 
@@ -5589,7 +5589,7 @@ sub cli_delete_conf_file() {
 			}
 			
 			if($conf_deleted == 1 || $md5_deleted == 1) {
-				print_log "[INFO] Local conf files of the agent '$agent_name' has been deleted succesfully\n\n";
+				print_log "[INFO] Local conf files of the agent '$agent_name' has been deleted successfully\n\n";
 			}
 			else {
 				print_log "[ERROR] Local conf file of the agent '$agent_name' was not found\n\n";
@@ -5607,7 +5607,7 @@ sub cli_delete_conf_file() {
 		}
 		
 		if($conf_deleted == 1 || $md5_deleted == 1) {
-			print_log "[INFO] Local conf files of the agent '$agent_name' has been deleted succesfully\n\n";
+			print_log "[INFO] Local conf files of the agent '$agent_name' has been deleted successfully\n\n";
 		}
 		else {
 			print_log "[ERROR] Local conf file of the agent '$agent_name' was not found\n\n";
@@ -5913,7 +5913,7 @@ sub cli_create_group() {
 							$parent_group_id, 0, 0, '', 0, $description);
 				};
 				if ($@) {
-					print_log "[ERROR] Problems with IDS and doesnt created group\n\n";
+					print_log "[ERROR] Problems with IDS and doesn't created group\n\n";
 					$count_error++;
 					next;
 				}
@@ -6563,7 +6563,7 @@ sub cli_update_special_day() {
 		$field = 'id_group';
 	}
 	else {
-		print_log "[ERROR] Field '$field' doesnt exist\n\n";
+		print_log "[ERROR] Field '$field' doesn't exist\n\n";
 		exit;
 	}
 		

From 39ff5e6173164d1bc29dc340aa00b46cef78d51c Mon Sep 17 00:00:00 2001
From: Daniel Maya <daniel.maya@artica.es>
Date: Thu, 5 May 2022 13:01:06 +0200
Subject: [PATCH 035/138] #8890 truncate text

---
 pandora_console/godmode/wizards/DiscoveryTaskList.class.php | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/pandora_console/godmode/wizards/DiscoveryTaskList.class.php b/pandora_console/godmode/wizards/DiscoveryTaskList.class.php
index 90e43aa526..5ef4b23614 100644
--- a/pandora_console/godmode/wizards/DiscoveryTaskList.class.php
+++ b/pandora_console/godmode/wizards/DiscoveryTaskList.class.php
@@ -713,7 +713,7 @@ class DiscoveryTaskList extends HTML
                 }
 
                 if ($task['id_recon_script'] == 0 || $ipam === true) {
-                    $data[4] = $subnet;
+                    $data[4] = ui_print_truncate_text($subnet, 50, true, true, true, '[&hellip;]');
                 } else {
                     $data[4] = '-';
                 }

From f3272eb3dfca58b216f57841c41c998c4e017f0d Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Jos=C3=A9=20Gonz=C3=A1lez?= <jose.gonzalez@pandorafms.com>
Date: Thu, 5 May 2022 17:36:07 +0200
Subject: [PATCH 036/138] Applied fix for snmp

---
 pandora_console/include/class/AgentWizard.class.php | 7 ++++++-
 1 file changed, 6 insertions(+), 1 deletion(-)

diff --git a/pandora_console/include/class/AgentWizard.class.php b/pandora_console/include/class/AgentWizard.class.php
index bc34fa5258..df9299078f 100644
--- a/pandora_console/include/class/AgentWizard.class.php
+++ b/pandora_console/include/class/AgentWizard.class.php
@@ -3572,7 +3572,12 @@ class AgentWizard extends HTML
                 if ($full_output === true) {
                     $output[] = $key.' = '.$oid_unit;
                 } else {
-                    preg_match('/\.\d+$/', $key, $index);
+                    $index = [];
+                    $index[] = preg_replace('/^'.$oid.'/', '', $key);
+                    if (empty($index) === true) {
+                        preg_match('/\.\d+$/', $key, $index);
+                    }
+
                     $tmp = explode(': ', $oid_unit);
                     $output[$index[0]] = str_replace('"', '', ($tmp[1] ?? ''));
                 }

From 1b3994d32ccafc006c949cf838c6a0c8a5179b3e Mon Sep 17 00:00:00 2001
From: Daniel Maya <daniel.maya@artica.es>
Date: Fri, 6 May 2022 11:54:17 +0200
Subject: [PATCH 037/138] #8730 Fixed console server version

---
 pandora_console/godmode/um_client/index.php         | 2 +-
 pandora_console/include/class/ConsoleSupervisor.php | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/pandora_console/godmode/um_client/index.php b/pandora_console/godmode/um_client/index.php
index d700a05e9b..3cbf584109 100644
--- a/pandora_console/godmode/um_client/index.php
+++ b/pandora_console/godmode/um_client/index.php
@@ -224,7 +224,7 @@ if (is_ajax() !== true) {
         if ($server_version !== false
             && preg_match('/NG\.(\d\.*\d*?) /', $server_version, $matches) > 0
         ) {
-            if ((float) $matches[1]  !== (float) $current_package) {
+            if ((float) $matches[1] !== floor((float) $current_package)) {
                 ui_print_warning_message(
                     __(
                         'Master server version %s does not match console version %s.',
diff --git a/pandora_console/include/class/ConsoleSupervisor.php b/pandora_console/include/class/ConsoleSupervisor.php
index ae61026fb3..c4a43105b3 100644
--- a/pandora_console/include/class/ConsoleSupervisor.php
+++ b/pandora_console/include/class/ConsoleSupervisor.php
@@ -2490,7 +2490,7 @@ class ConsoleSupervisor
             foreach ($server_version_list as $server) {
                 if (strpos(
                     $server['version'],
-                    floor($config['current_package'])
+                    (string) floor($config['current_package'])
                 ) === false
                 ) {
                     $missed++;

From dfc4786ef187a9063412c91bbac995e6c177ff8f Mon Sep 17 00:00:00 2001
From: Calvo <luis.calvo@artica.es>
Date: Fri, 6 May 2022 13:35:04 +0200
Subject: [PATCH 038/138] Changed snmpwalk parameters for wizard

---
 .../modules/manage_network_components_form_wizard.php |  1 +
 pandora_console/include/class/AgentWizard.class.php   |  3 ++-
 pandora_console/include/functions.php                 | 11 ++++++-----
 3 files changed, 9 insertions(+), 6 deletions(-)

diff --git a/pandora_console/godmode/modules/manage_network_components_form_wizard.php b/pandora_console/godmode/modules/manage_network_components_form_wizard.php
index 0fa9d763c5..15b8f2a508 100644
--- a/pandora_console/godmode/modules/manage_network_components_form_wizard.php
+++ b/pandora_console/godmode/modules/manage_network_components_form_wizard.php
@@ -178,6 +178,7 @@ switch ($type) {
     break;
 }
 
+$query_filter = [];
 if (empty($query_filter) === false) {
     $query_filter = json_decode($query_filter, true);
 }
diff --git a/pandora_console/include/class/AgentWizard.class.php b/pandora_console/include/class/AgentWizard.class.php
index bc34fa5258..671142817f 100644
--- a/pandora_console/include/class/AgentWizard.class.php
+++ b/pandora_console/include/class/AgentWizard.class.php
@@ -3559,7 +3559,8 @@ class AgentWizard extends HTML
             $this->targetPort,
             $this->server,
             $this->extraArguments,
-            (($full_output === false) ? '-Oa -On' : '-Oa')
+            (($full_output === false) ? '-On' : '-Oa'),
+            ''
         );
 
         if ($pure === true) {
diff --git a/pandora_console/include/functions.php b/pandora_console/include/functions.php
index ca0c9dad7d..172b8de169 100644
--- a/pandora_console/include/functions.php
+++ b/pandora_console/include/functions.php
@@ -1993,7 +1993,8 @@ function get_snmpwalk(
     $snmp_port='',
     $server_to_exec=0,
     $extra_arguments='',
-    $format='-Oa'
+    $format='-Oa',
+    $load_mibs='-m ALL'
 ) {
     global $config;
 
@@ -2057,15 +2058,15 @@ function get_snmpwalk(
         case '3':
             switch ($snmp3_security_level) {
                 case 'authNoPriv':
-                    $command_str = $snmpwalk_bin.' -m ALL '.$format.' '.$extra_arguments.' -v 3'.' -u '.escapeshellarg($snmp3_auth_user).' -A '.escapeshellarg($snmp3_auth_pass).' -l '.escapeshellarg($snmp3_security_level).' -a '.escapeshellarg($snmp3_auth_method).' '.escapeshellarg($ip_target).' '.$base_oid.' 2> '.$error_redir_dir;
+                    $command_str = $snmpwalk_bin.' '.$load_mibs.' '.$format.' '.$extra_arguments.' -v 3'.' -u '.escapeshellarg($snmp3_auth_user).' -A '.escapeshellarg($snmp3_auth_pass).' -l '.escapeshellarg($snmp3_security_level).' -a '.escapeshellarg($snmp3_auth_method).' '.escapeshellarg($ip_target).' '.$base_oid.' 2> '.$error_redir_dir;
                 break;
 
                 case 'noAuthNoPriv':
-                    $command_str = $snmpwalk_bin.' -m ALL '.$format.' '.$extra_arguments.' -v 3'.' -u '.escapeshellarg($snmp3_auth_user).' -l '.escapeshellarg($snmp3_security_level).' '.escapeshellarg($ip_target).' '.$base_oid.' 2> '.$error_redir_dir;
+                    $command_str = $snmpwalk_bin.' '.$load_mibs.' '.$format.' '.$extra_arguments.' -v 3'.' -u '.escapeshellarg($snmp3_auth_user).' -l '.escapeshellarg($snmp3_security_level).' '.escapeshellarg($ip_target).' '.$base_oid.' 2> '.$error_redir_dir;
                 break;
 
                 default:
-                    $command_str = $snmpwalk_bin.' -m ALL '.$format.' '.$extra_arguments.' -v 3'.' -u '.escapeshellarg($snmp3_auth_user).' -A '.escapeshellarg($snmp3_auth_pass).' -l '.escapeshellarg($snmp3_security_level).' -a '.escapeshellarg($snmp3_auth_method).' -x '.escapeshellarg($snmp3_privacy_method).' -X '.escapeshellarg($snmp3_privacy_pass).' '.escapeshellarg($ip_target).' '.$base_oid.' 2> '.$error_redir_dir;
+                    $command_str = $snmpwalk_bin.' '.$load_mibs.' '.$format.' '.$extra_arguments.' -v 3'.' -u '.escapeshellarg($snmp3_auth_user).' -A '.escapeshellarg($snmp3_auth_pass).' -l '.escapeshellarg($snmp3_security_level).' -a '.escapeshellarg($snmp3_auth_method).' -x '.escapeshellarg($snmp3_privacy_method).' -X '.escapeshellarg($snmp3_privacy_pass).' '.escapeshellarg($ip_target).' '.$base_oid.' 2> '.$error_redir_dir;
                 break;
             }
         break;
@@ -2074,7 +2075,7 @@ function get_snmpwalk(
         case '2c':
         case '1':
         default:
-            $command_str = $snmpwalk_bin.' -m ALL '.$extra_arguments.' '.$format.' -v '.escapeshellarg($snmp_version).' -c '.escapeshellarg(io_safe_output($snmp_community)).' '.escapeshellarg($ip_target).' '.$base_oid.' 2> '.$error_redir_dir;
+            $command_str = $snmpwalk_bin.' '.$load_mibs.' '.$extra_arguments.' '.$format.' -v '.escapeshellarg($snmp_version).' -c '.escapeshellarg(io_safe_output($snmp_community)).' '.escapeshellarg($ip_target).' '.$base_oid.' 2> '.$error_redir_dir;
         break;
     }
 

From 758933a2117c68bf6f33891a4246964295251d8e Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Jos=C3=A9=20Gonz=C3=A1lez?= <jose.gonzalez@pandorafms.com>
Date: Fri, 6 May 2022 14:23:24 +0200
Subject: [PATCH 039/138] Fix black theme issues

---
 pandora_console/include/graphs/pandora.d3.js  | 15 +++++++--
 .../operation/netflow/nf_live_view.php        | 33 +++++++++++++------
 2 files changed, 36 insertions(+), 12 deletions(-)

diff --git a/pandora_console/include/graphs/pandora.d3.js b/pandora_console/include/graphs/pandora.d3.js
index 8495a8728b..5f30f7379b 100644
--- a/pandora_console/include/graphs/pandora.d3.js
+++ b/pandora_console/include/graphs/pandora.d3.js
@@ -29,6 +29,12 @@ function chordDiagram(recipient, elements, matrix, width) {
     var width = 700;
     var margin = 150;
     var padding = 0.02;
+    var consoleStyle = document.getElementById("hidden-selected_style_theme")
+      .value;
+    var textColor =
+      consoleStyle === "pandora_black" ? "rgb(240, 240, 240)" : "rgb(0, 0, 0)";
+    var tooltipColor =
+      consoleStyle === "pandora_black" ? "rgb(0, 0, 0)" : "rgb(240, 240, 240)";
 
     function chart(selection) {
       selection.each(function(data) {
@@ -103,7 +109,6 @@ function chordDiagram(recipient, elements, matrix, width) {
               const chords = chord.chords();
               let aux = 0;
               $.each(chords, function(key, value) {
-                console.log(aux);
                 if (aux < 5) {
                   if (
                     (value.source.index == i && value.target.subindex == i) ||
@@ -159,6 +164,7 @@ function chordDiagram(recipient, elements, matrix, width) {
           .attr("text-anchor", function(d) {
             return d.angle > Math.PI ? "end" : null;
           })
+          .attr("style", "fill: " + textColor)
           .attr("transform", function(d) {
             return (
               "rotate(" +
@@ -266,7 +272,12 @@ function chordDiagram(recipient, elements, matrix, width) {
 
           $("#tooltip").attr(
             "style",
-            "background: #fff;" +
+            "background: " +
+              tooltipColor +
+              ";" +
+              "color: " +
+              textColor +
+              ";" +
               "position: absolute;" +
               "display: inline-block;" +
               "width: auto;" +
diff --git a/pandora_console/operation/netflow/nf_live_view.php b/pandora_console/operation/netflow/nf_live_view.php
index 442b1b2fa5..e717d92bfb 100644
--- a/pandora_console/operation/netflow/nf_live_view.php
+++ b/pandora_console/operation/netflow/nf_live_view.php
@@ -2,20 +2,28 @@
 /**
  * Netflow live view
  *
- * @package    Pandora FMS open.
- * @subpackage UI file.
+ * @category   Netflow
+ * @package    Pandora FMS
+ * @subpackage Community
+ * @version    1.0.0
+ * @license    See below
  *
- * Pandora FMS - http://pandorafms.com
- * ==================================================
- * Copyright (c) 2005-2021 Artica Soluciones Tecnologicas
+ *    ______                 ___                    _______ _______ ________
+ *   |   __ \.-----.--.--.--|  |.-----.----.-----. |    ___|   |   |     __|
+ *  |    __/|  _  |     |  _  ||  _  |   _|  _  | |    ___|       |__     |
+ * |___|   |___._|__|__|_____||_____|__| |___._| |___|   |__|_|__|_______|
+ *
+ * ============================================================================
+ * Copyright (c) 2005-2022 Artica Soluciones Tecnologicas
  * Please see http://pandorafms.org for full contribution list
  * This program is free software; you can redistribute it and/or
  * modify it under the terms of the GNU General Public License
- * as published by the Free Software Foundation; version 2
+ * as published by the Free Software Foundation for version 2.
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  * GNU General Public License for more details.
+ * ============================================================================
  */
 
 global $config;
@@ -40,7 +48,7 @@ if (! check_acl($config['id_user'], 0, 'AR') && ! check_acl($config['id_user'],
 $pure = get_parameter('pure', 0);
 
 // Ajax callbacks.
-if (is_ajax()) {
+if (is_ajax() === true) {
     $get_filter_type = get_parameter('get_filter_type', 0);
     $get_filter_values = get_parameter('get_filter_values', 0);
 
@@ -117,7 +125,7 @@ $draw = get_parameter('draw_button', '');
 $save = get_parameter('save_button', '');
 $update = get_parameter('update_button', '');
 
-if (!is_metaconsole()) {
+if (is_metaconsole() === false) {
     // Header.
     ui_print_page_header(
         __('Netflow live view'),
@@ -505,7 +513,7 @@ if (is_metaconsole()) {
 
     echo '</form>';
 
-    if ($draw != '') {
+    if (empty($draw) === false) {
         // Draw.
         echo '<br/>';
 
@@ -513,6 +521,11 @@ if (is_metaconsole()) {
         if ($netflow_disable_custom_lvfilters && $filter_selected == 0) {
             ui_print_error_message(__('No filter selected'));
         } else {
+            // Hidden input for handle properly the text colors.
+            html_print_input_hidden(
+                'selected_style_theme',
+                $config['style']
+            );
             // Draw the netflow chart.
             echo netflow_draw_item(
                 $start_date,

From 752a716c21a17069deb8f2d04f23805e28571c5a Mon Sep 17 00:00:00 2001
From: Calvo <luis.calvo@artica.es>
Date: Mon, 9 May 2022 08:58:14 +0200
Subject: [PATCH 040/138] Changed link to Suggest new feature on new
 installation

---
 pandora_console/pandoradb_data.sql | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/pandora_console/pandoradb_data.sql b/pandora_console/pandoradb_data.sql
index 865d06cfba..4072e4b77f 100644
--- a/pandora_console/pandoradb_data.sql
+++ b/pandora_console/pandoradb_data.sql
@@ -218,7 +218,7 @@ INSERT INTO `tlink` VALUES
 (1,'Documentation','https://pandorafms.com/manual'),
 (2,'Enterprise Edition','http://pandorafms.com'),
 (3,'Report a bug','https://github.com/pandorafms/pandorafms/issues'),
-(4,'Suggest new feature','http://forums.pandorafms.com/index.php?board=22.0'),
+(4,'Suggest new feature','https://pandorafms.com/community/beta-program/'),
 (5,'Module library','http://library.pandorafms.com/');
 
 UNLOCK TABLES;

From 6e03653b508ddd381be9ab575356082b03c43108 Mon Sep 17 00:00:00 2001
From: Rafael Ameijeiras <rafael.ameijeiras@artica.es>
Date: Mon, 9 May 2022 09:51:09 +0200
Subject: [PATCH 041/138] 
 8952-13576-quitar-check-a-google-del-script-de-instalacion

---
 extras/deploy-scripts/pandora_deploy_community.sh     | 3 +--
 extras/deploy-scripts/pandora_deploy_community_el8.sh | 3 +--
 2 files changed, 2 insertions(+), 4 deletions(-)

diff --git a/extras/deploy-scripts/pandora_deploy_community.sh b/extras/deploy-scripts/pandora_deploy_community.sh
index cb800cf29b..ef38435bfd 100644
--- a/extras/deploy-scripts/pandora_deploy_community.sh
+++ b/extras/deploy-scripts/pandora_deploy_community.sh
@@ -11,7 +11,7 @@ PANDORA_SERVER_CONF=/etc/pandora/pandora_server.conf
 PANDORA_AGENT_CONF=/etc/pandora/pandora_agent.conf
 
 
-S_VERSION='2022020801'
+S_VERSION='2022050901'
 LOGFILE="/tmp/pandora-deploy-community-$(date +%F).log"
 
 # define default variables
@@ -82,7 +82,6 @@ check_pre_pandora () {
 }
 
 check_repo_connection () {
-    execute_cmd "ping -c 2 8.8.8.8" "Checking internet connection"
     execute_cmd "ping -c 2 firefly.artica.es" "Checking Community repo"
     execute_cmd "ping -c 2 support.pandorafms.com" "Checking Enterprise repo"
 }
diff --git a/extras/deploy-scripts/pandora_deploy_community_el8.sh b/extras/deploy-scripts/pandora_deploy_community_el8.sh
index cdfcd951ca..145c1445ca 100644
--- a/extras/deploy-scripts/pandora_deploy_community_el8.sh
+++ b/extras/deploy-scripts/pandora_deploy_community_el8.sh
@@ -14,7 +14,7 @@ PANDORA_SERVER_CONF=/etc/pandora/pandora_server.conf
 PANDORA_AGENT_CONF=/etc/pandora/pandora_agent.conf
 
 
-S_VERSION='2022020801'
+S_VERSION='2022050901'
 LOGFILE="/tmp/pandora-deploy-community-$(date +%F).log"
 
 # define default variables
@@ -84,7 +84,6 @@ check_pre_pandora () {
 }
 
 check_repo_connection () {
-    execute_cmd "ping -c 2 8.8.8.8" "Checking internet connection"
     execute_cmd "ping -c 2 firefly.artica.es" "Checking Community repo"
     execute_cmd "ping -c 2 support.pandorafms.com" "Checking Enterprise repo"
 }

From 5c789125f2b561017a7fab325da91764eb8cf462 Mon Sep 17 00:00:00 2001
From: "alejandro.campos@artica.es" <alejandro.campos@artica.es>
Date: Mon, 9 May 2022 12:40:36 +0200
Subject: [PATCH 042/138] changed id_user field length from tusuario

---
 pandora_console/extras/mr/55.sql                  | 15 +++++++++++++++
 .../extras/pandoradb_migrate_6.0_to_759.mysql.sql | 15 +++++++++++++++
 pandora_console/pandoradb.sql                     | 12 ++++++------
 3 files changed, 36 insertions(+), 6 deletions(-)
 create mode 100644 pandora_console/extras/mr/55.sql

diff --git a/pandora_console/extras/mr/55.sql b/pandora_console/extras/mr/55.sql
new file mode 100644
index 0000000000..b00619d357
--- /dev/null
+++ b/pandora_console/extras/mr/55.sql
@@ -0,0 +1,15 @@
+START TRANSACTION;
+
+ALTER TABLE `tuser_double_auth` DROP FOREIGN KEY `tuser_double_auth_ibfk_1`, MODIFY `id_user` VARCHAR(255) NOT NULL;
+ALTER TABLE `tnotification_user` DROP FOREIGN KEY `tnotification_user_ibfk_2`, MODIFY `id_user` VARCHAR(255) NOT NULL;
+ALTER TABLE `tnotification_source_user` DROP FOREIGN KEY `tnotification_source_user_ibfk_2`, MODIFY `id_user` VARCHAR(255) NOT NULL;
+ALTER TABLE `tnotification_source_group_user` DROP FOREIGN KEY `tnotification_source_group_user_ibfk_2`, MODIFY `id_user` VARCHAR(255) NOT NULL;
+ALTER TABLE `tvisual_console_elements_cache` DROP FOREIGN KEY `tvisual_console_elements_cache_ibfk_3`, MODIFY `user_id` VARCHAR(255) DEFAULT NULL;
+ALTER TABLE `tusuario` MODIFY `id_user` VARCHAR(255) NOT NULL DEFAULT '0';
+ALTER TABLE `tuser_double_auth` ADD CONSTRAINT `tuser_double_auth_ibfk_1` FOREIGN KEY (`id_user`) REFERENCES `tusuario` (`id_user`) ON DELETE CASCADE;
+ALTER TABLE `tnotification_user` ADD CONSTRAINT `tnotification_user_ibfk_2` FOREIGN KEY (`id_user`) REFERENCES `tusuario` (`id_user`) ON DELETE CASCADE ON UPDATE CASCADE;
+ALTER TABLE `tnotification_source_user` ADD CONSTRAINT `tnotification_source_user_ibfk_2` FOREIGN KEY (`id_user`) REFERENCES `tusuario` (`id_user`) ON DELETE CASCADE ON UPDATE CASCADE;
+ALTER TABLE `tnotification_source_group_user` ADD CONSTRAINT `tnotification_source_group_user_ibfk_2` FOREIGN KEY (`id_user`) REFERENCES `tusuario` (`id_user`) ON DELETE CASCADE ON UPDATE CASCADE;
+ALTER TABLE `tvisual_console_elements_cache` ADD CONSTRAINT `tvisual_console_elements_cache_ibfk_3` FOREIGN KEY (`user_id`) REFERENCES `tusuario` (`id_user`) ON DELETE CASCADE ON UPDATE CASCADE;
+
+COMMIT;
diff --git a/pandora_console/extras/pandoradb_migrate_6.0_to_759.mysql.sql b/pandora_console/extras/pandoradb_migrate_6.0_to_759.mysql.sql
index ca68a5472a..242e7d42c6 100644
--- a/pandora_console/extras/pandoradb_migrate_6.0_to_759.mysql.sql
+++ b/pandora_console/extras/pandoradb_migrate_6.0_to_759.mysql.sql
@@ -4338,3 +4338,18 @@ ALTER TABLE `talert_special_days` DROP COLUMN `same_day`;
 ALTER TABLE `talert_special_days` ADD FOREIGN KEY (`id_calendar`) REFERENCES `talert_calendar`(`id`) ON DELETE CASCADE ON UPDATE CASCADE;
 
 UPDATE `tconfig` c1 JOIN (select count(*) as n FROM `tconfig` c2 WHERE (c2.`token` = "node_metaconsole" AND c2.`value` = 1) OR (c2.`token` = "centralized_management" AND c2.`value` = 1) ) v SET c1. `value` = 0 WHERE c1.token = "autocreate_remote_users" AND v.n = 2;
+
+-- ----------------------------------------------------------------------
+-- Table `tusuario`
+-- ----------------------------------------------------------------------
+ALTER TABLE `tuser_double_auth` DROP FOREIGN KEY `tuser_double_auth_ibfk_1`, MODIFY `id_user` VARCHAR(255) NOT NULL;
+ALTER TABLE `tnotification_user` DROP FOREIGN KEY `tnotification_user_ibfk_2`, MODIFY `id_user` VARCHAR(255) NOT NULL;
+ALTER TABLE `tnotification_source_user` DROP FOREIGN KEY `tnotification_source_user_ibfk_2`, MODIFY `id_user` VARCHAR(255) NOT NULL;
+ALTER TABLE `tnotification_source_group_user` DROP FOREIGN KEY `tnotification_source_group_user_ibfk_2`, MODIFY `id_user` VARCHAR(255) NOT NULL;
+ALTER TABLE `tvisual_console_elements_cache` DROP FOREIGN KEY `tvisual_console_elements_cache_ibfk_3`, MODIFY `user_id` VARCHAR(255) DEFAULT NULL;
+ALTER TABLE `tusuario` MODIFY `id_user` VARCHAR(255) NOT NULL DEFAULT '0';
+ALTER TABLE `tuser_double_auth` ADD CONSTRAINT `tuser_double_auth_ibfk_1` FOREIGN KEY (`id_user`) REFERENCES `tusuario` (`id_user`) ON DELETE CASCADE;
+ALTER TABLE `tnotification_user` ADD CONSTRAINT `tnotification_user_ibfk_2` FOREIGN KEY (`id_user`) REFERENCES `tusuario` (`id_user`) ON DELETE CASCADE ON UPDATE CASCADE;
+ALTER TABLE `tnotification_source_user` ADD CONSTRAINT `tnotification_source_user_ibfk_2` FOREIGN KEY (`id_user`) REFERENCES `tusuario` (`id_user`) ON DELETE CASCADE ON UPDATE CASCADE;
+ALTER TABLE `tnotification_source_group_user` ADD CONSTRAINT `tnotification_source_group_user_ibfk_2` FOREIGN KEY (`id_user`) REFERENCES `tusuario` (`id_user`) ON DELETE CASCADE ON UPDATE CASCADE;
+ALTER TABLE `tvisual_console_elements_cache` ADD CONSTRAINT `tvisual_console_elements_cache_ibfk_3` FOREIGN KEY (`user_id`) REFERENCES `tusuario` (`id_user`) ON DELETE CASCADE ON UPDATE CASCADE;
diff --git a/pandora_console/pandoradb.sql b/pandora_console/pandoradb.sql
index 29ec6e572b..bb98a706e3 100644
--- a/pandora_console/pandoradb.sql
+++ b/pandora_console/pandoradb.sql
@@ -1260,7 +1260,7 @@ CREATE TABLE IF NOT EXISTS `tevent_filter` (
 -- Table `tusuario`
 -- ----------------------------------------------------------------------
 CREATE TABLE IF NOT EXISTS `tusuario` (
-  `id_user` VARCHAR(60) NOT NULL DEFAULT '0',
+  `id_user` VARCHAR(255) NOT NULL DEFAULT '0',
   `fullname` VARCHAR(255) NOT NULL,
   `firstname` VARCHAR(255) NOT NULL,
   `lastname` VARCHAR(255) NOT NULL,
@@ -1328,7 +1328,7 @@ CREATE TABLE IF NOT EXISTS `tusuario_perfil` (
 -- ----------------------------------------------------------------------
 CREATE TABLE IF NOT EXISTS `tuser_double_auth` (
   `id` INT UNSIGNED NOT NULL AUTO_INCREMENT,
-  `id_user` VARCHAR(60) NOT NULL,
+  `id_user` VARCHAR(255) NOT NULL,
   `secret` VARCHAR(20) NOT NULL,
   PRIMARY KEY (`id`),
   UNIQUE (`id_user`),
@@ -1388,7 +1388,7 @@ CREATE TABLE IF NOT EXISTS `tmensajes` (
 -- ----------------------------------------------------------------------
 CREATE TABLE IF NOT EXISTS `tnotification_user` (
   `id_mensaje` INT UNSIGNED NOT NULL,
-  `id_user` VARCHAR(60) NOT NULL,
+  `id_user` VARCHAR(255) NOT NULL,
   `utimestamp_read` BIGINT,
   `utimestamp_erased` BIGINT,
   `postpone` INT,
@@ -1415,7 +1415,7 @@ CREATE TABLE IF NOT EXISTS `tnotification_group` (
 -- ----------------------------------------------------------------------
 CREATE TABLE IF NOT EXISTS `tnotification_source_user` (
   `id_source` BIGINT UNSIGNED NOT NULL,
-  `id_user` VARCHAR(60),
+  `id_user` VARCHAR(255),
   `enabled` INT DEFAULT NULL,
   `also_mail` INT DEFAULT NULL,
   PRIMARY KEY (`id_source`,`id_user`),
@@ -1443,7 +1443,7 @@ CREATE TABLE IF NOT EXISTS `tnotification_source_group` (
 CREATE TABLE IF NOT EXISTS `tnotification_source_group_user` (
   `id_source` BIGINT UNSIGNED NOT NULL,
   `id_group` MEDIUMINT UNSIGNED NOT NULL,
-  `id_user` VARCHAR(60),
+  `id_user` VARCHAR(255),
   `enabled` INT DEFAULT NULL,
   `also_mail` INT DEFAULT NULL,
   PRIMARY KEY (`id_source`,`id_user`),
@@ -3836,7 +3836,7 @@ CREATE TABLE IF NOT EXISTS `tvisual_console_elements_cache` (
   `id` INT UNSIGNED NOT NULL AUTO_INCREMENT,
   `vc_id` INT UNSIGNED NOT NULL,
   `vc_item_id` INT UNSIGNED NOT NULL,
-  `user_id` VARCHAR(60) DEFAULT NULL,
+  `user_id` VARCHAR(255) DEFAULT NULL,
   `data` TEXT,
   `created_at` TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP,
   `expiration` INT UNSIGNED NOT NULL COMMENT 'Seconds to expire',

From 2fb2853cd1c26f5323d26ae7e7bea04fcbcc7807 Mon Sep 17 00:00:00 2001
From: Daniel Maya <daniel.maya@artica.es>
Date: Tue, 10 May 2022 10:01:17 +0200
Subject: [PATCH 043/138] #8928 Added os quick report

---
 pandora_console/include/functions_os.php      | 196 ++++++++--
 .../include/lib/Dashboard/Widget.php          |   4 +
 .../lib/Dashboard/Widgets/os_quick_report.php | 344 ++++++++++++++++++
 3 files changed, 514 insertions(+), 30 deletions(-)
 create mode 100644 pandora_console/include/lib/Dashboard/Widgets/os_quick_report.php

diff --git a/pandora_console/include/functions_os.php b/pandora_console/include/functions_os.php
index d616c3e94f..2b5b25c24d 100755
--- a/pandora_console/include/functions_os.php
+++ b/pandora_console/include/functions_os.php
@@ -14,54 +14,190 @@
 // Get critical agents by using the status code in modules.
 function os_agents_critical($id_os)
 {
-    // TODO REVIEW ORACLE AND POSTGRES
-    return db_get_sql(
-        "
-		SELECT COUNT(*)
-		FROM tagente
-		WHERE tagente.disabled=0 AND
-			critical_count>0 AND id_os=$id_os"
-    );
+    global $config;
+
+    $table = (is_metaconsole() === true) ? 'tmetaconsole_agent' : 'tagente';
+
+    if (users_is_admin() === true) {
+        return db_get_sql(
+            sprintf(
+                'SELECT COUNT(*)
+                FROM %s
+                WHERE tagente.disabled=0 AND
+                critical_count>0 AND id_os=%d',
+                $table,
+                $id_os
+            )
+        );
+    } else {
+        $groups = array_keys(users_get_groups($config['id_user'], 'AR', false));
+
+        return db_get_sql(
+            sprintf(
+                'SELECT COUNT(*)
+                FROM %s
+                WHERE tagente.disabled=0 AND
+                critical_count>0 AND
+                id_os=%d AND id_grupo IN (%s)',
+                $table,
+                $id_os,
+                implode(',', $groups)
+            )
+        );
+    }
 }
 
 
 // Get ok agents by using the status code in modules.
 function os_agents_ok($id_os)
 {
-    return db_get_sql(
-        "
-		SELECT COUNT(*)
-		FROM tagente
-		WHERE tagente.disabled=0 AND
-			normal_count=total_count AND id_os=$id_os"
-    );
+    global $config;
+
+    $table = (is_metaconsole() === true) ? 'tmetaconsole_agent' : 'tagente';
+
+    if (users_is_admin() === true) {
+        return db_get_sql(
+            sprintf(
+                'SELECT COUNT(*)
+                FROM %s
+                WHERE tagente.disabled=0 AND
+                normal_count=total_count AND id_os=%d',
+                $table,
+                $id_os
+            )
+        );
+    } else {
+        $groups = array_keys(users_get_groups($config['id_user'], 'AR', false));
+
+        return db_get_sql(
+            sprintf(
+                'SELECT COUNT(*)
+                FROM %s
+                WHERE tagente.disabled=0 AND
+                normal_count=total_count AND
+                id_os=%d AND id_grupo IN (%s)',
+                $table,
+                $id_os,
+                implode(',', $groups)
+            )
+        );
+    }
 }
 
 
 // Get warning agents by using the status code in modules.
 function os_agents_warning($id_os)
 {
-    return db_get_sql(
-        "
-		SELECT COUNT(*)
-		FROM tagente
-		WHERE tagente.disabled=0 AND
-			critical_count=0 AND warning_count>0 AND id_os=$id_os"
-    );
+    global $config;
+
+    $table = (is_metaconsole() === true) ? 'tmetaconsole_agent' : 'tagente';
+
+    if (users_is_admin() === true) {
+        return db_get_sql(
+            sprintf(
+                'SELECT COUNT(*)
+                FROM %s
+                WHERE tagente.disabled=0 AND
+                critical_count=0 AND warning_count>0
+                AND id_os=%d',
+                $table,
+                $id_os
+            )
+        );
+    } else {
+        $groups = array_keys(users_get_groups($config['id_user'], 'AR', false));
+
+        return db_get_sql(
+            sprintf(
+                'SELECT COUNT(*)
+                FROM %s
+                WHERE tagente.disabled=0 AND
+                critical_count=0 AND warning_count>0 AND
+                id_os=%d AND id_grupo IN (%s)',
+                $table,
+                $id_os,
+                implode(',', $groups)
+            )
+        );
+    }
 }
 
 
 // Get unknown agents by using the status code in modules.
 function os_agents_unknown($id_os)
 {
-    return db_get_sql(
-        "
-		SELECT COUNT(*)
-		FROM tagente
-		WHERE tagente.disabled=0 AND
-			critical_count=0 AND warning_count=0 AND
-			unknown_count>0 AND id_os=$id_os"
-    );
+    global $config;
+
+    $table = (is_metaconsole() === true) ? 'tmetaconsole_agent' : 'tagente';
+
+    if (users_is_admin() === true) {
+        return db_get_sql(
+            sprintf(
+                'SELECT COUNT(*)
+                FROM %s
+                WHERE tagente.disabled=0 AND
+                critical_count=0 AND warning_count=0 AND
+                unknown_count>0 AND id_os=%d',
+                $table,
+                $id_os
+            )
+        );
+    } else {
+        $groups = array_keys(users_get_groups($config['id_user'], 'AR', false));
+
+        return db_get_sql(
+            sprintf(
+                'SELECT COUNT(*)
+                FROM %s
+                WHERE tagente.disabled=0 AND
+                critical_count=0 AND warning_count=0 AND
+                unknown_count>0 AND id_os=%d AND id_grupo IN (%s)',
+                $table,
+                $id_os,
+                implode(',', $groups)
+            )
+        );
+    }
+}
+
+
+/**
+ * Get total agents
+ *
+ * @param integer $id_os OS id.
+ *
+ * @return array|boolean
+ */
+function os_agents_total(int $id_os)
+{
+    global $config;
+
+    $table = (is_metaconsole() === true) ? 'tmetaconsole_agent' : 'tagente';
+
+    if (users_is_admin() === true) {
+        return db_get_sql(
+            sprintf(
+                'SELECT COUNT(*)
+                FROM %s
+                WHERE tagente.disabled=0 AND id_os=%d',
+                $table,
+                $id_os
+            )
+        );
+    } else {
+        $groups = array_keys(users_get_groups($config['id_user'], 'AR', false));
+
+        return db_get_sql(
+            sprintf(
+                'SELECT COUNT(*)
+                FROM %s
+                WHERE tagente.disabled=0 AND id_os=%d AND id_grupo IN (%s)',
+                $table,
+                $id_os,
+                implode(',', $groups)
+            )
+        );
+    }
 }
 
 
diff --git a/pandora_console/include/lib/Dashboard/Widget.php b/pandora_console/include/lib/Dashboard/Widget.php
index 320280718b..1c5904e74a 100644
--- a/pandora_console/include/lib/Dashboard/Widget.php
+++ b/pandora_console/include/lib/Dashboard/Widget.php
@@ -412,6 +412,10 @@ class Widget
                     $className .= '\WuxWidget';
                 break;
 
+                case 'os_quick_report':
+                    $className .= '\OsQuickReportWidget';
+                break;
+
                 default:
                     $className = false;
                 break;
diff --git a/pandora_console/include/lib/Dashboard/Widgets/os_quick_report.php b/pandora_console/include/lib/Dashboard/Widgets/os_quick_report.php
new file mode 100644
index 0000000000..ca8a56e604
--- /dev/null
+++ b/pandora_console/include/lib/Dashboard/Widgets/os_quick_report.php
@@ -0,0 +1,344 @@
+<?php
+/**
+ * Widget Tree view Pandora FMS Console
+ *
+ * @category   Console Class
+ * @package    Pandora FMS
+ * @subpackage Widget Tree view
+ * @version    1.0.0
+ * @license    See below
+ *
+ *    ______                 ___                    _______ _______ ________
+ *   |   __ \.-----.--.--.--|  |.-----.----.-----. |    ___|   |   |     __|
+ *  |    __/|  _  |     |  _  ||  _  |   _|  _  | |    ___|       |__     |
+ * |___|   |___._|__|__|_____||_____|__| |___._| |___|   |__|_|__|_______|
+ *
+ * ============================================================================
+ * Copyright (c) 2005-2022 Artica Soluciones Tecnologicas
+ * Please see http://pandorafms.org for full contribution list
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation for version 2.
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ * ============================================================================
+ */
+
+namespace PandoraFMS\Dashboard;
+
+/**
+ * OS quick report Widgets.
+ */
+class OsQuickReportWidget extends Widget
+{
+
+    /**
+     * Name widget.
+     *
+     * @var string
+     */
+    protected $name;
+
+    /**
+     * Title widget.
+     *
+     * @var string
+     */
+    protected $title;
+
+    /**
+     * Page widget;
+     *
+     * @var string
+     */
+    protected $page;
+
+    /**
+     * Class name widget.
+     *
+     * @var [type]
+     */
+    protected $className;
+
+    /**
+     * Values options for each widget.
+     *
+     * @var [type]
+     */
+    protected $values;
+
+    /**
+     * Configuration required.
+     *
+     * @var boolean
+     */
+    protected $configurationRequired;
+
+    /**
+     * Error load widget.
+     *
+     * @var boolean
+     */
+    protected $loadError;
+
+    /**
+     * Width.
+     *
+     * @var integer
+     */
+    protected $width;
+
+    /**
+     * Heigth.
+     *
+     * @var integer
+     */
+    protected $height;
+
+    /**
+     * Dashboard ID.
+     *
+     * @var integer
+     */
+    protected $dashboardId;
+
+    /**
+     * Cell ID.
+     *
+     * @var integer
+     */
+    protected $cellId;
+
+
+    /**
+     * Construct.
+     *
+     * @param integer      $cellId      Cell ID.
+     * @param integer      $dashboardId Dashboard ID.
+     * @param integer      $widgetId    Widget ID.
+     * @param integer|null $width       New width.
+     * @param integer|null $height      New height.
+     */
+    public function __construct(
+        int $cellId,
+        int $dashboardId=0,
+        int $widgetId=0,
+        ?int $width=0,
+        ?int $height=0
+    ) {
+        global $config;
+
+        // Includes.
+        enterprise_include_once('/include/functions_services.php');
+        enterprise_include_once('/include/functions_servicemap.php');
+
+        // WARNING: Do not edit. This chunk must be in the constructor.
+        parent::__construct(
+            $cellId,
+            $dashboardId,
+            $widgetId
+        );
+
+        // Width.
+        $this->width = $width;
+
+        // Height.
+        $this->height = $height;
+
+        // Cell Id.
+        $this->cellId = $cellId;
+
+        // Widget ID.
+        $this->widgetId = $widgetId;
+
+        // Dashboard ID.
+        $this->dashboardId = $dashboardId;
+
+        // Options.
+        $this->values = $this->decoders($this->getOptionsWidget());
+
+        // Positions.
+        $this->position = $this->getPositionWidget();
+
+        // Page.
+        $this->page = basename(__FILE__);
+
+        // ClassName.
+        $class = new \ReflectionClass($this);
+        $this->className = $class->getShortName();
+
+        // Title.
+        $this->title = __('OS quick report');
+
+        // Name.
+        if (empty($this->name) === true) {
+            $this->name = 'os_quick_report';
+        }
+
+        $this->overflow_scrollbars = false;
+    }
+
+
+    /**
+     * Decoders hack for retrocompability.
+     *
+     * @param array $decoder Values.
+     *
+     * @return array Returns the values ​​with the correct key.
+     */
+    public function decoders(array $decoder): array
+    {
+        $values = [];
+        // Retrieve global - common inputs.
+        $values = parent::decoders($decoder);
+
+        return $values;
+    }
+
+
+    /**
+     * Generates inputs for form (specific).
+     *
+     * @return array Of inputs.
+     *
+     * @throws Exception On error.
+     */
+    public function getFormInputs(): array
+    {
+        // Retrieve global - common inputs.
+        $inputs = parent::getFormInputs();
+
+        return $inputs;
+    }
+
+
+    /**
+     * Get Post for widget.
+     *
+     * @return array
+     */
+    public function getPost():array
+    {
+        // Retrieve global - common inputs.
+        $values = parent::getPost();
+
+        return $values;
+    }
+
+
+    /**
+     * Draw widget.
+     *
+     * @return string;
+     */
+    public function load()
+    {
+        global $config;
+
+        $values = $this->values;
+
+        $result = [];
+        $os_array = os_get_os();
+        foreach ($os_array as $os) {
+            $id_os = (int) $os['id_os'];
+            $total = os_agents_total($id_os);
+            if ((int) $total === 0) {
+                continue;
+            }
+
+            $result[$id_os]['name'] = $os['name'];
+            $result[$id_os]['total'] = (int) $total;
+            $result[$id_os]['normal'] = (int) os_agents_ok($id_os);
+            $result[$id_os]['critical'] = (int) os_agents_critical($id_os);
+            $result[$id_os]['unknown'] = (int) os_agents_unknown($id_os);
+        }
+
+        $output = '';
+        if (empty($result) === false) {
+            $table = new \stdClass();
+
+            $table->class = 'info_table';
+            $table->width = '100%';
+            $table->cellpadding = 0;
+            $table->cellspacing = 0;
+            $table->size = [];
+
+            $table->align = [];
+            $table->align[0] = 'left';
+            $table->align[1] = 'left';
+            $table->align[2] = 'left';
+            $table->align[3] = 'left';
+            $table->align[4] = 'left';
+            $table->align[5] = 'left';
+
+            $table->head = [];
+            $table->head[0] = __('OS');
+            $table->head[1] = __('OS name');
+            $table->head[2] = ucfirst(__('total agents'));
+            $table->head[3] = ucfirst(__('normal agents'));
+            $table->head[4] = ucfirst(__('critical agents'));
+            $table->head[5] = ucfirst(__('unknown agents'));
+
+            $table->headstyle = [];
+            $table->headstyle[0] = 'background-color: '.$values['background'];
+            $table->headstyle[1] = 'background-color: '.$values['background'];
+            $table->headstyle[2] = 'background-color: '.$values['background'];
+            $table->headstyle[3] = 'background-color: '.$values['background'];
+            $table->headstyle[4] = 'background-color: '.$values['background'];
+            $table->headstyle[5] = 'background-color: '.$values['background'];
+
+            $table->style = [];
+            $table->style[0] = 'background-color: '.$values['background'];
+            $table->style[1] = 'background-color: '.$values['background'];
+            $table->style[2] = 'background-color: '.$values['background'];
+            $table->style[3] = 'background-color: '.$values['background'];
+            $table->style[4] = 'background-color: '.$values['background'];
+            $table->style[5] = 'background-color: '.$values['background'];
+
+            foreach ($result as $id => $os) {
+                $data = [];
+
+                $data[0] = ui_print_os_icon($id, false, true);
+                $data[1] = $os['name'];
+                $data[2] = $os['total'];
+                $data[3] = $os['normal'];
+                $data[4] = $os['critical'];
+                $data[5] = $os['unknown'];
+
+                $table->data[] = $data;
+            }
+
+            $output = html_print_table($table, true);
+        } else {
+            $output = 'No data available';
+        }
+
+        return $output;
+    }
+
+
+    /**
+     * Get description.
+     *
+     * @return string.
+     */
+    public static function getDescription()
+    {
+        return __('OS quick report');
+    }
+
+
+    /**
+     * Get Name.
+     *
+     * @return string.
+     */
+    public static function getName()
+    {
+        return 'os_quick_report';
+    }
+
+
+}

From 4699ec7a3f3735e055a53556ab891be4c67e935b Mon Sep 17 00:00:00 2001
From: Daniel Maya <daniel.maya@artica.es>
Date: Tue, 10 May 2022 13:44:10 +0200
Subject: [PATCH 044/138] #8928 Added img

---
 .../images/widgets/os_quick_report.png        | Bin 0 -> 4619 bytes
 .../lib/Dashboard/Widgets/os_quick_report.php |  26 +++++++++++-------
 2 files changed, 16 insertions(+), 10 deletions(-)
 create mode 100644 pandora_console/images/widgets/os_quick_report.png

diff --git a/pandora_console/images/widgets/os_quick_report.png b/pandora_console/images/widgets/os_quick_report.png
new file mode 100644
index 0000000000000000000000000000000000000000..eda6e7adbef45604008465892faad054f822f208
GIT binary patch
literal 4619
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
Bs}cYJ

literal 0
HcmV?d00001

diff --git a/pandora_console/include/lib/Dashboard/Widgets/os_quick_report.php b/pandora_console/include/lib/Dashboard/Widgets/os_quick_report.php
index ca8a56e604..512b46eb6d 100644
--- a/pandora_console/include/lib/Dashboard/Widgets/os_quick_report.php
+++ b/pandora_console/include/lib/Dashboard/Widgets/os_quick_report.php
@@ -264,14 +264,20 @@ class OsQuickReportWidget extends Widget
             $table->cellpadding = 0;
             $table->cellspacing = 0;
             $table->size = [];
+            $table->size[0] = '10%';
+            $table->size[1] = '10%';
+            $table->size[2] = '20%';
+            $table->size[3] = '20%';
+            $table->size[4] = '20%';
+            $table->size[5] = '20%';
 
             $table->align = [];
-            $table->align[0] = 'left';
+            $table->align[0] = 'center';
             $table->align[1] = 'left';
-            $table->align[2] = 'left';
-            $table->align[3] = 'left';
-            $table->align[4] = 'left';
-            $table->align[5] = 'left';
+            $table->align[2] = 'center';
+            $table->align[3] = 'center';
+            $table->align[4] = 'center';
+            $table->align[5] = 'center';
 
             $table->head = [];
             $table->head[0] = __('OS');
@@ -282,12 +288,12 @@ class OsQuickReportWidget extends Widget
             $table->head[5] = ucfirst(__('unknown agents'));
 
             $table->headstyle = [];
-            $table->headstyle[0] = 'background-color: '.$values['background'];
+            $table->headstyle[0] = 'text-align:center;background-color: '.$values['background'];
             $table->headstyle[1] = 'background-color: '.$values['background'];
-            $table->headstyle[2] = 'background-color: '.$values['background'];
-            $table->headstyle[3] = 'background-color: '.$values['background'];
-            $table->headstyle[4] = 'background-color: '.$values['background'];
-            $table->headstyle[5] = 'background-color: '.$values['background'];
+            $table->headstyle[2] = 'text-align:center;background-color: '.$values['background'];
+            $table->headstyle[3] = 'text-align:center;background-color: '.$values['background'];
+            $table->headstyle[4] = 'text-align:center;background-color: '.$values['background'];
+            $table->headstyle[5] = 'text-align:center;background-color: '.$values['background'];
 
             $table->style = [];
             $table->style[0] = 'background-color: '.$values['background'];

From 644948c1b553b11bab3693239f23c3f798c48c71 Mon Sep 17 00:00:00 2001
From: Daniel Maya <daniel.maya@artica.es>
Date: Tue, 10 May 2022 14:53:33 +0200
Subject: [PATCH 045/138] #8928 font size

---
 .../include/lib/Dashboard/Widgets/os_quick_report.php     | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/pandora_console/include/lib/Dashboard/Widgets/os_quick_report.php b/pandora_console/include/lib/Dashboard/Widgets/os_quick_report.php
index 512b46eb6d..c1bad5c63f 100644
--- a/pandora_console/include/lib/Dashboard/Widgets/os_quick_report.php
+++ b/pandora_console/include/lib/Dashboard/Widgets/os_quick_report.php
@@ -298,10 +298,10 @@ class OsQuickReportWidget extends Widget
             $table->style = [];
             $table->style[0] = 'background-color: '.$values['background'];
             $table->style[1] = 'background-color: '.$values['background'];
-            $table->style[2] = 'background-color: '.$values['background'];
-            $table->style[3] = 'background-color: '.$values['background'];
-            $table->style[4] = 'background-color: '.$values['background'];
-            $table->style[5] = 'background-color: '.$values['background'];
+            $table->style[2] = 'font-size: 22px;background-color: '.$values['background'];
+            $table->style[3] = 'font-size: 22px;background-color: '.$values['background'];
+            $table->style[4] = 'font-size: 22px;background-color: '.$values['background'];
+            $table->style[5] = 'font-size: 22px;background-color: '.$values['background'];
 
             foreach ($result as $id => $os) {
                 $data = [];

From a2de9121b764e4d02e9ef55b8e83f081fd391ec7 Mon Sep 17 00:00:00 2001
From: Daniel Maya <daniel.maya@artica.es>
Date: Tue, 10 May 2022 15:15:40 +0200
Subject: [PATCH 046/138] #8958 remove the option none

---
 pandora_console/godmode/alerts/configure_alert_action.php | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/pandora_console/godmode/alerts/configure_alert_action.php b/pandora_console/godmode/alerts/configure_alert_action.php
index 8b276d7233..068026c953 100644
--- a/pandora_console/godmode/alerts/configure_alert_action.php
+++ b/pandora_console/godmode/alerts/configure_alert_action.php
@@ -261,7 +261,7 @@ $table->data[2][1] = html_print_select_from_sql(
     'id_command',
     $id_command,
     '',
-    __('None'),
+    '',
     0,
     true,
     false,

From 15d92d5cd6c8ecfac04dfaf645f5dc215386d151 Mon Sep 17 00:00:00 2001
From: Daniel Maya <daniel.maya@artica.es>
Date: Wed, 11 May 2022 13:51:16 +0200
Subject: [PATCH 047/138] #8517 Fixed module name

---
 pandora_server/lib/PandoraFMS/Recon/Base.pm | 15 +++++++++++++--
 1 file changed, 13 insertions(+), 2 deletions(-)

diff --git a/pandora_server/lib/PandoraFMS/Recon/Base.pm b/pandora_server/lib/PandoraFMS/Recon/Base.pm
index f0b70cd0df..66d47a782a 100644
--- a/pandora_server/lib/PandoraFMS/Recon/Base.pm
+++ b/pandora_server/lib/PandoraFMS/Recon/Base.pm
@@ -1628,9 +1628,14 @@ sub database_scan($$$) {
   $self->{'summary'}->{'discovered'} += 1;
   $self->{'summary'}->{'alive'} += 1;
 
+  my $name = $type . ' connection';
+  if (defined $obj->{'prefix_module_name'} && $obj->{'prefix_module_name'} ne '') {
+    $name = $obj->{'prefix_module_name'} . $type . ' connection';
+  }
+
   push @modules,
     {
-    name => $type . ' connection',
+    name => $name,
     type => 'generic_proc',
     data => 1,
     description => $type . ' availability'
@@ -1778,8 +1783,14 @@ sub app_scan($) {
         # Update progress
         $self->call('update_progress', $global_percent + (90 / (scalar @targets)));
         $self->{'summary'}->{'not_alive'} += 1;
+
+        my $name = $type . ' connection';
+        if (defined $obj->{'prefix_module_name'} && $obj->{'prefix_module_name'} ne '') {
+          $name = $obj->{'prefix_module_name'} . $type . ' connection';
+        }
+
         push @modules, {
-          name => $type . ' connection',
+          name => $name,
           type => 'generic_proc',
           data => 0,
           description => $type . ' availability'

From 2de0875d9f26cc82523c880381d1d84de31338aa Mon Sep 17 00:00:00 2001
From: Daniel Barbero Martin <daniel.barbero@artica.es>
Date: Tue, 17 May 2022 13:20:40 +0200
Subject: [PATCH 048/138] fixed visual error sql graph pandora_enterprise#8970

---
 .../include/graphs/flot/pandora.flot.js       | 20 ++++++++++++++++---
 pandora_console/include/styles/pandora.css    |  9 ++++++---
 2 files changed, 23 insertions(+), 6 deletions(-)

diff --git a/pandora_console/include/graphs/flot/pandora.flot.js b/pandora_console/include/graphs/flot/pandora.flot.js
index bdd3aa3038..3e286acddd 100644
--- a/pandora_console/include/graphs/flot/pandora.flot.js
+++ b/pandora_console/include/graphs/flot/pandora.flot.js
@@ -15,6 +15,8 @@ function pandoraFlotPie(
   colors,
   hide_labels
 ) {
+  height = parseInt(height);
+
   labels = labels.split(separator);
   var data = values.split(separator);
 
@@ -79,11 +81,22 @@ function pandoraFlotPie(
       break;
   }
 
+  var discount = 20;
+  if (water_mark) {
+    discount = 40;
+  }
+
   var plot = $.plot($("#" + graph_id), data, conf_pie);
 
   var legends = $("#" + graph_id + " .legendLabel");
   legends.css("font-size", font_size + "pt");
 
+  var tableDiv = $("#" + graph_id + " .legend > div");
+  tableDiv.css("max-height", height - discount + "px");
+
+  var tableLegend = $("#" + graph_id + " .legend table");
+  tableLegend.css("max-height", height - discount + "px");
+
   // Events
   $("#" + graph_id).bind("plothover", pieHover);
   //$("#" + graph_id).bind("plotclick", pieClick);
@@ -443,14 +456,15 @@ function pandoraFlotHBars(
         "pt !important;" +
         "margin: 0; max-width: 200px;" +
         "margin-right:5px;" +
-        "margin-left: -1.5em" +
-        "text-align: right" +
+        "margin-left: -1.5em;" +
+        "text-align: right;" +
         "text-overflow: ellipsis;" +
         "overflow: hidden;" +
         "white-space: pre;";
 
       if (label.indexOf("<br>") != -1) {
-        div_attributes += "min-height: 2.5em;";
+        var label_array = label.split("<br>");
+        label = label_array[0] + label_array[1];
       }
 
       div_attributes += '" title="' + label + '" style="overflow: hidden;"';
diff --git a/pandora_console/include/styles/pandora.css b/pandora_console/include/styles/pandora.css
index df286eaf49..20e611ca26 100644
--- a/pandora_console/include/styles/pandora.css
+++ b/pandora_console/include/styles/pandora.css
@@ -6048,9 +6048,9 @@ table.table_modal_alternate tr td:first-child {
   font-family: "lato" !important;
 }
 
-.flot-text {
-  width: 100%;
-  font-family: inherit !important;
+.flot-text .flot-x-axis div {
+  white-space: normal;
+  word-break: break-all;
 }
 
 /*Font header feedback*/
@@ -6226,6 +6226,9 @@ div.graph td.legendLabel {
 div.graph div.legend div,
 div.graph div.legend table {
   top: 25px !important;
+  display: block;
+  overflow: auto;
+  text-align: left;
 }
 
 .rotate_text_module {

From 1005e95188c97300210cebe40b9ce5daf79dbbc7 Mon Sep 17 00:00:00 2001
From: Rafael Ameijeiras <rafael.ameijeiras@artica.es>
Date: Mon, 23 May 2022 11:48:47 +0200
Subject: [PATCH 049/138] 
 9013-anadir-comprobacion-de-suscripcion-de-rh-al-instalador-online-del-agente

---
 extras/deploy-scripts/pandora_agent_deploy.sh | 43 +++++++++++++++----
 1 file changed, 35 insertions(+), 8 deletions(-)

diff --git a/extras/deploy-scripts/pandora_agent_deploy.sh b/extras/deploy-scripts/pandora_agent_deploy.sh
index 74db9d7c72..281ad530a9 100644
--- a/extras/deploy-scripts/pandora_agent_deploy.sh
+++ b/extras/deploy-scripts/pandora_agent_deploy.sh
@@ -4,7 +4,7 @@
 
 # define variables
 PANDORA_AGENT_CONF=/etc/pandora/pandora_agent.conf
-S_VERSION='2021100601'
+S_VERSION='2022052301'
 LOGFILE="/tmp/pandora-agent-deploy-$(date +%F).log"
 
 # Ansi color code variables
@@ -49,7 +49,6 @@ check_cmd_status () {
 }
 
 check_repo_connection () {
-    execute_cmd "ping -c 2 8.8.8.8" "Checking internet connection"
     execute_cmd "ping -c 2 firefly.artica.es" "Checking Community repo"
 }
 
@@ -79,10 +78,15 @@ echo "Starting PandoraFMS Agent deployment ver. $S_VERSION"
 
 execute_cmd  "[ $PANDORA_SERVER_IP ]" 'Check Server IP Address' 'Please define env variable PANDORA_SERVER_IP'
 
+#Detect OS
+os_name=$(grep ^PRETTY_NAME= /etc/os-release | cut -d '=' -f2 | tr -d '"')
+execute_cmd "echo $os_name" "OS detected: ${os_name}"
+
 # Check OS.
 OS=$([[ $(grep '^ID_LIKE=' /etc/os-release) ]] && grep ^ID_LIKE= /etc/os-release | cut -d '=' -f2 | tr -d '"' || grep ^ID= /etc/os-release | cut -d '=' -f2 | tr -d '"')
 
 [[ $OS =~ 'rhel' ]] &&  OS_RELEASE=$OS
+[[ $OS =~ 'fedora' ]] &&  OS_RELEASE=$OS
 [[ $OS =~ 'debian' ]] &&  OS_RELEASE=$OS
 #[[ $OS == 'rhel fedora' ]] &&  OS_RELEASE=$OS
 #[[ $OS == 'centos rhel fedora' ]] &&  OS_RELEASE=$OS
@@ -113,17 +117,40 @@ execute_cmd "cd $HOME/pandora_deploy_tmp" "Moving to workspace:  $HOME/pandora_d
 
 # Downloading and installing packages
 
-if [[ $OS_RELEASE =~ 'rhel' ]]; then
-    yum install -y perl wget curl perl-Sys-Syslog unzip &>> $LOGFILE 
-    echo -e "${cyan}Instaling agent dependencies...${reset}" ${green}OK${reset}
+if [[ $OS_RELEASE =~ 'rhel' ]] || [[ $OS_RELEASE =~ 'fedora' ]]; then
+    ## Extra steps on redhat
+    if [ "$(grep -Ei 'Red Hat Enterprise' /etc/redhat-release)" ]; then
+        ## In case REDHAT
+        # Check susbscription manager status:
+        echo -en "${cyan}Checking Red Hat Enterprise subscription... ${reset}"
+        subscription-manager list &>> "$LOGFILE"
+        subscription-manager status &>> "$LOGFILE"
+        check_cmd_status 'Error checking subscription status, make sure your server is activated and suscribed to Red Hat Enterprise repositories'
+
+    fi
+
+    # Check rh version
+    if [ $(sed -nr 's/VERSION_ID+=\s*"([0-9]).*"$/\1/p' /etc/os-release) -eq '8' ] ; then
+        package_manager_cmd=dnf
+    elif [ $(sed -nr 's/VERSION_ID+=\s*"([0-9]).*"$/\1/p' /etc/os-release) -eq '7' ] ; then
+        package_manager_cmd=yum
+
+    fi
+
+    # Install dependencies
+    $package_manager_cmd install -y perl wget curl perl-Sys-Syslog unzip &>> $LOGFILE 
+    echo -e "${cyan}Installing agent dependencies...${reset}" ${green}OK${reset}
     
-    yum install -y http://firefly.artica.es/pandorafms/latest/RHEL_CentOS/pandorafms_agent_unix-7.0NG.noarch.rpm &>> $LOGFILE
-    echo -e "${cyan}Instaling Pandora FMS agent...${reset}" ${green}OK${reset}
+    # Insatall pandora agent  
+    $package_manager_cmd install -y http://firefly.artica.es/pandorafms/latest/RHEL_CentOS/pandorafms_agent_unix-7.0NG.noarch.rpm &>> $LOGFILE
+    echo -en "${cyan}Installing Pandora FMS agent...${reset}"
+    check_cmd_status 'Error installing Pandora FMS agent'
+
 fi
 
 if [[ $OS_RELEASE == 'debian' ]]; then
     execute_cmd "apt update" 'Updating repos'
-    execute_cmd "apt install -y perl wget curl unzip procps python3 python3-pip" 'Instaling agent dependencies' 
+    execute_cmd "apt install -y perl wget curl unzip procps python3 python3-pip" 'Installing agent dependencies' 
     execute_cmd 'wget http://firefly.artica.es/pandorafms/latest/Debian_Ubuntu/pandorafms.agent_unix_7.0NG.deb' 'Downloading Pandora FMS agent dependencies'
     execute_cmd 'apt install -y ./pandorafms.agent_unix_7.0NG.deb' 'Installing Pandora FMS agent'
 fi

From bad045aff2a06057804ad3042835edf75052c6b5 Mon Sep 17 00:00:00 2001
From: Rafael Ameijeiras <rafael.ameijeiras@artica.es>
Date: Mon, 23 May 2022 11:49:48 +0200
Subject: [PATCH 050/138] 
 9013-anadir-comprobacion-de-suscripcion-de-rh-al-instalador-online-del-agente


From 2953bab0df23009d438d9d5a54abf8a899bea186 Mon Sep 17 00:00:00 2001
From: Daniel Maya <daniel.maya@pandorafms.com>
Date: Tue, 24 May 2022 09:55:37 +0200
Subject: [PATCH 051/138] #8999 Optimised delete agents in bulk

---
 .../godmode/massive/massive_delete_agents.php | 20 +++++++++----------
 1 file changed, 10 insertions(+), 10 deletions(-)

diff --git a/pandora_console/godmode/massive/massive_delete_agents.php b/pandora_console/godmode/massive/massive_delete_agents.php
index e85a12486d..cc87efebed 100755
--- a/pandora_console/godmode/massive/massive_delete_agents.php
+++ b/pandora_console/godmode/massive/massive_delete_agents.php
@@ -140,7 +140,7 @@ function process_manage_delete($id_agents)
 }
 
 
-$id_group = (int) get_parameter('id_group');
+$id_group = (is_metaconsole() === true) ? get_parameter('id_group', '') : (int) get_parameter('id_group');
 $id_agents = get_parameter('id_agents');
 $recursion = get_parameter('recursion');
 $delete = (bool) get_parameter_post('delete');
@@ -282,15 +282,15 @@ $table->data[3][0] .= '<span id="agent_loading" class="invisible">';
 $table->data[3][0] .= html_print_image('images/spinner.png', true);
 $table->data[3][0] .= '</span>';
 
-$agents = agents_get_group_agents(
-    array_keys(users_get_groups($config['id_user'], 'AW', false)),
-    ['disabled' => 2],
-    'none',
-    false,
-    false,
-    is_metaconsole(),
-    '|'
-);
+$agents = [];
+if (is_metaconsole() === false) {
+    $agents = agents_get_group_agents(
+        array_keys(users_get_groups($config['id_user'], 'AW', false)),
+        ['disabled' => 2],
+        'none'
+    );
+}
+
 
 $table->data[3][1] = html_print_select(
     $agents,

From fc7b4d8a119d2ee89adf2acb8d2684735a8e1682 Mon Sep 17 00:00:00 2001
From: Daniel Maya <daniel.maya@pandorafms.com>
Date: Wed, 25 May 2022 13:13:09 +0200
Subject: [PATCH 052/138] #8897 Fixed tdashboard name

---
 pandora_console/extras/mr/55.sql | 5 +++++
 pandora_console/pandoradb.sql    | 2 +-
 2 files changed, 6 insertions(+), 1 deletion(-)
 create mode 100644 pandora_console/extras/mr/55.sql

diff --git a/pandora_console/extras/mr/55.sql b/pandora_console/extras/mr/55.sql
new file mode 100644
index 0000000000..d9693047c1
--- /dev/null
+++ b/pandora_console/extras/mr/55.sql
@@ -0,0 +1,5 @@
+START TRANSACTION;
+
+ALTER TABLE `tdashboard` MODIFY `name` TEXT NOT NULL DEFAULT '';
+
+COMMIT;
\ No newline at end of file
diff --git a/pandora_console/pandoradb.sql b/pandora_console/pandoradb.sql
index 29ec6e572b..49f5edb991 100644
--- a/pandora_console/pandoradb.sql
+++ b/pandora_console/pandoradb.sql
@@ -2578,7 +2578,7 @@ CREATE TABLE IF NOT EXISTS `tpolicy_group_agents` (
 -- ---------------------------------------------------------------------
 CREATE TABLE IF NOT EXISTS `tdashboard` (
   `id` INT UNSIGNED NOT NULL AUTO_INCREMENT,
-  `name` VARCHAR(60) NOT NULL DEFAULT '',
+  `name` TEXT NOT NULL DEFAULT '',
   `id_user` VARCHAR(60) NOT NULL DEFAULT '',
   `id_group` INT NOT NULL DEFAULT 0,
   `active` TINYINT NOT NULL DEFAULT 0,

From b221f068095d9abcf19dc02ad94ab082bea21a51 Mon Sep 17 00:00:00 2001
From: Rafael <rafael.ameijeiras@artica.es>
Date: Wed, 25 May 2022 17:04:00 +0200
Subject: [PATCH 053/138] 
 9042-binario-de-active-perl-no-conecta-por-defecto-con-mysql8

---
 extras/deploy-scripts/pandora_deploy_community_el8.sh | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/extras/deploy-scripts/pandora_deploy_community_el8.sh b/extras/deploy-scripts/pandora_deploy_community_el8.sh
index 0b17821b46..2bc86467e1 100644
--- a/extras/deploy-scripts/pandora_deploy_community_el8.sh
+++ b/extras/deploy-scripts/pandora_deploy_community_el8.sh
@@ -14,7 +14,7 @@ PANDORA_SERVER_CONF=/etc/pandora/pandora_server.conf
 PANDORA_AGENT_CONF=/etc/pandora/pandora_agent.conf
 
 
-S_VERSION='2022050501'
+S_VERSION='2022052501'
 LOGFILE="/tmp/pandora-deploy-community-$(date +%F).log"
 
 # define default variables
@@ -420,7 +420,9 @@ echo "create database $DBNAME" | mysql -uroot -P$DBPORT -h$DBHOST
 check_cmd_status "Error creating database $DBNAME, is this an empty node? if you have a previus installation please contact with support."
 
 echo "CREATE USER  \"$DBUSER\"@'%' IDENTIFIED BY \"$DBPASS\";" | mysql -uroot -P$DBPORT -h$DBHOST
+echo "ALTER USER \"$DBUSER\"@'%' IDENTIFIED WITH mysql_native_password BY \"$DBPASS\"" | mysql -uroot -P$DBPORT -h$DBHOST        
 echo "GRANT ALL PRIVILEGES ON $DBNAME.* TO \"$DBUSER\"@'%'" | mysql -uroot -P$DBPORT -h$DBHOST
+
 export MYSQL_PWD=$DBPASS
 
 #Generating my.cnf

From 0a99b608c5d04477b36a94f32b7fdb6552708ce2 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Jos=C3=A9=20Gonz=C3=A1lez?= <jose.gonzalez@pandorafms.com>
Date: Wed, 25 May 2022 17:53:58 +0200
Subject: [PATCH 054/138] Fix several issues with SNMP Alert view

---
 .../godmode/snmpconsole/snmp_alert.php        | 782 ++++++++++--------
 pandora_console/include/styles/pandora.css    |   7 +
 2 files changed, 449 insertions(+), 340 deletions(-)

diff --git a/pandora_console/godmode/snmpconsole/snmp_alert.php b/pandora_console/godmode/snmpconsole/snmp_alert.php
index 6829d445e1..35fcaf172c 100755
--- a/pandora_console/godmode/snmpconsole/snmp_alert.php
+++ b/pandora_console/godmode/snmpconsole/snmp_alert.php
@@ -1,8 +1,20 @@
 <?php
 /**
- * Pandora FMS - http://pandorafms.com
- * ==================================================
- * Copyright (c) 2005-2021 Artica Soluciones Tecnologicas
+ * SNMP Alert Management view.
+ *
+ * @category   Class
+ * @package    Pandora FMS
+ * @subpackage SNMP Alert Management
+ * @version    1.0.0
+ * @license    See below
+ *
+ *    ______                 ___                    _______ _______ ________
+ *   |   __ \.-----.--.--.--|  |.-----.----.-----. |    ___|   |   |     __|
+ *  |    __/|  _  |     |  _  ||  _  |   _|  _  | |    ___|       |__     |
+ * |___|   |___._|__|__|_____||_____|__| |___._| |___|   |__|_|__|_______|
+ *
+ * ============================================================================
+ * Copyright (c) 2005-2022 Artica Soluciones Tecnologicas
  * Please see http://pandorafms.org for full contribution list
  * This program is free software; you can redistribute it and/or
  * modify it under the terms of the GNU General Public License
@@ -11,10 +23,11 @@
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  * GNU General Public License for more details.
+ * ============================================================================
  */
 
-// Load global vars
-if (! check_acl($config['id_user'], 0, 'LW')) {
+// Load global vars.
+if ((bool) check_acl($config['id_user'], 0, 'LW') === false) {
     db_pandora_audit(
         AUDIT_LOG_ACL_VIOLATION,
         'Trying to access SNMP Alert Management'
@@ -33,19 +46,18 @@ $trap_types = [
     SNMP_TRAP_TYPE_OTHER                  => __('Other'),
 ];
 
-// Form submitted
-// =============
+// Form submitted.
 $update_alert = (bool) get_parameter('update_alert', false);
 $create_alert = (bool) get_parameter('create_alert', false);
 $save_alert = (bool) get_parameter('save_alert', false);
 $modify_alert = (bool) get_parameter('modify_alert', false);
 $delete_alert = (bool) get_parameter('delete_alert', false);
 $multiple_delete = (bool) get_parameter('multiple_delete', false);
-$add_action = (bool) get_parameter('add_alert', 0);
+$add_action = (bool) get_parameter('add_alert', false);
 $delete_action = get_parameter('delete_action', 0);
 $duplicate_alert = get_parameter('duplicate_alert', 0);
 
-if ($add_action) {
+if ($add_action === true) {
     $values['id_alert_snmp'] = (int) get_parameter('id_alert_snmp');
     $values['alert_type'] = (int) get_parameter('alert_type');
     $values[db_escape_key_identifier('al_field1')] = get_parameter('field1_value');
@@ -79,37 +91,41 @@ if ($delete_action) {
 }
 
 if ($update_alert || $modify_alert) {
-    ui_print_page_header(
-        __('SNMP Console').' &raquo; '.__('Update alert'),
-        'images/op_snmp.png',
-        false,
-        'snmp_alert_update_tab',
-        false
-    );
+    $subTitle = __('Update alert');
+    $helpString = 'snmp_alert_update_tab';
 } else if ($create_alert || $save_alert) {
-    ui_print_page_header(
-        __('SNMP Console').' &raquo; '.__('Create alert'),
-        'images/op_snmp.png',
-        false,
-        'snmp_alert_overview_tab',
-        false
-    );
+    $subTitle = __('Create alert');
+    $helpString = 'snmp_alert_overview_tab';
 } else {
-    ui_print_page_header(
-        __('SNMP Console').' &raquo; '.__('Alert overview'),
-        'images/op_snmp.png',
-        false,
-        '',
-        false
-    );
+    $subTitle = __('Alert overview');
+    $helpString = '';
 }
 
+ui_print_standard_header(
+    $subTitle,
+    'images/op_snmp.png',
+    false,
+    $helpString,
+    false,
+    [],
+    [
+        [
+            'link'  => '',
+            'label' => __('Alerts'),
+        ],
+        [
+            'link'  => '',
+            'label' => __('SNMP Console'),
+        ],
+    ]
+);
+
 if ($save_alert || $modify_alert) {
     $id_as = (int) get_parameter('id_alert_snmp', -1);
 
     $source_ip = (string) get_parameter_post('source_ip');
     $alert_type = (int) get_parameter_post('alert_type');
-    // Event, e-mail
+    // Event, e-mail.
     $description = (string) get_parameter_post('description');
     $oid = (string) get_parameter_post('oid');
     $custom_value = (string) get_parameter_post('custom_value');
@@ -269,7 +285,7 @@ if ($save_alert || $modify_alert) {
 
         $result = db_process_sql_insert('talert_snmp', $values);
 
-        if (!$result) {
+        if ((bool) $result === false) {
             db_pandora_audit(
                 AUDIT_LOG_SNMP_MANAGEMENT,
                 'Fail try to create snmp alert'
@@ -278,7 +294,10 @@ if ($save_alert || $modify_alert) {
         } else {
             db_pandora_audit(
                 AUDIT_LOG_SNMP_MANAGEMENT,
-                "Create snmp alert #$result"
+                sprintf(
+                    'Create snmp alert #%s',
+                    $result
+                )
             );
             ui_print_success_message(__('Successfully created'));
         }
@@ -405,24 +424,29 @@ if ($save_alert || $modify_alert) {
 
         $result = db_process_sql($sql);
 
-        if (!$result) {
+        if ((bool) $result === false) {
             db_pandora_audit(
                 AUDIT_LOG_SNMP_MANAGEMENT,
-                "Fail try to update snmp alert #$id_as"
+                sprintf(
+                    'Fail try to update snmp alert #%s',
+                    $id_as
+                )
             );
             ui_print_error_message(__('There was a problem updating the alert'));
         } else {
             db_pandora_audit(
                 AUDIT_LOG_SNMP_MANAGEMENT,
-                "Update snmp alert #$id_as"
+                sprintf(
+                    'Update snmp alert #%s',
+                    $id_as
+                )
             );
             ui_print_success_message(__('Successfully updated'));
         }
     }
 }
 
-// From variable init
-// ==================
+// From variable init.
 if ($update_alert || $duplicate_alert) {
     $id_as = (int) get_parameter('id_alert_snmp', -1);
 
@@ -516,11 +540,11 @@ if ($update_alert || $duplicate_alert) {
         return;
     }
 } else if ($create_alert) {
-    // Variable init
+    // Variable init.
     $id_as = -1;
     $source_ip = '';
     $alert_type = 1;
-    // Event, e-mail
+    // Event, e-mail.
     $description = '';
     $oid = '';
     $custom_value = '';
@@ -595,40 +619,46 @@ if ($update_alert || $duplicate_alert) {
     $group = 0;
 }
 
-// Duplicate alert snmp
+// Duplicate alert snmp.
 if ($duplicate_alert) {
     $values_duplicate = $alert;
-    if (!empty($values_duplicate)) {
+    if (empty($values_duplicate) === false) {
         unset($values_duplicate['id_as']);
         $result = db_process_sql_insert('talert_snmp', $values_duplicate);
 
         if (!$result) {
             db_pandora_audit(
                 AUDIT_LOG_SNMP_MANAGEMENT,
-                "Fail try to duplicate snmp alert #$id_as"
+                sprintf(
+                    'Fail try to duplicate snmp alert #%s',
+                    $id_as
+                )
             );
             ui_print_error_message(__('There was a problem duplicating the alert'));
         } else {
             db_pandora_audit(
                 AUDIT_LOG_SNMP_MANAGEMENT,
-                "Duplicate snmp alert #$id_as"
+                sprintf(
+                    'Duplicate snmp alert #%s',
+                    $id_as
+                )
             );
             ui_print_success_message(__('Successfully Duplicate'));
         }
     } else {
         db_pandora_audit(
             AUDIT_LOG_SNMP_MANAGEMENT,
-            "Fail try to duplicate snmp alert #$id_as"
+            sprintf(
+                'Fail try to duplicate snmp alert #%s',
+                $id_as
+            )
         );
         ui_print_error_message(__('There was a problem duplicating the alert'));
     }
 }
 
-// Header
-// Alert Delete
-// =============
 if ($delete_alert) {
-    // Delete alert
+    // Delete alert.
     $alert_delete = (int) get_parameter_get('delete_alert', 0);
 
     $result = db_process_sql_delete(
@@ -639,13 +669,19 @@ if ($delete_alert) {
     if ($result === false) {
         db_pandora_audit(
             AUDIT_LOG_SNMP_MANAGEMENT,
-            "Fail try to delete snmp alert #$alert_delete"
+            sprintf(
+                'Fail try to delete snmp alert #%s',
+                $alert_delete
+            )
         );
         ui_print_error_message(__('There was a problem deleting the alert'));
     } else {
         db_pandora_audit(
             AUDIT_LOG_SNMP_MANAGEMENT,
-            "Delete snmp alert #$alert_delete"
+            sprintf(
+                'Delete snmp alert #%s',
+                $alert_delete
+            )
         );
         ui_print_success_message(__('Successfully deleted'));
     }
@@ -666,18 +702,24 @@ if ($multiple_delete) {
         if ($result !== false) {
             db_pandora_audit(
                 AUDIT_LOG_SNMP_MANAGEMENT,
-                "Delete snmp alert #$alert_delete"
+                sprintf(
+                    'Delete snmp alert #%s',
+                    $alert_delete
+                )
             );
             $count++;
         } else {
             db_pandora_audit(
                 AUDIT_LOG_SNMP_MANAGEMENT,
-                "Fail try to delete snmp alert #$alert_delete"
+                sprintf(
+                    'Fail try to delete snmp alert #%s',
+                    $alert_delete
+                )
             );
         }
     }
 
-    if ($count == $total) {
+    if ($count === $total) {
         ui_print_success_message(
             __('Successfully deleted alerts (%s / %s)', $count, $total)
         );
@@ -692,7 +734,7 @@ $user_groups = users_get_groups($config['id_user'], 'AR', true);
 $str_user_groups = '';
 $i = 0;
 foreach ($user_groups as $id => $name) {
-    if ($i == 0) {
+    if ($i === 0) {
         $str_user_groups .= $id;
     } else {
         $str_user_groups .= ','.$id;
@@ -701,10 +743,9 @@ foreach ($user_groups as $id => $name) {
     $i++;
 }
 
-// Alert form
+// Alert form.
 if ($create_alert || $update_alert) {
-    // if (isset ($_GET["update_alert"])) {
-    // the update_alert means the form should be displayed. If update_alert > 1 then an existing alert is updated
+    // The update_alert means the form should be displayed. If update_alert > 1 then an existing alert is updated.
     echo '<form name="agente" method="post" action="index.php?sec=snmpconsole&sec2=godmode/snmpconsole/snmp_alert">';
 
     html_print_input_hidden('id_alert_snmp', $id_as);
@@ -717,32 +758,39 @@ if ($create_alert || $update_alert) {
         html_print_input_hidden('modify_alert', 1);
     }
 
-    // SNMP alert filters
+    // SNMP alert filters.
     echo '<table cellpadding="0" cellspacing="0" width="100%" class="databox filter bolder">';
 
-    // Description
-    echo '<tr>'.'<td class="datos" valign="top">'.__('Description').'</td>'.'<td class="datos">';
-            html_print_textarea('description', 3, 2, $description, 'class="w400px"');
-    echo '</td>'.'</tr>';
+    // Description.
+    echo '<tr>';
+    echo '<td class="datos" valign="top">'.__('Description').'</td>';
+    echo '<td class="datos">';
+    html_print_textarea('description', 3, 2, $description, 'class="w400px"');
+    echo '</td>';
+    echo '</tr>';
 
-    // echo '<tr><td class="datos"><b>' . __('Alert filters') . ui_print_help_icon("snmp_alert_filters", true) . '</b></td></tr>';
-    // OID
-    echo '<tr id="tr-oid">'.'<td class="datos2">'.__('Enterprise String').ui_print_help_tip(__('Matches substrings. End the string with $ for exact matches.'), true).'</td>'.'<td class="datos2">';
+    // OID.
+    echo '<tr id="tr-oid">';
+    echo '<td class="datos2">'.__('Enterprise String').ui_print_help_tip(__('Matches substrings. End the string with $ for exact matches.'), true).'</td>';
+    echo '<td class="datos2">';
     html_print_input_text('oid', $oid, '', 50, 255);
-    echo '</td></tr>';
+    echo '</td>';
+    echo '</tr>';
 
-    // Custom
+    // Custom.
     echo '<tr id="tr-custom_value"><td class="datos"  valign="top">'.__('Custom Value/OID');
 
     echo '</td><td class="datos">';
     html_print_textarea('custom_value', 2, 2, $custom_value, 'class="w400px"');
 
-    echo '</td></tr>';
+    echo '</td>';
+    echo '</tr>';
 
-    // SNMP Agent
+    // SNMP Agent.
     echo '<tr id="tr-source_ip"><td class="datos2">'.__('SNMP Agent').' (IP)</td><td class="datos2">';
     html_print_input_text('source_ip', $source_ip, '', 20);
-    echo '</td></tr>';
+    echo '</td>';
+    echo '</tr>';
 
     $return_all_group = false;
 
@@ -750,7 +798,7 @@ if ($create_alert || $update_alert) {
         $return_all_group = true;
     }
 
-    // Group
+    // Group.
     echo '<tr id="tr-group"><td class="datos2">'.__('Group').'</td><td class="datos2">';
     echo '<div class="w250px">';
     html_print_select_groups(
@@ -774,183 +822,222 @@ if ($create_alert || $update_alert) {
         false
     );
     echo '</div>';
-    echo '</td></tr>';
+    echo '</td>';
+    echo '</tr>';
 
-    // Trap type
+    // Trap type.
     echo '<tr><td class="datos">'.__('Trap type').'</td><td class="datos">';
     echo html_print_select($trap_types, 'trap_type', $trap_type, '', '', '', false, false, false);
-    echo '</td></tr>';
+    echo '</td>';
+    echo '</tr>';
 
-    // Single value
+    // Single value.
     echo '<tr><td class="datos">'.__('Single value').'</td><td class="datos">';
     html_print_input_text('single_value', $single_value, '', 20);
-    echo '</td></tr>';
+    echo '</td>';
+    echo '</tr>';
 
-    // Variable bindings/Data #1
-    echo '<tr id="tr-custom_value">'.'<td class="datos"  valign="top">'.__('Variable bindings/Data').'</td><td class="datos">';
+    // Variable bindings/Data #1.
+    echo '<tr id="tr-custom_value">';
+    echo '<td class="datos"  valign="top">'.__('Variable bindings/Data').'</td>';
+    echo '<td class="datos">';
     echo '#';
     html_print_input_text('order_1', $order_1, '', 4);
     html_print_input_text('custom_oid_data_1', $custom_oid_data_1, '', 60);
-    echo '</td></tr>';
+    echo '</td>';
+    echo '</tr>';
 
-    // Variable bindings/Data #2
-    echo '<tr id="tr-custom_value"><td class="datos"  valign="top">'.__('Variable bindings/Data');
-    // echo ui_print_help_icon ("snmp_alert_custom", true);
-    echo '</td><td class="datos">';
+    // Variable bindings/Data #2.
+    echo '<tr id="tr-custom_value">';
+    echo '<td class="datos"  valign="top">'.__('Variable bindings/Data').'</td>';
+    echo '<td class="datos">';
     echo '#';
     html_print_input_text('order_2', $order_2, '', 4);
     html_print_input_text('custom_oid_data_2', $custom_oid_data_2, '', 60);
-    echo '</td></tr>';
+    echo '</td>';
+    echo '</tr>';
 
-    // Variable bindings/Data #3
-    echo '<tr id="tr-custom_value"><td class="datos"  valign="top">'.__('Variable bindings/Data');
-    // echo ui_print_help_icon ("snmp_alert_custom", true);
-    echo '</td><td class="datos">';
+    // Variable bindings/Data #3.
+    echo '<tr id="tr-custom_value">';
+    echo '<td class="datos"  valign="top">'.__('Variable bindings/Data').'</td>';
+    echo '<td class="datos">';
     echo '#';
     html_print_input_text('order_3', $order_3, '', 4);
     html_print_input_text('custom_oid_data_3', $custom_oid_data_3, '', 60);
-    echo '</td></tr>';
+    echo '</td>';
+    echo '</tr>';
 
-    // Variable bindings/Data #4
-    echo '<tr id="tr-custom_value">'.'<td class="datos"  valign="top">'.__('Variable bindings/Data');
-    // echo ui_print_help_icon ("snmp_alert_custom", true);
-    echo '</td><td class="datos">';
+    // Variable bindings/Data #4.
+    echo '<tr id="tr-custom_value">';
+    echo '<td class="datos"  valign="top">'.__('Variable bindings/Data').'</td>';
+    echo '<td class="datos">';
     echo '#';
     html_print_input_text('order_4', $order_4, '', 4);
     html_print_input_text('custom_oid_data_4', $custom_oid_data_4, '', 60);
-    echo '</td></tr>';
+    echo '</td>';
+    echo '</tr>';
 
-    // Variable bindings/Data #5
-    echo '<tr id="tr-custom_value">'.'<td class="datos"  valign="top">'.__('Variable bindings/Data');
-    // echo ui_print_help_icon ("snmp_alert_custom", true);
-    echo '</td><td class="datos">';
+    // Variable bindings/Data #5.
+    echo '<tr id="tr-custom_value">';
+    echo '<td class="datos"  valign="top">'.__('Variable bindings/Data').'</td>';
+    echo '<td class="datos">';
     echo '#';
     html_print_input_text('order_5', $order_5, '', 4);
     html_print_input_text('custom_oid_data_5', $custom_oid_data_5, '', 60);
-    echo '</td></tr>';
+    echo '</td>';
+    echo '</tr>';
 
-    // Variable bindings/Data #6
-    echo '<tr id="tr-custom_value">'.'<td class="datos"  valign="top">'.__('Variable bindings/Data');
-    // echo ui_print_help_icon ("snmp_alert_custom", true);
-    echo '</td><td class="datos">';
+    // Variable bindings/Data #6.
+    echo '<tr id="tr-custom_value">';
+    echo '<td class="datos"  valign="top">'.__('Variable bindings/Data').'</td>';
+    echo '<td class="datos">';
     echo '#';
     html_print_input_text('order_6', $order_6, '', 4);
     html_print_input_text('custom_oid_data_6', $custom_oid_data_6, '', 60);
-    echo '</td></tr>';
+    echo '</td>';
+    echo '</tr>';
 
-    // Variable bindings/Data #7
-    echo '<tr id="tr-custom_value">'.'<td class="datos"  valign="top">'.__('Variable bindings/Data');
-    echo '</td><td class="datos">';
+    // Variable bindings/Data #7.
+    echo '<tr id="tr-custom_value">';
+    echo '<td class="datos"  valign="top">'.__('Variable bindings/Data').'</td>';
+    echo '<td class="datos">';
     echo '#';
     html_print_input_text('order_7', $order_7, '', 4);
     html_print_input_text('custom_oid_data_7', $custom_oid_data_7, '', 60);
-    echo '</td></tr>';
+    echo '</td>';
+    echo '</tr>';
 
-    // Variable bindings/Data #8
-    echo '<tr id="tr-custom_value">'.'<td class="datos"  valign="top">'.__('Variable bindings/Data');
-    echo '</td><td class="datos">';
+    // Variable bindings/Data #8.
+    echo '<tr id="tr-custom_value">';
+    echo '<td class="datos"  valign="top">'.__('Variable bindings/Data').'</td>';
+    echo '<td class="datos">';
     echo '#';
     html_print_input_text('order_8', $order_8, '', 4);
     html_print_input_text('custom_oid_data_8', $custom_oid_data_8, '', 60);
-    echo '</td></tr>';
+    echo '</td>';
+    echo '</tr>';
 
-    // Variable bindings/Data #9
-    echo '<tr id="tr-custom_value">'.'<td class="datos"  valign="top">'.__('Variable bindings/Data');
-    echo '</td><td class="datos">';
+    // Variable bindings/Data #9.
+    echo '<tr id="tr-custom_value">';
+    echo '<td class="datos"  valign="top">'.__('Variable bindings/Data').'</td>';
+    echo '<td class="datos">';
     echo '#';
     html_print_input_text('order_9', $order_9, '', 4);
     html_print_input_text('custom_oid_data_9', $custom_oid_data_9, '', 60);
-    echo '</td></tr>';
+    echo '</td>';
+    echo '</tr>';
 
-    // Variable bindings/Data #10
-    echo '<tr id="tr-custom_value">'.'<td class="datos"  valign="top">'.__('Variable bindings/Data');
-    echo '</td><td class="datos">';
+    // Variable bindings/Data #10.
+    echo '<tr id="tr-custom_value">';
+    echo '<td class="datos"  valign="top">'.__('Variable bindings/Data').'</td>';
+    echo '<td class="datos">';
     echo '#';
     html_print_input_text('order_10', $order_10, '', 4);
     html_print_input_text('custom_oid_data_10', $custom_oid_data_10, '', 60);
-    echo '</td></tr>';
+    echo '</td>';
+    echo '</tr>';
 
-    // Variable bindings/Data #11
-    echo '<tr id="tr-custom_value">'.'<td class="datos"  valign="top">'.__('Variable bindings/Data');
-    echo '</td><td class="datos">';
+    // Variable bindings/Data #11.
+    echo '<tr id="tr-custom_value">';
+    echo '<td class="datos"  valign="top">'.__('Variable bindings/Data').'</td>';
+    echo '<td class="datos">';
     echo '#';
     html_print_input_text('order_11', $order_11, '', 4);
     html_print_input_text('custom_oid_data_11', $custom_oid_data_11, '', 60);
-    echo '</td></tr>';
+    echo '</td>';
+    echo '</tr>';
 
-    // Variable bindings/Data #12
-    echo '<tr id="tr-custom_value">'.'<td class="datos"  valign="top">'.__('Variable bindings/Data');
-    echo '</td><td class="datos">';
+    // Variable bindings/Data #12.
+    echo '<tr id="tr-custom_value">';
+    echo '<td class="datos"  valign="top">'.__('Variable bindings/Data').'</td>';
+    echo '<td class="datos">';
     echo '#';
     html_print_input_text('order_12', $order_12, '', 4);
     html_print_input_text('custom_oid_data_12', $custom_oid_data_12, '', 60);
-    echo '</td></tr>';
+    echo '</td>';
+    echo '</tr>';
 
-    // Variable bindings/Data #13
-    echo '<tr id="tr-custom_value"><td class="datos"  valign="top">'.__('Variable bindings/Data');
-    echo '</td><td class="datos">';
+    // Variable bindings/Data #13.
+    echo '<tr id="tr-custom_value">';
+    echo '<td class="datos"  valign="top">'.__('Variable bindings/Data').'</td>';
+    echo '<td class="datos">';
     echo '#';
     html_print_input_text('order_13', $order_13, '', 4);
     html_print_input_text('custom_oid_data_13', $custom_oid_data_13, '', 60);
-    echo '</td></tr>';
+    echo '</td>';
+    echo '</tr>';
 
-    // Variable bindings/Data #14
-    echo '<tr id="tr-custom_value"><td class="datos"  valign="top">'.__('Variable bindings/Data');
-    echo '</td><td class="datos">';
+    // Variable bindings/Data #14.
+    echo '<tr id="tr-custom_value">';
+    echo '<td class="datos"  valign="top">'.__('Variable bindings/Data').'</td>';
+    echo '<td class="datos">';
     echo '#';
     html_print_input_text('order_14', $order_14, '', 4);
     html_print_input_text('custom_oid_data_14', $custom_oid_data_14, '', 60);
-    echo '</td></tr>';
+    echo '</td>';
+    echo '</tr>';
 
-    // Variable bindings/Data #15
-    echo '<tr id="tr-custom_value"><td class="datos"  valign="top">'.__('Variable bindings/Data');
-    echo '</td><td class="datos">';
+    // Variable bindings/Data #15.
+    echo '<tr id="tr-custom_value">';
+    echo '<td class="datos"  valign="top">'.__('Variable bindings/Data').'</td>';
+    echo '<td class="datos">';
     echo '#';
     html_print_input_text('order_15', $order_15, '', 4);
     html_print_input_text('custom_oid_data_15', $custom_oid_data_15, '', 60);
-    echo '</td></tr>';
+    echo '</td>';
+    echo '</tr>';
 
-    // Variable bindings/Data #16
-    echo '<tr id="tr-custom_value"><td class="datos"  valign="top">'.__('Variable bindings/Data');
-    echo '</td><td class="datos">';
+    // Variable bindings/Data #16.
+    echo '<tr id="tr-custom_value">';
+    echo '<td class="datos"  valign="top">'.__('Variable bindings/Data').'</td>';
+    echo '<td class="datos">';
     echo '#';
     html_print_input_text('order_16', $order_16, '', 4);
     html_print_input_text('custom_oid_data_16', $custom_oid_data_16, '', 60);
-    echo '</td></tr>';
+    echo '</td>';
+    echo '</tr>';
 
-    // Variable bindings/Data #17
-    echo '<tr id="tr-custom_value"><td class="datos"  valign="top">'.__('Variable bindings/Data');
-    echo '</td><td class="datos">';
+    // Variable bindings/Data #17.
+    echo '<tr id="tr-custom_value">';
+    echo '<td class="datos"  valign="top">'.__('Variable bindings/Data').'</td>';
+    echo '<td class="datos">';
     echo '#';
     html_print_input_text('order_17', $order_17, '', 4);
     html_print_input_text('custom_oid_data_17', $custom_oid_data_17, '', 60);
-    echo '</td></tr>';
+    echo '</td>';
+    echo '</tr>';
 
-    // Variable bindings/Data #18
-    echo '<tr id="tr-custom_value"><td class="datos"  valign="top">'.__('Variable bindings/Data');
-    echo '</td><td class="datos">';
+    // Variable bindings/Data #18.
+    echo '<tr id="tr-custom_value">';
+    echo '<td class="datos"  valign="top">'.__('Variable bindings/Data').'</td>';
+    echo '<td class="datos">';
     echo '#';
     html_print_input_text('order_18', $order_18, '', 4);
     html_print_input_text('custom_oid_data_18', $custom_oid_data_18, '', 60);
-    echo '</td></tr>';
+    echo '</td>';
+    echo '</tr>';
 
-    // Variable bindings/Data #19
-    echo '<tr id="tr-custom_value"><td class="datos"  valign="top">'.__('Variable bindings/Data');
-    echo '</td><td class="datos">';
+    // Variable bindings/Data #19.
+    echo '<tr id="tr-custom_value">';
+    echo '<td class="datos"  valign="top">'.__('Variable bindings/Data').'</td>';
+    echo '<td class="datos">';
     echo '#';
     html_print_input_text('order_19', $order_19, '', 4);
     html_print_input_text('custom_oid_data_19', $custom_oid_data_19, '', 60);
-    echo '</td></tr>';
+    echo '</td>';
+    echo '</tr>';
 
-    // Variable bindings/Data #20
-    echo '<tr id="tr-custom_value"><td class="datos"  valign="top">'.__('Variable bindings/Data');
-    echo '</td><td class="datos">';
+    // Variable bindings/Data #20.
+    echo '<tr id="tr-custom_value">';
+    echo '<td class="datos"  valign="top">'.__('Variable bindings/Data').'</td>';
+    echo '<td class="datos">';
     echo '#';
     html_print_input_text('order_20', $order_20, '', 4);
     html_print_input_text('custom_oid_data_20', $custom_oid_data_20, '', 60);
-    echo '</td></tr>';
+    echo '</td>';
+    echo '</tr>';
 
-    // Alert fields
+    // Alert fields.
     $al = [
         'al_field1'  => $al_field1,
         'al_field2'  => $al_field2,
@@ -974,7 +1061,7 @@ if ($create_alert || $update_alert) {
         'al_field20' => $al_field20,
     ];
 
-    // Hidden div with help hint to fill with javascript
+    // Hidden div with help hint to fill with javascript.
     html_print_div(['id' => 'help_snmp_alert_hint', 'content' => ui_print_help_icon('snmp_alert_field1', true), 'hidden' => true]);
 
     for ($i = 1; $i <= $config['max_macro_fields']; $i++) {
@@ -984,7 +1071,7 @@ if ($create_alert || $update_alert) {
         echo '</td></tr>';
     }
 
-    // Max / Min alerts
+    // Max / Min alerts.
     echo '<tr><td class="datos2">'.__('Min. number of alerts').'</td><td class="datos2">';
     html_print_input_text('min_alerts', $min_alerts, '', 3);
 
@@ -992,7 +1079,7 @@ if ($create_alert || $update_alert) {
     html_print_input_text('max_alerts', $max_alerts, '', 3);
     echo '</td></tr>';
 
-    // Time Threshold
+    // Time Threshold.
     echo '<tr><td class="datos2">'.__('Time threshold').'</td><td class="datos2">';
 
     $fields = [];
@@ -1014,7 +1101,7 @@ if ($create_alert || $update_alert) {
     html_print_input_text('time_other', 0, '', 6);
     echo ' '.__('seconds').'</div></td></tr>';
 
-    // Priority
+    // Priority.
     echo '<tr><td class="datos">'.__('Priority').'</td><td class="datos">';
     echo html_print_select(get_priorities(), 'priority', $priority, '', '', '0', false, false, false);
     echo '</td></tr>';
@@ -1048,10 +1135,11 @@ if ($create_alert || $update_alert) {
 
     echo "<table class='w100p'>";
     echo '<tr><td></td><td align="right">';
+    html_print_button(__('Back'), 'button_back', false, '', 'class="sub cancel margin-right-05"');
     if ($id_as > 0) {
-        html_print_submit_button(__('Update'), 'submit', false, 'class="sub upd"', false);
+        html_print_submit_button(__('Update'), 'submit', false, 'class="sub upd"');
     } else {
-        html_print_submit_button(__('Create'), 'submit', false, 'class="sub wand"', false);
+        html_print_submit_button(__('Create'), 'submit', false, 'class="sub wand"');
     }
 
     echo '</td></tr></table>';
@@ -1089,119 +1177,68 @@ if ($create_alert || $update_alert) {
     $form_filter .= '</div>';
     $form_filter .= '</form>';
 
-    // echo "<br>";
     ui_toggle($form_filter, __('Alert SNMP control filter'), __('Toggle filter(s)'));
 
     $filter = [];
     $offset = (int) get_parameter('offset');
     $limit = (int) $config['block_size'];
     if ($filter_param) {
-        // Move the first page
+        // Move the first page.
         $offset = 0;
 
-        $url_pagination = 'index.php?'.'sec=snmpconsole&'.'sec2=godmode/snmpconsole/snmp_alert&'.'free_search='.$free_search.'&'.'trap_type_filter='.$trap_type_filter.'&'.'priority_filter='.$priority_filter;
+        $url_pagination = 'index.php?sec=snmpconsole&sec2=godmode/snmpconsole/snmp_alert&free_search='.$free_search.'&trap_type_filter='.$trap_type_filter.'&priority_filter='.$priority_filter;
     } else {
-        $url_pagination = 'index.php?'.'sec=snmpconsole&'.'sec2=godmode/snmpconsole/snmp_alert&'.'free_search='.$free_search.'&'.'trap_type_filter='.$trap_type_filter.'&'.'priority_filter='.$priority_filter.'&'.'offset='.$offset;
+        $url_pagination = 'index.php?sec=snmpconsole&sec2=godmode/snmpconsole/snmp_alert&free_search='.$free_search.'&trap_type_filter='.$trap_type_filter.'&priority_filter='.$priority_filter.'&offset='.$offset;
     }
 
 
     $where_sql = '';
-    if (!empty($free_search)) {
-        switch ($config['dbtype']) {
-            case 'mysql':
-            case 'postgresql':
-                // $where_sql = ' 1 = 1';
-                if ($trap_type_filter != SNMP_TRAP_TYPE_NONE) {
-                    $where_sql .= ' AND `trap_type` = '.$trap_type_filter;
-                }
-
-                if ($priority_filter != -1) {
-                    $where_sql .= ' AND `priority` = '.$priority_filter;
-                }
-
-                $where_sql .= " AND (`single_value` LIKE '%".$free_search."%'
-					OR `_snmp_f10_` LIKE '%".$free_search."%'
-					OR `_snmp_f9_` LIKE '%".$free_search."%'
-					OR `_snmp_f8_` LIKE '%".$free_search."%'
-					OR `_snmp_f7_` LIKE '%".$free_search."%'
-					OR `_snmp_f6_` LIKE '%".$free_search."%'
-					OR `_snmp_f5_` LIKE '%".$free_search."%'
-					OR `_snmp_f4_` LIKE '%".$free_search."%'
-					OR `_snmp_f3_` LIKE '%".$free_search."%'
-					OR `_snmp_f2_` LIKE '%".$free_search."%'
-					OR `_snmp_f1_` LIKE '%".$free_search."%'
-					OR `oid` LIKE '%".$free_search."%'
-					OR `custom_oid` LIKE '%".$free_search."%'
-					OR `agent` LIKE '%".$free_search."%'
-					OR `description` LIKE '%".$free_search."%')";
-            break;
-
-            case 'oracle':
-                // $where_sql = ' 1 = 1';
-                if ($trap_type_filter != SNMP_TRAP_TYPE_NONE) {
-                    $where_sql .= ' AND trap_type = '.$trap_type_filter;
-                }
-
-                if ($priority_filter != -1) {
-                    $where_sql .= ' AND priority = '.$priority_filter;
-                }
-
-                $where_sql .= " AND (single_value LIKE '%".$free_search."%' 
-					OR \"_snmp_f10_\" LIKE '%".$free_search."%' 
-					OR \"_snmp_f9_\" LIKE '%".$free_search."%' 
-					OR \"_snmp_f8_\" LIKE '%".$free_search."%' 
-					OR \"_snmp_f7_\" LIKE '%".$free_search."%' 
-					OR \"_snmp_f6_\" LIKE '%".$free_search."%' 
-					OR \"_snmp_f5_\" LIKE '%".$free_search."%' 
-					OR \"_snmp_f4_\" LIKE '%".$free_search."%' 
-					OR \"_snmp_f3_\" LIKE '%".$free_search."%' 
-					OR \"_snmp_f2_\" LIKE '%".$free_search."%' 
-					OR \"_snmp_f1_\" LIKE '%".$free_search."%' 
-					OR oid LIKE '%".$free_search."%' 
-					OR custom_oid LIKE '%".$free_search."%' 
-					OR agent LIKE '%".$free_search."%' 
-					OR description LIKE '%".$free_search."%')";
-            break;
+    if (empty($free_search) === false) {
+        if ($trap_type_filter != SNMP_TRAP_TYPE_NONE) {
+            $where_sql .= ' AND `trap_type` = '.$trap_type_filter;
         }
+
+        if ($priority_filter != -1) {
+            $where_sql .= ' AND `priority` = '.$priority_filter;
+        }
+
+        $where_sql .= " AND (`single_value` LIKE '%".$free_search."%'
+            OR `_snmp_f10_` LIKE '%".$free_search."%'
+            OR `_snmp_f9_` LIKE '%".$free_search."%'
+            OR `_snmp_f8_` LIKE '%".$free_search."%'
+            OR `_snmp_f7_` LIKE '%".$free_search."%'
+            OR `_snmp_f6_` LIKE '%".$free_search."%'
+            OR `_snmp_f5_` LIKE '%".$free_search."%'
+            OR `_snmp_f4_` LIKE '%".$free_search."%'
+            OR `_snmp_f3_` LIKE '%".$free_search."%'
+            OR `_snmp_f2_` LIKE '%".$free_search."%'
+            OR `_snmp_f1_` LIKE '%".$free_search."%'
+            OR `oid` LIKE '%".$free_search."%'
+            OR `custom_oid` LIKE '%".$free_search."%'
+            OR `agent` LIKE '%".$free_search."%'
+            OR `description` LIKE '%".$free_search."%')";
     }
 
-    $count = db_get_value_sql(
-        "SELECT COUNT(*)
-		FROM talert_snmp WHERE id_group IN ($str_user_groups) ".$where_sql
+    $count = (int) db_get_value_sql(
+        'SELECT COUNT(*)
+		FROM talert_snmp WHERE id_group IN ('.$str_user_groups.') '.$where_sql
     );
 
     $result = [];
 
-    // Overview
-    if ($count == 0) {
+    // Overview.
+    if ($count === 0) {
         $result = [];
         ui_print_info_message(['no_close' => true, 'message' => __('There are no SNMP alerts') ]);
     } else {
         ui_pagination($count, $url_pagination);
-        switch ($config['dbtype']) {
-            case 'mysql':
-            case 'postgresql':
-                $where_sql .= ' LIMIT '.$limit.' OFFSET '.$offset;
-                $result = db_get_all_rows_sql(
-                    "SELECT *
-					FROM talert_snmp 
-					WHERE id_group IN ($str_user_groups) ".$where_sql
-                );
-            break;
 
-            case 'oracle':
-                $sql = "SELECT *
-					FROM talert_snmp 
-					WHERE id_group IN ($str_user_groups) ".$where_sql;
-                $set = [];
-                if (isset($offset) && isset($limit)) {
-                    $set['limit'] = $limit;
-                    $set['offset'] = $offset;
-                }
-
-                $result = oracle_recode_query($sql, $set, 'AND', false);
-            break;
-        }
+        $where_sql .= ' LIMIT '.$limit.' OFFSET '.$offset;
+        $result = db_get_all_rows_sql(
+            'SELECT *
+            FROM talert_snmp
+            WHERE id_group IN ('.$str_user_groups.') '.$where_sql
+        );
     }
 
     $table = new stdClass();
@@ -1250,7 +1287,7 @@ if ($create_alert || $update_alert) {
         $data = [];
         $data[0] = $row['position'];
 
-        $url = 'index.php?'.'sec=snmpconsole&'.'sec2=godmode/snmpconsole/snmp_alert&'.'id_alert_snmp='.$row['id_as'].'&'.'update_alert=1';
+        $url = 'index.php?sec=snmpconsole&sec2=godmode/snmpconsole/snmp_alert&id_alert_snmp='.$row['id_as'].'&update_alert=1';
         $data[1] = '<table>';
         $data[1] .= '<tr>';
 
@@ -1281,50 +1318,86 @@ if ($create_alert || $update_alert) {
         }
 
         $data[1] .= '</table>';
-
-
         $data[2] = $row['agent'];
         $data[3] = $row['oid'];
         $data[4] = $row['custom_oid'];
         $data[5] = $row['description'];
         $data[6] = $row['times_fired'];
 
-        if (($row['last_fired'] != '1970-01-01 00:00:00') and ($row['last_fired'] != '01-01-1970 00:00:00')) {
+        if (($row['last_fired'] !== '1970-01-01 00:00:00') && ($row['last_fired'] !== '01-01-1970 00:00:00')) {
             $data[7] = ui_print_timestamp($row['last_fired'], true);
         } else {
             $data[7] = __('Never');
         }
 
-        if (check_acl_restricted_all($config['id_user'], $row['id_group'], 'LW')) {
-                $data[8] = '<a href="index.php?'.'sec=snmpconsole&'.'sec2=godmode/snmpconsole/snmp_alert&'.'duplicate_alert=1&'.'id_alert_snmp='.$row['id_as'].'">'.html_print_image(
-                    'images/copy.png',
-                    true,
-                    [
-                        'alt'   => __('Duplicate'),
-                        'title' => __('Duplicate'),
-                    ]
-                ).'</a>'.'<a href="index.php?'.'sec=snmpconsole&'.'sec2=godmode/snmpconsole/snmp_alert&'.'update_alert=1&'.'id_alert_snmp='.$row['id_as'].'">'.html_print_image(
-                    'images/config.png',
-                    true,
-                    [
-                        'border' => '0',
-                        'alt'    => __('Update'),
-                    ]
-                ).'</a>'.'<a href="javascript:show_add_action_snmp(\''.$row['id_as'].'\');">'.html_print_image(
-                    'images/add.png',
-                    true,
-                    [
-                        'title' => __('Add action'),
-                    ]
-                ).'</a>'.'<a href="index.php?sec=snmpconsole&sec2=godmode/snmpconsole/snmp_alert&delete_alert='.$row['id_as'].'" onClick="javascript:return confirm(\''.__('Are you sure?').'\')">'.html_print_image(
-                    'images/cross.png',
-                    true,
-                    [
-                        'border' => '0',
-                        'alt'    => __('Delete'),
-                    ]
-                ).'</a>';
+        $data[8] = '';
+        $data[9] = '';
 
+        if ((bool) check_acl_restricted_all($config['id_user'], $row['id_group'], 'LW') === true) {
+                $data[8] = html_print_anchor(
+                    [
+                        'href'    => sprintf(
+                            'index.php?sec=snmpconsole&sec2=godmode/snmpconsole/snmp_alert&duplicate_alert=1&id_alert_snmp=%s',
+                            $row['id_as']
+                        ),
+                        'content' => html_print_image(
+                            'images/copy.png',
+                            true,
+                            [
+                                'alt'   => __('Duplicate'),
+                                'title' => __('Duplicate'),
+                            ]
+                        ),
+                    ],
+                    true
+                );
+                $data[8] .= html_print_anchor(
+                    [
+                        'href'    => sprintf(
+                            'index.php?sec=snmpconsole&sec2=godmode/snmpconsole/snmp_alert&update_alert=1&id_alert_snmp=%s',
+                            $row['id_as']
+                        ),
+                        'content' => html_print_image(
+                            'images/config.png',
+                            true,
+                            [
+                                'alt'    => __('Update'),
+                                'border' => 0,
+                            ]
+                        ),
+                    ],
+                    true
+                );
+                $data[8] .= html_print_anchor(
+                    [
+                        'href'    => sprintf(
+                            'javascript:show_add_action_snmp(\'%s\');"',
+                            $row['id_as']
+                        ),
+                        'content' => html_print_image(
+                            'images/add.png',
+                            true,
+                            [
+                                'title' => __('Add action'),
+                            ]
+                        ),
+                    ],
+                    true
+                );
+                $data[8] .= html_print_anchor(
+                    [
+                        'href'    => 'javascript: ',
+                        'content' => html_print_image(
+                            'images/cross.png',
+                            true,
+                            [
+                                'title' => __('Delete action'),
+                            ]
+                        ),
+                        'onClick' => 'delete_snmp_alert('.$row['id_as'].')',
+                    ],
+                    true
+                );
 
                 $data[9] = html_print_checkbox_extended(
                     'delete_ids[]',
@@ -1335,71 +1408,47 @@ if ($create_alert || $update_alert) {
                     'class="chk_delete"',
                     true
                 );
-        } else {
-            $data[8] = '';
-            $data[9] = '';
         }
 
         $idx = count($table->data);
-        // The current index of the table is 1 less than the count of table data so we count before adding to table->data
+        // The current index of the table is 1 less than the count of table data so we count before adding to table->data.
         array_push($table->data, $data);
 
         $table->rowclass[$idx] = get_priority_class($row['priority']);
     }
 
-    // DIALOG ADD MORE ACTIONS
+    // DIALOG ADD MORE ACTIONS.
     echo '<div id="add_action_snmp-div" class="invisible left">';
 
         echo '<form id="add_action_form" method="post">';
-            echo '<table class="databox_color w100p">';
+            echo '<table class="w100p">';
                 echo '<tr>';
-                    echo '<td class="datos2 bolder_6px">';
+                    echo '<td class="datos bolder w20p">';
                         echo __('ID Alert SNMP');
                     echo '</td>';
                     echo '<td class="datos">';
                         html_print_input_text('id_alert_snmp', '', '', 3, 10, false, true);
                     echo '</td>';
                 echo '</tr>';
-                echo '<tr class="datos2">';
-                    echo '<td class="datos2 bolder_6px">';
+                echo '<tr class="datos">';
+                    echo '<td class="datos bolder w20p">';
                         echo __('Action');
                     echo '</td>';
-                    echo '<td class="datos2">';
+                    echo '<td class="datos">';
 
-    switch ($config['dbtype']) {
-        case 'mysql':
-        case 'postgresql':
-            html_print_select_from_sql(
-                'SELECT id, name
-									FROM talert_actions
-									ORDER BY name',
-                'alert_type',
-                $alert_type,
-                '',
-                '',
-                0,
-                false,
-                false,
-                false
-            );
-        break;
-
-        case 'oracle':
-            html_print_select_from_sql(
-                'SELECT id, dbms_lob.substr(name,4000,1) as name
-									FROM talert_actions
-									ORDER BY dbms_lob.substr(name,4000,1)',
-                'alert_type',
-                $alert_type,
-                '',
-                '',
-                0,
-                false,
-                false,
-                false
-            );
-        break;
-    }
+                    html_print_select_from_sql(
+                        'SELECT id, name
+                        FROM talert_actions
+                        ORDER BY name',
+                        'alert_type',
+                        $alert_type,
+                        '',
+                        '',
+                        0,
+                        false,
+                        false,
+                        false
+                    );
 
                     echo '</td>';
                 echo '</tr>';
@@ -1445,16 +1494,16 @@ if ($create_alert || $update_alert) {
                 echo html_print_submit_button(__('Add'), 'addbutton', false, ['class' => 'sub next', 'style' => 'float:right'], true);
                 echo '</form>';
                 echo '</div>';
-                // END DIALOG ADD MORE ACTIONS
-                if (!empty($table->data)) {
-                    echo '<form name="agente" method="post" action="index.php?sec=snmpconsole&sec2=godmode/snmpconsole/snmp_alert">';
+                // END DIALOG ADD MORE ACTIONS.
+                if (empty($table->data) === false) {
+                    echo '<form id="delete_selected_form" name="agente" method="post" action="index.php?sec=snmpconsole&sec2=godmode/snmpconsole/snmp_alert">';
                     html_print_table($table);
 
                     ui_pagination($count, $url_pagination);
 
                     echo '<div class="right mrgn_lft_10px;">';
                     html_print_input_hidden('multiple_delete', 1);
-                    html_print_submit_button(__('Delete selected'), 'delete_button', false, 'class="sub delete mrgn_btn_10px"');
+                    html_print_button(__('Delete selected'), 'delete_button', false, 'delete_selected_snmp_alerts()', 'class="sub delete mrgn_btn_10px"');
                     echo '</div>';
                     echo '</form>';
                 }
@@ -1491,6 +1540,36 @@ function time_changed () {
     }
 }
 
+function delete_snmp_alert(id) {
+    confirmDialog({
+    title: "<?php echo __('Confirmation'); ?>",
+    message: "<?php echo __('Do you want delete this alert?'); ?>",
+    cancel: "<?php echo __('Cancel'); ?>",
+    ok: "<?php echo __('Ok'); ?>",
+    onAccept: function() {
+      window.location.href = 'index.php?sec=snmpconsole&sec2=godmode/snmpconsole/snmp_alert&delete_alert='+id;
+    },
+    onDeny: function() {
+      return false;
+    }
+  });
+}
+
+function delete_selected_snmp_alerts() {
+    confirmDialog({
+    title: "<?php echo __('Confirmation'); ?>",
+    message: "<?php echo __('Do you want delete the selected alerts?'); ?>",
+    cancel: "<?php echo __('Cancel'); ?>",
+    ok: "<?php echo __('Ok'); ?>",
+    onAccept: function() {
+      $('#delete_selected_form').submit();
+    },
+    onDeny: function() {
+      return false;
+    }
+  });
+}
+
 $(document).ready (function () {
     $('#time_threshold').change (time_changed);
     $("input[name=all_delete_box]").change (function() {
@@ -1578,10 +1657,13 @@ $(document).ready (function () {
     }
 
     defineTinyMCE(added_config);
+
+    $('#button-button_back').on('click', function(){
+        window.location = '<?php echo ui_get_full_url('index.php?sec=snmpconsole&sec2=godmode/snmpconsole/snmp_alert'); ?>';
+    });
 });
 
 function show_add_action_snmp(id_alert_snmp) {
-    
     $("#add_action_snmp-div").hide()
         .dialog ({
             resizable: true,
@@ -1592,8 +1674,28 @@ function show_add_action_snmp(id_alert_snmp) {
                 opacity: 0.5,
                 background: "black"
             },
-            width: 550,
-            height: 400
+            width: 600,
+            height: 600,
+            autoOpen: true,
+            open: function() {
+                if (
+                $.ui &&
+                $.ui.dialog &&
+                $.ui.dialog.prototype._allowInteraction
+                ) {
+                var ui_dialog_interaction =
+                    $.ui.dialog.prototype._allowInteraction;
+                $.ui.dialog.prototype._allowInteraction = function(e) {
+                    if ($(e.target).closest(".select2-dropdown").length)
+                    return true;
+                    return ui_dialog_interaction.apply(this, arguments);
+                };
+                }
+            },
+            _allowInteraction: function(event) {
+                return !!$(event.target).is(".select2-input") || this._super(event);
+            }
+
         })
         .show ();
         $("#text-id_alert_snmp").val(id_alert_snmp);
diff --git a/pandora_console/include/styles/pandora.css b/pandora_console/include/styles/pandora.css
index df286eaf49..ad1c2af26f 100644
--- a/pandora_console/include/styles/pandora.css
+++ b/pandora_console/include/styles/pandora.css
@@ -814,6 +814,13 @@ select:-internal-list-box {
 .margin-left-2 {
   margin-left: 2em;
 }
+.margin-right-05 {
+  margin-right: 0.5em;
+}
+
+.margin-left-05 {
+  margin-left: 0.5em;
+}
 .no-border {
   border: none;
 }

From 353e8773f856a1c1bee7cc75ea2a1b5232ca4b9a Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Jos=C3=A9=20Gonz=C3=A1lez?= <jose.gonzalez@pandorafms.com>
Date: Thu, 26 May 2022 08:13:30 +0200
Subject: [PATCH 055/138] Hide inventory view if agent dont have inventory
 modules

---
 pandora_console/operation/agentes/ver_agente.php | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/pandora_console/operation/agentes/ver_agente.php b/pandora_console/operation/agentes/ver_agente.php
index bca69043e2..3ce033fbe3 100644
--- a/pandora_console/operation/agentes/ver_agente.php
+++ b/pandora_console/operation/agentes/ver_agente.php
@@ -1403,7 +1403,7 @@ if ($agent_interfaces_count > 0) {
         ]
     ).'</a>';
 
-    if ($tab == 'interface') {
+    if ($tab === 'interface') {
         $interfacetab['active'] = true;
     } else {
         $interfacetab['active'] = false;
@@ -1420,19 +1420,19 @@ $alerttab['text'] = '<a href="index.php?sec=estado&sec2=operation/agentes/ver_ag
     ]
 ).'</a>';
 
-if ($tab == 'alert') {
+if ($tab === 'alert') {
     $alerttab['active'] = true;
 } else {
     $alerttab['active'] = false;
 }
 
 // Inventory.
+$inventoryCount = db_get_num_rows('SELECT id_agent_module_inventory FROM tagent_module_inventory WHERE id_agente = '.$agent['id_agente']);
 $inventorytab = enterprise_hook('inventory_tab');
-if ($inventorytab == -1) {
+if ($inventorytab == -1 || $inventoryCount === 0) {
     $inventorytab = '';
 }
 
-
 // Collection.
 $collectiontab = enterprise_hook('collection_tab');
 if ($collectiontab == -1) {

From 672d48b49dbe46ab649144fb52308487b34a69f6 Mon Sep 17 00:00:00 2001
From: Daniel Maya <daniel.maya@pandorafms.com>
Date: Thu, 26 May 2022 11:14:21 +0200
Subject: [PATCH 056/138] #9022 Fixed version

---
 .../update_manager_client/lib/UpdateManager/Client.php          | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/pandora_console/update_manager_client/lib/UpdateManager/Client.php b/pandora_console/update_manager_client/lib/UpdateManager/Client.php
index 4e38b20a75..c9785280d9 100644
--- a/pandora_console/update_manager_client/lib/UpdateManager/Client.php
+++ b/pandora_console/update_manager_client/lib/UpdateManager/Client.php
@@ -2228,7 +2228,7 @@ class Client
         if (is_callable($this->postUpdateFN) === true) {
             call_user_func(
                 $this->postUpdateFN,
-                $this->currentPackage,
+                (string) $version,
                 'server'
             );
         }

From 659b1d0523e0590f7df49ab714977cc74c3983ab Mon Sep 17 00:00:00 2001
From: Rafael <rafael.ameijeiras@artica.es>
Date: Thu, 26 May 2022 18:30:41 +0200
Subject: [PATCH 057/138] 9074-instalador-online-falla-gotty

---
 extras/deploy-scripts/pandora_deploy_community.sh     | 2 +-
 extras/deploy-scripts/pandora_deploy_community_el8.sh | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/extras/deploy-scripts/pandora_deploy_community.sh b/extras/deploy-scripts/pandora_deploy_community.sh
index cb800cf29b..f866154ec6 100644
--- a/extras/deploy-scripts/pandora_deploy_community.sh
+++ b/extras/deploy-scripts/pandora_deploy_community.sh
@@ -422,7 +422,7 @@ execute_cmd "curl -LSs --output pandorafms_agent_unix-7.0NG.noarch.rpm ${PANDORA
 execute_cmd "yum install -y $HOME/pandora_deploy_tmp/pandorafms*.rpm" "installing PandoraFMS packages"
 
 # Copy gotty utility
-execute_cmd "wget https://github.com/yudai/gotty/releases/download/v1.0.1/gotty_linux_amd64.tar.gz" 'Dowloading gotty util'
+execute_cmd "wget https://pandorafms.com/library/wp-content/uploads/2019/11/gotty_linux_amd64.tar.gz" 'Dowloading gotty util'
 tar xvzf gotty_linux_amd64.tar.gz &>> $LOGFILE
 execute_cmd "mv gotty /usr/bin/" 'Installing gotty util'
 
diff --git a/extras/deploy-scripts/pandora_deploy_community_el8.sh b/extras/deploy-scripts/pandora_deploy_community_el8.sh
index 0b17821b46..6edd13773e 100644
--- a/extras/deploy-scripts/pandora_deploy_community_el8.sh
+++ b/extras/deploy-scripts/pandora_deploy_community_el8.sh
@@ -495,7 +495,7 @@ execute_cmd "curl -LSs --output pandorafms_agent_unix-7.0NG.noarch.rpm ${PANDORA
 execute_cmd "dnf install -y $HOME/pandora_deploy_tmp/pandorafms*.rpm" "Installing Pandora FMS packages"
 
 # Copy gotty utility
-execute_cmd "wget https://github.com/yudai/gotty/releases/download/v1.0.1/gotty_linux_amd64.tar.gz" 'Dowloading gotty util'
+execute_cmd "wget https://pandorafms.com/library/wp-content/uploads/2019/11/gotty_linux_amd64.tar.gz" 'Dowloading gotty util'
 tar xvzf gotty_linux_amd64.tar.gz &>> $LOGFILE
 execute_cmd "mv gotty /usr/bin/" 'Installing gotty util'
 

From 1b62f0a3eb4f7031938dee1fea34c5e906554e5b Mon Sep 17 00:00:00 2001
From: artica <artica.devel@gmail.com>
Date: Fri, 27 May 2022 01:00:21 +0200
Subject: [PATCH 058/138] Auto-updated build strings.

---
 pandora_agents/unix/DEBIAN/control             | 2 +-
 pandora_agents/unix/DEBIAN/make_deb_package.sh | 2 +-
 pandora_agents/unix/pandora_agent              | 2 +-
 pandora_agents/unix/pandora_agent.redhat.spec  | 2 +-
 pandora_agents/unix/pandora_agent.spec         | 2 +-
 pandora_agents/unix/pandora_agent_installer    | 2 +-
 pandora_agents/win32/installer/pandora.mpi     | 2 +-
 pandora_agents/win32/pandora.cc                | 2 +-
 pandora_agents/win32/versioninfo.rc            | 2 +-
 pandora_console/DEBIAN/control                 | 2 +-
 pandora_console/DEBIAN/make_deb_package.sh     | 2 +-
 pandora_console/include/config_process.php     | 2 +-
 pandora_console/install.php                    | 2 +-
 pandora_console/pandora_console.redhat.spec    | 2 +-
 pandora_console/pandora_console.rhel7.spec     | 2 +-
 pandora_console/pandora_console.spec           | 2 +-
 pandora_server/DEBIAN/control                  | 2 +-
 pandora_server/DEBIAN/make_deb_package.sh      | 2 +-
 pandora_server/lib/PandoraFMS/Config.pm        | 2 +-
 pandora_server/lib/PandoraFMS/PluginTools.pm   | 2 +-
 pandora_server/pandora_server.redhat.spec      | 2 +-
 pandora_server/pandora_server.spec             | 2 +-
 pandora_server/pandora_server_installer        | 2 +-
 pandora_server/util/pandora_db.pl              | 2 +-
 pandora_server/util/pandora_manage.pl          | 2 +-
 25 files changed, 25 insertions(+), 25 deletions(-)

diff --git a/pandora_agents/unix/DEBIAN/control b/pandora_agents/unix/DEBIAN/control
index 9ecafc4278..29c46295be 100644
--- a/pandora_agents/unix/DEBIAN/control
+++ b/pandora_agents/unix/DEBIAN/control
@@ -1,5 +1,5 @@
 package: pandorafms-agent-unix
-Version: 7.0NG.762-220526
+Version: 7.0NG.762-220527
 Architecture: all
 Priority: optional
 Section: admin
diff --git a/pandora_agents/unix/DEBIAN/make_deb_package.sh b/pandora_agents/unix/DEBIAN/make_deb_package.sh
index 2f53dd808c..8da7363086 100644
--- a/pandora_agents/unix/DEBIAN/make_deb_package.sh
+++ b/pandora_agents/unix/DEBIAN/make_deb_package.sh
@@ -14,7 +14,7 @@
 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 # GNU General Public License for more details.
 
-pandora_version="7.0NG.762-220526"
+pandora_version="7.0NG.762-220527"
 
 echo "Test if you has the tools for to make the packages."
 whereis dpkg-deb | cut -d":" -f2 | grep dpkg-deb > /dev/null
diff --git a/pandora_agents/unix/pandora_agent b/pandora_agents/unix/pandora_agent
index 5b3c9dd9d5..0c6c998e52 100755
--- a/pandora_agents/unix/pandora_agent
+++ b/pandora_agents/unix/pandora_agent
@@ -1015,7 +1015,7 @@ my $Sem = undef;
 my $ThreadSem = undef;
 
 use constant AGENT_VERSION => '7.0NG.762';
-use constant AGENT_BUILD => '220526';
+use constant AGENT_BUILD => '220527';
 
 # Agent log default file size maximum and instances
 use constant DEFAULT_MAX_LOG_SIZE => 600000;
diff --git a/pandora_agents/unix/pandora_agent.redhat.spec b/pandora_agents/unix/pandora_agent.redhat.spec
index 8299497d86..37b5b76c47 100644
--- a/pandora_agents/unix/pandora_agent.redhat.spec
+++ b/pandora_agents/unix/pandora_agent.redhat.spec
@@ -3,7 +3,7 @@
 #
 %define name        pandorafms_agent_unix
 %define version     7.0NG.762
-%define release     220526
+%define release     220527
 
 Summary:            Pandora FMS Linux agent, PERL version
 Name:               %{name}
diff --git a/pandora_agents/unix/pandora_agent.spec b/pandora_agents/unix/pandora_agent.spec
index 40526689b5..fa5c991b56 100644
--- a/pandora_agents/unix/pandora_agent.spec
+++ b/pandora_agents/unix/pandora_agent.spec
@@ -3,7 +3,7 @@
 #
 %define name        pandorafms_agent_unix
 %define version     7.0NG.762
-%define release     220526
+%define release     220527
 
 Summary:            Pandora FMS Linux agent, PERL version
 Name:               %{name}
diff --git a/pandora_agents/unix/pandora_agent_installer b/pandora_agents/unix/pandora_agent_installer
index 7a9e80dd1d..359bb32ec7 100755
--- a/pandora_agents/unix/pandora_agent_installer
+++ b/pandora_agents/unix/pandora_agent_installer
@@ -10,7 +10,7 @@
 # **********************************************************************
 
 PI_VERSION="7.0NG.762"
-PI_BUILD="220526"
+PI_BUILD="220527"
 OS_NAME=`uname -s`
 
 FORCE=0
diff --git a/pandora_agents/win32/installer/pandora.mpi b/pandora_agents/win32/installer/pandora.mpi
index 47da22e370..c89522ad63 100644
--- a/pandora_agents/win32/installer/pandora.mpi
+++ b/pandora_agents/win32/installer/pandora.mpi
@@ -186,7 +186,7 @@ UpgradeApplicationID
 {}
 
 Version
-{220526}
+{220527}
 
 ViewReadme
 {Yes}
diff --git a/pandora_agents/win32/pandora.cc b/pandora_agents/win32/pandora.cc
index 35960c8b33..14681afbe2 100644
--- a/pandora_agents/win32/pandora.cc
+++ b/pandora_agents/win32/pandora.cc
@@ -30,7 +30,7 @@ using namespace Pandora;
 using namespace Pandora_Strutils;
 
 #define PATH_SIZE    _MAX_PATH+1
-#define PANDORA_VERSION ("7.0NG.762 Build 220526")
+#define PANDORA_VERSION ("7.0NG.762 Build 220527")
 
 string pandora_path;
 string pandora_dir;
diff --git a/pandora_agents/win32/versioninfo.rc b/pandora_agents/win32/versioninfo.rc
index ba4dbe45be..9204247173 100644
--- a/pandora_agents/win32/versioninfo.rc
+++ b/pandora_agents/win32/versioninfo.rc
@@ -11,7 +11,7 @@ BEGIN
       VALUE "LegalCopyright", "Artica ST"
       VALUE "OriginalFilename", "PandoraAgent.exe"
       VALUE "ProductName", "Pandora FMS Windows Agent"
-      VALUE "ProductVersion", "(7.0NG.762(Build 220526))"
+      VALUE "ProductVersion", "(7.0NG.762(Build 220527))"
       VALUE "FileVersion", "1.0.0.0"
     END
   END
diff --git a/pandora_console/DEBIAN/control b/pandora_console/DEBIAN/control
index 978273000c..11237d8c41 100644
--- a/pandora_console/DEBIAN/control
+++ b/pandora_console/DEBIAN/control
@@ -1,5 +1,5 @@
 package: pandorafms-console
-Version: 7.0NG.762-220526
+Version: 7.0NG.762-220527
 Architecture: all
 Priority: optional
 Section: admin
diff --git a/pandora_console/DEBIAN/make_deb_package.sh b/pandora_console/DEBIAN/make_deb_package.sh
index 3f8ce11bce..e820cd7079 100644
--- a/pandora_console/DEBIAN/make_deb_package.sh
+++ b/pandora_console/DEBIAN/make_deb_package.sh
@@ -14,7 +14,7 @@
 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 # GNU General Public License for more details.
 
-pandora_version="7.0NG.762-220526"
+pandora_version="7.0NG.762-220527"
 
 package_pear=0
 package_pandora=1
diff --git a/pandora_console/include/config_process.php b/pandora_console/include/config_process.php
index 14fbb4d440..c55d5152fb 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 = 'PC220526';
+$build_version = 'PC220527';
 $pandora_version = 'v7.0NG.762';
 
 // Do not overwrite default timezone set if defined.
diff --git a/pandora_console/install.php b/pandora_console/install.php
index 46bdce52f2..a2dc6f5e4a 100644
--- a/pandora_console/install.php
+++ b/pandora_console/install.php
@@ -129,7 +129,7 @@
         <div style='height: 10px'>
             <?php
             $version = '7.0NG.762';
-            $build = '220526';
+            $build = '220527';
             $banner = "v$version Build $build";
 
             error_reporting(0);
diff --git a/pandora_console/pandora_console.redhat.spec b/pandora_console/pandora_console.redhat.spec
index 86a62b0d98..5ae6dbbde2 100644
--- a/pandora_console/pandora_console.redhat.spec
+++ b/pandora_console/pandora_console.redhat.spec
@@ -3,7 +3,7 @@
 #
 %define name        pandorafms_console
 %define version     7.0NG.762
-%define release     220526
+%define release     220527
 
 # User and Group under which Apache is running
 %define httpd_name  httpd
diff --git a/pandora_console/pandora_console.rhel7.spec b/pandora_console/pandora_console.rhel7.spec
index 146455bf9b..de6caf9f14 100644
--- a/pandora_console/pandora_console.rhel7.spec
+++ b/pandora_console/pandora_console.rhel7.spec
@@ -3,7 +3,7 @@
 #
 %define name        pandorafms_console
 %define version     7.0NG.762
-%define release     220526
+%define release     220527
 
 # User and Group under which Apache is running
 %define httpd_name  httpd
diff --git a/pandora_console/pandora_console.spec b/pandora_console/pandora_console.spec
index 418d6219bf..38869c11a0 100644
--- a/pandora_console/pandora_console.spec
+++ b/pandora_console/pandora_console.spec
@@ -3,7 +3,7 @@
 #
 %define name        pandorafms_console
 %define version     7.0NG.762
-%define release     220526
+%define release     220527
 %define httpd_name      httpd
 # User and Group under which Apache is running
 %define httpd_name  apache2
diff --git a/pandora_server/DEBIAN/control b/pandora_server/DEBIAN/control
index 87c9ff9cea..60fb5428ff 100644
--- a/pandora_server/DEBIAN/control
+++ b/pandora_server/DEBIAN/control
@@ -1,5 +1,5 @@
 package: pandorafms-server
-Version: 7.0NG.762-220526
+Version: 7.0NG.762-220527
 Architecture: all
 Priority: optional
 Section: admin
diff --git a/pandora_server/DEBIAN/make_deb_package.sh b/pandora_server/DEBIAN/make_deb_package.sh
index 59d701d36f..9488b4ae70 100644
--- a/pandora_server/DEBIAN/make_deb_package.sh
+++ b/pandora_server/DEBIAN/make_deb_package.sh
@@ -14,7 +14,7 @@
 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 # GNU General Public License for more details.
 
-pandora_version="7.0NG.762-220526"
+pandora_version="7.0NG.762-220527"
 
 package_cpan=0
 package_pandora=1
diff --git a/pandora_server/lib/PandoraFMS/Config.pm b/pandora_server/lib/PandoraFMS/Config.pm
index a216de248c..7715a5679a 100644
--- a/pandora_server/lib/PandoraFMS/Config.pm
+++ b/pandora_server/lib/PandoraFMS/Config.pm
@@ -46,7 +46,7 @@ our @EXPORT = qw(
 
 # version: Defines actual version of Pandora Server for this module only
 my $pandora_version = "7.0NG.762";
-my $pandora_build = "220526";
+my $pandora_build = "220527";
 our $VERSION = $pandora_version." ".$pandora_build;
 
 # Setup hash
diff --git a/pandora_server/lib/PandoraFMS/PluginTools.pm b/pandora_server/lib/PandoraFMS/PluginTools.pm
index 37cfdf7d4a..5dc7d3ca45 100644
--- a/pandora_server/lib/PandoraFMS/PluginTools.pm
+++ b/pandora_server/lib/PandoraFMS/PluginTools.pm
@@ -34,7 +34,7 @@ our @ISA = qw(Exporter);
 
 # version: Defines actual version of Pandora Server for this module only
 my $pandora_version = "7.0NG.762";
-my $pandora_build = "220526";
+my $pandora_build = "220527";
 our $VERSION = $pandora_version." ".$pandora_build;
 
 our %EXPORT_TAGS = ( 'all' => [ qw() ] );
diff --git a/pandora_server/pandora_server.redhat.spec b/pandora_server/pandora_server.redhat.spec
index 364a7592e2..86ab961ad9 100644
--- a/pandora_server/pandora_server.redhat.spec
+++ b/pandora_server/pandora_server.redhat.spec
@@ -3,7 +3,7 @@
 #
 %define name        pandorafms_server
 %define version     7.0NG.762
-%define release     220526
+%define release     220527
 
 Summary:            Pandora FMS Server
 Name:               %{name}
diff --git a/pandora_server/pandora_server.spec b/pandora_server/pandora_server.spec
index c5bfbb609e..1e931c15c5 100644
--- a/pandora_server/pandora_server.spec
+++ b/pandora_server/pandora_server.spec
@@ -3,7 +3,7 @@
 #
 %define name        pandorafms_server
 %define version     7.0NG.762
-%define release     220526
+%define release     220527
 
 Summary:            Pandora FMS Server
 Name:               %{name}
diff --git a/pandora_server/pandora_server_installer b/pandora_server/pandora_server_installer
index 6d1d3959cf..b9a1cfc98a 100755
--- a/pandora_server/pandora_server_installer
+++ b/pandora_server/pandora_server_installer
@@ -9,7 +9,7 @@
 # **********************************************************************
 
 PI_VERSION="7.0NG.762"
-PI_BUILD="220526"
+PI_BUILD="220527"
 
 MODE=$1
 if [ $# -gt 1 ]; then
diff --git a/pandora_server/util/pandora_db.pl b/pandora_server/util/pandora_db.pl
index f4ba648c54..b11f053d23 100755
--- a/pandora_server/util/pandora_db.pl
+++ b/pandora_server/util/pandora_db.pl
@@ -35,7 +35,7 @@ use PandoraFMS::Config;
 use PandoraFMS::DB;
 
 # version: define current version
-my $version = "7.0NG.762 Build 220526";
+my $version = "7.0NG.762 Build 220527";
 
 # Pandora server configuration
 my %conf;
diff --git a/pandora_server/util/pandora_manage.pl b/pandora_server/util/pandora_manage.pl
index 9716777b92..fb00d61a4f 100755
--- a/pandora_server/util/pandora_manage.pl
+++ b/pandora_server/util/pandora_manage.pl
@@ -36,7 +36,7 @@ use Encode::Locale;
 Encode::Locale::decode_argv;
 
 # version: define current version
-my $version = "7.0NG.762 Build 220526";
+my $version = "7.0NG.762 Build 220527";
 
 # save program name for logging
 my $progname = basename($0);

From 24ff171f7f1c101e4b0eef91c47a2381ea15b1ef Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Jos=C3=A9=20Gonz=C3=A1lez?= <jose.gonzalez@pandorafms.com>
Date: Fri, 27 May 2022 12:17:26 +0200
Subject: [PATCH 059/138] Change selector size

---
 pandora_console/operation/events/events.php | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/pandora_console/operation/events/events.php b/pandora_console/operation/events/events.php
index 5f3a733318..f7fd1ce5c6 100644
--- a/pandora_console/operation/events/events.php
+++ b/pandora_console/operation/events/events.php
@@ -1152,7 +1152,10 @@ $data = html_print_select(
     true,
     true,
     '',
-    false
+    false,
+    false,
+    false,
+    3
 );
 $in = '<div class="filter_input"><label>'.__('Severity').'</label>';
 $in .= $data.'</div>';

From 4fb4dcdd62d107cc4fa5dc3ba464381c7a9b24f1 Mon Sep 17 00:00:00 2001
From: artica <artica.devel@gmail.com>
Date: Sat, 28 May 2022 01:00:18 +0200
Subject: [PATCH 060/138] Auto-updated build strings.

---
 pandora_agents/unix/DEBIAN/control             | 2 +-
 pandora_agents/unix/DEBIAN/make_deb_package.sh | 2 +-
 pandora_agents/unix/pandora_agent              | 2 +-
 pandora_agents/unix/pandora_agent.redhat.spec  | 2 +-
 pandora_agents/unix/pandora_agent.spec         | 2 +-
 pandora_agents/unix/pandora_agent_installer    | 2 +-
 pandora_agents/win32/installer/pandora.mpi     | 2 +-
 pandora_agents/win32/pandora.cc                | 2 +-
 pandora_agents/win32/versioninfo.rc            | 2 +-
 pandora_console/DEBIAN/control                 | 2 +-
 pandora_console/DEBIAN/make_deb_package.sh     | 2 +-
 pandora_console/include/config_process.php     | 2 +-
 pandora_console/install.php                    | 2 +-
 pandora_console/pandora_console.redhat.spec    | 2 +-
 pandora_console/pandora_console.rhel7.spec     | 2 +-
 pandora_console/pandora_console.spec           | 2 +-
 pandora_server/DEBIAN/control                  | 2 +-
 pandora_server/DEBIAN/make_deb_package.sh      | 2 +-
 pandora_server/lib/PandoraFMS/Config.pm        | 2 +-
 pandora_server/lib/PandoraFMS/PluginTools.pm   | 2 +-
 pandora_server/pandora_server.redhat.spec      | 2 +-
 pandora_server/pandora_server.spec             | 2 +-
 pandora_server/pandora_server_installer        | 2 +-
 pandora_server/util/pandora_db.pl              | 2 +-
 pandora_server/util/pandora_manage.pl          | 2 +-
 25 files changed, 25 insertions(+), 25 deletions(-)

diff --git a/pandora_agents/unix/DEBIAN/control b/pandora_agents/unix/DEBIAN/control
index 29c46295be..0344a0ac05 100644
--- a/pandora_agents/unix/DEBIAN/control
+++ b/pandora_agents/unix/DEBIAN/control
@@ -1,5 +1,5 @@
 package: pandorafms-agent-unix
-Version: 7.0NG.762-220527
+Version: 7.0NG.762-220528
 Architecture: all
 Priority: optional
 Section: admin
diff --git a/pandora_agents/unix/DEBIAN/make_deb_package.sh b/pandora_agents/unix/DEBIAN/make_deb_package.sh
index 8da7363086..a07d35b93e 100644
--- a/pandora_agents/unix/DEBIAN/make_deb_package.sh
+++ b/pandora_agents/unix/DEBIAN/make_deb_package.sh
@@ -14,7 +14,7 @@
 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 # GNU General Public License for more details.
 
-pandora_version="7.0NG.762-220527"
+pandora_version="7.0NG.762-220528"
 
 echo "Test if you has the tools for to make the packages."
 whereis dpkg-deb | cut -d":" -f2 | grep dpkg-deb > /dev/null
diff --git a/pandora_agents/unix/pandora_agent b/pandora_agents/unix/pandora_agent
index 0c6c998e52..3641444fbb 100755
--- a/pandora_agents/unix/pandora_agent
+++ b/pandora_agents/unix/pandora_agent
@@ -1015,7 +1015,7 @@ my $Sem = undef;
 my $ThreadSem = undef;
 
 use constant AGENT_VERSION => '7.0NG.762';
-use constant AGENT_BUILD => '220527';
+use constant AGENT_BUILD => '220528';
 
 # Agent log default file size maximum and instances
 use constant DEFAULT_MAX_LOG_SIZE => 600000;
diff --git a/pandora_agents/unix/pandora_agent.redhat.spec b/pandora_agents/unix/pandora_agent.redhat.spec
index 37b5b76c47..2533c0c018 100644
--- a/pandora_agents/unix/pandora_agent.redhat.spec
+++ b/pandora_agents/unix/pandora_agent.redhat.spec
@@ -3,7 +3,7 @@
 #
 %define name        pandorafms_agent_unix
 %define version     7.0NG.762
-%define release     220527
+%define release     220528
 
 Summary:            Pandora FMS Linux agent, PERL version
 Name:               %{name}
diff --git a/pandora_agents/unix/pandora_agent.spec b/pandora_agents/unix/pandora_agent.spec
index fa5c991b56..49a07d12f8 100644
--- a/pandora_agents/unix/pandora_agent.spec
+++ b/pandora_agents/unix/pandora_agent.spec
@@ -3,7 +3,7 @@
 #
 %define name        pandorafms_agent_unix
 %define version     7.0NG.762
-%define release     220527
+%define release     220528
 
 Summary:            Pandora FMS Linux agent, PERL version
 Name:               %{name}
diff --git a/pandora_agents/unix/pandora_agent_installer b/pandora_agents/unix/pandora_agent_installer
index 359bb32ec7..76195bf40e 100755
--- a/pandora_agents/unix/pandora_agent_installer
+++ b/pandora_agents/unix/pandora_agent_installer
@@ -10,7 +10,7 @@
 # **********************************************************************
 
 PI_VERSION="7.0NG.762"
-PI_BUILD="220527"
+PI_BUILD="220528"
 OS_NAME=`uname -s`
 
 FORCE=0
diff --git a/pandora_agents/win32/installer/pandora.mpi b/pandora_agents/win32/installer/pandora.mpi
index c89522ad63..99009e479f 100644
--- a/pandora_agents/win32/installer/pandora.mpi
+++ b/pandora_agents/win32/installer/pandora.mpi
@@ -186,7 +186,7 @@ UpgradeApplicationID
 {}
 
 Version
-{220527}
+{220528}
 
 ViewReadme
 {Yes}
diff --git a/pandora_agents/win32/pandora.cc b/pandora_agents/win32/pandora.cc
index 14681afbe2..d4ae6938b8 100644
--- a/pandora_agents/win32/pandora.cc
+++ b/pandora_agents/win32/pandora.cc
@@ -30,7 +30,7 @@ using namespace Pandora;
 using namespace Pandora_Strutils;
 
 #define PATH_SIZE    _MAX_PATH+1
-#define PANDORA_VERSION ("7.0NG.762 Build 220527")
+#define PANDORA_VERSION ("7.0NG.762 Build 220528")
 
 string pandora_path;
 string pandora_dir;
diff --git a/pandora_agents/win32/versioninfo.rc b/pandora_agents/win32/versioninfo.rc
index 9204247173..b6e1169777 100644
--- a/pandora_agents/win32/versioninfo.rc
+++ b/pandora_agents/win32/versioninfo.rc
@@ -11,7 +11,7 @@ BEGIN
       VALUE "LegalCopyright", "Artica ST"
       VALUE "OriginalFilename", "PandoraAgent.exe"
       VALUE "ProductName", "Pandora FMS Windows Agent"
-      VALUE "ProductVersion", "(7.0NG.762(Build 220527))"
+      VALUE "ProductVersion", "(7.0NG.762(Build 220528))"
       VALUE "FileVersion", "1.0.0.0"
     END
   END
diff --git a/pandora_console/DEBIAN/control b/pandora_console/DEBIAN/control
index 11237d8c41..716b67c1da 100644
--- a/pandora_console/DEBIAN/control
+++ b/pandora_console/DEBIAN/control
@@ -1,5 +1,5 @@
 package: pandorafms-console
-Version: 7.0NG.762-220527
+Version: 7.0NG.762-220528
 Architecture: all
 Priority: optional
 Section: admin
diff --git a/pandora_console/DEBIAN/make_deb_package.sh b/pandora_console/DEBIAN/make_deb_package.sh
index e820cd7079..63adb608f8 100644
--- a/pandora_console/DEBIAN/make_deb_package.sh
+++ b/pandora_console/DEBIAN/make_deb_package.sh
@@ -14,7 +14,7 @@
 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 # GNU General Public License for more details.
 
-pandora_version="7.0NG.762-220527"
+pandora_version="7.0NG.762-220528"
 
 package_pear=0
 package_pandora=1
diff --git a/pandora_console/include/config_process.php b/pandora_console/include/config_process.php
index c55d5152fb..666806acfd 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 = 'PC220527';
+$build_version = 'PC220528';
 $pandora_version = 'v7.0NG.762';
 
 // Do not overwrite default timezone set if defined.
diff --git a/pandora_console/install.php b/pandora_console/install.php
index a2dc6f5e4a..2c131f4154 100644
--- a/pandora_console/install.php
+++ b/pandora_console/install.php
@@ -129,7 +129,7 @@
         <div style='height: 10px'>
             <?php
             $version = '7.0NG.762';
-            $build = '220527';
+            $build = '220528';
             $banner = "v$version Build $build";
 
             error_reporting(0);
diff --git a/pandora_console/pandora_console.redhat.spec b/pandora_console/pandora_console.redhat.spec
index 5ae6dbbde2..acb248ebd7 100644
--- a/pandora_console/pandora_console.redhat.spec
+++ b/pandora_console/pandora_console.redhat.spec
@@ -3,7 +3,7 @@
 #
 %define name        pandorafms_console
 %define version     7.0NG.762
-%define release     220527
+%define release     220528
 
 # User and Group under which Apache is running
 %define httpd_name  httpd
diff --git a/pandora_console/pandora_console.rhel7.spec b/pandora_console/pandora_console.rhel7.spec
index de6caf9f14..85fac00a8f 100644
--- a/pandora_console/pandora_console.rhel7.spec
+++ b/pandora_console/pandora_console.rhel7.spec
@@ -3,7 +3,7 @@
 #
 %define name        pandorafms_console
 %define version     7.0NG.762
-%define release     220527
+%define release     220528
 
 # User and Group under which Apache is running
 %define httpd_name  httpd
diff --git a/pandora_console/pandora_console.spec b/pandora_console/pandora_console.spec
index 38869c11a0..acb87250a4 100644
--- a/pandora_console/pandora_console.spec
+++ b/pandora_console/pandora_console.spec
@@ -3,7 +3,7 @@
 #
 %define name        pandorafms_console
 %define version     7.0NG.762
-%define release     220527
+%define release     220528
 %define httpd_name      httpd
 # User and Group under which Apache is running
 %define httpd_name  apache2
diff --git a/pandora_server/DEBIAN/control b/pandora_server/DEBIAN/control
index 60fb5428ff..7863ffbb89 100644
--- a/pandora_server/DEBIAN/control
+++ b/pandora_server/DEBIAN/control
@@ -1,5 +1,5 @@
 package: pandorafms-server
-Version: 7.0NG.762-220527
+Version: 7.0NG.762-220528
 Architecture: all
 Priority: optional
 Section: admin
diff --git a/pandora_server/DEBIAN/make_deb_package.sh b/pandora_server/DEBIAN/make_deb_package.sh
index 9488b4ae70..73ec96e17c 100644
--- a/pandora_server/DEBIAN/make_deb_package.sh
+++ b/pandora_server/DEBIAN/make_deb_package.sh
@@ -14,7 +14,7 @@
 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 # GNU General Public License for more details.
 
-pandora_version="7.0NG.762-220527"
+pandora_version="7.0NG.762-220528"
 
 package_cpan=0
 package_pandora=1
diff --git a/pandora_server/lib/PandoraFMS/Config.pm b/pandora_server/lib/PandoraFMS/Config.pm
index 7715a5679a..fff737ba87 100644
--- a/pandora_server/lib/PandoraFMS/Config.pm
+++ b/pandora_server/lib/PandoraFMS/Config.pm
@@ -46,7 +46,7 @@ our @EXPORT = qw(
 
 # version: Defines actual version of Pandora Server for this module only
 my $pandora_version = "7.0NG.762";
-my $pandora_build = "220527";
+my $pandora_build = "220528";
 our $VERSION = $pandora_version." ".$pandora_build;
 
 # Setup hash
diff --git a/pandora_server/lib/PandoraFMS/PluginTools.pm b/pandora_server/lib/PandoraFMS/PluginTools.pm
index 5dc7d3ca45..f605f4f735 100644
--- a/pandora_server/lib/PandoraFMS/PluginTools.pm
+++ b/pandora_server/lib/PandoraFMS/PluginTools.pm
@@ -34,7 +34,7 @@ our @ISA = qw(Exporter);
 
 # version: Defines actual version of Pandora Server for this module only
 my $pandora_version = "7.0NG.762";
-my $pandora_build = "220527";
+my $pandora_build = "220528";
 our $VERSION = $pandora_version." ".$pandora_build;
 
 our %EXPORT_TAGS = ( 'all' => [ qw() ] );
diff --git a/pandora_server/pandora_server.redhat.spec b/pandora_server/pandora_server.redhat.spec
index 86ab961ad9..a52650526e 100644
--- a/pandora_server/pandora_server.redhat.spec
+++ b/pandora_server/pandora_server.redhat.spec
@@ -3,7 +3,7 @@
 #
 %define name        pandorafms_server
 %define version     7.0NG.762
-%define release     220527
+%define release     220528
 
 Summary:            Pandora FMS Server
 Name:               %{name}
diff --git a/pandora_server/pandora_server.spec b/pandora_server/pandora_server.spec
index 1e931c15c5..a2693f788b 100644
--- a/pandora_server/pandora_server.spec
+++ b/pandora_server/pandora_server.spec
@@ -3,7 +3,7 @@
 #
 %define name        pandorafms_server
 %define version     7.0NG.762
-%define release     220527
+%define release     220528
 
 Summary:            Pandora FMS Server
 Name:               %{name}
diff --git a/pandora_server/pandora_server_installer b/pandora_server/pandora_server_installer
index b9a1cfc98a..5d6b2771f8 100755
--- a/pandora_server/pandora_server_installer
+++ b/pandora_server/pandora_server_installer
@@ -9,7 +9,7 @@
 # **********************************************************************
 
 PI_VERSION="7.0NG.762"
-PI_BUILD="220527"
+PI_BUILD="220528"
 
 MODE=$1
 if [ $# -gt 1 ]; then
diff --git a/pandora_server/util/pandora_db.pl b/pandora_server/util/pandora_db.pl
index b11f053d23..e81c67b697 100755
--- a/pandora_server/util/pandora_db.pl
+++ b/pandora_server/util/pandora_db.pl
@@ -35,7 +35,7 @@ use PandoraFMS::Config;
 use PandoraFMS::DB;
 
 # version: define current version
-my $version = "7.0NG.762 Build 220527";
+my $version = "7.0NG.762 Build 220528";
 
 # Pandora server configuration
 my %conf;
diff --git a/pandora_server/util/pandora_manage.pl b/pandora_server/util/pandora_manage.pl
index fb00d61a4f..754f9a380c 100755
--- a/pandora_server/util/pandora_manage.pl
+++ b/pandora_server/util/pandora_manage.pl
@@ -36,7 +36,7 @@ use Encode::Locale;
 Encode::Locale::decode_argv;
 
 # version: define current version
-my $version = "7.0NG.762 Build 220527";
+my $version = "7.0NG.762 Build 220528";
 
 # save program name for logging
 my $progname = basename($0);

From df7a6bf73a073beba75e857f06285c48334e41bf Mon Sep 17 00:00:00 2001
From: artica <artica.devel@gmail.com>
Date: Sun, 29 May 2022 01:00:18 +0200
Subject: [PATCH 061/138] Auto-updated build strings.

---
 pandora_agents/unix/DEBIAN/control             | 2 +-
 pandora_agents/unix/DEBIAN/make_deb_package.sh | 2 +-
 pandora_agents/unix/pandora_agent              | 2 +-
 pandora_agents/unix/pandora_agent.redhat.spec  | 2 +-
 pandora_agents/unix/pandora_agent.spec         | 2 +-
 pandora_agents/unix/pandora_agent_installer    | 2 +-
 pandora_agents/win32/installer/pandora.mpi     | 2 +-
 pandora_agents/win32/pandora.cc                | 2 +-
 pandora_agents/win32/versioninfo.rc            | 2 +-
 pandora_console/DEBIAN/control                 | 2 +-
 pandora_console/DEBIAN/make_deb_package.sh     | 2 +-
 pandora_console/include/config_process.php     | 2 +-
 pandora_console/install.php                    | 2 +-
 pandora_console/pandora_console.redhat.spec    | 2 +-
 pandora_console/pandora_console.rhel7.spec     | 2 +-
 pandora_console/pandora_console.spec           | 2 +-
 pandora_server/DEBIAN/control                  | 2 +-
 pandora_server/DEBIAN/make_deb_package.sh      | 2 +-
 pandora_server/lib/PandoraFMS/Config.pm        | 2 +-
 pandora_server/lib/PandoraFMS/PluginTools.pm   | 2 +-
 pandora_server/pandora_server.redhat.spec      | 2 +-
 pandora_server/pandora_server.spec             | 2 +-
 pandora_server/pandora_server_installer        | 2 +-
 pandora_server/util/pandora_db.pl              | 2 +-
 pandora_server/util/pandora_manage.pl          | 2 +-
 25 files changed, 25 insertions(+), 25 deletions(-)

diff --git a/pandora_agents/unix/DEBIAN/control b/pandora_agents/unix/DEBIAN/control
index 0344a0ac05..6a1653bf12 100644
--- a/pandora_agents/unix/DEBIAN/control
+++ b/pandora_agents/unix/DEBIAN/control
@@ -1,5 +1,5 @@
 package: pandorafms-agent-unix
-Version: 7.0NG.762-220528
+Version: 7.0NG.762-220529
 Architecture: all
 Priority: optional
 Section: admin
diff --git a/pandora_agents/unix/DEBIAN/make_deb_package.sh b/pandora_agents/unix/DEBIAN/make_deb_package.sh
index a07d35b93e..59a1e8aeb2 100644
--- a/pandora_agents/unix/DEBIAN/make_deb_package.sh
+++ b/pandora_agents/unix/DEBIAN/make_deb_package.sh
@@ -14,7 +14,7 @@
 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 # GNU General Public License for more details.
 
-pandora_version="7.0NG.762-220528"
+pandora_version="7.0NG.762-220529"
 
 echo "Test if you has the tools for to make the packages."
 whereis dpkg-deb | cut -d":" -f2 | grep dpkg-deb > /dev/null
diff --git a/pandora_agents/unix/pandora_agent b/pandora_agents/unix/pandora_agent
index 3641444fbb..a7a261c418 100755
--- a/pandora_agents/unix/pandora_agent
+++ b/pandora_agents/unix/pandora_agent
@@ -1015,7 +1015,7 @@ my $Sem = undef;
 my $ThreadSem = undef;
 
 use constant AGENT_VERSION => '7.0NG.762';
-use constant AGENT_BUILD => '220528';
+use constant AGENT_BUILD => '220529';
 
 # Agent log default file size maximum and instances
 use constant DEFAULT_MAX_LOG_SIZE => 600000;
diff --git a/pandora_agents/unix/pandora_agent.redhat.spec b/pandora_agents/unix/pandora_agent.redhat.spec
index 2533c0c018..d4b828d5df 100644
--- a/pandora_agents/unix/pandora_agent.redhat.spec
+++ b/pandora_agents/unix/pandora_agent.redhat.spec
@@ -3,7 +3,7 @@
 #
 %define name        pandorafms_agent_unix
 %define version     7.0NG.762
-%define release     220528
+%define release     220529
 
 Summary:            Pandora FMS Linux agent, PERL version
 Name:               %{name}
diff --git a/pandora_agents/unix/pandora_agent.spec b/pandora_agents/unix/pandora_agent.spec
index 49a07d12f8..86cae98620 100644
--- a/pandora_agents/unix/pandora_agent.spec
+++ b/pandora_agents/unix/pandora_agent.spec
@@ -3,7 +3,7 @@
 #
 %define name        pandorafms_agent_unix
 %define version     7.0NG.762
-%define release     220528
+%define release     220529
 
 Summary:            Pandora FMS Linux agent, PERL version
 Name:               %{name}
diff --git a/pandora_agents/unix/pandora_agent_installer b/pandora_agents/unix/pandora_agent_installer
index 76195bf40e..695603be72 100755
--- a/pandora_agents/unix/pandora_agent_installer
+++ b/pandora_agents/unix/pandora_agent_installer
@@ -10,7 +10,7 @@
 # **********************************************************************
 
 PI_VERSION="7.0NG.762"
-PI_BUILD="220528"
+PI_BUILD="220529"
 OS_NAME=`uname -s`
 
 FORCE=0
diff --git a/pandora_agents/win32/installer/pandora.mpi b/pandora_agents/win32/installer/pandora.mpi
index 99009e479f..f96b108c9d 100644
--- a/pandora_agents/win32/installer/pandora.mpi
+++ b/pandora_agents/win32/installer/pandora.mpi
@@ -186,7 +186,7 @@ UpgradeApplicationID
 {}
 
 Version
-{220528}
+{220529}
 
 ViewReadme
 {Yes}
diff --git a/pandora_agents/win32/pandora.cc b/pandora_agents/win32/pandora.cc
index d4ae6938b8..97e69f0a42 100644
--- a/pandora_agents/win32/pandora.cc
+++ b/pandora_agents/win32/pandora.cc
@@ -30,7 +30,7 @@ using namespace Pandora;
 using namespace Pandora_Strutils;
 
 #define PATH_SIZE    _MAX_PATH+1
-#define PANDORA_VERSION ("7.0NG.762 Build 220528")
+#define PANDORA_VERSION ("7.0NG.762 Build 220529")
 
 string pandora_path;
 string pandora_dir;
diff --git a/pandora_agents/win32/versioninfo.rc b/pandora_agents/win32/versioninfo.rc
index b6e1169777..236cf3e273 100644
--- a/pandora_agents/win32/versioninfo.rc
+++ b/pandora_agents/win32/versioninfo.rc
@@ -11,7 +11,7 @@ BEGIN
       VALUE "LegalCopyright", "Artica ST"
       VALUE "OriginalFilename", "PandoraAgent.exe"
       VALUE "ProductName", "Pandora FMS Windows Agent"
-      VALUE "ProductVersion", "(7.0NG.762(Build 220528))"
+      VALUE "ProductVersion", "(7.0NG.762(Build 220529))"
       VALUE "FileVersion", "1.0.0.0"
     END
   END
diff --git a/pandora_console/DEBIAN/control b/pandora_console/DEBIAN/control
index 716b67c1da..4d34407b53 100644
--- a/pandora_console/DEBIAN/control
+++ b/pandora_console/DEBIAN/control
@@ -1,5 +1,5 @@
 package: pandorafms-console
-Version: 7.0NG.762-220528
+Version: 7.0NG.762-220529
 Architecture: all
 Priority: optional
 Section: admin
diff --git a/pandora_console/DEBIAN/make_deb_package.sh b/pandora_console/DEBIAN/make_deb_package.sh
index 63adb608f8..308850adc4 100644
--- a/pandora_console/DEBIAN/make_deb_package.sh
+++ b/pandora_console/DEBIAN/make_deb_package.sh
@@ -14,7 +14,7 @@
 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 # GNU General Public License for more details.
 
-pandora_version="7.0NG.762-220528"
+pandora_version="7.0NG.762-220529"
 
 package_pear=0
 package_pandora=1
diff --git a/pandora_console/include/config_process.php b/pandora_console/include/config_process.php
index 666806acfd..fe13a86efd 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 = 'PC220528';
+$build_version = 'PC220529';
 $pandora_version = 'v7.0NG.762';
 
 // Do not overwrite default timezone set if defined.
diff --git a/pandora_console/install.php b/pandora_console/install.php
index 2c131f4154..287b67d8d7 100644
--- a/pandora_console/install.php
+++ b/pandora_console/install.php
@@ -129,7 +129,7 @@
         <div style='height: 10px'>
             <?php
             $version = '7.0NG.762';
-            $build = '220528';
+            $build = '220529';
             $banner = "v$version Build $build";
 
             error_reporting(0);
diff --git a/pandora_console/pandora_console.redhat.spec b/pandora_console/pandora_console.redhat.spec
index acb248ebd7..5a8931e188 100644
--- a/pandora_console/pandora_console.redhat.spec
+++ b/pandora_console/pandora_console.redhat.spec
@@ -3,7 +3,7 @@
 #
 %define name        pandorafms_console
 %define version     7.0NG.762
-%define release     220528
+%define release     220529
 
 # User and Group under which Apache is running
 %define httpd_name  httpd
diff --git a/pandora_console/pandora_console.rhel7.spec b/pandora_console/pandora_console.rhel7.spec
index 85fac00a8f..817c98fece 100644
--- a/pandora_console/pandora_console.rhel7.spec
+++ b/pandora_console/pandora_console.rhel7.spec
@@ -3,7 +3,7 @@
 #
 %define name        pandorafms_console
 %define version     7.0NG.762
-%define release     220528
+%define release     220529
 
 # User and Group under which Apache is running
 %define httpd_name  httpd
diff --git a/pandora_console/pandora_console.spec b/pandora_console/pandora_console.spec
index acb87250a4..1e1ef7532c 100644
--- a/pandora_console/pandora_console.spec
+++ b/pandora_console/pandora_console.spec
@@ -3,7 +3,7 @@
 #
 %define name        pandorafms_console
 %define version     7.0NG.762
-%define release     220528
+%define release     220529
 %define httpd_name      httpd
 # User and Group under which Apache is running
 %define httpd_name  apache2
diff --git a/pandora_server/DEBIAN/control b/pandora_server/DEBIAN/control
index 7863ffbb89..55e757043c 100644
--- a/pandora_server/DEBIAN/control
+++ b/pandora_server/DEBIAN/control
@@ -1,5 +1,5 @@
 package: pandorafms-server
-Version: 7.0NG.762-220528
+Version: 7.0NG.762-220529
 Architecture: all
 Priority: optional
 Section: admin
diff --git a/pandora_server/DEBIAN/make_deb_package.sh b/pandora_server/DEBIAN/make_deb_package.sh
index 73ec96e17c..f4ecd322a5 100644
--- a/pandora_server/DEBIAN/make_deb_package.sh
+++ b/pandora_server/DEBIAN/make_deb_package.sh
@@ -14,7 +14,7 @@
 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 # GNU General Public License for more details.
 
-pandora_version="7.0NG.762-220528"
+pandora_version="7.0NG.762-220529"
 
 package_cpan=0
 package_pandora=1
diff --git a/pandora_server/lib/PandoraFMS/Config.pm b/pandora_server/lib/PandoraFMS/Config.pm
index fff737ba87..847763008e 100644
--- a/pandora_server/lib/PandoraFMS/Config.pm
+++ b/pandora_server/lib/PandoraFMS/Config.pm
@@ -46,7 +46,7 @@ our @EXPORT = qw(
 
 # version: Defines actual version of Pandora Server for this module only
 my $pandora_version = "7.0NG.762";
-my $pandora_build = "220528";
+my $pandora_build = "220529";
 our $VERSION = $pandora_version." ".$pandora_build;
 
 # Setup hash
diff --git a/pandora_server/lib/PandoraFMS/PluginTools.pm b/pandora_server/lib/PandoraFMS/PluginTools.pm
index f605f4f735..328dad6584 100644
--- a/pandora_server/lib/PandoraFMS/PluginTools.pm
+++ b/pandora_server/lib/PandoraFMS/PluginTools.pm
@@ -34,7 +34,7 @@ our @ISA = qw(Exporter);
 
 # version: Defines actual version of Pandora Server for this module only
 my $pandora_version = "7.0NG.762";
-my $pandora_build = "220528";
+my $pandora_build = "220529";
 our $VERSION = $pandora_version." ".$pandora_build;
 
 our %EXPORT_TAGS = ( 'all' => [ qw() ] );
diff --git a/pandora_server/pandora_server.redhat.spec b/pandora_server/pandora_server.redhat.spec
index a52650526e..a0eb3fe156 100644
--- a/pandora_server/pandora_server.redhat.spec
+++ b/pandora_server/pandora_server.redhat.spec
@@ -3,7 +3,7 @@
 #
 %define name        pandorafms_server
 %define version     7.0NG.762
-%define release     220528
+%define release     220529
 
 Summary:            Pandora FMS Server
 Name:               %{name}
diff --git a/pandora_server/pandora_server.spec b/pandora_server/pandora_server.spec
index a2693f788b..6286f98604 100644
--- a/pandora_server/pandora_server.spec
+++ b/pandora_server/pandora_server.spec
@@ -3,7 +3,7 @@
 #
 %define name        pandorafms_server
 %define version     7.0NG.762
-%define release     220528
+%define release     220529
 
 Summary:            Pandora FMS Server
 Name:               %{name}
diff --git a/pandora_server/pandora_server_installer b/pandora_server/pandora_server_installer
index 5d6b2771f8..c7d1d8b97a 100755
--- a/pandora_server/pandora_server_installer
+++ b/pandora_server/pandora_server_installer
@@ -9,7 +9,7 @@
 # **********************************************************************
 
 PI_VERSION="7.0NG.762"
-PI_BUILD="220528"
+PI_BUILD="220529"
 
 MODE=$1
 if [ $# -gt 1 ]; then
diff --git a/pandora_server/util/pandora_db.pl b/pandora_server/util/pandora_db.pl
index e81c67b697..a102d945bb 100755
--- a/pandora_server/util/pandora_db.pl
+++ b/pandora_server/util/pandora_db.pl
@@ -35,7 +35,7 @@ use PandoraFMS::Config;
 use PandoraFMS::DB;
 
 # version: define current version
-my $version = "7.0NG.762 Build 220528";
+my $version = "7.0NG.762 Build 220529";
 
 # Pandora server configuration
 my %conf;
diff --git a/pandora_server/util/pandora_manage.pl b/pandora_server/util/pandora_manage.pl
index 754f9a380c..8886a522b2 100755
--- a/pandora_server/util/pandora_manage.pl
+++ b/pandora_server/util/pandora_manage.pl
@@ -36,7 +36,7 @@ use Encode::Locale;
 Encode::Locale::decode_argv;
 
 # version: define current version
-my $version = "7.0NG.762 Build 220528";
+my $version = "7.0NG.762 Build 220529";
 
 # save program name for logging
 my $progname = basename($0);

From 1e430f2f73d6873389605ce9c128b8f1176fa2c0 Mon Sep 17 00:00:00 2001
From: artica <artica.devel@gmail.com>
Date: Mon, 30 May 2022 01:00:15 +0200
Subject: [PATCH 062/138] Auto-updated build strings.

---
 pandora_agents/unix/DEBIAN/control             | 2 +-
 pandora_agents/unix/DEBIAN/make_deb_package.sh | 2 +-
 pandora_agents/unix/pandora_agent              | 2 +-
 pandora_agents/unix/pandora_agent.redhat.spec  | 2 +-
 pandora_agents/unix/pandora_agent.spec         | 2 +-
 pandora_agents/unix/pandora_agent_installer    | 2 +-
 pandora_agents/win32/installer/pandora.mpi     | 2 +-
 pandora_agents/win32/pandora.cc                | 2 +-
 pandora_agents/win32/versioninfo.rc            | 2 +-
 pandora_console/DEBIAN/control                 | 2 +-
 pandora_console/DEBIAN/make_deb_package.sh     | 2 +-
 pandora_console/include/config_process.php     | 2 +-
 pandora_console/install.php                    | 2 +-
 pandora_console/pandora_console.redhat.spec    | 2 +-
 pandora_console/pandora_console.rhel7.spec     | 2 +-
 pandora_console/pandora_console.spec           | 2 +-
 pandora_server/DEBIAN/control                  | 2 +-
 pandora_server/DEBIAN/make_deb_package.sh      | 2 +-
 pandora_server/lib/PandoraFMS/Config.pm        | 2 +-
 pandora_server/lib/PandoraFMS/PluginTools.pm   | 2 +-
 pandora_server/pandora_server.redhat.spec      | 2 +-
 pandora_server/pandora_server.spec             | 2 +-
 pandora_server/pandora_server_installer        | 2 +-
 pandora_server/util/pandora_db.pl              | 2 +-
 pandora_server/util/pandora_manage.pl          | 2 +-
 25 files changed, 25 insertions(+), 25 deletions(-)

diff --git a/pandora_agents/unix/DEBIAN/control b/pandora_agents/unix/DEBIAN/control
index 6a1653bf12..dccf6a198f 100644
--- a/pandora_agents/unix/DEBIAN/control
+++ b/pandora_agents/unix/DEBIAN/control
@@ -1,5 +1,5 @@
 package: pandorafms-agent-unix
-Version: 7.0NG.762-220529
+Version: 7.0NG.762-220530
 Architecture: all
 Priority: optional
 Section: admin
diff --git a/pandora_agents/unix/DEBIAN/make_deb_package.sh b/pandora_agents/unix/DEBIAN/make_deb_package.sh
index 59a1e8aeb2..b0398c3e13 100644
--- a/pandora_agents/unix/DEBIAN/make_deb_package.sh
+++ b/pandora_agents/unix/DEBIAN/make_deb_package.sh
@@ -14,7 +14,7 @@
 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 # GNU General Public License for more details.
 
-pandora_version="7.0NG.762-220529"
+pandora_version="7.0NG.762-220530"
 
 echo "Test if you has the tools for to make the packages."
 whereis dpkg-deb | cut -d":" -f2 | grep dpkg-deb > /dev/null
diff --git a/pandora_agents/unix/pandora_agent b/pandora_agents/unix/pandora_agent
index a7a261c418..232e56c67b 100755
--- a/pandora_agents/unix/pandora_agent
+++ b/pandora_agents/unix/pandora_agent
@@ -1015,7 +1015,7 @@ my $Sem = undef;
 my $ThreadSem = undef;
 
 use constant AGENT_VERSION => '7.0NG.762';
-use constant AGENT_BUILD => '220529';
+use constant AGENT_BUILD => '220530';
 
 # Agent log default file size maximum and instances
 use constant DEFAULT_MAX_LOG_SIZE => 600000;
diff --git a/pandora_agents/unix/pandora_agent.redhat.spec b/pandora_agents/unix/pandora_agent.redhat.spec
index d4b828d5df..524074942b 100644
--- a/pandora_agents/unix/pandora_agent.redhat.spec
+++ b/pandora_agents/unix/pandora_agent.redhat.spec
@@ -3,7 +3,7 @@
 #
 %define name        pandorafms_agent_unix
 %define version     7.0NG.762
-%define release     220529
+%define release     220530
 
 Summary:            Pandora FMS Linux agent, PERL version
 Name:               %{name}
diff --git a/pandora_agents/unix/pandora_agent.spec b/pandora_agents/unix/pandora_agent.spec
index 86cae98620..74ce128060 100644
--- a/pandora_agents/unix/pandora_agent.spec
+++ b/pandora_agents/unix/pandora_agent.spec
@@ -3,7 +3,7 @@
 #
 %define name        pandorafms_agent_unix
 %define version     7.0NG.762
-%define release     220529
+%define release     220530
 
 Summary:            Pandora FMS Linux agent, PERL version
 Name:               %{name}
diff --git a/pandora_agents/unix/pandora_agent_installer b/pandora_agents/unix/pandora_agent_installer
index 695603be72..36136fcff2 100755
--- a/pandora_agents/unix/pandora_agent_installer
+++ b/pandora_agents/unix/pandora_agent_installer
@@ -10,7 +10,7 @@
 # **********************************************************************
 
 PI_VERSION="7.0NG.762"
-PI_BUILD="220529"
+PI_BUILD="220530"
 OS_NAME=`uname -s`
 
 FORCE=0
diff --git a/pandora_agents/win32/installer/pandora.mpi b/pandora_agents/win32/installer/pandora.mpi
index f96b108c9d..23e908d300 100644
--- a/pandora_agents/win32/installer/pandora.mpi
+++ b/pandora_agents/win32/installer/pandora.mpi
@@ -186,7 +186,7 @@ UpgradeApplicationID
 {}
 
 Version
-{220529}
+{220530}
 
 ViewReadme
 {Yes}
diff --git a/pandora_agents/win32/pandora.cc b/pandora_agents/win32/pandora.cc
index 97e69f0a42..23d867a709 100644
--- a/pandora_agents/win32/pandora.cc
+++ b/pandora_agents/win32/pandora.cc
@@ -30,7 +30,7 @@ using namespace Pandora;
 using namespace Pandora_Strutils;
 
 #define PATH_SIZE    _MAX_PATH+1
-#define PANDORA_VERSION ("7.0NG.762 Build 220529")
+#define PANDORA_VERSION ("7.0NG.762 Build 220530")
 
 string pandora_path;
 string pandora_dir;
diff --git a/pandora_agents/win32/versioninfo.rc b/pandora_agents/win32/versioninfo.rc
index 236cf3e273..81c86a04e9 100644
--- a/pandora_agents/win32/versioninfo.rc
+++ b/pandora_agents/win32/versioninfo.rc
@@ -11,7 +11,7 @@ BEGIN
       VALUE "LegalCopyright", "Artica ST"
       VALUE "OriginalFilename", "PandoraAgent.exe"
       VALUE "ProductName", "Pandora FMS Windows Agent"
-      VALUE "ProductVersion", "(7.0NG.762(Build 220529))"
+      VALUE "ProductVersion", "(7.0NG.762(Build 220530))"
       VALUE "FileVersion", "1.0.0.0"
     END
   END
diff --git a/pandora_console/DEBIAN/control b/pandora_console/DEBIAN/control
index 4d34407b53..53319a936b 100644
--- a/pandora_console/DEBIAN/control
+++ b/pandora_console/DEBIAN/control
@@ -1,5 +1,5 @@
 package: pandorafms-console
-Version: 7.0NG.762-220529
+Version: 7.0NG.762-220530
 Architecture: all
 Priority: optional
 Section: admin
diff --git a/pandora_console/DEBIAN/make_deb_package.sh b/pandora_console/DEBIAN/make_deb_package.sh
index 308850adc4..21e61dbc7f 100644
--- a/pandora_console/DEBIAN/make_deb_package.sh
+++ b/pandora_console/DEBIAN/make_deb_package.sh
@@ -14,7 +14,7 @@
 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 # GNU General Public License for more details.
 
-pandora_version="7.0NG.762-220529"
+pandora_version="7.0NG.762-220530"
 
 package_pear=0
 package_pandora=1
diff --git a/pandora_console/include/config_process.php b/pandora_console/include/config_process.php
index fe13a86efd..e2c7ae8fbe 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 = 'PC220529';
+$build_version = 'PC220530';
 $pandora_version = 'v7.0NG.762';
 
 // Do not overwrite default timezone set if defined.
diff --git a/pandora_console/install.php b/pandora_console/install.php
index 287b67d8d7..667ca0eb09 100644
--- a/pandora_console/install.php
+++ b/pandora_console/install.php
@@ -129,7 +129,7 @@
         <div style='height: 10px'>
             <?php
             $version = '7.0NG.762';
-            $build = '220529';
+            $build = '220530';
             $banner = "v$version Build $build";
 
             error_reporting(0);
diff --git a/pandora_console/pandora_console.redhat.spec b/pandora_console/pandora_console.redhat.spec
index 5a8931e188..74e3da87e4 100644
--- a/pandora_console/pandora_console.redhat.spec
+++ b/pandora_console/pandora_console.redhat.spec
@@ -3,7 +3,7 @@
 #
 %define name        pandorafms_console
 %define version     7.0NG.762
-%define release     220529
+%define release     220530
 
 # User and Group under which Apache is running
 %define httpd_name  httpd
diff --git a/pandora_console/pandora_console.rhel7.spec b/pandora_console/pandora_console.rhel7.spec
index 817c98fece..2e2e5fe7a6 100644
--- a/pandora_console/pandora_console.rhel7.spec
+++ b/pandora_console/pandora_console.rhel7.spec
@@ -3,7 +3,7 @@
 #
 %define name        pandorafms_console
 %define version     7.0NG.762
-%define release     220529
+%define release     220530
 
 # User and Group under which Apache is running
 %define httpd_name  httpd
diff --git a/pandora_console/pandora_console.spec b/pandora_console/pandora_console.spec
index 1e1ef7532c..f50098da09 100644
--- a/pandora_console/pandora_console.spec
+++ b/pandora_console/pandora_console.spec
@@ -3,7 +3,7 @@
 #
 %define name        pandorafms_console
 %define version     7.0NG.762
-%define release     220529
+%define release     220530
 %define httpd_name      httpd
 # User and Group under which Apache is running
 %define httpd_name  apache2
diff --git a/pandora_server/DEBIAN/control b/pandora_server/DEBIAN/control
index 55e757043c..2edf741d9c 100644
--- a/pandora_server/DEBIAN/control
+++ b/pandora_server/DEBIAN/control
@@ -1,5 +1,5 @@
 package: pandorafms-server
-Version: 7.0NG.762-220529
+Version: 7.0NG.762-220530
 Architecture: all
 Priority: optional
 Section: admin
diff --git a/pandora_server/DEBIAN/make_deb_package.sh b/pandora_server/DEBIAN/make_deb_package.sh
index f4ecd322a5..0d3cd25df3 100644
--- a/pandora_server/DEBIAN/make_deb_package.sh
+++ b/pandora_server/DEBIAN/make_deb_package.sh
@@ -14,7 +14,7 @@
 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 # GNU General Public License for more details.
 
-pandora_version="7.0NG.762-220529"
+pandora_version="7.0NG.762-220530"
 
 package_cpan=0
 package_pandora=1
diff --git a/pandora_server/lib/PandoraFMS/Config.pm b/pandora_server/lib/PandoraFMS/Config.pm
index 847763008e..6004341f90 100644
--- a/pandora_server/lib/PandoraFMS/Config.pm
+++ b/pandora_server/lib/PandoraFMS/Config.pm
@@ -46,7 +46,7 @@ our @EXPORT = qw(
 
 # version: Defines actual version of Pandora Server for this module only
 my $pandora_version = "7.0NG.762";
-my $pandora_build = "220529";
+my $pandora_build = "220530";
 our $VERSION = $pandora_version." ".$pandora_build;
 
 # Setup hash
diff --git a/pandora_server/lib/PandoraFMS/PluginTools.pm b/pandora_server/lib/PandoraFMS/PluginTools.pm
index 328dad6584..781455e5ea 100644
--- a/pandora_server/lib/PandoraFMS/PluginTools.pm
+++ b/pandora_server/lib/PandoraFMS/PluginTools.pm
@@ -34,7 +34,7 @@ our @ISA = qw(Exporter);
 
 # version: Defines actual version of Pandora Server for this module only
 my $pandora_version = "7.0NG.762";
-my $pandora_build = "220529";
+my $pandora_build = "220530";
 our $VERSION = $pandora_version." ".$pandora_build;
 
 our %EXPORT_TAGS = ( 'all' => [ qw() ] );
diff --git a/pandora_server/pandora_server.redhat.spec b/pandora_server/pandora_server.redhat.spec
index a0eb3fe156..d71ded99b1 100644
--- a/pandora_server/pandora_server.redhat.spec
+++ b/pandora_server/pandora_server.redhat.spec
@@ -3,7 +3,7 @@
 #
 %define name        pandorafms_server
 %define version     7.0NG.762
-%define release     220529
+%define release     220530
 
 Summary:            Pandora FMS Server
 Name:               %{name}
diff --git a/pandora_server/pandora_server.spec b/pandora_server/pandora_server.spec
index 6286f98604..58a7152a7c 100644
--- a/pandora_server/pandora_server.spec
+++ b/pandora_server/pandora_server.spec
@@ -3,7 +3,7 @@
 #
 %define name        pandorafms_server
 %define version     7.0NG.762
-%define release     220529
+%define release     220530
 
 Summary:            Pandora FMS Server
 Name:               %{name}
diff --git a/pandora_server/pandora_server_installer b/pandora_server/pandora_server_installer
index c7d1d8b97a..104148e4b1 100755
--- a/pandora_server/pandora_server_installer
+++ b/pandora_server/pandora_server_installer
@@ -9,7 +9,7 @@
 # **********************************************************************
 
 PI_VERSION="7.0NG.762"
-PI_BUILD="220529"
+PI_BUILD="220530"
 
 MODE=$1
 if [ $# -gt 1 ]; then
diff --git a/pandora_server/util/pandora_db.pl b/pandora_server/util/pandora_db.pl
index a102d945bb..bde5306dad 100755
--- a/pandora_server/util/pandora_db.pl
+++ b/pandora_server/util/pandora_db.pl
@@ -35,7 +35,7 @@ use PandoraFMS::Config;
 use PandoraFMS::DB;
 
 # version: define current version
-my $version = "7.0NG.762 Build 220529";
+my $version = "7.0NG.762 Build 220530";
 
 # Pandora server configuration
 my %conf;
diff --git a/pandora_server/util/pandora_manage.pl b/pandora_server/util/pandora_manage.pl
index 8886a522b2..e501717ba6 100755
--- a/pandora_server/util/pandora_manage.pl
+++ b/pandora_server/util/pandora_manage.pl
@@ -36,7 +36,7 @@ use Encode::Locale;
 Encode::Locale::decode_argv;
 
 # version: define current version
-my $version = "7.0NG.762 Build 220529";
+my $version = "7.0NG.762 Build 220530";
 
 # save program name for logging
 my $progname = basename($0);

From 79e7753cc8a20848de37502f7bcfcc9ed27b686e Mon Sep 17 00:00:00 2001
From: Daniel Maya <daniel.maya@pandorafms.com>
Date: Mon, 30 May 2022 11:29:17 +0200
Subject: [PATCH 063/138] #9021 Added offspring check

---
 .../godmode/agentes/agent_manager.php         |  6 +-
 pandora_console/include/ajax/agent.php        | 76 +++++--------------
 pandora_console/include/functions_agents.php  | 27 +++++++
 pandora_console/include/functions_api.php     | 26 +++++--
 pandora_console/include/functions_ui.php      |  4 +
 5 files changed, 78 insertions(+), 61 deletions(-)

diff --git a/pandora_console/godmode/agentes/agent_manager.php b/pandora_console/godmode/agentes/agent_manager.php
index d1246b298c..a9282fa1af 100644
--- a/pandora_console/godmode/agentes/agent_manager.php
+++ b/pandora_console/godmode/agentes/agent_manager.php
@@ -523,7 +523,6 @@ if (enterprise_installed()) {
     $table_adv_cascade .= $cps_html;
 }
 
-
 $table_adv_parent = '<div class="label_select"><label class="input_label">'.__('Parent').'</label>';
 $params = [];
 $params['return'] = true;
@@ -536,6 +535,11 @@ $params['value'] = db_get_value('alias', 'tagente', 'id_agente', $id_parent);
 $params['selectbox_id'] = 'cascade_protection_module';
 $params['javascript_is_function_select'] = true;
 $params['cascade_protection'] = true;
+if ($id_agente !== 0) {
+    // Deletes the agent's offspring.
+    $params['delete_offspring_agents'] = $id_agente;
+}
+
 $table_adv_parent .= '<div class="label_simple_items">';
 $table_adv_parent .= ui_print_agent_autocomplete_input($params);
 if (enterprise_installed()) {
diff --git a/pandora_console/include/ajax/agent.php b/pandora_console/include/ajax/agent.php
index 44c0402ca4..48abefdc7e 100644
--- a/pandora_console/include/ajax/agent.php
+++ b/pandora_console/include/ajax/agent.php
@@ -86,6 +86,8 @@ if ($search_agents && (!is_metaconsole() || $force_local)) {
     $addedItems = json_decode($addedItems);
     $all = (string) get_parameter('all', 'all');
 
+    $delete_offspring_agents = (int) get_parameter('delete_offspring_agents', 0);
+
     if ($addedItems != null) {
         foreach ($addedItems as $item) {
             echo $item."|\n";
@@ -111,21 +113,9 @@ if ($search_agents && (!is_metaconsole() || $force_local)) {
     }
 
     $data = [];
-    // Get agents for only the alias
+    // Get agents for only the alias.
     $filter_alias = $filter;
-    switch ($config['dbtype']) {
-        case 'mysql':
-            $filter_alias[] = '(UPPER(alias) LIKE "%'.$string.'%")';
-        break;
-
-        case 'postgresql':
-            $filter_alias[] = '(UPPER(alias) LIKE \'%'.$string.'%\')';
-        break;
-
-        case 'oracle':
-            $filter_alias[] = '(UPPER(alias) LIKE UPPER(\'%'.$string.'%\'))';
-        break;
-    }
+    $filter_alias[] = '(UPPER(alias) LIKE "%'.$string.'%")';
 
     $agents = agents_get_agents($filter_alias, ['id_agente', 'nombre', 'direccion', 'alias']);
     if ($agents !== false) {
@@ -142,19 +132,7 @@ if ($search_agents && (!is_metaconsole() || $force_local)) {
 
     // Get agents for only the name.
     $filter_agents = $filter;
-    switch ($config['dbtype']) {
-        case 'mysql':
-            $filter_agents[] = '(UPPER(alias) NOT LIKE "%'.$string.'%" AND UPPER(nombre) LIKE "%'.$string.'%")';
-        break;
-
-        case 'postgresql':
-            $filter_agents[] = '(UPPER(alias) NOT LIKE \'%'.$string.'%\' AND UPPER(nombre) LIKE \'%'.$string.'%\')';
-        break;
-
-        case 'oracle':
-            $filter_agents[] = '(UPPER(alias) NOT LIKE UPPER(\'%'.$string.'%\') AND UPPER(nombre) LIKE UPPER(\'%'.$string.'%\'))';
-        break;
-    }
+    $filter_agents[] = '(UPPER(alias) NOT LIKE "%'.$string.'%" AND UPPER(nombre) LIKE "%'.$string.'%")';
 
     $agents = agents_get_agents($filter_agents, ['id_agente', 'nombre', 'direccion', 'alias']);
     if ($agents !== false) {
@@ -169,21 +147,9 @@ if ($search_agents && (!is_metaconsole() || $force_local)) {
         }
     }
 
-    // Get agents for only the address
+    // Get agents for only the address.
     $filter_address = $filter;
-    switch ($config['dbtype']) {
-        case 'mysql':
-            $filter_address[] = '(UPPER(alias) NOT LIKE "%'.$string.'%" AND UPPER(nombre) NOT LIKE "%'.$string.'%" AND UPPER(direccion) LIKE "%'.$string.'%")';
-        break;
-
-        case 'postgresql':
-            $filter_address[] = '(UPPER(alias) NOT LIKE \'%'.$string.'%\' AND UPPER(nombre) NOT LIKE \'%'.$string.'%\' AND UPPER(direccion) LIKE \'%'.$string.'%\')';
-        break;
-
-        case 'oracle':
-            $filter_address[] = '(UPPER(alias) NOT LIKE UPPER(\'%'.$string.'%\') AND UPPER(nombre) NOT LIKE UPPER(\'%'.$string.'%\') AND UPPER(direccion) LIKE UPPER(\'%'.$string.'%\'))';
-        break;
-    }
+    $filter_address[] = '(UPPER(alias) NOT LIKE "%'.$string.'%" AND UPPER(nombre) NOT LIKE "%'.$string.'%" AND UPPER(direccion) LIKE "%'.$string.'%")';
 
     $agents = agents_get_agents($filter_address, ['id_agente', 'nombre', 'direccion', 'alias']);
     if ($agents !== false) {
@@ -198,21 +164,9 @@ if ($search_agents && (!is_metaconsole() || $force_local)) {
         }
     }
 
-    // Get agents for only the description
+    // Get agents for only the description.
     $filter_description = $filter;
-    switch ($config['dbtype']) {
-        case 'mysql':
-            $filter_description[] = '(UPPER(alias) NOT LIKE "%'.$string.'%" AND UPPER(nombre) NOT LIKE "%'.$string.'%" AND UPPER(direccion) NOT LIKE "%'.$string.'%" AND UPPER(comentarios) LIKE "%'.$string.'%")';
-        break;
-
-        case 'postgresql':
-            $filter_description[] = '(UPPER(alias) NOT LIKE \'%'.$string.'%\' AND UPPER(nombre) NOT LIKE \'%'.$string.'%\' AND UPPER(direccion) NOT LIKE \'%'.$string.'%\' AND UPPER(comentarios) LIKE \'%'.$string.'%\')';
-        break;
-
-        case 'oracle':
-            $filter_description[] = '(UPPER(alias) NOT LIKE UPPER(\'%'.$string.'%\') AND UPPER(nombre) NOT LIKE UPPER(\'%'.$string.'%\') AND UPPER(direccion) NOT LIKE UPPER(\'%'.$string.'%\') AND UPPER(comentarios) LIKE UPPER(\'%'.$string.'%\'))';
-        break;
-    }
+    $filter_description[] = '(UPPER(alias) NOT LIKE "%'.$string.'%" AND UPPER(nombre) NOT LIKE "%'.$string.'%" AND UPPER(direccion) NOT LIKE "%'.$string.'%" AND UPPER(comentarios) LIKE "%'.$string.'%")';
 
     $agents = agents_get_agents($filter_description, ['id_agente', 'nombre', 'direccion', 'alias']);
     if ($agents !== false) {
@@ -227,6 +181,18 @@ if ($search_agents && (!is_metaconsole() || $force_local)) {
         }
     }
 
+    if (empty($data) === false && $delete_offspring_agents !== 0) {
+        // Gets offspring and deletes them, including himself.
+        $agents_offspring = agents_get_offspring($delete_offspring_agents);
+        if (empty($agents_offspring) === false) {
+            foreach ($data as $key => $value) {
+                if (isset($agents_offspring[$value['id']]) === true) {
+                    unset($data[$key]);
+                }
+            }
+        }
+    }
+
     echo json_encode($data);
     return;
 } else if ($search_agents && is_metaconsole()) {
diff --git a/pandora_console/include/functions_agents.php b/pandora_console/include/functions_agents.php
index 73ef6e5e36..d8da8f39fa 100644
--- a/pandora_console/include/functions_agents.php
+++ b/pandora_console/include/functions_agents.php
@@ -4268,3 +4268,30 @@ function get_status_data_agent_modules($id_group, $agents=[], $modules=[])
 
     return $res;
 }
+
+
+function agents_get_offspring(int $id_agent)
+{
+    $return = [];
+    // Get parent.
+    $agents = db_get_all_rows_filter(
+        'tagente',
+        [
+            'id_parent' => $id_agent,
+            'disabled'  => 0,
+        ],
+        'id_agente'
+    );
+
+    if ($agents !== false) {
+        foreach ($agents as $agent) {
+            if ((int) $agent['id_agente'] !== 0) {
+                $return += agents_get_offspring((int) $agent['id_agente']);
+            }
+        }
+    }
+
+    $return += [$id_agent => 0];
+
+    return $return;
+}
diff --git a/pandora_console/include/functions_api.php b/pandora_console/include/functions_api.php
index 71128946c5..c37ff0517e 100644
--- a/pandora_console/include/functions_api.php
+++ b/pandora_console/include/functions_api.php
@@ -1469,22 +1469,22 @@ function api_set_update_agent($id_agent, $thrash2, $other, $thrash3)
     // Check parameters.
     if ($idGroup == 0) {
         $agent_update_error = __('The agent could not be modified. For security reasons, use a group other than 0.');
-        returnError('generic error', $agent_update_error);
+        returnError($agent_update_error);
         return;
     }
 
     $server_name = db_get_value_sql('SELECT name FROM tserver WHERE BINARY name LIKE "'.$nameServer.'"');
     if ($alias == '' && $alias_as_name === 0) {
-        returnError('alias_not_specified', 'No agent alias specified');
+        returnError('No agent alias specified');
         return;
     } else if (db_get_value_sql('SELECT id_grupo FROM tgrupo WHERE id_grupo = '.$idGroup) === false) {
-        returnError('id_grupo_not_exist', 'The group doesn`t exist.');
+        returnError('The group doesn`t exist.');
         return;
     } else if (db_get_value_sql('SELECT id_os FROM tconfig_os WHERE id_os = '.$idOS) === false) {
-        returnError('id_os_not_exist', 'The OS doesn`t exist.');
+        returnError('The OS doesn`t exist.');
         return;
     } else if ($server_name === false) {
-        returnError('server_not_exist', 'The '.get_product_name().' Server doesn`t exist.');
+        returnError('The '.get_product_name().' Server doesn`t exist.');
         return;
     }
 
@@ -1525,6 +1525,14 @@ function api_set_update_agent($id_agent, $thrash2, $other, $thrash3)
             returnError('The user cannot access to parent agent.');
             return;
         }
+
+        $agents_offspring = agents_get_offspring($id_agent);
+        if (empty($agents_offspring) === false) {
+            if (isset($agents_offspring[$idParent]) === true) {
+                returnError('The parent cannot be a offspring');
+                return;
+            }
+        }
     }
 
     $values_old = db_get_row_filter(
@@ -1751,6 +1759,14 @@ function api_set_update_agent_field($id_agent, $use_agent_alias, $params)
                     returnError('The user cannot access to parent agent.');
                     return;
                 }
+
+                $agents_offspring = agents_get_offspring($id_agent);
+                if (empty($agents_offspring) === false) {
+                    if (isset($agents_offspring[$data]) === true) {
+                        returnError('The parent cannot be a offspring');
+                        return;
+                    }
+                }
             break;
 
             default:
diff --git a/pandora_console/include/functions_ui.php b/pandora_console/include/functions_ui.php
index 19f1197493..b883b1f597 100755
--- a/pandora_console/include/functions_ui.php
+++ b/pandora_console/include/functions_ui.php
@@ -5448,6 +5448,10 @@ function ui_print_agent_autocomplete_input($parameters)
         'q'             => 'term',
     ];
 
+    if (isset($parameters['delete_offspring_agents']) === true) {
+        $javascript_change_ajax_params_original['delete_offspring_agents'] = $parameters['delete_offspring_agents'];
+    }
+
     if (!$metaconsole_enabled) {
         $javascript_change_ajax_params_original['force_local'] = 1;
     }

From a251cb84398777b3817c8d6a5caf48eb84cde485 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Jos=C3=A9=20Gonz=C3=A1lez?= <jose.gonzalez@pandorafms.com>
Date: Mon, 30 May 2022 15:00:22 +0200
Subject: [PATCH 064/138] Fix issue with bulk operations over modules with not
 allowed groups

---
 .../godmode/massive/massive_edit_modules.php  | 52 ++++++++++---------
 1 file changed, 27 insertions(+), 25 deletions(-)

diff --git a/pandora_console/godmode/massive/massive_edit_modules.php b/pandora_console/godmode/massive/massive_edit_modules.php
index 73164c4c2f..089dfcb356 100755
--- a/pandora_console/godmode/massive/massive_edit_modules.php
+++ b/pandora_console/godmode/massive/massive_edit_modules.php
@@ -14,7 +14,7 @@
  * |___|   |___._|__|__|_____||_____|__| |___._| |___|   |__|_|__|_______|
  *
  * ============================================================================
- * Copyright (c) 2005-2021 Artica Soluciones Tecnologicas
+ * Copyright (c) 2005-2022 Artica Soluciones Tecnologicas
  * Please see http://pandorafms.org for full contribution list
  * This program is free software; you can redistribute it and/or
  * modify it under the terms of the GNU General Public License
@@ -89,9 +89,9 @@ if ($update) {
         $agents_ = [];
     }
 
-    // If the option to select all of one group or module type is checked
+    // If the option to select all of one group or module type is checked.
     if ($force) {
-        if ($force == 'type') {
+        if ($force === 'type') {
             $type_condition = '';
             if ($module_type != 0) {
                 $type_condition = "AND tam.id_tipo_modulo = $module_type";
@@ -109,7 +109,7 @@ if ($update) {
                 $agents_ = [];
             }
 
-            // Create an array of agent ids
+            // Create an array of agent ids.
             $agents_ = extract_column($agents_, 'id_agente');
 
             foreach ($agents_ as $id_agent) {
@@ -136,7 +136,7 @@ if ($update) {
             if ($success == 0) {
                 $error_msg = __('Error updating the modules from a module type');
             }
-        } else if ($force == 'group') {
+        } else if ($force === 'group') {
             $agents_ = array_keys(agents_get_group_agents($group_select, false, 'none'));
 
             foreach ($agents_ as $id_agent) {
@@ -2222,32 +2222,34 @@ function process_manage_edit($module_name, $agents_select=null, $module_status='
         $values['history_data'] = get_parameter('history_data');
     }
 
-    if (get_parameter('quiet_select', -1) != -1) {
+    if (get_parameter('quiet_select', -1) !== -1) {
         $values['quiet'] = get_parameter('quiet_select');
     }
 
-    $filter_modules = false;
-
-    if (!is_numeric($module_name) or ($module_name != 0)) {
-        $filter_modules['nombre'] = $module_name;
-    }
-
-    // Whether to update module tag info
+    // Whether to update module tag info.
     $update_tags = get_parameter('id_tag', false);
 
     if (array_search(0, $agents_select) !== false) {
-        // Apply at All agents.
-        $modules = db_get_all_rows_filter(
-            'tagente_modulo',
-            $filter_modules,
-            [
-                'id_agente_modulo',
-                'id_tipo_modulo',
-            ]
+        if (is_numeric($module_name) === false || ($module_name !== 0)) {
+            $filterModules = sprintf('AND tam.nombre = \'%s\'', $module_name);
+        } else {
+            $filterModules = '';
+        }
+
+        // Apply at All agents (within valid groups).
+        $modules = db_get_all_rows_sql(
+            sprintf(
+                'SELECT tam.id_agente_modulo, tam.id_tipo_modulo
+                FROM tagente_modulo tam INNER JOIN tagente ta
+                ON ta.id_agente = tam.id_agente
+                WHERE ta.id_grupo IN (%s) %s;',
+                implode(',', array_keys(users_get_groups())),
+                $filterModules
+            )
         );
     } else {
-        if ($module_name == '0') {
-            // Any module
+        if ($module_name === '0') {
+            // Any module.
             $modules = db_get_all_rows_filter(
                 'tagente_modulo',
                 ['id_agente' => $agents_select],
@@ -2275,12 +2277,12 @@ function process_manage_edit($module_name, $agents_select=null, $module_status='
         return false;
     }
 
-    if (($module_status == 'unknown') && ($module_name == '0')) {
+    if (($module_status === 'unknown') && ($module_name == '0')) {
         $modules_to_delete = [];
         foreach ($modules as $mod_id) {
             $mod_status = (int) db_get_value_filter('estado', 'tagente_estado', ['id_agente_modulo' => $mod_id]);
 
-            // Unknown, not init and no data modules
+            // Unknown, not init and no data modules.
             if ($mod_status == 3 || $mod_status == 4 || $mod_status == 5) {
                 $modules_to_delete[$mod_id] = $mod_id;
             }

From a2e036d279df33765c911b7103e0c80314c5b220 Mon Sep 17 00:00:00 2001
From: artica <artica.devel@gmail.com>
Date: Tue, 31 May 2022 01:00:19 +0200
Subject: [PATCH 065/138] Auto-updated build strings.

---
 pandora_agents/unix/DEBIAN/control             | 2 +-
 pandora_agents/unix/DEBIAN/make_deb_package.sh | 2 +-
 pandora_agents/unix/pandora_agent              | 2 +-
 pandora_agents/unix/pandora_agent.redhat.spec  | 2 +-
 pandora_agents/unix/pandora_agent.spec         | 2 +-
 pandora_agents/unix/pandora_agent_installer    | 2 +-
 pandora_agents/win32/installer/pandora.mpi     | 2 +-
 pandora_agents/win32/pandora.cc                | 2 +-
 pandora_agents/win32/versioninfo.rc            | 2 +-
 pandora_console/DEBIAN/control                 | 2 +-
 pandora_console/DEBIAN/make_deb_package.sh     | 2 +-
 pandora_console/include/config_process.php     | 2 +-
 pandora_console/install.php                    | 2 +-
 pandora_console/pandora_console.redhat.spec    | 2 +-
 pandora_console/pandora_console.rhel7.spec     | 2 +-
 pandora_console/pandora_console.spec           | 2 +-
 pandora_server/DEBIAN/control                  | 2 +-
 pandora_server/DEBIAN/make_deb_package.sh      | 2 +-
 pandora_server/lib/PandoraFMS/Config.pm        | 2 +-
 pandora_server/lib/PandoraFMS/PluginTools.pm   | 2 +-
 pandora_server/pandora_server.redhat.spec      | 2 +-
 pandora_server/pandora_server.spec             | 2 +-
 pandora_server/pandora_server_installer        | 2 +-
 pandora_server/util/pandora_db.pl              | 2 +-
 pandora_server/util/pandora_manage.pl          | 2 +-
 25 files changed, 25 insertions(+), 25 deletions(-)

diff --git a/pandora_agents/unix/DEBIAN/control b/pandora_agents/unix/DEBIAN/control
index dccf6a198f..c0e56d0bc1 100644
--- a/pandora_agents/unix/DEBIAN/control
+++ b/pandora_agents/unix/DEBIAN/control
@@ -1,5 +1,5 @@
 package: pandorafms-agent-unix
-Version: 7.0NG.762-220530
+Version: 7.0NG.762-220531
 Architecture: all
 Priority: optional
 Section: admin
diff --git a/pandora_agents/unix/DEBIAN/make_deb_package.sh b/pandora_agents/unix/DEBIAN/make_deb_package.sh
index b0398c3e13..6ef2633c4a 100644
--- a/pandora_agents/unix/DEBIAN/make_deb_package.sh
+++ b/pandora_agents/unix/DEBIAN/make_deb_package.sh
@@ -14,7 +14,7 @@
 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 # GNU General Public License for more details.
 
-pandora_version="7.0NG.762-220530"
+pandora_version="7.0NG.762-220531"
 
 echo "Test if you has the tools for to make the packages."
 whereis dpkg-deb | cut -d":" -f2 | grep dpkg-deb > /dev/null
diff --git a/pandora_agents/unix/pandora_agent b/pandora_agents/unix/pandora_agent
index 232e56c67b..bcd40d427e 100755
--- a/pandora_agents/unix/pandora_agent
+++ b/pandora_agents/unix/pandora_agent
@@ -1015,7 +1015,7 @@ my $Sem = undef;
 my $ThreadSem = undef;
 
 use constant AGENT_VERSION => '7.0NG.762';
-use constant AGENT_BUILD => '220530';
+use constant AGENT_BUILD => '220531';
 
 # Agent log default file size maximum and instances
 use constant DEFAULT_MAX_LOG_SIZE => 600000;
diff --git a/pandora_agents/unix/pandora_agent.redhat.spec b/pandora_agents/unix/pandora_agent.redhat.spec
index 524074942b..826af83c44 100644
--- a/pandora_agents/unix/pandora_agent.redhat.spec
+++ b/pandora_agents/unix/pandora_agent.redhat.spec
@@ -3,7 +3,7 @@
 #
 %define name        pandorafms_agent_unix
 %define version     7.0NG.762
-%define release     220530
+%define release     220531
 
 Summary:            Pandora FMS Linux agent, PERL version
 Name:               %{name}
diff --git a/pandora_agents/unix/pandora_agent.spec b/pandora_agents/unix/pandora_agent.spec
index 74ce128060..49fef0d68d 100644
--- a/pandora_agents/unix/pandora_agent.spec
+++ b/pandora_agents/unix/pandora_agent.spec
@@ -3,7 +3,7 @@
 #
 %define name        pandorafms_agent_unix
 %define version     7.0NG.762
-%define release     220530
+%define release     220531
 
 Summary:            Pandora FMS Linux agent, PERL version
 Name:               %{name}
diff --git a/pandora_agents/unix/pandora_agent_installer b/pandora_agents/unix/pandora_agent_installer
index 36136fcff2..de5a820e09 100755
--- a/pandora_agents/unix/pandora_agent_installer
+++ b/pandora_agents/unix/pandora_agent_installer
@@ -10,7 +10,7 @@
 # **********************************************************************
 
 PI_VERSION="7.0NG.762"
-PI_BUILD="220530"
+PI_BUILD="220531"
 OS_NAME=`uname -s`
 
 FORCE=0
diff --git a/pandora_agents/win32/installer/pandora.mpi b/pandora_agents/win32/installer/pandora.mpi
index 23e908d300..4653004530 100644
--- a/pandora_agents/win32/installer/pandora.mpi
+++ b/pandora_agents/win32/installer/pandora.mpi
@@ -186,7 +186,7 @@ UpgradeApplicationID
 {}
 
 Version
-{220530}
+{220531}
 
 ViewReadme
 {Yes}
diff --git a/pandora_agents/win32/pandora.cc b/pandora_agents/win32/pandora.cc
index 23d867a709..4a88d5fe4d 100644
--- a/pandora_agents/win32/pandora.cc
+++ b/pandora_agents/win32/pandora.cc
@@ -30,7 +30,7 @@ using namespace Pandora;
 using namespace Pandora_Strutils;
 
 #define PATH_SIZE    _MAX_PATH+1
-#define PANDORA_VERSION ("7.0NG.762 Build 220530")
+#define PANDORA_VERSION ("7.0NG.762 Build 220531")
 
 string pandora_path;
 string pandora_dir;
diff --git a/pandora_agents/win32/versioninfo.rc b/pandora_agents/win32/versioninfo.rc
index 81c86a04e9..828465882d 100644
--- a/pandora_agents/win32/versioninfo.rc
+++ b/pandora_agents/win32/versioninfo.rc
@@ -11,7 +11,7 @@ BEGIN
       VALUE "LegalCopyright", "Artica ST"
       VALUE "OriginalFilename", "PandoraAgent.exe"
       VALUE "ProductName", "Pandora FMS Windows Agent"
-      VALUE "ProductVersion", "(7.0NG.762(Build 220530))"
+      VALUE "ProductVersion", "(7.0NG.762(Build 220531))"
       VALUE "FileVersion", "1.0.0.0"
     END
   END
diff --git a/pandora_console/DEBIAN/control b/pandora_console/DEBIAN/control
index 53319a936b..cd6d8938b7 100644
--- a/pandora_console/DEBIAN/control
+++ b/pandora_console/DEBIAN/control
@@ -1,5 +1,5 @@
 package: pandorafms-console
-Version: 7.0NG.762-220530
+Version: 7.0NG.762-220531
 Architecture: all
 Priority: optional
 Section: admin
diff --git a/pandora_console/DEBIAN/make_deb_package.sh b/pandora_console/DEBIAN/make_deb_package.sh
index 21e61dbc7f..c315bf0076 100644
--- a/pandora_console/DEBIAN/make_deb_package.sh
+++ b/pandora_console/DEBIAN/make_deb_package.sh
@@ -14,7 +14,7 @@
 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 # GNU General Public License for more details.
 
-pandora_version="7.0NG.762-220530"
+pandora_version="7.0NG.762-220531"
 
 package_pear=0
 package_pandora=1
diff --git a/pandora_console/include/config_process.php b/pandora_console/include/config_process.php
index e2c7ae8fbe..6cd1c19121 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 = 'PC220530';
+$build_version = 'PC220531';
 $pandora_version = 'v7.0NG.762';
 
 // Do not overwrite default timezone set if defined.
diff --git a/pandora_console/install.php b/pandora_console/install.php
index 667ca0eb09..c694acab10 100644
--- a/pandora_console/install.php
+++ b/pandora_console/install.php
@@ -129,7 +129,7 @@
         <div style='height: 10px'>
             <?php
             $version = '7.0NG.762';
-            $build = '220530';
+            $build = '220531';
             $banner = "v$version Build $build";
 
             error_reporting(0);
diff --git a/pandora_console/pandora_console.redhat.spec b/pandora_console/pandora_console.redhat.spec
index 74e3da87e4..719bb3d5a0 100644
--- a/pandora_console/pandora_console.redhat.spec
+++ b/pandora_console/pandora_console.redhat.spec
@@ -3,7 +3,7 @@
 #
 %define name        pandorafms_console
 %define version     7.0NG.762
-%define release     220530
+%define release     220531
 
 # User and Group under which Apache is running
 %define httpd_name  httpd
diff --git a/pandora_console/pandora_console.rhel7.spec b/pandora_console/pandora_console.rhel7.spec
index 2e2e5fe7a6..337ad75bef 100644
--- a/pandora_console/pandora_console.rhel7.spec
+++ b/pandora_console/pandora_console.rhel7.spec
@@ -3,7 +3,7 @@
 #
 %define name        pandorafms_console
 %define version     7.0NG.762
-%define release     220530
+%define release     220531
 
 # User and Group under which Apache is running
 %define httpd_name  httpd
diff --git a/pandora_console/pandora_console.spec b/pandora_console/pandora_console.spec
index f50098da09..83c260c560 100644
--- a/pandora_console/pandora_console.spec
+++ b/pandora_console/pandora_console.spec
@@ -3,7 +3,7 @@
 #
 %define name        pandorafms_console
 %define version     7.0NG.762
-%define release     220530
+%define release     220531
 %define httpd_name      httpd
 # User and Group under which Apache is running
 %define httpd_name  apache2
diff --git a/pandora_server/DEBIAN/control b/pandora_server/DEBIAN/control
index 2edf741d9c..a248bd481d 100644
--- a/pandora_server/DEBIAN/control
+++ b/pandora_server/DEBIAN/control
@@ -1,5 +1,5 @@
 package: pandorafms-server
-Version: 7.0NG.762-220530
+Version: 7.0NG.762-220531
 Architecture: all
 Priority: optional
 Section: admin
diff --git a/pandora_server/DEBIAN/make_deb_package.sh b/pandora_server/DEBIAN/make_deb_package.sh
index 0d3cd25df3..a264e10156 100644
--- a/pandora_server/DEBIAN/make_deb_package.sh
+++ b/pandora_server/DEBIAN/make_deb_package.sh
@@ -14,7 +14,7 @@
 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 # GNU General Public License for more details.
 
-pandora_version="7.0NG.762-220530"
+pandora_version="7.0NG.762-220531"
 
 package_cpan=0
 package_pandora=1
diff --git a/pandora_server/lib/PandoraFMS/Config.pm b/pandora_server/lib/PandoraFMS/Config.pm
index 6004341f90..89f3b57674 100644
--- a/pandora_server/lib/PandoraFMS/Config.pm
+++ b/pandora_server/lib/PandoraFMS/Config.pm
@@ -46,7 +46,7 @@ our @EXPORT = qw(
 
 # version: Defines actual version of Pandora Server for this module only
 my $pandora_version = "7.0NG.762";
-my $pandora_build = "220530";
+my $pandora_build = "220531";
 our $VERSION = $pandora_version." ".$pandora_build;
 
 # Setup hash
diff --git a/pandora_server/lib/PandoraFMS/PluginTools.pm b/pandora_server/lib/PandoraFMS/PluginTools.pm
index 781455e5ea..5ea4d63ced 100644
--- a/pandora_server/lib/PandoraFMS/PluginTools.pm
+++ b/pandora_server/lib/PandoraFMS/PluginTools.pm
@@ -34,7 +34,7 @@ our @ISA = qw(Exporter);
 
 # version: Defines actual version of Pandora Server for this module only
 my $pandora_version = "7.0NG.762";
-my $pandora_build = "220530";
+my $pandora_build = "220531";
 our $VERSION = $pandora_version." ".$pandora_build;
 
 our %EXPORT_TAGS = ( 'all' => [ qw() ] );
diff --git a/pandora_server/pandora_server.redhat.spec b/pandora_server/pandora_server.redhat.spec
index d71ded99b1..f95ebaedae 100644
--- a/pandora_server/pandora_server.redhat.spec
+++ b/pandora_server/pandora_server.redhat.spec
@@ -3,7 +3,7 @@
 #
 %define name        pandorafms_server
 %define version     7.0NG.762
-%define release     220530
+%define release     220531
 
 Summary:            Pandora FMS Server
 Name:               %{name}
diff --git a/pandora_server/pandora_server.spec b/pandora_server/pandora_server.spec
index 58a7152a7c..35331dd361 100644
--- a/pandora_server/pandora_server.spec
+++ b/pandora_server/pandora_server.spec
@@ -3,7 +3,7 @@
 #
 %define name        pandorafms_server
 %define version     7.0NG.762
-%define release     220530
+%define release     220531
 
 Summary:            Pandora FMS Server
 Name:               %{name}
diff --git a/pandora_server/pandora_server_installer b/pandora_server/pandora_server_installer
index 104148e4b1..5d722f9d31 100755
--- a/pandora_server/pandora_server_installer
+++ b/pandora_server/pandora_server_installer
@@ -9,7 +9,7 @@
 # **********************************************************************
 
 PI_VERSION="7.0NG.762"
-PI_BUILD="220530"
+PI_BUILD="220531"
 
 MODE=$1
 if [ $# -gt 1 ]; then
diff --git a/pandora_server/util/pandora_db.pl b/pandora_server/util/pandora_db.pl
index bde5306dad..61a8effe64 100755
--- a/pandora_server/util/pandora_db.pl
+++ b/pandora_server/util/pandora_db.pl
@@ -35,7 +35,7 @@ use PandoraFMS::Config;
 use PandoraFMS::DB;
 
 # version: define current version
-my $version = "7.0NG.762 Build 220530";
+my $version = "7.0NG.762 Build 220531";
 
 # Pandora server configuration
 my %conf;
diff --git a/pandora_server/util/pandora_manage.pl b/pandora_server/util/pandora_manage.pl
index e501717ba6..4e9eae2125 100755
--- a/pandora_server/util/pandora_manage.pl
+++ b/pandora_server/util/pandora_manage.pl
@@ -36,7 +36,7 @@ use Encode::Locale;
 Encode::Locale::decode_argv;
 
 # version: define current version
-my $version = "7.0NG.762 Build 220530";
+my $version = "7.0NG.762 Build 220531";
 
 # save program name for logging
 my $progname = basename($0);

From 20e32eefe9a007715c39b88f0c56bf012516141e Mon Sep 17 00:00:00 2001
From: Daniel Maya <daniel.maya@pandorafms.com>
Date: Tue, 31 May 2022 10:32:57 +0200
Subject: [PATCH 066/138] #9078 Fixed max critical

---
 pandora_console/include/functions_reporting.php | 12 +++++++++---
 1 file changed, 9 insertions(+), 3 deletions(-)

diff --git a/pandora_console/include/functions_reporting.php b/pandora_console/include/functions_reporting.php
index 6bf29c1235..f8f1c0dc92 100755
--- a/pandora_console/include/functions_reporting.php
+++ b/pandora_console/include/functions_reporting.php
@@ -6954,7 +6954,7 @@ function sla_truncate($num, $accurancy=2)
  *
  * @param integer $value            Value.
  * @param integer $min              Treshold min SLA.
- * @param boolean $max              Treshold max SLA.
+ * @param integer $max              Treshold max SLA.
  * @param boolean $inverse_interval Treshold inverse SLA.
  *
  * @return boolean Returns the interval in downtime (false if no matches).
@@ -7001,6 +7001,10 @@ function sla_check_value($value, $min, $max, $inverse_interval=0)
         return ($inverse_interval == 0) ? true : false;
     }
 
+    if ($max == 0 && $min != 0 && $value >= $min) {
+        return ($inverse_interval == 0) ? true : false;
+    }
+
     return ($inverse_interval == 0) ? false : true;
 }
 
@@ -14739,8 +14743,10 @@ function reporting_module_histogram_graph($report, $content, $pdf=0)
     if ($modules_is_string === false) {
         if ($agentmodule_info['max_critical'] == 0) {
             $max_value_critical = null;
-            if ((bool) $content['dinamic_proc'] === true) {
-                $max_value_critical = 0.01;
+            if ($agentmodule_info['min_critical'] == 0) {
+                if ((bool) $content['dinamic_proc'] === true) {
+                    $max_value_critical = 0.01;
+                }
             }
         } else {
             $max_value_critical = $agentmodule_info['max_critical'];

From b756106f25f700f5f2fcf961a8382278ba87e4d0 Mon Sep 17 00:00:00 2001
From: Daniel Maya <daniel.maya@pandorafms.com>
Date: Tue, 31 May 2022 10:34:13 +0200
Subject: [PATCH 067/138] #9078 Fixed max critical 2

---
 pandora_console/include/functions_reporting.php | 4 ----
 1 file changed, 4 deletions(-)

diff --git a/pandora_console/include/functions_reporting.php b/pandora_console/include/functions_reporting.php
index f8f1c0dc92..35b3b310b5 100755
--- a/pandora_console/include/functions_reporting.php
+++ b/pandora_console/include/functions_reporting.php
@@ -7001,10 +7001,6 @@ function sla_check_value($value, $min, $max, $inverse_interval=0)
         return ($inverse_interval == 0) ? true : false;
     }
 
-    if ($max == 0 && $min != 0 && $value >= $min) {
-        return ($inverse_interval == 0) ? true : false;
-    }
-
     return ($inverse_interval == 0) ? false : true;
 }
 

From f4784f4922bc5fa4ece2d50c7c6f31fa64e80688 Mon Sep 17 00:00:00 2001
From: Daniel Maya <daniel.maya@pandorafms.com>
Date: Tue, 31 May 2022 17:09:15 +0200
Subject: [PATCH 068/138] #9031 Fixed css filter

---
 pandora_console/include/styles/events.css   | 29 ++++++++++++++++++++-
 pandora_console/operation/events/events.php | 20 ++++++--------
 2 files changed, 36 insertions(+), 13 deletions(-)

diff --git a/pandora_console/include/styles/events.css b/pandora_console/include/styles/events.css
index 4b8177b2af..e3fa37529e 100644
--- a/pandora_console/include/styles/events.css
+++ b/pandora_console/include/styles/events.css
@@ -33,7 +33,6 @@ form.flex-row ul {
   display: flex;
   flex-direction: row;
   align-items: center;
-  flex-wrap: wrap;
   align-content: center;
   justify-content: space-between;
   flex: 1;
@@ -316,3 +315,31 @@ div.multi-response-buttons {
 .event_detail_tab_menu li {
   max-width: 160px;
 }
+
+.select_tags {
+  width: 200px;
+}
+
+@media screen and (max-width: 1400px) {
+  .select_tags {
+    width: 165px;
+  }
+}
+
+@media screen and (max-width: 1250px) {
+  .select_tags {
+    width: 125px;
+  }
+}
+
+@media screen and (max-width: 1100px) {
+  .select_tags {
+    width: 100px;
+  }
+
+  form.flex-row div.filter_input.large {
+    flex: 1;
+    min-width: 600px;
+    max-width: 100%;
+  }
+}
diff --git a/pandora_console/operation/events/events.php b/pandora_console/operation/events/events.php
index 5f3a733318..e1e3d2491b 100644
--- a/pandora_console/operation/events/events.php
+++ b/pandora_console/operation/events/events.php
@@ -611,9 +611,8 @@ $data[0] = html_print_select(
     true,
     true,
     true,
-    '',
-    false,
-    'width: 200px;'
+    'select_tags',
+    false
 );
 
 $data[1] = html_print_image(
@@ -654,9 +653,8 @@ $data[2] = html_print_select(
     true,
     true,
     true,
-    '',
-    false,
-    'width: 200px;'
+    'select_tags',
+    false
 );
 
 $tabletags_with->data[] = $data;
@@ -688,9 +686,8 @@ $data[0] = html_print_select(
     true,
     true,
     true,
-    '',
-    false,
-    'width: 200px;'
+    'select_tags',
+    false
 );
 $data[1] = html_print_image(
     'images/darrowright.png',
@@ -727,9 +724,8 @@ $data[2] = html_print_select(
     true,
     true,
     true,
-    '',
-    false,
-    'width: 200px;'
+    'select_tags',
+    false
 );
 $tabletags_without->data[] = $data;
 $tabletags_without->rowclass[] = '';

From aa6977e4dbaff9e980f0342e1a12c21e134228fe Mon Sep 17 00:00:00 2001
From: artica <artica.devel@gmail.com>
Date: Wed, 1 Jun 2022 01:00:20 +0200
Subject: [PATCH 069/138] Auto-updated build strings.

---
 pandora_agents/unix/DEBIAN/control             | 2 +-
 pandora_agents/unix/DEBIAN/make_deb_package.sh | 2 +-
 pandora_agents/unix/pandora_agent              | 2 +-
 pandora_agents/unix/pandora_agent.redhat.spec  | 2 +-
 pandora_agents/unix/pandora_agent.spec         | 2 +-
 pandora_agents/unix/pandora_agent_installer    | 2 +-
 pandora_agents/win32/installer/pandora.mpi     | 2 +-
 pandora_agents/win32/pandora.cc                | 2 +-
 pandora_agents/win32/versioninfo.rc            | 2 +-
 pandora_console/DEBIAN/control                 | 2 +-
 pandora_console/DEBIAN/make_deb_package.sh     | 2 +-
 pandora_console/include/config_process.php     | 2 +-
 pandora_console/install.php                    | 2 +-
 pandora_console/pandora_console.redhat.spec    | 2 +-
 pandora_console/pandora_console.rhel7.spec     | 2 +-
 pandora_console/pandora_console.spec           | 2 +-
 pandora_server/DEBIAN/control                  | 2 +-
 pandora_server/DEBIAN/make_deb_package.sh      | 2 +-
 pandora_server/lib/PandoraFMS/Config.pm        | 2 +-
 pandora_server/lib/PandoraFMS/PluginTools.pm   | 2 +-
 pandora_server/pandora_server.redhat.spec      | 2 +-
 pandora_server/pandora_server.spec             | 2 +-
 pandora_server/pandora_server_installer        | 2 +-
 pandora_server/util/pandora_db.pl              | 2 +-
 pandora_server/util/pandora_manage.pl          | 2 +-
 25 files changed, 25 insertions(+), 25 deletions(-)

diff --git a/pandora_agents/unix/DEBIAN/control b/pandora_agents/unix/DEBIAN/control
index c0e56d0bc1..63f522a0f1 100644
--- a/pandora_agents/unix/DEBIAN/control
+++ b/pandora_agents/unix/DEBIAN/control
@@ -1,5 +1,5 @@
 package: pandorafms-agent-unix
-Version: 7.0NG.762-220531
+Version: 7.0NG.762-220601
 Architecture: all
 Priority: optional
 Section: admin
diff --git a/pandora_agents/unix/DEBIAN/make_deb_package.sh b/pandora_agents/unix/DEBIAN/make_deb_package.sh
index 6ef2633c4a..c81be8240a 100644
--- a/pandora_agents/unix/DEBIAN/make_deb_package.sh
+++ b/pandora_agents/unix/DEBIAN/make_deb_package.sh
@@ -14,7 +14,7 @@
 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 # GNU General Public License for more details.
 
-pandora_version="7.0NG.762-220531"
+pandora_version="7.0NG.762-220601"
 
 echo "Test if you has the tools for to make the packages."
 whereis dpkg-deb | cut -d":" -f2 | grep dpkg-deb > /dev/null
diff --git a/pandora_agents/unix/pandora_agent b/pandora_agents/unix/pandora_agent
index bcd40d427e..89e7ea364c 100755
--- a/pandora_agents/unix/pandora_agent
+++ b/pandora_agents/unix/pandora_agent
@@ -1015,7 +1015,7 @@ my $Sem = undef;
 my $ThreadSem = undef;
 
 use constant AGENT_VERSION => '7.0NG.762';
-use constant AGENT_BUILD => '220531';
+use constant AGENT_BUILD => '220601';
 
 # Agent log default file size maximum and instances
 use constant DEFAULT_MAX_LOG_SIZE => 600000;
diff --git a/pandora_agents/unix/pandora_agent.redhat.spec b/pandora_agents/unix/pandora_agent.redhat.spec
index 826af83c44..9ec3ccbb6b 100644
--- a/pandora_agents/unix/pandora_agent.redhat.spec
+++ b/pandora_agents/unix/pandora_agent.redhat.spec
@@ -3,7 +3,7 @@
 #
 %define name        pandorafms_agent_unix
 %define version     7.0NG.762
-%define release     220531
+%define release     220601
 
 Summary:            Pandora FMS Linux agent, PERL version
 Name:               %{name}
diff --git a/pandora_agents/unix/pandora_agent.spec b/pandora_agents/unix/pandora_agent.spec
index 49fef0d68d..5d69552332 100644
--- a/pandora_agents/unix/pandora_agent.spec
+++ b/pandora_agents/unix/pandora_agent.spec
@@ -3,7 +3,7 @@
 #
 %define name        pandorafms_agent_unix
 %define version     7.0NG.762
-%define release     220531
+%define release     220601
 
 Summary:            Pandora FMS Linux agent, PERL version
 Name:               %{name}
diff --git a/pandora_agents/unix/pandora_agent_installer b/pandora_agents/unix/pandora_agent_installer
index de5a820e09..9db5c266b0 100755
--- a/pandora_agents/unix/pandora_agent_installer
+++ b/pandora_agents/unix/pandora_agent_installer
@@ -10,7 +10,7 @@
 # **********************************************************************
 
 PI_VERSION="7.0NG.762"
-PI_BUILD="220531"
+PI_BUILD="220601"
 OS_NAME=`uname -s`
 
 FORCE=0
diff --git a/pandora_agents/win32/installer/pandora.mpi b/pandora_agents/win32/installer/pandora.mpi
index 4653004530..bf7e0c858f 100644
--- a/pandora_agents/win32/installer/pandora.mpi
+++ b/pandora_agents/win32/installer/pandora.mpi
@@ -186,7 +186,7 @@ UpgradeApplicationID
 {}
 
 Version
-{220531}
+{220601}
 
 ViewReadme
 {Yes}
diff --git a/pandora_agents/win32/pandora.cc b/pandora_agents/win32/pandora.cc
index 4a88d5fe4d..1d1463d5aa 100644
--- a/pandora_agents/win32/pandora.cc
+++ b/pandora_agents/win32/pandora.cc
@@ -30,7 +30,7 @@ using namespace Pandora;
 using namespace Pandora_Strutils;
 
 #define PATH_SIZE    _MAX_PATH+1
-#define PANDORA_VERSION ("7.0NG.762 Build 220531")
+#define PANDORA_VERSION ("7.0NG.762 Build 220601")
 
 string pandora_path;
 string pandora_dir;
diff --git a/pandora_agents/win32/versioninfo.rc b/pandora_agents/win32/versioninfo.rc
index 828465882d..8c9328585e 100644
--- a/pandora_agents/win32/versioninfo.rc
+++ b/pandora_agents/win32/versioninfo.rc
@@ -11,7 +11,7 @@ BEGIN
       VALUE "LegalCopyright", "Artica ST"
       VALUE "OriginalFilename", "PandoraAgent.exe"
       VALUE "ProductName", "Pandora FMS Windows Agent"
-      VALUE "ProductVersion", "(7.0NG.762(Build 220531))"
+      VALUE "ProductVersion", "(7.0NG.762(Build 220601))"
       VALUE "FileVersion", "1.0.0.0"
     END
   END
diff --git a/pandora_console/DEBIAN/control b/pandora_console/DEBIAN/control
index cd6d8938b7..e0fe2f58ce 100644
--- a/pandora_console/DEBIAN/control
+++ b/pandora_console/DEBIAN/control
@@ -1,5 +1,5 @@
 package: pandorafms-console
-Version: 7.0NG.762-220531
+Version: 7.0NG.762-220601
 Architecture: all
 Priority: optional
 Section: admin
diff --git a/pandora_console/DEBIAN/make_deb_package.sh b/pandora_console/DEBIAN/make_deb_package.sh
index c315bf0076..a1397a7e9b 100644
--- a/pandora_console/DEBIAN/make_deb_package.sh
+++ b/pandora_console/DEBIAN/make_deb_package.sh
@@ -14,7 +14,7 @@
 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 # GNU General Public License for more details.
 
-pandora_version="7.0NG.762-220531"
+pandora_version="7.0NG.762-220601"
 
 package_pear=0
 package_pandora=1
diff --git a/pandora_console/include/config_process.php b/pandora_console/include/config_process.php
index 6cd1c19121..206b55b281 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 = 'PC220531';
+$build_version = 'PC220601';
 $pandora_version = 'v7.0NG.762';
 
 // Do not overwrite default timezone set if defined.
diff --git a/pandora_console/install.php b/pandora_console/install.php
index c694acab10..03d0fbdd9a 100644
--- a/pandora_console/install.php
+++ b/pandora_console/install.php
@@ -129,7 +129,7 @@
         <div style='height: 10px'>
             <?php
             $version = '7.0NG.762';
-            $build = '220531';
+            $build = '220601';
             $banner = "v$version Build $build";
 
             error_reporting(0);
diff --git a/pandora_console/pandora_console.redhat.spec b/pandora_console/pandora_console.redhat.spec
index 719bb3d5a0..1015439836 100644
--- a/pandora_console/pandora_console.redhat.spec
+++ b/pandora_console/pandora_console.redhat.spec
@@ -3,7 +3,7 @@
 #
 %define name        pandorafms_console
 %define version     7.0NG.762
-%define release     220531
+%define release     220601
 
 # User and Group under which Apache is running
 %define httpd_name  httpd
diff --git a/pandora_console/pandora_console.rhel7.spec b/pandora_console/pandora_console.rhel7.spec
index 337ad75bef..2961173a06 100644
--- a/pandora_console/pandora_console.rhel7.spec
+++ b/pandora_console/pandora_console.rhel7.spec
@@ -3,7 +3,7 @@
 #
 %define name        pandorafms_console
 %define version     7.0NG.762
-%define release     220531
+%define release     220601
 
 # User and Group under which Apache is running
 %define httpd_name  httpd
diff --git a/pandora_console/pandora_console.spec b/pandora_console/pandora_console.spec
index 83c260c560..3021678cfc 100644
--- a/pandora_console/pandora_console.spec
+++ b/pandora_console/pandora_console.spec
@@ -3,7 +3,7 @@
 #
 %define name        pandorafms_console
 %define version     7.0NG.762
-%define release     220531
+%define release     220601
 %define httpd_name      httpd
 # User and Group under which Apache is running
 %define httpd_name  apache2
diff --git a/pandora_server/DEBIAN/control b/pandora_server/DEBIAN/control
index a248bd481d..025ce9bc59 100644
--- a/pandora_server/DEBIAN/control
+++ b/pandora_server/DEBIAN/control
@@ -1,5 +1,5 @@
 package: pandorafms-server
-Version: 7.0NG.762-220531
+Version: 7.0NG.762-220601
 Architecture: all
 Priority: optional
 Section: admin
diff --git a/pandora_server/DEBIAN/make_deb_package.sh b/pandora_server/DEBIAN/make_deb_package.sh
index a264e10156..b50d405278 100644
--- a/pandora_server/DEBIAN/make_deb_package.sh
+++ b/pandora_server/DEBIAN/make_deb_package.sh
@@ -14,7 +14,7 @@
 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 # GNU General Public License for more details.
 
-pandora_version="7.0NG.762-220531"
+pandora_version="7.0NG.762-220601"
 
 package_cpan=0
 package_pandora=1
diff --git a/pandora_server/lib/PandoraFMS/Config.pm b/pandora_server/lib/PandoraFMS/Config.pm
index 89f3b57674..fa7f9adce2 100644
--- a/pandora_server/lib/PandoraFMS/Config.pm
+++ b/pandora_server/lib/PandoraFMS/Config.pm
@@ -46,7 +46,7 @@ our @EXPORT = qw(
 
 # version: Defines actual version of Pandora Server for this module only
 my $pandora_version = "7.0NG.762";
-my $pandora_build = "220531";
+my $pandora_build = "220601";
 our $VERSION = $pandora_version." ".$pandora_build;
 
 # Setup hash
diff --git a/pandora_server/lib/PandoraFMS/PluginTools.pm b/pandora_server/lib/PandoraFMS/PluginTools.pm
index 5ea4d63ced..69c5c76808 100644
--- a/pandora_server/lib/PandoraFMS/PluginTools.pm
+++ b/pandora_server/lib/PandoraFMS/PluginTools.pm
@@ -34,7 +34,7 @@ our @ISA = qw(Exporter);
 
 # version: Defines actual version of Pandora Server for this module only
 my $pandora_version = "7.0NG.762";
-my $pandora_build = "220531";
+my $pandora_build = "220601";
 our $VERSION = $pandora_version." ".$pandora_build;
 
 our %EXPORT_TAGS = ( 'all' => [ qw() ] );
diff --git a/pandora_server/pandora_server.redhat.spec b/pandora_server/pandora_server.redhat.spec
index f95ebaedae..4011b4330a 100644
--- a/pandora_server/pandora_server.redhat.spec
+++ b/pandora_server/pandora_server.redhat.spec
@@ -3,7 +3,7 @@
 #
 %define name        pandorafms_server
 %define version     7.0NG.762
-%define release     220531
+%define release     220601
 
 Summary:            Pandora FMS Server
 Name:               %{name}
diff --git a/pandora_server/pandora_server.spec b/pandora_server/pandora_server.spec
index 35331dd361..162df56e95 100644
--- a/pandora_server/pandora_server.spec
+++ b/pandora_server/pandora_server.spec
@@ -3,7 +3,7 @@
 #
 %define name        pandorafms_server
 %define version     7.0NG.762
-%define release     220531
+%define release     220601
 
 Summary:            Pandora FMS Server
 Name:               %{name}
diff --git a/pandora_server/pandora_server_installer b/pandora_server/pandora_server_installer
index 5d722f9d31..7ae4fc212f 100755
--- a/pandora_server/pandora_server_installer
+++ b/pandora_server/pandora_server_installer
@@ -9,7 +9,7 @@
 # **********************************************************************
 
 PI_VERSION="7.0NG.762"
-PI_BUILD="220531"
+PI_BUILD="220601"
 
 MODE=$1
 if [ $# -gt 1 ]; then
diff --git a/pandora_server/util/pandora_db.pl b/pandora_server/util/pandora_db.pl
index 61a8effe64..89947e3aa0 100755
--- a/pandora_server/util/pandora_db.pl
+++ b/pandora_server/util/pandora_db.pl
@@ -35,7 +35,7 @@ use PandoraFMS::Config;
 use PandoraFMS::DB;
 
 # version: define current version
-my $version = "7.0NG.762 Build 220531";
+my $version = "7.0NG.762 Build 220601";
 
 # Pandora server configuration
 my %conf;
diff --git a/pandora_server/util/pandora_manage.pl b/pandora_server/util/pandora_manage.pl
index 4e9eae2125..671d37dfb4 100755
--- a/pandora_server/util/pandora_manage.pl
+++ b/pandora_server/util/pandora_manage.pl
@@ -36,7 +36,7 @@ use Encode::Locale;
 Encode::Locale::decode_argv;
 
 # version: define current version
-my $version = "7.0NG.762 Build 220531";
+my $version = "7.0NG.762 Build 220601";
 
 # save program name for logging
 my $progname = basename($0);

From 86d04395a6c1f9081fe62a4d97fd974ec5c8de60 Mon Sep 17 00:00:00 2001
From: Rafael Ameijeiras <rafael.ameijeiras@artica.es>
Date: Wed, 1 Jun 2022 05:32:52 +0200
Subject: [PATCH 070/138] 
 8971-13608-definicion-de-umbrales-en-plugin-oracle-database-agente-no-funciona

---
 pandora_server/lib/PandoraFMS/PluginTools.pm | 17 ++++++++---------
 1 file changed, 8 insertions(+), 9 deletions(-)

diff --git a/pandora_server/lib/PandoraFMS/PluginTools.pm b/pandora_server/lib/PandoraFMS/PluginTools.pm
index 5ea4d63ced..d048f57f8c 100644
--- a/pandora_server/lib/PandoraFMS/PluginTools.pm
+++ b/pandora_server/lib/PandoraFMS/PluginTools.pm
@@ -609,15 +609,14 @@ sub print_module {
 	$data->{critical_instructions} = $conf->{critical_instructions} unless (defined($data->{critical_instructions}) || (!defined($conf->{critical_instructions})));
 
 	# Translation compatibility
-	$data->{'min_warning'}      = $data->{'wmin'} if empty($data->{'min_warning'});
-	$data->{'max_warning'}      = $data->{'wmax'} if empty($data->{'max_warning'});
-	$data->{'min_critical'}     = $data->{'cmin'} if empty($data->{'min_critical'});
-	$data->{'max_critical'}     = $data->{'cmax'} if empty($data->{'max_critical'});
-	$data->{'warning_inverse'}  = $data->{'winv'} if empty($data->{'warning_inverse'});
-	$data->{'critical_inverse'} = $data->{'cinv'} if empty($data->{'critical_inverse'});
-	$data->{'str_warning'}      = $data->{'wstr'} if empty($data->{'str_warning'});
-	$data->{'str_critical'}     = $data->{'cstr'} if empty($data->{'str_critical'});
-
+	$data->{min_warning}      = $data->{'wmin'} if empty($data->{min_warning});
+	$data->{max_warning}      = $data->{'wmax'} if empty($data->{max_warning});
+	$data->{min_critical}     = $data->{'cmin'} if empty($data->{min_critical});
+	$data->{max_critical}     = $data->{'cmax'} if empty($data->{max_critical});
+	$data->{warning_inverse}  = $data->{'winv'} if empty($data->{warning_inverse});
+	$data->{critical_inverse} = $data->{'cinv'} if empty($data->{critical_inverse});
+	$data->{str_warning}      = $data->{'wstr'} if empty($data->{str_warning});
+	$data->{str_critical}     = $data->{'cstr'} if empty($data->{str_critical});
 
 	$xml_module .= "<module>\n";
 	$xml_module .= "\t<name><![CDATA[" . $data->{name} . "]]></name>\n";

From 8b57e1dfb4a2960464fed34f1a15e26af6c65ff6 Mon Sep 17 00:00:00 2001
From: "alejandro.campos@artica.es" <alejandro.campos@artica.es>
Date: Wed, 1 Jun 2022 14:00:33 +0200
Subject: [PATCH 071/138] fixed permissions in selectors

---
 .../godmode/agentes/planned_downtime.editor.php     | 10 ++++++++--
 pandora_console/operation/agentes/ver_agente.php    | 13 +++++++++++--
 2 files changed, 19 insertions(+), 4 deletions(-)

diff --git a/pandora_console/godmode/agentes/planned_downtime.editor.php b/pandora_console/godmode/agentes/planned_downtime.editor.php
index 4eec189958..f17fbc0ccf 100644
--- a/pandora_console/godmode/agentes/planned_downtime.editor.php
+++ b/pandora_console/godmode/agentes/planned_downtime.editor.php
@@ -539,6 +539,12 @@ if ($id_downtime > 0) {
 // only action to postpone on once type is enabled and the other are disabled.
 $disabled_in_execution = (int) $running;
 
+$return_all_group = false;
+
+if (users_can_manage_group_all('AW') === true || $disabled) {
+    $return_all_group = true;
+}
+
 $table = new StdClass();
 $table->class = 'databox filters';
 $table->width = '100%';
@@ -557,7 +563,7 @@ $table->data[1][0] = __('Group');
 $table->data[1][1] = '<div class="w250px">'.html_print_select_groups(
     false,
     $access,
-    true,
+    $return_all_group,
     'id_group',
     $id_group,
     '',
@@ -793,7 +799,7 @@ $table->width = '100%';
 $table->data = [];
 
 $table->data[0][0] = __('Group filter');
-$table->data[0][1] = html_print_select_groups(false, $access, true, 'filter_group', $filter_group, '', '', '', true, false, true, '', false, 'min-width:180px;margin-right:15px;');
+$table->data[0][1] = html_print_select_groups(false, $access, $return_all_group, 'filter_group', $filter_group, '', '', '', true, false, true, '', false, 'min-width:180px;margin-right:15px;');
 $table->data[0][2] = __('Recursion').'&nbsp&nbsp'.html_print_checkbox('recursion', 1, $recursion, true, false, '');
 
 $table->data[1][0] = __('Available agents');
diff --git a/pandora_console/operation/agentes/ver_agente.php b/pandora_console/operation/agentes/ver_agente.php
index bca69043e2..cdf4628471 100644
--- a/pandora_console/operation/agentes/ver_agente.php
+++ b/pandora_console/operation/agentes/ver_agente.php
@@ -697,6 +697,15 @@ if (is_ajax()) {
             asort($result);
         } else {
             if ($idAgents[0] < 0) {
+                // Get all user's groups.
+                $id_group = array_keys(users_get_groups($config['id_user']));
+
+                if (is_array($id_group)) {
+                    $id_group = implode(',', $id_group);
+                }
+
+                $where_tags .= ' AND tagente.id_grupo IN ('.$id_group.')';
+
                 if ($selection_mode == 'common') {
                     $sql_agent_total = 'SELECT count(*) FROM tagente WHERE disabled=0';
                     $agent_total = db_get_value_sql($sql_agent_total);
@@ -705,13 +714,13 @@ if (is_ajax()) {
 						JOIN (SELECT COUNT(*) AS num_names, nombre FROM tagente_modulo
 						WHERE disabled=0 AND delete_pending=0 GROUP BY nombre) AS tj
 						ON tj.num_names = $agent_total AND tj.nombre = t1.nombre %s %s",
-                        $sql_tags_join,
+                        ($sql_tags_join === '') ? 'INNER JOIN tagente ON tagente.id_agente = t1.id_agente' : '',
                         (empty($where_tags)) ? '' : " WHERE 1=1 $where_tags"
                     );
                 } else {
                     $sql = sprintf(
                         'SELECT t1.nombre, t1.id_agente_modulo FROM tagente_modulo t1 %s %s',
-                        $sql_tags_join,
+                        ($sql_tags_join === '') ? 'INNER JOIN tagente ON tagente.id_agente = t1.id_agente' : '',
                         (empty($where_tags)) ? '' : " WHERE 1=1 $where_tags"
                     );
                 }

From 6c48717627c9b3fc06d3518d8958fe2f0dafb40e Mon Sep 17 00:00:00 2001
From: Daniel Maya <daniel.maya@pandorafms.com>
Date: Wed, 1 Jun 2022 15:07:51 +0200
Subject: [PATCH 072/138] #9038 filter remake

---
 pandora_console/include/styles/pandora.css    |   26 +
 .../operation/agentes/status_monitor.php      | 2103 ++++++++---------
 2 files changed, 1077 insertions(+), 1052 deletions(-)

diff --git a/pandora_console/include/styles/pandora.css b/pandora_console/include/styles/pandora.css
index df286eaf49..75ce5a25f2 100644
--- a/pandora_console/include/styles/pandora.css
+++ b/pandora_console/include/styles/pandora.css
@@ -9018,3 +9018,29 @@ div#err_msg_centralised {
 #reset-styles var {
   font-style: italic;
 }
+
+.div-col {
+  width: 33%;
+  display: flex;
+  flex-direction: row;
+  align-items: center;
+  padding-top: 15px;
+}
+
+.div-span {
+  width: 25%;
+}
+
+.div-input {
+  width: 75%;
+}
+
+@media screen and (max-width: 1369px) {
+  .div-col {
+    width: 50%;
+    display: flex;
+    flex-direction: row;
+    align-items: center;
+    padding-top: 15px;
+  }
+}
diff --git a/pandora_console/operation/agentes/status_monitor.php b/pandora_console/operation/agentes/status_monitor.php
index 13ba1c9085..7f78680d9a 100644
--- a/pandora_console/operation/agentes/status_monitor.php
+++ b/pandora_console/operation/agentes/status_monitor.php
@@ -533,15 +533,6 @@ if (!$is_metaconsole) {
 
 $table->data[0][5] = html_print_select($rows_select, 'modulegroup', $modulegroup, '', __($is_none), -1, true, false, true, '', false, 'width: 120px;');
 
-$table->rowspan[0][6] = 3;
-$table->data[0][6] = html_print_submit_button(
-    __('Show'),
-    'uptbutton',
-    false,
-    'class="sub search mgn_tp_0"',
-    true
-);
-
 $table->data[1][0] = __('Module name');
 $table->data[1][1] = html_print_autocomplete_modules(
     'ag_modulename',
@@ -579,7 +570,12 @@ if (empty($tags)) {
     );
 }
 
-
+$table2 = new StdClass();
+$table2->width = '100%';
+$table2->class = 'filters';
+$table2->style = [];
+$table2->style[0] = 'font-weight: bold;';
+$table2->style[1] = 'font-weight: bold;';
 
 $network_available = db_get_sql(
     'SELECT count(*)
@@ -647,9 +643,9 @@ if (enterprise_installed()) {
 }
 
 
-$table->data[2][0] = '<span>'.__('Server type').'</span>';
+$table2->data[0][0] = '<span>'.__('Server type').'</span>';
 
-$table->data[2][1] = html_print_select($typemodules, 'moduletype', $moduletype, '', __($is_none), '', true, false, true, '', false, 'width: 150px;');
+$table2->data[0][1] = html_print_select($typemodules, 'moduletype', $moduletype, '', __($is_none), '', true, false, true, '', false, 'width: 150px;');
 
 $monitor_options = [
     0 => __('All'),
@@ -657,21 +653,18 @@ $monitor_options = [
     2 => __('Only disabled'),
 ];
 
-$table->data[2][2] = '<span>'.__('Show monitors...').'</span>';
+$table2->data[0][2] = '<span>'.__('Show monitors...').'</span>';
 
-$table->data[2][3] = html_print_select($monitor_options, 'module_option', $module_option, '', '', '', true, false, true, '', false, 'width: 150px;');
+$table2->data[0][3] = html_print_select($monitor_options, 'module_option', $module_option, '', '', '', true, false, true, '', false, 'width: 150px;');
 
 $min_hours_val = empty($min_hours_status) ? '' : (int) $min_hours_status;
 
-$table->data[2][4] = '<span>'.__('Min. hours in current status').'</span>';
-$table->data[2][5] = html_print_input_text('min_hours_status', $min_hours_val, '', 12, 20, true);
+$table2->data[0][4] = '<span>'.__('Min. hours in current status').'</span>';
+$table2->data[0][5] = html_print_input_text('min_hours_status', $min_hours_val, '', 12, 20, true);
 
-$table->data[3][0] = '<span id="datatypetittle"';
-
-$table->data[3][0] .= '>'.__('Data type').'</span>';
-
-
-$table->data[3][1] .= '<div id="datatypebox">';
+$table2->data[1][0] = '<span id="datatypetittle"';
+$table2->data[1][0] .= '>'.__('Data type').'</span>';
+$table2->data[1][1] .= '<div id="datatypebox">';
 
 
 switch ($moduletype) {
@@ -744,143 +737,349 @@ switch ($moduletype) {
 }
 
 $a = db_get_all_rows_sql($sql);
-$table->data[3][1] .= '<select id="datatype" name="datatype" ';
+$table2->data[1][1] .= '<select id="datatype" name="datatype" style="height: 28px;" ';
 
-$table->data[3][1] .= '>';
+$table2->data[1][1] .= '>';
 
-$table->data[3][1] .= '<option name="datatype" value="">'.__($is_none).'</option>';
+$table2->data[1][1] .= '<option name="datatype" value="">'.__($is_none).'</option>';
 
 
 foreach ($a as $valor) {
-    $table->data[3][1] .= '<option name="datatype" value="'.$valor['id_tipo'].'" ';
+    $table2->data[1][1] .= '<option name="datatype" value="'.$valor['id_tipo'].'" ';
 
     if ($valor['id_tipo'] == $datatype) {
-        $table->data[3][1] .= 'selected';
+        $table2->data[1][1] .= 'selected';
     }
 
-    $table->data[3][1] .= '>'.$valor['descripcion'].'</option>';
+    $table2->data[1][1] .= '>'.$valor['descripcion'].'</option>';
 }
 
-            $table->data[3][1] .= '</select>';
-
-
-
-
-        $table->data[3][1] .= '</div>';
-        $check_not_condition = '';
+$table2->data[1][1] .= '</select>';
+$table2->data[1][1] .= '</div>';
+$check_not_condition = '';
 
 if ($not_condition !== '') {
     $check_not_condition = true;
 }
 
-$table->data[4][0] .= __('Not condition').'&nbsp;'.ui_print_help_tip(__('If you check this option, those elements that do NOT meet any of the requirements will be shown'), true);
-        $table->data[4][1] = html_print_div(
+$table2->data[1][2] .= __('Not condition').'&nbsp;'.ui_print_help_tip(__('If you check this option, those elements that do NOT meet any of the requirements will be shown'), true);
+$table2->data[1][3] = html_print_div(
+    [
+        'class'   => 'w120px mrgn_5px mrgn_lft_0px mrgn_right_0px',
+        'content' => html_print_input(
             [
-                'class'   => 'w120px mrgn_5px mrgn_lft_0px mrgn_right_0px',
-                'content' => html_print_input(
-                    [
-                        'type'    => 'switch',
-                        'name'    => 'not_condition',
-                        'return'  => false,
-                        'checked' => $check_not_condition,
-                        'value'   => 'NOT',
-                        'id'      => 'not_condition_switch',
-                        'onclick' => 'changeNotConditionStatus(this)',
-                    ]
-                ),
-            ],
-            true
-        );
+                'type'    => 'switch',
+                'name'    => 'not_condition',
+                'return'  => false,
+                'checked' => $check_not_condition,
+                'value'   => 'NOT',
+                'id'      => 'not_condition_switch',
+                'onclick' => 'changeNotConditionStatus(this)',
+            ]
+        ),
+    ],
+    true
+);
 
-        $table_custom_fields = new stdClass();
-        $table_custom_fields->class = 'filters';
-        $table_custom_fields->width = '100%';
-        $table_custom_fields->style = [];
-        $table_custom_fields->style[0] = 'font-weight: bold;';
-
-        // Style is different in metaconsole.
-        if ($is_metaconsole === false) {
-            $table_custom_fields->style[0] = 'font-weight: bold; width: 150px;';
-        }
-
-        if ($is_metaconsole === true) {
-            $table_custom_fields->styleTable = 'margin-left:0px; margin-top:15px;';
-            $table_custom_fields->cellpadding = '0';
-            $table_custom_fields->cellspacing = '0';
-        }
-
-        $table_custom_fields->colspan = [];
-        $table_custom_fields->data = [];
-
-        $custom_fields = db_get_all_fields_in_table('tagent_custom_fields');
-        if ($custom_fields === false) {
-            $custom_fields = [];
-        }
-
-        foreach ($custom_fields as $custom_field) {
-            $row = [];
-            $row[0] = $custom_field['name'];
+$custom_fields = db_get_all_fields_in_table('tagent_custom_fields');
+if ($custom_fields === false) {
+    $custom_fields = [];
+}
 
+$div_custom_fields = '<div class="flex-row">';
+foreach ($custom_fields as $custom_field) {
+    $custom_field_value = '';
+    if (empty($ag_custom_fields) === false) {
+        $custom_field_value = $ag_custom_fields[$custom_field['id_field']];
+        if (empty($custom_field_value) === true) {
             $custom_field_value = '';
-            if (empty($ag_custom_fields) === false) {
-                $custom_field_value = $ag_custom_fields[$custom_field['id_field']];
-                if (empty($custom_field_value) === true) {
-                    $custom_field_value = '';
-                }
-            }
-
-            $row[1] = html_print_input_text('ag_custom_fields['.$custom_field['id_field'].']', $custom_field_value, '', 100, 300, true);
-
-            $table_custom_fields->data[] = $row;
         }
+    }
 
-        $filters = '<form method="post" action="index.php?sec='.$section.'&sec2=operation/agentes/status_monitor&refr='.$refr.'&ag_group='.$ag_group.'&ag_freestring='.$ag_freestring.'&module_option='.$module_option.'&ag_modulename='.$ag_modulename.'&moduletype='.$moduletype.'&datatype='.$datatype.'&status='.$status.'&sort_field='.$sortField.'&sort='.$sort.'&pure='.$config['pure'].$ag_custom_fields_params.'">';
+    $div_custom_fields .= '<div class="div-col">';
 
+    $div_custom_fields .= '<div class="div-span">';
+    $div_custom_fields .= '<span >'.$custom_field['name'].'</span>';
+    $div_custom_fields .= '</div>';
 
-        if (is_metaconsole() === true) {
-            $table->colspan[5][0] = 7;
-            $table->cellstyle[5][0] = 'padding: 10px;';
-            $table->data[5][0] = ui_toggle(
-                html_print_table($table_custom_fields, true),
-                __('Advanced Options'),
-                '',
-                '',
-                true,
-                true
-            );
+    $div_custom_fields .= '<div class="div-input">';
+    $div_custom_fields .= html_print_input_text(
+        'ag_custom_fields['.$custom_field['id_field'].']',
+        $custom_field_value,
+        '',
+        0,
+        300,
+        true,
+        false,
+        false,
+        '',
+        'div-input'
+    );
+    $div_custom_fields .= '</div>';
 
-            $filters .= html_print_table($table, true);
-            $filters .= '</form>';
-            ui_toggle($filters, __('Show filters'), '', '', false);
-        } else {
-            $table->colspan[5][0] = 7;
-            $table->cellstyle[5][0] = 'padding-left: 10px;';
-            $table->data[5][0] = ui_toggle(
-                html_print_table(
-                    $table_custom_fields,
-                    true
-                ),
-                __('Agent custom fields'),
-                '',
-                '',
-                true,
-                true,
-                '',
-                'white-box-content',
-                'white_table_graph'
-            );
+    $div_custom_fields .= '</div>';
+}
 
-            $filters .= html_print_table($table, true);
-            $filters .= '</form>';
-            echo $filters;
+$div_custom_fields .= '</div>';
+
+$filters = '<form method="post" action="index.php?sec='.$section.'&sec2=operation/agentes/status_monitor&refr='.$refr.'&ag_group='.$ag_group.'&ag_freestring='.$ag_freestring.'&module_option='.$module_option.'&ag_modulename='.$ag_modulename.'&moduletype='.$moduletype.'&datatype='.$datatype.'&status='.$status.'&sort_field='.$sortField.'&sort='.$sort.'&pure='.$config['pure'].$ag_custom_fields_params.'">';
+
+$table2->colspan[2][0] = 7;
+$table2->cellstyle[2][0] = 'padding-left: 10px;';
+$table2->data[2][0] = ui_toggle(
+    $div_custom_fields,
+    __('Agent custom fields'),
+    '',
+    '',
+    true,
+    true,
+    '',
+    'white-box-content',
+    'white_table_graph'
+);
+
+$table->colspan[3][0] = 7;
+$table->cellstyle[3][0] = 'padding-left: 10px;padding-bottom: 0px;';
+$table->data[3][0] = ui_toggle(
+    html_print_table(
+        $table2,
+        true
+    ),
+    __('Advanced options'),
+    '',
+    '',
+    true,
+    true,
+    '',
+    'white-box-content',
+    'white_table_graph'
+);
+
+$table->colspan[4][0] = 7;
+$table->cellstyle[4][0] = 'padding-top: 0px;';
+$table->data[4][0] = html_print_submit_button(
+    __('Show'),
+    'uptbutton',
+    false,
+    'class="sub search mgn_tp_0 right"',
+    true
+);
+
+$filters .= html_print_table($table, true);
+$filters .= '</form>';
+
+if (is_metaconsole() === true) {
+    ui_toggle($filters, __('Show filters'), '', '', false);
+} else {
+    echo $filters;
+}
+
+unset($table);
+// End Build Search Form.
+//
+// Sort functionality.
+$selected = true;
+$selectAgentNameUp = false;
+$selectAgentNameDown = false;
+$selectDataTypeUp = false;
+$selectDataTypeDown = false;
+$selectTypeUp = false;
+$selectTypeDown = false;
+$selectModuleNameUp = false;
+$selectModuleNameDown = false;
+$selectIntervalUp = false;
+$selectIntervalDown = false;
+$selectStatusUp = false;
+$selectStatusDown = false;
+$selectDataUp = false;
+$selectDataDown = false;
+$selectTimestampUp = false;
+$selectTimestampDown = false;
+$order = null;
+
+switch ($sortField) {
+    case 'agent_alias':
+        switch ($sort) {
+            case 'up':
+                $selectAgentNameUp = $selected;
+                $order = [
+                    'field' => 'tagente.alias',
+                    'order' => 'ASC',
+                ];
+            break;
+
+            case 'down':
+                $selectAgentNameDown = $selected;
+                $order = [
+                    'field' => 'tagente.alias',
+                    'order' => 'DESC',
+                ];
+            break;
         }
+    break;
 
-        unset($table);
-        // End Build Search Form.
-        //
-        // Sort functionality.
-        $selected = true;
-        $selectAgentNameUp = false;
+    case 'type':
+        switch ($sort) {
+            case 'up':
+                $selectDataTypeUp = $selected;
+                $order = [
+                    'field' => 'tagente_modulo.id_tipo_modulo',
+                    'order' => 'ASC',
+                ];
+            break;
+
+            case 'down':
+                $selectDataTypeDown = $selected;
+                $order = [
+                    'field' => 'tagente_modulo.id_tipo_modulo',
+                    'order' => 'DESC',
+                ];
+            break;
+        }
+    break;
+
+    case 'moduletype':
+        switch ($sort) {
+            case 'up':
+                $selectTypeUp = $selected;
+                $order = [
+                    'field' => 'tagente_modulo.id_modulo',
+                    'order' => 'ASC',
+                ];
+            break;
+
+            case 'down':
+                $selectTypeDown = $selected;
+                $order = [
+                    'field' => 'tagente_modulo.id_modulo',
+                    'order' => 'DESC',
+                ];
+            break;
+        }
+    break;
+
+    case 'module_name':
+        switch ($sort) {
+            case 'up':
+                $selectModuleNameUp = $selected;
+                $order = [
+                    'field' => 'tagente_modulo.nombre',
+                    'order' => 'ASC',
+                ];
+            break;
+
+            case 'down':
+                $selectModuleNameDown = $selected;
+                $order = [
+                    'field' => 'tagente_modulo.nombre',
+                    'order' => 'DESC',
+                ];
+            break;
+        }
+    break;
+
+    case 'interval':
+        switch ($sort) {
+            case 'up':
+                $selectIntervalUp = $selected;
+                $order = [
+                    'field' => 'tagente_modulo.module_interval',
+                    'order' => 'ASC',
+                ];
+            break;
+
+            case 'down':
+                $selectIntervalDown = $selected;
+                $order = [
+                    'field' => 'tagente_modulo.module_interval',
+                    'order' => 'DESC',
+                ];
+            break;
+        }
+    break;
+
+    case 'status':
+        switch ($sort) {
+            case 'up':
+                $selectStatusUp = $selected;
+                $order = [
+                    'field' => 'tagente_estado.estado',
+                    'order' => 'ASC',
+                ];
+            break;
+
+            case 'down':
+                $selectStatusDown = $selected;
+                $order = [
+                    'field' => 'tagente_estado.estado',
+                    'order' => 'DESC',
+                ];
+            break;
+        }
+    break;
+
+    case 'last_status_change':
+        switch ($sort) {
+            case 'up':
+                $selectStatusUp = $selected;
+                $order = [
+                    'field' => 'tagente_estado.last_status_change',
+                    'order' => 'ASC',
+                ];
+            break;
+
+            case 'down':
+                $selectStatusDown = $selected;
+                $order = [
+                    'field' => 'tagente_estado.last_status_change',
+                    'order' => 'DESC',
+                ];
+            break;
+        }
+    break;
+
+    case 'timestamp':
+        switch ($sort) {
+            case 'up':
+                $selectTimestampUp = $selected;
+                $order = [
+                    'field' => 'tagente_estado.utimestamp',
+                    'order' => 'ASC',
+                ];
+            break;
+
+            case 'down':
+                $selectTimestampDown = $selected;
+                $order = [
+                    'field' => 'tagente_estado.utimestamp',
+                    'order' => 'DESC',
+                ];
+            break;
+        }
+    break;
+
+    case 'data':
+        switch ($sort) {
+            case 'up':
+                $selectDataUp = $selected;
+                $order = [
+                    'field' => 'tagente_estado.datos',
+                    'order' => 'ASC',
+                ];
+            break;
+
+            case 'down':
+                $selectDataDown = $selected;
+                $order = [
+                    'field' => 'tagente_estado.datos',
+                    'order' => 'DESC',
+                ];
+            break;
+        }
+    break;
+
+    default:
+        $selectAgentNameUp = $selected;
         $selectAgentNameDown = false;
         $selectDataTypeUp = false;
         $selectDataTypeDown = false;
@@ -896,212 +1095,12 @@ $table->data[4][0] .= __('Not condition').'&nbsp;'.ui_print_help_tip(__('If you
         $selectDataDown = false;
         $selectTimestampUp = false;
         $selectTimestampDown = false;
-        $order = null;
-
-        switch ($sortField) {
-            case 'agent_alias':
-                switch ($sort) {
-                    case 'up':
-                        $selectAgentNameUp = $selected;
-                        $order = [
-                            'field' => 'tagente.alias',
-                            'order' => 'ASC',
-                        ];
-                    break;
-
-                    case 'down':
-                        $selectAgentNameDown = $selected;
-                        $order = [
-                            'field' => 'tagente.alias',
-                            'order' => 'DESC',
-                        ];
-                    break;
-                }
-            break;
-
-            case 'type':
-                switch ($sort) {
-                    case 'up':
-                        $selectDataTypeUp = $selected;
-                        $order = [
-                            'field' => 'tagente_modulo.id_tipo_modulo',
-                            'order' => 'ASC',
-                        ];
-                    break;
-
-                    case 'down':
-                        $selectDataTypeDown = $selected;
-                        $order = [
-                            'field' => 'tagente_modulo.id_tipo_modulo',
-                            'order' => 'DESC',
-                        ];
-                    break;
-                }
-            break;
-
-            case 'moduletype':
-                switch ($sort) {
-                    case 'up':
-                        $selectTypeUp = $selected;
-                        $order = [
-                            'field' => 'tagente_modulo.id_modulo',
-                            'order' => 'ASC',
-                        ];
-                    break;
-
-                    case 'down':
-                        $selectTypeDown = $selected;
-                        $order = [
-                            'field' => 'tagente_modulo.id_modulo',
-                            'order' => 'DESC',
-                        ];
-                    break;
-                }
-            break;
-
-            case 'module_name':
-                switch ($sort) {
-                    case 'up':
-                        $selectModuleNameUp = $selected;
-                        $order = [
-                            'field' => 'tagente_modulo.nombre',
-                            'order' => 'ASC',
-                        ];
-                    break;
-
-                    case 'down':
-                        $selectModuleNameDown = $selected;
-                        $order = [
-                            'field' => 'tagente_modulo.nombre',
-                            'order' => 'DESC',
-                        ];
-                    break;
-                }
-            break;
-
-            case 'interval':
-                switch ($sort) {
-                    case 'up':
-                        $selectIntervalUp = $selected;
-                        $order = [
-                            'field' => 'tagente_modulo.module_interval',
-                            'order' => 'ASC',
-                        ];
-                    break;
-
-                    case 'down':
-                        $selectIntervalDown = $selected;
-                        $order = [
-                            'field' => 'tagente_modulo.module_interval',
-                            'order' => 'DESC',
-                        ];
-                    break;
-                }
-            break;
-
-            case 'status':
-                switch ($sort) {
-                    case 'up':
-                        $selectStatusUp = $selected;
-                        $order = [
-                            'field' => 'tagente_estado.estado',
-                            'order' => 'ASC',
-                        ];
-                    break;
-
-                    case 'down':
-                        $selectStatusDown = $selected;
-                        $order = [
-                            'field' => 'tagente_estado.estado',
-                            'order' => 'DESC',
-                        ];
-                    break;
-                }
-            break;
-
-            case 'last_status_change':
-                switch ($sort) {
-                    case 'up':
-                        $selectStatusUp = $selected;
-                        $order = [
-                            'field' => 'tagente_estado.last_status_change',
-                            'order' => 'ASC',
-                        ];
-                    break;
-
-                    case 'down':
-                        $selectStatusDown = $selected;
-                        $order = [
-                            'field' => 'tagente_estado.last_status_change',
-                            'order' => 'DESC',
-                        ];
-                    break;
-                }
-            break;
-
-            case 'timestamp':
-                switch ($sort) {
-                    case 'up':
-                        $selectTimestampUp = $selected;
-                        $order = [
-                            'field' => 'tagente_estado.utimestamp',
-                            'order' => 'ASC',
-                        ];
-                    break;
-
-                    case 'down':
-                        $selectTimestampDown = $selected;
-                        $order = [
-                            'field' => 'tagente_estado.utimestamp',
-                            'order' => 'DESC',
-                        ];
-                    break;
-                }
-            break;
-
-            case 'data':
-                switch ($sort) {
-                    case 'up':
-                        $selectDataUp = $selected;
-                        $order = [
-                            'field' => 'tagente_estado.datos',
-                            'order' => 'ASC',
-                        ];
-                    break;
-
-                    case 'down':
-                        $selectDataDown = $selected;
-                        $order = [
-                            'field' => 'tagente_estado.datos',
-                            'order' => 'DESC',
-                        ];
-                    break;
-                }
-            break;
-
-            default:
-                $selectAgentNameUp = $selected;
-                $selectAgentNameDown = false;
-                $selectDataTypeUp = false;
-                $selectDataTypeDown = false;
-                $selectTypeUp = false;
-                $selectTypeDown = false;
-                $selectModuleNameUp = false;
-                $selectModuleNameDown = false;
-                $selectIntervalUp = false;
-                $selectIntervalDown = false;
-                $selectStatusUp = false;
-                $selectStatusDown = false;
-                $selectDataUp = false;
-                $selectDataDown = false;
-                $selectTimestampUp = false;
-                $selectTimestampDown = false;
-                $order = [
-                    'field' => 'tagente.alias',
-                    'order' => 'ASC',
-                ];
-            break;
-        }
+        $order = [
+            'field' => 'tagente.alias',
+            'order' => 'ASC',
+        ];
+    break;
+}
 
         $sql = 'SELECT
     (SELECT GROUP_CONCAT(ttag.name SEPARATOR \',\')
@@ -1150,91 +1149,91 @@ $table->data[4][0] .= __('Not condition').'&nbsp;'.ui_print_help_tip(__('If you
 
 
         // We do not show the modules until the user searches with the filter.
-        if ($autosearch) {
-            if (! defined('METACONSOLE')) {
-                $result = db_get_all_rows_sql($sql);
+if ($autosearch) {
+    if (! defined('METACONSOLE')) {
+        $result = db_get_all_rows_sql($sql);
 
-                if ($result === false) {
-                    $result = [];
-                } else {
-                    ui_pagination($count, false, $offset, 0, false, 'offset', true);
-                }
-            } else {
-                // For each server defined and not disabled.
-                $servers = db_get_all_rows_sql(
-                    'SELECT *
+        if ($result === false) {
+            $result = [];
+        } else {
+            ui_pagination($count, false, $offset, 0, false, 'offset', true);
+        }
+    } else {
+        // For each server defined and not disabled.
+        $servers = db_get_all_rows_sql(
+            'SELECT *
 		FROM tmetaconsole_setup
 		WHERE disabled = 0'
-                );
-                if ($servers === false) {
-                    $servers = [];
-                }
-
-                $result = [];
-                $count_modules = 0;
-                foreach ($servers as $server) {
-                    // If connection was good then retrieve all data server.
-                    if (metaconsole_connect($server) == NOERR) {
-                        $connection = true;
-                    } else {
-                        $connection = false;
-                    }
-
-                    $result_server = db_get_all_rows_sql($sql);
-
-                    if (!empty($result_server)) {
-                        // Create HASH login info.
-                        $pwd = $server['auth_token'];
-                        $auth_serialized = json_decode($pwd, true);
-
-                        if (is_array($auth_serialized)) {
-                            $pwd = $auth_serialized['auth_token'];
-                            $api_password = $auth_serialized['api_password'];
-                            $console_user = $auth_serialized['console_user'];
-                            $console_password = $auth_serialized['console_password'];
-                        }
-
-                        $user = $config['id_user'];
-                        $user_rot13 = str_rot13($config['id_user']);
-                        $hashdata = $user.$pwd;
-                        $hashdata = md5($hashdata);
-                        $url_hash = '&'.'loginhash=auto&'.'loginhash_data='.$hashdata.'&'.'loginhash_user='.$user_rot13;
-
-                        foreach ($result_server as $result_element_key => $result_element_value) {
-                            $result_server[$result_element_key]['server_id'] = $server['id'];
-                            $result_server[$result_element_key]['server_name'] = $server['server_name'];
-                            $result_server[$result_element_key]['server_url'] = $server['server_url'].'/';
-                            $result_server[$result_element_key]['hashdata'] = $hashdata;
-                            $result_server[$result_element_key]['user'] = $config['id_user'];
-                            $result_server[$result_element_key]['groups_in_server'] = agents_get_all_groups_agent(
-                                $result_element_value['id_agent'],
-                                $result_element_value['id_group']
-                            );
-
-                            $count_modules++;
-                        }
-
-                        $result = array_merge($result, $result_server);
-                    }
-
-                    metaconsole_restore_db();
-                }
-
-                if ($count_modules > $config['block_size']) {
-                    ui_pagination($count_modules, false, $offset);
-                }
-
-                // Get number of elements of the pagination.
-                $result = ui_meta_get_subset_array($result, $inferior_limit, $superior_limit);
-            }
+        );
+        if ($servers === false) {
+            $servers = [];
         }
 
-        if (($config['dbtype'] == 'oracle') && ($result !== false)) {
-            for ($i = 0; $i < count($result); $i++) {
-                unset($result[$i]['rnum']);
+        $result = [];
+        $count_modules = 0;
+        foreach ($servers as $server) {
+            // If connection was good then retrieve all data server.
+            if (metaconsole_connect($server) == NOERR) {
+                $connection = true;
+            } else {
+                $connection = false;
             }
+
+            $result_server = db_get_all_rows_sql($sql);
+
+            if (!empty($result_server)) {
+                // Create HASH login info.
+                $pwd = $server['auth_token'];
+                $auth_serialized = json_decode($pwd, true);
+
+                if (is_array($auth_serialized)) {
+                    $pwd = $auth_serialized['auth_token'];
+                    $api_password = $auth_serialized['api_password'];
+                    $console_user = $auth_serialized['console_user'];
+                    $console_password = $auth_serialized['console_password'];
+                }
+
+                $user = $config['id_user'];
+                $user_rot13 = str_rot13($config['id_user']);
+                $hashdata = $user.$pwd;
+                $hashdata = md5($hashdata);
+                $url_hash = '&'.'loginhash=auto&'.'loginhash_data='.$hashdata.'&'.'loginhash_user='.$user_rot13;
+
+                foreach ($result_server as $result_element_key => $result_element_value) {
+                    $result_server[$result_element_key]['server_id'] = $server['id'];
+                    $result_server[$result_element_key]['server_name'] = $server['server_name'];
+                    $result_server[$result_element_key]['server_url'] = $server['server_url'].'/';
+                    $result_server[$result_element_key]['hashdata'] = $hashdata;
+                    $result_server[$result_element_key]['user'] = $config['id_user'];
+                    $result_server[$result_element_key]['groups_in_server'] = agents_get_all_groups_agent(
+                        $result_element_value['id_agent'],
+                        $result_element_value['id_group']
+                    );
+
+                    $count_modules++;
+                }
+
+                $result = array_merge($result, $result_server);
+            }
+
+            metaconsole_restore_db();
         }
 
+        if ($count_modules > $config['block_size']) {
+            ui_pagination($count_modules, false, $offset);
+        }
+
+        // Get number of elements of the pagination.
+        $result = ui_meta_get_subset_array($result, $inferior_limit, $superior_limit);
+    }
+}
+
+if (($config['dbtype'] == 'oracle') && ($result !== false)) {
+    for ($i = 0; $i < count($result); $i++) {
+        unset($result[$i]['rnum']);
+    }
+}
+
 
         // Urls to sort the table.
         $url_agent_name = 'index.php?sec='.$section.'&sec2=operation/agentes/status_monitor';
@@ -1284,570 +1283,553 @@ $table->data[4][0] .= __('Not condition').'&nbsp;'.ui_print_help_tip(__('If you
         $url_timestamp_down .= '&sort_field=timestamp&sort=down';
 
         // Start Build List Result.
-        if (!empty($result)) {
-            $table = new StdClass();
-            $table->cellpadding = 0;
-            $table->cellspacing = 0;
-            $table->width = '100%';
-            $table->class = 'info_table';
-            $table->head = [];
-            $table->data = [];
-            $table->size = [];
-            $table->align = [];
+if (!empty($result)) {
+    $table = new StdClass();
+    $table->cellpadding = 0;
+    $table->cellspacing = 0;
+    $table->width = '100%';
+    $table->class = 'info_table';
+    $table->head = [];
+    $table->data = [];
+    $table->size = [];
+    $table->align = [];
 
-            $show_fields = explode(',', $config['status_monitor_fields']);
+    $show_fields = explode(',', $config['status_monitor_fields']);
 
 
-            if (in_array('policy', $show_fields)) {
-                if ($isFunctionPolicies !== ENTERPRISE_NOT_HOOK) {
-                    $table->head[0] = '<span title=\''.__('Policy').'\'>'.__('P.').'</span>';
-                }
-            }
+    if (in_array('policy', $show_fields)) {
+        if ($isFunctionPolicies !== ENTERPRISE_NOT_HOOK) {
+            $table->head[0] = '<span title=\''.__('Policy').'\'>'.__('P.').'</span>';
+        }
+    }
 
-            if (in_array('agent', $show_fields) || is_metaconsole()) {
-                $table->head[1] = __('Agent');
-                $table->head[1] .= ui_get_sorting_arrows($url_agent_name.'up', $url_agent_name.'down', $selectAgentNameUp, $selectAgentNameDown);
-            }
+    if (in_array('agent', $show_fields) || is_metaconsole()) {
+        $table->head[1] = __('Agent');
+        $table->head[1] .= ui_get_sorting_arrows($url_agent_name.'up', $url_agent_name.'down', $selectAgentNameUp, $selectAgentNameDown);
+    }
 
-            if (in_array('data_type', $show_fields) || is_metaconsole()) {
-                $table->head[2] = __('Data Type');
-                $table->head[2] .= ui_get_sorting_arrows($url_type.'up', $url_type.'down', $selectDataTypeUp, $selectDataTypeDown);
-                $table->align[2] = 'left';
-            }
+    if (in_array('data_type', $show_fields) || is_metaconsole()) {
+        $table->head[2] = __('Data Type');
+        $table->head[2] .= ui_get_sorting_arrows($url_type.'up', $url_type.'down', $selectDataTypeUp, $selectDataTypeDown);
+        $table->align[2] = 'left';
+    }
 
-            if (in_array('module_name', $show_fields) || is_metaconsole()) {
-                $table->head[3] = __('Module name');
-                $table->head[3] .= ui_get_sorting_arrows($url_module_name.'up', $url_module_name.'down', $selectModuleNameUp, $selectModuleNameDown);
-            }
+    if (in_array('module_name', $show_fields) || is_metaconsole()) {
+        $table->head[3] = __('Module name');
+        $table->head[3] .= ui_get_sorting_arrows($url_module_name.'up', $url_module_name.'down', $selectModuleNameUp, $selectModuleNameDown);
+    }
 
-            if (in_array('server_type', $show_fields) || is_metaconsole()) {
-                $table->head[4] = __('Server type');
-                $table->head[4] .= ui_get_sorting_arrows($url_server_type.'up', $url_server_type.'down', $selectTypeUp, $selectTypeDown);
-            }
+    if (in_array('server_type', $show_fields) || is_metaconsole()) {
+        $table->head[4] = __('Server type');
+        $table->head[4] .= ui_get_sorting_arrows($url_server_type.'up', $url_server_type.'down', $selectTypeUp, $selectTypeDown);
+    }
 
-            if (in_array('interval', $show_fields) || is_metaconsole()) {
-                $table->head[5] = __('Interval');
-                $table->head[5] .= ui_get_sorting_arrows($url_interval.'up', $url_interval.'down', $selectIntervalUp, $selectIntervalDown);
-                $table->align[5] = 'left';
-            }
+    if (in_array('interval', $show_fields) || is_metaconsole()) {
+        $table->head[5] = __('Interval');
+        $table->head[5] .= ui_get_sorting_arrows($url_interval.'up', $url_interval.'down', $selectIntervalUp, $selectIntervalDown);
+        $table->align[5] = 'left';
+    }
 
-            if (in_array('status', $show_fields) || is_metaconsole()) {
-                $table->head[6] = __('Status');
-                $table->head[6] .= ui_get_sorting_arrows($url_status.'up', $url_status.'down', $selectStatusUp, $selectStatusDown);
-                $table->align[6] = 'left';
-            }
+    if (in_array('status', $show_fields) || is_metaconsole()) {
+        $table->head[6] = __('Status');
+        $table->head[6] .= ui_get_sorting_arrows($url_status.'up', $url_status.'down', $selectStatusUp, $selectStatusDown);
+        $table->align[6] = 'left';
+    }
 
-            if (in_array('last_status_change', $show_fields)) {
-                $table->head[7] = __('Last status change');
-                $table->head[7] .= ui_get_sorting_arrows($url_status.'up', $url_status.'down', $selectStatusUp, $selectStatusDown);
-                $table->align[7] = 'left';
-            }
+    if (in_array('last_status_change', $show_fields)) {
+        $table->head[7] = __('Last status change');
+        $table->head[7] .= ui_get_sorting_arrows($url_status.'up', $url_status.'down', $selectStatusUp, $selectStatusDown);
+        $table->align[7] = 'left';
+    }
 
-            if (in_array('graph', $show_fields) || is_metaconsole()) {
-                $table->head[8] = __('Graph');
-                $table->align[8] = 'left';
-            }
+    if (in_array('graph', $show_fields) || is_metaconsole()) {
+        $table->head[8] = __('Graph');
+        $table->align[8] = 'left';
+    }
 
-            if (in_array('warn', $show_fields) || is_metaconsole()) {
-                $table->head[9] = __('Warn');
-                $table->align[9] = 'left';
-            }
+    if (in_array('warn', $show_fields) || is_metaconsole()) {
+        $table->head[9] = __('Warn');
+        $table->align[9] = 'left';
+    }
 
-            if (in_array('data', $show_fields) || is_metaconsole()) {
-                $table->head[10] = __('Data');
-                $table->align[10] = 'left';
+    if (in_array('data', $show_fields) || is_metaconsole()) {
+        $table->head[10] = __('Data');
+        $table->align[10] = 'left';
+        if (is_metaconsole()) {
+            $table->head[10] .= ui_get_sorting_arrows($url_data.'up', $url_data.'down', $selectDataUp, $selectDataDown);
+        }
+    }
+
+    if (in_array('timestamp', $show_fields) || is_metaconsole()) {
+        $table->head[11] = __('Timestamp');
+        $table->head[11] .= ui_get_sorting_arrows($url_timestamp_up, $url_timestamp_down, $selectTimestampUp, $selectTimestampDown);
+        $table->align[11] = 'left';
+    }
+
+    $id_type_web_content_string = db_get_value(
+        'id_tipo',
+        'ttipo_modulo',
+        'nombre',
+        'web_content_string'
+    );
+
+    foreach ($result as $row) {
+        // Avoid unset, null and false value.
+        if (empty($row['server_name'])) {
+            $row['server_name'] = '';
+        }
+
+        $is_web_content_string = (bool) db_get_value_filter(
+            'id_agente_modulo',
+            'tagente_modulo',
+            [
+                'id_agente_modulo' => $row['id_agente_modulo'],
+                'id_tipo_modulo'   => $id_type_web_content_string,
+            ]
+        );
+
+        // Fixed the goliat sends the strings from web.
+        // Without HTML entities.
+        if ($is_web_content_string) {
+            $row['datos'] = io_safe_input($row['datos']);
+        }
+
+        // Fixed the data from Selenium Plugin.
+        if ($row['datos'] != strip_tags($row['datos'])) {
+            $row['datos'] = io_safe_input($row['datos']);
+        }
+
+        $data = [];
+
+        if (in_array('policy', $show_fields) || is_metaconsole()) {
+            if ($isFunctionPolicies !== ENTERPRISE_NOT_HOOK) {
                 if (is_metaconsole()) {
-                    $table->head[10] .= ui_get_sorting_arrows($url_data.'up', $url_data.'down', $selectDataUp, $selectDataDown);
-                }
-            }
-
-            if (in_array('timestamp', $show_fields) || is_metaconsole()) {
-                $table->head[11] = __('Timestamp');
-                $table->head[11] .= ui_get_sorting_arrows($url_timestamp_up, $url_timestamp_down, $selectTimestampUp, $selectTimestampDown);
-                $table->align[11] = 'left';
-            }
-
-            $id_type_web_content_string = db_get_value(
-                'id_tipo',
-                'ttipo_modulo',
-                'nombre',
-                'web_content_string'
-            );
-
-            foreach ($result as $row) {
-                // Avoid unset, null and false value.
-                if (empty($row['server_name'])) {
-                    $row['server_name'] = '';
+                    $node = metaconsole_get_connection_by_id($row['server_id']);
+                    if (metaconsole_load_external_db($node) !== NOERR) {
+                        // Restore the default connection.
+                        metaconsole_restore_db();
+                        $errors++;
+                        break;
+                    }
                 }
 
-                $is_web_content_string = (bool) db_get_value_filter(
-                    'id_agente_modulo',
-                    'tagente_modulo',
+                $policyInfo = policies_info_module_policy($row['id_agente_modulo']);
+
+                if ($policyInfo === false) {
+                    $data[0] = '';
+                } else {
+                    $linked = policies_is_module_linked($row['id_agente_modulo']);
+
+                    $adopt = false;
+                    if (policies_is_module_adopt($row['id_agente_modulo'])) {
+                        $adopt = true;
+                    }
+
+                    if ($linked) {
+                        if ($adopt) {
+                            $img = 'images/policies_brick.png';
+                            $title = __('(Adopt) ').$policyInfo['name_policy'];
+                        } else {
+                            $img = 'images/policies_mc.png';
+                            $title = $policyInfo['name_policy'];
+                        }
+                    } else {
+                        if ($adopt) {
+                            $img = 'images/policies_not_brick.png';
+                            $title = __('(Unlinked) (Adopt) ').$policyInfo['name_policy'];
+                        } else {
+                            $img = 'images/unlinkpolicy.png';
+                            $title = __('(Unlinked) ').$policyInfo['name_policy'];
+                        }
+                    }
+
+                    if (is_metaconsole()) {
+                        $data[0] = '<a href="?sec=gmodules&sec2=advanced/policymanager&id='.$policyInfo['id_policy'].'">'.html_print_image($img, true, ['title' => $title]).'</a>';
+                    } else {
+                        $data[0] = '<a href="?sec=gmodules&sec2=enterprise/godmode/policies/policies&id='.$policyInfo['id_policy'].'">'.html_print_image($img, true, ['title' => $title]).'</a>';
+                    }
+                }
+
+                if (is_metaconsole()) {
+                    metaconsole_restore_db();
+                }
+            }
+        }
+
+        if (in_array('agent', $show_fields) || is_metaconsole()) {
+            $agent_alias = !empty($row['agent_alias']) ? $row['agent_alias'] : $row['agent_name'];
+
+            // TODO: Calculate hash access before to use it more simply like other sections. I.E. Events view
+            if (defined('METACONSOLE')) {
+                $agent_link = '<a href="'.$row['server_url'].'index.php?'.'sec=estado&'.'sec2=operation/agentes/ver_agente&'.'id_agente='.$row['id_agent'].'&'.'loginhash=auto&'.'loginhash_data='.$row['hashdata'].'&'.'loginhash_user='.str_rot13($row['user']).'">';
+                $agent_alias = ui_print_truncate_text(
+                    $agent_alias,
+                    'agent_small',
+                    false,
+                    true,
+                    false,
+                    '[&hellip;]',
+                    'font-size:7.5pt;'
+                );
+                if (can_user_access_node()) {
+                    $data[1] = $agent_link.'<b>'.$agent_alias.'</b></a>';
+                } else {
+                    $data[1] = $agent_alias;
+                }
+            } else {
+                $data[1] = '<strong><a href="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente='.$row['id_agent'].'">';
+                $data[1] .= ui_print_truncate_text($agent_alias, 'agent_medium', false, true, false, '[&hellip;]', 'font-size:7.5pt;');
+                $data[1] .= '</a></strong>';
+            }
+        }
+
+        if (in_array('data_type', $show_fields) || is_metaconsole()) {
+            $data[2] = html_print_image('images/'.modules_show_icon_type($row['module_type']), true, ['class' => 'invert_filter']);
+            $agent_groups = is_metaconsole() ? $row['groups_in_server'] : agents_get_all_groups_agent($row['id_agent'], $row['id_group']);
+            if (check_acl_one_of_groups($config['id_user'], $agent_groups, 'AW')) {
+                $show_edit_icon = true;
+                if (defined('METACONSOLE')) {
+                    if (!can_user_access_node()) {
+                        $show_edit_icon = false;
+                    }
+
+                    $url_edit_module = $row['server_url'].'index.php?'.'sec=gagente&'.'sec2=godmode/agentes/configurar_agente&'.'id_agente='.$row['id_agent'].'&'.'tab=module&'.'id_agent_module='.$row['id_agente_modulo'].'&'.'edit_module=1'.'&loginhash=auto&loginhash_data='.$row['hashdata'].'&loginhash_user='.str_rot13($row['user']);
+                } else {
+                    $url_edit_module = 'index.php?'.'sec=gagente&'.'sec2=godmode/agentes/configurar_agente&'.'id_agente='.$row['id_agent'].'&'.'tab=module&'.'id_agent_module='.$row['id_agente_modulo'].'&'.'edit_module=1';
+                }
+
+                if ($show_edit_icon) {
+                    $table->cellclass[][2] = 'action_buttons';
+                    $data[2] .= '<a href="'.$url_edit_module.'">'.html_print_image(
+                        'images/config.png',
+                        true,
+                        [
+                            'alt'    => '0',
+                            'border' => '',
+                            'title'  => __('Edit'),
+                        ]
+                    ).'</a>';
+                }
+            }
+        }
+
+        if (in_array('module_name', $show_fields) || is_metaconsole()) {
+            $data[3] = ui_print_truncate_text($row['module_name'], 'module_small', false, true, true);
+            if ($row['extended_info'] != '') {
+                $data[3] .= ui_print_help_tip($row['extended_info'], true, '/images/default_list.png');
+            }
+
+            if ($row['tags'] != '') {
+                $data[3] .= html_print_image(
+                    '/images/tag_red.png',
+                    true,
                     [
-                        'id_agente_modulo' => $row['id_agente_modulo'],
-                        'id_tipo_modulo'   => $id_type_web_content_string,
+                        'title' => $row['tags'],
+                        'class' => 'tag_row',
                     ]
                 );
+            }
+        }
 
-                // Fixed the goliat sends the strings from web.
-                // Without HTML entities.
-                if ($is_web_content_string) {
-                            $row['datos'] = io_safe_input($row['datos']);
-                }
-
-                // Fixed the data from Selenium Plugin.
-                if ($row['datos'] != strip_tags($row['datos'])) {
-                    $row['datos'] = io_safe_input($row['datos']);
-                }
-
-                $data = [];
-
-                if (in_array('policy', $show_fields) || is_metaconsole()) {
-                    if ($isFunctionPolicies !== ENTERPRISE_NOT_HOOK) {
-                        if (is_metaconsole()) {
-                            $node = metaconsole_get_connection_by_id($row['server_id']);
-                            if (metaconsole_load_external_db($node) !== NOERR) {
-                                // Restore the default connection.
-                                metaconsole_restore_db();
-                                $errors++;
-                                break;
-                            }
-                        }
-
-                        $policyInfo = policies_info_module_policy($row['id_agente_modulo']);
-
-                        if ($policyInfo === false) {
-                            $data[0] = '';
-                        } else {
-                            $linked = policies_is_module_linked($row['id_agente_modulo']);
-
-                            $adopt = false;
-                            if (policies_is_module_adopt($row['id_agente_modulo'])) {
-                                $adopt = true;
-                            }
-
-                            if ($linked) {
-                                if ($adopt) {
-                                    $img = 'images/policies_brick.png';
-                                    $title = __('(Adopt) ').$policyInfo['name_policy'];
-                                } else {
-                                    $img = 'images/policies_mc.png';
-                                    $title = $policyInfo['name_policy'];
-                                }
-                            } else {
-                                if ($adopt) {
-                                    $img = 'images/policies_not_brick.png';
-                                    $title = __('(Unlinked) (Adopt) ').$policyInfo['name_policy'];
-                                } else {
-                                    $img = 'images/unlinkpolicy.png';
-                                    $title = __('(Unlinked) ').$policyInfo['name_policy'];
-                                }
-                            }
-
-                            if (is_metaconsole()) {
-                                $data[0] = '<a href="?sec=gmodules&sec2=advanced/policymanager&id='.$policyInfo['id_policy'].'">'.html_print_image($img, true, ['title' => $title]).'</a>';
-                            } else {
-                                $data[0] = '<a href="?sec=gmodules&sec2=enterprise/godmode/policies/policies&id='.$policyInfo['id_policy'].'">'.html_print_image($img, true, ['title' => $title]).'</a>';
-                            }
-                        }
-
-                        if (is_metaconsole()) {
-                            metaconsole_restore_db();
-                        }
-                    }
-                }
-
-                if (in_array('agent', $show_fields) || is_metaconsole()) {
-                    $agent_alias = !empty($row['agent_alias']) ? $row['agent_alias'] : $row['agent_name'];
-
-                    // TODO: Calculate hash access before to use it more simply like other sections. I.E. Events view
-                    if (defined('METACONSOLE')) {
-                        $agent_link = '<a href="'.$row['server_url'].'index.php?'.'sec=estado&'.'sec2=operation/agentes/ver_agente&'.'id_agente='.$row['id_agent'].'&'.'loginhash=auto&'.'loginhash_data='.$row['hashdata'].'&'.'loginhash_user='.str_rot13($row['user']).'">';
-                        $agent_alias = ui_print_truncate_text(
-                            $agent_alias,
-                            'agent_small',
-                            false,
-                            true,
-                            false,
-                            '[&hellip;]',
-                            'font-size:7.5pt;'
-                        );
-                        if (can_user_access_node()) {
-                            $data[1] = $agent_link.'<b>'.$agent_alias.'</b></a>';
-                        } else {
-                            $data[1] = $agent_alias;
-                        }
-                    } else {
-                        $data[1] = '<strong><a href="index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente='.$row['id_agent'].'">';
-                        $data[1] .= ui_print_truncate_text($agent_alias, 'agent_medium', false, true, false, '[&hellip;]', 'font-size:7.5pt;');
-                        $data[1] .= '</a></strong>';
-                    }
-                }
-
-                if (in_array('data_type', $show_fields) || is_metaconsole()) {
-                    $data[2] = html_print_image('images/'.modules_show_icon_type($row['module_type']), true, ['class' => 'invert_filter']);
-                    $agent_groups = is_metaconsole() ? $row['groups_in_server'] : agents_get_all_groups_agent($row['id_agent'], $row['id_group']);
-                    if (check_acl_one_of_groups($config['id_user'], $agent_groups, 'AW')) {
-                        $show_edit_icon = true;
-                        if (defined('METACONSOLE')) {
-                            if (!can_user_access_node()) {
-                                $show_edit_icon = false;
-                            }
-
-                            $url_edit_module = $row['server_url'].'index.php?'.'sec=gagente&'.'sec2=godmode/agentes/configurar_agente&'.'id_agente='.$row['id_agent'].'&'.'tab=module&'.'id_agent_module='.$row['id_agente_modulo'].'&'.'edit_module=1'.'&loginhash=auto&loginhash_data='.$row['hashdata'].'&loginhash_user='.str_rot13($row['user']);
-                        } else {
-                            $url_edit_module = 'index.php?'.'sec=gagente&'.'sec2=godmode/agentes/configurar_agente&'.'id_agente='.$row['id_agent'].'&'.'tab=module&'.'id_agent_module='.$row['id_agente_modulo'].'&'.'edit_module=1';
-                        }
-
-                        if ($show_edit_icon) {
-                            $table->cellclass[][2] = 'action_buttons';
-                            $data[2] .= '<a href="'.$url_edit_module.'">'.html_print_image(
-                                'images/config.png',
-                                true,
-                                [
-                                    'alt'    => '0',
-                                    'border' => '',
-                                    'title'  => __('Edit'),
-                                ]
-                            ).'</a>';
-                        }
-                    }
-                }
-
-                if (in_array('module_name', $show_fields) || is_metaconsole()) {
-                    $data[3] = ui_print_truncate_text($row['module_name'], 'module_small', false, true, true);
-                    if ($row['extended_info'] != '') {
-                        $data[3] .= ui_print_help_tip($row['extended_info'], true, '/images/default_list.png');
-                    }
-
-                    if ($row['tags'] != '') {
-                        $data[3] .= html_print_image(
-                            '/images/tag_red.png',
-                            true,
-                            [
-                                'title' => $row['tags'],
-                                'class' => 'tag_row',
-                            ]
-                        );
-                    }
-                }
-
-                if (in_array('server_type', $show_fields) || is_metaconsole()) {
-                    $data[4] = servers_show_type($row['id_modulo']);
-                }
+        if (in_array('server_type', $show_fields) || is_metaconsole()) {
+            $data[4] = servers_show_type($row['id_modulo']);
+        }
 
 
-                if (in_array('module_name', $show_fields) || is_metaconsole()) {
-                    $data[3] = ui_print_truncate_text($row['module_name'], 'module_small', false, true, true);
-                    if ($row['extended_info'] != '') {
-                        $data[3] .= ui_print_help_tip($row['extended_info'], true, '/images/default_list.png');
-                    }
+        if (in_array('module_name', $show_fields) || is_metaconsole()) {
+            $data[3] = ui_print_truncate_text($row['module_name'], 'module_small', false, true, true);
+            if ($row['extended_info'] != '') {
+                $data[3] .= ui_print_help_tip($row['extended_info'], true, '/images/default_list.png');
+            }
 
-                    if ($row['tags'] != '') {
-                        $data[3] .= html_print_image(
-                            '/images/tag_red.png',
-                            true,
-                            [
-                                'title' => $row['tags'],
-                                'class' => 'tag_row invert_filter',
-                            ]
-                        );
-                    }
-                }
+            if ($row['tags'] != '') {
+                $data[3] .= html_print_image(
+                    '/images/tag_red.png',
+                    true,
+                    [
+                        'title' => $row['tags'],
+                        'class' => 'tag_row invert_filter',
+                    ]
+                );
+            }
+        }
 
-                if (in_array('server_type', $show_fields) || is_metaconsole()) {
-                    $data[4] = servers_show_type($row['id_modulo']);
-                }
+        if (in_array('server_type', $show_fields) || is_metaconsole()) {
+            $data[4] = servers_show_type($row['id_modulo']);
+        }
 
 
-                if (in_array('interval', $show_fields) || is_metaconsole()) {
-                    $data[5] = ($row['module_interval'] == 0) ? human_time_description_raw($row['agent_interval']) : human_time_description_raw($row['module_interval']);
-                }
+        if (in_array('interval', $show_fields) || is_metaconsole()) {
+            $data[5] = ($row['module_interval'] == 0) ? human_time_description_raw($row['agent_interval']) : human_time_description_raw($row['module_interval']);
+        }
 
-                if (in_array('status', $show_fields) || is_metaconsole()) {
-                    if ($row['utimestamp'] == 0 && (($row['module_type'] < 21
-                        || $row['module_type'] > 23) && $row['module_type'] != 100)
-                    ) {
-                        $data[6] = ui_print_status_image(
-                            STATUS_MODULE_NO_DATA,
-                            __('NOT INIT'),
-                            true
-                        );
-                    } else if ($row['estado'] == 0) {
-                        if (is_numeric($row['datos'])) {
-                            $data[6] = ui_print_status_image(
-                                STATUS_MODULE_OK,
-                                __('NORMAL').': '.remove_right_zeros(number_format($row['datos'], $config['graph_precision'])),
-                                true
-                            );
-                        } else {
-                            $data[6] = ui_print_status_image(
-                                STATUS_MODULE_OK,
-                                __('NORMAL').': '.htmlspecialchars($row['datos']),
-                                true
-                            );
-                        }
-                    } else if ($row['estado'] == 1) {
-                        if (is_numeric($row['datos'])) {
-                            $data[6] = ui_print_status_image(
-                                STATUS_MODULE_CRITICAL,
-                                __('CRITICAL').': '.remove_right_zeros(
-                                    number_format($row['datos'], $config['graph_precision'])
-                                ),
-                                true
-                            );
-                        } else {
-                            $data[6] = ui_print_status_image(
-                                STATUS_MODULE_CRITICAL,
-                                __('CRITICAL').': '.htmlspecialchars($row['datos']),
-                                true
-                            );
-                        }
-                    } else if ($row['estado'] == 2) {
-                        if (is_numeric($row['datos'])) {
-                            $data[6] = ui_print_status_image(
-                                STATUS_MODULE_WARNING,
-                                __('WARNING').': '.remove_right_zeros(
-                                    number_format($row['datos'], $config['graph_precision'])
-                                ),
-                                true
-                            );
-                        } else {
-                            $data[6] = ui_print_status_image(
-                                STATUS_MODULE_WARNING,
-                                __('WARNING').': '.htmlspecialchars($row['datos']),
-                                true
-                            );
-                        }
-                    } else if ($row['estado'] == 3) {
-                        if (is_numeric($row['datos'])) {
-                            $data[6] = ui_print_status_image(
-                                STATUS_MODULE_UNKNOWN,
-                                __('UNKNOWN').': '.remove_right_zeros(
-                                    number_format($row['datos'], $config['graph_precision'])
-                                ),
-                                true
-                            );
-                        } else {
-                            $data[6] = ui_print_status_image(
-                                STATUS_MODULE_UNKNOWN,
-                                __('UNKNOWN').': '.htmlspecialchars($row['datos']),
-                                true
-                            );
-                        }
-                    } else if ($row['estado'] == 4) {
-                        if (is_numeric($row['datos'])) {
-                            $data[6] = ui_print_status_image(
-                                STATUS_MODULE_NO_DATA,
-                                __('NO DATA').': '.remove_right_zeros(
-                                    number_format($row['datos'], $config['graph_precision'])
-                                ),
-                                true
-                            );
-                        } else {
-                            $data[6] = ui_print_status_image(
-                                STATUS_MODULE_NO_DATA,
-                                __('NO DATA').': '.htmlspecialchars($row['datos']),
-                                true
-                            );
-                        }
-                    } else {
-                        $last_status = modules_get_agentmodule_last_status(
-                            $row['id_agente_modulo']
-                        );
-                        switch ($last_status) {
-                            case 0:
-                                if (is_numeric($row['datos'])) {
-                                    $data[6] = ui_print_status_image(
-                                        STATUS_MODULE_UNKNOWN,
-                                        __('UNKNOWN').' - '.__('Last status').' '.__('NORMAL').': '.remove_right_zeros(number_format($row['datos'], $config['graph_precision'])),
-                                        true
-                                    );
-                                } else {
-                                    $data[6] = ui_print_status_image(
-                                        STATUS_MODULE_UNKNOWN,
-                                        __('UNKNOWN').' - '.__('Last status').' '.__('NORMAL').': '.htmlspecialchars($row['datos']),
-                                        true
-                                    );
-                                }
-                            break;
-
-                            case 1:
-                                if (is_numeric($row['datos'])) {
-                                    $data[6] = ui_print_status_image(
-                                        STATUS_MODULE_UNKNOWN,
-                                        __('UNKNOWN').' - '.__('Last status').' '.__('CRITICAL').': '.remove_right_zeros(number_format($row['datos'], $config['graph_precision'])),
-                                        true
-                                    );
-                                } else {
-                                    $data[6] = ui_print_status_image(
-                                        STATUS_MODULE_UNKNOWN,
-                                        __('UNKNOWN').' - '.__('Last status').' '.__('CRITICAL').': '.htmlspecialchars($row['datos']),
-                                        true
-                                    );
-                                }
-                            break;
-
-                            case 2:
-                                if (is_numeric($row['datos'])) {
-                                    $data[6] = ui_print_status_image(
-                                        STATUS_MODULE_UNKNOWN,
-                                        __('UNKNOWN').' - '.__('Last status').' '.__('WARNING').': '.remove_right_zeros(number_format($row['datos'], $config['graph_precision'])),
-                                        true
-                                    );
-                                } else {
-                                    $data[6] = ui_print_status_image(
-                                        STATUS_MODULE_UNKNOWN,
-                                        __('UNKNOWN').' - '.__('Last status').' '.__('WARNING').': '.htmlspecialchars($row['datos']),
-                                        true
-                                    );
-                                }
-                            break;
-                        }
-                    }
-                }
-
-                if (in_array('last_status_change', $show_fields) || is_metaconsole()) {
-                    $data[7] = ($row['last_status_change'] > 0) ? human_time_comparation($row['last_status_change']) : __('N/A');
-                }
-
-                if (in_array('graph', $show_fields) || is_metaconsole()) {
-                    $data[8] = '';
-
-                    $acl_graphs = false;
-
-                    // Avoid the check on the metaconsole. Too slow to show/hide an icon depending on the permissions.
-                    if (!is_metaconsole()) {
-                        $agent_groups = agents_get_all_groups_agent($row['id_agent'], $row['id_group']);
-                        $acl_graphs = check_acl_one_of_groups($config['id_user'], $agent_groups, 'RR');
-                    } else {
-                        $acl_graphs = true;
-                    }
-
-                    if ($row['history_data'] == 1 && $acl_graphs) {
-                        $tresholds = true;
-                        if (empty((float) $module['min_warning']) === true
-                            && empty((float) $module['max_warning']) === true
-                            && empty($module['warning_inverse']) === true
-                            && empty((float) $module['min_critical']) === true
-                            && empty((float) $module['max_critical']) === true
-                            && empty($module['critical_inverse']) === true
-                        ) {
-                            $tresholds = false;
-                        }
-
-                        $graph_type = return_graphtype($row['module_type']);
-
-                        $url = ui_get_full_url('operation/agentes/stat_win.php', false, false, false);
-                        $handle = dechex(crc32($row['id_agente_modulo'].$row['module_name']));
-                        $win_handle = 'day_'.$handle;
-
-                        $graph_params = [
-                            'type'    => $graph_type,
-                            'period'  => SECONDS_1DAY,
-                            'id'      => $row['id_agente_modulo'],
-                            'refresh' => SECONDS_10MINUTES,
-                        ];
-
-                        if ($tresholds === true || $graph_type === 'boolean') {
-                            $graph_params['histogram'] = 1;
-                        }
-
-                        if (is_metaconsole() && isset($row['server_id'])) {
-                            // Set the server id.
-                            $graph_params['server'] = $row['server_id'];
-                        }
-
-                        $graph_params_str = http_build_query($graph_params);
-
-                        $link = 'winopeng_var(\''.$url.'?'.$graph_params_str.'\',\''.$win_handle.'\', 800, 480)';
-
-                        $data[8] = get_module_realtime_link_graph($row);
-
-                        if ($tresholds === true || $graph_type === 'boolean') {
-                            $data[8] .= '<a href="javascript:'.$link.'">'.html_print_image(
-                                'images/histograma.png',
-                                true,
-                                [
-                                    'border' => '0',
-                                    'alt'    => '',
-                                    'class'  => 'invert_filter',
-                                ]
-                            ).'</a>';
-                        }
-
-                        if (!is_snapshot_data($row['datos'])) {
-                            if ($tresholds === true || $graph_type === 'boolean') {
-                                unset($graph_params['histogram']);
-                            }
-
-                            $graph_params_str = http_build_query($graph_params);
-
-                            $link = 'winopeng_var(\''.$url.'?'.$graph_params_str.'\',\''.$win_handle.'\', 800, 480)';
-                            $data[8] .= '<a href="javascript:'.$link.'">'.html_print_image('images/chart.png', true, ['border' => '0', 'alt' => '', 'class' => 'invert_filter']).'</a>';
-                        }
-
-                        $data[8] .= '<a href="javascript: show_module_detail_dialog('.$row['id_agente_modulo'].', '.$row['id_agent'].', \''.$row['server_name'].'\', 0, '.SECONDS_1DAY.', \''.$row['module_name'].'\')">'.html_print_image(
-                            'images/binary.png',
-                            true,
-                            [
-                                'border' => '0',
-                                'alt'    => '',
-                                'class'  => 'invert_filter',
-                            ]
-                        ).'</a>';
-
-                        $data[8] .= '<span id=\'hidden_name_module_'.$row['id_agente_modulo'].'\'
-								class=\'invisible\'>'.$row['module_name'].'</span>';
-                    }
-                }
-
-                if (in_array('warn', $show_fields) || is_metaconsole()) {
-                    $data[9] = ui_print_module_warn_value(
-                        $row['max_warning'],
-                        $row['min_warning'],
-                        $row['str_warning'],
-                        $row['max_critical'],
-                        $row['min_critical'],
-                        $row['str_critical'],
-                        $row['warning_inverse'],
-                        $row['critical_inverse']
+        if (in_array('status', $show_fields) || is_metaconsole()) {
+            if ($row['utimestamp'] == 0 && (($row['module_type'] < 21
+                || $row['module_type'] > 23) && $row['module_type'] != 100)
+            ) {
+                $data[6] = ui_print_status_image(
+                    STATUS_MODULE_NO_DATA,
+                    __('NOT INIT'),
+                    true
+                );
+            } else if ($row['estado'] == 0) {
+                if (is_numeric($row['datos'])) {
+                    $data[6] = ui_print_status_image(
+                        STATUS_MODULE_OK,
+                        __('NORMAL').': '.remove_right_zeros(number_format($row['datos'], $config['graph_precision'])),
+                        true
                     );
-
-                    if (is_numeric($row['datos']) && !modules_is_string_type($row['module_type'])) {
-                        if ($config['render_proc']) {
-                            switch ($row['module_type']) {
-                                case 2:
-                                case 6:
-                                case 9:
-                                case 18:
-                                case 21:
-                                case 31:
-                                    if ($row['datos'] >= 1) {
-                                        $salida = $config['render_proc_ok'];
-                                    } else {
-                                        $salida = $config['render_proc_fail'];
-                                    }
-                                break;
-
-                                default:
-                                    switch ($row['module_type']) {
-                                        case 15:
-                                            $value = db_get_value('snmp_oid', 'tagente_modulo', 'id_agente_modulo', $row['id_agente_modulo']);
-                                            if ($value == '.1.3.6.1.2.1.1.3.0' || $value == '.1.3.6.1.2.1.25.1.1.0') {
-                                                $salida = human_milliseconds_to_string($row['datos']);
-                                            } else {
-                                                $salida = remove_right_zeros(number_format($row['datos'], $config['graph_precision']));
-                                            }
-                                        break;
-
-                                        default:
-                                            $salida = remove_right_zeros(number_format($row['datos'], $config['graph_precision']));
-                                        break;
-                                    }
-                                break;
-                            }
+                } else {
+                    $data[6] = ui_print_status_image(
+                        STATUS_MODULE_OK,
+                        __('NORMAL').': '.htmlspecialchars($row['datos']),
+                        true
+                    );
+                }
+            } else if ($row['estado'] == 1) {
+                if (is_numeric($row['datos'])) {
+                    $data[6] = ui_print_status_image(
+                        STATUS_MODULE_CRITICAL,
+                        __('CRITICAL').': '.remove_right_zeros(
+                            number_format($row['datos'], $config['graph_precision'])
+                        ),
+                        true
+                    );
+                } else {
+                    $data[6] = ui_print_status_image(
+                        STATUS_MODULE_CRITICAL,
+                        __('CRITICAL').': '.htmlspecialchars($row['datos']),
+                        true
+                    );
+                }
+            } else if ($row['estado'] == 2) {
+                if (is_numeric($row['datos'])) {
+                    $data[6] = ui_print_status_image(
+                        STATUS_MODULE_WARNING,
+                        __('WARNING').': '.remove_right_zeros(
+                            number_format($row['datos'], $config['graph_precision'])
+                        ),
+                        true
+                    );
+                } else {
+                    $data[6] = ui_print_status_image(
+                        STATUS_MODULE_WARNING,
+                        __('WARNING').': '.htmlspecialchars($row['datos']),
+                        true
+                    );
+                }
+            } else if ($row['estado'] == 3) {
+                if (is_numeric($row['datos'])) {
+                    $data[6] = ui_print_status_image(
+                        STATUS_MODULE_UNKNOWN,
+                        __('UNKNOWN').': '.remove_right_zeros(
+                            number_format($row['datos'], $config['graph_precision'])
+                        ),
+                        true
+                    );
+                } else {
+                    $data[6] = ui_print_status_image(
+                        STATUS_MODULE_UNKNOWN,
+                        __('UNKNOWN').': '.htmlspecialchars($row['datos']),
+                        true
+                    );
+                }
+            } else if ($row['estado'] == 4) {
+                if (is_numeric($row['datos'])) {
+                    $data[6] = ui_print_status_image(
+                        STATUS_MODULE_NO_DATA,
+                        __('NO DATA').': '.remove_right_zeros(
+                            number_format($row['datos'], $config['graph_precision'])
+                        ),
+                        true
+                    );
+                } else {
+                    $data[6] = ui_print_status_image(
+                        STATUS_MODULE_NO_DATA,
+                        __('NO DATA').': '.htmlspecialchars($row['datos']),
+                        true
+                    );
+                }
+            } else {
+                $last_status = modules_get_agentmodule_last_status(
+                    $row['id_agente_modulo']
+                );
+                switch ($last_status) {
+                    case 0:
+                        if (is_numeric($row['datos'])) {
+                            $data[6] = ui_print_status_image(
+                                STATUS_MODULE_UNKNOWN,
+                                __('UNKNOWN').' - '.__('Last status').' '.__('NORMAL').': '.remove_right_zeros(number_format($row['datos'], $config['graph_precision'])),
+                                true
+                            );
                         } else {
+                            $data[6] = ui_print_status_image(
+                                STATUS_MODULE_UNKNOWN,
+                                __('UNKNOWN').' - '.__('Last status').' '.__('NORMAL').': '.htmlspecialchars($row['datos']),
+                                true
+                            );
+                        }
+                    break;
+
+                    case 1:
+                        if (is_numeric($row['datos'])) {
+                            $data[6] = ui_print_status_image(
+                                STATUS_MODULE_UNKNOWN,
+                                __('UNKNOWN').' - '.__('Last status').' '.__('CRITICAL').': '.remove_right_zeros(number_format($row['datos'], $config['graph_precision'])),
+                                true
+                            );
+                        } else {
+                            $data[6] = ui_print_status_image(
+                                STATUS_MODULE_UNKNOWN,
+                                __('UNKNOWN').' - '.__('Last status').' '.__('CRITICAL').': '.htmlspecialchars($row['datos']),
+                                true
+                            );
+                        }
+                    break;
+
+                    case 2:
+                        if (is_numeric($row['datos'])) {
+                            $data[6] = ui_print_status_image(
+                                STATUS_MODULE_UNKNOWN,
+                                __('UNKNOWN').' - '.__('Last status').' '.__('WARNING').': '.remove_right_zeros(number_format($row['datos'], $config['graph_precision'])),
+                                true
+                            );
+                        } else {
+                            $data[6] = ui_print_status_image(
+                                STATUS_MODULE_UNKNOWN,
+                                __('UNKNOWN').' - '.__('Last status').' '.__('WARNING').': '.htmlspecialchars($row['datos']),
+                                true
+                            );
+                        }
+                    break;
+                }
+            }
+        }
+
+        if (in_array('last_status_change', $show_fields) || is_metaconsole()) {
+            $data[7] = ($row['last_status_change'] > 0) ? human_time_comparation($row['last_status_change']) : __('N/A');
+        }
+
+        if (in_array('graph', $show_fields) || is_metaconsole()) {
+            $data[8] = '';
+
+            $acl_graphs = false;
+
+            // Avoid the check on the metaconsole. Too slow to show/hide an icon depending on the permissions.
+            if (!is_metaconsole()) {
+                $agent_groups = agents_get_all_groups_agent($row['id_agent'], $row['id_group']);
+                $acl_graphs = check_acl_one_of_groups($config['id_user'], $agent_groups, 'RR');
+            } else {
+                $acl_graphs = true;
+            }
+
+            if ($row['history_data'] == 1 && $acl_graphs) {
+                $tresholds = true;
+                if (empty((float) $module['min_warning']) === true
+                    && empty((float) $module['max_warning']) === true
+                    && empty($module['warning_inverse']) === true
+                    && empty((float) $module['min_critical']) === true
+                    && empty((float) $module['max_critical']) === true
+                    && empty($module['critical_inverse']) === true
+                ) {
+                    $tresholds = false;
+                }
+
+                $graph_type = return_graphtype($row['module_type']);
+
+                $url = ui_get_full_url('operation/agentes/stat_win.php', false, false, false);
+                $handle = dechex(crc32($row['id_agente_modulo'].$row['module_name']));
+                $win_handle = 'day_'.$handle;
+
+                $graph_params = [
+                    'type'    => $graph_type,
+                    'period'  => SECONDS_1DAY,
+                    'id'      => $row['id_agente_modulo'],
+                    'refresh' => SECONDS_10MINUTES,
+                ];
+
+                if ($tresholds === true || $graph_type === 'boolean') {
+                    $graph_params['histogram'] = 1;
+                }
+
+                if (is_metaconsole() && isset($row['server_id'])) {
+                    // Set the server id.
+                    $graph_params['server'] = $row['server_id'];
+                }
+
+                $graph_params_str = http_build_query($graph_params);
+
+                $link = 'winopeng_var(\''.$url.'?'.$graph_params_str.'\',\''.$win_handle.'\', 800, 480)';
+
+                $data[8] = get_module_realtime_link_graph($row);
+
+                if ($tresholds === true || $graph_type === 'boolean') {
+                    $data[8] .= '<a href="javascript:'.$link.'">'.html_print_image(
+                        'images/histograma.png',
+                        true,
+                        [
+                            'border' => '0',
+                            'alt'    => '',
+                            'class'  => 'invert_filter',
+                        ]
+                    ).'</a>';
+                }
+
+                if (!is_snapshot_data($row['datos'])) {
+                    if ($tresholds === true || $graph_type === 'boolean') {
+                        unset($graph_params['histogram']);
+                    }
+
+                    $graph_params_str = http_build_query($graph_params);
+
+                    $link = 'winopeng_var(\''.$url.'?'.$graph_params_str.'\',\''.$win_handle.'\', 800, 480)';
+                    $data[8] .= '<a href="javascript:'.$link.'">'.html_print_image('images/chart.png', true, ['border' => '0', 'alt' => '', 'class' => 'invert_filter']).'</a>';
+                }
+
+                $data[8] .= '<a href="javascript: show_module_detail_dialog('.$row['id_agente_modulo'].', '.$row['id_agent'].', \''.$row['server_name'].'\', 0, '.SECONDS_1DAY.', \''.$row['module_name'].'\')">'.html_print_image(
+                    'images/binary.png',
+                    true,
+                    [
+                        'border' => '0',
+                        'alt'    => '',
+                        'class'  => 'invert_filter',
+                    ]
+                ).'</a>';
+
+                $data[8] .= '<span id=\'hidden_name_module_'.$row['id_agente_modulo'].'\'
+								class=\'invisible\'>'.$row['module_name'].'</span>';
+            }
+        }
+
+        if (in_array('warn', $show_fields) || is_metaconsole()) {
+            $data[9] = ui_print_module_warn_value(
+                $row['max_warning'],
+                $row['min_warning'],
+                $row['str_warning'],
+                $row['max_critical'],
+                $row['min_critical'],
+                $row['str_critical'],
+                $row['warning_inverse'],
+                $row['critical_inverse']
+            );
+
+            if (is_numeric($row['datos']) && !modules_is_string_type($row['module_type'])) {
+                if ($config['render_proc']) {
+                    switch ($row['module_type']) {
+                        case 2:
+                        case 6:
+                        case 9:
+                        case 18:
+                        case 21:
+                        case 31:
+                            if ($row['datos'] >= 1) {
+                                $salida = $config['render_proc_ok'];
+                            } else {
+                                $salida = $config['render_proc_fail'];
+                            }
+                        break;
+
+                        default:
                             switch ($row['module_type']) {
                                 case 15:
                                     $value = db_get_value('snmp_oid', 'tagente_modulo', 'id_agente_modulo', $row['id_agente_modulo']);
@@ -1862,128 +1844,145 @@ $table->data[4][0] .= __('Not condition').'&nbsp;'.ui_print_help_tip(__('If you
                                     $salida = remove_right_zeros(number_format($row['datos'], $config['graph_precision']));
                                 break;
                             }
-                        }
+                        break;
+                    }
+                } else {
+                    switch ($row['module_type']) {
+                        case 15:
+                            $value = db_get_value('snmp_oid', 'tagente_modulo', 'id_agente_modulo', $row['id_agente_modulo']);
+                            if ($value == '.1.3.6.1.2.1.1.3.0' || $value == '.1.3.6.1.2.1.25.1.1.0') {
+                                $salida = human_milliseconds_to_string($row['datos']);
+                            } else {
+                                $salida = remove_right_zeros(number_format($row['datos'], $config['graph_precision']));
+                            }
+                        break;
 
-                        // Show units ONLY in numeric data types.
-                        if (isset($row['unit'])) {
+                        default:
+                            $salida = remove_right_zeros(number_format($row['datos'], $config['graph_precision']));
+                        break;
+                    }
+                }
+
+                // Show units ONLY in numeric data types.
+                if (isset($row['unit'])) {
+                    $data_macro = modules_get_unit_macro($row['datos'], $row['unit']);
+                    if ($data_macro) {
+                        $salida = $data_macro;
+                    } else {
+                        $salida .= '&nbsp;'.'<i>'.io_safe_output($row['unit']).'</i>';
+                        if (strlen($salida) > $config['agent_size_text_small']) {
+                            $salida = ui_print_truncate_text($salida, 'agent_small', true, true, false, '[&hellip;]', 'font-size:7.5pt;');
+                            // Clean tag <i>.
+                            $text_aux = explode('<a', $salida);
+                            $match = preg_replace('/(&lt;i&gt;|&lt;\/i&gt;|&lt;i|&lt;\/i|i&gt;|\/i&gt;|&lt;|&gt;)/', '', $text_aux[0]);
+                            $salida = $match.'<a'.$text_aux[1];
+                        } else {
+                            $salida = ui_print_truncate_text($salida, 'agent_small', true, true, false, '[&hellip;]', 'font-size:7.5pt;');
+                        }
+                    }
+                }
+            } else {
+                // Fixed the goliat sends the strings from web.
+                // Without HTML entities.
+                if ($is_web_content_string) {
+                    $module_value = $row['datos'];
+                } else {
+                    $module_value = io_safe_output($row['datos']);
+                }
+
+                $is_snapshot = is_snapshot_data($module_value);
+                $is_large_image = is_text_to_black_string($module_value);
+
+                if (($config['command_snapshot']) && ($is_snapshot || $is_large_image)) {
+                    $link = ui_get_snapshot_link(
+                        [
+                            'id_module'   => $row['id_agente_modulo'],
+                            'interval'    => $row['current_interval'],
+                            'module_name' => $row['module_name'],
+                            'id_node'     => $row['server_id'],
+                        ]
+                    );
+                    $salida = ui_get_snapshot_image($link, $is_snapshot).'&nbsp;&nbsp;';
+                } else {
+                    $sub_string = substr(io_safe_output($row['datos']), 0, 12);
+                    if ($module_value == $sub_string) {
+                        if ($module_value == 0 && !$sub_string) {
+                            $salida = 0;
+                        } else {
                             $data_macro = modules_get_unit_macro($row['datos'], $row['unit']);
                             if ($data_macro) {
                                 $salida = $data_macro;
                             } else {
-                                $salida .= '&nbsp;'.'<i>'.io_safe_output($row['unit']).'</i>';
-                                if (strlen($salida) > $config['agent_size_text_small']) {
-                                    $salida = ui_print_truncate_text($salida, 'agent_small', true, true, false, '[&hellip;]', 'font-size:7.5pt;');
-                                    // Clean tag <i>.
-                                    $text_aux = explode('<a', $salida);
-                                    $match = preg_replace('/(&lt;i&gt;|&lt;\/i&gt;|&lt;i|&lt;\/i|i&gt;|\/i&gt;|&lt;|&gt;)/', '', $text_aux[0]);
-                                    $salida = $match.'<a'.$text_aux[1];
-                                } else {
-                                    $salida = ui_print_truncate_text($salida, 'agent_small', true, true, false, '[&hellip;]', 'font-size:7.5pt;');
-                                }
+                                $salida = $row['datos'];
                             }
                         }
                     } else {
                         // Fixed the goliat sends the strings from web.
                         // Without HTML entities.
                         if ($is_web_content_string) {
-                            $module_value = $row['datos'];
+                            $sub_string = substr($row['datos'], 0, 12);
                         } else {
-                            $module_value = io_safe_output($row['datos']);
-                        }
-
-                        $is_snapshot = is_snapshot_data($module_value);
-                        $is_large_image = is_text_to_black_string($module_value);
-
-                        if (($config['command_snapshot']) && ($is_snapshot || $is_large_image)) {
-                            $link = ui_get_snapshot_link(
-                                [
-                                    'id_module'   => $row['id_agente_modulo'],
-                                    'interval'    => $row['current_interval'],
-                                    'module_name' => $row['module_name'],
-                                    'id_node'     => $row['server_id'],
-                                ]
-                            );
-                            $salida = ui_get_snapshot_image($link, $is_snapshot).'&nbsp;&nbsp;';
-                        } else {
-                            $sub_string = substr(io_safe_output($row['datos']), 0, 12);
-                            if ($module_value == $sub_string) {
-                                if ($module_value == 0 && !$sub_string) {
-                                    $salida = 0;
-                                } else {
-                                    $data_macro = modules_get_unit_macro($row['datos'], $row['unit']);
-                                    if ($data_macro) {
-                                        $salida = $data_macro;
-                                    } else {
-                                        $salida = $row['datos'];
-                                    }
-                                }
+                            // Fixed the data from Selenium Plugin.
+                            if ($module_value != strip_tags($module_value)) {
+                                $module_value = io_safe_input($module_value);
+                                $sub_string = substr($row['datos'], 0, 12);
                             } else {
-                                // Fixed the goliat sends the strings from web.
-                                // Without HTML entities.
-                                if ($is_web_content_string) {
-                                    $sub_string = substr($row['datos'], 0, 12);
-                                } else {
-                                    // Fixed the data from Selenium Plugin.
-                                    if ($module_value != strip_tags($module_value)) {
-                                        $module_value = io_safe_input($module_value);
-                                        $sub_string = substr($row['datos'], 0, 12);
-                                    } else {
-                                        $sub_string = substr(io_safe_output($row['datos']), 0, 12);
-                                    }
-                                }
-
-                                if ($module_value == $sub_string) {
-                                    $salida = $module_value;
-                                } else {
-                                    $salida = '<span '."id='hidden_value_module_".$row['id_agente_modulo']."'
-								class='invisible'>".$module_value.'</span>'.'<span '."id='value_module_".$row['id_agente_modulo']."'
-								title='".$module_value."' "."class='nowrap'>".'<span id="value_module_text_'.$row['id_agente_modulo'].'">'.$sub_string.'</span> '."<a href='javascript: toggle_full_value(".$row['id_agente_modulo'].")'>".html_print_image('images/rosette.png', true).'</a></span>';
-                                }
+                                $sub_string = substr(io_safe_output($row['datos']), 0, 12);
                             }
                         }
+
+                        if ($module_value == $sub_string) {
+                            $salida = $module_value;
+                        } else {
+                            $salida = '<span '."id='hidden_value_module_".$row['id_agente_modulo']."'
+								class='invisible'>".$module_value.'</span>'.'<span '."id='value_module_".$row['id_agente_modulo']."'
+								title='".$module_value."' "."class='nowrap'>".'<span id="value_module_text_'.$row['id_agente_modulo'].'">'.$sub_string.'</span> '."<a href='javascript: toggle_full_value(".$row['id_agente_modulo'].")'>".html_print_image('images/rosette.png', true).'</a></span>';
+                        }
                     }
                 }
-
-                if (in_array('data', $show_fields) || is_metaconsole()) {
-                    $data[10] = $salida;
-                }
-
-                if (in_array('timestamp', $show_fields) || is_metaconsole()) {
-                    if ($row['module_interval'] > 0) {
-                        $interval = $row['module_interval'];
-                    } else {
-                        $interval = $row['agent_interval'];
-                    }
-
-                    if ($row['estado'] == 3) {
-                        $option = [
-                            'html_attr' => 'class="redb"',
-                            'style'     => 'font-size:7pt;',
-                        ];
-                    } else {
-                        $option = ['style' => 'font-size:7pt;'];
-                    }
-
-                    $data[11] = ui_print_timestamp($row['utimestamp'], true, $option);
-                }
-
-                array_push($table->data, $data);
-            }
-
-            html_print_table($table);
-
-
-            if ($count_modules > $config['block_size']) {
-                ui_pagination($count_modules, false, $offset, 0, false, 'offset', true, 'pagination-bottom');
-            }
-        } else {
-            if ($first_interaction) {
-                ui_print_info_message(['no_close' => true, 'message' => __('This group doesn\'t have any monitor')]);
-            } else {
-                ui_print_info_message(['no_close' => true, 'message' => __('Sorry no search parameters')]);
             }
         }
 
+        if (in_array('data', $show_fields) || is_metaconsole()) {
+            $data[10] = $salida;
+        }
+
+        if (in_array('timestamp', $show_fields) || is_metaconsole()) {
+            if ($row['module_interval'] > 0) {
+                $interval = $row['module_interval'];
+            } else {
+                $interval = $row['agent_interval'];
+            }
+
+            if ($row['estado'] == 3) {
+                $option = [
+                    'html_attr' => 'class="redb"',
+                    'style'     => 'font-size:7pt;',
+                ];
+            } else {
+                $option = ['style' => 'font-size:7pt;'];
+            }
+
+            $data[11] = ui_print_timestamp($row['utimestamp'], true, $option);
+        }
+
+        array_push($table->data, $data);
+    }
+
+    html_print_table($table);
+
+
+    if ($count_modules > $config['block_size']) {
+        ui_pagination($count_modules, false, $offset, 0, false, 'offset', true, 'pagination-bottom');
+    }
+} else {
+    if ($first_interaction) {
+        ui_print_info_message(['no_close' => true, 'message' => __('This group doesn\'t have any monitor')]);
+    } else {
+        ui_print_info_message(['no_close' => true, 'message' => __('Sorry no search parameters')]);
+    }
+}
+
 
         // End Build List Result.
         echo "<div id='monitor_details_window'></div>";
@@ -1992,7 +1991,7 @@ $table->data[4][0] .= __('Not condition').'&nbsp;'.ui_print_help_tip(__('If you
 
         ui_require_javascript_file('pandora_modules');
 
-        ?>
+?>
 <script type="text/javascript">
 
 if(!document.getElementById('not_condition_switch').checked){

From e47b8ee657ddf0df989af8f5e0a63be60a47c425 Mon Sep 17 00:00:00 2001
From: artica <artica.devel@gmail.com>
Date: Thu, 2 Jun 2022 01:00:20 +0200
Subject: [PATCH 073/138] Auto-updated build strings.

---
 pandora_agents/unix/DEBIAN/control             | 2 +-
 pandora_agents/unix/DEBIAN/make_deb_package.sh | 2 +-
 pandora_agents/unix/pandora_agent              | 2 +-
 pandora_agents/unix/pandora_agent.redhat.spec  | 2 +-
 pandora_agents/unix/pandora_agent.spec         | 2 +-
 pandora_agents/unix/pandora_agent_installer    | 2 +-
 pandora_agents/win32/installer/pandora.mpi     | 2 +-
 pandora_agents/win32/pandora.cc                | 2 +-
 pandora_agents/win32/versioninfo.rc            | 2 +-
 pandora_console/DEBIAN/control                 | 2 +-
 pandora_console/DEBIAN/make_deb_package.sh     | 2 +-
 pandora_console/include/config_process.php     | 2 +-
 pandora_console/install.php                    | 2 +-
 pandora_console/pandora_console.redhat.spec    | 2 +-
 pandora_console/pandora_console.rhel7.spec     | 2 +-
 pandora_console/pandora_console.spec           | 2 +-
 pandora_server/DEBIAN/control                  | 2 +-
 pandora_server/DEBIAN/make_deb_package.sh      | 2 +-
 pandora_server/lib/PandoraFMS/Config.pm        | 2 +-
 pandora_server/lib/PandoraFMS/PluginTools.pm   | 2 +-
 pandora_server/pandora_server.redhat.spec      | 2 +-
 pandora_server/pandora_server.spec             | 2 +-
 pandora_server/pandora_server_installer        | 2 +-
 pandora_server/util/pandora_db.pl              | 2 +-
 pandora_server/util/pandora_manage.pl          | 2 +-
 25 files changed, 25 insertions(+), 25 deletions(-)

diff --git a/pandora_agents/unix/DEBIAN/control b/pandora_agents/unix/DEBIAN/control
index 63f522a0f1..f99df42eeb 100644
--- a/pandora_agents/unix/DEBIAN/control
+++ b/pandora_agents/unix/DEBIAN/control
@@ -1,5 +1,5 @@
 package: pandorafms-agent-unix
-Version: 7.0NG.762-220601
+Version: 7.0NG.762-220602
 Architecture: all
 Priority: optional
 Section: admin
diff --git a/pandora_agents/unix/DEBIAN/make_deb_package.sh b/pandora_agents/unix/DEBIAN/make_deb_package.sh
index c81be8240a..71320cb3e1 100644
--- a/pandora_agents/unix/DEBIAN/make_deb_package.sh
+++ b/pandora_agents/unix/DEBIAN/make_deb_package.sh
@@ -14,7 +14,7 @@
 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 # GNU General Public License for more details.
 
-pandora_version="7.0NG.762-220601"
+pandora_version="7.0NG.762-220602"
 
 echo "Test if you has the tools for to make the packages."
 whereis dpkg-deb | cut -d":" -f2 | grep dpkg-deb > /dev/null
diff --git a/pandora_agents/unix/pandora_agent b/pandora_agents/unix/pandora_agent
index 89e7ea364c..794b866c29 100755
--- a/pandora_agents/unix/pandora_agent
+++ b/pandora_agents/unix/pandora_agent
@@ -1015,7 +1015,7 @@ my $Sem = undef;
 my $ThreadSem = undef;
 
 use constant AGENT_VERSION => '7.0NG.762';
-use constant AGENT_BUILD => '220601';
+use constant AGENT_BUILD => '220602';
 
 # Agent log default file size maximum and instances
 use constant DEFAULT_MAX_LOG_SIZE => 600000;
diff --git a/pandora_agents/unix/pandora_agent.redhat.spec b/pandora_agents/unix/pandora_agent.redhat.spec
index 9ec3ccbb6b..417a230367 100644
--- a/pandora_agents/unix/pandora_agent.redhat.spec
+++ b/pandora_agents/unix/pandora_agent.redhat.spec
@@ -3,7 +3,7 @@
 #
 %define name        pandorafms_agent_unix
 %define version     7.0NG.762
-%define release     220601
+%define release     220602
 
 Summary:            Pandora FMS Linux agent, PERL version
 Name:               %{name}
diff --git a/pandora_agents/unix/pandora_agent.spec b/pandora_agents/unix/pandora_agent.spec
index 5d69552332..efb7056421 100644
--- a/pandora_agents/unix/pandora_agent.spec
+++ b/pandora_agents/unix/pandora_agent.spec
@@ -3,7 +3,7 @@
 #
 %define name        pandorafms_agent_unix
 %define version     7.0NG.762
-%define release     220601
+%define release     220602
 
 Summary:            Pandora FMS Linux agent, PERL version
 Name:               %{name}
diff --git a/pandora_agents/unix/pandora_agent_installer b/pandora_agents/unix/pandora_agent_installer
index 9db5c266b0..0c347e9417 100755
--- a/pandora_agents/unix/pandora_agent_installer
+++ b/pandora_agents/unix/pandora_agent_installer
@@ -10,7 +10,7 @@
 # **********************************************************************
 
 PI_VERSION="7.0NG.762"
-PI_BUILD="220601"
+PI_BUILD="220602"
 OS_NAME=`uname -s`
 
 FORCE=0
diff --git a/pandora_agents/win32/installer/pandora.mpi b/pandora_agents/win32/installer/pandora.mpi
index bf7e0c858f..9840ebbb94 100644
--- a/pandora_agents/win32/installer/pandora.mpi
+++ b/pandora_agents/win32/installer/pandora.mpi
@@ -186,7 +186,7 @@ UpgradeApplicationID
 {}
 
 Version
-{220601}
+{220602}
 
 ViewReadme
 {Yes}
diff --git a/pandora_agents/win32/pandora.cc b/pandora_agents/win32/pandora.cc
index 1d1463d5aa..8206aac8ee 100644
--- a/pandora_agents/win32/pandora.cc
+++ b/pandora_agents/win32/pandora.cc
@@ -30,7 +30,7 @@ using namespace Pandora;
 using namespace Pandora_Strutils;
 
 #define PATH_SIZE    _MAX_PATH+1
-#define PANDORA_VERSION ("7.0NG.762 Build 220601")
+#define PANDORA_VERSION ("7.0NG.762 Build 220602")
 
 string pandora_path;
 string pandora_dir;
diff --git a/pandora_agents/win32/versioninfo.rc b/pandora_agents/win32/versioninfo.rc
index 8c9328585e..3e63ea6305 100644
--- a/pandora_agents/win32/versioninfo.rc
+++ b/pandora_agents/win32/versioninfo.rc
@@ -11,7 +11,7 @@ BEGIN
       VALUE "LegalCopyright", "Artica ST"
       VALUE "OriginalFilename", "PandoraAgent.exe"
       VALUE "ProductName", "Pandora FMS Windows Agent"
-      VALUE "ProductVersion", "(7.0NG.762(Build 220601))"
+      VALUE "ProductVersion", "(7.0NG.762(Build 220602))"
       VALUE "FileVersion", "1.0.0.0"
     END
   END
diff --git a/pandora_console/DEBIAN/control b/pandora_console/DEBIAN/control
index e0fe2f58ce..b2434ad585 100644
--- a/pandora_console/DEBIAN/control
+++ b/pandora_console/DEBIAN/control
@@ -1,5 +1,5 @@
 package: pandorafms-console
-Version: 7.0NG.762-220601
+Version: 7.0NG.762-220602
 Architecture: all
 Priority: optional
 Section: admin
diff --git a/pandora_console/DEBIAN/make_deb_package.sh b/pandora_console/DEBIAN/make_deb_package.sh
index a1397a7e9b..ff4aee9307 100644
--- a/pandora_console/DEBIAN/make_deb_package.sh
+++ b/pandora_console/DEBIAN/make_deb_package.sh
@@ -14,7 +14,7 @@
 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 # GNU General Public License for more details.
 
-pandora_version="7.0NG.762-220601"
+pandora_version="7.0NG.762-220602"
 
 package_pear=0
 package_pandora=1
diff --git a/pandora_console/include/config_process.php b/pandora_console/include/config_process.php
index 206b55b281..c2b7bfb8b0 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 = 'PC220601';
+$build_version = 'PC220602';
 $pandora_version = 'v7.0NG.762';
 
 // Do not overwrite default timezone set if defined.
diff --git a/pandora_console/install.php b/pandora_console/install.php
index 03d0fbdd9a..6b0b900190 100644
--- a/pandora_console/install.php
+++ b/pandora_console/install.php
@@ -129,7 +129,7 @@
         <div style='height: 10px'>
             <?php
             $version = '7.0NG.762';
-            $build = '220601';
+            $build = '220602';
             $banner = "v$version Build $build";
 
             error_reporting(0);
diff --git a/pandora_console/pandora_console.redhat.spec b/pandora_console/pandora_console.redhat.spec
index 1015439836..a9e19dc25f 100644
--- a/pandora_console/pandora_console.redhat.spec
+++ b/pandora_console/pandora_console.redhat.spec
@@ -3,7 +3,7 @@
 #
 %define name        pandorafms_console
 %define version     7.0NG.762
-%define release     220601
+%define release     220602
 
 # User and Group under which Apache is running
 %define httpd_name  httpd
diff --git a/pandora_console/pandora_console.rhel7.spec b/pandora_console/pandora_console.rhel7.spec
index 2961173a06..de38633dbc 100644
--- a/pandora_console/pandora_console.rhel7.spec
+++ b/pandora_console/pandora_console.rhel7.spec
@@ -3,7 +3,7 @@
 #
 %define name        pandorafms_console
 %define version     7.0NG.762
-%define release     220601
+%define release     220602
 
 # User and Group under which Apache is running
 %define httpd_name  httpd
diff --git a/pandora_console/pandora_console.spec b/pandora_console/pandora_console.spec
index 3021678cfc..61d39d1fc3 100644
--- a/pandora_console/pandora_console.spec
+++ b/pandora_console/pandora_console.spec
@@ -3,7 +3,7 @@
 #
 %define name        pandorafms_console
 %define version     7.0NG.762
-%define release     220601
+%define release     220602
 %define httpd_name      httpd
 # User and Group under which Apache is running
 %define httpd_name  apache2
diff --git a/pandora_server/DEBIAN/control b/pandora_server/DEBIAN/control
index 025ce9bc59..b3d0b405f7 100644
--- a/pandora_server/DEBIAN/control
+++ b/pandora_server/DEBIAN/control
@@ -1,5 +1,5 @@
 package: pandorafms-server
-Version: 7.0NG.762-220601
+Version: 7.0NG.762-220602
 Architecture: all
 Priority: optional
 Section: admin
diff --git a/pandora_server/DEBIAN/make_deb_package.sh b/pandora_server/DEBIAN/make_deb_package.sh
index b50d405278..7792abda30 100644
--- a/pandora_server/DEBIAN/make_deb_package.sh
+++ b/pandora_server/DEBIAN/make_deb_package.sh
@@ -14,7 +14,7 @@
 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 # GNU General Public License for more details.
 
-pandora_version="7.0NG.762-220601"
+pandora_version="7.0NG.762-220602"
 
 package_cpan=0
 package_pandora=1
diff --git a/pandora_server/lib/PandoraFMS/Config.pm b/pandora_server/lib/PandoraFMS/Config.pm
index fa7f9adce2..018d121583 100644
--- a/pandora_server/lib/PandoraFMS/Config.pm
+++ b/pandora_server/lib/PandoraFMS/Config.pm
@@ -46,7 +46,7 @@ our @EXPORT = qw(
 
 # version: Defines actual version of Pandora Server for this module only
 my $pandora_version = "7.0NG.762";
-my $pandora_build = "220601";
+my $pandora_build = "220602";
 our $VERSION = $pandora_version." ".$pandora_build;
 
 # Setup hash
diff --git a/pandora_server/lib/PandoraFMS/PluginTools.pm b/pandora_server/lib/PandoraFMS/PluginTools.pm
index 69c5c76808..c3453a398d 100644
--- a/pandora_server/lib/PandoraFMS/PluginTools.pm
+++ b/pandora_server/lib/PandoraFMS/PluginTools.pm
@@ -34,7 +34,7 @@ our @ISA = qw(Exporter);
 
 # version: Defines actual version of Pandora Server for this module only
 my $pandora_version = "7.0NG.762";
-my $pandora_build = "220601";
+my $pandora_build = "220602";
 our $VERSION = $pandora_version." ".$pandora_build;
 
 our %EXPORT_TAGS = ( 'all' => [ qw() ] );
diff --git a/pandora_server/pandora_server.redhat.spec b/pandora_server/pandora_server.redhat.spec
index 4011b4330a..2409fd578e 100644
--- a/pandora_server/pandora_server.redhat.spec
+++ b/pandora_server/pandora_server.redhat.spec
@@ -3,7 +3,7 @@
 #
 %define name        pandorafms_server
 %define version     7.0NG.762
-%define release     220601
+%define release     220602
 
 Summary:            Pandora FMS Server
 Name:               %{name}
diff --git a/pandora_server/pandora_server.spec b/pandora_server/pandora_server.spec
index 162df56e95..962d05f0d5 100644
--- a/pandora_server/pandora_server.spec
+++ b/pandora_server/pandora_server.spec
@@ -3,7 +3,7 @@
 #
 %define name        pandorafms_server
 %define version     7.0NG.762
-%define release     220601
+%define release     220602
 
 Summary:            Pandora FMS Server
 Name:               %{name}
diff --git a/pandora_server/pandora_server_installer b/pandora_server/pandora_server_installer
index 7ae4fc212f..645be0ee68 100755
--- a/pandora_server/pandora_server_installer
+++ b/pandora_server/pandora_server_installer
@@ -9,7 +9,7 @@
 # **********************************************************************
 
 PI_VERSION="7.0NG.762"
-PI_BUILD="220601"
+PI_BUILD="220602"
 
 MODE=$1
 if [ $# -gt 1 ]; then
diff --git a/pandora_server/util/pandora_db.pl b/pandora_server/util/pandora_db.pl
index 89947e3aa0..6a80dfa97e 100755
--- a/pandora_server/util/pandora_db.pl
+++ b/pandora_server/util/pandora_db.pl
@@ -35,7 +35,7 @@ use PandoraFMS::Config;
 use PandoraFMS::DB;
 
 # version: define current version
-my $version = "7.0NG.762 Build 220601";
+my $version = "7.0NG.762 Build 220602";
 
 # Pandora server configuration
 my %conf;
diff --git a/pandora_server/util/pandora_manage.pl b/pandora_server/util/pandora_manage.pl
index 671d37dfb4..8187819360 100755
--- a/pandora_server/util/pandora_manage.pl
+++ b/pandora_server/util/pandora_manage.pl
@@ -36,7 +36,7 @@ use Encode::Locale;
 Encode::Locale::decode_argv;
 
 # version: define current version
-my $version = "7.0NG.762 Build 220601";
+my $version = "7.0NG.762 Build 220602";
 
 # save program name for logging
 my $progname = basename($0);

From 3fb0392d80e0b05d13b4399a7cf7985d19719d79 Mon Sep 17 00:00:00 2001
From: Daniel Maya <daniel.maya@pandorafms.com>
Date: Thu, 2 Jun 2022 16:47:48 +0200
Subject: [PATCH 074/138] #9040 changed table styles

---
 .../include/class/AgentsAlerts.class.php      | 28 ++++++-------------
 .../include/styles/agent_alerts.css           | 12 ++++----
 2 files changed, 14 insertions(+), 26 deletions(-)

diff --git a/pandora_console/include/class/AgentsAlerts.class.php b/pandora_console/include/class/AgentsAlerts.class.php
index 00f8f334ef..798ef5ff91 100644
--- a/pandora_console/include/class/AgentsAlerts.class.php
+++ b/pandora_console/include/class/AgentsAlerts.class.php
@@ -245,7 +245,7 @@ class AgentsAlerts extends HTML
         );
 
         $table->width    = '100%';
-        $table->class    = 'databox data';
+        $table->class    = 'info_table';
         $table->id       = 'table_agent_module';
         $table->data     = [];
 
@@ -537,7 +537,7 @@ class AgentsAlerts extends HTML
             'alerts_agents'
         );
 
-        echo '<table cellpadding="4" cellspacing="4" border="0" class="agents_modules_table table">';
+        echo '<table cellpadding="4" cellspacing="4" border="0" class="info_table">';
         echo '<tr>';
         echo '<th class="header_table_principal_cell">'.__('Agents').' / '.__('Alerts').'</th>';
 
@@ -576,10 +576,11 @@ class AgentsAlerts extends HTML
                         'images/arrow_left_green.png',
                         true,
                         [
-                            'style' => 'float: right;',
+                            'style' => 'display:flex;justify-content: center',
                             'title' => __('Previous alerts'),
                         ]
                     ),
+                    'style'   => 'display:flex;justify-content: center',
                 ]
             );
             echo '</th>';
@@ -612,9 +613,9 @@ class AgentsAlerts extends HTML
                 $outputLine = html_print_div(
                     [
                         'id'      => 'line_header_'.$id,
-                        'class'   => 'rotate_text_module position_text_module',
+                        'class'   => 'position_text_module',
                         'style'   => '',
-                        'content' => '<div title="'.io_safe_output($name).'">'.ui_print_truncate_text(io_safe_output($name), 20).'</div>',
+                        'content' => '<div style="font-size: 7.5pt !important" title="'.io_safe_output($name).'">'.ui_print_truncate_text(io_safe_output($name), 20).'</div>',
                     ],
                     true
                 );
@@ -657,7 +658,7 @@ class AgentsAlerts extends HTML
             $alias = db_get_row('tagente', 'id_agente', $agent['id_agente']);
             echo '<tr>';
             // Name of the agent.
-            echo '<td class="bolder" style="text-align: right" >'.$alias['alias'].'</td>';
+            echo '<td style="text-align: left;font-weight: bold;color: #3f3f3f;">'.$alias['alias'].'</td>';
             // Alerts of the agent.
             foreach ($templates as $tid => $tname) {
                 $anyfired = 0;
@@ -669,18 +670,6 @@ class AgentsAlerts extends HTML
                 echo '<td class="center">';
 
                 if (isset($agent_alerts[$alias['alias']][$tid])) {
-                    foreach ($agent_alerts[$alias['alias']][$tid] as $alert) {
-                        if ((int) $alert['times_fired'] > 0) {
-                            $anyfired = true;
-                        }
-                    }
-
-                    if ($anyfired) {
-                        $cellstyle = 'background:'.COL_ALERTFIRED.';';
-                    } else {
-                        $cellstyle = 'background:'.COL_NORMAL.';';
-                    }
-
                     $uniqid = uniqid();
 
                     html_print_anchor(
@@ -689,8 +678,7 @@ class AgentsAlerts extends HTML
                             'content' => html_print_div(
                                 [
                                     'id'      => 'line_header_'.$temp['id'],
-                                    'class'   => 'status_rounded_rectangles text_inside',
-                                    'style'   => $cellstyle,
+                                    'style'   => 'font-size: 13pt;',
                                     'content' => count($agent_alerts[$alias['alias']][$tid]),
                                 ],
                                 true
diff --git a/pandora_console/include/styles/agent_alerts.css b/pandora_console/include/styles/agent_alerts.css
index 8726228b33..5db60dd5cf 100644
--- a/pandora_console/include/styles/agent_alerts.css
+++ b/pandora_console/include/styles/agent_alerts.css
@@ -5,18 +5,18 @@
   table-layout: fixed;
 }
 
-.agents_modules_table .next_previous_step {
+.next_previous_step {
   width: 0.1%;
 }
 
-.agents_modules_table .header_table_principal_cell {
-  text-align: right !important;
+.header_table_principal_cell {
+  text-align: left !important;
   padding-right: 13px;
-  width: 20%;
+  width: 5%;
 }
 
-.agents_modules_table .header_table_caption_cell {
-  height: 200px;
+.header_table_caption_cell {
+  text-align: center !important;
 }
 
 .agents_modules_table .position_text_module {

From 21399593dd629dbd289c471626b5dd5e21f34c7e Mon Sep 17 00:00:00 2001
From: artica <artica.devel@gmail.com>
Date: Fri, 3 Jun 2022 01:00:22 +0200
Subject: [PATCH 075/138] Auto-updated build strings.

---
 pandora_agents/unix/DEBIAN/control             | 2 +-
 pandora_agents/unix/DEBIAN/make_deb_package.sh | 2 +-
 pandora_agents/unix/pandora_agent              | 2 +-
 pandora_agents/unix/pandora_agent.redhat.spec  | 2 +-
 pandora_agents/unix/pandora_agent.spec         | 2 +-
 pandora_agents/unix/pandora_agent_installer    | 2 +-
 pandora_agents/win32/installer/pandora.mpi     | 2 +-
 pandora_agents/win32/pandora.cc                | 2 +-
 pandora_agents/win32/versioninfo.rc            | 2 +-
 pandora_console/DEBIAN/control                 | 2 +-
 pandora_console/DEBIAN/make_deb_package.sh     | 2 +-
 pandora_console/include/config_process.php     | 2 +-
 pandora_console/install.php                    | 2 +-
 pandora_console/pandora_console.redhat.spec    | 2 +-
 pandora_console/pandora_console.rhel7.spec     | 2 +-
 pandora_console/pandora_console.spec           | 2 +-
 pandora_server/DEBIAN/control                  | 2 +-
 pandora_server/DEBIAN/make_deb_package.sh      | 2 +-
 pandora_server/lib/PandoraFMS/Config.pm        | 2 +-
 pandora_server/lib/PandoraFMS/PluginTools.pm   | 2 +-
 pandora_server/pandora_server.redhat.spec      | 2 +-
 pandora_server/pandora_server.spec             | 2 +-
 pandora_server/pandora_server_installer        | 2 +-
 pandora_server/util/pandora_db.pl              | 2 +-
 pandora_server/util/pandora_manage.pl          | 2 +-
 25 files changed, 25 insertions(+), 25 deletions(-)

diff --git a/pandora_agents/unix/DEBIAN/control b/pandora_agents/unix/DEBIAN/control
index f99df42eeb..aaf10ee92d 100644
--- a/pandora_agents/unix/DEBIAN/control
+++ b/pandora_agents/unix/DEBIAN/control
@@ -1,5 +1,5 @@
 package: pandorafms-agent-unix
-Version: 7.0NG.762-220602
+Version: 7.0NG.762-220603
 Architecture: all
 Priority: optional
 Section: admin
diff --git a/pandora_agents/unix/DEBIAN/make_deb_package.sh b/pandora_agents/unix/DEBIAN/make_deb_package.sh
index 71320cb3e1..aac5424ecf 100644
--- a/pandora_agents/unix/DEBIAN/make_deb_package.sh
+++ b/pandora_agents/unix/DEBIAN/make_deb_package.sh
@@ -14,7 +14,7 @@
 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 # GNU General Public License for more details.
 
-pandora_version="7.0NG.762-220602"
+pandora_version="7.0NG.762-220603"
 
 echo "Test if you has the tools for to make the packages."
 whereis dpkg-deb | cut -d":" -f2 | grep dpkg-deb > /dev/null
diff --git a/pandora_agents/unix/pandora_agent b/pandora_agents/unix/pandora_agent
index 794b866c29..3fa7a68932 100755
--- a/pandora_agents/unix/pandora_agent
+++ b/pandora_agents/unix/pandora_agent
@@ -1015,7 +1015,7 @@ my $Sem = undef;
 my $ThreadSem = undef;
 
 use constant AGENT_VERSION => '7.0NG.762';
-use constant AGENT_BUILD => '220602';
+use constant AGENT_BUILD => '220603';
 
 # Agent log default file size maximum and instances
 use constant DEFAULT_MAX_LOG_SIZE => 600000;
diff --git a/pandora_agents/unix/pandora_agent.redhat.spec b/pandora_agents/unix/pandora_agent.redhat.spec
index 417a230367..3d17ad0514 100644
--- a/pandora_agents/unix/pandora_agent.redhat.spec
+++ b/pandora_agents/unix/pandora_agent.redhat.spec
@@ -3,7 +3,7 @@
 #
 %define name        pandorafms_agent_unix
 %define version     7.0NG.762
-%define release     220602
+%define release     220603
 
 Summary:            Pandora FMS Linux agent, PERL version
 Name:               %{name}
diff --git a/pandora_agents/unix/pandora_agent.spec b/pandora_agents/unix/pandora_agent.spec
index efb7056421..d81fca4d54 100644
--- a/pandora_agents/unix/pandora_agent.spec
+++ b/pandora_agents/unix/pandora_agent.spec
@@ -3,7 +3,7 @@
 #
 %define name        pandorafms_agent_unix
 %define version     7.0NG.762
-%define release     220602
+%define release     220603
 
 Summary:            Pandora FMS Linux agent, PERL version
 Name:               %{name}
diff --git a/pandora_agents/unix/pandora_agent_installer b/pandora_agents/unix/pandora_agent_installer
index 0c347e9417..2ab555550d 100755
--- a/pandora_agents/unix/pandora_agent_installer
+++ b/pandora_agents/unix/pandora_agent_installer
@@ -10,7 +10,7 @@
 # **********************************************************************
 
 PI_VERSION="7.0NG.762"
-PI_BUILD="220602"
+PI_BUILD="220603"
 OS_NAME=`uname -s`
 
 FORCE=0
diff --git a/pandora_agents/win32/installer/pandora.mpi b/pandora_agents/win32/installer/pandora.mpi
index 9840ebbb94..c63a95c0ac 100644
--- a/pandora_agents/win32/installer/pandora.mpi
+++ b/pandora_agents/win32/installer/pandora.mpi
@@ -186,7 +186,7 @@ UpgradeApplicationID
 {}
 
 Version
-{220602}
+{220603}
 
 ViewReadme
 {Yes}
diff --git a/pandora_agents/win32/pandora.cc b/pandora_agents/win32/pandora.cc
index 8206aac8ee..9444a4c9a7 100644
--- a/pandora_agents/win32/pandora.cc
+++ b/pandora_agents/win32/pandora.cc
@@ -30,7 +30,7 @@ using namespace Pandora;
 using namespace Pandora_Strutils;
 
 #define PATH_SIZE    _MAX_PATH+1
-#define PANDORA_VERSION ("7.0NG.762 Build 220602")
+#define PANDORA_VERSION ("7.0NG.762 Build 220603")
 
 string pandora_path;
 string pandora_dir;
diff --git a/pandora_agents/win32/versioninfo.rc b/pandora_agents/win32/versioninfo.rc
index 3e63ea6305..12b2bad729 100644
--- a/pandora_agents/win32/versioninfo.rc
+++ b/pandora_agents/win32/versioninfo.rc
@@ -11,7 +11,7 @@ BEGIN
       VALUE "LegalCopyright", "Artica ST"
       VALUE "OriginalFilename", "PandoraAgent.exe"
       VALUE "ProductName", "Pandora FMS Windows Agent"
-      VALUE "ProductVersion", "(7.0NG.762(Build 220602))"
+      VALUE "ProductVersion", "(7.0NG.762(Build 220603))"
       VALUE "FileVersion", "1.0.0.0"
     END
   END
diff --git a/pandora_console/DEBIAN/control b/pandora_console/DEBIAN/control
index b2434ad585..96cffab397 100644
--- a/pandora_console/DEBIAN/control
+++ b/pandora_console/DEBIAN/control
@@ -1,5 +1,5 @@
 package: pandorafms-console
-Version: 7.0NG.762-220602
+Version: 7.0NG.762-220603
 Architecture: all
 Priority: optional
 Section: admin
diff --git a/pandora_console/DEBIAN/make_deb_package.sh b/pandora_console/DEBIAN/make_deb_package.sh
index ff4aee9307..14a3735a52 100644
--- a/pandora_console/DEBIAN/make_deb_package.sh
+++ b/pandora_console/DEBIAN/make_deb_package.sh
@@ -14,7 +14,7 @@
 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 # GNU General Public License for more details.
 
-pandora_version="7.0NG.762-220602"
+pandora_version="7.0NG.762-220603"
 
 package_pear=0
 package_pandora=1
diff --git a/pandora_console/include/config_process.php b/pandora_console/include/config_process.php
index c2b7bfb8b0..d0c02f1014 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 = 'PC220602';
+$build_version = 'PC220603';
 $pandora_version = 'v7.0NG.762';
 
 // Do not overwrite default timezone set if defined.
diff --git a/pandora_console/install.php b/pandora_console/install.php
index 6b0b900190..7956c38f1f 100644
--- a/pandora_console/install.php
+++ b/pandora_console/install.php
@@ -129,7 +129,7 @@
         <div style='height: 10px'>
             <?php
             $version = '7.0NG.762';
-            $build = '220602';
+            $build = '220603';
             $banner = "v$version Build $build";
 
             error_reporting(0);
diff --git a/pandora_console/pandora_console.redhat.spec b/pandora_console/pandora_console.redhat.spec
index a9e19dc25f..b046ef2a6d 100644
--- a/pandora_console/pandora_console.redhat.spec
+++ b/pandora_console/pandora_console.redhat.spec
@@ -3,7 +3,7 @@
 #
 %define name        pandorafms_console
 %define version     7.0NG.762
-%define release     220602
+%define release     220603
 
 # User and Group under which Apache is running
 %define httpd_name  httpd
diff --git a/pandora_console/pandora_console.rhel7.spec b/pandora_console/pandora_console.rhel7.spec
index de38633dbc..a632e036a1 100644
--- a/pandora_console/pandora_console.rhel7.spec
+++ b/pandora_console/pandora_console.rhel7.spec
@@ -3,7 +3,7 @@
 #
 %define name        pandorafms_console
 %define version     7.0NG.762
-%define release     220602
+%define release     220603
 
 # User and Group under which Apache is running
 %define httpd_name  httpd
diff --git a/pandora_console/pandora_console.spec b/pandora_console/pandora_console.spec
index 61d39d1fc3..795974cae6 100644
--- a/pandora_console/pandora_console.spec
+++ b/pandora_console/pandora_console.spec
@@ -3,7 +3,7 @@
 #
 %define name        pandorafms_console
 %define version     7.0NG.762
-%define release     220602
+%define release     220603
 %define httpd_name      httpd
 # User and Group under which Apache is running
 %define httpd_name  apache2
diff --git a/pandora_server/DEBIAN/control b/pandora_server/DEBIAN/control
index b3d0b405f7..88bc4fdb60 100644
--- a/pandora_server/DEBIAN/control
+++ b/pandora_server/DEBIAN/control
@@ -1,5 +1,5 @@
 package: pandorafms-server
-Version: 7.0NG.762-220602
+Version: 7.0NG.762-220603
 Architecture: all
 Priority: optional
 Section: admin
diff --git a/pandora_server/DEBIAN/make_deb_package.sh b/pandora_server/DEBIAN/make_deb_package.sh
index 7792abda30..c61aeaf1c2 100644
--- a/pandora_server/DEBIAN/make_deb_package.sh
+++ b/pandora_server/DEBIAN/make_deb_package.sh
@@ -14,7 +14,7 @@
 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 # GNU General Public License for more details.
 
-pandora_version="7.0NG.762-220602"
+pandora_version="7.0NG.762-220603"
 
 package_cpan=0
 package_pandora=1
diff --git a/pandora_server/lib/PandoraFMS/Config.pm b/pandora_server/lib/PandoraFMS/Config.pm
index 018d121583..09e3726a90 100644
--- a/pandora_server/lib/PandoraFMS/Config.pm
+++ b/pandora_server/lib/PandoraFMS/Config.pm
@@ -46,7 +46,7 @@ our @EXPORT = qw(
 
 # version: Defines actual version of Pandora Server for this module only
 my $pandora_version = "7.0NG.762";
-my $pandora_build = "220602";
+my $pandora_build = "220603";
 our $VERSION = $pandora_version." ".$pandora_build;
 
 # Setup hash
diff --git a/pandora_server/lib/PandoraFMS/PluginTools.pm b/pandora_server/lib/PandoraFMS/PluginTools.pm
index c3453a398d..80ecb21671 100644
--- a/pandora_server/lib/PandoraFMS/PluginTools.pm
+++ b/pandora_server/lib/PandoraFMS/PluginTools.pm
@@ -34,7 +34,7 @@ our @ISA = qw(Exporter);
 
 # version: Defines actual version of Pandora Server for this module only
 my $pandora_version = "7.0NG.762";
-my $pandora_build = "220602";
+my $pandora_build = "220603";
 our $VERSION = $pandora_version." ".$pandora_build;
 
 our %EXPORT_TAGS = ( 'all' => [ qw() ] );
diff --git a/pandora_server/pandora_server.redhat.spec b/pandora_server/pandora_server.redhat.spec
index 2409fd578e..a40e23b792 100644
--- a/pandora_server/pandora_server.redhat.spec
+++ b/pandora_server/pandora_server.redhat.spec
@@ -3,7 +3,7 @@
 #
 %define name        pandorafms_server
 %define version     7.0NG.762
-%define release     220602
+%define release     220603
 
 Summary:            Pandora FMS Server
 Name:               %{name}
diff --git a/pandora_server/pandora_server.spec b/pandora_server/pandora_server.spec
index 962d05f0d5..8eba89b1f7 100644
--- a/pandora_server/pandora_server.spec
+++ b/pandora_server/pandora_server.spec
@@ -3,7 +3,7 @@
 #
 %define name        pandorafms_server
 %define version     7.0NG.762
-%define release     220602
+%define release     220603
 
 Summary:            Pandora FMS Server
 Name:               %{name}
diff --git a/pandora_server/pandora_server_installer b/pandora_server/pandora_server_installer
index 645be0ee68..84f094a841 100755
--- a/pandora_server/pandora_server_installer
+++ b/pandora_server/pandora_server_installer
@@ -9,7 +9,7 @@
 # **********************************************************************
 
 PI_VERSION="7.0NG.762"
-PI_BUILD="220602"
+PI_BUILD="220603"
 
 MODE=$1
 if [ $# -gt 1 ]; then
diff --git a/pandora_server/util/pandora_db.pl b/pandora_server/util/pandora_db.pl
index 6a80dfa97e..813708561e 100755
--- a/pandora_server/util/pandora_db.pl
+++ b/pandora_server/util/pandora_db.pl
@@ -35,7 +35,7 @@ use PandoraFMS::Config;
 use PandoraFMS::DB;
 
 # version: define current version
-my $version = "7.0NG.762 Build 220602";
+my $version = "7.0NG.762 Build 220603";
 
 # Pandora server configuration
 my %conf;
diff --git a/pandora_server/util/pandora_manage.pl b/pandora_server/util/pandora_manage.pl
index 8187819360..a9a0773040 100755
--- a/pandora_server/util/pandora_manage.pl
+++ b/pandora_server/util/pandora_manage.pl
@@ -36,7 +36,7 @@ use Encode::Locale;
 Encode::Locale::decode_argv;
 
 # version: define current version
-my $version = "7.0NG.762 Build 220602";
+my $version = "7.0NG.762 Build 220603";
 
 # save program name for logging
 my $progname = basename($0);

From 0c9fdf8a18ea8cc14bb49d58bbacb89f89a1a317 Mon Sep 17 00:00:00 2001
From: "alejandro.campos@artica.es" <alejandro.campos@artica.es>
Date: Fri, 3 Jun 2022 12:25:24 +0200
Subject: [PATCH 076/138] changed field max length

---
 pandora_console/godmode/users/configure_user.php | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/pandora_console/godmode/users/configure_user.php b/pandora_console/godmode/users/configure_user.php
index 669bdf4fdf..67a269bc66 100644
--- a/pandora_console/godmode/users/configure_user.php
+++ b/pandora_console/godmode/users/configure_user.php
@@ -860,7 +860,7 @@ if (!$new_user) {
         '',
         '',
         20,
-        100,
+        255,
         !$new_user || $view_mode,
         '',
         [

From 9d7b047e72f4021db0cb4a2575bd4b3592ec3460 Mon Sep 17 00:00:00 2001
From: "edu.corral" <eduardo.corral@artica.es>
Date: Fri, 3 Jun 2022 14:15:51 +0200
Subject: [PATCH 077/138] 9037 fixed agent view controls

---
 .../operation/agentes/estado_agente.php       | 24 +++++++++----------
 1 file changed, 12 insertions(+), 12 deletions(-)

diff --git a/pandora_console/operation/agentes/estado_agente.php b/pandora_console/operation/agentes/estado_agente.php
index a088233bc7..0210545a26 100644
--- a/pandora_console/operation/agentes/estado_agente.php
+++ b/pandora_console/operation/agentes/estado_agente.php
@@ -249,26 +249,21 @@ echo '<form method="post" action="?sec=view&sec2=operation/agentes/estado_agente
 
 echo '<table cellpadding="4" cellspacing="4" class="databox filters bolder mrgn_btn_10px" width="100%">';
 
-echo '<tr><td class="nowrap mw180px padding-right-2-imp">';
+echo '<tr><td class="nowrap w100px padding-right-2-imp">';
 
-echo __('Group').'&nbsp;';
+echo __('Group').'&nbsp;'.'&nbsp;'.'&nbsp;';
 
 $groups = users_get_groups(false, $access);
 
 html_print_select_groups(false, $access, true, 'group_id', $group_id, 'this.form.submit()', '', '', false, false, true, '', false);
 
-echo '</td><td class="nowrap">';
+echo '</td><td class="nowrap">'.'&nbsp;'.'&nbsp;'.'&nbsp;'.'&nbsp;'.'&nbsp;';
 
-echo __('Recursion').'&nbsp;';
+echo __('Recursion').'&nbsp;'.'&nbsp;'.'&nbsp;';
 html_print_checkbox('recursion', 1, $recursion, false, false, 'this.form.submit()');
 
 echo '</td><td class="nowrap">';
 
-echo __('Search').'&nbsp;';
-html_print_input_text('search', $search, '', 15);
-
-echo '</td><td class="nowrap">';
-
 $fields = [];
 $fields[AGENT_STATUS_NORMAL] = __('Normal');
 $fields[AGENT_STATUS_WARNING] = __('Warning');
@@ -277,12 +272,17 @@ $fields[AGENT_STATUS_UNKNOWN] = __('Unknown');
 $fields[AGENT_STATUS_NOT_NORMAL] = __('Not normal');
 $fields[AGENT_STATUS_NOT_INIT] = __('Not init');
 
-echo __('Status').'&nbsp;';
+echo __('Status').'&nbsp;'.'&nbsp;'.'&nbsp;';
 html_print_select($fields, 'status', $status, 'this.form.submit()', __('All'), AGENT_STATUS_ALL, false, false, true, '', false, 'width: 90px;');
 
-echo '</td><td class="nowrap">';
+echo '</td><td class="nowrap w100px">';
 
-echo __('Search in custom fields').'&nbsp;';
+echo __('Search').'&nbsp;'.'&nbsp;'.'&nbsp;';
+html_print_input_text('search', $search, '', 15);
+
+echo '</td><td class="nowrap w100px">';
+
+echo __('Search in custom fields').'&nbsp;'.'&nbsp;'.'&nbsp;';
 html_print_input_text('search_custom', $search_custom, '', 15);
 
 echo '</td><td class="nowrap">';

From 44925ef34181452678584e532ab87c3244d4e42d Mon Sep 17 00:00:00 2001
From: artica <artica.devel@gmail.com>
Date: Sat, 4 Jun 2022 01:00:22 +0200
Subject: [PATCH 078/138] Auto-updated build strings.

---
 pandora_agents/unix/DEBIAN/control             | 2 +-
 pandora_agents/unix/DEBIAN/make_deb_package.sh | 2 +-
 pandora_agents/unix/pandora_agent              | 2 +-
 pandora_agents/unix/pandora_agent.redhat.spec  | 2 +-
 pandora_agents/unix/pandora_agent.spec         | 2 +-
 pandora_agents/unix/pandora_agent_installer    | 2 +-
 pandora_agents/win32/installer/pandora.mpi     | 2 +-
 pandora_agents/win32/pandora.cc                | 2 +-
 pandora_agents/win32/versioninfo.rc            | 2 +-
 pandora_console/DEBIAN/control                 | 2 +-
 pandora_console/DEBIAN/make_deb_package.sh     | 2 +-
 pandora_console/include/config_process.php     | 2 +-
 pandora_console/install.php                    | 2 +-
 pandora_console/pandora_console.redhat.spec    | 2 +-
 pandora_console/pandora_console.rhel7.spec     | 2 +-
 pandora_console/pandora_console.spec           | 2 +-
 pandora_server/DEBIAN/control                  | 2 +-
 pandora_server/DEBIAN/make_deb_package.sh      | 2 +-
 pandora_server/lib/PandoraFMS/Config.pm        | 2 +-
 pandora_server/lib/PandoraFMS/PluginTools.pm   | 2 +-
 pandora_server/pandora_server.redhat.spec      | 2 +-
 pandora_server/pandora_server.spec             | 2 +-
 pandora_server/pandora_server_installer        | 2 +-
 pandora_server/util/pandora_db.pl              | 2 +-
 pandora_server/util/pandora_manage.pl          | 2 +-
 25 files changed, 25 insertions(+), 25 deletions(-)

diff --git a/pandora_agents/unix/DEBIAN/control b/pandora_agents/unix/DEBIAN/control
index aaf10ee92d..327dafa246 100644
--- a/pandora_agents/unix/DEBIAN/control
+++ b/pandora_agents/unix/DEBIAN/control
@@ -1,5 +1,5 @@
 package: pandorafms-agent-unix
-Version: 7.0NG.762-220603
+Version: 7.0NG.762-220604
 Architecture: all
 Priority: optional
 Section: admin
diff --git a/pandora_agents/unix/DEBIAN/make_deb_package.sh b/pandora_agents/unix/DEBIAN/make_deb_package.sh
index aac5424ecf..1849a8c7c7 100644
--- a/pandora_agents/unix/DEBIAN/make_deb_package.sh
+++ b/pandora_agents/unix/DEBIAN/make_deb_package.sh
@@ -14,7 +14,7 @@
 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 # GNU General Public License for more details.
 
-pandora_version="7.0NG.762-220603"
+pandora_version="7.0NG.762-220604"
 
 echo "Test if you has the tools for to make the packages."
 whereis dpkg-deb | cut -d":" -f2 | grep dpkg-deb > /dev/null
diff --git a/pandora_agents/unix/pandora_agent b/pandora_agents/unix/pandora_agent
index 3fa7a68932..696dfdda1d 100755
--- a/pandora_agents/unix/pandora_agent
+++ b/pandora_agents/unix/pandora_agent
@@ -1015,7 +1015,7 @@ my $Sem = undef;
 my $ThreadSem = undef;
 
 use constant AGENT_VERSION => '7.0NG.762';
-use constant AGENT_BUILD => '220603';
+use constant AGENT_BUILD => '220604';
 
 # Agent log default file size maximum and instances
 use constant DEFAULT_MAX_LOG_SIZE => 600000;
diff --git a/pandora_agents/unix/pandora_agent.redhat.spec b/pandora_agents/unix/pandora_agent.redhat.spec
index 3d17ad0514..e58ed3aa1d 100644
--- a/pandora_agents/unix/pandora_agent.redhat.spec
+++ b/pandora_agents/unix/pandora_agent.redhat.spec
@@ -3,7 +3,7 @@
 #
 %define name        pandorafms_agent_unix
 %define version     7.0NG.762
-%define release     220603
+%define release     220604
 
 Summary:            Pandora FMS Linux agent, PERL version
 Name:               %{name}
diff --git a/pandora_agents/unix/pandora_agent.spec b/pandora_agents/unix/pandora_agent.spec
index d81fca4d54..4e8eb1b321 100644
--- a/pandora_agents/unix/pandora_agent.spec
+++ b/pandora_agents/unix/pandora_agent.spec
@@ -3,7 +3,7 @@
 #
 %define name        pandorafms_agent_unix
 %define version     7.0NG.762
-%define release     220603
+%define release     220604
 
 Summary:            Pandora FMS Linux agent, PERL version
 Name:               %{name}
diff --git a/pandora_agents/unix/pandora_agent_installer b/pandora_agents/unix/pandora_agent_installer
index 2ab555550d..0e9c9321b5 100755
--- a/pandora_agents/unix/pandora_agent_installer
+++ b/pandora_agents/unix/pandora_agent_installer
@@ -10,7 +10,7 @@
 # **********************************************************************
 
 PI_VERSION="7.0NG.762"
-PI_BUILD="220603"
+PI_BUILD="220604"
 OS_NAME=`uname -s`
 
 FORCE=0
diff --git a/pandora_agents/win32/installer/pandora.mpi b/pandora_agents/win32/installer/pandora.mpi
index c63a95c0ac..07421e4a62 100644
--- a/pandora_agents/win32/installer/pandora.mpi
+++ b/pandora_agents/win32/installer/pandora.mpi
@@ -186,7 +186,7 @@ UpgradeApplicationID
 {}
 
 Version
-{220603}
+{220604}
 
 ViewReadme
 {Yes}
diff --git a/pandora_agents/win32/pandora.cc b/pandora_agents/win32/pandora.cc
index 9444a4c9a7..325bc13fcd 100644
--- a/pandora_agents/win32/pandora.cc
+++ b/pandora_agents/win32/pandora.cc
@@ -30,7 +30,7 @@ using namespace Pandora;
 using namespace Pandora_Strutils;
 
 #define PATH_SIZE    _MAX_PATH+1
-#define PANDORA_VERSION ("7.0NG.762 Build 220603")
+#define PANDORA_VERSION ("7.0NG.762 Build 220604")
 
 string pandora_path;
 string pandora_dir;
diff --git a/pandora_agents/win32/versioninfo.rc b/pandora_agents/win32/versioninfo.rc
index 12b2bad729..eb1eebac09 100644
--- a/pandora_agents/win32/versioninfo.rc
+++ b/pandora_agents/win32/versioninfo.rc
@@ -11,7 +11,7 @@ BEGIN
       VALUE "LegalCopyright", "Artica ST"
       VALUE "OriginalFilename", "PandoraAgent.exe"
       VALUE "ProductName", "Pandora FMS Windows Agent"
-      VALUE "ProductVersion", "(7.0NG.762(Build 220603))"
+      VALUE "ProductVersion", "(7.0NG.762(Build 220604))"
       VALUE "FileVersion", "1.0.0.0"
     END
   END
diff --git a/pandora_console/DEBIAN/control b/pandora_console/DEBIAN/control
index 96cffab397..f9ba695e8e 100644
--- a/pandora_console/DEBIAN/control
+++ b/pandora_console/DEBIAN/control
@@ -1,5 +1,5 @@
 package: pandorafms-console
-Version: 7.0NG.762-220603
+Version: 7.0NG.762-220604
 Architecture: all
 Priority: optional
 Section: admin
diff --git a/pandora_console/DEBIAN/make_deb_package.sh b/pandora_console/DEBIAN/make_deb_package.sh
index 14a3735a52..cebcb1176c 100644
--- a/pandora_console/DEBIAN/make_deb_package.sh
+++ b/pandora_console/DEBIAN/make_deb_package.sh
@@ -14,7 +14,7 @@
 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 # GNU General Public License for more details.
 
-pandora_version="7.0NG.762-220603"
+pandora_version="7.0NG.762-220604"
 
 package_pear=0
 package_pandora=1
diff --git a/pandora_console/include/config_process.php b/pandora_console/include/config_process.php
index d0c02f1014..e9c09ffe57 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 = 'PC220603';
+$build_version = 'PC220604';
 $pandora_version = 'v7.0NG.762';
 
 // Do not overwrite default timezone set if defined.
diff --git a/pandora_console/install.php b/pandora_console/install.php
index 7956c38f1f..f378e61703 100644
--- a/pandora_console/install.php
+++ b/pandora_console/install.php
@@ -129,7 +129,7 @@
         <div style='height: 10px'>
             <?php
             $version = '7.0NG.762';
-            $build = '220603';
+            $build = '220604';
             $banner = "v$version Build $build";
 
             error_reporting(0);
diff --git a/pandora_console/pandora_console.redhat.spec b/pandora_console/pandora_console.redhat.spec
index b046ef2a6d..10677554c9 100644
--- a/pandora_console/pandora_console.redhat.spec
+++ b/pandora_console/pandora_console.redhat.spec
@@ -3,7 +3,7 @@
 #
 %define name        pandorafms_console
 %define version     7.0NG.762
-%define release     220603
+%define release     220604
 
 # User and Group under which Apache is running
 %define httpd_name  httpd
diff --git a/pandora_console/pandora_console.rhel7.spec b/pandora_console/pandora_console.rhel7.spec
index a632e036a1..93e4a24ae2 100644
--- a/pandora_console/pandora_console.rhel7.spec
+++ b/pandora_console/pandora_console.rhel7.spec
@@ -3,7 +3,7 @@
 #
 %define name        pandorafms_console
 %define version     7.0NG.762
-%define release     220603
+%define release     220604
 
 # User and Group under which Apache is running
 %define httpd_name  httpd
diff --git a/pandora_console/pandora_console.spec b/pandora_console/pandora_console.spec
index 795974cae6..814314feac 100644
--- a/pandora_console/pandora_console.spec
+++ b/pandora_console/pandora_console.spec
@@ -3,7 +3,7 @@
 #
 %define name        pandorafms_console
 %define version     7.0NG.762
-%define release     220603
+%define release     220604
 %define httpd_name      httpd
 # User and Group under which Apache is running
 %define httpd_name  apache2
diff --git a/pandora_server/DEBIAN/control b/pandora_server/DEBIAN/control
index 88bc4fdb60..974361e986 100644
--- a/pandora_server/DEBIAN/control
+++ b/pandora_server/DEBIAN/control
@@ -1,5 +1,5 @@
 package: pandorafms-server
-Version: 7.0NG.762-220603
+Version: 7.0NG.762-220604
 Architecture: all
 Priority: optional
 Section: admin
diff --git a/pandora_server/DEBIAN/make_deb_package.sh b/pandora_server/DEBIAN/make_deb_package.sh
index c61aeaf1c2..a5d899584c 100644
--- a/pandora_server/DEBIAN/make_deb_package.sh
+++ b/pandora_server/DEBIAN/make_deb_package.sh
@@ -14,7 +14,7 @@
 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 # GNU General Public License for more details.
 
-pandora_version="7.0NG.762-220603"
+pandora_version="7.0NG.762-220604"
 
 package_cpan=0
 package_pandora=1
diff --git a/pandora_server/lib/PandoraFMS/Config.pm b/pandora_server/lib/PandoraFMS/Config.pm
index 09e3726a90..a4c56c9bf8 100644
--- a/pandora_server/lib/PandoraFMS/Config.pm
+++ b/pandora_server/lib/PandoraFMS/Config.pm
@@ -46,7 +46,7 @@ our @EXPORT = qw(
 
 # version: Defines actual version of Pandora Server for this module only
 my $pandora_version = "7.0NG.762";
-my $pandora_build = "220603";
+my $pandora_build = "220604";
 our $VERSION = $pandora_version." ".$pandora_build;
 
 # Setup hash
diff --git a/pandora_server/lib/PandoraFMS/PluginTools.pm b/pandora_server/lib/PandoraFMS/PluginTools.pm
index 80ecb21671..5701d5c537 100644
--- a/pandora_server/lib/PandoraFMS/PluginTools.pm
+++ b/pandora_server/lib/PandoraFMS/PluginTools.pm
@@ -34,7 +34,7 @@ our @ISA = qw(Exporter);
 
 # version: Defines actual version of Pandora Server for this module only
 my $pandora_version = "7.0NG.762";
-my $pandora_build = "220603";
+my $pandora_build = "220604";
 our $VERSION = $pandora_version." ".$pandora_build;
 
 our %EXPORT_TAGS = ( 'all' => [ qw() ] );
diff --git a/pandora_server/pandora_server.redhat.spec b/pandora_server/pandora_server.redhat.spec
index a40e23b792..0fef626edf 100644
--- a/pandora_server/pandora_server.redhat.spec
+++ b/pandora_server/pandora_server.redhat.spec
@@ -3,7 +3,7 @@
 #
 %define name        pandorafms_server
 %define version     7.0NG.762
-%define release     220603
+%define release     220604
 
 Summary:            Pandora FMS Server
 Name:               %{name}
diff --git a/pandora_server/pandora_server.spec b/pandora_server/pandora_server.spec
index 8eba89b1f7..c6d8f39fb7 100644
--- a/pandora_server/pandora_server.spec
+++ b/pandora_server/pandora_server.spec
@@ -3,7 +3,7 @@
 #
 %define name        pandorafms_server
 %define version     7.0NG.762
-%define release     220603
+%define release     220604
 
 Summary:            Pandora FMS Server
 Name:               %{name}
diff --git a/pandora_server/pandora_server_installer b/pandora_server/pandora_server_installer
index 84f094a841..9afa808c19 100755
--- a/pandora_server/pandora_server_installer
+++ b/pandora_server/pandora_server_installer
@@ -9,7 +9,7 @@
 # **********************************************************************
 
 PI_VERSION="7.0NG.762"
-PI_BUILD="220603"
+PI_BUILD="220604"
 
 MODE=$1
 if [ $# -gt 1 ]; then
diff --git a/pandora_server/util/pandora_db.pl b/pandora_server/util/pandora_db.pl
index 813708561e..2db45e0aa3 100755
--- a/pandora_server/util/pandora_db.pl
+++ b/pandora_server/util/pandora_db.pl
@@ -35,7 +35,7 @@ use PandoraFMS::Config;
 use PandoraFMS::DB;
 
 # version: define current version
-my $version = "7.0NG.762 Build 220603";
+my $version = "7.0NG.762 Build 220604";
 
 # Pandora server configuration
 my %conf;
diff --git a/pandora_server/util/pandora_manage.pl b/pandora_server/util/pandora_manage.pl
index b8782211d4..40106996ea 100755
--- a/pandora_server/util/pandora_manage.pl
+++ b/pandora_server/util/pandora_manage.pl
@@ -36,7 +36,7 @@ use Encode::Locale;
 Encode::Locale::decode_argv;
 
 # version: define current version
-my $version = "7.0NG.762 Build 220603";
+my $version = "7.0NG.762 Build 220604";
 
 # save program name for logging
 my $progname = basename($0);

From 05b97a3dbcc54b7a5cf5e5aaf0c4418812c5ee9b Mon Sep 17 00:00:00 2001
From: artica <artica.devel@gmail.com>
Date: Sun, 5 Jun 2022 01:00:16 +0200
Subject: [PATCH 079/138] Auto-updated build strings.

---
 pandora_agents/unix/DEBIAN/control             | 2 +-
 pandora_agents/unix/DEBIAN/make_deb_package.sh | 2 +-
 pandora_agents/unix/pandora_agent              | 2 +-
 pandora_agents/unix/pandora_agent.redhat.spec  | 2 +-
 pandora_agents/unix/pandora_agent.spec         | 2 +-
 pandora_agents/unix/pandora_agent_installer    | 2 +-
 pandora_agents/win32/installer/pandora.mpi     | 2 +-
 pandora_agents/win32/pandora.cc                | 2 +-
 pandora_agents/win32/versioninfo.rc            | 2 +-
 pandora_console/DEBIAN/control                 | 2 +-
 pandora_console/DEBIAN/make_deb_package.sh     | 2 +-
 pandora_console/include/config_process.php     | 2 +-
 pandora_console/install.php                    | 2 +-
 pandora_console/pandora_console.redhat.spec    | 2 +-
 pandora_console/pandora_console.rhel7.spec     | 2 +-
 pandora_console/pandora_console.spec           | 2 +-
 pandora_server/DEBIAN/control                  | 2 +-
 pandora_server/DEBIAN/make_deb_package.sh      | 2 +-
 pandora_server/lib/PandoraFMS/Config.pm        | 2 +-
 pandora_server/lib/PandoraFMS/PluginTools.pm   | 2 +-
 pandora_server/pandora_server.redhat.spec      | 2 +-
 pandora_server/pandora_server.spec             | 2 +-
 pandora_server/pandora_server_installer        | 2 +-
 pandora_server/util/pandora_db.pl              | 2 +-
 pandora_server/util/pandora_manage.pl          | 2 +-
 25 files changed, 25 insertions(+), 25 deletions(-)

diff --git a/pandora_agents/unix/DEBIAN/control b/pandora_agents/unix/DEBIAN/control
index 327dafa246..1a9853d89b 100644
--- a/pandora_agents/unix/DEBIAN/control
+++ b/pandora_agents/unix/DEBIAN/control
@@ -1,5 +1,5 @@
 package: pandorafms-agent-unix
-Version: 7.0NG.762-220604
+Version: 7.0NG.762-220605
 Architecture: all
 Priority: optional
 Section: admin
diff --git a/pandora_agents/unix/DEBIAN/make_deb_package.sh b/pandora_agents/unix/DEBIAN/make_deb_package.sh
index 1849a8c7c7..7299a83950 100644
--- a/pandora_agents/unix/DEBIAN/make_deb_package.sh
+++ b/pandora_agents/unix/DEBIAN/make_deb_package.sh
@@ -14,7 +14,7 @@
 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 # GNU General Public License for more details.
 
-pandora_version="7.0NG.762-220604"
+pandora_version="7.0NG.762-220605"
 
 echo "Test if you has the tools for to make the packages."
 whereis dpkg-deb | cut -d":" -f2 | grep dpkg-deb > /dev/null
diff --git a/pandora_agents/unix/pandora_agent b/pandora_agents/unix/pandora_agent
index 696dfdda1d..371809c2b7 100755
--- a/pandora_agents/unix/pandora_agent
+++ b/pandora_agents/unix/pandora_agent
@@ -1015,7 +1015,7 @@ my $Sem = undef;
 my $ThreadSem = undef;
 
 use constant AGENT_VERSION => '7.0NG.762';
-use constant AGENT_BUILD => '220604';
+use constant AGENT_BUILD => '220605';
 
 # Agent log default file size maximum and instances
 use constant DEFAULT_MAX_LOG_SIZE => 600000;
diff --git a/pandora_agents/unix/pandora_agent.redhat.spec b/pandora_agents/unix/pandora_agent.redhat.spec
index e58ed3aa1d..81a0821a6b 100644
--- a/pandora_agents/unix/pandora_agent.redhat.spec
+++ b/pandora_agents/unix/pandora_agent.redhat.spec
@@ -3,7 +3,7 @@
 #
 %define name        pandorafms_agent_unix
 %define version     7.0NG.762
-%define release     220604
+%define release     220605
 
 Summary:            Pandora FMS Linux agent, PERL version
 Name:               %{name}
diff --git a/pandora_agents/unix/pandora_agent.spec b/pandora_agents/unix/pandora_agent.spec
index 4e8eb1b321..8456239ecc 100644
--- a/pandora_agents/unix/pandora_agent.spec
+++ b/pandora_agents/unix/pandora_agent.spec
@@ -3,7 +3,7 @@
 #
 %define name        pandorafms_agent_unix
 %define version     7.0NG.762
-%define release     220604
+%define release     220605
 
 Summary:            Pandora FMS Linux agent, PERL version
 Name:               %{name}
diff --git a/pandora_agents/unix/pandora_agent_installer b/pandora_agents/unix/pandora_agent_installer
index 0e9c9321b5..10ad865fa5 100755
--- a/pandora_agents/unix/pandora_agent_installer
+++ b/pandora_agents/unix/pandora_agent_installer
@@ -10,7 +10,7 @@
 # **********************************************************************
 
 PI_VERSION="7.0NG.762"
-PI_BUILD="220604"
+PI_BUILD="220605"
 OS_NAME=`uname -s`
 
 FORCE=0
diff --git a/pandora_agents/win32/installer/pandora.mpi b/pandora_agents/win32/installer/pandora.mpi
index 07421e4a62..b79dca86be 100644
--- a/pandora_agents/win32/installer/pandora.mpi
+++ b/pandora_agents/win32/installer/pandora.mpi
@@ -186,7 +186,7 @@ UpgradeApplicationID
 {}
 
 Version
-{220604}
+{220605}
 
 ViewReadme
 {Yes}
diff --git a/pandora_agents/win32/pandora.cc b/pandora_agents/win32/pandora.cc
index 325bc13fcd..7f53063571 100644
--- a/pandora_agents/win32/pandora.cc
+++ b/pandora_agents/win32/pandora.cc
@@ -30,7 +30,7 @@ using namespace Pandora;
 using namespace Pandora_Strutils;
 
 #define PATH_SIZE    _MAX_PATH+1
-#define PANDORA_VERSION ("7.0NG.762 Build 220604")
+#define PANDORA_VERSION ("7.0NG.762 Build 220605")
 
 string pandora_path;
 string pandora_dir;
diff --git a/pandora_agents/win32/versioninfo.rc b/pandora_agents/win32/versioninfo.rc
index eb1eebac09..c1614bb48f 100644
--- a/pandora_agents/win32/versioninfo.rc
+++ b/pandora_agents/win32/versioninfo.rc
@@ -11,7 +11,7 @@ BEGIN
       VALUE "LegalCopyright", "Artica ST"
       VALUE "OriginalFilename", "PandoraAgent.exe"
       VALUE "ProductName", "Pandora FMS Windows Agent"
-      VALUE "ProductVersion", "(7.0NG.762(Build 220604))"
+      VALUE "ProductVersion", "(7.0NG.762(Build 220605))"
       VALUE "FileVersion", "1.0.0.0"
     END
   END
diff --git a/pandora_console/DEBIAN/control b/pandora_console/DEBIAN/control
index f9ba695e8e..fea46fc790 100644
--- a/pandora_console/DEBIAN/control
+++ b/pandora_console/DEBIAN/control
@@ -1,5 +1,5 @@
 package: pandorafms-console
-Version: 7.0NG.762-220604
+Version: 7.0NG.762-220605
 Architecture: all
 Priority: optional
 Section: admin
diff --git a/pandora_console/DEBIAN/make_deb_package.sh b/pandora_console/DEBIAN/make_deb_package.sh
index cebcb1176c..074e2824ac 100644
--- a/pandora_console/DEBIAN/make_deb_package.sh
+++ b/pandora_console/DEBIAN/make_deb_package.sh
@@ -14,7 +14,7 @@
 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 # GNU General Public License for more details.
 
-pandora_version="7.0NG.762-220604"
+pandora_version="7.0NG.762-220605"
 
 package_pear=0
 package_pandora=1
diff --git a/pandora_console/include/config_process.php b/pandora_console/include/config_process.php
index e9c09ffe57..4b0624b7a0 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 = 'PC220604';
+$build_version = 'PC220605';
 $pandora_version = 'v7.0NG.762';
 
 // Do not overwrite default timezone set if defined.
diff --git a/pandora_console/install.php b/pandora_console/install.php
index f378e61703..715875ca8e 100644
--- a/pandora_console/install.php
+++ b/pandora_console/install.php
@@ -129,7 +129,7 @@
         <div style='height: 10px'>
             <?php
             $version = '7.0NG.762';
-            $build = '220604';
+            $build = '220605';
             $banner = "v$version Build $build";
 
             error_reporting(0);
diff --git a/pandora_console/pandora_console.redhat.spec b/pandora_console/pandora_console.redhat.spec
index 10677554c9..0f5591da07 100644
--- a/pandora_console/pandora_console.redhat.spec
+++ b/pandora_console/pandora_console.redhat.spec
@@ -3,7 +3,7 @@
 #
 %define name        pandorafms_console
 %define version     7.0NG.762
-%define release     220604
+%define release     220605
 
 # User and Group under which Apache is running
 %define httpd_name  httpd
diff --git a/pandora_console/pandora_console.rhel7.spec b/pandora_console/pandora_console.rhel7.spec
index 93e4a24ae2..50dfe930ea 100644
--- a/pandora_console/pandora_console.rhel7.spec
+++ b/pandora_console/pandora_console.rhel7.spec
@@ -3,7 +3,7 @@
 #
 %define name        pandorafms_console
 %define version     7.0NG.762
-%define release     220604
+%define release     220605
 
 # User and Group under which Apache is running
 %define httpd_name  httpd
diff --git a/pandora_console/pandora_console.spec b/pandora_console/pandora_console.spec
index 814314feac..a05c3fae7d 100644
--- a/pandora_console/pandora_console.spec
+++ b/pandora_console/pandora_console.spec
@@ -3,7 +3,7 @@
 #
 %define name        pandorafms_console
 %define version     7.0NG.762
-%define release     220604
+%define release     220605
 %define httpd_name      httpd
 # User and Group under which Apache is running
 %define httpd_name  apache2
diff --git a/pandora_server/DEBIAN/control b/pandora_server/DEBIAN/control
index 974361e986..64f2e9dced 100644
--- a/pandora_server/DEBIAN/control
+++ b/pandora_server/DEBIAN/control
@@ -1,5 +1,5 @@
 package: pandorafms-server
-Version: 7.0NG.762-220604
+Version: 7.0NG.762-220605
 Architecture: all
 Priority: optional
 Section: admin
diff --git a/pandora_server/DEBIAN/make_deb_package.sh b/pandora_server/DEBIAN/make_deb_package.sh
index a5d899584c..ab37f94981 100644
--- a/pandora_server/DEBIAN/make_deb_package.sh
+++ b/pandora_server/DEBIAN/make_deb_package.sh
@@ -14,7 +14,7 @@
 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 # GNU General Public License for more details.
 
-pandora_version="7.0NG.762-220604"
+pandora_version="7.0NG.762-220605"
 
 package_cpan=0
 package_pandora=1
diff --git a/pandora_server/lib/PandoraFMS/Config.pm b/pandora_server/lib/PandoraFMS/Config.pm
index a4c56c9bf8..26eeb03753 100644
--- a/pandora_server/lib/PandoraFMS/Config.pm
+++ b/pandora_server/lib/PandoraFMS/Config.pm
@@ -46,7 +46,7 @@ our @EXPORT = qw(
 
 # version: Defines actual version of Pandora Server for this module only
 my $pandora_version = "7.0NG.762";
-my $pandora_build = "220604";
+my $pandora_build = "220605";
 our $VERSION = $pandora_version." ".$pandora_build;
 
 # Setup hash
diff --git a/pandora_server/lib/PandoraFMS/PluginTools.pm b/pandora_server/lib/PandoraFMS/PluginTools.pm
index 5701d5c537..7235e52695 100644
--- a/pandora_server/lib/PandoraFMS/PluginTools.pm
+++ b/pandora_server/lib/PandoraFMS/PluginTools.pm
@@ -34,7 +34,7 @@ our @ISA = qw(Exporter);
 
 # version: Defines actual version of Pandora Server for this module only
 my $pandora_version = "7.0NG.762";
-my $pandora_build = "220604";
+my $pandora_build = "220605";
 our $VERSION = $pandora_version." ".$pandora_build;
 
 our %EXPORT_TAGS = ( 'all' => [ qw() ] );
diff --git a/pandora_server/pandora_server.redhat.spec b/pandora_server/pandora_server.redhat.spec
index 0fef626edf..8243477451 100644
--- a/pandora_server/pandora_server.redhat.spec
+++ b/pandora_server/pandora_server.redhat.spec
@@ -3,7 +3,7 @@
 #
 %define name        pandorafms_server
 %define version     7.0NG.762
-%define release     220604
+%define release     220605
 
 Summary:            Pandora FMS Server
 Name:               %{name}
diff --git a/pandora_server/pandora_server.spec b/pandora_server/pandora_server.spec
index c6d8f39fb7..f5e16aec59 100644
--- a/pandora_server/pandora_server.spec
+++ b/pandora_server/pandora_server.spec
@@ -3,7 +3,7 @@
 #
 %define name        pandorafms_server
 %define version     7.0NG.762
-%define release     220604
+%define release     220605
 
 Summary:            Pandora FMS Server
 Name:               %{name}
diff --git a/pandora_server/pandora_server_installer b/pandora_server/pandora_server_installer
index 9afa808c19..491cc288f8 100755
--- a/pandora_server/pandora_server_installer
+++ b/pandora_server/pandora_server_installer
@@ -9,7 +9,7 @@
 # **********************************************************************
 
 PI_VERSION="7.0NG.762"
-PI_BUILD="220604"
+PI_BUILD="220605"
 
 MODE=$1
 if [ $# -gt 1 ]; then
diff --git a/pandora_server/util/pandora_db.pl b/pandora_server/util/pandora_db.pl
index 2db45e0aa3..562429e095 100755
--- a/pandora_server/util/pandora_db.pl
+++ b/pandora_server/util/pandora_db.pl
@@ -35,7 +35,7 @@ use PandoraFMS::Config;
 use PandoraFMS::DB;
 
 # version: define current version
-my $version = "7.0NG.762 Build 220604";
+my $version = "7.0NG.762 Build 220605";
 
 # Pandora server configuration
 my %conf;
diff --git a/pandora_server/util/pandora_manage.pl b/pandora_server/util/pandora_manage.pl
index 40106996ea..3eb738490f 100755
--- a/pandora_server/util/pandora_manage.pl
+++ b/pandora_server/util/pandora_manage.pl
@@ -36,7 +36,7 @@ use Encode::Locale;
 Encode::Locale::decode_argv;
 
 # version: define current version
-my $version = "7.0NG.762 Build 220604";
+my $version = "7.0NG.762 Build 220605";
 
 # save program name for logging
 my $progname = basename($0);

From 9712cf6c0f98e6c77878688e804e2d66a8bb5d2f Mon Sep 17 00:00:00 2001
From: artica <artica.devel@gmail.com>
Date: Mon, 6 Jun 2022 01:00:16 +0200
Subject: [PATCH 080/138] Auto-updated build strings.

---
 pandora_agents/unix/DEBIAN/control             | 2 +-
 pandora_agents/unix/DEBIAN/make_deb_package.sh | 2 +-
 pandora_agents/unix/pandora_agent              | 2 +-
 pandora_agents/unix/pandora_agent.redhat.spec  | 2 +-
 pandora_agents/unix/pandora_agent.spec         | 2 +-
 pandora_agents/unix/pandora_agent_installer    | 2 +-
 pandora_agents/win32/installer/pandora.mpi     | 2 +-
 pandora_agents/win32/pandora.cc                | 2 +-
 pandora_agents/win32/versioninfo.rc            | 2 +-
 pandora_console/DEBIAN/control                 | 2 +-
 pandora_console/DEBIAN/make_deb_package.sh     | 2 +-
 pandora_console/include/config_process.php     | 2 +-
 pandora_console/install.php                    | 2 +-
 pandora_console/pandora_console.redhat.spec    | 2 +-
 pandora_console/pandora_console.rhel7.spec     | 2 +-
 pandora_console/pandora_console.spec           | 2 +-
 pandora_server/DEBIAN/control                  | 2 +-
 pandora_server/DEBIAN/make_deb_package.sh      | 2 +-
 pandora_server/lib/PandoraFMS/Config.pm        | 2 +-
 pandora_server/lib/PandoraFMS/PluginTools.pm   | 2 +-
 pandora_server/pandora_server.redhat.spec      | 2 +-
 pandora_server/pandora_server.spec             | 2 +-
 pandora_server/pandora_server_installer        | 2 +-
 pandora_server/util/pandora_db.pl              | 2 +-
 pandora_server/util/pandora_manage.pl          | 2 +-
 25 files changed, 25 insertions(+), 25 deletions(-)

diff --git a/pandora_agents/unix/DEBIAN/control b/pandora_agents/unix/DEBIAN/control
index 1a9853d89b..12bc038128 100644
--- a/pandora_agents/unix/DEBIAN/control
+++ b/pandora_agents/unix/DEBIAN/control
@@ -1,5 +1,5 @@
 package: pandorafms-agent-unix
-Version: 7.0NG.762-220605
+Version: 7.0NG.762-220606
 Architecture: all
 Priority: optional
 Section: admin
diff --git a/pandora_agents/unix/DEBIAN/make_deb_package.sh b/pandora_agents/unix/DEBIAN/make_deb_package.sh
index 7299a83950..613172a1aa 100644
--- a/pandora_agents/unix/DEBIAN/make_deb_package.sh
+++ b/pandora_agents/unix/DEBIAN/make_deb_package.sh
@@ -14,7 +14,7 @@
 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 # GNU General Public License for more details.
 
-pandora_version="7.0NG.762-220605"
+pandora_version="7.0NG.762-220606"
 
 echo "Test if you has the tools for to make the packages."
 whereis dpkg-deb | cut -d":" -f2 | grep dpkg-deb > /dev/null
diff --git a/pandora_agents/unix/pandora_agent b/pandora_agents/unix/pandora_agent
index 371809c2b7..bcf2e39f6c 100755
--- a/pandora_agents/unix/pandora_agent
+++ b/pandora_agents/unix/pandora_agent
@@ -1015,7 +1015,7 @@ my $Sem = undef;
 my $ThreadSem = undef;
 
 use constant AGENT_VERSION => '7.0NG.762';
-use constant AGENT_BUILD => '220605';
+use constant AGENT_BUILD => '220606';
 
 # Agent log default file size maximum and instances
 use constant DEFAULT_MAX_LOG_SIZE => 600000;
diff --git a/pandora_agents/unix/pandora_agent.redhat.spec b/pandora_agents/unix/pandora_agent.redhat.spec
index 81a0821a6b..71effc4fb8 100644
--- a/pandora_agents/unix/pandora_agent.redhat.spec
+++ b/pandora_agents/unix/pandora_agent.redhat.spec
@@ -3,7 +3,7 @@
 #
 %define name        pandorafms_agent_unix
 %define version     7.0NG.762
-%define release     220605
+%define release     220606
 
 Summary:            Pandora FMS Linux agent, PERL version
 Name:               %{name}
diff --git a/pandora_agents/unix/pandora_agent.spec b/pandora_agents/unix/pandora_agent.spec
index 8456239ecc..0289274f67 100644
--- a/pandora_agents/unix/pandora_agent.spec
+++ b/pandora_agents/unix/pandora_agent.spec
@@ -3,7 +3,7 @@
 #
 %define name        pandorafms_agent_unix
 %define version     7.0NG.762
-%define release     220605
+%define release     220606
 
 Summary:            Pandora FMS Linux agent, PERL version
 Name:               %{name}
diff --git a/pandora_agents/unix/pandora_agent_installer b/pandora_agents/unix/pandora_agent_installer
index 10ad865fa5..30c6cf0e86 100755
--- a/pandora_agents/unix/pandora_agent_installer
+++ b/pandora_agents/unix/pandora_agent_installer
@@ -10,7 +10,7 @@
 # **********************************************************************
 
 PI_VERSION="7.0NG.762"
-PI_BUILD="220605"
+PI_BUILD="220606"
 OS_NAME=`uname -s`
 
 FORCE=0
diff --git a/pandora_agents/win32/installer/pandora.mpi b/pandora_agents/win32/installer/pandora.mpi
index b79dca86be..cc1aeeb539 100644
--- a/pandora_agents/win32/installer/pandora.mpi
+++ b/pandora_agents/win32/installer/pandora.mpi
@@ -186,7 +186,7 @@ UpgradeApplicationID
 {}
 
 Version
-{220605}
+{220606}
 
 ViewReadme
 {Yes}
diff --git a/pandora_agents/win32/pandora.cc b/pandora_agents/win32/pandora.cc
index 7f53063571..76560d4a5d 100644
--- a/pandora_agents/win32/pandora.cc
+++ b/pandora_agents/win32/pandora.cc
@@ -30,7 +30,7 @@ using namespace Pandora;
 using namespace Pandora_Strutils;
 
 #define PATH_SIZE    _MAX_PATH+1
-#define PANDORA_VERSION ("7.0NG.762 Build 220605")
+#define PANDORA_VERSION ("7.0NG.762 Build 220606")
 
 string pandora_path;
 string pandora_dir;
diff --git a/pandora_agents/win32/versioninfo.rc b/pandora_agents/win32/versioninfo.rc
index c1614bb48f..79b995fcab 100644
--- a/pandora_agents/win32/versioninfo.rc
+++ b/pandora_agents/win32/versioninfo.rc
@@ -11,7 +11,7 @@ BEGIN
       VALUE "LegalCopyright", "Artica ST"
       VALUE "OriginalFilename", "PandoraAgent.exe"
       VALUE "ProductName", "Pandora FMS Windows Agent"
-      VALUE "ProductVersion", "(7.0NG.762(Build 220605))"
+      VALUE "ProductVersion", "(7.0NG.762(Build 220606))"
       VALUE "FileVersion", "1.0.0.0"
     END
   END
diff --git a/pandora_console/DEBIAN/control b/pandora_console/DEBIAN/control
index fea46fc790..a6b3e0bc06 100644
--- a/pandora_console/DEBIAN/control
+++ b/pandora_console/DEBIAN/control
@@ -1,5 +1,5 @@
 package: pandorafms-console
-Version: 7.0NG.762-220605
+Version: 7.0NG.762-220606
 Architecture: all
 Priority: optional
 Section: admin
diff --git a/pandora_console/DEBIAN/make_deb_package.sh b/pandora_console/DEBIAN/make_deb_package.sh
index 074e2824ac..b90d79665d 100644
--- a/pandora_console/DEBIAN/make_deb_package.sh
+++ b/pandora_console/DEBIAN/make_deb_package.sh
@@ -14,7 +14,7 @@
 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 # GNU General Public License for more details.
 
-pandora_version="7.0NG.762-220605"
+pandora_version="7.0NG.762-220606"
 
 package_pear=0
 package_pandora=1
diff --git a/pandora_console/include/config_process.php b/pandora_console/include/config_process.php
index 4b0624b7a0..eb7f300d32 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 = 'PC220605';
+$build_version = 'PC220606';
 $pandora_version = 'v7.0NG.762';
 
 // Do not overwrite default timezone set if defined.
diff --git a/pandora_console/install.php b/pandora_console/install.php
index 715875ca8e..df9b54b2cf 100644
--- a/pandora_console/install.php
+++ b/pandora_console/install.php
@@ -129,7 +129,7 @@
         <div style='height: 10px'>
             <?php
             $version = '7.0NG.762';
-            $build = '220605';
+            $build = '220606';
             $banner = "v$version Build $build";
 
             error_reporting(0);
diff --git a/pandora_console/pandora_console.redhat.spec b/pandora_console/pandora_console.redhat.spec
index 0f5591da07..85de87f0d2 100644
--- a/pandora_console/pandora_console.redhat.spec
+++ b/pandora_console/pandora_console.redhat.spec
@@ -3,7 +3,7 @@
 #
 %define name        pandorafms_console
 %define version     7.0NG.762
-%define release     220605
+%define release     220606
 
 # User and Group under which Apache is running
 %define httpd_name  httpd
diff --git a/pandora_console/pandora_console.rhel7.spec b/pandora_console/pandora_console.rhel7.spec
index 50dfe930ea..c9605f09b9 100644
--- a/pandora_console/pandora_console.rhel7.spec
+++ b/pandora_console/pandora_console.rhel7.spec
@@ -3,7 +3,7 @@
 #
 %define name        pandorafms_console
 %define version     7.0NG.762
-%define release     220605
+%define release     220606
 
 # User and Group under which Apache is running
 %define httpd_name  httpd
diff --git a/pandora_console/pandora_console.spec b/pandora_console/pandora_console.spec
index a05c3fae7d..4f2676d72c 100644
--- a/pandora_console/pandora_console.spec
+++ b/pandora_console/pandora_console.spec
@@ -3,7 +3,7 @@
 #
 %define name        pandorafms_console
 %define version     7.0NG.762
-%define release     220605
+%define release     220606
 %define httpd_name      httpd
 # User and Group under which Apache is running
 %define httpd_name  apache2
diff --git a/pandora_server/DEBIAN/control b/pandora_server/DEBIAN/control
index 64f2e9dced..0c2ca1b9e6 100644
--- a/pandora_server/DEBIAN/control
+++ b/pandora_server/DEBIAN/control
@@ -1,5 +1,5 @@
 package: pandorafms-server
-Version: 7.0NG.762-220605
+Version: 7.0NG.762-220606
 Architecture: all
 Priority: optional
 Section: admin
diff --git a/pandora_server/DEBIAN/make_deb_package.sh b/pandora_server/DEBIAN/make_deb_package.sh
index ab37f94981..1c030c76ee 100644
--- a/pandora_server/DEBIAN/make_deb_package.sh
+++ b/pandora_server/DEBIAN/make_deb_package.sh
@@ -14,7 +14,7 @@
 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 # GNU General Public License for more details.
 
-pandora_version="7.0NG.762-220605"
+pandora_version="7.0NG.762-220606"
 
 package_cpan=0
 package_pandora=1
diff --git a/pandora_server/lib/PandoraFMS/Config.pm b/pandora_server/lib/PandoraFMS/Config.pm
index 26eeb03753..f3502cff1a 100644
--- a/pandora_server/lib/PandoraFMS/Config.pm
+++ b/pandora_server/lib/PandoraFMS/Config.pm
@@ -46,7 +46,7 @@ our @EXPORT = qw(
 
 # version: Defines actual version of Pandora Server for this module only
 my $pandora_version = "7.0NG.762";
-my $pandora_build = "220605";
+my $pandora_build = "220606";
 our $VERSION = $pandora_version." ".$pandora_build;
 
 # Setup hash
diff --git a/pandora_server/lib/PandoraFMS/PluginTools.pm b/pandora_server/lib/PandoraFMS/PluginTools.pm
index 7235e52695..afa16cc2fa 100644
--- a/pandora_server/lib/PandoraFMS/PluginTools.pm
+++ b/pandora_server/lib/PandoraFMS/PluginTools.pm
@@ -34,7 +34,7 @@ our @ISA = qw(Exporter);
 
 # version: Defines actual version of Pandora Server for this module only
 my $pandora_version = "7.0NG.762";
-my $pandora_build = "220605";
+my $pandora_build = "220606";
 our $VERSION = $pandora_version." ".$pandora_build;
 
 our %EXPORT_TAGS = ( 'all' => [ qw() ] );
diff --git a/pandora_server/pandora_server.redhat.spec b/pandora_server/pandora_server.redhat.spec
index 8243477451..54d2ac5459 100644
--- a/pandora_server/pandora_server.redhat.spec
+++ b/pandora_server/pandora_server.redhat.spec
@@ -3,7 +3,7 @@
 #
 %define name        pandorafms_server
 %define version     7.0NG.762
-%define release     220605
+%define release     220606
 
 Summary:            Pandora FMS Server
 Name:               %{name}
diff --git a/pandora_server/pandora_server.spec b/pandora_server/pandora_server.spec
index f5e16aec59..4b64e3661c 100644
--- a/pandora_server/pandora_server.spec
+++ b/pandora_server/pandora_server.spec
@@ -3,7 +3,7 @@
 #
 %define name        pandorafms_server
 %define version     7.0NG.762
-%define release     220605
+%define release     220606
 
 Summary:            Pandora FMS Server
 Name:               %{name}
diff --git a/pandora_server/pandora_server_installer b/pandora_server/pandora_server_installer
index 491cc288f8..01cd132aaa 100755
--- a/pandora_server/pandora_server_installer
+++ b/pandora_server/pandora_server_installer
@@ -9,7 +9,7 @@
 # **********************************************************************
 
 PI_VERSION="7.0NG.762"
-PI_BUILD="220605"
+PI_BUILD="220606"
 
 MODE=$1
 if [ $# -gt 1 ]; then
diff --git a/pandora_server/util/pandora_db.pl b/pandora_server/util/pandora_db.pl
index 562429e095..cb3fc978d7 100755
--- a/pandora_server/util/pandora_db.pl
+++ b/pandora_server/util/pandora_db.pl
@@ -35,7 +35,7 @@ use PandoraFMS::Config;
 use PandoraFMS::DB;
 
 # version: define current version
-my $version = "7.0NG.762 Build 220605";
+my $version = "7.0NG.762 Build 220606";
 
 # Pandora server configuration
 my %conf;
diff --git a/pandora_server/util/pandora_manage.pl b/pandora_server/util/pandora_manage.pl
index 3eb738490f..8ce7f33f32 100755
--- a/pandora_server/util/pandora_manage.pl
+++ b/pandora_server/util/pandora_manage.pl
@@ -36,7 +36,7 @@ use Encode::Locale;
 Encode::Locale::decode_argv;
 
 # version: define current version
-my $version = "7.0NG.762 Build 220605";
+my $version = "7.0NG.762 Build 220606";
 
 # save program name for logging
 my $progname = basename($0);

From 44748a0f8ba20320cc090add1207e7c4899ff356 Mon Sep 17 00:00:00 2001
From: Daniel Maya <daniel.maya@pandorafms.com>
Date: Mon, 6 Jun 2022 16:34:16 +0200
Subject: [PATCH 081/138] #9108 fixed modules_get_table_data

---
 pandora_console/include/functions_modules.php | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/pandora_console/include/functions_modules.php b/pandora_console/include/functions_modules.php
index f94a8b687d..e286a7720b 100755
--- a/pandora_console/include/functions_modules.php
+++ b/pandora_console/include/functions_modules.php
@@ -1133,7 +1133,7 @@ function modules_get_table_data(?int $id_agent_module, ?int $id_type)
 
 function modules_get_raw_data($id_agent_module, $date_init, $date_end)
 {
-    $table = modules_get_table_data($id_agent_module);
+    $table = modules_get_table_data($id_agent_module, null);
 
     $datelimit = ($date_init - $date_end);
     $search_in_history_db = db_search_in_history_db($datelimit);
@@ -4213,7 +4213,7 @@ function modules_get_min_max_data($id_agent_module, $time_init=0)
         $data[0]['max'] = $min_max['max'];
     } else {
         // Search limits of the last two days.
-        $table = modules_get_table_data($id_agent_module);
+        $table = modules_get_table_data($id_agent_module, null);
         $data = db_get_all_rows_sql(
             'SELECT min(datos) as min, max(datos) as max
             FROM '.$table.'

From 851f1a19ce738808c5bca07eb5a2e68ffc445eb2 Mon Sep 17 00:00:00 2001
From: artica <artica.devel@gmail.com>
Date: Tue, 7 Jun 2022 01:00:21 +0200
Subject: [PATCH 082/138] Auto-updated build strings.

---
 pandora_agents/unix/DEBIAN/control             | 2 +-
 pandora_agents/unix/DEBIAN/make_deb_package.sh | 2 +-
 pandora_agents/unix/pandora_agent              | 2 +-
 pandora_agents/unix/pandora_agent.redhat.spec  | 2 +-
 pandora_agents/unix/pandora_agent.spec         | 2 +-
 pandora_agents/unix/pandora_agent_installer    | 2 +-
 pandora_agents/win32/installer/pandora.mpi     | 2 +-
 pandora_agents/win32/pandora.cc                | 2 +-
 pandora_agents/win32/versioninfo.rc            | 2 +-
 pandora_console/DEBIAN/control                 | 2 +-
 pandora_console/DEBIAN/make_deb_package.sh     | 2 +-
 pandora_console/include/config_process.php     | 2 +-
 pandora_console/install.php                    | 2 +-
 pandora_console/pandora_console.redhat.spec    | 2 +-
 pandora_console/pandora_console.rhel7.spec     | 2 +-
 pandora_console/pandora_console.spec           | 2 +-
 pandora_server/DEBIAN/control                  | 2 +-
 pandora_server/DEBIAN/make_deb_package.sh      | 2 +-
 pandora_server/lib/PandoraFMS/Config.pm        | 2 +-
 pandora_server/lib/PandoraFMS/PluginTools.pm   | 2 +-
 pandora_server/pandora_server.redhat.spec      | 2 +-
 pandora_server/pandora_server.spec             | 2 +-
 pandora_server/pandora_server_installer        | 2 +-
 pandora_server/util/pandora_db.pl              | 2 +-
 pandora_server/util/pandora_manage.pl          | 2 +-
 25 files changed, 25 insertions(+), 25 deletions(-)

diff --git a/pandora_agents/unix/DEBIAN/control b/pandora_agents/unix/DEBIAN/control
index 12bc038128..b3cb1f17fb 100644
--- a/pandora_agents/unix/DEBIAN/control
+++ b/pandora_agents/unix/DEBIAN/control
@@ -1,5 +1,5 @@
 package: pandorafms-agent-unix
-Version: 7.0NG.762-220606
+Version: 7.0NG.762-220607
 Architecture: all
 Priority: optional
 Section: admin
diff --git a/pandora_agents/unix/DEBIAN/make_deb_package.sh b/pandora_agents/unix/DEBIAN/make_deb_package.sh
index 613172a1aa..5d6573eac3 100644
--- a/pandora_agents/unix/DEBIAN/make_deb_package.sh
+++ b/pandora_agents/unix/DEBIAN/make_deb_package.sh
@@ -14,7 +14,7 @@
 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 # GNU General Public License for more details.
 
-pandora_version="7.0NG.762-220606"
+pandora_version="7.0NG.762-220607"
 
 echo "Test if you has the tools for to make the packages."
 whereis dpkg-deb | cut -d":" -f2 | grep dpkg-deb > /dev/null
diff --git a/pandora_agents/unix/pandora_agent b/pandora_agents/unix/pandora_agent
index bcf2e39f6c..b32f414bde 100755
--- a/pandora_agents/unix/pandora_agent
+++ b/pandora_agents/unix/pandora_agent
@@ -1015,7 +1015,7 @@ my $Sem = undef;
 my $ThreadSem = undef;
 
 use constant AGENT_VERSION => '7.0NG.762';
-use constant AGENT_BUILD => '220606';
+use constant AGENT_BUILD => '220607';
 
 # Agent log default file size maximum and instances
 use constant DEFAULT_MAX_LOG_SIZE => 600000;
diff --git a/pandora_agents/unix/pandora_agent.redhat.spec b/pandora_agents/unix/pandora_agent.redhat.spec
index 71effc4fb8..56d2497d72 100644
--- a/pandora_agents/unix/pandora_agent.redhat.spec
+++ b/pandora_agents/unix/pandora_agent.redhat.spec
@@ -3,7 +3,7 @@
 #
 %define name        pandorafms_agent_unix
 %define version     7.0NG.762
-%define release     220606
+%define release     220607
 
 Summary:            Pandora FMS Linux agent, PERL version
 Name:               %{name}
diff --git a/pandora_agents/unix/pandora_agent.spec b/pandora_agents/unix/pandora_agent.spec
index 0289274f67..7ef4039d8d 100644
--- a/pandora_agents/unix/pandora_agent.spec
+++ b/pandora_agents/unix/pandora_agent.spec
@@ -3,7 +3,7 @@
 #
 %define name        pandorafms_agent_unix
 %define version     7.0NG.762
-%define release     220606
+%define release     220607
 
 Summary:            Pandora FMS Linux agent, PERL version
 Name:               %{name}
diff --git a/pandora_agents/unix/pandora_agent_installer b/pandora_agents/unix/pandora_agent_installer
index 30c6cf0e86..1b6e438a75 100755
--- a/pandora_agents/unix/pandora_agent_installer
+++ b/pandora_agents/unix/pandora_agent_installer
@@ -10,7 +10,7 @@
 # **********************************************************************
 
 PI_VERSION="7.0NG.762"
-PI_BUILD="220606"
+PI_BUILD="220607"
 OS_NAME=`uname -s`
 
 FORCE=0
diff --git a/pandora_agents/win32/installer/pandora.mpi b/pandora_agents/win32/installer/pandora.mpi
index cc1aeeb539..5334433382 100644
--- a/pandora_agents/win32/installer/pandora.mpi
+++ b/pandora_agents/win32/installer/pandora.mpi
@@ -186,7 +186,7 @@ UpgradeApplicationID
 {}
 
 Version
-{220606}
+{220607}
 
 ViewReadme
 {Yes}
diff --git a/pandora_agents/win32/pandora.cc b/pandora_agents/win32/pandora.cc
index 76560d4a5d..2f7eabaf99 100644
--- a/pandora_agents/win32/pandora.cc
+++ b/pandora_agents/win32/pandora.cc
@@ -30,7 +30,7 @@ using namespace Pandora;
 using namespace Pandora_Strutils;
 
 #define PATH_SIZE    _MAX_PATH+1
-#define PANDORA_VERSION ("7.0NG.762 Build 220606")
+#define PANDORA_VERSION ("7.0NG.762 Build 220607")
 
 string pandora_path;
 string pandora_dir;
diff --git a/pandora_agents/win32/versioninfo.rc b/pandora_agents/win32/versioninfo.rc
index 79b995fcab..d0744b30ae 100644
--- a/pandora_agents/win32/versioninfo.rc
+++ b/pandora_agents/win32/versioninfo.rc
@@ -11,7 +11,7 @@ BEGIN
       VALUE "LegalCopyright", "Artica ST"
       VALUE "OriginalFilename", "PandoraAgent.exe"
       VALUE "ProductName", "Pandora FMS Windows Agent"
-      VALUE "ProductVersion", "(7.0NG.762(Build 220606))"
+      VALUE "ProductVersion", "(7.0NG.762(Build 220607))"
       VALUE "FileVersion", "1.0.0.0"
     END
   END
diff --git a/pandora_console/DEBIAN/control b/pandora_console/DEBIAN/control
index a6b3e0bc06..addb068715 100644
--- a/pandora_console/DEBIAN/control
+++ b/pandora_console/DEBIAN/control
@@ -1,5 +1,5 @@
 package: pandorafms-console
-Version: 7.0NG.762-220606
+Version: 7.0NG.762-220607
 Architecture: all
 Priority: optional
 Section: admin
diff --git a/pandora_console/DEBIAN/make_deb_package.sh b/pandora_console/DEBIAN/make_deb_package.sh
index b90d79665d..2de6132844 100644
--- a/pandora_console/DEBIAN/make_deb_package.sh
+++ b/pandora_console/DEBIAN/make_deb_package.sh
@@ -14,7 +14,7 @@
 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 # GNU General Public License for more details.
 
-pandora_version="7.0NG.762-220606"
+pandora_version="7.0NG.762-220607"
 
 package_pear=0
 package_pandora=1
diff --git a/pandora_console/include/config_process.php b/pandora_console/include/config_process.php
index eb7f300d32..8096b72dc1 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 = 'PC220606';
+$build_version = 'PC220607';
 $pandora_version = 'v7.0NG.762';
 
 // Do not overwrite default timezone set if defined.
diff --git a/pandora_console/install.php b/pandora_console/install.php
index df9b54b2cf..d19447f5b0 100644
--- a/pandora_console/install.php
+++ b/pandora_console/install.php
@@ -129,7 +129,7 @@
         <div style='height: 10px'>
             <?php
             $version = '7.0NG.762';
-            $build = '220606';
+            $build = '220607';
             $banner = "v$version Build $build";
 
             error_reporting(0);
diff --git a/pandora_console/pandora_console.redhat.spec b/pandora_console/pandora_console.redhat.spec
index 85de87f0d2..bf6b75a900 100644
--- a/pandora_console/pandora_console.redhat.spec
+++ b/pandora_console/pandora_console.redhat.spec
@@ -3,7 +3,7 @@
 #
 %define name        pandorafms_console
 %define version     7.0NG.762
-%define release     220606
+%define release     220607
 
 # User and Group under which Apache is running
 %define httpd_name  httpd
diff --git a/pandora_console/pandora_console.rhel7.spec b/pandora_console/pandora_console.rhel7.spec
index c9605f09b9..643f8340fe 100644
--- a/pandora_console/pandora_console.rhel7.spec
+++ b/pandora_console/pandora_console.rhel7.spec
@@ -3,7 +3,7 @@
 #
 %define name        pandorafms_console
 %define version     7.0NG.762
-%define release     220606
+%define release     220607
 
 # User and Group under which Apache is running
 %define httpd_name  httpd
diff --git a/pandora_console/pandora_console.spec b/pandora_console/pandora_console.spec
index 4f2676d72c..21194e6d24 100644
--- a/pandora_console/pandora_console.spec
+++ b/pandora_console/pandora_console.spec
@@ -3,7 +3,7 @@
 #
 %define name        pandorafms_console
 %define version     7.0NG.762
-%define release     220606
+%define release     220607
 %define httpd_name      httpd
 # User and Group under which Apache is running
 %define httpd_name  apache2
diff --git a/pandora_server/DEBIAN/control b/pandora_server/DEBIAN/control
index 0c2ca1b9e6..777367f95d 100644
--- a/pandora_server/DEBIAN/control
+++ b/pandora_server/DEBIAN/control
@@ -1,5 +1,5 @@
 package: pandorafms-server
-Version: 7.0NG.762-220606
+Version: 7.0NG.762-220607
 Architecture: all
 Priority: optional
 Section: admin
diff --git a/pandora_server/DEBIAN/make_deb_package.sh b/pandora_server/DEBIAN/make_deb_package.sh
index 1c030c76ee..80b2429cb7 100644
--- a/pandora_server/DEBIAN/make_deb_package.sh
+++ b/pandora_server/DEBIAN/make_deb_package.sh
@@ -14,7 +14,7 @@
 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 # GNU General Public License for more details.
 
-pandora_version="7.0NG.762-220606"
+pandora_version="7.0NG.762-220607"
 
 package_cpan=0
 package_pandora=1
diff --git a/pandora_server/lib/PandoraFMS/Config.pm b/pandora_server/lib/PandoraFMS/Config.pm
index f3502cff1a..43774bd7e7 100644
--- a/pandora_server/lib/PandoraFMS/Config.pm
+++ b/pandora_server/lib/PandoraFMS/Config.pm
@@ -46,7 +46,7 @@ our @EXPORT = qw(
 
 # version: Defines actual version of Pandora Server for this module only
 my $pandora_version = "7.0NG.762";
-my $pandora_build = "220606";
+my $pandora_build = "220607";
 our $VERSION = $pandora_version." ".$pandora_build;
 
 # Setup hash
diff --git a/pandora_server/lib/PandoraFMS/PluginTools.pm b/pandora_server/lib/PandoraFMS/PluginTools.pm
index afa16cc2fa..7d5b27bbe1 100644
--- a/pandora_server/lib/PandoraFMS/PluginTools.pm
+++ b/pandora_server/lib/PandoraFMS/PluginTools.pm
@@ -34,7 +34,7 @@ our @ISA = qw(Exporter);
 
 # version: Defines actual version of Pandora Server for this module only
 my $pandora_version = "7.0NG.762";
-my $pandora_build = "220606";
+my $pandora_build = "220607";
 our $VERSION = $pandora_version." ".$pandora_build;
 
 our %EXPORT_TAGS = ( 'all' => [ qw() ] );
diff --git a/pandora_server/pandora_server.redhat.spec b/pandora_server/pandora_server.redhat.spec
index 54d2ac5459..eb162c68d7 100644
--- a/pandora_server/pandora_server.redhat.spec
+++ b/pandora_server/pandora_server.redhat.spec
@@ -3,7 +3,7 @@
 #
 %define name        pandorafms_server
 %define version     7.0NG.762
-%define release     220606
+%define release     220607
 
 Summary:            Pandora FMS Server
 Name:               %{name}
diff --git a/pandora_server/pandora_server.spec b/pandora_server/pandora_server.spec
index 4b64e3661c..01ec646be8 100644
--- a/pandora_server/pandora_server.spec
+++ b/pandora_server/pandora_server.spec
@@ -3,7 +3,7 @@
 #
 %define name        pandorafms_server
 %define version     7.0NG.762
-%define release     220606
+%define release     220607
 
 Summary:            Pandora FMS Server
 Name:               %{name}
diff --git a/pandora_server/pandora_server_installer b/pandora_server/pandora_server_installer
index 01cd132aaa..ea215e6c7f 100755
--- a/pandora_server/pandora_server_installer
+++ b/pandora_server/pandora_server_installer
@@ -9,7 +9,7 @@
 # **********************************************************************
 
 PI_VERSION="7.0NG.762"
-PI_BUILD="220606"
+PI_BUILD="220607"
 
 MODE=$1
 if [ $# -gt 1 ]; then
diff --git a/pandora_server/util/pandora_db.pl b/pandora_server/util/pandora_db.pl
index cb3fc978d7..cc2e5e832d 100755
--- a/pandora_server/util/pandora_db.pl
+++ b/pandora_server/util/pandora_db.pl
@@ -35,7 +35,7 @@ use PandoraFMS::Config;
 use PandoraFMS::DB;
 
 # version: define current version
-my $version = "7.0NG.762 Build 220606";
+my $version = "7.0NG.762 Build 220607";
 
 # Pandora server configuration
 my %conf;
diff --git a/pandora_server/util/pandora_manage.pl b/pandora_server/util/pandora_manage.pl
index 8ce7f33f32..feb3621f97 100755
--- a/pandora_server/util/pandora_manage.pl
+++ b/pandora_server/util/pandora_manage.pl
@@ -36,7 +36,7 @@ use Encode::Locale;
 Encode::Locale::decode_argv;
 
 # version: define current version
-my $version = "7.0NG.762 Build 220606";
+my $version = "7.0NG.762 Build 220607";
 
 # save program name for logging
 my $progname = basename($0);

From 7aa40617f8866ab6b1be27bf3eb68f6a1e5a926d Mon Sep 17 00:00:00 2001
From: "alejandro.campos@artica.es" <alejandro.campos@artica.es>
Date: Tue, 7 Jun 2022 11:20:51 +0200
Subject: [PATCH 083/138] fixed macro default value not loading

---
 pandora_console/include/javascript/pandora_modules.js | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/pandora_console/include/javascript/pandora_modules.js b/pandora_console/include/javascript/pandora_modules.js
index 3a536a461f..28083ec166 100644
--- a/pandora_console/include/javascript/pandora_modules.js
+++ b/pandora_console/include/javascript/pandora_modules.js
@@ -849,7 +849,8 @@ function add_macro_field(macro, row_model_id, type_copy, k) {
   $macro_field
     .find("input")
     .first()
-    .attr("name", macro_macro);
+    .attr("name", macro_macro)
+    .val(macro_value);
 
   $macro_field.attr("class", "macro_field");
 

From 4f214029926f13e8fe5452a5b52d391b688ec762 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Jos=C3=A9=20Gonz=C3=A1lez?= <jose.gonzalez@pandorafms.com>
Date: Tue, 7 Jun 2022 16:31:55 +0200
Subject: [PATCH 084/138] Fixed languages files

---
 pandora_console/include/languages/es.mo     |   Bin 761297 -> 762247 bytes
 pandora_console/include/languages/es.po     | 96297 +++++++++---------
 pandora_console/include/languages/index.pot | 79074 ++++++++------
 3 files changed, 97970 insertions(+), 77401 deletions(-)

diff --git a/pandora_console/include/languages/es.mo b/pandora_console/include/languages/es.mo
index 17520189914fbc2f1383ddb51bba7e1b12457fea..c764e932de27e07917a98148e6f0bd2d51872530 100644
GIT binary patch
delta 189751
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
C4riGF

delta 189027
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

diff --git a/pandora_console/include/languages/es.po b/pandora_console/include/languages/es.po
index 9a85543e87..852d2e5bed 100644
--- a/pandora_console/include/languages/es.po
+++ b/pandora_console/include/languages/es.po
@@ -8,8 +8,8 @@ msgid ""
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2022-04-20 16:12+0200\n"
-"PO-Revision-Date: 2022-04-21 10:09+0200\n"
+"POT-Creation-Date: 2022-05-27 13:07+0200\n"
+"PO-Revision-Date: 2022-05-27 14:21+0200\n"
 "Last-Translator: Laura Cano <Unknown>\n"
 "Language-Team: Spanish\n"
 "Language: es\n"
@@ -19,1493 +19,599 @@ msgstr ""
 "X-Launchpad-Export-Date: 2021-04-22 12:47+0000\n"
 "X-Generator: Poedit 3.0\n"
 
-#: ../../operation/netflow/nf_live_view.php:123
-#: ../../operation/netflow/nf_live_view.php:145
-#: ../../operation/netflow/nf_live_view.php:151
-msgid "Netflow live view"
-msgstr "Netflow en tiempo real"
+#: ../../views/calendar/edit.php:40
+msgid "Calendars Edit"
+msgstr "Editar calendarios"
 
-#: ../../operation/netflow/nf_live_view.php:133
-#: ../../godmode/netflow/nf_edit.php:47
-#: ../../enterprise/operation/log/log_viewer.php:458
-#: ../../enterprise/godmode/modules/manage_inventory_modules.php:72
-#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:48
-msgid "Not supported in Windows systems"
-msgstr "No compatible con sistemas Windows"
+#: ../../views/calendar/edit.php:58 ../../views/calendar/special_days.php:59
+#: ../../views/calendar/special_days_edit.php:58 ../../views/calendar/list.php:57
+#: ../../operation/users/user_edit.php:244
+#: ../../enterprise/operation/agentes/policy_view.php:51
+#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:206
+#: ../../enterprise/include/lib/Policy/Queue.php:162
+#: ../../enterprise/include/lib/Policy/Queue.php:163
+#: ../../enterprise/include/lib/Policy/Queue.php:406
+#: ../../enterprise/extensions/csv_import_group.php:43
+#: ../../enterprise/godmode/modules/local_components.php:256
+#: ../../enterprise/godmode/modules/manage_inventory_modules.php:56
+#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:31
+#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:31
+#: ../../enterprise/godmode/massive/massive_edit_tags_policy.php:33
+#: ../../enterprise/godmode/massive/massive_add_alerts_policy.php:31
+#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:33
+#: ../../enterprise/godmode/massive/massive_tags_edit_policy.php:33
+#: ../../enterprise/godmode/agentes/agent_autoconfiguration.php:122
+#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:316
+#: ../../enterprise/godmode/agentes/collections.editor.php:112
+#: ../../enterprise/godmode/agentes/collections.data.php:398
+#: ../../enterprise/godmode/agentes/collections.php:95
+#: ../../enterprise/godmode/policies/policy_agents.php:319
+#: ../../enterprise/godmode/policies/policy_queue.php:211
+#: ../../enterprise/godmode/policies/policy_linking.php:110
+#: ../../enterprise/godmode/policies/policy_modules.php:469
+#: ../../enterprise/godmode/policies/policies.php:261
+#: ../../enterprise/godmode/policies/policy_external_alerts.php:302
+#: ../../enterprise/godmode/policies/configure_policy.php:74
+#: ../../enterprise/godmode/policies/policy_inventory_modules.php:84
+#: ../../enterprise/godmode/policies/policy_alerts.php:57
+#: ../../enterprise/godmode/policies/policy_collections.php:43
+#: ../../enterprise/godmode/policies/policy_plugins.php:31
+#: ../../extensions/resource_registration.php:1107
+#: ../../godmode/setup/os.list.php:49
+#: ../../godmode/servers/plugin_registration.php:79
+#: ../../godmode/modules/manage_network_components.php:306
+#: ../../godmode/modules/manage_nc_groups.php:286
+#: ../../godmode/category/category.php:101 ../../godmode/tag/tag.php:188
+#: ../../godmode/massive/massive_operations.php:410
+#: ../../godmode/massive/massive_add_profiles.php:45
+#: ../../godmode/massive/massive_delete_profiles.php:45
+#: ../../godmode/agentes/modificar_agente.php:117
+#: ../../godmode/alerts/configure_alert_template.php:412
+#: ../../godmode/alerts/alert_actions.php:215
+#: ../../godmode/alerts/alert_templates.php:261
+#: ../../godmode/alerts/alert_commands.php:636
+#: ../../godmode/alerts/configure_alert_command.php:189
+#: ../../godmode/alerts/configure_alert_action.php:113
+#: ../../godmode/users/user_list.php:425 ../../godmode/users/profile_list.php:108
+#: ../../godmode/groups/modu_group_list.php:85
+#: ../../godmode/groups/group_list.php:396
+msgid "metaconsole"
+msgstr "metaconsola"
 
-#: ../../operation/netflow/nf_live_view.php:141
-#: ../../operation/agentes/ver_agente.php:1368
-#: ../../godmode/netflow/nf_edit.php:53 ../../godmode/netflow/nf_item_list.php:49
-#: ../../godmode/netflow/nf_edit_form.php:69
-#: ../../enterprise/include/class/CommandCenter.class.php:142
-#: ../../enterprise/meta/advanced/policymanager.php:54
-#: ../../enterprise/meta/advanced/agents_setup.php:60
-#: ../../enterprise/meta/index.php:955
-#: ../../enterprise/meta/general/logon_ok.php:16
-#: ../../enterprise/meta/agentsearch.php:48
-#: ../../enterprise/meta/monitoring/group_view.php:51
-#: ../../enterprise/meta/monitoring/tactical.php:36
-#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:55
-#: ../../enterprise/meta/monitoring/custom_fields_view.php:50
-#: ../../enterprise/extensions/vmware/vmware_view.php:1373
-msgid "Main"
-msgstr "Principal"
+#: ../../views/calendar/edit.php:61 ../../views/calendar/special_days.php:62
+#: ../../views/calendar/special_days_edit.php:61 ../../views/calendar/list.php:60
+#: ../../operation/users/user_edit.php:246
+#: ../../enterprise/operation/agentes/policy_view.php:53
+#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:208
+#: ../../enterprise/extensions/csv_import_group.php:45
+#: ../../enterprise/godmode/modules/local_components.php:258
+#: ../../enterprise/godmode/modules/manage_inventory_modules.php:58
+#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:33
+#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:33
+#: ../../enterprise/godmode/massive/massive_edit_tags_policy.php:35
+#: ../../enterprise/godmode/massive/massive_add_alerts_policy.php:33
+#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:35
+#: ../../enterprise/godmode/massive/massive_tags_edit_policy.php:35
+#: ../../enterprise/godmode/agentes/agent_autoconfiguration.php:124
+#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:318
+#: ../../enterprise/godmode/policies/policy_agents.php:321
+#: ../../enterprise/godmode/policies/policy_queue.php:213
+#: ../../enterprise/godmode/policies/policy_linking.php:112
+#: ../../enterprise/godmode/policies/policy_modules.php:471
+#: ../../enterprise/godmode/policies/policies.php:263
+#: ../../enterprise/godmode/policies/policy_external_alerts.php:304
+#: ../../enterprise/godmode/policies/configure_policy.php:76
+#: ../../enterprise/godmode/policies/policy_inventory_modules.php:86
+#: ../../enterprise/godmode/policies/policy_alerts.php:59
+#: ../../enterprise/godmode/policies/policy_collections.php:45
+#: ../../enterprise/godmode/policies/policy_plugins.php:33
+#: ../../extensions/resource_registration.php:1109
+#: ../../godmode/setup/os.list.php:51
+#: ../../godmode/modules/manage_network_components.php:308
+#: ../../godmode/modules/manage_nc_groups.php:288
+#: ../../godmode/category/category.php:103 ../../godmode/tag/tag.php:190
+#: ../../godmode/massive/massive_operations.php:412
+#: ../../godmode/massive/massive_add_profiles.php:47
+#: ../../godmode/massive/massive_delete_profiles.php:47
+#: ../../godmode/agentes/modificar_agente.php:119
+#: ../../godmode/alerts/configure_alert_template.php:414
+#: ../../godmode/alerts/alert_actions.php:217
+#: ../../godmode/alerts/alert_templates.php:263
+#: ../../godmode/alerts/alert_commands.php:638
+#: ../../godmode/alerts/configure_alert_command.php:191
+#: ../../godmode/alerts/configure_alert_action.php:115
+#: ../../godmode/users/user_list.php:427 ../../godmode/users/profile_list.php:110
+#: ../../godmode/groups/modu_group_list.php:87
+#: ../../godmode/groups/group_list.php:398
+msgid "any node"
+msgstr "cualquier nodo"
 
-#: ../../operation/netflow/nf_live_view.php:162
-msgid "Error creating filter"
-msgstr "Error al crear filtro"
-
-#: ../../operation/netflow/nf_live_view.php:164
-msgid "Filter created successfully"
-msgstr "Filtro creado correctamente"
-
-#: ../../operation/netflow/nf_live_view.php:183
-msgid "Filter updated successfully"
-msgstr "Filtro actualizado correctamente"
-
-#: ../../operation/netflow/nf_live_view.php:184
-msgid "Error updating filter"
-msgstr "Error al actualizar el filtro"
-
-#: ../../operation/netflow/nf_live_view.php:208
-msgid "Draw live filter"
-msgstr "Extraer filtro en directo"
-
-#: ../../operation/netflow/nf_live_view.php:242
-msgid "Connection"
-msgstr "Conexión"
-
-#: ../../operation/netflow/nf_live_view.php:262
-#: ../../operation/agentes/estado_agente.php:751
-#: ../../operation/agentes/estado_generalagente.php:338
-#: ../../operation/agentes/status_monitor.php:1329
-#: ../../operation/search_modules.php:35 ../../operation/search_agents.php:45
-#: ../../operation/search_agents.php:51
-#: ../../godmode/massive/massive_edit_agents.php:705
-#: ../../godmode/massive/massive_edit_modules.php:754
-#: ../../godmode/agentes/status_monitor_custom_fields.php:93
-#: ../../godmode/agentes/status_monitor_custom_fields.php:147
-#: ../../godmode/agentes/module_manager.php:856
-#: ../../godmode/agentes/module_manager_editor_common.php:617
-#: ../../godmode/agentes/module_manager_editor_common.php:642
-#: ../../godmode/agentes/agent_manager.php:366
-#: ../../godmode/wizards/HostDevices.class.php:798
-#: ../../godmode/wizards/DiscoveryTaskList.class.php:594
-#: ../../godmode/modules/manage_network_components_form_common.php:143
-#: ../../enterprise/operation/agentes/tag_view.php:603
-#: ../../enterprise/operation/agentes/tag_view.php:681
-#: ../../enterprise/tools/ipam/ipam_list.php:617
-#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:690
-#: ../../enterprise/godmode/agentes/inventory_manager.php:223
-#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:421
-#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:463
-#: ../../enterprise/godmode/policies/policy_inventory_modules.php:304
-#: ../../enterprise/godmode/modules/configure_local_component.php:289
-#: ../../enterprise/godmode/servers/manage_export_form.php:95
-#: ../../enterprise/godmode/servers/manage_export.php:139
-#: ../../enterprise/include/functions_ui.php:84
-#: ../../enterprise/include/class/MySQL.app.php:558
-#: ../../enterprise/include/class/SAP.app.php:513
-#: ../../enterprise/include/class/Azure.cloud.php:847
-#: ../../enterprise/include/class/VMware.app.php:667
-#: ../../enterprise/include/class/Aws.cloud.php:591
-#: ../../enterprise/include/class/Aws.cloud.php:1318
-#: ../../enterprise/include/class/DB2.app.php:536
-#: ../../enterprise/include/class/Aws.S3.php:506
-#: ../../enterprise/include/class/Oracle.app.php:543
-#: ../../enterprise/include/class/Google.cloud.php:797
-#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:537
-#: ../../enterprise/include/functions_ipam.php:1350
-#: ../../enterprise/meta/include/functions_wizard_meta.php:916
-#: ../../enterprise/meta/include/functions_wizard_meta.php:1032
-#: ../../enterprise/meta/include/functions_wizard_meta.php:1197
-#: ../../enterprise/meta/include/functions_wizard_meta.php:1515
-#: ../../enterprise/meta/include/functions_wizard_meta.php:1599
-#: ../../enterprise/meta/include/functions_wizard_meta.php:1735
-#: ../../enterprise/meta/agentsearch.php:137
-#: ../../include/functions_treeview.php:84
-#: ../../include/functions_treeview.php:646
-#: ../../include/functions_reporting_html.php:3393
-#: ../../include/class/CustomNetScan.class.php:520
-#: ../../include/lib/Dashboard/Widgets/top_n.php:236
-#: ../../include/lib/Dashboard/Widgets/graph_module_histogram.php:321
-#: ../../include/lib/Dashboard/Widgets/single_graph.php:306
-#: ../../include/lib/Dashboard/Widgets/sla_percent.php:331
-#: ../../include/lib/Dashboard/Widgets/custom_graph.php:350
-#: ../../mobile/operation/modules.php:657 ../../mobile/operation/modules.php:659
-#: ../../mobile/operation/modules.php:851
-msgid "Interval"
-msgstr "Intervalo"
-
-#: ../../operation/netflow/nf_live_view.php:263
-#: ../../operation/network/network_report.php:102
-#: ../../operation/network/network_usage_map.php:75
-#: ../../enterprise/operation/log/log_viewer.php:552
-msgid "Start date"
-msgstr "Fecha de inicio"
-
-#: ../../operation/netflow/nf_live_view.php:284
-#: ../../operation/network/network_report.php:121
-#: ../../operation/network/network_usage_map.php:94
-msgid "Select this checkbox to write interval instead a date."
-msgstr "Seleccione esta casilla para escribir un intervalo en vex de una fecha."
-
-#: ../../operation/netflow/nf_live_view.php:287
-#: ../../operation/network/network_report.php:126
-#: ../../operation/network/network_usage_map.php:99
-#: ../../operation/agentes/exportdata.php:347
-#: ../../enterprise/operation/log/log_viewer.php:579
-msgid "End date"
-msgstr "Fecha final"
-
-#: ../../operation/netflow/nf_live_view.php:295
-#: ../../operation/incidents/list_integriaims_incidents.php:359
-#: ../../operation/incidents/configure_integriaims_incident.php:325
-#: ../../operation/incidents/integriaims_export_csv.php:84
-#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:323
-msgid "Resolution"
-msgstr "Resolución"
-
-#: ../../operation/netflow/nf_live_view.php:295
-msgid "The interval will be divided in chunks the length of the resolution."
-msgstr "El intervalo dividirá en partes la extensión del resultado"
-
-#: ../../operation/netflow/nf_live_view.php:311
-#: ../../operation/agentes/estado_agente.php:757
-#: ../../operation/agentes/ver_agente.php:1144
-#: ../../operation/search_modules.php:34
-#: ../../operation/events/sound_events.php:127
-#: ../../operation/incidents/configure_integriaims_incident.php:234
-#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:326
-#: ../../godmode/reporting/reporting_builder.item_editor.php:981
-#: ../../godmode/reporting/visual_console_builder.wizard.php:135
-#: ../../godmode/reporting/visual_console_builder.wizard.php:283
-#: ../../godmode/reporting/reporting_builder.list_items.php:212
-#: ../../godmode/reporting/reporting_builder.list_items.php:249
-#: ../../godmode/reporting/reporting_builder.list_items.php:372
-#: ../../godmode/update_manager/update_manager.history.php:41
-#: ../../godmode/setup/news.php:247 ../../godmode/setup/setup_integria.php:408
-#: ../../godmode/setup/setup_integria.php:530
-#: ../../godmode/setup/gis_step_2.php:235
-#: ../../godmode/agentes/planned_downtime.list.php:613
-#: ../../godmode/agentes/agent_template.php:236
-#: ../../godmode/agentes/planned_downtime.editor.php:582
-#: ../../godmode/agentes/module_manager.php:850
-#: ../../godmode/agentes/module_manager_editor_common.php:288
-#: ../../godmode/agentes/module_manager_editor_common.php:401
-#: ../../godmode/agentes/module_manager_editor_common.php:1305
-#: ../../godmode/agentes/modificar_agente.php:650
-#: ../../godmode/alerts/alert_templates.php:37
-#: ../../godmode/alerts/alert_templates.php:302
-#: ../../godmode/alerts/alert_templates.php:386
-#: ../../godmode/events/event_responses.editor.php:159
-#: ../../godmode/modules/manage_network_components.php:750
-#: ../../godmode/modules/manage_network_templates_form.php:232
-#: ../../godmode/modules/manage_network_components_form_common.php:64
-#: ../../godmode/servers/servers.build_table.php:67
-#: ../../godmode/servers/plugin.php:816
-#: ../../godmode/servers/modificar_server.php:72
-#: ../../enterprise/operation/agentes/tag_view.php:605
-#: ../../enterprise/operation/agentes/ver_agente.php:32
-#: ../../enterprise/operation/agentes/policy_view.php:396
-#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:103
-#: ../../enterprise/godmode/reporting/reporting_builder.global.php:83
-#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:207
-#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1651
-#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:201
-#: ../../enterprise/godmode/policies/policy_modules.php:1452
-#: ../../enterprise/godmode/modules/configure_local_component.php:212
-#: ../../enterprise/godmode/services/services.elements.php:113
-#: ../../enterprise/include/functions_services.php:1602
-#: ../../enterprise/include/functions_reporting_csv.php:1605
-#: ../../enterprise/include/functions_reporting_csv.php:1721
-#: ../../enterprise/include/functions_reporting_csv.php:1961
-#: ../../enterprise/include/functions_reporting_csv.php:2029
-#: ../../enterprise/meta/advanced/servers.build_table.php:62
-#: ../../enterprise/meta/advanced/metasetup.relations.php:335
-#: ../../enterprise/meta/advanced/metasetup.relations.php:413
-#: ../../enterprise/meta/advanced/metasetup.relations.php:548
-#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:68
-#: ../../enterprise/views/cluster/list.php:61
-#: ../../include/functions_reports.php:1067
-#: ../../include/functions_snmp_browser.php:564
-#: ../../include/functions_events.php:2608
-#: ../../include/functions_events.php:5028
-#: ../../include/functions_visual_map_editor.php:702
-#: ../../include/functions_visual_map_editor.php:720
-#: ../../include/functions_visual_map_editor.php:848
-#: ../../include/functions_reporting_html.php:1048
-#: ../../include/functions_reporting_html.php:1056
-#: ../../include/functions_reporting_html.php:1268
-#: ../../include/functions_reporting_html.php:1276
-#: ../../include/functions_reporting_html.php:2354
-#: ../../include/functions_reporting_html.php:3388
-#: ../../include/functions_reporting_html.php:5154
-#: ../../include/class/CalendarManager.class.php:977
-#: ../../include/class/CalendarManager.class.php:1011
-#: ../../include/class/AgentWizard.class.php:1182
-#: ../../include/class/AgentWizard.class.php:4022
-#: ../../include/class/ModuleTemplates.class.php:1209
-#: ../../include/lib/Dashboard/Widgets/service_view.php:251
-#: ../../include/lib/Dashboard/Widgets/custom_graph.php:327
-#: ../../include/lib/Dashboard/Widgets/clock.php:221
-#: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:467
-#: ../../include/ajax/heatmap.ajax.php:75 ../../include/ajax/module.php:977
-#: ../../mobile/operation/events.php:377 ../../mobile/operation/events.php:378
-#: ../../mobile/operation/events.php:524 ../../mobile/operation/events.php:681
-#: ../../mobile/operation/events.php:682
-#: ../../mobile/operation/visualmaps.php:125
-#: ../../mobile/operation/visualmaps.php:126
-msgid "Type"
-msgstr "Tipo"
-
-#: ../../operation/netflow/nf_live_view.php:322
-#: ../../godmode/netflow/nf_item_list.php:176
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2386
-msgid "Max. values"
-msgstr "Valores máximos"
-
-#: ../../operation/netflow/nf_live_view.php:336
-#: ../../godmode/netflow/nf_edit_form.php:253
-msgid "Aggregate by"
-msgstr "Agregado por"
-
-#: ../../operation/netflow/nf_live_view.php:339
-#: ../../godmode/netflow/nf_edit_form.php:255
-msgid "Src Ip Address"
-msgstr "Dirección IP origen"
-
-#: ../../operation/netflow/nf_live_view.php:340
-#: ../../godmode/netflow/nf_edit_form.php:256
-msgid "Dst Ip Address"
-msgstr "Dirección IP destino"
-
-#: ../../operation/netflow/nf_live_view.php:341
-#: ../../operation/netflow/nf_live_view.php:433
-#: ../../godmode/netflow/nf_edit_form.php:248
-#: ../../godmode/netflow/nf_edit_form.php:257
-msgid "Src Port"
-msgstr "Puerto origen"
-
-#: ../../operation/netflow/nf_live_view.php:342
-#: ../../operation/netflow/nf_live_view.php:425
-#: ../../godmode/netflow/nf_edit_form.php:245
-#: ../../godmode/netflow/nf_edit_form.php:258
-msgid "Dst Port"
-msgstr "Puerto destino"
+#: ../../views/calendar/edit.php:66 ../../views/calendar/special_days.php:67
+#: ../../views/calendar/special_days_edit.php:66 ../../views/calendar/list.php:65
+#, php-format
+msgid ""
+"This node is configured with centralized mode. All alert calendar information "
+"is read only. Go to %s to manage it."
+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."
 
+#: ../../views/calendar/edit.php:80 ../../views/calendar/list.php:93
+#: ../../views/dashboard/formDashboard.php:77 ../../views/dashboard/list.php:95
+#: ../../operation/search_policies.php:35
+#: ../../operation/gis_maps/gis_map.php:102 ../../operation/search_users.php:44
+#: ../../operation/search_maps.php:28
 #: ../../operation/netflow/nf_live_view.php:362
-#: ../../operation/search_helps.php:31 ../../operation/search_users.php:44
-#: ../../operation/gis_maps/gis_map.php:102
-#: ../../operation/agentes/pandora_networkmap.view.php:100
-#: ../../operation/agentes/pandora_networkmap.editor.php:273
 #: ../../operation/agentes/pandora_networkmap.php:707
-#: ../../operation/search_maps.php:28 ../../operation/search_policies.php:35
+#: ../../operation/agentes/pandora_networkmap.editor.php:273
+#: ../../operation/agentes/pandora_networkmap.view.php:100
+#: ../../operation/search_helps.php:31
 #: ../../operation/incidents/configure_integriaims_incident.php:217
-#: ../../godmode/netflow/nf_edit.php:159
-#: ../../godmode/netflow/nf_edit_form.php:199
-#: ../../godmode/reporting/reporting_builder.item_editor.php:1011
-#: ../../godmode/reporting/reporting_builder.main.php:89
-#: ../../godmode/reporting/reporting_builder.main.php:93
-#: ../../godmode/reporting/graph_builder.main.php:125
-#: ../../godmode/reporting/create_container.php:223
-#: ../../godmode/category/edit_category.php:180
-#: ../../godmode/setup/os.list.php:69 ../../godmode/setup/setup_integria.php:337
-#: ../../godmode/setup/setup_integria.php:458
-#: ../../godmode/setup/os.builder.php:36
-#: ../../godmode/agentes/configure_field.php:74
-#: ../../godmode/agentes/planned_downtime.editor.php:546
-#: ../../godmode/agentes/planned_downtime.editor.php:914
-#: ../../godmode/agentes/module_manager.php:827
-#: ../../godmode/agentes/module_manager_editor_common.php:215
-#: ../../godmode/agentes/module_manager_editor_common.php:1212
-#: ../../godmode/agentes/pandora_networkmap_empty.editor.php:132
-#: ../../godmode/groups/modu_group_list.php:252
-#: ../../godmode/groups/configure_group.php:150
-#: ../../godmode/groups/configure_modu_group.php:67
-#: ../../godmode/groups/group_list.php:842
-#: ../../godmode/alerts/configure_alert_command.php:224
-#: ../../godmode/alerts/configure_alert_template.php:1052
-#: ../../godmode/alerts/alert_commands.php:655
-#: ../../godmode/alerts/alert_templates.php:383
-#: ../../godmode/alerts/alert_actions.php:326
-#: ../../godmode/alerts/configure_alert_action.php:181
-#: ../../godmode/users/user_list.php:480
-#: ../../godmode/events/event_responses.editor.php:86
-#: ../../godmode/events/event_filter.php:136
-#: ../../godmode/events/event_responses.list.php:50
-#: ../../godmode/modules/manage_nc_groups.php:241
-#: ../../godmode/modules/module_list.php:62
-#: ../../godmode/modules/manage_network_templates_form.php:168
-#: ../../godmode/modules/manage_nc_groups_form.php:68
-#: ../../godmode/modules/manage_network_components_form_common.php:46
-#: ../../godmode/modules/manage_network_templates.php:246
-#: ../../godmode/tag/tag.php:228 ../../godmode/tag/edit_tag.php:211
-#: ../../godmode/servers/servers.build_table.php:65
-#: ../../godmode/servers/plugin.php:339 ../../godmode/servers/plugin.php:815
-#: ../../godmode/servers/modificar_server.php:58
-#: ../../enterprise/operation/agentes/collection_view.php:75
-#: ../../enterprise/operation/agentes/manage_transmap_creation.php:186
-#: ../../enterprise/operation/agentes/manage_transmap_creation.php:363
-#: ../../enterprise/operation/agentes/manage_transmap_creation.php:489
-#: ../../enterprise/operation/agentes/tag_view.php:677
-#: ../../enterprise/operation/agentes/policy_view.php:163
-#: ../../enterprise/operation/agentes/policy_view.php:395
-#: ../../enterprise/operation/services/services.service.php:118
-#: ../../enterprise/operation/services/services.list.php:497
-#: ../../enterprise/tools/ipam/ipam_network_location_config.php:135
-#: ../../enterprise/tools/ipam/ipam_network_location_config.php:257
-#: ../../enterprise/tools/ipam/ipam_supernet_config.php:856
-#: ../../enterprise/tools/ipam/ipam_editor.php:140
-#: ../../enterprise/tools/ipam/ipam_excel.php:131
-#: ../../enterprise/tools/ipam/ipam_excel.php:200
-#: ../../enterprise/tools/ipam/ipam_list.php:576
-#: ../../enterprise/tools/ipam/ipam_vlan_config.php:667
-#: ../../enterprise/godmode/reporting/graph_template_editor.php:191
-#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:107
-#: ../../enterprise/godmode/reporting/visual_console_template.php:203
-#: ../../enterprise/godmode/reporting/visual_console_template.php:270
-#: ../../enterprise/godmode/reporting/reporting_builder.template_editor.php:182
-#: ../../enterprise/godmode/reporting/reporting_builder.template_editor.php:186
-#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1674
-#: ../../enterprise/godmode/reporting/mysql_builder.php:96
-#: ../../enterprise/godmode/reporting/mysql_builder.php:227
-#: ../../enterprise/godmode/reporting/mysql_builder.php:228
-#: ../../enterprise/godmode/massive/massive_create_services.php:636
-#: ../../enterprise/godmode/setup/setup_auth.php:102
-#: ../../enterprise/godmode/setup/setup_skins.php:87
-#: ../../enterprise/godmode/setup/edit_skin.php:233
-#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:344
-#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:631
-#: ../../enterprise/godmode/agentes/inventory_manager.php:220
-#: ../../enterprise/godmode/agentes/pandora_networkmap_empty.editor.php:130
-#: ../../enterprise/godmode/agentes/agent_autoconfiguration.php:140
-#: ../../enterprise/godmode/agentes/collection_manager.php:109
-#: ../../enterprise/godmode/agentes/collection_manager.php:206
-#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:76
-#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:535
-#: ../../enterprise/godmode/policies/policies.php:406
-#: ../../enterprise/godmode/policies/policy_modules.php:1451
-#: ../../enterprise/godmode/policies/policy_collections.php:169
-#: ../../enterprise/godmode/policies/policy_collections.php:263
-#: ../../enterprise/godmode/policies/policy_inventory_modules.php:302
-#: ../../enterprise/godmode/policies/configure_policy.php:100
-#: ../../enterprise/godmode/policies/policy_agents.php:847
-#: ../../enterprise/godmode/policies/policy_agents.php:1367
-#: ../../enterprise/godmode/alerts/alert_inventory_builder.php:163
-#: ../../enterprise/godmode/modules/configure_local_component.php:156
-#: ../../enterprise/godmode/modules/local_components.php:621
-#: ../../enterprise/godmode/modules/manage_inventory_modules.php:272
-#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:99
-#: ../../enterprise/godmode/servers/manage_credential_boxes.php:58
-#: ../../enterprise/godmode/servers/manage_export_form.php:75
-#: ../../enterprise/godmode/servers/credential_boxes_satellite.php:249
-#: ../../enterprise/godmode/servers/manage_export.php:137
-#: ../../enterprise/godmode/servers/list_satellite.php:37
-#: ../../enterprise/godmode/services/services.service.php:538
-#: ../../enterprise/include/functions_services.php:1603
-#: ../../enterprise/include/class/Omnishell.class.php:668
-#: ../../enterprise/include/class/AlertCorrelationManager.class.php:763
-#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2901
-#: ../../enterprise/include/functions_ipam.php:1344
-#: ../../enterprise/include/functions_ipam.php:1977
-#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:393
-#: ../../enterprise/include/ajax/servers.ajax.php:100
-#: ../../enterprise/include/ajax/servers.ajax.php:158
-#: ../../enterprise/include/ajax/servers.ajax.php:284
-#: ../../enterprise/meta/advanced/servers.build_table.php:60
-#: ../../enterprise/meta/include/functions_autoprovision.php:474
-#: ../../enterprise/meta/include/functions_wizard_meta.php:463
-#: ../../enterprise/meta/include/functions_wizard_meta.php:580
-#: ../../enterprise/meta/include/functions_wizard_meta.php:1127
-#: ../../enterprise/meta/include/functions_wizard_meta.php:1452
-#: ../../enterprise/meta/include/functions_wizard_meta.php:1573
-#: ../../enterprise/meta/include/functions_wizard_meta.php:1675
-#: ../../enterprise/meta/agentsearch.php:327
-#: ../../enterprise/mobile/include/enterprise.class.php:87
-#: ../../enterprise/views/cluster/list.php:58
-#: ../../enterprise/views/ncm/snippets/list.php:70
-#: ../../enterprise/views/ncm/snippets/edit.php:81
-#: ../../enterprise/views/ncm/vendors/list.php:70
-#: ../../enterprise/views/ncm/vendors/edit.php:67
-#: ../../enterprise/views/ncm/models/list.php:71
-#: ../../enterprise/views/ncm/models/edit.php:68
-#: ../../enterprise/views/ncm/templates/list.php:73
-#: ../../enterprise/views/ncm/templates/edit.php:81
-#: ../../enterprise/views/ncm/devices/list.php:114
-#: ../../enterprise/views/ncm/firmwares/list.php:73
-#: ../../enterprise/views/ncm/firmwares/edit.php:80
-#: ../../enterprise/views/ipam/sites/list.php:46
-#: ../../enterprise/views/ipam/sites/edit.php:40
-#: ../../include/functions_snmp_browser.php:1662
+#: ../../include/class/ModuleTemplates.class.php:892
+#: ../../include/class/ModuleTemplates.class.php:1050
+#: ../../include/class/ManageNetScanScripts.class.php:403
+#: ../../include/class/ManageNetScanScripts.class.php:545
+#: ../../include/class/CalendarManager.class.php:975
+#: ../../include/class/NetworkMap.class.php:2906
+#: ../../include/class/NetworkMap.class.php:2947
+#: ../../include/class/NetworkMap.class.php:2965
+#: ../../include/class/NetworkMap.class.php:3268
+#: ../../include/functions_events.php:4451
+#: ../../include/functions_events.php:4540
+#: ../../include/functions_filemanager.php:604
 #: ../../include/functions_treeview.php:78
-#: ../../include/functions_events.php:4453
-#: ../../include/functions_events.php:4542
+#: ../../include/functions_snmp_browser.php:1662
 #: ../../include/functions_reporting_html.php:1047
 #: ../../include/functions_reporting_html.php:1055
 #: ../../include/functions_reporting_html.php:2353
 #: ../../include/functions_reporting_html.php:2690
 #: ../../include/functions_reporting_html.php:3387
 #: ../../include/functions_reporting_html.php:6101
-#: ../../include/class/ManageNetScanScripts.class.php:403
-#: ../../include/class/ManageNetScanScripts.class.php:545
-#: ../../include/class/NetworkMap.class.php:2906
-#: ../../include/class/NetworkMap.class.php:2947
-#: ../../include/class/NetworkMap.class.php:2965
-#: ../../include/class/NetworkMap.class.php:3268
-#: ../../include/class/CalendarManager.class.php:975
-#: ../../include/class/ModuleTemplates.class.php:892
-#: ../../include/class/ModuleTemplates.class.php:1050
-#: ../../include/functions_filemanager.php:604
+#: ../../enterprise/tools/ipam/ipam_excel.php:131
+#: ../../enterprise/tools/ipam/ipam_excel.php:200
+#: ../../enterprise/tools/ipam/ipam_vlan_config.php:667
+#: ../../enterprise/tools/ipam/ipam_network_location_config.php:135
+#: ../../enterprise/tools/ipam/ipam_network_location_config.php:257
+#: ../../enterprise/tools/ipam/ipam_supernet_config.php:1053
+#: ../../enterprise/tools/ipam/ipam_list.php:576
+#: ../../enterprise/tools/ipam/ipam_editor.php:140
+#: ../../enterprise/views/ncm/snippets/edit.php:81
+#: ../../enterprise/views/ncm/snippets/list.php:70
+#: ../../enterprise/views/ncm/firmwares/edit.php:80
+#: ../../enterprise/views/ncm/firmwares/list.php:73
+#: ../../enterprise/views/ncm/vendors/edit.php:67
+#: ../../enterprise/views/ncm/vendors/list.php:70
+#: ../../enterprise/views/ncm/devices/list.php:114
+#: ../../enterprise/views/ncm/templates/edit.php:81
+#: ../../enterprise/views/ncm/templates/list.php:73
+#: ../../enterprise/views/ncm/models/edit.php:68
+#: ../../enterprise/views/ncm/models/list.php:71
+#: ../../enterprise/views/ipam/sites/edit.php:40
+#: ../../enterprise/views/ipam/sites/list.php:46
+#: ../../enterprise/views/cluster/list.php:58
+#: ../../enterprise/operation/services/services.service.php:118
+#: ../../enterprise/operation/services/services.list.php:497
+#: ../../enterprise/operation/agentes/tag_view.php:677
+#: ../../enterprise/operation/agentes/policy_view.php:163
+#: ../../enterprise/operation/agentes/policy_view.php:395
+#: ../../enterprise/operation/agentes/collection_view.php:75
+#: ../../enterprise/operation/agentes/manage_transmap_creation.php:186
+#: ../../enterprise/operation/agentes/manage_transmap_creation.php:363
+#: ../../enterprise/operation/agentes/manage_transmap_creation.php:489
+#: ../../enterprise/include/ajax/servers.ajax.php:100
+#: ../../enterprise/include/ajax/servers.ajax.php:158
+#: ../../enterprise/include/ajax/servers.ajax.php:284
+#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:393
+#: ../../enterprise/include/class/Omnishell.class.php:668
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:763
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2901
+#: ../../enterprise/include/functions_services.php:1603
+#: ../../enterprise/include/functions_ipam.php:1348
+#: ../../enterprise/include/functions_ipam.php:1981
+#: ../../enterprise/meta/include/functions_autoprovision.php:474
+#: ../../enterprise/meta/include/functions_wizard_meta.php:466
+#: ../../enterprise/meta/include/functions_wizard_meta.php:584
+#: ../../enterprise/meta/include/functions_wizard_meta.php:1134
+#: ../../enterprise/meta/include/functions_wizard_meta.php:1460
+#: ../../enterprise/meta/include/functions_wizard_meta.php:1582
+#: ../../enterprise/meta/include/functions_wizard_meta.php:1685
+#: ../../enterprise/meta/advanced/servers.build_table.php:60
+#: ../../enterprise/meta/agentsearch.php:327
+#: ../../enterprise/mobile/include/enterprise.class.php:87
+#: ../../enterprise/godmode/setup/setup_auth.php:102
+#: ../../enterprise/godmode/setup/edit_skin.php:233
+#: ../../enterprise/godmode/setup/setup_skins.php:87
+#: ../../enterprise/godmode/servers/manage_export_form.php:75
+#: ../../enterprise/godmode/servers/credential_boxes_satellite.php:249
+#: ../../enterprise/godmode/servers/manage_export.php:137
+#: ../../enterprise/godmode/servers/list_satellite.php:37
+#: ../../enterprise/godmode/servers/manage_credential_boxes.php:58
+#: ../../enterprise/godmode/modules/configure_local_component.php:156
+#: ../../enterprise/godmode/modules/local_components.php:621
+#: ../../enterprise/godmode/modules/manage_inventory_modules.php:272
+#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:99
+#: ../../enterprise/godmode/services/services.service.php:538
+#: ../../enterprise/godmode/reporting/visual_console_template.php:203
+#: ../../enterprise/godmode/reporting/visual_console_template.php:270
+#: ../../enterprise/godmode/reporting/mysql_builder.php:96
+#: ../../enterprise/godmode/reporting/mysql_builder.php:227
+#: ../../enterprise/godmode/reporting/mysql_builder.php:228
+#: ../../enterprise/godmode/reporting/graph_template_editor.php:191
+#: ../../enterprise/godmode/reporting/reporting_builder.template_editor.php:182
+#: ../../enterprise/godmode/reporting/reporting_builder.template_editor.php:186
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1674
+#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:107
+#: ../../enterprise/godmode/massive/massive_create_services.php:636
+#: ../../enterprise/godmode/agentes/inventory_manager.php:220
+#: ../../enterprise/godmode/agentes/agent_autoconfiguration.php:140
+#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:344
+#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:631
+#: ../../enterprise/godmode/agentes/collection_manager.php:109
+#: ../../enterprise/godmode/agentes/collection_manager.php:206
+#: ../../enterprise/godmode/agentes/pandora_networkmap_empty.editor.php:130
+#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:76
+#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:535
+#: ../../enterprise/godmode/alerts/alert_inventory_builder.php:163
+#: ../../enterprise/godmode/policies/policy_agents.php:847
+#: ../../enterprise/godmode/policies/policy_agents.php:1367
+#: ../../enterprise/godmode/policies/policy_modules.php:1464
+#: ../../enterprise/godmode/policies/policies.php:406
+#: ../../enterprise/godmode/policies/configure_policy.php:100
+#: ../../enterprise/godmode/policies/policy_inventory_modules.php:302
+#: ../../enterprise/godmode/policies/policy_collections.php:169
+#: ../../enterprise/godmode/policies/policy_collections.php:263
 #: ../../extensions/files_repo/files_repo_list.php:55
-#: ../../views/calendar/list.php:93 ../../views/calendar/edit.php:80
-#: ../../views/dashboard/formDashboard.php:77 ../../views/dashboard/list.php:95
+#: ../../godmode/setup/os.list.php:69 ../../godmode/setup/setup_integria.php:337
+#: ../../godmode/setup/setup_integria.php:458
+#: ../../godmode/setup/os.builder.php:36 ../../godmode/servers/plugin.php:339
+#: ../../godmode/servers/plugin.php:815
+#: ../../godmode/servers/modificar_server.php:58
+#: ../../godmode/servers/servers.build_table.php:79
+#: ../../godmode/modules/module_list.php:62
+#: ../../godmode/modules/manage_network_templates.php:246
+#: ../../godmode/modules/manage_network_templates_form.php:168
+#: ../../godmode/modules/manage_nc_groups.php:241
+#: ../../godmode/modules/manage_network_components_form_common.php:46
+#: ../../godmode/modules/manage_nc_groups_form.php:68
+#: ../../godmode/category/edit_category.php:180
+#: ../../godmode/reporting/reporting_builder.main.php:89
+#: ../../godmode/reporting/reporting_builder.main.php:93
+#: ../../godmode/reporting/create_container.php:223
+#: ../../godmode/reporting/reporting_builder.item_editor.php:1011
+#: ../../godmode/reporting/graph_builder.main.php:125
+#: ../../godmode/tag/edit_tag.php:211 ../../godmode/tag/tag.php:228
+#: ../../godmode/events/event_responses.editor.php:86
+#: ../../godmode/events/event_responses.list.php:50
+#: ../../godmode/events/event_filter.php:136
+#: ../../godmode/netflow/nf_edit.php:159
+#: ../../godmode/netflow/nf_edit_form.php:199
+#: ../../godmode/agentes/module_manager.php:827
+#: ../../godmode/agentes/configure_field.php:74
+#: ../../godmode/agentes/module_manager_editor_common.php:215
+#: ../../godmode/agentes/module_manager_editor_common.php:1212
+#: ../../godmode/agentes/planned_downtime.editor.php:546
+#: ../../godmode/agentes/planned_downtime.editor.php:914
+#: ../../godmode/agentes/pandora_networkmap_empty.editor.php:132
+#: ../../godmode/alerts/configure_alert_template.php:1052
+#: ../../godmode/alerts/alert_actions.php:326
+#: ../../godmode/alerts/alert_templates.php:383
+#: ../../godmode/alerts/alert_commands.php:655
+#: ../../godmode/alerts/configure_alert_command.php:224
+#: ../../godmode/alerts/configure_alert_action.php:181
+#: ../../godmode/users/user_list.php:480
+#: ../../godmode/groups/configure_group.php:150
+#: ../../godmode/groups/modu_group_list.php:252
+#: ../../godmode/groups/group_list.php:842
+#: ../../godmode/groups/configure_modu_group.php:67
 msgid "Name"
 msgstr "Nombre"
 
-#: ../../operation/netflow/nf_live_view.php:372
+#: ../../views/calendar/edit.php:91 ../../views/calendar/special_days.php:112
+#: ../../views/calendar/special_days_edit.php:106
+#: ../../views/calendar/list.php:94 ../../views/dashboard/formDashboard.php:108
+#: ../../views/dashboard/list.php:97 ../../general/ui/agents_list.php:76
 #: ../../operation/visual_console/view.php:351
-#: ../../operation/gis_maps/gis_map.php:103 ../../operation/gis_maps/ajax.php:332
-#: ../../operation/gis_maps/ajax.php:438
+#: ../../operation/gis_maps/ajax.php:332 ../../operation/gis_maps/ajax.php:438
+#: ../../operation/gis_maps/gis_map.php:103 ../../operation/search_maps.php:29
+#: ../../operation/heatmap.php:115 ../../operation/heatmap.php:117
+#: ../../operation/search_agents.php:46 ../../operation/search_agents.php:52
+#: ../../operation/events/sound_events.php:109
+#: ../../operation/events/events.build_table.php:222
+#: ../../operation/events/events.php:1068
+#: ../../operation/events/events_list.php:917
+#: ../../operation/netflow/nf_live_view.php:372
+#: ../../operation/agentes/status_monitor.php:450
+#: ../../operation/agentes/group_view.php:222
+#: ../../operation/agentes/interface_view.functions.php:37
+#: ../../operation/agentes/exportdata.php:227
 #: ../../operation/agentes/alerts_status.functions.php:89
 #: ../../operation/agentes/estado_agente.php:254
 #: ../../operation/agentes/estado_agente.php:754
-#: ../../operation/agentes/group_view.php:222
-#: ../../operation/agentes/pandora_networkmap.view.php:103
-#: ../../operation/agentes/pandora_networkmap.view.php:137
-#: ../../operation/agentes/interface_view.functions.php:37
-#: ../../operation/agentes/estado_generalagente.php:384
 #: ../../operation/agentes/pandora_networkmap.editor.php:289
 #: ../../operation/agentes/pandora_networkmap.editor.php:337
+#: ../../operation/agentes/estado_generalagente.php:384
+#: ../../operation/agentes/pandora_networkmap.view.php:103
+#: ../../operation/agentes/pandora_networkmap.view.php:137
 #: ../../operation/agentes/ver_agente.php:1009
-#: ../../operation/agentes/exportdata.php:227
-#: ../../operation/agentes/status_monitor.php:450
-#: ../../operation/search_maps.php:29 ../../operation/users/user_edit.php:814
-#: ../../operation/search_agents.php:46 ../../operation/search_agents.php:52
-#: ../../operation/events/sound_events.php:109
-#: ../../operation/events/events.php:1068
-#: ../../operation/events/events_list.php:917
-#: ../../operation/events/events.build_table.php:222
-#: ../../operation/heatmap.php:115 ../../operation/heatmap.php:117
-#: ../../operation/incidents/list_integriaims_incidents.php:331
+#: ../../operation/users/user_edit.php:814
 #: ../../operation/incidents/configure_integriaims_incident.php:266
+#: ../../operation/incidents/list_integriaims_incidents.php:331
 #: ../../operation/incidents/dashboard_detail_integriaims_incident.php:324
-#: ../../godmode/netflow/nf_edit.php:160
-#: ../../godmode/netflow/nf_edit_form.php:203
-#: ../../godmode/snmpconsole/snmp_alert.php:754
-#: ../../godmode/reporting/visual_console_builder.elements.php:104
-#: ../../godmode/reporting/visual_console_builder.elements.php:313
-#: ../../godmode/reporting/visual_console_builder.data.php:136
-#: ../../godmode/reporting/reporting_builder.item_editor.php:72
-#: ../../godmode/reporting/reporting_builder.item_editor.php:198
-#: ../../godmode/reporting/reporting_builder.item_editor.php:821
-#: ../../godmode/reporting/reporting_builder.item_editor.php:1459
-#: ../../godmode/reporting/reporting_builder.item_editor.php:3280
-#: ../../godmode/reporting/reporting_builder.main.php:101
-#: ../../godmode/reporting/graph_builder.main.php:143
-#: ../../godmode/reporting/visual_console_favorite.php:161
-#: ../../godmode/reporting/graphs.php:231 ../../godmode/reporting/graphs.php:313
-#: ../../godmode/reporting/create_container.php:244
-#: ../../godmode/reporting/create_container.php:534
-#: ../../godmode/reporting/create_container.php:625
-#: ../../godmode/reporting/reporting_builder.php:757
-#: ../../godmode/reporting/reporting_builder.php:948
-#: ../../godmode/reporting/map_builder.php:356
-#: ../../godmode/reporting/map_builder.php:385
-#: ../../godmode/massive/massive_delete_alerts.php:284
-#: ../../godmode/massive/massive_delete_agents.php:187
-#: ../../godmode/massive/massive_add_alerts.php:211
-#: ../../godmode/massive/massive_standby_alerts.php:185
-#: ../../godmode/massive/massive_edit_agents.php:508
-#: ../../godmode/massive/massive_edit_agents.php:685
-#: ../../godmode/massive/massive_copy_modules.php:100
-#: ../../godmode/massive/massive_copy_modules.php:253
-#: ../../godmode/massive/massive_add_profiles.php:203
-#: ../../godmode/massive/massive_delete_action_alerts.php:209
-#: ../../godmode/massive/massive_delete_profiles.php:152
-#: ../../godmode/massive/massive_add_action_alerts.php:197
-#: ../../godmode/massive/massive_enable_disable_alerts.php:169
-#: ../../godmode/setup/news.php:186 ../../godmode/setup/gis.php:69
+#: ../../include/functions_cron.php:468 ../../include/functions_gis.php:228
+#: ../../include/functions_visual_map_editor.php:70
+#: ../../include/functions_visual_map_editor.php:594
+#: ../../include/functions_visual_map_editor.php:1397
+#: ../../include/ajax/heatmap.ajax.php:110
+#: ../../include/ajax/heatmap.ajax.php:344
+#: ../../include/ajax/custom_fields.php:628
+#: ../../include/ajax/custom_fields.php:677
+#: ../../include/class/ModuleTemplates.class.php:780
+#: ../../include/class/AgentsAlerts.class.php:773
+#: ../../include/class/CredentialStore.class.php:802
+#: ../../include/class/CredentialStore.class.php:833
+#: ../../include/class/CredentialStore.class.php:923
+#: ../../include/class/CustomNetScan.class.php:500
+#: ../../include/class/CalendarManager.class.php:976
+#: ../../include/class/NetworkMap.class.php:2841
+#: ../../include/class/NetworkMap.class.php:2890
+#: ../../include/class/NetworkMap.class.php:3206
+#: ../../include/lib/Dashboard/Widgets/alerts_fired.php:226
+#: ../../include/functions_events.php:195 ../../include/functions_events.php:248
+#: ../../include/functions_events.php:5108
+#: ../../include/functions_events.php:6707
+#: ../../include/functions_container.php:149
+#: ../../include/functions_graph.php:5218
+#: ../../include/functions_snmp_browser.php:1665
+#: ../../include/functions_visual_map.php:4229
+#: ../../include/functions_profile.php:214
+#: ../../include/rest-api/models/VisualConsole/Item.php:2139
+#: ../../include/rest-api/models/VisualConsole/Items/Group.php:549
+#: ../../include/functions_html.php:1521
+#: ../../include/functions_reporting_html.php:1500
+#: ../../include/functions_reporting_html.php:2077
+#: ../../include/functions_reporting_html.php:3338
+#: ../../include/functions_reporting_html.php:3391
+#: ../../include/functions_reporting_html.php:6189
+#: ../../enterprise/tools/ipam/ipam_editor.php:293
+#: ../../enterprise/views/ncm/devices/list.php:116
+#: ../../enterprise/views/cluster/list.php:60
+#: ../../enterprise/operation/log/log_viewer.php:533
+#: ../../enterprise/operation/services/services.service.php:121
+#: ../../enterprise/operation/services/services.list.php:260
+#: ../../enterprise/operation/services/services.list.php:502
+#: ../../enterprise/operation/services/services.table_services.php:182
+#: ../../enterprise/operation/agentes/tag_view.php:108
+#: ../../enterprise/operation/agentes/tag_view.php:604
+#: ../../enterprise/operation/agentes/transactional_map.php:208
+#: ../../enterprise/operation/agentes/manage_transmap_creation.php:366
+#: ../../enterprise/operation/agentes/manage_transmap_creation.php:492
+#: ../../enterprise/operation/agentes/ver_agente.php:52
+#: ../../enterprise/operation/agentes/ver_agente.php:73
+#: ../../enterprise/operation/inventory/inventory.php:322
+#: ../../enterprise/include/functions_reporting_csv.php:718
+#: ../../enterprise/include/functions_reporting_csv.php:2559
+#: ../../enterprise/include/functions_reporting_csv.php:2738
+#: ../../enterprise/include/ajax/ipam.ajax.php:487
+#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:471
+#: ../../enterprise/include/class/Aws.cloud.php:578
+#: ../../enterprise/include/class/Aws.cloud.php:1233
+#: ../../enterprise/include/class/Aws.S3.php:434
+#: ../../enterprise/include/class/MySQL.app.php:474
+#: ../../enterprise/include/class/Oracle.app.php:476
+#: ../../enterprise/include/class/DB2.app.php:469
+#: ../../enterprise/include/class/SAP.app.php:644
+#: ../../enterprise/include/class/Omnishell.class.php:399
+#: ../../enterprise/include/class/Omnishell.class.php:428
+#: ../../enterprise/include/class/Omnishell.class.php:678
+#: ../../enterprise/include/class/VMware.app.php:763
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:775
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:925
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2797
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2902
+#: ../../enterprise/include/class/Azure.cloud.php:835
+#: ../../enterprise/include/class/Google.cloud.php:785
+#: ../../enterprise/include/functions_tasklist.php:157
+#: ../../enterprise/include/lib/ClusterViewer/ClusterWizard.php:823
+#: ../../enterprise/include/functions_events.php:97
+#: ../../enterprise/meta/include/functions_events_meta.php:74
+#: ../../enterprise/meta/include/functions_wizard_meta.php:194
+#: ../../enterprise/meta/include/functions_wizard_meta.php:1808
+#: ../../enterprise/meta/monitoring/custom_fields_view.php:146
+#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:276
+#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:373
+#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:438
+#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:706
+#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:785
+#: ../../enterprise/meta/advanced/cron_main.php:422
+#: ../../enterprise/meta/advanced/collections.php:314
+#: ../../enterprise/meta/agentsearch.php:138
+#: ../../enterprise/meta/agentsearch.php:329
+#: ../../enterprise/godmode/modules/configure_local_component.php:274
+#: ../../enterprise/godmode/modules/local_components.php:498
+#: ../../enterprise/godmode/modules/local_components.php:623
+#: ../../enterprise/godmode/services/services.service.php:561
+#: ../../enterprise/godmode/reporting/visual_console_template.php:218
+#: ../../enterprise/godmode/reporting/visual_console_template.php:271
+#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:329
+#: ../../enterprise/godmode/reporting/graph_template_editor.php:196
+#: ../../enterprise/godmode/reporting/graph_template_list.php:205
+#: ../../enterprise/godmode/reporting/reporting_builder.template_editor.php:194
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:318
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1395
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1997
+#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:110
+#: ../../enterprise/godmode/reporting/reporting_builder.template.php:500
+#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:102
+#: ../../enterprise/godmode/massive/massive_create_services.php:658
+#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:669
+#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:97
+#: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:196
+#: ../../enterprise/godmode/agentes/pandora_networkmap_empty.editor.php:139
+#: ../../enterprise/godmode/agentes/collections.php:329
+#: ../../enterprise/godmode/alerts/alert_inventory_list.php:139
+#: ../../enterprise/godmode/policies/policy_agents.php:798
+#: ../../enterprise/godmode/policies/policy_agents.php:855
+#: ../../enterprise/godmode/policies/policies.php:308
+#: ../../enterprise/godmode/policies/policies.php:408
+#: ../../enterprise/godmode/policies/configure_policy.php:103
+#: ../../extensions/agents_modules.php:404 ../../mobile/operation/modules.php:171
+#: ../../mobile/operation/modules.php:176 ../../mobile/operation/modules.php:266
+#: ../../mobile/operation/modules.php:267
+#: ../../mobile/operation/visualmaps.php:113
+#: ../../mobile/operation/visualmaps.php:118
+#: ../../mobile/operation/alerts.php:113 ../../mobile/operation/alerts.php:118
+#: ../../mobile/operation/alerts.php:231 ../../mobile/operation/alerts.php:232
+#: ../../mobile/operation/events.php:385 ../../mobile/operation/events.php:390
+#: ../../mobile/operation/events.php:544 ../../mobile/operation/events.php:663
+#: ../../mobile/operation/events.php:664 ../../mobile/operation/agents.php:95
+#: ../../mobile/operation/agents.php:157 ../../mobile/operation/agents.php:234
+#: ../../mobile/operation/agents.php:235 ../../mobile/operation/agents.php:405
 #: ../../godmode/setup/setup_integria.php:361
 #: ../../godmode/setup/setup_integria.php:483
-#: ../../godmode/setup/gis_step_2.php:216
-#: ../../godmode/gis_maps/configure_gis_map.php:498
-#: ../../godmode/gis_maps/configure_gis_map.php:635
-#: ../../godmode/agentes/planned_downtime.list.php:612
-#: ../../godmode/agentes/agent_incidents.php:92
-#: ../../godmode/agentes/planned_downtime.editor.php:556
-#: ../../godmode/agentes/planned_downtime.editor.php:915
-#: ../../godmode/agentes/configurar_agente.php:494
-#: ../../godmode/agentes/pandora_networkmap_empty.editor.php:141
-#: ../../godmode/agentes/modificar_agente.php:289
-#: ../../godmode/agentes/modificar_agente.php:651
-#: ../../godmode/alerts/configure_alert_command.php:265
-#: ../../godmode/alerts/configure_alert_template.php:1074
-#: ../../godmode/alerts/alert_list.list.php:147
-#: ../../godmode/alerts/alert_commands.php:657
-#: ../../godmode/alerts/alert_templates.php:384
-#: ../../godmode/alerts/alert_actions.php:260
-#: ../../godmode/alerts/alert_actions.php:328
-#: ../../godmode/alerts/configure_alert_action.php:212
-#: ../../godmode/users/user_list.php:390
-#: ../../godmode/events/custom_events.php:100
-#: ../../godmode/events/event_responses.editor.php:105
-#: ../../godmode/events/event_filter.php:137
-#: ../../godmode/events/event_edit_filter.php:299
-#: ../../godmode/events/event_responses.list.php:52
-#: ../../godmode/wizards/HostDevices.class.php:932
+#: ../../godmode/setup/gis_step_2.php:216 ../../godmode/setup/news.php:186
+#: ../../godmode/setup/gis.php:69
 #: ../../godmode/modules/manage_network_components.php:618
 #: ../../godmode/modules/manage_network_components.php:752
 #: ../../godmode/modules/manage_network_templates_form.php:235
 #: ../../godmode/modules/manage_network_templates_form.php:303
 #: ../../godmode/modules/manage_network_templates_form.php:339
 #: ../../godmode/modules/manage_network_components_form_common.php:131
-#: ../../enterprise/operation/agentes/transactional_map.php:208
-#: ../../enterprise/operation/agentes/manage_transmap_creation.php:366
-#: ../../enterprise/operation/agentes/manage_transmap_creation.php:492
-#: ../../enterprise/operation/agentes/tag_view.php:108
-#: ../../enterprise/operation/agentes/tag_view.php:604
-#: ../../enterprise/operation/agentes/ver_agente.php:52
-#: ../../enterprise/operation/agentes/ver_agente.php:73
-#: ../../enterprise/operation/inventory/inventory.php:322
-#: ../../enterprise/operation/log/log_viewer.php:533
-#: ../../enterprise/operation/services/services.service.php:121
-#: ../../enterprise/operation/services/services.list.php:260
-#: ../../enterprise/operation/services/services.list.php:502
-#: ../../enterprise/operation/services/services.table_services.php:182
-#: ../../enterprise/tools/ipam/ipam_editor.php:293
-#: ../../enterprise/godmode/reporting/reporting_builder.template.php:500
-#: ../../enterprise/godmode/reporting/graph_template_editor.php:196
-#: ../../enterprise/godmode/reporting/graph_template_list.php:205
-#: ../../enterprise/godmode/reporting/visual_console_template.php:218
-#: ../../enterprise/godmode/reporting/visual_console_template.php:271
-#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:110
-#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:329
-#: ../../enterprise/godmode/reporting/reporting_builder.template_editor.php:194
-#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:318
-#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1395
-#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1997
-#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:102
-#: ../../enterprise/godmode/massive/massive_create_services.php:658
-#: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:196
-#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:97
-#: ../../enterprise/godmode/agentes/pandora_networkmap_empty.editor.php:139
-#: ../../enterprise/godmode/agentes/collections.php:329
-#: ../../enterprise/godmode/policies/policies.php:308
-#: ../../enterprise/godmode/policies/policies.php:408
-#: ../../enterprise/godmode/policies/configure_policy.php:103
-#: ../../enterprise/godmode/policies/policy_agents.php:798
-#: ../../enterprise/godmode/policies/policy_agents.php:855
-#: ../../enterprise/godmode/alerts/alert_inventory_list.php:139
-#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:669
-#: ../../enterprise/godmode/modules/configure_local_component.php:274
-#: ../../enterprise/godmode/modules/local_components.php:498
-#: ../../enterprise/godmode/modules/local_components.php:623
-#: ../../enterprise/godmode/services/services.service.php:561
-#: ../../enterprise/include/functions_events.php:97
-#: ../../enterprise/include/functions_tasklist.php:157
-#: ../../enterprise/include/class/MySQL.app.php:474
-#: ../../enterprise/include/class/SAP.app.php:644
-#: ../../enterprise/include/class/Azure.cloud.php:835
-#: ../../enterprise/include/class/VMware.app.php:763
-#: ../../enterprise/include/class/Omnishell.class.php:399
-#: ../../enterprise/include/class/Omnishell.class.php:428
-#: ../../enterprise/include/class/Omnishell.class.php:678
-#: ../../enterprise/include/class/Aws.cloud.php:578
-#: ../../enterprise/include/class/Aws.cloud.php:1233
-#: ../../enterprise/include/class/AlertCorrelationManager.class.php:775
-#: ../../enterprise/include/class/AlertCorrelationManager.class.php:925
-#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2797
-#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2902
-#: ../../enterprise/include/class/DB2.app.php:469
-#: ../../enterprise/include/class/Aws.S3.php:434
-#: ../../enterprise/include/class/Oracle.app.php:476
-#: ../../enterprise/include/class/Google.cloud.php:785
-#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:471
-#: ../../enterprise/include/lib/ClusterViewer/ClusterWizard.php:823
-#: ../../enterprise/include/functions_reporting_csv.php:718
-#: ../../enterprise/include/functions_reporting_csv.php:2559
-#: ../../enterprise/include/functions_reporting_csv.php:2738
-#: ../../enterprise/meta/advanced/cron_main.php:418
-#: ../../enterprise/meta/advanced/collections.php:314
-#: ../../enterprise/meta/include/functions_wizard_meta.php:193
-#: ../../enterprise/meta/include/functions_wizard_meta.php:1797
-#: ../../enterprise/meta/include/functions_events_meta.php:74
-#: ../../enterprise/meta/agentsearch.php:138
-#: ../../enterprise/meta/agentsearch.php:329
-#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:275
-#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:372
-#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:437
-#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:705
-#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:784
-#: ../../enterprise/meta/monitoring/custom_fields_view.php:146
-#: ../../enterprise/views/cluster/list.php:60
-#: ../../enterprise/views/ncm/devices/list.php:116
-#: ../../general/ui/agents_list.php:76 ../../include/functions_container.php:149
-#: ../../include/functions_visual_map.php:4229
-#: ../../include/functions_snmp_browser.php:1665
-#: ../../include/functions_cron.php:468 ../../include/functions_events.php:195
-#: ../../include/functions_events.php:248 ../../include/functions_events.php:5110
-#: ../../include/functions_events.php:6709 ../../include/functions_html.php:1521
-#: ../../include/functions_graph.php:5218 ../../include/functions_profile.php:214
-#: ../../include/functions_visual_map_editor.php:70
-#: ../../include/functions_visual_map_editor.php:594
-#: ../../include/functions_visual_map_editor.php:1397
-#: ../../include/functions_reporting_html.php:1500
-#: ../../include/functions_reporting_html.php:2077
-#: ../../include/functions_reporting_html.php:3338
-#: ../../include/functions_reporting_html.php:3391
-#: ../../include/functions_reporting_html.php:6189
-#: ../../include/class/CredentialStore.class.php:802
-#: ../../include/class/CredentialStore.class.php:833
-#: ../../include/class/CredentialStore.class.php:923
-#: ../../include/class/NetworkMap.class.php:2841
-#: ../../include/class/NetworkMap.class.php:2890
-#: ../../include/class/NetworkMap.class.php:3206
-#: ../../include/class/CustomNetScan.class.php:500
-#: ../../include/class/CalendarManager.class.php:976
-#: ../../include/class/AgentsAlerts.class.php:773
-#: ../../include/class/ModuleTemplates.class.php:780
-#: ../../include/lib/Dashboard/Widgets/alerts_fired.php:226
-#: ../../include/functions_gis.php:228
-#: ../../include/rest-api/models/VisualConsole/Item.php:2139
-#: ../../include/rest-api/models/VisualConsole/Items/Group.php:549
-#: ../../include/ajax/heatmap.ajax.php:110
-#: ../../include/ajax/heatmap.ajax.php:344
-#: ../../include/ajax/custom_fields.php:628
-#: ../../include/ajax/custom_fields.php:677
-#: ../../extensions/agents_modules.php:404 ../../mobile/operation/events.php:385
-#: ../../mobile/operation/events.php:390 ../../mobile/operation/events.php:544
-#: ../../mobile/operation/events.php:663 ../../mobile/operation/events.php:664
-#: ../../mobile/operation/alerts.php:113 ../../mobile/operation/alerts.php:118
-#: ../../mobile/operation/alerts.php:231 ../../mobile/operation/alerts.php:232
-#: ../../mobile/operation/agents.php:95 ../../mobile/operation/agents.php:157
-#: ../../mobile/operation/agents.php:234 ../../mobile/operation/agents.php:235
-#: ../../mobile/operation/agents.php:405 ../../mobile/operation/modules.php:171
-#: ../../mobile/operation/modules.php:176 ../../mobile/operation/modules.php:266
-#: ../../mobile/operation/modules.php:267
-#: ../../mobile/operation/visualmaps.php:113
-#: ../../mobile/operation/visualmaps.php:118 ../../views/calendar/list.php:94
-#: ../../views/calendar/special_days_edit.php:106
-#: ../../views/calendar/edit.php:91 ../../views/calendar/special_days.php:112
-#: ../../views/dashboard/formDashboard.php:108 ../../views/dashboard/list.php:97
+#: ../../godmode/gis_maps/configure_gis_map.php:498
+#: ../../godmode/gis_maps/configure_gis_map.php:635
+#: ../../godmode/reporting/reporting_builder.main.php:101
+#: ../../godmode/reporting/map_builder.php:356
+#: ../../godmode/reporting/map_builder.php:385
+#: ../../godmode/reporting/graphs.php:231 ../../godmode/reporting/graphs.php:313
+#: ../../godmode/reporting/visual_console_builder.data.php:136
+#: ../../godmode/reporting/create_container.php:244
+#: ../../godmode/reporting/create_container.php:534
+#: ../../godmode/reporting/create_container.php:625
+#: ../../godmode/reporting/visual_console_favorite.php:161
+#: ../../godmode/reporting/visual_console_builder.elements.php:104
+#: ../../godmode/reporting/visual_console_builder.elements.php:313
+#: ../../godmode/reporting/reporting_builder.item_editor.php:72
+#: ../../godmode/reporting/reporting_builder.item_editor.php:198
+#: ../../godmode/reporting/reporting_builder.item_editor.php:821
+#: ../../godmode/reporting/reporting_builder.item_editor.php:1459
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3280
+#: ../../godmode/reporting/reporting_builder.php:757
+#: ../../godmode/reporting/reporting_builder.php:948
+#: ../../godmode/reporting/graph_builder.main.php:143
+#: ../../godmode/snmpconsole/snmp_alert.php:754
+#: ../../godmode/events/event_edit_filter.php:299
+#: ../../godmode/events/event_responses.editor.php:105
+#: ../../godmode/events/custom_events.php:100
+#: ../../godmode/events/event_responses.list.php:52
+#: ../../godmode/events/event_filter.php:137
+#: ../../godmode/netflow/nf_edit.php:160
+#: ../../godmode/netflow/nf_edit_form.php:203
+#: ../../godmode/massive/massive_add_alerts.php:211
+#: ../../godmode/massive/massive_copy_modules.php:100
+#: ../../godmode/massive/massive_copy_modules.php:253
+#: ../../godmode/massive/massive_add_profiles.php:203
+#: ../../godmode/massive/massive_standby_alerts.php:185
+#: ../../godmode/massive/massive_add_action_alerts.php:197
+#: ../../godmode/massive/massive_edit_agents.php:508
+#: ../../godmode/massive/massive_edit_agents.php:685
+#: ../../godmode/massive/massive_delete_profiles.php:152
+#: ../../godmode/massive/massive_delete_action_alerts.php:209
+#: ../../godmode/massive/massive_delete_alerts.php:284
+#: ../../godmode/massive/massive_delete_agents.php:187
+#: ../../godmode/massive/massive_enable_disable_alerts.php:169
+#: ../../godmode/wizards/HostDevices.class.php:932
+#: ../../godmode/agentes/configurar_agente.php:494
+#: ../../godmode/agentes/planned_downtime.editor.php:556
+#: ../../godmode/agentes/planned_downtime.editor.php:915
+#: ../../godmode/agentes/planned_downtime.list.php:612
+#: ../../godmode/agentes/agent_incidents.php:92
+#: ../../godmode/agentes/pandora_networkmap_empty.editor.php:141
+#: ../../godmode/agentes/modificar_agente.php:289
+#: ../../godmode/agentes/modificar_agente.php:651
+#: ../../godmode/alerts/configure_alert_template.php:1074
+#: ../../godmode/alerts/alert_list.list.php:147
+#: ../../godmode/alerts/alert_actions.php:260
+#: ../../godmode/alerts/alert_actions.php:328
+#: ../../godmode/alerts/alert_templates.php:384
+#: ../../godmode/alerts/alert_commands.php:657
+#: ../../godmode/alerts/configure_alert_command.php:265
+#: ../../godmode/alerts/configure_alert_action.php:212
+#: ../../godmode/users/user_list.php:390
 msgid "Group"
 msgstr "Grupo"
 
-#: ../../operation/netflow/nf_live_view.php:383
-#: ../../operation/agentes/estado_monitores.php:594
-#: ../../operation/agentes/alerts_status.functions.php:137
-#: ../../operation/agentes/alerts_status.functions.php:146
-#: ../../operation/agentes/graphs.php:265 ../../operation/tree.php:260
-#: ../../operation/incidents/list_integriaims_incidents.php:435
-#: ../../operation/incidents/list_integriaims_incidents.php:439
-#: ../../godmode/netflow/nf_item_list.php:174
-#: ../../godmode/snmpconsole/snmp_filters.php:203
-#: ../../godmode/snmpconsole/snmp_filters.php:290
-#: ../../godmode/snmpconsole/snmp_alert.php:1088
-#: ../../godmode/reporting/reporting_builder.item_editor.php:1046
-#: ../../godmode/reporting/reporting_builder.list_items.php:217
-#: ../../godmode/reporting/reporting_builder.list_items.php:261
-#: ../../godmode/agentes/module_manager.php:83
-#: ../../godmode/modules/manage_network_templates_form.php:277
-#: ../../godmode/modules/manage_network_templates_form.php:337
-#: ../../godmode/tag/tag.php:233
-#: ../../enterprise/operation/services/services.treeview_services.php:156
-#: ../../enterprise/operation/services/services.treeview_services.php:160
-#: ../../enterprise/operation/services/services.list.php:454
-#: ../../enterprise/operation/services/services.list.php:459
-#: ../../enterprise/operation/services/services.table_services.php:363
-#: ../../enterprise/operation/services/services.table_services.php:368
-#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:209
-#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:269
-#: ../../enterprise/godmode/setup/setup_acl.php:574
-#: ../../enterprise/godmode/setup/setup_skins.php:96
-#: ../../enterprise/godmode/agentes/manage_config_remote.php:148
-#: ../../enterprise/godmode/policies/policies.php:337
-#: ../../enterprise/godmode/policies/policy_linking.php:129
-#: ../../enterprise/godmode/policies/policy_queue.php:611
-#: ../../enterprise/include/class/SAPView.class.php:409
-#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2824
-#: ../../enterprise/include/functions_ipam.php:1775
-#: ../../enterprise/meta/advanced/policymanager.queue.php:235
-#: ../../include/functions_ui.php:3371 ../../include/functions_ui.php:3392
-#: ../../include/functions_ui.php:3403
-#: ../../include/class/ModuleTemplates.class.php:765
-msgid "Filter"
-msgstr "Filtro"
-
-#: ../../operation/netflow/nf_live_view.php:384
-#: ../../operation/agentes/estado_monitores.php:523
-#: ../../operation/agentes/estado_agente.php:273
-#: ../../operation/agentes/group_view.php:226
-#: ../../operation/agentes/group_view.php:231
-#: ../../operation/agentes/tactical.php:180
-#: ../../operation/agentes/status_monitor.php:492 ../../operation/tree.php:212
-#: ../../operation/tree.php:269 ../../operation/tree.php:486
-#: ../../godmode/netflow/nf_edit_form.php:236
-#: ../../godmode/reporting/reporting_builder.item_editor.php:3601
-#: ../../godmode/massive/massive_delete_agents.php:209
-#: ../../godmode/massive/massive_edit_agents.php:531
-#: ../../godmode/massive/massive_edit_modules.php:385
-#: ../../godmode/massive/massive_edit_modules.php:471
-#: ../../godmode/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/groups/group_list.php:1074
-#: ../../enterprise/operation/agentes/tag_view.php:131
-#: ../../enterprise/operation/services/services.treeview_services.php:286
-#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:119
-#: ../../enterprise/godmode/services/services.elements.php:390
-#: ../../enterprise/include/functions_services.php:1428
-#: ../../enterprise/meta/monitoring/group_view.php:238
-#: ../../enterprise/meta/monitoring/group_view.php:244
-#: ../../enterprise/meta/monitoring/custom_fields_csv.php:117
-#: ../../enterprise/meta/monitoring/custom_fields_csv.php:140
-#: ../../enterprise/meta/monitoring/tactical.php:241
-#: ../../enterprise/meta/monitoring/custom_fields_view.php:179
-#: ../../include/functions.php:1031 ../../include/functions.php:1271
-#: ../../include/functions.php:1278 ../../include/functions.php:1311
-#: ../../include/functions_events.php:3337 ../../include/functions_graph.php:3543
-#: ../../include/functions_graph.php:3544 ../../include/functions_graph.php:5123
-#: ../../include/functions_reporting_html.php:2292
-#: ../../include/lib/Dashboard/Widgets/system_group_status.php:311
-#: ../../include/lib/Dashboard/Widgets/tree_view.php:385
-#: ../../include/lib/Dashboard/Widgets/tree_view.php:418
-#: ../../include/lib/Dashboard/Widgets/tree_view.php:680
-#: ../../include/rest-api/models/VisualConsole/Items/Group.php:430
-#: ../../mobile/operation/agents.php:58 ../../mobile/operation/modules.php:69
-msgid "Normal"
-msgstr "Normal"
-
-#: ../../operation/netflow/nf_live_view.php:384
-#: ../../godmode/massive/massive_edit_modules.php:819
-#: ../../godmode/agentes/module_manager_editor_wmi.php:61
-#: ../../godmode/agentes/module_manager_editor_network.php:96
-#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:755
-#: ../../enterprise/godmode/setup/setup_acl.php:463
-#: ../../enterprise/godmode/setup/setup_acl.php:765
-#: ../../enterprise/include/functions_cron.php:582
-#: ../../enterprise/include/lib/NetworkManager.php:87
-#: ../../enterprise/meta/advanced/metasetup.relations.php:218
-#: ../../enterprise/meta/advanced/metasetup.relations.php:572
-#: ../../enterprise/meta/include/functions_autoprovision.php:388
-#: ../../enterprise/meta/include/functions_wizard_meta.php:494
-#: ../../include/functions_html.php:1878 ../../include/functions_html.php:1879
-#: ../../include/functions_html.php:1989 ../../include/functions_html.php:1990
-#: ../../include/functions_html.php:2150 ../../include/functions_html.php:2151
-#: ../../include/class/CredentialStore.class.php:945
-msgid "Custom"
-msgstr "Personalizado"
-
-#: ../../operation/netflow/nf_live_view.php:389
-#: ../../operation/events/events.php:1166
-#: ../../operation/events/events_list.php:384
-#: ../../operation/events/events_list.php:524
-#: ../../operation/events/events_list.php:535
-#: ../../operation/events/events_list.php:1053
-#: ../../enterprise/meta/monitoring/custom_fields_view.php:236
-#: ../../enterprise/meta/monitoring/custom_fields_view.php:242
-#: ../../enterprise/meta/monitoring/custom_fields_view.php:243
-#: ../../include/ajax/events.php:503 ../../include/ajax/events.php:519
-#: ../../include/ajax/custom_fields.php:587
-msgid "Load filter"
-msgstr "Cargar filtro"
-
-#: ../../operation/netflow/nf_live_view.php:396
-msgid "Select a filter"
-msgstr "Selecciona un filtro"
-
-#: ../../operation/netflow/nf_live_view.php:406
-#: ../../godmode/netflow/nf_edit_form.php:239
-msgid "Dst Ip"
-msgstr "Dst IP"
-
-#: ../../operation/netflow/nf_live_view.php:406
-#: ../../godmode/netflow/nf_edit_form.php:239
-msgid ""
-"Destination IP. A comma separated list of destination ip. If we leave the "
-"field blank, will show all ip. Example filter by ip:"
-"<br>25.46.157.214,160.253.135.249"
-msgstr ""
-"IP destino. Lista de IPs destino separadas por coma. Si dejamos en blanco este "
-"campo mostrará todas las IPs. Ejemplo de filtro por IP: "
-"25.46.157.214,160.253.135.249"
-
-#: ../../operation/netflow/nf_live_view.php:414
-#: ../../godmode/netflow/nf_edit_form.php:242
-msgid "Src Ip"
-msgstr "IP Origen"
-
-#: ../../operation/netflow/nf_live_view.php:414
-#: ../../godmode/netflow/nf_edit_form.php:242
-msgid ""
-"Source IP. A comma separated list of source ip. If we leave the field blank, "
-"will show all ip. Example filter by ip:<br>25.46.157.214,160.253.135.249"
-msgstr ""
-"IP Origen. Lista de IPs origen separadas por coma. Si dejamos en blanco este "
-"campo mostrará todas las IPs. Ejemplo de filtro por IP: "
-"25.46.157.214,160.253.135.249"
-
-#: ../../operation/netflow/nf_live_view.php:425
-#: ../../godmode/netflow/nf_edit_form.php:245
-msgid ""
-"Destination port. A comma separated list of destination ports. If we leave the "
-"field blank, will show all ports. Example filter by ports 80 and 22:<br>80,22"
-msgstr ""
-"Puerto destino. Lista de puertos de destino separados por coma. Si dejamos "
-"este campo en blanco se mostrarán todos los puertos. Ejemplo de filtrado por "
-"puertos: 80,22"
-
-#: ../../operation/netflow/nf_live_view.php:433
-#: ../../godmode/netflow/nf_edit_form.php:248
-msgid ""
-"Source port. A comma separated list of source ports. If we leave the field "
-"blank, will show all ports. Example filter by ports 80 and 22:<br>80,22"
-msgstr ""
-"Puerto origen. Lista de puertos de origen separados por coma. Si dejamos este "
-"campo en blanco se mostrarán todos los puertos. Ejemplo de filtrado por "
-"puertos: 80,22"
-
-#: ../../operation/netflow/nf_live_view.php:451
-#: ../../operation/gis_maps/render_view.php:165
-#: ../../operation/agentes/estado_monitores.php:525
-#: ../../operation/agentes/estado_agente.php:274
-#: ../../operation/agentes/group_view.php:227
-#: ../../operation/agentes/group_view.php:232
-#: ../../operation/agentes/tactical.php:179
-#: ../../operation/agentes/status_monitor.php:493 ../../operation/tree.php:213
-#: ../../operation/tree.php:270 ../../operation/tree.php:471 ../../index.php:1175
-#: ../../godmode/reporting/reporting_builder.item_editor.php:3602
-#: ../../godmode/massive/massive_delete_agents.php:210
-#: ../../godmode/massive/massive_edit_agents.php:532
-#: ../../godmode/massive/massive_edit_agents.php:981
-#: ../../godmode/massive/massive_edit_modules.php:386
-#: ../../godmode/massive/massive_edit_modules.php:472
-#: ../../godmode/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/setup/setup_netflow.php:61
-#: ../../godmode/groups/group_list.php:1059
-#: ../../godmode/users/configure_user.php:1674
-#: ../../godmode/modules/manage_network_components_form_wizard.php:383
-#: ../../enterprise/operation/agentes/transactional_map.php:333
-#: ../../enterprise/operation/agentes/tag_view.php:132
-#: ../../enterprise/operation/services/services.treeview_services.php:271
-#: ../../enterprise/operation/services/services.service.php:123
-#: ../../enterprise/operation/services/services.service.php:174
-#: ../../enterprise/operation/services/services.list.php:238
-#: ../../enterprise/operation/services/services.list.php:505
-#: ../../enterprise/operation/services/services.list.php:564
-#: ../../enterprise/operation/services/services.service_map.php:115
-#: ../../enterprise/operation/services/services.table_services.php:160
-#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:120
-#: ../../enterprise/godmode/massive/massive_create_services.php:747
-#: ../../enterprise/godmode/setup/setup_history.php:583
-#: ../../enterprise/godmode/services/services.service.php:699
-#: ../../enterprise/godmode/services/services.service.php:930
-#: ../../enterprise/godmode/services/services.elements.php:372
-#: ../../enterprise/include/functions_reporting.php:4837
-#: ../../enterprise/include/functions_services.php:1448
-#: ../../enterprise/include/class/CommandCenter.class.php:564
-#: ../../enterprise/include/class/CommandCenter.class.php:603
-#: ../../enterprise/include/functions_login.php:23
-#: ../../enterprise/meta/advanced/metasetup.consoles.php:439
-#: ../../enterprise/meta/index.php:862 ../../enterprise/meta/index.php:931
-#: ../../enterprise/meta/include/functions_wizard_meta.php:975
-#: ../../enterprise/meta/include/functions_wizard_meta.php:1059
-#: ../../enterprise/meta/include/functions_wizard_meta.php:1260
-#: ../../enterprise/meta/include/functions_wizard_meta.php:1280
-#: ../../enterprise/meta/include/functions_wizard_meta.php:1497
-#: ../../enterprise/meta/include/functions_wizard_meta.php:1581
-#: ../../enterprise/meta/include/functions_wizard_meta.php:1700
-#: ../../enterprise/meta/include/functions_wizard_meta.php:1720
-#: ../../enterprise/meta/monitoring/group_view.php:239
-#: ../../enterprise/meta/monitoring/group_view.php:245
-#: ../../enterprise/meta/monitoring/custom_fields_csv.php:127
-#: ../../enterprise/meta/monitoring/tactical.php:240
-#: ../../enterprise/meta/monitoring/custom_fields_view.php:180
-#: ../../enterprise/views/ncm/firmwares/edit.php:149
-#: ../../include/functions.php:1035 ../../include/functions.php:1273
-#: ../../include/functions.php:1276 ../../include/functions.php:1315
-#: ../../include/functions_ui.php:298 ../../include/functions_ui.php:2604
-#: ../../include/functions_events.php:3341 ../../include/functions_graph.php:3553
-#: ../../include/functions_graph.php:3554 ../../include/functions_graph.php:5127
-#: ../../include/functions_reporting_html.php:2294
-#: ../../include/class/Diagnostics.class.php:1809
-#: ../../include/class/AgentWizard.class.php:1300
-#: ../../include/class/AgentWizard.class.php:3989
-#: ../../include/lib/Dashboard/Widgets/system_group_status.php:312
-#: ../../include/lib/Dashboard/Widgets/tree_view.php:386
-#: ../../include/lib/Dashboard/Widgets/tree_view.php:419
-#: ../../include/lib/Dashboard/Widgets/tree_view.php:665
-#: ../../include/rest-api/models/VisualConsole/Items/Group.php:423
-#: ../../update_manager_client/views/offline.php:81
-#: ../../extensions/dbmanager.php:129 ../../mobile/operation/agents.php:59
-#: ../../mobile/operation/modules.php:70
-msgid "Warning"
-msgstr "Advertencia"
-
-#: ../../operation/netflow/nf_live_view.php:451
-#: ../../godmode/setup/setup_netflow.php:61
-msgid "IP address resolution can take a lot of time"
-msgstr "La resolución de direcciones IP puede tardar mucho tiempo."
-
-#: ../../operation/netflow/nf_live_view.php:452
-#: ../../operation/snmpconsole/snmp_view.php:653
-#: ../../operation/users/user_edit.php:321
-#: ../../godmode/reporting/reporting_builder.main.php:194
-#: ../../godmode/reporting/visual_console_builder.wizard.php:380
-#: ../../godmode/reporting/visual_console_builder.wizard.php:467
-#: ../../godmode/reporting/reporting_builder.php:1092
-#: ../../godmode/massive/massive_edit_agents.php:663
-#: ../../godmode/massive/massive_edit_agents.php:986
-#: ../../godmode/massive/massive_edit_agents.php:995
-#: ../../godmode/massive/massive_edit_modules.php:616
-#: ../../godmode/massive/massive_edit_modules.php:638
-#: ../../godmode/massive/massive_edit_modules.php:707
-#: ../../godmode/massive/massive_edit_modules.php:729
-#: ../../godmode/massive/massive_edit_modules.php:769
-#: ../../godmode/massive/massive_edit_modules.php:1043
-#: ../../godmode/massive/massive_edit_modules.php:1081
-#: ../../godmode/massive/massive_edit_modules.php:1109
-#: ../../godmode/update_manager/update_manager.setup.php:371
-#: ../../godmode/agentes/agent_conf_gis.php:125
-#: ../../godmode/alerts/alert_view.php:129
-#: ../../godmode/alerts/alert_view.php:259
-#: ../../godmode/users/configure_user.php:1099
-#: ../../godmode/servers/modificar_server.php:47
-#: ../../enterprise/godmode/reporting/reporting_builder.template.php:553
-#: ../../enterprise/godmode/reporting/visual_console_template.php:286
-#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:209
-#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:553
-#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:574
-#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:644
-#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:665
-#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:705
-#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:967
-#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1005
-#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1033
-#: ../../enterprise/godmode/setup/setup_auth.php:208
-#: ../../enterprise/godmode/setup/setup_auth.php:338
-#: ../../enterprise/godmode/setup/setup_auth.php:386
-#: ../../enterprise/godmode/setup/setup_auth.php:1181
-#: ../../enterprise/include/functions_reporting.php:2337
-#: ../../enterprise/include/functions_cron.php:755
-#: ../../enterprise/include/functions_tasklist.php:323
-#: ../../enterprise/include/functions_reporting_csv.php:1940
-#: ../../enterprise/meta/advanced/metasetup.setup.php:149
-#: ../../enterprise/meta/advanced/metasetup.setup.php:203
-#: ../../enterprise/meta/advanced/metasetup.setup.php:219
-#: ../../enterprise/meta/advanced/metasetup.setup.php:223
-#: ../../enterprise/meta/advanced/metasetup.setup.php:285
-#: ../../enterprise/meta/advanced/metasetup.setup.php:299
-#: ../../enterprise/meta/advanced/metasetup.setup.php:321
-#: ../../enterprise/meta/advanced/metasetup.setup.php:325
-#: ../../enterprise/meta/advanced/metasetup.setup.php:347
-#: ../../enterprise/meta/advanced/metasetup.performance.php:85
-#: ../../enterprise/meta/advanced/metasetup.password.php:80
-#: ../../enterprise/meta/advanced/metasetup.password.php:122
-#: ../../enterprise/meta/advanced/metasetup.password.php:127
-#: ../../enterprise/meta/advanced/metasetup.password.php:133
-#: ../../enterprise/meta/advanced/metasetup.password.php:139
-#: ../../enterprise/meta/advanced/metasetup.password.php:143
-#: ../../enterprise/meta/advanced/metasetup.password.php:147
-#: ../../enterprise/meta/monitoring/wizard/wizard.php:136
-#: ../../include/functions_snmp.php:390 ../../include/functions_cron.php:648
-#: ../../include/functions_profile.php:276
-#: ../../include/functions_reporting_html.php:1560
-msgid "Yes"
-msgstr "Sí"
-
-#: ../../operation/netflow/nf_live_view.php:462
-#: ../../operation/snmpconsole/snmp_view.php:654
-#: ../../operation/users/user_edit.php:322
-#: ../../godmode/reporting/reporting_builder.main.php:204
-#: ../../godmode/reporting/visual_console_builder.wizard.php:390
-#: ../../godmode/reporting/visual_console_builder.wizard.php:468
-#: ../../godmode/reporting/reporting_builder.php:1094
-#: ../../godmode/massive/massive_edit_agents.php:664
-#: ../../godmode/massive/massive_edit_agents.php:987
-#: ../../godmode/massive/massive_edit_agents.php:996
-#: ../../godmode/massive/massive_edit_modules.php:617
-#: ../../godmode/massive/massive_edit_modules.php:639
-#: ../../godmode/massive/massive_edit_modules.php:708
-#: ../../godmode/massive/massive_edit_modules.php:730
-#: ../../godmode/massive/massive_edit_modules.php:770
-#: ../../godmode/massive/massive_edit_modules.php:1043
-#: ../../godmode/massive/massive_edit_modules.php:1082
-#: ../../godmode/massive/massive_edit_modules.php:1110
-#: ../../godmode/update_manager/update_manager.setup.php:372
-#: ../../godmode/setup/news.php:287 ../../godmode/agentes/agent_conf_gis.php:126
-#: ../../godmode/alerts/alert_view.php:129
-#: ../../godmode/alerts/alert_view.php:259
-#: ../../godmode/alerts/alert_view.php:352
-#: ../../godmode/users/configure_user.php:1100
-#: ../../godmode/servers/modificar_server.php:45
-#: ../../enterprise/godmode/reporting/reporting_builder.template.php:555
-#: ../../enterprise/godmode/reporting/visual_console_template.php:286
-#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:211
-#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:554
-#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:575
-#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:645
-#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:666
-#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:706
-#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:967
-#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1006
-#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1034
-#: ../../enterprise/godmode/setup/setup_auth.php:208
-#: ../../enterprise/godmode/setup/setup_auth.php:341
-#: ../../enterprise/godmode/setup/setup_auth.php:389
-#: ../../enterprise/godmode/setup/setup_auth.php:1184
-#: ../../enterprise/godmode/setup/setup.php:64
-#: ../../enterprise/include/functions_reporting.php:2337
-#: ../../enterprise/include/functions_cron.php:754
-#: ../../enterprise/include/functions_tasklist.php:323
-#: ../../enterprise/include/functions_reporting_csv.php:1940
-#: ../../enterprise/meta/advanced/metasetup.setup.php:150
-#: ../../enterprise/meta/advanced/metasetup.setup.php:213
-#: ../../enterprise/meta/advanced/metasetup.setup.php:220
-#: ../../enterprise/meta/advanced/metasetup.setup.php:224
-#: ../../enterprise/meta/advanced/metasetup.setup.php:286
-#: ../../enterprise/meta/advanced/metasetup.setup.php:309
-#: ../../enterprise/meta/advanced/metasetup.setup.php:322
-#: ../../enterprise/meta/advanced/metasetup.setup.php:335
-#: ../../enterprise/meta/advanced/metasetup.setup.php:357
-#: ../../enterprise/meta/advanced/metasetup.performance.php:86
-#: ../../enterprise/meta/advanced/metasetup.password.php:81
-#: ../../enterprise/meta/advanced/metasetup.password.php:123
-#: ../../enterprise/meta/advanced/metasetup.password.php:128
-#: ../../enterprise/meta/advanced/metasetup.password.php:134
-#: ../../enterprise/meta/advanced/metasetup.password.php:140
-#: ../../enterprise/meta/advanced/metasetup.password.php:144
-#: ../../enterprise/meta/advanced/metasetup.password.php:148
-#: ../../enterprise/meta/monitoring/wizard/wizard.php:137
-#: ../../include/functions_snmp.php:382 ../../include/functions_cron.php:648
-#: ../../include/functions_events.php:5041
-#: ../../include/functions_events.php:5046
-#: ../../include/functions_profile.php:276
-#: ../../include/functions_reporting_html.php:1560
-#: ../../mobile/operation/events.php:195 ../../mobile/operation/events.php:200
-msgid "No"
-msgstr "No"
-
-#: ../../operation/netflow/nf_live_view.php:469
-msgid "IP address resolution"
-msgstr "Resolución de dirección IP"
-
-#: ../../operation/netflow/nf_live_view.php:469
-msgid "Resolve the IP addresses to get their hostnames."
-msgstr "Resolver direcciones IP para obtener sus hostnames"
-
-#: ../../operation/netflow/nf_live_view.php:472
-msgid "Source ip"
-msgstr "IP de origen"
-
-#: ../../operation/netflow/nf_live_view.php:482
-#: ../../godmode/netflow/nf_edit_form.php:237
-#: ../../godmode/alerts/configure_alert_template.php:946
-#: ../../godmode/alerts/configure_alert_template.php:987
-#: ../../godmode/alerts/configure_alert_template.php:1138
-#: ../../godmode/alerts/alert_commands.php:157
-#: ../../godmode/alerts/alert_commands.php:194
-#: ../../godmode/users/configure_user.php:1211
-#: ../../godmode/modules/manage_network_components_form_common.php:53
-#: ../../enterprise/godmode/agentes/plugins_manager.php:126
-#: ../../enterprise/godmode/policies/policy_plugins.php:108
-#: ../../enterprise/godmode/modules/configure_local_component.php:165
-#: ../../enterprise/meta/general/main_header.php:309
-#: ../../enterprise/meta/general/main_header.php:391
-#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:268
-msgid "Advanced"
-msgstr "Avanzado"
-
-#: ../../operation/netflow/nf_live_view.php:495
-msgid "Draw"
-msgstr "Dibujar"
-
-#: ../../operation/netflow/nf_live_view.php:499
-msgid "Save as new filter"
-msgstr "Guardar nuevo filtro"
-
-#: ../../operation/netflow/nf_live_view.php:500
-msgid "Update current filter"
-msgstr "Actualizar filtro actual"
-
-#: ../../operation/netflow/nf_live_view.php:514
-msgid "No filter selected"
-msgstr "No se ha seleccionado ningún filtro"
-
-#: ../../operation/netflow/nf_live_view.php:740
-#: ../../operation/reporting/reporting_viewer.php:367
-#: ../../operation/reporting/reporting_viewer.php:387
-#: ../../operation/reporting/graph_viewer.php:423
-#: ../../operation/network/network_report.php:336
-#: ../../operation/network/network_usage_map.php:184
-#: ../../operation/agentes/estado_monitores.php:455
-#: ../../operation/agentes/interface_traffic_graph_win.php:434
-#: ../../operation/agentes/datos_agente.php:312
-#: ../../operation/agentes/stat_win.php:615 ../../operation/tree.php:573
-#: ../../operation/events/events.php:2806
-#: ../../operation/events/events_list.php:2031
-#: ../../godmode/reporting/reporting_builder.item_editor.php:4832
-#: ../../godmode/setup/news.php:322
-#: ../../godmode/agentes/planned_downtime.editor.php:1488
-#: ../../godmode/alerts/configure_alert_template.php:1456
-#: ../../godmode/alerts/configure_alert_template.php:1540
-#: ../../enterprise/operation/log/log_viewer.php:981
-#: ../../enterprise/operation/log/log_viewer.php:993
-#: ../../enterprise/operation/services/services.treeview_services.php:375
-#: ../../enterprise/godmode/reporting/reporting_builder.template.php:1169
-#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3962
-#: ../../enterprise/godmode/wizards/consoletask_js.php:41
-#: ../../enterprise/include/class/AlertCorrelationManager.class.php:4311
-#: ../../enterprise/meta/advanced/cron_main.php:526
-#: ../../include/lib/Dashboard/Widgets/tree_view.php:683
-#: ../../extensions/insert_data.php:224
-msgid "Choose time"
-msgstr "Seleccionar hora"
-
-#: ../../operation/netflow/nf_live_view.php:741
-#: ../../operation/reporting/reporting_viewer.php:368
-#: ../../operation/reporting/reporting_viewer.php:388
-#: ../../operation/reporting/graph_viewer.php:424
-#: ../../operation/network/network_report.php:337
-#: ../../operation/network/network_usage_map.php:185
-#: ../../operation/agentes/estado_monitores.php:456
-#: ../../operation/agentes/interface_traffic_graph_win.php:435
-#: ../../operation/agentes/datos_agente.php:313
-#: ../../operation/agentes/stat_win.php:616 ../../operation/tree.php:574
-#: ../../operation/events/events.php:2807
-#: ../../operation/events/events_list.php:2032
-#: ../../godmode/reporting/reporting_builder.item_editor.php:4833
-#: ../../godmode/setup/news.php:323
-#: ../../godmode/agentes/planned_downtime.editor.php:1489
-#: ../../godmode/alerts/configure_alert_template.php:1457
-#: ../../godmode/alerts/configure_alert_template.php:1541
-#: ../../enterprise/operation/log/log_viewer.php:982
-#: ../../enterprise/operation/log/log_viewer.php:994
-#: ../../enterprise/operation/services/services.treeview_services.php:376
-#: ../../enterprise/godmode/reporting/reporting_builder.template.php:1170
-#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3963
-#: ../../enterprise/godmode/wizards/consoletask_js.php:42
-#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3986
-#: ../../enterprise/include/class/AlertCorrelationManager.class.php:4312
-#: ../../enterprise/include/lib/Metaconsole/Node.php:591
-#: ../../enterprise/meta/advanced/cron_main.php:527
-#: ../../include/lib/Dashboard/Widgets/tree_view.php:684
-#: ../../extensions/insert_data.php:225
-msgid "Time"
-msgstr "Hora"
-
-#: ../../operation/netflow/nf_live_view.php:742
-#: ../../operation/reporting/reporting_viewer.php:369
-#: ../../operation/reporting/reporting_viewer.php:389
-#: ../../operation/reporting/graph_viewer.php:425
-#: ../../operation/network/network_report.php:338
-#: ../../operation/network/network_usage_map.php:186
-#: ../../operation/agentes/estado_monitores.php:457
-#: ../../operation/agentes/interface_traffic_graph_win.php:436
-#: ../../operation/agentes/datos_agente.php:314
-#: ../../operation/agentes/stat_win.php:617 ../../operation/tree.php:575
-#: ../../operation/events/events.php:2808
-#: ../../operation/events/events_list.php:2033
-#: ../../godmode/reporting/reporting_builder.item_editor.php:4834
-#: ../../godmode/setup/news.php:324
-#: ../../godmode/agentes/planned_downtime.editor.php:1490
-#: ../../godmode/alerts/configure_alert_template.php:1458
-#: ../../godmode/alerts/configure_alert_template.php:1542
-#: ../../enterprise/operation/log/log_viewer.php:983
-#: ../../enterprise/operation/log/log_viewer.php:995
-#: ../../enterprise/operation/services/services.treeview_services.php:377
-#: ../../enterprise/godmode/reporting/reporting_builder.template.php:1171
-#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3964
-#: ../../enterprise/godmode/wizards/consoletask_js.php:43
-#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3987
-#: ../../enterprise/include/class/AlertCorrelationManager.class.php:4313
-#: ../../enterprise/meta/advanced/cron_main.php:528
-#: ../../include/functions_html.php:2271
-#: ../../include/lib/Dashboard/Widgets/tree_view.php:685
-#: ../../extensions/insert_data.php:226
-msgid "Hour"
-msgstr "Hora"
-
-#: ../../operation/netflow/nf_live_view.php:743
-#: ../../operation/reporting/reporting_viewer.php:370
-#: ../../operation/reporting/reporting_viewer.php:390
-#: ../../operation/reporting/graph_viewer.php:426
-#: ../../operation/network/network_report.php:339
-#: ../../operation/network/network_usage_map.php:187
-#: ../../operation/agentes/estado_monitores.php:458
-#: ../../operation/agentes/interface_traffic_graph_win.php:437
-#: ../../operation/agentes/datos_agente.php:315
-#: ../../operation/agentes/stat_win.php:618 ../../operation/tree.php:576
-#: ../../operation/events/events.php:2809
-#: ../../operation/events/events_list.php:2034
-#: ../../godmode/reporting/reporting_builder.item_editor.php:4835
-#: ../../godmode/setup/news.php:325
-#: ../../godmode/agentes/planned_downtime.editor.php:1491
-#: ../../godmode/alerts/configure_alert_template.php:1459
-#: ../../godmode/alerts/configure_alert_template.php:1543
-#: ../../enterprise/operation/log/log_viewer.php:984
-#: ../../enterprise/operation/log/log_viewer.php:996
-#: ../../enterprise/operation/services/services.treeview_services.php:378
-#: ../../enterprise/godmode/reporting/reporting_builder.template.php:1172
-#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3965
-#: ../../enterprise/godmode/wizards/consoletask_js.php:44
-#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3988
-#: ../../enterprise/include/class/AlertCorrelationManager.class.php:4314
-#: ../../enterprise/meta/advanced/cron_main.php:529
-#: ../../include/functions_html.php:2272
-#: ../../include/lib/Dashboard/Widgets/tree_view.php:686
-#: ../../extensions/insert_data.php:227
-msgid "Minute"
-msgstr "Minuto"
-
-#: ../../operation/netflow/nf_live_view.php:744
-#: ../../operation/reporting/reporting_viewer.php:371
-#: ../../operation/reporting/reporting_viewer.php:391
-#: ../../operation/reporting/graph_viewer.php:427
-#: ../../operation/network/network_report.php:340
-#: ../../operation/network/network_usage_map.php:188
-#: ../../operation/agentes/estado_monitores.php:459
-#: ../../operation/agentes/interface_traffic_graph_win.php:438
-#: ../../operation/agentes/datos_agente.php:316
-#: ../../operation/agentes/stat_win.php:619 ../../operation/tree.php:577
-#: ../../operation/events/events.php:2810
-#: ../../operation/events/events_list.php:2035
-#: ../../godmode/reporting/reporting_builder.item_editor.php:4836
-#: ../../godmode/setup/news.php:326
-#: ../../godmode/agentes/planned_downtime.editor.php:1492
-#: ../../godmode/alerts/configure_alert_template.php:1460
-#: ../../godmode/alerts/configure_alert_template.php:1544
-#: ../../enterprise/operation/log/log_viewer.php:985
-#: ../../enterprise/operation/log/log_viewer.php:997
-#: ../../enterprise/operation/services/services.treeview_services.php:379
-#: ../../enterprise/godmode/reporting/reporting_builder.template.php:1173
-#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3966
-#: ../../enterprise/godmode/wizards/consoletask_js.php:45
-#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3989
-#: ../../enterprise/include/class/AlertCorrelationManager.class.php:4315
-#: ../../enterprise/meta/advanced/cron_main.php:530
-#: ../../include/lib/Dashboard/Widgets/tree_view.php:687
-#: ../../extensions/insert_data.php:228
-msgid "Second"
-msgstr "Segundo"
-
-#: ../../operation/netflow/nf_live_view.php:745
-#: ../../operation/reporting/reporting_viewer.php:372
-#: ../../operation/reporting/reporting_viewer.php:392
-#: ../../operation/reporting/graph_viewer.php:428
-#: ../../operation/network/network_report.php:341
-#: ../../operation/network/network_usage_map.php:189
-#: ../../operation/agentes/estado_monitores.php:460
-#: ../../operation/agentes/interface_traffic_graph_win.php:439
-#: ../../operation/agentes/datos_agente.php:317
-#: ../../operation/agentes/stat_win.php:620 ../../operation/tree.php:578
-#: ../../operation/events/events.php:2811
-#: ../../operation/events/events_list.php:2036
-#: ../../godmode/reporting/reporting_builder.item_editor.php:4837
-#: ../../godmode/setup/news.php:327
-#: ../../godmode/agentes/planned_downtime.editor.php:1493
-#: ../../godmode/alerts/configure_alert_template.php:1461
-#: ../../godmode/alerts/configure_alert_template.php:1545
-#: ../../enterprise/operation/agentes/agent_inventory.php:108
-#: ../../enterprise/operation/log/log_viewer.php:986
-#: ../../enterprise/operation/log/log_viewer.php:998
-#: ../../enterprise/operation/services/services.treeview_services.php:380
-#: ../../enterprise/godmode/reporting/reporting_builder.template.php:1174
-#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3967
-#: ../../enterprise/godmode/wizards/consoletask_js.php:46
-#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3990
-#: ../../enterprise/include/class/AlertCorrelationManager.class.php:4316
-#: ../../enterprise/meta/advanced/cron_main.php:531
-#: ../../include/functions.php:505 ../../include/functions.php:636
-#: ../../include/lib/Dashboard/Widgets/tree_view.php:688
-#: ../../extensions/insert_data.php:229
-msgid "Now"
-msgstr "Ahora"
-
-#: ../../operation/netflow/nf_live_view.php:746
-#: ../../operation/reporting/reporting_viewer.php:373
-#: ../../operation/reporting/reporting_viewer.php:393
-#: ../../operation/reporting/graph_viewer.php:429
-#: ../../operation/network/network_report.php:342
-#: ../../operation/network/network_usage_map.php:190
-#: ../../operation/agentes/estado_monitores.php:461
-#: ../../operation/agentes/interface_traffic_graph_win.php:440
-#: ../../operation/agentes/datos_agente.php:318
-#: ../../operation/agentes/stat_win.php:621 ../../operation/tree.php:579
-#: ../../operation/events/events.php:2812
-#: ../../operation/events/events_list.php:2037
-#: ../../godmode/reporting/reporting_builder.item_editor.php:4838
-#: ../../godmode/setup/news.php:328
-#: ../../godmode/agentes/planned_downtime.editor.php:1494
-#: ../../godmode/alerts/configure_alert_template.php:1462
-#: ../../godmode/alerts/configure_alert_template.php:1546
-#: ../../godmode/wizards/HostDevices.class.php:796
-#: ../../enterprise/operation/log/log_viewer.php:987
-#: ../../enterprise/operation/log/log_viewer.php:999
-#: ../../enterprise/operation/services/services.treeview_services.php:381
-#: ../../enterprise/godmode/reporting/reporting_builder.template.php:1175
-#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3968
-#: ../../enterprise/godmode/setup/setup.php:736
-#: ../../enterprise/godmode/wizards/consoletask_js.php:47
-#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3991
-#: ../../enterprise/include/class/AlertCorrelationManager.class.php:4317
-#: ../../enterprise/meta/advanced/cron_main.php:532
-#: ../../include/functions_snmp_browser.php:600
-#: ../../include/class/WelcomeWindow.class.php:159
-#: ../../include/lib/Dashboard/Widgets/tree_view.php:689
-#: ../../extensions/insert_data.php:230 ../../mobile/include/ui.class.php:691
-#: ../../mobile/include/ui.class.php:749
-msgid "Close"
-msgstr "Cerrar"
-
-#: ../../operation/netflow/netflow_explorer.php:37 ../../operation/menu.php:92
-msgid "Netflow explorer"
-msgstr "Explorador Netflow"
-
-#: ../../operation/search_graphs.php:21 ../../operation/search_reports.php:25
-#: ../../operation/search_users.php:23 ../../operation/search_modules.php:23
-#: ../../operation/search_maps.php:19 ../../operation/search_policies.php:22
-#: ../../operation/search_agents.php:30 ../../operation/search_alerts.php:24
-msgid "Zero results found"
-msgstr "No se encontró ningún resultado"
-
-#: ../../operation/search_graphs.php:30
-#: ../../operation/reporting/graph_viewer.php:524
-#: ../../godmode/reporting/graphs.php:310
-#: ../../include/functions_container.php:146
-msgid "Graph name"
-msgstr "Nombre del gráfico"
-
-#: ../../operation/search_graphs.php:31 ../../operation/search_reports.php:43
-#: ../../operation/search_reports.php:59
-#: ../../operation/reporting/custom_reporting.php:35
+#: ../../views/calendar/edit.php:103
+#: ../../views/calendar/special_days_edit.php:138
+#: ../../views/calendar/list.php:95 ../../operation/search_reports.php:43
+#: ../../operation/search_reports.php:59 ../../operation/search_policies.php:36
+#: ../../operation/gis_maps/ajax.php:325 ../../operation/gis_maps/ajax.php:459
+#: ../../operation/search_users.php:48
 #: ../../operation/reporting/graph_viewer.php:525
-#: ../../operation/search_users.php:48 ../../operation/gis_maps/ajax.php:325
-#: ../../operation/gis_maps/ajax.php:459
-#: ../../operation/agentes/estado_agente.php:742
-#: ../../operation/agentes/pandora_networkmap.view.php:109
-#: ../../operation/agentes/estado_generalagente.php:239
-#: ../../operation/agentes/pandora_networkmap.editor.php:321
-#: ../../operation/agentes/gis_view.php:222
-#: ../../operation/agentes/custom_fields.php:69
-#: ../../operation/search_policies.php:36 ../../operation/search_agents.php:43
+#: ../../operation/reporting/custom_reporting.php:35
+#: ../../operation/search_graphs.php:31 ../../operation/search_agents.php:43
 #: ../../operation/search_agents.php:49
+#: ../../operation/agentes/custom_fields.php:69
+#: ../../operation/agentes/estado_agente.php:742
+#: ../../operation/agentes/pandora_networkmap.editor.php:321
+#: ../../operation/agentes/estado_generalagente.php:239
+#: ../../operation/agentes/pandora_networkmap.view.php:109
+#: ../../operation/agentes/gis_view.php:222
 #: ../../operation/incidents/configure_integriaims_incident.php:342
 #: ../../operation/incidents/dashboard_detail_integriaims_incident.php:117
 #: ../../operation/incidents/dashboard_detail_integriaims_incident.php:248
 #: ../../operation/incidents/dashboard_detail_integriaims_incident.php:261
 #: ../../operation/incidents/dashboard_detail_integriaims_incident.php:392
-#: ../../godmode/netflow/nf_item_list.php:175
-#: ../../godmode/snmpconsole/snmp_filters.php:201
-#: ../../godmode/snmpconsole/snmp_filters.php:289
-#: ../../godmode/snmpconsole/snmp_alert.php:724
-#: ../../godmode/snmpconsole/snmp_alert.php:1232
-#: ../../godmode/reporting/reporting_builder.item_editor.php:74
-#: ../../godmode/reporting/reporting_builder.item_editor.php:1083
-#: ../../godmode/reporting/reporting_builder.main.php:215
-#: ../../godmode/reporting/graph_builder.main.php:180
-#: ../../godmode/reporting/graphs.php:311
-#: ../../godmode/reporting/create_container.php:266
-#: ../../godmode/reporting/reporting_builder.php:911
-#: ../../godmode/massive/massive_edit_agents.php:760
-#: ../../godmode/massive/massive_edit_modules.php:743
-#: ../../godmode/massive/massive_edit_plugins.php:494
-#: ../../godmode/setup/snmp_wizard.php:41 ../../godmode/setup/os.list.php:70
-#: ../../godmode/setup/os.builder.php:37
-#: ../../godmode/agentes/planned_downtime.list.php:611
-#: ../../godmode/agentes/agent_template.php:237
-#: ../../godmode/agentes/planned_downtime.editor.php:572
-#: ../../godmode/agentes/module_manager.php:862
-#: ../../godmode/agentes/module_manager_editor_common.php:1081
-#: ../../godmode/agentes/pandora_networkmap_empty.editor.php:164
-#: ../../godmode/agentes/modificar_agente.php:652
-#: ../../godmode/agentes/agent_manager.php:431
-#: ../../godmode/groups/configure_group.php:242
-#: ../../godmode/groups/group_list.php:850
-#: ../../godmode/alerts/configure_alert_command.php:283
-#: ../../godmode/alerts/configure_alert_template.php:1106
-#: ../../godmode/alerts/alert_commands.php:658
-#: ../../godmode/alerts/alert_templates.php:46
-#: ../../godmode/users/user_list.php:485
-#: ../../godmode/events/event_responses.editor.php:111
-#: ../../godmode/events/event_responses.list.php:51
-#: ../../godmode/modules/manage_network_components.php:751
-#: ../../godmode/modules/manage_network_components_form_wizard.php:450
-#: ../../godmode/modules/module_list.php:63
-#: ../../godmode/modules/manage_network_templates_form.php:172
-#: ../../godmode/modules/manage_network_templates_form.php:234
-#: ../../godmode/modules/manage_network_components_form_common.php:335
-#: ../../godmode/modules/manage_network_templates.php:247
-#: ../../godmode/tag/tag.php:228 ../../godmode/tag/tag.php:278
-#: ../../godmode/tag/edit_tag.php:219 ../../godmode/servers/plugin.php:358
-#: ../../godmode/servers/plugin.php:485
-#: ../../godmode/servers/modificar_server.php:66
+#: ../../include/ajax/module.php:979 ../../include/ajax/events_extended.php:91
+#: ../../include/ajax/heatmap.ajax.php:232
+#: ../../include/ajax/heatmap.ajax.php:271
+#: ../../include/ajax/heatmap.ajax.php:331
+#: ../../include/class/ModuleTemplates.class.php:893
+#: ../../include/class/ModuleTemplates.class.php:1062
+#: ../../include/class/ModuleTemplates.class.php:1210
+#: ../../include/class/ManageNetScanScripts.class.php:404
+#: ../../include/class/ManageNetScanScripts.class.php:558
+#: ../../include/class/ManageNetScanScripts.class.php:607
+#: ../../include/class/AgentWizard.class.php:1183
+#: ../../include/class/AgentWizard.class.php:4029
+#: ../../include/class/ConfigPEN.class.php:448
+#: ../../include/class/ConfigPEN.class.php:599
+#: ../../include/functions_events.php:3854
+#: ../../include/functions_treeview.php:127
+#: ../../include/functions_treeview.php:652
+#: ../../include/functions_container.php:147
+#: ../../include/functions_snmp_browser.php:570
+#: ../../include/functions_snmp_browser.php:1682
+#: ../../include/functions_reporting_html.php:155
+#: ../../include/functions_reporting_html.php:1504
+#: ../../include/functions_reporting_html.php:3341
+#: ../../include/functions_reporting_html.php:3392
+#: ../../include/functions_reporting_html.php:5155
+#: ../../include/functions_reporting_html.php:6102
+#: ../../enterprise/tools/ipam/ipam_excel.php:132
+#: ../../enterprise/tools/ipam/ipam_excel.php:201
+#: ../../enterprise/tools/ipam/ipam_vlan_config.php:345
+#: ../../enterprise/tools/ipam/ipam_vlan_config.php:681
+#: ../../enterprise/tools/ipam/ipam_supernet_network.php:84
+#: ../../enterprise/tools/ipam/ipam_vlan_network.php:40
+#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:411
+#: ../../enterprise/tools/ipam/ipam_supernet_config.php:619
+#: ../../enterprise/tools/ipam/ipam_supernet_config.php:1061
+#: ../../enterprise/tools/ipam/ipam_list.php:582
+#: ../../enterprise/tools/ipam/ipam_editor.php:177
+#: ../../enterprise/views/ncm/devices/list.php:115
+#: ../../enterprise/views/ipam/sites/edit.php:51
+#: ../../enterprise/views/ipam/sites/list.php:47
+#: ../../enterprise/views/cluster/view.php:286
+#: ../../enterprise/views/cluster/list.php:59
+#: ../../enterprise/operation/services/services.service.php:119
+#: ../../enterprise/operation/services/services.list.php:500
+#: ../../enterprise/operation/agentes/tag_view.php:600
+#: ../../enterprise/operation/agentes/policy_view.php:68
 #: ../../enterprise/operation/agentes/collection_view.php:77
 #: ../../enterprise/operation/agentes/transactional_map.php:207
 #: ../../enterprise/operation/agentes/manage_transmap_creation.php:364
 #: ../../enterprise/operation/agentes/manage_transmap_creation.php:490
-#: ../../enterprise/operation/agentes/tag_view.php:600
 #: ../../enterprise/operation/agentes/ver_agente.php:60
-#: ../../enterprise/operation/agentes/policy_view.php:68
-#: ../../enterprise/operation/services/services.service.php:119
-#: ../../enterprise/operation/services/services.list.php:500
-#: ../../enterprise/tools/ipam/ipam_vlan_network.php:40
-#: ../../enterprise/tools/ipam/ipam_supernet_config.php:422
-#: ../../enterprise/tools/ipam/ipam_supernet_config.php:864
-#: ../../enterprise/tools/ipam/ipam_editor.php:177
-#: ../../enterprise/tools/ipam/ipam_excel.php:132
-#: ../../enterprise/tools/ipam/ipam_excel.php:201
-#: ../../enterprise/tools/ipam/ipam_supernet_network.php:84
-#: ../../enterprise/tools/ipam/ipam_list.php:582
-#: ../../enterprise/tools/ipam/ipam_vlan_config.php:345
-#: ../../enterprise/tools/ipam/ipam_vlan_config.php:681
-#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:411
-#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor_form.php:76
-#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:386
-#: ../../enterprise/godmode/reporting/reporting_builder.template.php:498
-#: ../../enterprise/godmode/reporting/graph_template_editor.php:199
-#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:433
-#: ../../enterprise/godmode/reporting/graph_template_list.php:204
-#: ../../enterprise/godmode/reporting/reporting_builder.template_editor.php:205
-#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1691
-#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:297
-#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:679
-#: ../../enterprise/godmode/massive/massive_create_services.php:647
-#: ../../enterprise/godmode/setup/setup_skins.php:127
-#: ../../enterprise/godmode/setup/edit_skin.php:259
-#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:347
-#: ../../enterprise/godmode/agentes/inventory_manager.php:221
-#: ../../enterprise/godmode/agentes/pandora_networkmap_empty.editor.php:162
-#: ../../enterprise/godmode/agentes/agent_autoconfiguration.php:141
-#: ../../enterprise/godmode/agentes/collection_manager.php:111
-#: ../../enterprise/godmode/agentes/collection_manager.php:208
-#: ../../enterprise/godmode/agentes/collections.php:330
-#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:386
-#: ../../enterprise/godmode/policies/policy_collections.php:171
-#: ../../enterprise/godmode/policies/policy_collections.php:265
-#: ../../enterprise/godmode/policies/policy_inventory_modules.php:303
-#: ../../enterprise/godmode/policies/configure_policy.php:119
-#: ../../enterprise/godmode/alerts/alert_inventory_list.php:222
-#: ../../enterprise/godmode/alerts/alert_inventory_builder.php:166
-#: ../../enterprise/godmode/modules/configure_local_component.php:477
-#: ../../enterprise/godmode/modules/configure_local_component.php:636
-#: ../../enterprise/godmode/modules/manage_inventory_modules.php:273
-#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:101
-#: ../../enterprise/godmode/services/services.service.php:550
-#: ../../enterprise/godmode/services/services.elements.php:103
 #: ../../enterprise/include/functions_cron.php:282
-#: ../../enterprise/include/functions_services.php:1604
-#: ../../enterprise/include/class/AlertCorrelationManager.class.php:795
-#: ../../enterprise/include/class/ManageBackups.class.php:162
-#: ../../enterprise/include/lib/ClusterViewer/ClusterWizard.php:812
-#: ../../enterprise/include/functions_reporting_pdf.php:1817
-#: ../../enterprise/include/functions_ipam.php:1370
-#: ../../enterprise/include/functions_ipam.php:1978
 #: ../../enterprise/include/functions_reporting_csv.php:482
 #: ../../enterprise/include/functions_reporting_csv.php:485
 #: ../../enterprise/include/functions_reporting_csv.php:705
@@ -1585,1419 +691,582 @@ msgstr "Nombre del gráfico"
 #: ../../enterprise/include/functions_reporting_csv.php:2723
 #: ../../enterprise/include/functions_reporting_csv.php:2795
 #: ../../enterprise/include/functions_reporting_csv.php:2797
-#: ../../enterprise/include/ajax/ipam.ajax.php:367
-#: ../../enterprise/meta/advanced/collections.php:337
-#: ../../enterprise/meta/include/functions_autoprovision.php:475
-#: ../../enterprise/meta/include/functions_wizard_meta.php:198
-#: ../../enterprise/meta/include/functions_wizard_meta.php:473
-#: ../../enterprise/meta/include/functions_wizard_meta.php:585
-#: ../../enterprise/meta/include/functions_wizard_meta.php:1137
-#: ../../enterprise/meta/include/functions_wizard_meta.php:1456
-#: ../../enterprise/meta/include/functions_wizard_meta.php:1577
-#: ../../enterprise/meta/include/functions_wizard_meta.php:1679
-#: ../../enterprise/meta/include/functions_wizard_meta.php:1801
+#: ../../enterprise/include/ajax/ipam.ajax.php:371
+#: ../../enterprise/include/ajax/ipam.ajax.php:615
+#: ../../enterprise/include/class/ManageBackups.class.php:162
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:795
+#: ../../enterprise/include/lib/ClusterViewer/ClusterWizard.php:812
+#: ../../enterprise/include/functions_services.php:1604
+#: ../../enterprise/include/functions_ipam.php:1374
+#: ../../enterprise/include/functions_ipam.php:1982
+#: ../../enterprise/include/functions_reporting_pdf.php:1817
 #: ../../enterprise/meta/include/ajax/tree_view.ajax.php:77
+#: ../../enterprise/meta/include/functions_autoprovision.php:475
+#: ../../enterprise/meta/include/functions_wizard_meta.php:199
+#: ../../enterprise/meta/include/functions_wizard_meta.php:476
+#: ../../enterprise/meta/include/functions_wizard_meta.php:589
+#: ../../enterprise/meta/include/functions_wizard_meta.php:1144
+#: ../../enterprise/meta/include/functions_wizard_meta.php:1464
+#: ../../enterprise/meta/include/functions_wizard_meta.php:1586
+#: ../../enterprise/meta/include/functions_wizard_meta.php:1689
+#: ../../enterprise/meta/include/functions_wizard_meta.php:1812
+#: ../../enterprise/meta/advanced/collections.php:337
 #: ../../enterprise/meta/agentsearch.php:135
 #: ../../enterprise/meta/agentsearch.php:328
 #: ../../enterprise/mobile/include/enterprise.class.php:88
-#: ../../enterprise/views/cluster/list.php:59
-#: ../../enterprise/views/cluster/view.php:286
-#: ../../enterprise/views/ncm/devices/list.php:115
-#: ../../enterprise/views/ipam/sites/list.php:47
-#: ../../enterprise/views/ipam/sites/edit.php:51
-#: ../../include/functions_container.php:147
-#: ../../include/functions_snmp_browser.php:570
-#: ../../include/functions_snmp_browser.php:1682
-#: ../../include/functions_treeview.php:127
-#: ../../include/functions_treeview.php:652
-#: ../../include/functions_events.php:3856
-#: ../../include/functions_reporting_html.php:155
-#: ../../include/functions_reporting_html.php:1504
-#: ../../include/functions_reporting_html.php:3341
-#: ../../include/functions_reporting_html.php:3392
-#: ../../include/functions_reporting_html.php:5155
-#: ../../include/functions_reporting_html.php:6102
-#: ../../include/class/ManageNetScanScripts.class.php:404
-#: ../../include/class/ManageNetScanScripts.class.php:558
-#: ../../include/class/ManageNetScanScripts.class.php:607
-#: ../../include/class/ConfigPEN.class.php:448
-#: ../../include/class/ConfigPEN.class.php:599
-#: ../../include/class/AgentWizard.class.php:1183
-#: ../../include/class/AgentWizard.class.php:4029
-#: ../../include/class/ModuleTemplates.class.php:893
-#: ../../include/class/ModuleTemplates.class.php:1062
-#: ../../include/class/ModuleTemplates.class.php:1210
-#: ../../include/ajax/events_extended.php:91
-#: ../../include/ajax/heatmap.ajax.php:232
-#: ../../include/ajax/heatmap.ajax.php:271
-#: ../../include/ajax/heatmap.ajax.php:331 ../../include/ajax/module.php:979
+#: ../../enterprise/godmode/setup/edit_skin.php:259
+#: ../../enterprise/godmode/setup/setup_skins.php:127
+#: ../../enterprise/godmode/modules/configure_local_component.php:477
+#: ../../enterprise/godmode/modules/configure_local_component.php:636
+#: ../../enterprise/godmode/modules/manage_inventory_modules.php:273
+#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:101
+#: ../../enterprise/godmode/services/services.elements.php:103
+#: ../../enterprise/godmode/services/services.service.php:550
+#: ../../enterprise/godmode/reporting/graph_template_editor.php:199
+#: ../../enterprise/godmode/reporting/graph_template_list.php:204
+#: ../../enterprise/godmode/reporting/reporting_builder.template_editor.php:205
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1691
+#: ../../enterprise/godmode/reporting/reporting_builder.template.php:498
+#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:433
+#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor_form.php:76
+#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:386
+#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:679
+#: ../../enterprise/godmode/massive/massive_create_services.php:647
+#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:297
+#: ../../enterprise/godmode/agentes/inventory_manager.php:221
+#: ../../enterprise/godmode/agentes/agent_autoconfiguration.php:141
+#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:347
+#: ../../enterprise/godmode/agentes/collection_manager.php:111
+#: ../../enterprise/godmode/agentes/collection_manager.php:208
+#: ../../enterprise/godmode/agentes/pandora_networkmap_empty.editor.php:162
+#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:386
+#: ../../enterprise/godmode/agentes/collections.php:330
+#: ../../enterprise/godmode/alerts/alert_inventory_list.php:222
+#: ../../enterprise/godmode/alerts/alert_inventory_builder.php:166
+#: ../../enterprise/godmode/policies/configure_policy.php:119
+#: ../../enterprise/godmode/policies/policy_inventory_modules.php:303
+#: ../../enterprise/godmode/policies/policy_collections.php:171
+#: ../../enterprise/godmode/policies/policy_collections.php:265
 #: ../../extensions/files_repo/files_repo_form.php:83
 #: ../../extensions/files_repo/files_repo_list.php:56
-#: ../../mobile/operation/tactical.php:352 ../../views/calendar/list.php:95
-#: ../../views/calendar/special_days_edit.php:138
-#: ../../views/calendar/edit.php:103
+#: ../../mobile/operation/tactical.php:352 ../../godmode/setup/snmp_wizard.php:41
+#: ../../godmode/setup/os.list.php:70 ../../godmode/setup/os.builder.php:37
+#: ../../godmode/servers/plugin.php:358 ../../godmode/servers/plugin.php:485
+#: ../../godmode/servers/modificar_server.php:66
+#: ../../godmode/modules/module_list.php:63
+#: ../../godmode/modules/manage_network_components.php:751
+#: ../../godmode/modules/manage_network_templates.php:247
+#: ../../godmode/modules/manage_network_templates_form.php:172
+#: ../../godmode/modules/manage_network_templates_form.php:234
+#: ../../godmode/modules/manage_network_components_form_wizard.php:450
+#: ../../godmode/modules/manage_network_components_form_common.php:335
+#: ../../godmode/reporting/reporting_builder.main.php:215
+#: ../../godmode/reporting/graphs.php:311
+#: ../../godmode/reporting/create_container.php:266
+#: ../../godmode/reporting/reporting_builder.item_editor.php:74
+#: ../../godmode/reporting/reporting_builder.item_editor.php:1083
+#: ../../godmode/reporting/reporting_builder.php:911
+#: ../../godmode/reporting/graph_builder.main.php:180
+#: ../../godmode/snmpconsole/snmp_alert.php:724
+#: ../../godmode/snmpconsole/snmp_alert.php:1232
+#: ../../godmode/snmpconsole/snmp_filters.php:201
+#: ../../godmode/snmpconsole/snmp_filters.php:289
+#: ../../godmode/tag/edit_tag.php:219 ../../godmode/tag/tag.php:228
+#: ../../godmode/tag/tag.php:278
+#: ../../godmode/events/event_responses.editor.php:111
+#: ../../godmode/events/event_responses.list.php:51
+#: ../../godmode/netflow/nf_item_list.php:175
+#: ../../godmode/massive/massive_edit_agents.php:760
+#: ../../godmode/massive/massive_edit_plugins.php:494
+#: ../../godmode/massive/massive_edit_modules.php:743
+#: ../../godmode/agentes/module_manager.php:862
+#: ../../godmode/agentes/module_manager_editor_common.php:1081
+#: ../../godmode/agentes/agent_manager.php:431
+#: ../../godmode/agentes/planned_downtime.editor.php:572
+#: ../../godmode/agentes/planned_downtime.list.php:611
+#: ../../godmode/agentes/agent_template.php:237
+#: ../../godmode/agentes/pandora_networkmap_empty.editor.php:164
+#: ../../godmode/agentes/modificar_agente.php:652
+#: ../../godmode/alerts/configure_alert_template.php:1106
+#: ../../godmode/alerts/alert_templates.php:46
+#: ../../godmode/alerts/alert_commands.php:658
+#: ../../godmode/alerts/configure_alert_command.php:283
+#: ../../godmode/users/user_list.php:485
+#: ../../godmode/groups/configure_group.php:242
+#: ../../godmode/groups/group_list.php:850
 msgid "Description"
 msgstr "Descripción"
 
-#: ../../operation/search_reports.php:42 ../../operation/search_reports.php:58
-#: ../../operation/reporting/custom_reporting.php:34
-#: ../../godmode/reporting/reporting_builder.php:910
-#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:282
-#: ../../enterprise/include/functions_cron.php:232
-#: ../../enterprise/include/functions_tasklist.php:340
-#: ../../enterprise/include/functions_reporting_csv.php:2218
-#: ../../enterprise/include/functions_reporting_csv.php:2222
-#: ../../include/functions_cron.php:665
-msgid "Report name"
-msgstr "Nombre del informe"
-
-#: ../../operation/search_reports.php:44 ../../operation/search_reports.php:60
-#: ../../operation/reporting/custom_reporting.php:36
-#: ../../godmode/reporting/reporting_builder.php:912
-#: ../../enterprise/godmode/reporting/reporting_builder.template.php:501
-msgid "HTML"
-msgstr "HTML"
-
-#: ../../operation/search_reports.php:45 ../../operation/search_reports.php:61
-#: ../../operation/reporting/custom_reporting.php:37
-#: ../../godmode/reporting/reporting_builder.php:913
-#: ../../enterprise/godmode/reporting/reporting_builder.template.php:502
-msgid "XML"
-msgstr "XML"
-
-#: ../../operation/search_reports.php:68 ../../operation/gis_maps/gis_map.php:190
-#: ../../operation/agentes/estado_agente.php:877
-#: ../../operation/agentes/estado_agente.php:880
-#: ../../operation/agentes/pandora_networkmap.php:713
-#: ../../operation/agentes/status_monitor.php:1510
-#: ../../operation/incidents/list_integriaims_incidents.php:550
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2175
-#: ../../godmode/reporting/reporting_builder.php:1169
-#: ../../godmode/reporting/reporting_builder.list_items.php:624
-#: ../../godmode/setup/snmp_wizard.php:110
-#: ../../godmode/agentes/planned_downtime.list.php:624
-#: ../../godmode/agentes/fields_manager.php:154
-#: ../../godmode/agentes/modificar_agente.php:803
-#: ../../godmode/agentes/modificar_agente.php:809
-#: ../../godmode/groups/group_list.php:917
-#: ../../godmode/groups/group_list.php:918
-#: ../../godmode/users/profile_list.php:434 ../../godmode/users/user_list.php:796
-#: ../../godmode/events/event_responses.list.php:79
-#: ../../godmode/servers/servers.build_table.php:220
-#: ../../godmode/servers/plugin.php:179 ../../godmode/servers/plugin.php:880
-#: ../../enterprise/operation/agentes/tag_view.php:742
-#: ../../enterprise/tools/ipam/ipam.php:417
-#: ../../enterprise/tools/ipam/ipam_ajax.php:122
-#: ../../enterprise/tools/ipam/ipam_ajax.php:527
-#: ../../enterprise/godmode/reporting/reporting_builder.template.php:612
-#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:382
-#: ../../enterprise/godmode/massive/massive_edit_tags_policy.php:204
-#: ../../enterprise/godmode/agentes/collections.editor.php:234
-#: ../../enterprise/include/functions_tasklist.php:595
-#: ../../enterprise/include/functions_tasklist.php:637
-#: ../../enterprise/include/class/NetworkConfigManager.class.php:612
-#: ../../enterprise/include/class/NetworkConfigManager.class.php:784
-#: ../../enterprise/include/class/NetworkConfigManager.class.php:960
-#: ../../enterprise/include/class/NetworkConfigManager.class.php:1107
-#: ../../enterprise/include/class/NetworkConfigManager.class.php:1315
-#: ../../enterprise/include/class/Omnishell.class.php:1137
-#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2382
-#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3036
-#: ../../enterprise/include/lib/Metaconsole/Node.php:1149
-#: ../../enterprise/include/lib/Metaconsole/Node.php:1150
-#: ../../enterprise/include/lib/ClusterViewer/ClusterManager.php:618
-#: ../../enterprise/include/ajax/transactional.ajax.php:117
-#: ../../enterprise/include/ajax/transactional.ajax.php:205
-#: ../../enterprise/meta/advanced/collections.editor.php:203
-#: ../../enterprise/meta/include/functions_autoprovision.php:506
-#: ../../enterprise/meta/include/functions_autoprovision.php:507
-#: ../../enterprise/meta/include/functions_autoprovision.php:672
-#: ../../enterprise/meta/include/functions_autoprovision.php:673
-#: ../../enterprise/meta/include/functions_wizard_meta.php:2056
-#: ../../enterprise/meta/include/functions_wizard_meta.php:2151
-#: ../../enterprise/meta/include/functions_wizard_meta.php:2715
-#: ../../enterprise/meta/screens/screens.visualmap.php:73
-#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:297
-#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:463
-#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:814
-#: ../../enterprise/meta/monitoring/wizard/wizard.manage_alert.php:74
-#: ../../include/functions_cron.php:881 ../../include/functions_cron.php:909
-#: ../../include/class/NetworkMap.class.php:3013
-#: ../../include/class/CalendarManager.class.php:652
-#: ../../include/ajax/module.php:1110
-#: ../../extensions/files_repo/files_repo_list.php:138
-#: ../../views/calendar/special_days.php:431
-msgid "Edit"
-msgstr "Editar"
-
-#: ../../operation/snmpconsole/snmp_statistics.php:45
-#: ../../operation/snmpconsole/snmp_browser.php:56
-#: ../../operation/snmpconsole/snmp_view.php:118
-#: ../../operation/agentes/networkmap.dinamic.php:102
-#: ../../operation/agentes/pandora_networkmap.view.php:2266
-msgid "Normal screen"
-msgstr "Pantalla normal"
-
-#: ../../operation/snmpconsole/snmp_statistics.php:54
-#: ../../operation/snmpconsole/snmp_browser.php:68
-#: ../../operation/snmpconsole/snmp_view.php:128
-#: ../../operation/agentes/networkmap.dinamic.php:115
-#: ../../operation/agentes/pandora_networkmap.view.php:2279
-#: ../../operation/events/events.php:826 ../../operation/heatmap.php:87
-#: ../../include/class/AgentsAlerts.class.php:834
-#: ../../views/dashboard/list.php:99
-msgid "Full screen"
-msgstr "Pantalla completa"
-
-#: ../../operation/snmpconsole/snmp_statistics.php:66
-#: ../../operation/snmpconsole/snmp_view.php:107
-#: ../../operation/events/events.php:939 ../../godmode/category/category.php:89
-#: ../../godmode/agentes/planned_downtime.editor.php:59
-#: ../../godmode/alerts/alert_list.php:494
-#: ../../enterprise/godmode/alerts/alert_inventory.php:78
-#: ../../include/functions_html.php:1894 ../../include/functions_html.php:1895
-#: ../../include/functions_html.php:2005 ../../include/functions_html.php:2006
-#: ../../include/functions_html.php:2185 ../../include/functions_html.php:2186
-#: ../../views/dashboard/header.php:278
-msgid "List"
-msgstr "Lista"
-
-#: ../../operation/snmpconsole/snmp_statistics.php:78
-#: ../../operation/snmpconsole/snmp_view.php:99
-#: ../../operation/incidents/incident_statistics.php:21
-#: ../../enterprise/include/functions_ipam.php:1553
-msgid "Statistics"
-msgstr "Estadísticas"
-
-#: ../../operation/snmpconsole/snmp_statistics.php:85
-msgid "SNMP Statistics"
-msgstr "Estadísticas SNMP"
-
-#: ../../operation/snmpconsole/snmp_statistics.php:98
-#: ../../operation/snmpconsole/snmp_mib_uploader.php:56
-#: ../../operation/snmpconsole/snmp_browser.php:86
-#: ../../operation/snmpconsole/snmp_view.php:693
-#: ../../operation/snmpconsole/snmp_view.php:802
-#: ../../operation/agentes/estado_agente.php:224
-#: ../../operation/agentes/group_view.php:98
-#: ../../operation/agentes/interface_view.php:72
-#: ../../operation/agentes/tactical.php:78
-#: ../../operation/agentes/alerts_status.php:200
-#: ../../operation/agentes/ver_agente.php:1906
-#: ../../operation/agentes/status_monitor.php:104 ../../operation/menu.php:31
-#: ../../operation/menu.php:154 ../../operation/tree.php:183
-#: ../../operation/heatmap.php:133 ../../godmode/snmpconsole/snmp_filters.php:55
-#: ../../godmode/snmpconsole/snmp_trap_generator.php:47
-#: ../../enterprise/operation/agentes/tag_view.php:50
-#: ../../enterprise/operation/inventory/inventory.php:146
-#: ../../enterprise/operation/services/services.treeview_services.php:61
-#: ../../enterprise/operation/services/services.list.php:58
-#: ../../enterprise/operation/services/services.table_services.php:38
-#: ../../enterprise/tools/ipam/ipam_editor.php:261
-#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:53
-#: ../../enterprise/godmode/reporting/aws_view.php:115
-#: ../../enterprise/godmode/reporting/aws_view.php:148
-#: ../../enterprise/godmode/services/services.massive.meta.php:42
-#: ../../enterprise/godmode/services/services.massive.elements.php:44
-#: ../../enterprise/include/class/SAPView.class.php:155
-#: ../../enterprise/include/class/SAPView.class.php:199
-#: ../../enterprise/meta/general/logon_ok.php:75
-#: ../../enterprise/meta/general/main_header.php:91
-#: ../../enterprise/meta/general/main_menu.php:181
-#: ../../enterprise/extensions/vmware/vmware_view.php:1394
-#: ../../enterprise/views/cluster/list.php:31
-#: ../../general/first_task/cluster_builder.php:38
-#: ../../include/class/AgentsAlerts.class.php:750
-#: ../../extensions/module_groups.php:260 ../../extensions/realtime_graphs.php:67
-#: ../../extensions/agents_modules.php:474
-msgid "Monitoring"
-msgstr "Monitorización"
-
-#: ../../operation/snmpconsole/snmp_statistics.php:102
-#: ../../operation/snmpconsole/snmp_view.php:697
-#: ../../operation/snmpconsole/snmp_view.php:806 ../../operation/menu.php:141
-msgid "SNMP"
-msgstr "SNMP"
-
-#: ../../operation/snmpconsole/snmp_statistics.php:156
-#: ../../operation/snmpconsole/snmp_view.php:720
-msgid "There are no SNMP traps in database"
-msgstr "No hay ningún trap SNMP definido"
-
-#: ../../operation/snmpconsole/snmp_statistics.php:169
-msgid "Traps received by source"
-msgstr "Traps recibidos por el origen"
-
-#: ../../operation/snmpconsole/snmp_statistics.php:169
-#: ../../operation/snmpconsole/snmp_statistics.php:237
-#: ../../enterprise/include/functions_reporting_csv.php:932
-#: ../../include/functions_reporting.php:1534
-#, php-format
-msgid "Top %d"
-msgstr "Primeros %d"
-
-#: ../../operation/snmpconsole/snmp_statistics.php:182
-#: ../../enterprise/include/functions_reporting_csv.php:2808
-#: ../../general/logon_ok.php:250 ../../include/functions.php:3045
-#: ../../include/functions_netflow.php:347
-#: ../../include/functions_reporting_html.php:5678
-#: ../../include/class/AuditLog.class.php:111
-#: ../../mobile/operation/tactical.php:351
-msgid "Source IP"
-msgstr "IP origen"
-
-#: ../../operation/snmpconsole/snmp_statistics.php:183
-#: ../../operation/snmpconsole/snmp_statistics.php:251
-msgid "Number"
-msgstr "Número"
-
-#: ../../operation/snmpconsole/snmp_statistics.php:193
-#: ../../operation/snmpconsole/snmp_view.php:956
-#: ../../operation/agentes/estado_agente.php:968
-#: ../../operation/agentes/estado_agente.php:978
-#: ../../godmode/agentes/configurar_agente.php:841
-#: ../../godmode/agentes/modificar_agente.php:952
-#: ../../enterprise/meta/monitoring/wizard/wizard.agent.php:76
-#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:231
-msgid "Create agent"
-msgstr "Crear agente"
-
-#: ../../operation/snmpconsole/snmp_statistics.php:197
-#: ../../operation/snmpconsole/snmp_view.php:962
-msgid "View agent details"
-msgstr "Ver detalles del agente"
-
-#: ../../operation/snmpconsole/snmp_statistics.php:218
-#: ../../operation/snmpconsole/snmp_statistics.php:275
-#: ../../operation/snmpconsole/snmp_view.php:636
-#: ../../operation/snmpconsole/snmp_view.php:1120
-#: ../../operation/snmpconsole/snmp_view.php:1149
-#: ../../operation/gis_maps/render_view.php:167
-#: ../../operation/users/user_edit.php:362
-#: ../../godmode/snmpconsole/snmp_alert.php:33
-#: ../../godmode/groups/configure_group.php:250
-#: ../../godmode/users/configure_user.php:1116
-#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:34
-#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:35
-#: ../../enterprise/godmode/setup/setup_acl.php:475
-#: ../../enterprise/godmode/setup/setup_acl.php:479
-#: ../../enterprise/include/class/Aws.cloud.php:347
-#: ../../enterprise/include/functions_ipam.php:1593
-#: ../../include/functions_reporting.php:4847
-#: ../../include/functions_reporting.php:4859
-#: ../../include/functions_reporting.php:4860
-#: ../../include/functions_reporting.php:4863
-#: ../../include/functions_reporting.php:4868
-#: ../../include/functions_reporting.php:4869
-#: ../../include/functions_reporting.php:4872
-#: ../../include/functions_graph.php:3060 ../../include/functions_graph.php:3105
-#: ../../include/functions_graph.php:3146 ../../include/functions_graph.php:3188
-#: ../../include/functions_graph.php:3265 ../../include/functions_graph.php:3474
-#: ../../include/functions_graph.php:3582 ../../include/functions_graph.php:3647
-#: ../../include/functions_graph.php:3814 ../../include/functions_graph.php:3826
-#: ../../include/functions_graph.php:3827 ../../include/functions_graph.php:3830
-#: ../../include/functions_graph.php:3835 ../../include/functions_graph.php:3836
-#: ../../include/functions_graph.php:3839 ../../include/functions_graph.php:4837
-#: ../../extensions/api_checker.php:176
-msgid "Other"
-msgstr "Otros"
-
-#: ../../operation/snmpconsole/snmp_statistics.php:237
-msgid "Traps received by Enterprise String"
-msgstr "Traps recibidos por cadena Enterprise"
-
-#: ../../operation/snmpconsole/snmp_statistics.php:250
-msgid "Trap Enterprise String"
-msgstr "Traps Enterprise de cadena"
-
-#: ../../operation/snmpconsole/snmp_mib_uploader.php:47
-#: ../../operation/menu.php:131
-msgid "MIB uploader"
-msgstr "Cargador MIB"
-
-#: ../../operation/snmpconsole/snmp_mib_uploader.php:60
-#: ../../operation/snmpconsole/snmp_browser.php:90
-#: ../../godmode/snmpconsole/snmp_filters.php:59
-#: ../../godmode/snmpconsole/snmp_trap_generator.php:51
-#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:57
-msgid "SMNP"
-msgstr "SMNP"
-
-#: ../../operation/snmpconsole/snmp_mib_uploader.php:86
-msgid ""
-"MIB files will be installed on the system. Please note that a MIB may depend "
-"on other MIB. To customize trap definitions use the SNMP trap editor."
-msgstr ""
-"Los archivos MIB se instalarán en el sistema. Por favor, ten en cuenta que un "
-"MIB puede depender de otro MIB. Para personalizar las definiciones de trap, se "
-"debe usar el editor de trap SNMP."
-
-#: ../../operation/snmpconsole/snmp_browser.php:77
-msgid "SNMP Browser"
-msgstr "Navegador SNMP"
-
-#: ../../operation/snmpconsole/snmp_browser.php:155
-#: ../../operation/snmpconsole/snmp_browser.php:175
-#: ../../godmode/modules/manage_network_templates_form.php:260
-msgid "Add modules"
-msgstr "Añadir módulos"
-
-#: ../../operation/snmpconsole/snmp_browser.php:174
-#: ../../operation/snmpconsole/snmp_browser.php:551
-#: ../../operation/snmpconsole/snmp_browser.php:631
-#: ../../operation/snmpconsole/snmp_browser.php:646
-#: ../../operation/agentes/pandora_networkmap.editor.php:603
-#: ../../godmode/massive/massive_operations.php:393
-#: ../../godmode/setup/snmp_wizard.php:100
-#: ../../godmode/agentes/status_monitor_custom_fields.php:242
-#: ../../godmode/events/custom_events.php:205
-#: ../../enterprise/tools/ipam/ipam_supernet_config.php:1096
-#: ../../enterprise/tools/ipam/ipam_supernet_config.php:1120
-#: ../../enterprise/tools/ipam/ipam_vlan_config.php:808
-#: ../../enterprise/tools/ipam/ipam_vlan_config.php:831
-#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:266
-#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:341
-#: ../../enterprise/godmode/services/services.service.php:966
-#: ../../enterprise/godmode/services/services.elements.php:844
-#: ../../enterprise/godmode/services/services.elements.php:855
-#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3007
-#: ../../enterprise/include/class/AgentRepository.class.php:801
-#: ../../enterprise/include/class/AgentRepository.class.php:899
-#: ../../enterprise/include/class/DeploymentCenter.class.php:1567
-#: ../../enterprise/include/class/DeploymentCenter.class.php:1669
-#: ../../enterprise/include/class/DeploymentCenter.class.php:1721
-#: ../../enterprise/include/class/DeploymentCenter.class.php:1753
-#: ../../enterprise/include/class/DeploymentCenter.class.php:1788
-#: ../../enterprise/include/class/LogSource.class.php:845
-#: ../../enterprise/include/class/LogSource.class.php:898
-#: ../../enterprise/include/class/ManageBackups.class.php:446
-#: ../../enterprise/include/functions_HA_cluster.php:492
-#: ../../enterprise/meta/monitoring/custom_fields_view.php:1152
-#: ../../enterprise/meta/event/custom_events.php:250
-#: ../../enterprise/views/ncm/agent/details.php:690 ../../general/header.php:814
-#: ../../include/functions_visual_map_editor.php:880
+#: ../../views/calendar/edit.php:120 ../../views/calendar/special_days.php:323
+#: ../../views/calendar/special_days.php:406
+#: ../../views/calendar/special_days.php:481
+#: ../../views/calendar/special_days.php:505
+#: ../../views/calendar/special_days_edit.php:163
+#: ../../views/calendar/special_days_edit.php:206
+#: ../../views/calendar/list.php:144 ../../operation/gis_maps/gis_map.php:207
+#: ../../operation/incidents/configure_integriaims_incident.php:380
+#: ../../operation/incidents/list_integriaims_incidents.php:573
 #: ../../include/functions_visual_map_editor.php:884
-#: ../../include/functions_register.php:179
-#: ../../include/class/WelcomeWindow.class.php:174
-#: ../../include/class/CredentialStore.class.php:1242
-#: ../../include/class/CredentialStore.class.php:1294
-#: ../../include/class/TreeGroupEdition.class.php:165
-#: ../../include/class/ConfigPEN.class.php:669
-#: ../../include/class/ConfigPEN.class.php:693
-#: ../../include/class/NetworkMap.class.php:2807
-#: ../../include/class/AgentWizard.class.php:6009
-#: ../../include/class/ModuleTemplates.class.php:1382
-#: ../../update_manager_client/views/register.php:86
-#: ../../views/calendar/special_days_edit.php:207
-#: ../../views/calendar/special_days.php:407
-#: ../../views/calendar/special_days.php:506 ../../views/dashboard/list.php:225
-#: ../../views/dashboard/header.php:69 ../../views/dashboard/header.php:103
-msgid "Cancel"
-msgstr "Cancelar"
+#: ../../include/class/ModuleTemplates.class.php:960
+#: ../../include/class/ModuleTemplates.class.php:1007
+#: ../../include/class/ManageNetScanScripts.class.php:763
+#: ../../include/functions_filemanager.php:813
+#: ../../include/functions_filemanager.php:874
+#: ../../enterprise/tools/ipam/ipam_network_location_config.php:148
+#: ../../enterprise/tools/ipam/ipam_network_location_config.php:315
+#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:454
+#: ../../enterprise/tools/ipam/ipam_list.php:746
+#: ../../enterprise/tools/ipam/ipam_editor.php:361
+#: ../../enterprise/views/ncm/snippets/edit.php:106
+#: ../../enterprise/views/ncm/snippets/list.php:127
+#: ../../enterprise/views/ncm/firmwares/edit.php:169
+#: ../../enterprise/views/ncm/firmwares/list.php:133
+#: ../../enterprise/views/ncm/vendors/edit.php:104
+#: ../../enterprise/views/ncm/vendors/list.php:119
+#: ../../enterprise/views/ncm/templates/edit.php:315
+#: ../../enterprise/views/ncm/templates/list.php:133
+#: ../../enterprise/views/ncm/models/edit.php:103
+#: ../../enterprise/views/ncm/models/list.php:121
+#: ../../enterprise/views/ipam/sites/edit.php:80
+#: ../../enterprise/views/ipam/sites/list.php:98
+#: ../../enterprise/operation/agentes/manage_transmap_creation.php:405
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3095
+#: ../../enterprise/meta/include/functions_autoprovision.php:588
+#: ../../enterprise/meta/include/functions_autoprovision.php:789
+#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:300
+#: ../../enterprise/meta/monitoring/wizard/wizard.manage_alert.php:105
+#: ../../enterprise/meta/advanced/collections.editor.php:136
+#: ../../enterprise/meta/advanced/cron_main.php:471
+#: ../../enterprise/meta/advanced/collections.data.php:42
+#: ../../enterprise/meta/advanced/collections.data.php:71
+#: ../../enterprise/meta/advanced/collections.data.php:93
+#: ../../enterprise/meta/advanced/collections.data.php:113
+#: ../../enterprise/meta/advanced/collections.data.php:138
+#: ../../enterprise/meta/advanced/collections.data.php:184
+#: ../../enterprise/meta/advanced/collections.php:437
+#: ../../enterprise/meta/advanced/collections.php:448
+#: ../../enterprise/meta/advanced/links.php:137
+#: ../../enterprise/godmode/setup/edit_skin.php:299
+#: ../../enterprise/godmode/servers/manage_export.php:130
+#: ../../enterprise/godmode/servers/manage_export.php:169
+#: ../../enterprise/godmode/modules/configure_local_component.php:680
+#: ../../enterprise/godmode/modules/local_components.php:716
+#: ../../enterprise/godmode/modules/manage_inventory_modules.php:343
+#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:145
+#: ../../enterprise/godmode/services/services.service.php:912
+#: ../../enterprise/godmode/reporting/aws_view.php:194
+#: ../../enterprise/godmode/reporting/graph_template_editor.php:269
+#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor_form.php:24
+#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor_form.php:87
+#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:428
+#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:599
+#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:671
+#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:720
+#: ../../enterprise/godmode/agentes/collections.editor.php:169
+#: ../../enterprise/godmode/agentes/collections.agents.php:38
+#: ../../enterprise/godmode/agentes/collections.data.php:68
+#: ../../enterprise/godmode/agentes/collections.data.php:169
+#: ../../enterprise/godmode/agentes/collections.data.php:193
+#: ../../enterprise/godmode/agentes/collections.data.php:213
+#: ../../enterprise/godmode/agentes/collections.data.php:240
+#: ../../enterprise/godmode/agentes/collections.data.php:296
+#: ../../enterprise/godmode/agentes/collections.php:404
+#: ../../enterprise/godmode/alerts/alert_inventory_list.php:433
+#: ../../enterprise/godmode/policies/policy_modules.php:432
+#: ../../enterprise/godmode/policies/policies.php:645
+#: ../../enterprise/godmode/policies/configure_policy.php:139
+#: ../../godmode/setup/os.php:95 ../../godmode/setup/os.php:177
+#: ../../godmode/setup/news.php:231 ../../godmode/setup/gis.php:97
+#: ../../godmode/setup/links.php:127 ../../godmode/servers/plugin.php:596
+#: ../../godmode/modules/manage_network_components_form.php:376
+#: ../../godmode/modules/manage_network_components.php:934
+#: ../../godmode/modules/manage_network_templates.php:309
+#: ../../godmode/modules/manage_network_templates_form.php:180
+#: ../../godmode/modules/manage_nc_groups.php:318
+#: ../../godmode/modules/manage_nc_groups_form.php:93
+#: ../../godmode/category/edit_category.php:205
+#: ../../godmode/reporting/map_builder.php:559
+#: ../../godmode/reporting/create_container.php:333
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2167
+#: ../../godmode/reporting/graph_builder.main.php:294
+#: ../../godmode/snmpconsole/snmp_alert.php:1054
+#: ../../godmode/snmpconsole/snmp_alert.php:1465
+#: ../../godmode/snmpconsole/snmp_filters.php:263
+#: ../../godmode/snmpconsole/snmp_filters.php:336
+#: ../../godmode/tag/edit_tag.php:281
+#: ../../godmode/events/event_edit_filter.php:676
+#: ../../godmode/events/event_responses.editor.php:219
+#: ../../godmode/netflow/nf_edit_form.php:272
+#: ../../godmode/agentes/module_manager.php:229
+#: ../../godmode/agentes/configure_field.php:141
+#: ../../godmode/agentes/agent_manager.php:933
+#: ../../godmode/agentes/module_manager_editor.php:788
+#: ../../godmode/agentes/planned_downtime.list.php:582
+#: ../../godmode/agentes/planned_downtime.list.php:873
+#: ../../godmode/alerts/alert_list.list.php:961
+#: ../../godmode/alerts/alert_actions.php:471
+#: ../../godmode/alerts/alert_templates.php:481
+#: ../../godmode/alerts/alert_commands.php:748
+#: ../../godmode/alerts/alert_list.php:496
+#: ../../godmode/alerts/configure_alert_command.php:387
+#: ../../godmode/alerts/configure_alert_action.php:402
+#: ../../godmode/users/configure_user.php:1475
+#: ../../godmode/users/profile_list.php:463
+#: ../../godmode/groups/configure_group.php:279
+#: ../../godmode/groups/configure_modu_group.php:86
+msgid "Create"
+msgstr "Crear"
 
-#: ../../operation/snmpconsole/snmp_browser.php:218
-msgid "Adding modules in progress"
-msgstr "Añadiendo módulos"
-
-#: ../../operation/snmpconsole/snmp_browser.php:225
-#: ../../godmode/reporting/visual_console_builder.editor.php:167
-#: ../../godmode/reporting/visual_console_builder.editor.php:169
-#: ../../godmode/reporting/visual_console_builder.editor.php:171
-msgid "Action in progress"
-msgstr "Acción en curso"
-
-#: ../../operation/snmpconsole/snmp_browser.php:389
-#: ../../operation/snmpconsole/snmp_browser.php:404
-#: ../../operation/snmpconsole/snmp_browser.php:414
-#: ../../operation/snmpconsole/snmp_browser.php:533
-#: ../../operation/snmpconsole/snmp_view.php:630
-#: ../../operation/snmpconsole/snmp_view.php:1114
-#: ../../operation/snmpconsole/snmp_view.php:1125
-#: ../../operation/gis_maps/render_view.php:163
-#: ../../operation/agentes/pandora_networkmap.view.php:174
-#: ../../operation/agentes/pandora_networkmap.editor.php:349
-#: ../../operation/agentes/ver_agente.php:1155
-#: ../../operation/agentes/ver_agente.php:1211
-#: ../../operation/agentes/ver_agente.php:1226
-#: ../../operation/users/user_edit.php:402
-#: ../../operation/users/user_edit.php:414
-#: ../../operation/users/user_edit.php:455
-#: ../../operation/users/user_edit.php:491
-#: ../../operation/users/user_edit.php:505
-#: ../../operation/users/user_edit.php:898
-#: ../../operation/users/user_edit.php:905
-#: ../../operation/users/user_edit.php:914
-#: ../../operation/users/user_edit.php:921 ../../operation/events/events.php:1912
-#: ../../operation/events/events_list.php:530
-#: ../../operation/events/events_list.php:1283
-#: ../../operation/incidents/list_integriaims_incidents.php:530
-#: ../../operation/incidents/list_integriaims_incidents.php:534
-#: ../../godmode/snmpconsole/snmp_alert.php:27
-#: ../../godmode/snmpconsole/snmp_alert.php:1081
-#: ../../godmode/reporting/visual_console_builder.elements.php:482
-#: ../../godmode/reporting/visual_console_builder.elements.php:633
-#: ../../godmode/reporting/visual_console_builder.elements.php:643
-#: ../../godmode/reporting/reporting_builder.item_editor.php:194
-#: ../../godmode/reporting/reporting_builder.item_editor.php:906
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2029
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2102
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2123
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2155
-#: ../../godmode/reporting/reporting_builder.item_editor.php:3034
-#: ../../godmode/reporting/reporting_builder.item_editor.php:3195
-#: ../../godmode/reporting/graph_builder.graph_editor.php:329
-#: ../../godmode/reporting/visual_console_builder.wizard.php:266
-#: ../../godmode/reporting/visual_console_builder.wizard.php:438
-#: ../../godmode/reporting/visual_console_builder.wizard.php:451
-#: ../../godmode/reporting/visual_console_builder.wizard.php:485
-#: ../../godmode/reporting/visual_console_builder.wizard.php:498
-#: ../../godmode/reporting/visual_console_builder.wizard.php:536
-#: ../../godmode/reporting/visual_console_builder.wizard.php:537
-#: ../../godmode/reporting/visual_console_builder.wizard.php:732
-#: ../../godmode/reporting/visual_console_builder.wizard.php:742
-#: ../../godmode/reporting/visual_console_builder.wizard.php:774
-#: ../../godmode/reporting/create_container.php:489
-#: ../../godmode/massive/massive_delete_alerts.php:359
-#: ../../godmode/massive/massive_add_alerts.php:304
-#: ../../godmode/massive/massive_edit_agents.php:740
-#: ../../godmode/massive/massive_edit_modules.php:458
-#: ../../godmode/massive/massive_edit_modules.php:919
-#: ../../godmode/massive/massive_edit_modules.php:1053
-#: ../../godmode/massive/massive_edit_modules.php:1169
-#: ../../godmode/massive/massive_edit_modules.php:1204
-#: ../../godmode/massive/massive_edit_modules.php:1259
-#: ../../godmode/massive/massive_edit_modules.php:1345
-#: ../../godmode/massive/massive_edit_modules.php:1418
-#: ../../godmode/massive/massive_edit_modules.php:1527
-#: ../../godmode/massive/massive_edit_modules.php:1528
-#: ../../godmode/massive/massive_edit_modules.php:1529
-#: ../../godmode/massive/massive_edit_modules.php:1530
-#: ../../godmode/massive/massive_edit_modules.php:1769
-#: ../../godmode/massive/massive_edit_modules.php:1829
-#: ../../godmode/massive/massive_copy_modules.php:374
-#: ../../godmode/massive/massive_copy_modules.php:508
-#: ../../godmode/massive/massive_edit_plugins.php:338
-#: ../../godmode/massive/massive_delete_modules.php:502
-#: ../../godmode/massive/massive_delete_modules.php:594
-#: ../../godmode/massive/massive_delete_modules.php:679
-#: ../../godmode/massive/massive_delete_modules.php:728
-#: ../../godmode/massive/massive_delete_modules.php:736
-#: ../../godmode/massive/massive_delete_modules.php:737
-#: ../../godmode/massive/massive_delete_modules.php:738
-#: ../../godmode/massive/massive_delete_modules.php:739
-#: ../../godmode/massive/massive_delete_modules.php:805
-#: ../../godmode/massive/massive_delete_modules.php:835
-#: ../../godmode/massive/massive_add_action_alerts.php:341
-#: ../../godmode/setup/setup_visuals.php:400
-#: ../../godmode/setup/setup_visuals.php:419
-#: ../../godmode/setup/setup_visuals.php:949
-#: ../../godmode/setup/os.builder.php:41
-#: ../../godmode/agentes/status_monitor_custom_fields.php:218
-#: ../../godmode/agentes/status_monitor_custom_fields.php:266
-#: ../../godmode/agentes/module_manager_editor_common.php:733
-#: ../../godmode/agentes/module_manager_editor_common.php:1149
-#: ../../godmode/agentes/module_manager_editor_common.php:1405
-#: ../../godmode/agentes/module_manager_editor_common.php:1419
-#: ../../godmode/agentes/module_manager_editor_network.php:465
-#: ../../godmode/agentes/module_manager_editor_plugin.php:55
-#: ../../godmode/agentes/agent_manager.php:425
-#: ../../godmode/agentes/agent_manager.php:675
-#: ../../godmode/agentes/agent_manager.php:841
-#: ../../godmode/groups/configure_group.php:188
-#: ../../godmode/groups/configure_group.php:210
-#: ../../godmode/alerts/configure_alert_template.php:650
-#: ../../godmode/alerts/configure_alert_template.php:777
-#: ../../godmode/alerts/configure_alert_template.php:798
-#: ../../godmode/alerts/alert_list.list.php:745
-#: ../../godmode/alerts/alert_commands.php:302
-#: ../../godmode/alerts/alert_commands.php:316
-#: ../../godmode/alerts/alert_commands.php:376
-#: ../../godmode/alerts/alert_commands.php:389
-#: ../../godmode/alerts/alert_actions.php:291
-#: ../../godmode/alerts/configure_alert_action.php:264
-#: ../../godmode/users/configure_user.php:1073
-#: ../../godmode/users/configure_user.php:1087
-#: ../../godmode/users/configure_user.php:1281
-#: ../../godmode/users/configure_user.php:1293
-#: ../../godmode/events/custom_events.php:181
-#: ../../godmode/events/custom_events.php:229
-#: ../../godmode/events/event_edit_filter.php:694
-#: ../../godmode/wizards/HostDevices.class.php:1098
-#: ../../godmode/modules/manage_network_components_form_plugin.php:41
-#: ../../godmode/modules/manage_network_components_form.php:642
-#: ../../godmode/modules/manage_network_components_form.php:648
-#: ../../godmode/modules/manage_network_components_form.php:657
-#: ../../godmode/modules/manage_network_components_form.php:663
-#: ../../godmode/modules/manage_nc_groups_form.php:77
-#: ../../godmode/modules/manage_network_components_form_common.php:343
-#: ../../godmode/modules/manage_network_components_form_network.php:248
-#: ../../enterprise/operation/agentes/ver_agente.php:38
-#: ../../enterprise/operation/log/log_viewer.php:735
-#: ../../enterprise/tools/ipam/ipam_supernet_config.php:414
-#: ../../enterprise/tools/ipam/ipam_supernet_config.php:586
-#: ../../enterprise/tools/ipam/ipam_editor.php:206
-#: ../../enterprise/tools/ipam/ipam_editor.php:234
-#: ../../enterprise/tools/ipam/ipam_network.php:594
-#: ../../enterprise/tools/ipam/ipam_list.php:112
-#: ../../enterprise/tools/ipam/ipam_list.php:135
-#: ../../enterprise/tools/ipam/ipam_list.php:157
-#: ../../enterprise/godmode/reporting/reporting_builder.template.php:1148
-#: ../../enterprise/godmode/reporting/reporting_builder.template.php:1272
-#: ../../enterprise/godmode/reporting/reporting_builder.template.php:1287
-#: ../../enterprise/godmode/reporting/reporting_builder.template.php:1297
-#: ../../enterprise/godmode/reporting/reporting_builder.template.php:1312
-#: ../../enterprise/godmode/reporting/reporting_builder.template.php:1334
-#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:80
-#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:386
-#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:409
-#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:906
-#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:922
-#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:943
-#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:952
-#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:1308
-#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:1336
-#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:1355
-#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:1382
-#: ../../enterprise/godmode/reporting/graph_template_wizard.php:193
-#: ../../enterprise/godmode/reporting/graph_template_wizard.php:398
-#: ../../enterprise/godmode/reporting/graph_template_wizard.php:417
-#: ../../enterprise/godmode/reporting/graph_template_wizard.php:428
-#: ../../enterprise/godmode/reporting/graph_template_wizard.php:443
-#: ../../enterprise/godmode/reporting/graph_template_wizard.php:475
-#: ../../enterprise/godmode/reporting/reporting_builder.global.php:60
-#: ../../enterprise/godmode/reporting/reporting_builder.global.php:518
-#: ../../enterprise/godmode/reporting/reporting_builder.global.php:535
-#: ../../enterprise/godmode/reporting/reporting_builder.global.php:551
-#: ../../enterprise/godmode/reporting/reporting_builder.global.php:567
-#: ../../enterprise/godmode/reporting/reporting_builder.global.php:591
-#: ../../enterprise/godmode/reporting/reporting_builder.global.php:607
-#: ../../enterprise/godmode/reporting/reporting_builder.global.php:649
-#: ../../enterprise/godmode/reporting/reporting_builder.global.php:682
-#: ../../enterprise/godmode/reporting/reporting_builder.global.php:691
-#: ../../enterprise/godmode/reporting/reporting_builder.global.php:710
-#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:184
-#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:437
-#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:581
-#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:589
-#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:599
-#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:621
-#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:674
-#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:707
-#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:727
-#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:737
-#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:758
-#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:778
-#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:803
-#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:826
-#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:847
-#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:215
-#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:247
-#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:253
-#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:265
-#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:275
-#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:262
-#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:774
-#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:795
-#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:810
-#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:820
-#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:830
-#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:834
-#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:861
-#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:194
-#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:578
-#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:597
-#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:611
-#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:621
-#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:631
-#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:635
-#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:661
-#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:314
-#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2977
-#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3194
-#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3278
-#: ../../enterprise/godmode/massive/massive_edit_tags_policy.php:125
-#: ../../enterprise/godmode/massive/massive_edit_tags_policy.php:211
-#: ../../enterprise/godmode/massive/massive_add_alerts_policy.php:111
-#: ../../enterprise/godmode/massive/massive_add_alerts_policy.php:132
-#: ../../enterprise/godmode/massive/massive_add_alerts_policy.php:144
-#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:396
-#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:473
-#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:549
-#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:550
-#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:551
-#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:552
-#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:601
-#: ../../enterprise/godmode/massive/massive_tags_edit_policy.php:117
-#: ../../enterprise/godmode/massive/massive_tags_edit_policy.php:197
-#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:121
-#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:142
-#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:154
-#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:28
-#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:205
-#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:244
-#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:29
-#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:265
-#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:471
-#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:862
-#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:977
-#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1091
-#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1126
-#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1173
-#: ../../enterprise/godmode/setup/setup.php:675
-#: ../../enterprise/godmode/setup/setup.php:692
-#: ../../enterprise/godmode/setup/setup.php:701
-#: ../../enterprise/godmode/setup/setup.php:718
-#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:857
-#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:473
-#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:604
-#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:700
-#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:167
-#: ../../enterprise/godmode/policies/policy_external_alerts.php:579
-#: ../../enterprise/godmode/policies/policy_external_alerts.php:688
-#: ../../enterprise/godmode/policies/policy_agents.php:391
-#: ../../enterprise/godmode/policies/policy_agents.php:1694
-#: ../../enterprise/godmode/policies/policy_alerts.php:583
-#: ../../enterprise/godmode/modules/configure_local_component.php:543
-#: ../../enterprise/godmode/modules/configure_local_component.php:698
-#: ../../enterprise/godmode/modules/configure_local_component.php:704
-#: ../../enterprise/godmode/modules/configure_local_component.php:712
-#: ../../enterprise/godmode/modules/configure_local_component.php:718
-#: ../../enterprise/godmode/servers/manage_export_form.php:85
-#: ../../enterprise/include/functions_tasklist.php:317
-#: ../../enterprise/include/class/SAP.app.php:615
-#: ../../enterprise/include/class/SAP.app.php:810
-#: ../../enterprise/include/class/SAP.app.php:811
-#: ../../enterprise/include/class/Omnishell.class.php:858
-#: ../../enterprise/include/class/Omnishell.class.php:859
-#: ../../enterprise/include/class/AlertCorrelationManager.class.php:894
-#: ../../enterprise/include/class/AlertCorrelationManager.class.php:921
-#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1031
-#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1184
-#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1194
-#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2001
-#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2467
-#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2512
-#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3479
-#: ../../enterprise/meta/advanced/metasetup.visual.php:289
-#: ../../enterprise/meta/advanced/metasetup.setup.php:394
-#: ../../enterprise/meta/advanced/metasetup.setup.php:400
-#: ../../enterprise/meta/advanced/metasetup.setup.php:410
-#: ../../enterprise/meta/advanced/metasetup.setup.php:416
-#: ../../enterprise/meta/advanced/metasetup.relations.php:245
-#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:833
-#: ../../enterprise/meta/monitoring/wizard/wizard.php:142
-#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:268
-#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:365
-#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:422
-#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:690
-#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:761
-#: ../../enterprise/meta/monitoring/custom_fields_view.php:256
-#: ../../enterprise/meta/event/custom_events.php:227
-#: ../../enterprise/meta/event/custom_events.php:273
-#: ../../enterprise/views/ipam/sites/edit.php:71 ../../include/functions.php:1073
-#: ../../include/functions_networkmap.php:1519
-#: ../../include/functions_cron.php:642 ../../include/functions_events.php:3621
-#: ../../include/functions_events.php:3637 ../../include/functions_html.php:376
-#: ../../include/functions_html.php:816 ../../include/functions_html.php:1229
-#: ../../include/functions_html.php:1281 ../../include/functions_html.php:1328
-#: ../../include/functions_html.php:1329 ../../include/functions_html.php:1382
-#: ../../include/functions_html.php:1432 ../../include/functions_html.php:4572
-#: ../../include/functions_html.php:5861
-#: ../../include/functions_integriaims.php:135
-#: ../../include/functions_profile.php:297
-#: ../../include/functions_profile.php:315
-#: ../../include/functions_profile.php:330
-#: ../../include/functions_visual_map_editor.php:404
-#: ../../include/functions_visual_map_editor.php:406
-#: ../../include/functions_visual_map_editor.php:622
-#: ../../include/functions_visual_map_editor.php:957
-#: ../../include/functions_visual_map_editor.php:1010
-#: ../../include/functions_visual_map_editor.php:1072
-#: ../../include/class/NetworkMap.class.php:2789
-#: ../../include/class/NetworkMap.class.php:3024
-#: ../../include/class/NetworkMap.class.php:3047
-#: ../../include/class/NetworkMap.class.php:3119
-#: ../../include/class/NetworkMap.class.php:3129
-#: ../../include/class/NetworkMap.class.php:3214
-#: ../../include/class/NetworkMap.class.php:3230
-#: ../../include/lib/Dashboard/Widgets/maps_made_by_user.php:521
-#: ../../include/lib/Dashboard/Widgets/top_n.php:241
-#: ../../include/lib/Dashboard/Widgets/graph_module_histogram.php:326
-#: ../../include/lib/Dashboard/Widgets/reports.php:490
-#: ../../include/lib/Dashboard/Widgets/single_graph.php:311
-#: ../../include/lib/Dashboard/Widgets/service_map.php:266
-#: ../../include/lib/Dashboard/Widgets/service_map.php:294
-#: ../../include/lib/Dashboard/Widgets/sla_percent.php:336
-#: ../../include/lib/Dashboard/Widgets/custom_graph.php:355
-#: ../../include/lib/Dashboard/Widgets/events_list.php:301
-#: ../../include/lib/Dashboard/Widgets/events_list.php:459
-#: ../../include/rest-api/models/VisualConsole/Item.php:2087
-#: ../../include/rest-api/models/VisualConsole/Item.php:2206
-#: ../../include/rest-api/models/VisualConsole/Item.php:2319
-#: ../../include/rest-api/models/VisualConsole/Item.php:2441
-#: ../../include/rest-api/models/VisualConsole/Items/SimpleValue.php:364
-#: ../../include/rest-api/models/VisualConsole/Items/SimpleValue.php:399
-#: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:632
-#: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:644
-#: ../../include/rest-api/models/VisualConsole/Items/BasicChart.php:318
-#: ../../include/ajax/events.php:509
-#: ../../include/ajax/planned_downtime.ajax.php:85
-#: ../../include/ajax/custom_fields.php:668 ../../mobile/operation/events.php:639
-msgid "None"
-msgstr "Ninguno"
-
-#: ../../operation/snmpconsole/snmp_browser.php:541
-#: ../../include/functions_snmp_browser.php:1534
-msgid "Create new policy"
-msgstr "Crear nueva política"
-
-#: ../../operation/snmpconsole/snmp_browser.php:552
-msgid "Create policy"
-msgstr "Crear política"
-
-#: ../../operation/snmpconsole/snmp_browser.php:639
-#: ../../enterprise/meta/monitoring/wizard/wizard.create_agent.php:40
-#: ../../enterprise/meta/monitoring/wizard/wizard.module.network.php:135
-#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:42
-#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:119
-#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:329
-#: ../../enterprise/meta/monitoring/wizard/wizard.module.web.php:113
-#: ../../enterprise/meta/monitoring/wizard/wizard.module.local.php:122
-msgid "Create module"
-msgstr "Crear módulo"
-
-#: ../../operation/snmpconsole/snmp_browser.php:643
-#: ../../operation/snmpconsole/snmp_view.php:1033
-#: ../../operation/snmpconsole/snmp_view.php:1046
-#: ../../operation/snmpconsole/snmp_view.php:1220
-#: ../../operation/messages/message_list.php:272
-#: ../../operation/messages/message_list.php:275
-#: ../../operation/agentes/pandora_networkmap.editor.php:600
-#: ../../operation/agentes/pandora_networkmap.php:801
-#: ../../operation/users/user_edit.php:1168
-#: ../../operation/events/events.build_table.php:983
-#: ../../operation/incidents/list_integriaims_incidents.php:554
-#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:197
-#: ../../godmode/netflow/nf_edit.php:195
-#: ../../godmode/netflow/nf_item_list.php:262
+#: ../../views/calendar/edit.php:120
+#: ../../views/calendar/special_days_edit.php:163
+#: ../../operation/reporting/reporting_viewer.php:311
+#: ../../operation/network/network_report.php:132
+#: ../../operation/snmpconsole/snmp_view.php:660
+#: ../../operation/events/events_list.php:1073
+#: ../../operation/agentes/datos_agente.php:218
+#: ../../operation/users/user_edit.php:777
+#: ../../operation/incidents/configure_integriaims_incident.php:378
+#: ../../include/functions_visual_map_editor.php:880
+#: ../../include/ajax/alert_list.ajax.php:551
+#: ../../include/class/ModuleTemplates.class.php:1012
+#: ../../include/class/ManageNetScanScripts.class.php:765
+#: ../../include/class/ExternalTools.class.php:392
+#: ../../include/class/ConfigPEN.class.php:697
+#: ../../include/class/ConfigPEN.class.php:698
+#: ../../include/class/CredentialStore.class.php:1246
+#: ../../include/class/NetworkMap.class.php:3069
+#: ../../include/functions_events.php:3645
+#: ../../include/functions_events.php:3725
+#: ../../enterprise/tools/ipam/ipam_network_location_config.php:145
+#: ../../enterprise/tools/ipam/ipam_massive.php:112
+#: ../../enterprise/tools/ipam/ipam_network.php:695
+#: ../../enterprise/tools/ipam/ipam_editor.php:359
+#: ../../enterprise/views/ncm/snippets/edit.php:106
+#: ../../enterprise/views/ncm/firmwares/edit.php:169
+#: ../../enterprise/views/ncm/vendors/edit.php:104
+#: ../../enterprise/views/ncm/templates/edit.php:315
+#: ../../enterprise/views/ncm/models/edit.php:103
+#: ../../enterprise/views/ipam/sites/edit.php:80
+#: ../../enterprise/operation/agentes/policy_view.php:208
+#: ../../enterprise/operation/agentes/policy_view.php:209
+#: ../../enterprise/operation/agentes/manage_transmap_creation_phases_data.php:87
+#: ../../enterprise/operation/agentes/collection_view.php:117
+#: ../../enterprise/operation/agentes/collection_view.php:118
+#: ../../enterprise/operation/agentes/manage_transmap_creation.php:264
+#: ../../enterprise/operation/agentes/manage_transmap_creation.php:532
+#: ../../enterprise/include/ajax/log_viewer.ajax.php:99
+#: ../../enterprise/include/ajax/servers.ajax.php:102
+#: ../../enterprise/include/ajax/servers.ajax.php:303
+#: ../../enterprise/include/class/SAPView.class.php:325
+#: ../../enterprise/include/class/AgentRepository.class.php:902
+#: ../../enterprise/include/class/LogSource.class.php:849
+#: ../../enterprise/include/class/Omnishell.class.php:646
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2240
+#: ../../enterprise/include/class/DeploymentCenter.class.php:1672
+#: ../../enterprise/include/class/DatabaseHA.class.php:891
+#: ../../enterprise/include/functions_HA_cluster.php:495
+#: ../../enterprise/meta/event/custom_events.php:213
+#: ../../enterprise/meta/include/functions_autoprovision.php:590
+#: ../../enterprise/meta/include/functions_autoprovision.php:791
+#: ../../enterprise/meta/advanced/metasetup.mail.php:133
+#: ../../enterprise/meta/advanced/metasetup.relations.php:278
+#: ../../enterprise/meta/advanced/metasetup.translate_string.php:231
+#: ../../enterprise/meta/advanced/collections.editor.php:149
+#: ../../enterprise/meta/advanced/collections.editor.php:223
+#: ../../enterprise/meta/advanced/metasetup.performance.php:170
+#: ../../enterprise/meta/advanced/cron_main.php:463
+#: ../../enterprise/meta/advanced/collections.data.php:157
+#: ../../enterprise/meta/advanced/collections.data.php:232
+#: ../../enterprise/meta/advanced/collections.data.php:273
+#: ../../enterprise/meta/advanced/collections.data.php:360
+#: ../../enterprise/meta/advanced/collections.data.php:361
+#: ../../enterprise/meta/advanced/metasetup.setup.php:375
+#: ../../enterprise/meta/advanced/metasetup.consoles.php:718
+#: ../../enterprise/meta/advanced/metasetup.password.php:157
+#: ../../enterprise/meta/advanced/metasetup.visual.php:1150
+#: ../../enterprise/meta/advanced/links.php:139
+#: ../../enterprise/extensions/translate_string.php:364
+#: ../../enterprise/extensions/vmware/vmware_view.php:1257
+#: ../../enterprise/extensions/vmware/vmware_view.php:1768
+#: ../../enterprise/godmode/setup/setup.php:438
+#: ../../enterprise/godmode/setup/setup.php:627
+#: ../../enterprise/godmode/setup/setup_history.php:524
+#: ../../enterprise/godmode/setup/setup_metaconsole.php:245
+#: ../../enterprise/godmode/setup/setup_log_collector.php:74
+#: ../../enterprise/godmode/setup/edit_skin.php:290
+#: ../../enterprise/godmode/setup/setup_module_library.php:62
+#: ../../enterprise/godmode/servers/manage_export_form.php:136
+#: ../../enterprise/godmode/servers/credential_boxes_satellite.php:251
+#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:357
+#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:889
+#: ../../enterprise/godmode/servers/manage_credential_boxes.php:90
+#: ../../enterprise/godmode/modules/configure_local_component.php:677
+#: ../../enterprise/godmode/modules/manage_inventory_modules.php:313
+#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:143
+#: ../../enterprise/godmode/services/services.service.php:919
+#: ../../enterprise/godmode/reporting/mysql_builder.php:143
+#: ../../enterprise/godmode/reporting/mysql_builder.php:155
+#: ../../enterprise/godmode/reporting/mysql_builder.php:164
+#: ../../enterprise/godmode/reporting/mysql_builder.php:242
+#: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:187
+#: ../../enterprise/godmode/reporting/graph_template_editor.php:267
+#: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:176
+#: ../../enterprise/godmode/reporting/reporting_builder.template_editor.php:129
+#: ../../enterprise/godmode/reporting/reporting_builder.template_editor.php:149
+#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor_form.php:84
+#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:408
+#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1169
+#: ../../enterprise/godmode/massive/massive_tags_edit_policy.php:190
+#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:343
+#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:590
+#: ../../enterprise/godmode/agentes/inventory_manager.php:183
+#: ../../enterprise/godmode/agentes/inventory_manager.php:253
+#: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:257
+#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:355
+#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:673
+#: ../../enterprise/godmode/agentes/collection_manager.php:153
+#: ../../enterprise/godmode/agentes/collection_manager.php:154
+#: ../../enterprise/godmode/agentes/collection_manager.php:268
+#: ../../enterprise/godmode/agentes/collection_manager.php:269
+#: ../../enterprise/godmode/agentes/collections.editor.php:182
+#: ../../enterprise/godmode/agentes/collections.editor.php:254
+#: ../../enterprise/godmode/agentes/collections.data.php:107
+#: ../../enterprise/godmode/agentes/collections.data.php:264
+#: ../../enterprise/godmode/agentes/collections.data.php:342
+#: ../../enterprise/godmode/agentes/collections.data.php:454
+#: ../../enterprise/godmode/agentes/collections.data.php:455
+#: ../../enterprise/godmode/agentes/plugins_manager.php:194
+#: ../../enterprise/godmode/agentes/plugins_manager.php:251
+#: ../../enterprise/godmode/alerts/alert_inventory_list.php:337
+#: ../../enterprise/godmode/policies/policy_modules.php:428
+#: ../../enterprise/godmode/policies/policy_external_alerts.php:364
+#: ../../enterprise/godmode/policies/configure_policy.php:136
+#: ../../enterprise/godmode/policies/policy_inventory_modules.php:261
+#: ../../enterprise/godmode/policies/policy_inventory_modules.php:338
+#: ../../enterprise/godmode/policies/policy_collections.php:222
+#: ../../enterprise/godmode/policies/policy_collections.php:294
+#: ../../extensions/files_repo/files_repo_form.php:99
+#: ../../godmode/setup/snmp_wizard.php:100
+#: ../../godmode/setup/setup_integria.php:632
+#: ../../godmode/setup/setup_visuals.php:1529 ../../godmode/setup/os.php:73
+#: ../../godmode/setup/os.php:142 ../../godmode/setup/news.php:233
+#: ../../godmode/setup/setup_auth.php:467
+#: ../../godmode/setup/setup_general.php:627
+#: ../../godmode/setup/performance.php:708
+#: ../../godmode/setup/setup_ehorus.php:179
+#: ../../godmode/setup/setup_netflow.php:81
+#: ../../godmode/setup/setup_websocket_engine.php:89
+#: ../../godmode/setup/links.php:129 ../../godmode/servers/plugin.php:198
+#: ../../godmode/servers/plugin.php:598
+#: ../../godmode/servers/modificar_server.php:100
+#: ../../godmode/update_manager/update_manager.setup.php:381
+#: ../../godmode/modules/manage_network_components_form.php:372
+#: ../../godmode/modules/manage_network_templates_form.php:178
+#: ../../godmode/modules/manage_nc_groups_form.php:90
+#: ../../godmode/category/edit_category.php:195
+#: ../../godmode/reporting/reporting_builder.main.php:56
+#: ../../godmode/reporting/visual_console_builder.data.php:232
+#: ../../godmode/reporting/create_container.php:330
+#: ../../godmode/reporting/visual_console_builder.elements.php:761
+#: ../../godmode/reporting/graph_builder.main.php:294
+#: ../../godmode/snmpconsole/snmp_alert.php:1052
+#: ../../godmode/snmpconsole/snmp_alert.php:1311
+#: ../../godmode/snmpconsole/snmp_filters.php:261
 #: ../../godmode/snmpconsole/snmp_filters.php:301
 #: ../../godmode/snmpconsole/snmp_filters.php:312
-#: ../../godmode/snmpconsole/snmp_alert.php:1271
-#: ../../godmode/snmpconsole/snmp_alert.php:1319
-#: ../../godmode/snmpconsole/snmp_alert.php:1562
-#: ../../godmode/reporting/visual_console_builder.elements.php:497
-#: ../../godmode/reporting/graphs.php:362
-#: ../../godmode/reporting/create_container.php:682
-#: ../../godmode/reporting/reporting_builder.php:1179
-#: ../../godmode/reporting/reporting_builder.php:1201
-#: ../../godmode/reporting/map_builder.php:512
-#: ../../godmode/reporting/map_builder.php:523
-#: ../../godmode/category/category.php:192
-#: ../../godmode/category/category.php:211
-#: ../../godmode/massive/massive_operations.php:391
-#: ../../godmode/massive/massive_standby_alerts.php:254
-#: ../../godmode/massive/massive_edit_plugins.php:576
-#: ../../godmode/massive/massive_enable_disable_alerts.php:226
-#: ../../godmode/setup/news.php:290 ../../godmode/setup/links.php:160
-#: ../../godmode/agentes/fields_manager.php:155
-#: ../../godmode/agentes/agent_template.php:259
-#: ../../godmode/agentes/planned_downtime.editor.php:1009
-#: ../../godmode/agentes/module_manager.php:1161
-#: ../../godmode/agentes/module_manager.php:1175
-#: ../../godmode/agentes/module_manager.php:1200
-#: ../../godmode/agentes/module_manager.php:1223
-#: ../../godmode/agentes/module_manager.php:1248
-#: ../../godmode/agentes/module_manager_editor_common.php:233
-#: ../../godmode/agentes/modificar_agente.php:929
-#: ../../godmode/agentes/agent_manager.php:237
-#: ../../godmode/groups/modu_group_list.php:273
-#: ../../godmode/groups/modu_group_list.php:276
-#: ../../godmode/groups/group_list.php:926
-#: ../../godmode/alerts/alert_list.list.php:1113
-#: ../../godmode/alerts/alert_commands.php:721
-#: ../../godmode/alerts/alert_commands.php:724
-#: ../../godmode/alerts/alert_templates.php:436
-#: ../../godmode/alerts/alert_actions.php:424
-#: ../../godmode/users/profile_list.php:439
-#: ../../godmode/users/configure_user.php:1635
-#: ../../godmode/users/configure_user.php:1930
-#: ../../godmode/events/event_filter.php:188
-#: ../../godmode/wizards/DiscoveryTaskList.class.php:664
-#: ../../godmode/wizards/DiscoveryTaskList.class.php:971
-#: ../../godmode/wizards/DiscoveryTaskList.class.php:997
-#: ../../godmode/wizards/DiscoveryTaskList.class.php:1010
-#: ../../godmode/wizards/DiscoveryTaskList.class.php:1021
-#: ../../godmode/modules/manage_network_components.php:864
-#: ../../godmode/modules/manage_nc_groups.php:275
-#: ../../godmode/modules/manage_network_templates.php:272
-#: ../../godmode/modules/manage_network_templates.php:287
-#: ../../godmode/tag/tag.php:395 ../../godmode/servers/plugin.php:884
-#: ../../enterprise/operation/agentes/transactional_map.php:414
-#: ../../enterprise/operation/agentes/transactional_map.php:478
-#: ../../enterprise/operation/agentes/manage_transmap_creation.php:268
-#: ../../enterprise/operation/services/services.list.php:649
-#: ../../enterprise/operation/services/services.list.php:743
-#: ../../enterprise/tools/ipam/ipam_network_location_config.php:287
-#: ../../enterprise/tools/ipam/ipam_supernet_config.php:1007
-#: ../../enterprise/tools/ipam/ipam_supernet_config.php:1145
-#: ../../enterprise/tools/ipam/ipam_vlan_config.php:726
-#: ../../enterprise/tools/ipam/ipam_vlan_config.php:856
-#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:412
-#: ../../enterprise/godmode/reporting/reporting_builder.template.php:619
-#: ../../enterprise/godmode/reporting/reporting_builder.template.php:638
-#: ../../enterprise/godmode/reporting/graph_template_wizard.php:447
-#: ../../enterprise/godmode/reporting/graph_template_list.php:234
-#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:837
-#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:214
-#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:638
-#: ../../enterprise/godmode/reporting/mysql_builder.php:104
-#: ../../enterprise/godmode/setup/setup_skins.php:147
-#: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:249
-#: ../../enterprise/godmode/agentes/inventory_manager.php:248
-#: ../../enterprise/godmode/agentes/manage_config_remote.php:203
-#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:93
-#: ../../enterprise/godmode/policies/policies.php:560
-#: ../../enterprise/godmode/policies/policies.php:581
-#: ../../enterprise/godmode/policies/policies.php:616
-#: ../../enterprise/godmode/policies/policy_external_alerts.php:513
-#: ../../enterprise/godmode/policies/policy_modules.php:1532
-#: ../../enterprise/godmode/policies/policy_modules.php:1548
-#: ../../enterprise/godmode/policies/policy_modules.php:1599
-#: ../../enterprise/godmode/policies/policy_inventory_modules.php:328
-#: ../../enterprise/godmode/policies/policy_inventory_modules.php:333
-#: ../../enterprise/godmode/policies/policy_agents.php:401
-#: ../../enterprise/godmode/policies/policy_agents.php:724
-#: ../../enterprise/godmode/policies/policy_agents.php:1040
-#: ../../enterprise/godmode/policies/policy_agents.php:1155
-#: ../../enterprise/godmode/policies/policy_agents.php:1304
-#: ../../enterprise/godmode/policies/policy_agents.php:1519
-#: ../../enterprise/godmode/policies/policy_alerts.php:518
-#: ../../enterprise/godmode/policies/policy_queue.php:755
-#: ../../enterprise/godmode/policies/policy_queue.php:789
-#: ../../enterprise/godmode/policies/policy_queue.php:805
-#: ../../enterprise/godmode/alerts/alert_inventory_list.php:415
-#: ../../enterprise/godmode/modules/local_components.php:694
-#: ../../enterprise/godmode/modules/manage_inventory_modules.php:316
-#: ../../enterprise/godmode/servers/credential_boxes_satellite.php:287
-#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:349
-#: ../../enterprise/include/functions_services.php:2022
-#: ../../enterprise/include/functions_tasklist.php:610
-#: ../../enterprise/include/functions_tasklist.php:645
-#: ../../enterprise/include/class/Omnishell.class.php:504
-#: ../../enterprise/include/class/Omnishell.class.php:1155
-#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3044
-#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3356
-#: ../../enterprise/include/class/AgentRepository.class.php:792
-#: ../../enterprise/include/class/DeploymentCenter.class.php:1558
-#: ../../enterprise/include/class/LogSource.class.php:892
-#: ../../enterprise/include/class/ManageBackups.class.php:443
-#: ../../enterprise/include/lib/Metaconsole/Node.php:1242
-#: ../../enterprise/include/ajax/ipam.ajax.php:507
-#: ../../enterprise/include/ajax/ipam.ajax.php:585
-#: ../../enterprise/include/ajax/transactional.ajax.php:118
-#: ../../enterprise/include/ajax/transactional.ajax.php:207
-#: ../../enterprise/meta/advanced/policymanager.queue.php:349
-#: ../../enterprise/meta/advanced/metasetup.relations.php:584
-#: ../../enterprise/meta/advanced/links.php:173
-#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:566
-#: ../../enterprise/meta/monitoring/wizard/wizard.php:143
-#: ../../enterprise/meta/monitoring/custom_fields_view.php:1150
-#: ../../include/functions_container.php:190
-#: ../../include/functions_container.php:324
-#: ../../include/functions_events.php:3785
-#: ../../include/functions_profile.php:278
-#: ../../include/class/WelcomeWindow.class.php:171
-#: ../../include/class/CredentialStore.class.php:1288
-#: ../../include/class/TreeGroupEdition.class.php:166
-#: ../../include/class/ConfigPEN.class.php:666
-#: ../../include/class/ModuleTemplates.class.php:918
-#: ../../include/class/ModuleTemplates.class.php:933
-#: ../../include/lib/Dashboard/Widgets/events_list.php:680
-#: ../../include/functions_filemanager.php:715
-#: ../../update_manager_client/views/offline.php:73
-#: ../../update_manager_client/views/online.php:123
-#: ../../update_manager_client/views/online.php:164
-#: ../../extensions/files_repo/files_repo_list.php:146
-#: ../../views/calendar/special_days.php:438 ../../views/dashboard/list.php:185
-msgid "Are you sure?"
-msgstr "¿Estás seguro?"
+#: ../../godmode/tag/edit_tag.php:272
+#: ../../godmode/events/event_edit_filter.php:673
+#: ../../godmode/events/event_responses.editor.php:227
+#: ../../godmode/events/custom_events.php:169
+#: ../../godmode/netflow/nf_edit_form.php:269
+#: ../../godmode/agentes/configure_field.php:138
+#: ../../godmode/agentes/status_monitor_custom_fields.php:206
+#: ../../godmode/agentes/agent_manager.php:924
+#: ../../godmode/agentes/module_manager_editor.php:770
+#: ../../godmode/agentes/planned_downtime.editor.php:867
+#: ../../godmode/agentes/planned_downtime.list.php:761
+#: ../../godmode/agentes/planned_downtime.list.php:806
+#: ../../godmode/agentes/agent_conf_gis.php:134
+#: ../../godmode/agentes/agent_template.php:260
+#: ../../godmode/alerts/alert_list.list.php:161
+#: ../../godmode/alerts/alert_list.list.php:168
+#: ../../godmode/alerts/alert_list.list.php:920
+#: ../../godmode/alerts/configure_alert_command.php:384
+#: ../../godmode/alerts/configure_alert_action.php:387
+#: ../../godmode/users/configure_user.php:1482
+#: ../../godmode/users/configure_profile.php:408
+#: ../../godmode/groups/configure_group.php:276
+#: ../../godmode/groups/configure_modu_group.php:83
+msgid "Update"
+msgstr "Actualizar"
 
-#: ../../operation/snmpconsole/snmp_browser.php:644
-msgid "Are you sure you want add module?"
-msgstr "¿Está seguro de que quiere añadir el módulo?"
+#: ../../views/calendar/special_days.php:41
+#: ../../include/class/CalendarManager.class.php:669
+msgid "Special days"
+msgstr "Días especiales"
 
-#: ../../operation/snmpconsole/snmp_browser.php:645
-#: ../../operation/agentes/pandora_networkmap.editor.php:602
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2553
-#: ../../godmode/massive/massive_operations.php:392
-#: ../../godmode/setup/setup_general.php:778
-#: ../../godmode/setup/setup_general.php:796
-#: ../../enterprise/operation/agentes/wux_console_view.php:424
-#: ../../enterprise/operation/agentes/ux_console_view.php:186
-#: ../../enterprise/operation/agentes/ux_console_view.php:384
-#: ../../enterprise/godmode/reporting/reporting_builder.global.php:428
-#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2557
-#: ../../enterprise/godmode/services/services.service.php:967
-#: ../../enterprise/include/functions_reporting.php:1882
-#: ../../enterprise/include/functions_reporting.php:2929
-#: ../../enterprise/include/functions_reporting.php:3185
-#: ../../enterprise/include/functions_reporting.php:3917
-#: ../../enterprise/include/functions_reporting.php:4186
-#: ../../enterprise/include/functions_reporting.php:4832
-#: ../../enterprise/include/functions_reporting.php:6155
-#: ../../enterprise/include/functions_reporting.php:6193
-#: ../../enterprise/include/functions_services.php:2080
-#: ../../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:898
-#: ../../enterprise/include/class/DeploymentCenter.class.php:1668
-#: ../../enterprise/include/class/DeploymentCenter.class.php:1720
-#: ../../enterprise/include/class/LogSource.class.php:844
-#: ../../enterprise/include/class/ManageBackups.class.php:292
-#: ../../enterprise/include/class/ManageBackups.class.php:445
-#: ../../enterprise/include/functions_ux_console.php:473
-#: ../../enterprise/include/functions_reporting_csv.php:1539
-#: ../../enterprise/include/functions_reporting_csv.php:1585
-#: ../../enterprise/include/functions_reporting_csv.php:1903
-#: ../../include/functions_db.php:1933
-#: ../../include/functions_reporting_html.php:659
-#: ../../include/functions_reporting_html.php:854
-#: ../../include/functions_reporting_html.php:3252
-#: ../../include/functions_reporting_html.php:4551
-#: ../../include/class/WelcomeWindow.class.php:173
-#: ../../include/class/CredentialStore.class.php:1241
-#: ../../include/class/ConfigPEN.class.php:668
-#: ../../include/class/ConfigPEN.class.php:692
-#: ../../include/class/HelpFeedBack.class.php:369
-#: ../../include/class/AgentWizard.class.php:6008
-#: ../../include/class/ModuleTemplates.class.php:1381
-#: ../../include/lib/Dashboard/Widgets/maps_status.php:351
-#: ../../extensions/module_groups.php:53
-msgid "OK"
-msgstr "Aceptar"
+#: ../../views/calendar/special_days.php:81
+msgid "iCalendar(.ics) file"
+msgstr "Archivo iCalendar (.ics)"
 
-#: ../../operation/snmpconsole/snmp_view.php:155
-#: ../../operation/reporting/graph_viewer.php:57
-#: ../../operation/reporting/graph_viewer.php:65
-#: ../../operation/messages/message_list.php:113
-#: ../../operation/messages/message_list.php:135
-#: ../../operation/gis_maps/gis_map.php:86
-#: ../../operation/incidents/list_integriaims_incidents.php:295
-#: ../../godmode/netflow/nf_edit.php:104 ../../godmode/netflow/nf_edit.php:137
-#: ../../godmode/netflow/nf_item_list.php:120
-#: ../../godmode/netflow/nf_item_list.php:148
-#: ../../godmode/snmpconsole/snmp_filters.php:180
-#: ../../godmode/snmpconsole/snmp_alert.php:650
-#: ../../godmode/reporting/graphs.php:150 ../../godmode/reporting/graphs.php:162
-#: ../../godmode/reporting/graphs.php:213
-#: ../../godmode/reporting/reporting_builder.php:668
-#: ../../godmode/reporting/map_builder.php:209
-#: ../../godmode/massive/massive_delete_alerts.php:201
-#: ../../godmode/massive/massive_delete_action_alerts.php:170
-#: ../../godmode/massive/massive_delete_modules.php:162
-#: ../../godmode/setup/news.php:120 ../../godmode/setup/gis.php:61
-#: ../../godmode/setup/links.php:76
-#: ../../godmode/agentes/planned_downtime.list.php:242
-#: ../../godmode/alerts/alert_commands.php:604
-#: ../../godmode/alerts/alert_list.php:232
-#: ../../godmode/alerts/alert_list.php:339
-#: ../../godmode/alerts/alert_templates.php:252
-#: ../../godmode/alerts/alert_actions.php:205
-#: ../../godmode/users/profile_list.php:133
-#: ../../godmode/users/configure_user.php:137
-#: ../../godmode/users/configure_user.php:157
-#: ../../godmode/users/user_list.php:293 ../../godmode/users/user_list.php:340
-#: ../../godmode/events/event_filter.php:69
-#: ../../godmode/events/event_filter.php:96
-#: ../../godmode/modules/manage_network_components.php:552
-#: ../../godmode/modules/manage_nc_groups.php:152
-#: ../../enterprise/operation/agentes/transactional_map.php:182
-#: ../../enterprise/operation/agentes/manage_transmap_creation.php:82
-#: ../../enterprise/tools/ipam/ipam_network_location_config.php:87
-#: ../../enterprise/tools/ipam/ipam_action.php:102
-#: ../../enterprise/tools/ipam/ipam_supernet_config.php:152
-#: ../../enterprise/tools/ipam/ipam_vlan_config.php:132
-#: ../../enterprise/godmode/reporting/reporting_builder.template.php:424
-#: ../../enterprise/godmode/reporting/reporting_builder.template.php:442
-#: ../../enterprise/godmode/reporting/graph_template_list.php:155
-#: ../../enterprise/godmode/reporting/graph_template_list.php:182
-#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:129
-#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:157
-#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:165
-#: ../../enterprise/godmode/setup/setup_metaconsole.php:138
-#: ../../enterprise/godmode/alerts/alert_inventory_list.php:68
-#: ../../enterprise/godmode/alerts/alert_inventory_list.php:118
-#: ../../enterprise/godmode/modules/local_components.php:417
-#: ../../enterprise/include/class/DatabaseHA.class.php:1057
-#: ../../enterprise/meta/advanced/metasetup.relations.php:86
-#: ../../enterprise/meta/advanced/links.php:84
-#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:288
-#: ../../include/class/ConfigPEN.class.php:486
-#: ../../extensions/files_repo.php:184 ../../views/dashboard/list.php:53
-msgid "Successfully deleted"
-msgstr "Eliminado correctamente"
+#: ../../views/calendar/special_days.php:92
+#: ../../views/calendar/special_days.php:358
+#: ../../views/calendar/special_days_edit.php:116
+#: ../../include/functions_html.php:2258
+#: ../../enterprise/include/functions_reporting.php:1731
+#: ../../enterprise/include/functions_reporting.php:2462
+#: ../../enterprise/include/functions_reporting.php:2780
+#: ../../enterprise/include/functions_reporting.php:3405
+#: ../../enterprise/include/functions_reporting.php:4381
+#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:95
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1848
+#: ../../godmode/reporting/reporting_builder.item_editor.php:1348
+#: ../../godmode/alerts/alert_templates.php:64
+msgid "Monday"
+msgstr "Lunes"
 
-#: ../../operation/snmpconsole/snmp_view.php:156
-#: ../../operation/messages/message_list.php:114
-#: ../../operation/gis_maps/gis_map.php:87
-#: ../../operation/agentes/pandora_networkmap.php:547
-#: ../../operation/incidents/list_integriaims_incidents.php:296
-#: ../../godmode/reporting/reporting_builder.php:669
-#: ../../godmode/massive/massive_delete_alerts.php:202
-#: ../../godmode/massive/massive_delete_action_alerts.php:171
-#: ../../godmode/setup/news.php:121 ../../godmode/setup/gis.php:59
-#: ../../godmode/alerts/alert_commands.php:605
-#: ../../godmode/alerts/alert_list.php:233
-#: ../../godmode/alerts/alert_list.php:340
-#: ../../godmode/alerts/alert_templates.php:253
-#: ../../godmode/alerts/alert_actions.php:206
-#: ../../godmode/users/configure_user.php:138
-#: ../../godmode/modules/manage_network_components.php:553
-#: ../../enterprise/operation/agentes/transactional_map.php:183
-#: ../../enterprise/operation/agentes/manage_transmap_creation.php:83
-#: ../../enterprise/tools/ipam/ipam_action.php:100
-#: ../../enterprise/tools/ipam/ipam_supernet_config.php:150
-#: ../../enterprise/tools/ipam/ipam_vlan_config.php:130
-#: ../../enterprise/godmode/reporting/reporting_builder.template.php:425
-#: ../../enterprise/godmode/reporting/reporting_builder.template.php:443
-#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:166
-#: ../../enterprise/godmode/setup/setup_metaconsole.php:139
-#: ../../enterprise/godmode/policies/policy_external_alerts.php:147
-#: ../../enterprise/godmode/policies/policy_external_alerts.php:174
-#: ../../enterprise/godmode/policies/policy_modules.php:1300
-#: ../../enterprise/godmode/policies/policy_collections.php:100
-#: ../../enterprise/godmode/policies/policy_inventory_modules.php:166
-#: ../../enterprise/godmode/policies/policy_agents.php:104
-#: ../../enterprise/godmode/policies/policy_agents.php:126
-#: ../../enterprise/godmode/policies/policy_alerts.php:256
-#: ../../enterprise/godmode/policies/policy_alerts.php:302
-#: ../../enterprise/godmode/alerts/alert_inventory_list.php:69
-#: ../../enterprise/godmode/alerts/alert_inventory_list.php:119
-#: ../../enterprise/godmode/modules/local_components.php:418
-#: ../../extensions/files_repo.php:184 ../../views/dashboard/list.php:54
-msgid "Could not be deleted"
-msgstr "No se pudo eliminar"
+#: ../../views/calendar/special_days.php:93
+#: ../../views/calendar/special_days.php:362
+#: ../../views/calendar/special_days_edit.php:117
+#: ../../include/functions_html.php:2259
+#: ../../enterprise/include/functions_reporting.php:1732
+#: ../../enterprise/include/functions_reporting.php:2463
+#: ../../enterprise/include/functions_reporting.php:2781
+#: ../../enterprise/include/functions_reporting.php:3406
+#: ../../enterprise/include/functions_reporting.php:4382
+#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:96
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1856
+#: ../../godmode/reporting/reporting_builder.item_editor.php:1356
+#: ../../godmode/alerts/alert_templates.php:65
+msgid "Tuesday"
+msgstr "Martes"
 
-#: ../../operation/snmpconsole/snmp_view.php:174
-#: ../../godmode/netflow/nf_edit_form.php:139
-#: ../../godmode/snmpconsole/snmp_filters.php:110
-#: ../../godmode/snmpconsole/snmp_alert.php:419
-#: ../../godmode/massive/massive_edit_modules.php:184
-#: ../../godmode/setup/news.php:107 ../../godmode/setup/gis.php:39
-#: ../../godmode/setup/links.php:63
-#: ../../godmode/agentes/status_monitor_custom_fields.php:57
-#: ../../godmode/agentes/planned_downtime.editor.php:418
-#: ../../godmode/agentes/configurar_agente.php:1170
-#: ../../godmode/alerts/configure_alert_command.php:144
-#: ../../godmode/alerts/configure_alert_template.php:554
-#: ../../godmode/alerts/alert_list.php:94 ../../godmode/alerts/alert_list.php:312
-#: ../../godmode/alerts/alert_templates.php:156
-#: ../../godmode/users/profile_list.php:252
-#: ../../godmode/events/event_edit_filter.php:215
-#: ../../godmode/modules/manage_nc_groups.php:118
-#: ../../enterprise/operation/agentes/transactional_map.php:166
-#: ../../enterprise/tools/ipam/ipam_network_location_config.php:71
-#: ../../enterprise/tools/ipam/ipam_action.php:255
-#: ../../enterprise/tools/ipam/ipam_massive.php:47
-#: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:69
-#: ../../enterprise/godmode/reporting/reporting_builder.template_editor.php:82
-#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:122
-#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:398
-#: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:111
-#: ../../enterprise/godmode/policies/policy_modules.php:1236
-#: ../../enterprise/godmode/alerts/alert_inventory_builder.php:132
-#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:329
-#: ../../enterprise/include/class/NetworkConfigManager.class.php:1784
-#: ../../enterprise/include/class/NetworkConfigManager.class.php:1874
-#: ../../enterprise/include/class/NetworkConfigManager.class.php:1969
-#: ../../enterprise/include/class/NetworkConfigManager.class.php:2063
-#: ../../enterprise/include/class/NetworkConfigManager.class.php:2688
-#: ../../enterprise/meta/advanced/links.php:70
-#: ../../include/functions_planned_downtimes.php:124
-#: ../../include/functions_alerts.php:2738
-#: ../../include/class/CalendarManager.class.php:487
-#: ../../include/class/CalendarManager.class.php:840
-msgid "Successfully updated"
-msgstr "Actualizado correctamente"
+#: ../../views/calendar/special_days.php:94
+#: ../../views/calendar/special_days.php:366
+#: ../../views/calendar/special_days_edit.php:118
+#: ../../include/functions_html.php:2260
+#: ../../enterprise/include/functions_reporting.php:1733
+#: ../../enterprise/include/functions_reporting.php:2464
+#: ../../enterprise/include/functions_reporting.php:2782
+#: ../../enterprise/include/functions_reporting.php:3407
+#: ../../enterprise/include/functions_reporting.php:4383
+#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:97
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1864
+#: ../../godmode/reporting/reporting_builder.item_editor.php:1364
+#: ../../godmode/alerts/alert_templates.php:66
+msgid "Wednesday"
+msgstr "Miércoles"
 
-#: ../../operation/snmpconsole/snmp_view.php:175
-#: ../../operation/agentes/pandora_networkmap.php:216
-#: ../../operation/agentes/pandora_networkmap.php:508
-#: ../../godmode/setup/gis.php:41
-#: ../../godmode/agentes/status_monitor_custom_fields.php:57
-#: ../../godmode/agentes/planned_downtime.editor.php:408
-#: ../../godmode/alerts/configure_alert_command.php:145
-#: ../../godmode/alerts/configure_alert_template.php:555
-#: ../../godmode/alerts/alert_list.php:95 ../../godmode/alerts/alert_list.php:313
-#: ../../godmode/alerts/alert_templates.php:157
-#: ../../godmode/modules/manage_network_components.php:525
-#: ../../enterprise/operation/agentes/transactional_map.php:160
-#: ../../enterprise/tools/ipam/ipam_action.php:253
-#: ../../enterprise/tools/ipam/ipam_massive.php:48
-#: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:70
-#: ../../enterprise/godmode/reporting/reporting_builder.template_editor.php:83
-#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:123
-#: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:112
-#: ../../enterprise/godmode/policies/policies.php:212
-#: ../../enterprise/godmode/policies/policy_modules.php:1237
-#: ../../enterprise/godmode/alerts/alert_inventory_builder.php:133
-#: ../../enterprise/godmode/modules/local_components.php:393
-#: ../../enterprise/godmode/servers/credential_boxes_satellite.php:112
-#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:330
-#: ../../enterprise/include/ajax/servers.ajax.php:331
-#: ../../include/functions_planned_downtimes.php:122
-#: ../../include/functions_alerts.php:2739
-msgid "Could not be updated"
-msgstr "No se pudo actualizar"
+#: ../../views/calendar/special_days.php:95
+#: ../../views/calendar/special_days.php:370
+#: ../../views/calendar/special_days_edit.php:119
+#: ../../include/functions_html.php:2261
+#: ../../enterprise/include/functions_reporting.php:1734
+#: ../../enterprise/include/functions_reporting.php:2465
+#: ../../enterprise/include/functions_reporting.php:2783
+#: ../../enterprise/include/functions_reporting.php:3408
+#: ../../enterprise/include/functions_reporting.php:4384
+#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:98
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1872
+#: ../../godmode/reporting/reporting_builder.item_editor.php:1372
+#: ../../godmode/alerts/alert_templates.php:67
+msgid "Thursday"
+msgstr "Jueves"
 
-#: ../../operation/snmpconsole/snmp_view.php:228
-#: ../../operation/snmpconsole/snmp_view.php:1263
-#: ../../operation/agentes/alerts_status.functions.php:96
-#: ../../godmode/alerts/alert_list.list.php:138
-#: ../../mobile/operation/alerts.php:67
-msgid "Not fired"
-msgstr "No disparadas"
+#: ../../views/calendar/special_days.php:96
+#: ../../views/calendar/special_days.php:374
+#: ../../views/calendar/special_days_edit.php:120
+#: ../../include/functions_html.php:2262
+#: ../../enterprise/include/functions_reporting.php:1735
+#: ../../enterprise/include/functions_reporting.php:2466
+#: ../../enterprise/include/functions_reporting.php:2784
+#: ../../enterprise/include/functions_reporting.php:3409
+#: ../../enterprise/include/functions_reporting.php:4385
+#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:99
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1880
+#: ../../godmode/reporting/reporting_builder.item_editor.php:1380
+#: ../../godmode/alerts/alert_templates.php:68
+msgid "Friday"
+msgstr "Viernes"
 
-#: ../../operation/snmpconsole/snmp_view.php:229
-#: ../../operation/snmpconsole/snmp_view.php:1254
-#: ../../operation/agentes/alerts_status.functions.php:95
-#: ../../godmode/alerts/alert_list.list.php:137
-#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2904
-#: ../../include/functions_reporting_html.php:2310
-#: ../../include/functions_reporting_html.php:3135
-#: ../../include/functions_reporting_html.php:3136
-#: ../../mobile/operation/alerts.php:66
-msgid "Fired"
-msgstr "Disparada"
+#: ../../views/calendar/special_days.php:97
+#: ../../views/calendar/special_days.php:378
+#: ../../views/calendar/special_days_edit.php:121
+#: ../../include/functions_html.php:2263
+#: ../../enterprise/include/functions_reporting.php:1736
+#: ../../enterprise/include/functions_reporting.php:2467
+#: ../../enterprise/include/functions_reporting.php:2785
+#: ../../enterprise/include/functions_reporting.php:3410
+#: ../../enterprise/include/functions_reporting.php:4386
+#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:100
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1888
+#: ../../godmode/reporting/reporting_builder.item_editor.php:1388
+#: ../../godmode/alerts/alert_templates.php:69
+msgid "Saturday"
+msgstr "Sábado"
 
-#: ../../operation/snmpconsole/snmp_view.php:543
-#: ../../operation/snmpconsole/snmp_view.php:886
-#: ../../operation/snmpconsole/snmp_view.php:1246
-#: ../../operation/agentes/estado_monitores.php:522
-#: ../../operation/events/events.build_table.php:253
-#: ../../godmode/agentes/configurar_agente.php:733
-#: ../../godmode/alerts/configure_alert_template.php:1552
-#: ../../godmode/events/custom_events.php:105
-#: ../../enterprise/godmode/policies/policy_external_alerts.php:382
-#: ../../enterprise/godmode/alerts/alert_inventory_list.php:362
-#: ../../enterprise/include/class/AlertCorrelationManager.class.php:4323
-#: ../../enterprise/meta/include/functions_events_meta.php:94
-#: ../../include/functions.php:4093 ../../include/functions_snmp.php:324
-#: ../../include/functions_events.php:200 ../../include/functions_events.php:263
-#: ../../include/functions_events.php:2695
-#: ../../include/functions_events.php:6728
-msgid "Alert"
-msgstr "Alerta"
+#: ../../views/calendar/special_days.php:98
+#: ../../views/calendar/special_days.php:382
+#: ../../views/calendar/special_days_edit.php:122
+#: ../../include/functions_html.php:2257
+#: ../../enterprise/include/functions_reporting.php:1737
+#: ../../enterprise/include/functions_reporting.php:2468
+#: ../../enterprise/include/functions_reporting.php:2786
+#: ../../enterprise/include/functions_reporting.php:3411
+#: ../../enterprise/include/functions_reporting.php:4387
+#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:101
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1896
+#: ../../godmode/reporting/reporting_builder.item_editor.php:1396
+#: ../../godmode/alerts/alert_templates.php:70
+msgid "Sunday"
+msgstr "Domingo"
 
-#: ../../operation/snmpconsole/snmp_view.php:549
-#: ../../operation/snmpconsole/snmp_view.php:578
-#: ../../operation/snmpconsole/snmp_view.php:586
-#: ../../operation/snmpconsole/snmp_view.php:902
-#: ../../operation/agentes/estado_monitores.php:520
-#: ../../operation/agentes/estado_monitores.php:565
-#: ../../operation/agentes/alerts_status.functions.php:94
-#: ../../operation/agentes/alerts_status.functions.php:100
-#: ../../operation/agentes/alerts_status.functions.php:114
-#: ../../operation/agentes/alerts_status.functions.php:131
-#: ../../operation/agentes/alerts_status.functions.php:134
-#: ../../operation/agentes/estado_agente.php:281
-#: ../../operation/agentes/status_monitor.php:655 ../../operation/tree.php:210
-#: ../../operation/tree.php:267 ../../operation/events/events.php:1080
-#: ../../operation/events/events.php:1149 ../../operation/events/events.php:1258
-#: ../../operation/events/events.php:1310 ../../operation/events/events.php:2315
-#: ../../operation/events/events_list.php:827
-#: ../../operation/events/events_list.php:839
-#: ../../operation/events/events_list.php:948
-#: ../../operation/events/events_list.php:960
-#: ../../operation/events/events.build_table.php:626
-#: ../../operation/heatmap.php:115
-#: ../../operation/incidents/list_integriaims_incidents.php:326
-#: ../../operation/incidents/list_integriaims_incidents.php:337
-#: ../../operation/incidents/list_integriaims_incidents.php:354
-#: ../../operation/incidents/list_integriaims_incidents.php:365
-#: ../../godmode/reporting/reporting_builder.item_editor.php:1528
-#: ../../godmode/reporting/reporting_builder.item_editor.php:1546
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2007
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2826
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2853
-#: ../../godmode/reporting/reporting_builder.item_editor.php:3471
-#: ../../godmode/reporting/reporting_builder.item_editor.php:3537
-#: ../../godmode/reporting/reporting_builder.item_editor.php:3559
-#: ../../godmode/reporting/reporting_builder.item_editor.php:3617
-#: ../../godmode/reporting/visual_console_builder.wizard.php:340
-#: ../../godmode/reporting/visual_console_builder.wizard.php:354
-#: ../../godmode/reporting/create_container.php:546
-#: ../../godmode/reporting/reporting_builder.list_items.php:209
-#: ../../godmode/reporting/reporting_builder.list_items.php:211
-#: ../../godmode/reporting/reporting_builder.list_items.php:213
-#: ../../godmode/reporting/reporting_builder.list_items.php:235
-#: ../../godmode/reporting/reporting_builder.list_items.php:245
-#: ../../godmode/reporting/reporting_builder.list_items.php:255
-#: ../../godmode/massive/massive_delete_agents.php:221
-#: ../../godmode/massive/massive_delete_agents.php:235
-#: ../../godmode/massive/massive_edit_agents.php:543
-#: ../../godmode/massive/massive_edit_agents.php:556
-#: ../../godmode/massive/massive_edit_modules.php:311
-#: ../../godmode/massive/massive_edit_modules.php:358
-#: ../../godmode/massive/massive_edit_modules.php:396
-#: ../../godmode/massive/massive_edit_modules.php:482
-#: ../../godmode/massive/massive_copy_modules.php:127
-#: ../../godmode/massive/massive_copy_modules.php:287
-#: ../../godmode/massive/massive_delete_modules.php:327
-#: ../../godmode/massive/massive_delete_modules.php:374
-#: ../../godmode/massive/massive_delete_modules.php:429
-#: ../../godmode/massive/massive_delete_modules.php:450
-#: ../../godmode/setup/setup_visuals.php:950
-#: ../../godmode/setup/gis_step_2.php:217
-#: ../../godmode/alerts/alert_list.list.php:121
-#: ../../godmode/alerts/alert_list.list.php:127
-#: ../../godmode/alerts/alert_list.list.php:136
-#: ../../godmode/alerts/alert_list.list.php:145
-#: ../../godmode/alerts/alert_list.php:460
-#: ../../godmode/alerts/alert_list.php:509
-#: ../../godmode/alerts/alert_list.php:523
-#: ../../godmode/alerts/alert_templates.php:308
-#: ../../godmode/events/event_edit_filter.php:323
-#: ../../godmode/events/event_edit_filter.php:338
-#: ../../godmode/events/event_edit_filter.php:601
-#: ../../godmode/modules/manage_network_components.php:653
-#: ../../godmode/modules/manage_network_templates_form.php:303
-#: ../../enterprise/operation/snmpconsole/snmp_view.php:33
-#: ../../enterprise/operation/agentes/agent_inventory.php:74
-#: ../../enterprise/operation/agentes/tag_view.php:145
-#: ../../enterprise/operation/agentes/tag_view.php:171
-#: ../../enterprise/operation/agentes/tag_view.php:237
-#: ../../enterprise/operation/agentes/tag_view.php:301
-#: ../../enterprise/operation/agentes/tag_view.php:304
-#: ../../enterprise/operation/agentes/tag_view.php:390
-#: ../../enterprise/operation/inventory/inventory.php:75
-#: ../../enterprise/operation/inventory/inventory.php:76
-#: ../../enterprise/operation/inventory/inventory.php:155
-#: ../../enterprise/operation/inventory/inventory.php:156
-#: ../../enterprise/operation/inventory/inventory.php:318
-#: ../../enterprise/operation/inventory/inventory.php:346
-#: ../../enterprise/operation/inventory/inventory.php:355
-#: ../../enterprise/operation/log/log_viewer.php:620
-#: ../../enterprise/operation/log/log_viewer.php:638
-#: ../../enterprise/operation/log/log_viewer.php:688
-#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:187
-#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:612
-#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:638
-#: ../../enterprise/godmode/reporting/reporting_builder.global.php:143
-#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:243
-#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:241
-#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2022
-#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2825
-#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2852
-#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:131
-#: ../../enterprise/godmode/setup/setup_acl.php:487
-#: ../../enterprise/godmode/setup/setup_acl.php:504
-#: ../../enterprise/godmode/setup/setup_acl.php:521
-#: ../../enterprise/godmode/setup/setup_acl.php:753
-#: ../../enterprise/godmode/setup/setup_acl.php:761
-#: ../../enterprise/godmode/setup/setup_acl.php:772
-#: ../../enterprise/godmode/setup/setup_acl.php:813
-#: ../../enterprise/godmode/setup/setup_acl.php:844
-#: ../../enterprise/godmode/agentes/collections.data.php:506
-#: ../../enterprise/godmode/policies/policy_external_alerts.php:358
-#: ../../enterprise/godmode/policies/policy_agents.php:833
-#: ../../enterprise/godmode/policies/policy_queue.php:588
-#: ../../enterprise/godmode/policies/policy_queue.php:593
-#: ../../enterprise/godmode/policies/policy_queue.php:604
-#: ../../enterprise/godmode/policies/policy_queue.php:677
-#: ../../enterprise/godmode/alerts/alert_inventory_builder.php:264
-#: ../../enterprise/godmode/modules/local_components.php:541
-#: ../../enterprise/godmode/modules/local_components.php:567
-#: ../../enterprise/godmode/modules/local_components.php:592
-#: ../../enterprise/include/functions_metaconsole.php:960
-#: ../../enterprise/include/functions_metaconsole.php:961
-#: ../../enterprise/include/functions_metaconsole.php:1309
-#: ../../enterprise/include/class/ManageBackups.class.php:191
-#: ../../enterprise/include/functions_ipam.php:1684
-#: ../../enterprise/include/functions_ipam.php:1729
-#: ../../enterprise/meta/advanced/policymanager.queue.php:212
-#: ../../enterprise/meta/advanced/policymanager.queue.php:217
-#: ../../enterprise/meta/advanced/policymanager.queue.php:228
-#: ../../enterprise/meta/advanced/policymanager.queue.php:304
-#: ../../enterprise/meta/advanced/metasetup.visual.php:290
-#: ../../enterprise/meta/advanced/metasetup.relations.php:419
-#: ../../enterprise/meta/advanced/collections.data.php:412
-#: ../../enterprise/meta/include/functions_users_meta.php:87
-#: ../../enterprise/meta/include/functions_users_meta.php:98
-#: ../../enterprise/meta/include/functions_wizard_meta.php:320
-#: ../../enterprise/meta/include/functions_html_meta.php:75
-#: ../../enterprise/meta/include/ajax/wizard.ajax.php:400
-#: ../../enterprise/meta/include/ajax/wizard.ajax.php:444
-#: ../../enterprise/meta/monitoring/wizard/wizard.php:148
-#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:218
-#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:413
-#: ../../enterprise/meta/monitoring/custom_fields_view.php:193
-#: ../../enterprise/meta/monitoring/custom_fields_view.php:209
-#: ../../enterprise/meta/monitoring/custom_fields_view.php:272
-#: ../../enterprise/meta/monitoring/custom_fields_view.php:762
-#: ../../general/subselect_data_module.php:62 ../../include/functions.php:1071
-#: ../../include/functions.php:1331 ../../include/functions_reporting.php:2831
-#: ../../include/functions_reporting.php:2928
-#: ../../include/functions_events.php:6437
-#: ../../include/functions_events.php:7043 ../../include/functions_html.php:915
-#: ../../include/functions_html.php:1566 ../../include/functions_users.php:416
-#: ../../include/functions_users.php:674 ../../include/functions_groupview.php:95
-#: ../../include/functions_modules.php:3542
-#: ../../include/functions_modules.php:3544
-#: ../../include/class/CredentialStore.class.php:535
-#: ../../include/class/AuditLog.class.php:203
-#: ../../include/class/AuditLog.class.php:213
-#: ../../include/lib/Dashboard/Widgets/system_group_status.php:399
-#: ../../include/lib/Dashboard/Widgets/tree_view.php:384
-#: ../../include/lib/Dashboard/Widgets/tree_view.php:417
-#: ../../include/lib/Dashboard/Widgets/events_list.php:401
-#: ../../include/functions_notifications.php:108
-#: ../../include/functions_groups.php:646 ../../include/functions_groups.php:1940
-#: ../../include/ajax/events.php:438
-#: ../../extensions/files_repo/files_repo_form.php:46
-#: ../../extensions/agents_modules.php:416 ../../mobile/operation/events.php:683
-#: ../../mobile/operation/events.php:693 ../../mobile/operation/events.php:1165
-#: ../../mobile/operation/events.php:1194 ../../mobile/operation/alerts.php:65
-#: ../../mobile/operation/alerts.php:72 ../../mobile/operation/agents.php:56
-#: ../../mobile/operation/modules.php:68 ../../mobile/operation/modules.php:289
-#: ../../mobile/operation/modules.php:304
-msgid "All"
-msgstr "Todo"
+#: ../../views/calendar/special_days.php:102
+#: ../../views/calendar/special_days_edit.php:127
+msgid "Same day of the week"
+msgstr "Mismo día de la semana"
 
-#: ../../operation/snmpconsole/snmp_view.php:555
-#: ../../operation/users/user_edit.php:308
-#: ../../operation/events/events_list.php:852
-#: ../../godmode/setup/setup_visuals.php:66
-#: ../../godmode/users/configure_user.php:1183
-#: ../../godmode/events/event_edit_filter.php:393
-#: ../../enterprise/meta/advanced/metasetup.visual.php:242
-#: ../../enterprise/meta/include/functions_meta.php:1446
-#: ../../include/functions_config.php:983
-msgid "Block size for pagination"
-msgstr "Tamaño de bloque para la paginación"
+#: ../../views/calendar/special_days.php:122
+msgid "Overwrite"
+msgstr "Sobrescribir"
 
-#: ../../operation/snmpconsole/snmp_view.php:566
+#: ../../views/calendar/special_days.php:123
+msgid "Check this box, if you want to overwrite existing same days."
+msgstr "Marca esta casilla si quieres sobrescribir los días existentes."
+
+#: ../../views/calendar/special_days.php:138
+#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:218
+#: ../../enterprise/tools/ipam/ipam_vlan_config.php:420
+#: ../../enterprise/tools/ipam/ipam_network.php:142
+#: ../../enterprise/tools/ipam/ipam_supernet_config.php:746
+#: ../../enterprise/tools/ipam/ipam_list.php:77
+#: ../../enterprise/include/functions_policies.php:4477
+#: ../../extensions/extension_uploader.php:92
+#: ../../extensions/resource_registration.php:1137
+#: ../../godmode/servers/plugin_registration.php:113
+msgid "Upload"
+msgstr "Subir"
+
+#: ../../views/calendar/special_days.php:172
+msgid "Display range: "
+msgstr "Mostrar rango "
+
+#: ../../views/calendar/special_days.php:174
+#: ../../views/calendar/special_days.php:186
 #: ../../operation/gis_maps/gis_map.php:106
+#: ../../operation/snmpconsole/snmp_view.php:566
+#: ../../operation/events/events_list.php:863
 #: ../../operation/users/user_edit.php:317
 #: ../../operation/users/user_edit.php:320
 #: ../../operation/users/user_edit.php:331
 #: ../../operation/users/user_edit.php:356
-#: ../../operation/events/events_list.php:863
-#: ../../godmode/massive/massive_edit_agents.php:981
-#: ../../godmode/setup/setup_visuals.php:196
-#: ../../godmode/setup/setup_visuals.php:218
-#: ../../godmode/setup/setup_visuals.php:438
-#: ../../godmode/setup/setup_visuals.php:457
-#: ../../godmode/setup/setup_visuals.php:1159
-#: ../../godmode/setup/gis_step_2.php:578 ../../godmode/setup/gis_step_2.php:664
-#: ../../godmode/agentes/module_manager_editor_common.php:635
-#: ../../godmode/alerts/alert_view.php:58
-#: ../../godmode/alerts/alert_list.list.php:613
-#: ../../godmode/users/configure_user.php:910
-#: ../../godmode/users/configure_user.php:1109
-#: ../../godmode/events/event_edit_filter.php:399
+#: ../../include/class/AgentsAlerts.class.php:940
+#: ../../include/functions_ui.php:1234
 #: ../../enterprise/operation/agentes/policy_view.php:332
+#: ../../enterprise/meta/monitoring/wizard/wizard.php:141
+#: ../../enterprise/meta/advanced/metasetup.visual.php:513
+#: ../../enterprise/meta/advanced/metasetup.visual.php:547
+#: ../../enterprise/meta/advanced/metasetup.visual.php:1062
 #: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:122
 #: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:136
 #: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:128
@@ -3006,1736 +1275,541 @@ msgstr "Tamaño de bloque para la paginación"
 #: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:443
 #: ../../enterprise/godmode/policies/policy_external_alerts.php:436
 #: ../../enterprise/godmode/policies/policy_alerts.php:406
-#: ../../enterprise/meta/advanced/metasetup.visual.php:513
-#: ../../enterprise/meta/advanced/metasetup.visual.php:547
-#: ../../enterprise/meta/advanced/metasetup.visual.php:1062
-#: ../../enterprise/meta/monitoring/wizard/wizard.php:141
-#: ../../include/functions_ui.php:1234
-#: ../../include/class/AgentsAlerts.class.php:940
-#: ../../views/calendar/special_days.php:174
-#: ../../views/calendar/special_days.php:186
+#: ../../godmode/setup/gis_step_2.php:578 ../../godmode/setup/gis_step_2.php:664
+#: ../../godmode/setup/setup_visuals.php:196
+#: ../../godmode/setup/setup_visuals.php:218
+#: ../../godmode/setup/setup_visuals.php:438
+#: ../../godmode/setup/setup_visuals.php:457
+#: ../../godmode/setup/setup_visuals.php:1159
+#: ../../godmode/events/event_edit_filter.php:399
+#: ../../godmode/massive/massive_edit_agents.php:981
+#: ../../godmode/agentes/module_manager_editor_common.php:635
+#: ../../godmode/alerts/alert_list.list.php:616
+#: ../../godmode/alerts/alert_view.php:58
+#: ../../godmode/users/configure_user.php:910
+#: ../../godmode/users/configure_user.php:1109
 msgid "Default"
 msgstr "Por defecto"
 
-#: ../../operation/snmpconsole/snmp_view.php:572
-#: ../../operation/events/events.php:1157
-#: ../../operation/events/events_list.php:953
-#: ../../operation/events/events.build_table.php:263
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2817
-#: ../../godmode/events/custom_events.php:106
-#: ../../godmode/events/event_filter.php:140
-#: ../../godmode/events/event_edit_filter.php:332
-#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor_form.php:72
-#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:384
-#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:603
-#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2816
-#: ../../enterprise/include/functions_reporting.php:2025
-#: ../../enterprise/include/functions_events.php:137
-#: ../../enterprise/meta/include/functions_events_meta.php:98
-#: ../../include/functions_snmp.php:335 ../../include/functions_events.php:201
-#: ../../include/functions_events.php:266 ../../include/functions_events.php:2604
-#: ../../include/functions_events.php:5052
-#: ../../include/functions_events.php:6734
-#: ../../include/functions_reporting_html.php:1050
-#: ../../include/functions_reporting_html.php:1058
-#: ../../include/functions_reporting_html.php:1269
-#: ../../include/functions_reporting_html.php:1277
-#: ../../include/functions_reporting_html.php:2355
-#: ../../include/lib/Dashboard/Widgets/events_list.php:393
-#: ../../mobile/operation/events.php:397 ../../mobile/operation/events.php:398
-#: ../../mobile/operation/events.php:532 ../../mobile/operation/events.php:691
-#: ../../mobile/operation/events.php:692
-msgid "Severity"
-msgstr "Gravedad"
+#: ../../views/calendar/special_days.php:224
+#: ../../include/class/CalendarManager.class.php:984
+#: ../../include/functions_reporting.php:14091 ../../include/functions.php:1101
+#: ../../godmode/agentes/planned_downtime.editor.php:668
+msgid "Sun"
+msgstr "Dom"
 
-#: ../../operation/snmpconsole/snmp_view.php:584
-#: ../../operation/snmpconsole/snmp_view.php:849
-#: ../../operation/snmpconsole/snmp_view.php:1226
-#: ../../operation/messages/message_list.php:192
-#: ../../operation/agentes/alerts_status.functions.php:104
-#: ../../operation/agentes/estado_agente.php:280
-#: ../../operation/agentes/estado_agente.php:763
-#: ../../operation/agentes/interface_view.functions.php:497
-#: ../../operation/agentes/alerts_status.php:552
-#: ../../operation/agentes/alerts_status.php:587
-#: ../../operation/agentes/alerts_status.php:622
-#: ../../operation/agentes/alerts_status.php:654
-#: ../../operation/agentes/status_monitor.php:1335
-#: ../../operation/search_modules.php:36 ../../operation/search_policies.php:38
-#: ../../operation/search_agents.php:56
-#: ../../operation/events/events.build_table.php:358
-#: ../../operation/incidents/list_integriaims_incidents.php:320
-#: ../../operation/incidents/configure_integriaims_incident.php:250
-#: ../../operation/incidents/integriaims_export_csv.php:83
-#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:322
-#: ../../godmode/reporting/reporting_builder.item_editor.php:77
-#: ../../godmode/massive/massive_delete_agents.php:215
-#: ../../godmode/massive/massive_edit_agents.php:537
-#: ../../godmode/massive/massive_edit_agents.php:905
-#: ../../godmode/massive/massive_copy_modules.php:121
-#: ../../godmode/massive/massive_copy_modules.php:281
-#: ../../godmode/massive/massive_delete_modules.php:415
-#: ../../godmode/setup/setup_integria.php:426
-#: ../../godmode/setup/setup_integria.php:548
-#: ../../godmode/agentes/agent_incidents.php:89
-#: ../../godmode/agentes/status_monitor_custom_fields.php:97
-#: ../../godmode/agentes/status_monitor_custom_fields.php:148
-#: ../../godmode/agentes/module_manager.php:863
-#: ../../godmode/alerts/alert_view.php:114
-#: ../../godmode/alerts/alert_list.list.php:132
-#: ../../godmode/alerts/alert_list.list.php:479
-#: ../../godmode/events/custom_events.php:101
-#: ../../godmode/wizards/DiscoveryTaskList.class.php:600
-#: ../../godmode/servers/servers.build_table.php:66
-#: ../../enterprise/operation/agentes/collection_view.php:78
-#: ../../enterprise/operation/agentes/tag_view.php:607
-#: ../../enterprise/operation/agentes/tag_view.php:685
-#: ../../enterprise/operation/agentes/policy_view.php:66
-#: ../../enterprise/operation/agentes/policy_view.php:166
-#: ../../enterprise/operation/agentes/policy_view.php:262
-#: ../../enterprise/operation/agentes/policy_view.php:397
-#: ../../enterprise/operation/services/services.service.php:127
-#: ../../enterprise/operation/services/services.list.php:243
-#: ../../enterprise/operation/services/services.list.php:507
-#: ../../enterprise/operation/services/services.table_services.php:165
-#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:412
-#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:125
-#: ../../enterprise/godmode/admin_access_logs.php:50
-#: ../../enterprise/godmode/agentes/collection_manager.php:112
-#: ../../enterprise/godmode/agentes/collection_manager.php:209
-#: ../../enterprise/godmode/policies/policies.php:405
-#: ../../enterprise/godmode/policies/policy_modules.php:1453
-#: ../../enterprise/godmode/policies/policy_collections.php:172
-#: ../../enterprise/godmode/policies/policy_collections.php:266
-#: ../../enterprise/godmode/policies/policy_agents.php:852
-#: ../../enterprise/godmode/policies/policy_agents.php:1368
-#: ../../enterprise/godmode/policies/policy_alerts.php:354
-#: ../../enterprise/godmode/policies/policy_queue.php:601
-#: ../../enterprise/godmode/servers/HA_cluster.php:170
-#: ../../enterprise/godmode/servers/list_satellite.php:38
-#: ../../enterprise/include/functions_reporting.php:1857
-#: ../../enterprise/include/functions_reporting.php:2896
-#: ../../enterprise/include/functions_reporting.php:3883
-#: ../../enterprise/include/functions_reporting.php:6139
-#: ../../enterprise/include/functions_services.php:1613
-#: ../../enterprise/include/class/ManageBackups.class.php:165
-#: ../../enterprise/include/functions_reporting_csv.php:718
-#: ../../enterprise/include/functions_reporting_csv.php:881
-#: ../../enterprise/include/functions_reporting_csv.php:1993
-#: ../../enterprise/include/functions_reporting_csv.php:2739
-#: ../../enterprise/meta/advanced/policymanager.queue.php:225
-#: ../../enterprise/meta/advanced/servers.build_table.php:61
-#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:466
-#: ../../enterprise/meta/include/functions_events_meta.php:78
-#: ../../enterprise/meta/agentsearch.php:140
-#: ../../enterprise/meta/agentsearch.php:330
-#: ../../enterprise/meta/monitoring/custom_fields_view.php:707
-#: ../../enterprise/extensions/vmware/vmware_view.php:1085
-#: ../../enterprise/views/cluster/list.php:63
-#: ../../enterprise/views/ncm/devices/list.php:120
-#: ../../include/functions_snmp_browser.php:594
-#: ../../include/functions_snmp.php:369 ../../include/functions_events.php:196
-#: ../../include/functions_events.php:251 ../../include/functions_events.php:2626
-#: ../../include/functions_events.php:5073
-#: ../../include/functions_events.php:6665
-#: ../../include/functions_reporting_html.php:547
-#: ../../include/functions_reporting_html.php:1045
-#: ../../include/functions_reporting_html.php:1054
-#: ../../include/functions_reporting_html.php:1266
-#: ../../include/functions_reporting_html.php:1274
-#: ../../include/functions_reporting_html.php:1520
-#: ../../include/functions_reporting_html.php:2078
-#: ../../include/functions_reporting_html.php:2348
-#: ../../include/functions_reporting_html.php:2693
-#: ../../include/functions_reporting_html.php:3342
-#: ../../include/functions_reporting_html.php:3395
-#: ../../include/functions_reporting_html.php:4967
-#: ../../include/class/NetworkMap.class.php:2907
-#: ../../include/class/ExternalTools.class.php:795
-#: ../../include/class/AgentsAlerts.class.php:906
-#: ../../include/lib/Dashboard/Widgets/system_group_status.php:318
-#: ../../include/ajax/module.php:980 ../../include/ajax/custom_fields.php:416
-#: ../../include/ajax/alert_list.ajax.php:283
-#: ../../include/ajax/alert_list.ajax.php:308
-#: ../../mobile/operation/events.php:368 ../../mobile/operation/events.php:369
-#: ../../mobile/operation/events.php:536 ../../mobile/operation/events.php:672
-#: ../../mobile/operation/events.php:673 ../../mobile/operation/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/agents.php:97 ../../mobile/operation/agents.php:144
-#: ../../mobile/operation/agents.php:243 ../../mobile/operation/agents.php:244
-#: ../../mobile/operation/agents.php:406 ../../mobile/operation/modules.php:163
-#: ../../mobile/operation/modules.php:164 ../../mobile/operation/modules.php:275
-#: ../../mobile/operation/modules.php:276 ../../mobile/operation/modules.php:603
-#: ../../mobile/operation/modules.php:609 ../../mobile/operation/modules.php:615
-#: ../../mobile/operation/modules.php:621 ../../mobile/operation/modules.php:632
-#: ../../mobile/operation/modules.php:640 ../../mobile/operation/modules.php:648
-#: ../../mobile/operation/modules.php:720 ../../mobile/operation/modules.php:732
-#: ../../mobile/operation/modules.php:850
-msgid "Status"
-msgstr "Estado"
+#: ../../views/calendar/special_days.php:225
+#: ../../include/class/CalendarManager.class.php:978
+#: ../../include/functions_reporting.php:14061 ../../include/functions.php:1077
+#: ../../godmode/agentes/planned_downtime.editor.php:662
+msgid "Mon"
+msgstr "Lun"
 
-#: ../../operation/snmpconsole/snmp_view.php:587
-#: ../../operation/snmpconsole/snmp_view.php:931
-#: ../../operation/snmpconsole/snmp_view.php:1243
-#: ../../include/functions_events.php:6196
-#: ../../include/functions_events.php:6203
-msgid "Not validated"
-msgstr "Sin validar"
+#: ../../views/calendar/special_days.php:226
+#: ../../include/class/CalendarManager.class.php:979
+#: ../../include/functions_reporting.php:14066 ../../include/functions.php:1081
+#: ../../godmode/agentes/planned_downtime.editor.php:663
+msgid "Tue"
+msgstr "Mar"
 
-#: ../../operation/snmpconsole/snmp_view.php:588
-#: ../../operation/snmpconsole/snmp_view.php:941
-#: ../../operation/snmpconsole/snmp_view.php:1234
-#: ../../include/functions_events.php:2630
-#: ../../include/functions_events.php:3388
-#: ../../include/functions_events.php:3677
-#: ../../include/functions_events.php:3686
-#: ../../include/functions_events.php:3693
-#: ../../include/functions_events.php:3700
-#: ../../include/functions_events.php:6194
-#: ../../include/functions_events.php:6202 ../../include/functions_graph.php:3326
-msgid "Validated"
-msgstr "Validado"
+#: ../../views/calendar/special_days.php:227
+#: ../../include/class/CalendarManager.class.php:980
+#: ../../include/functions_reporting.php:14071 ../../include/functions.php:1085
+#: ../../godmode/agentes/planned_downtime.editor.php:664
+msgid "Wed"
+msgstr "Mié"
 
-#: ../../operation/snmpconsole/snmp_view.php:600
-#: ../../operation/events/events.php:1135
-#: ../../operation/events/events_list.php:767
-#: ../../godmode/snmpconsole/snmp_alert.php:1073
-#: ../../godmode/update_manager/update_manager.history.php:67
-#: ../../godmode/events/event_edit_filter.php:361
-#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:726
-#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3244
-#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:197
-#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:257
-#: ../../enterprise/include/functions_events.php:117
-#: ../../enterprise/include/class/LogSource.class.php:656
-#: ../../enterprise/include/lib/Metaconsole/Node.php:623
-#: ../../enterprise/include/functions_ipam.php:1659
-#: ../../enterprise/meta/advanced/metasetup.consoles.php:874
-#: ../../enterprise/views/cluster/list.php:96
-#: ../../enterprise/views/ncm/snippets/list.php:102
-#: ../../enterprise/views/ncm/vendors/list.php:94
-#: ../../enterprise/views/ncm/models/list.php:96
-#: ../../enterprise/views/ncm/templates/list.php:108
-#: ../../enterprise/views/ncm/devices/list.php:155
-#: ../../enterprise/views/ncm/firmwares/list.php:108
-#: ../../enterprise/views/ipam/sites/list.php:73
-#: ../../include/class/CredentialStore.class.php:845
-#: ../../include/class/ConfigPEN.class.php:627 ../../include/ajax/module.php:292
-#: ../../mobile/operation/events.php:701 ../../mobile/operation/alerts.php:241
-#: ../../mobile/operation/agents.php:253 ../../mobile/operation/modules.php:318
-#: ../../views/calendar/list.php:119
-msgid "Free search"
-msgstr "Búsqueda libre"
+#: ../../views/calendar/special_days.php:228
+#: ../../include/class/CalendarManager.class.php:981
+#: ../../include/functions_reporting.php:14076 ../../include/functions.php:1089
+#: ../../godmode/agentes/planned_downtime.editor.php:665
+msgid "Thu"
+msgstr "Jue"
 
-#: ../../operation/snmpconsole/snmp_view.php:602
-msgid ""
-"Search by any alphanumeric field in the trap.\n"
-"\t\tREMEMBER trap sources need to be searched by IP Address"
-msgstr ""
-"Búsqueda según campos alfanuméricos en el trap.\n"
-"\t \tRECUERDA que las fuentes de trap tienen que buscarse según una dirección "
-"IP."
+#: ../../views/calendar/special_days.php:229
+#: ../../include/class/CalendarManager.class.php:982
+#: ../../include/functions_reporting.php:14081 ../../include/functions.php:1093
+#: ../../godmode/agentes/planned_downtime.editor.php:666
+msgid "Fri"
+msgstr "Vie"
 
-#: ../../operation/snmpconsole/snmp_view.php:616
-#: ../../operation/events/events.php:1111 ../../operation/events/events.php:1700
-#: ../../operation/events/events_list.php:973
-#: ../../godmode/events/event_edit_filter.php:404
-#: ../../enterprise/include/functions_events.php:229
-#: ../../include/functions_snmp.php:401
-#: ../../include/class/AuditLog.class.php:187
-#: ../../include/lib/Dashboard/Widgets/top_n_events_by_group.php:270
-#: ../../include/lib/Dashboard/Widgets/events_list.php:336
-#: ../../include/lib/Dashboard/Widgets/top_n_events_by_module.php:270
-#: ../../mobile/operation/events.php:706
-msgid "Max. hours old"
-msgstr "Máx. horas de antiguedad"
+#: ../../views/calendar/special_days.php:230
+#: ../../include/class/CalendarManager.class.php:983
+#: ../../include/functions_reporting.php:14086 ../../include/functions.php:1097
+#: ../../godmode/agentes/planned_downtime.editor.php:667
+msgid "Sat"
+msgstr "Sáb"
 
-#: ../../operation/snmpconsole/snmp_view.php:628
-#: ../../godmode/snmpconsole/snmp_alert.php:780
-#: ../../godmode/snmpconsole/snmp_alert.php:1078
-#: ../../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
-#: ../../include/functions_snmp.php:433
-msgid "Trap type"
-msgstr "Clase de trap"
+#: ../../views/calendar/special_days.php:245
+#: ../../enterprise/include/functions_reporting.php:1774
+#: ../../enterprise/include/functions_reporting.php:2821
+#: ../../enterprise/include/functions_reporting.php:3823
+msgid "January"
+msgstr "Enero"
 
-#: ../../operation/snmpconsole/snmp_view.php:628
-msgid "Search by trap type"
-msgstr "Búsqueda por tipo de trap"
+#: ../../views/calendar/special_days.php:249
+#: ../../enterprise/include/functions_reporting.php:1778
+#: ../../enterprise/include/functions_reporting.php:2825
+#: ../../enterprise/include/functions_reporting.php:3827
+msgid "February"
+msgstr "Febrero"
 
-#: ../../operation/snmpconsole/snmp_view.php:631
-#: ../../operation/snmpconsole/snmp_view.php:1115
-#: ../../operation/snmpconsole/snmp_view.php:1129
-#: ../../godmode/snmpconsole/snmp_alert.php:28
-#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:29
-#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:30
-msgid "Cold start (0)"
-msgstr "Inicio cero (0)"
+#: ../../views/calendar/special_days.php:253
+#: ../../enterprise/include/functions_reporting.php:1782
+#: ../../enterprise/include/functions_reporting.php:2829
+#: ../../enterprise/include/functions_reporting.php:3831
+msgid "March"
+msgstr "Marzo"
 
-#: ../../operation/snmpconsole/snmp_view.php:632
-#: ../../operation/snmpconsole/snmp_view.php:1116
-#: ../../operation/snmpconsole/snmp_view.php:1133
-#: ../../godmode/snmpconsole/snmp_alert.php:29
-#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:30
-#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:31
-msgid "Warm start (1)"
-msgstr "Comienzo de inicio (1)"
+#: ../../views/calendar/special_days.php:257
+#: ../../enterprise/include/functions_reporting.php:1786
+#: ../../enterprise/include/functions_reporting.php:2833
+#: ../../enterprise/include/functions_reporting.php:3835
+msgid "April"
+msgstr "Abril"
 
-#: ../../operation/snmpconsole/snmp_view.php:633
-#: ../../operation/snmpconsole/snmp_view.php:1117
-#: ../../operation/snmpconsole/snmp_view.php:1137
-#: ../../godmode/snmpconsole/snmp_alert.php:30
-#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:31
-#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:32
-msgid "Link down (2)"
-msgstr "Enlace interrumpido (2)"
+#: ../../views/calendar/special_days.php:261
+#: ../../enterprise/include/functions_reporting.php:1790
+#: ../../enterprise/include/functions_reporting.php:2837
+#: ../../enterprise/include/functions_reporting.php:3839
+msgid "May"
+msgstr "Mayo"
 
-#: ../../operation/snmpconsole/snmp_view.php:634
-#: ../../operation/snmpconsole/snmp_view.php:1118
-#: ../../operation/snmpconsole/snmp_view.php:1141
-#: ../../godmode/snmpconsole/snmp_alert.php:31
-#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:32
-#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:33
-msgid "Link up (3)"
-msgstr "Enlace activo  (3)"
+#: ../../views/calendar/special_days.php:265
+#: ../../enterprise/include/functions_reporting.php:1794
+#: ../../enterprise/include/functions_reporting.php:2841
+#: ../../enterprise/include/functions_reporting.php:3843
+msgid "June"
+msgstr "Junio"
 
-#: ../../operation/snmpconsole/snmp_view.php:635
-#: ../../operation/snmpconsole/snmp_view.php:1119
-#: ../../operation/snmpconsole/snmp_view.php:1145
-#: ../../godmode/snmpconsole/snmp_alert.php:32
-#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:33
-#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:34
-msgid "Authentication failure (4)"
-msgstr "Fallo de autentificación (4)"
+#: ../../views/calendar/special_days.php:269
+#: ../../enterprise/include/functions_reporting.php:1798
+#: ../../enterprise/include/functions_reporting.php:2845
+#: ../../enterprise/include/functions_reporting.php:3847
+msgid "July"
+msgstr "Julio"
 
-#: ../../operation/snmpconsole/snmp_view.php:652
-msgid "Group by Enterprise String/IP"
-msgstr "Agrupado por cadena Enterprise/IP"
+#: ../../views/calendar/special_days.php:273
+#: ../../enterprise/include/functions_reporting.php:1802
+#: ../../enterprise/include/functions_reporting.php:2849
+#: ../../enterprise/include/functions_reporting.php:3851
+msgid "August"
+msgstr "Agosto"
 
-#: ../../operation/snmpconsole/snmp_view.php:660
-#: ../../operation/reporting/reporting_viewer.php:311
-#: ../../operation/network/network_report.php:132
-#: ../../operation/agentes/datos_agente.php:218
-#: ../../operation/users/user_edit.php:777
-#: ../../operation/events/events_list.php:1073
-#: ../../operation/incidents/configure_integriaims_incident.php:378
-#: ../../godmode/netflow/nf_edit_form.php:269
-#: ../../godmode/snmpconsole/snmp_filters.php:261
-#: ../../godmode/snmpconsole/snmp_filters.php:301
-#: ../../godmode/snmpconsole/snmp_filters.php:312
-#: ../../godmode/snmpconsole/snmp_alert.php:1052
-#: ../../godmode/snmpconsole/snmp_alert.php:1311
-#: ../../godmode/reporting/visual_console_builder.elements.php:761
-#: ../../godmode/reporting/visual_console_builder.data.php:232
-#: ../../godmode/reporting/reporting_builder.main.php:56
-#: ../../godmode/reporting/graph_builder.main.php:294
-#: ../../godmode/reporting/create_container.php:330
-#: ../../godmode/category/edit_category.php:195
-#: ../../godmode/update_manager/update_manager.setup.php:381
-#: ../../godmode/setup/news.php:233 ../../godmode/setup/snmp_wizard.php:100
-#: ../../godmode/setup/setup_visuals.php:1529
-#: ../../godmode/setup/setup_websocket_engine.php:89
-#: ../../godmode/setup/setup_integria.php:632
-#: ../../godmode/setup/setup_netflow.php:71
-#: ../../godmode/setup/setup_auth.php:337
-#: ../../godmode/setup/setup_general.php:627 ../../godmode/setup/os.php:73
-#: ../../godmode/setup/os.php:142 ../../godmode/setup/performance.php:708
-#: ../../godmode/setup/links.php:129 ../../godmode/setup/setup_ehorus.php:179
-#: ../../godmode/agentes/planned_downtime.list.php:761
-#: ../../godmode/agentes/planned_downtime.list.php:806
-#: ../../godmode/agentes/agent_conf_gis.php:134
-#: ../../godmode/agentes/agent_template.php:260
-#: ../../godmode/agentes/configure_field.php:138
-#: ../../godmode/agentes/status_monitor_custom_fields.php:206
-#: ../../godmode/agentes/planned_downtime.editor.php:867
-#: ../../godmode/agentes/module_manager_editor.php:770
-#: ../../godmode/agentes/agent_manager.php:920
-#: ../../godmode/groups/configure_group.php:276
-#: ../../godmode/groups/configure_modu_group.php:83
-#: ../../godmode/alerts/configure_alert_command.php:384
-#: ../../godmode/alerts/alert_list.list.php:161
-#: ../../godmode/alerts/alert_list.list.php:168
-#: ../../godmode/alerts/alert_list.list.php:917
-#: ../../godmode/alerts/configure_alert_action.php:387
-#: ../../godmode/users/configure_user.php:1482
-#: ../../godmode/users/configure_profile.php:408
-#: ../../godmode/events/custom_events.php:169
-#: ../../godmode/events/event_responses.editor.php:227
-#: ../../godmode/events/event_edit_filter.php:673
-#: ../../godmode/modules/manage_network_components_form.php:372
-#: ../../godmode/modules/manage_network_templates_form.php:178
-#: ../../godmode/modules/manage_nc_groups_form.php:90
-#: ../../godmode/tag/edit_tag.php:272 ../../godmode/servers/plugin.php:198
-#: ../../godmode/servers/plugin.php:598
-#: ../../godmode/servers/modificar_server.php:100
-#: ../../enterprise/operation/agentes/collection_view.php:117
-#: ../../enterprise/operation/agentes/collection_view.php:118
-#: ../../enterprise/operation/agentes/manage_transmap_creation.php:264
-#: ../../enterprise/operation/agentes/manage_transmap_creation.php:532
-#: ../../enterprise/operation/agentes/manage_transmap_creation_phases_data.php:87
-#: ../../enterprise/operation/agentes/policy_view.php:208
-#: ../../enterprise/operation/agentes/policy_view.php:209
-#: ../../enterprise/tools/ipam/ipam_network_location_config.php:145
-#: ../../enterprise/tools/ipam/ipam_editor.php:359
-#: ../../enterprise/tools/ipam/ipam_network.php:695
-#: ../../enterprise/tools/ipam/ipam_massive.php:112
-#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor_form.php:84
-#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:408
-#: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:187
-#: ../../enterprise/godmode/reporting/graph_template_editor.php:267
-#: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:176
-#: ../../enterprise/godmode/reporting/reporting_builder.template_editor.php:129
-#: ../../enterprise/godmode/reporting/reporting_builder.template_editor.php:149
-#: ../../enterprise/godmode/reporting/mysql_builder.php:143
-#: ../../enterprise/godmode/reporting/mysql_builder.php:155
-#: ../../enterprise/godmode/reporting/mysql_builder.php:164
-#: ../../enterprise/godmode/reporting/mysql_builder.php:242
-#: ../../enterprise/godmode/massive/massive_tags_edit_policy.php:190
-#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:343
-#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1169
-#: ../../enterprise/godmode/setup/setup.php:438
-#: ../../enterprise/godmode/setup/setup.php:627
-#: ../../enterprise/godmode/setup/setup_module_library.php:62
-#: ../../enterprise/godmode/setup/setup_log_collector.php:74
-#: ../../enterprise/godmode/setup/setup_history.php:524
-#: ../../enterprise/godmode/setup/setup_metaconsole.php:245
-#: ../../enterprise/godmode/setup/edit_skin.php:290
-#: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:257
-#: ../../enterprise/godmode/agentes/collections.editor.php:182
-#: ../../enterprise/godmode/agentes/collections.editor.php:254
-#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:355
-#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:673
-#: ../../enterprise/godmode/agentes/inventory_manager.php:183
-#: ../../enterprise/godmode/agentes/inventory_manager.php:253
-#: ../../enterprise/godmode/agentes/plugins_manager.php:194
-#: ../../enterprise/godmode/agentes/plugins_manager.php:251
-#: ../../enterprise/godmode/agentes/collection_manager.php:153
-#: ../../enterprise/godmode/agentes/collection_manager.php:154
-#: ../../enterprise/godmode/agentes/collection_manager.php:268
-#: ../../enterprise/godmode/agentes/collection_manager.php:269
-#: ../../enterprise/godmode/agentes/collections.data.php:107
-#: ../../enterprise/godmode/agentes/collections.data.php:264
-#: ../../enterprise/godmode/agentes/collections.data.php:342
-#: ../../enterprise/godmode/agentes/collections.data.php:454
-#: ../../enterprise/godmode/agentes/collections.data.php:455
-#: ../../enterprise/godmode/policies/policy_external_alerts.php:364
-#: ../../enterprise/godmode/policies/policy_modules.php:428
-#: ../../enterprise/godmode/policies/policy_collections.php:222
-#: ../../enterprise/godmode/policies/policy_collections.php:294
-#: ../../enterprise/godmode/policies/policy_inventory_modules.php:261
-#: ../../enterprise/godmode/policies/policy_inventory_modules.php:338
-#: ../../enterprise/godmode/policies/configure_policy.php:136
-#: ../../enterprise/godmode/alerts/alert_inventory_list.php:337
-#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:590
-#: ../../enterprise/godmode/modules/configure_local_component.php:677
-#: ../../enterprise/godmode/modules/manage_inventory_modules.php:313
-#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:143
-#: ../../enterprise/godmode/servers/manage_credential_boxes.php:90
-#: ../../enterprise/godmode/servers/manage_export_form.php:136
-#: ../../enterprise/godmode/servers/credential_boxes_satellite.php:251
-#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:357
-#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:889
-#: ../../enterprise/godmode/services/services.service.php:919
-#: ../../enterprise/include/class/SAPView.class.php:325
-#: ../../enterprise/include/class/Omnishell.class.php:646
-#: ../../enterprise/include/class/DatabaseHA.class.php:891
-#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2240
-#: ../../enterprise/include/class/AgentRepository.class.php:902
-#: ../../enterprise/include/class/DeploymentCenter.class.php:1672
-#: ../../enterprise/include/class/LogSource.class.php:849
-#: ../../enterprise/include/functions_HA_cluster.php:495
-#: ../../enterprise/include/ajax/log_viewer.ajax.php:99
-#: ../../enterprise/include/ajax/servers.ajax.php:102
-#: ../../enterprise/include/ajax/servers.ajax.php:303
-#: ../../enterprise/meta/advanced/metasetup.visual.php:1150
-#: ../../enterprise/meta/advanced/metasetup.consoles.php:718
-#: ../../enterprise/meta/advanced/metasetup.setup.php:375
-#: ../../enterprise/meta/advanced/metasetup.translate_string.php:231
-#: ../../enterprise/meta/advanced/collections.editor.php:149
-#: ../../enterprise/meta/advanced/collections.editor.php:223
-#: ../../enterprise/meta/advanced/metasetup.performance.php:170
-#: ../../enterprise/meta/advanced/metasetup.relations.php:278
-#: ../../enterprise/meta/advanced/metasetup.mail.php:133
-#: ../../enterprise/meta/advanced/cron_main.php:459
-#: ../../enterprise/meta/advanced/links.php:139
-#: ../../enterprise/meta/advanced/metasetup.password.php:157
-#: ../../enterprise/meta/advanced/collections.data.php:157
-#: ../../enterprise/meta/advanced/collections.data.php:232
-#: ../../enterprise/meta/advanced/collections.data.php:273
-#: ../../enterprise/meta/advanced/collections.data.php:360
-#: ../../enterprise/meta/advanced/collections.data.php:361
-#: ../../enterprise/meta/include/functions_autoprovision.php:590
-#: ../../enterprise/meta/include/functions_autoprovision.php:791
-#: ../../enterprise/meta/event/custom_events.php:213
-#: ../../enterprise/extensions/translate_string.php:364
-#: ../../enterprise/extensions/vmware/vmware_view.php:1257
-#: ../../enterprise/extensions/vmware/vmware_view.php:1768
-#: ../../enterprise/views/ncm/snippets/edit.php:106
-#: ../../enterprise/views/ncm/vendors/edit.php:104
-#: ../../enterprise/views/ncm/models/edit.php:103
-#: ../../enterprise/views/ncm/templates/edit.php:315
-#: ../../enterprise/views/ncm/firmwares/edit.php:169
-#: ../../enterprise/views/ipam/sites/edit.php:80
-#: ../../include/functions_events.php:3647
-#: ../../include/functions_events.php:3727
+#: ../../views/calendar/special_days.php:277
+#: ../../enterprise/include/functions_reporting.php:1806
+#: ../../enterprise/include/functions_reporting.php:2853
+#: ../../enterprise/include/functions_reporting.php:3855
+msgid "September"
+msgstr "Septiembre"
+
+#: ../../views/calendar/special_days.php:281
+#: ../../enterprise/include/functions_reporting.php:1810
+#: ../../enterprise/include/functions_reporting.php:2857
+#: ../../enterprise/include/functions_reporting.php:3859
+msgid "October"
+msgstr "Octubre"
+
+#: ../../views/calendar/special_days.php:285
+#: ../../enterprise/include/functions_reporting.php:1814
+#: ../../enterprise/include/functions_reporting.php:2861
+#: ../../enterprise/include/functions_reporting.php:3863
+msgid "November"
+msgstr "Noviembre"
+
+#: ../../views/calendar/special_days.php:289
+#: ../../enterprise/include/functions_reporting.php:1819
+#: ../../enterprise/include/functions_reporting.php:2866
+#: ../../enterprise/include/functions_reporting.php:3868
+msgid "December"
+msgstr "Diciembre"
+
+#: ../../views/calendar/special_days.php:355
+msgid "As "
+msgstr "Como "
+
+#: ../../views/calendar/special_days.php:386
+#: ../../views/calendar/special_days_edit.php:123
+msgid "Holidays"
+msgstr "Vacaciones"
+
+#: ../../views/calendar/special_days.php:407
+#: ../../views/calendar/special_days.php:506
+#: ../../views/calendar/special_days_edit.php:207
+#: ../../views/dashboard/header.php:69 ../../views/dashboard/header.php:103
+#: ../../views/dashboard/list.php:225 ../../general/header.php:814
+#: ../../operation/snmpconsole/snmp_browser.php:174
+#: ../../operation/snmpconsole/snmp_browser.php:551
+#: ../../operation/snmpconsole/snmp_browser.php:631
+#: ../../operation/snmpconsole/snmp_browser.php:646
+#: ../../operation/agentes/pandora_networkmap.editor.php:603
 #: ../../include/functions_visual_map_editor.php:880
-#: ../../include/class/CredentialStore.class.php:1246
-#: ../../include/class/ManageNetScanScripts.class.php:765
-#: ../../include/class/ConfigPEN.class.php:697
-#: ../../include/class/ConfigPEN.class.php:698
-#: ../../include/class/NetworkMap.class.php:3069
-#: ../../include/class/ExternalTools.class.php:392
-#: ../../include/class/ModuleTemplates.class.php:1012
-#: ../../include/ajax/alert_list.ajax.php:551
-#: ../../extensions/files_repo/files_repo_form.php:99
-#: ../../views/calendar/special_days_edit.php:163
-#: ../../views/calendar/edit.php:120
-msgid "Update"
-msgstr "Actualizar"
+#: ../../include/functions_visual_map_editor.php:884
+#: ../../include/class/ModuleTemplates.class.php:1382
+#: ../../include/class/AgentWizard.class.php:6009
+#: ../../include/class/WelcomeWindow.class.php:174
+#: ../../include/class/ConfigPEN.class.php:669
+#: ../../include/class/ConfigPEN.class.php:693
+#: ../../include/class/CredentialStore.class.php:1242
+#: ../../include/class/CredentialStore.class.php:1294
+#: ../../include/class/NetworkMap.class.php:2807
+#: ../../include/class/TreeGroupEdition.class.php:165
+#: ../../include/functions_register.php:179
+#: ../../update_manager_client/views/register.php:86
+#: ../../enterprise/tools/ipam/ipam_vlan_config.php:808
+#: ../../enterprise/tools/ipam/ipam_vlan_config.php:831
+#: ../../enterprise/tools/ipam/ipam_supernet_config.php:1298
+#: ../../enterprise/tools/ipam/ipam_supernet_config.php:1322
+#: ../../enterprise/views/ncm/agent/details.php:690
+#: ../../enterprise/include/class/AgentRepository.class.php:801
+#: ../../enterprise/include/class/AgentRepository.class.php:899
+#: ../../enterprise/include/class/LogSource.class.php:845
+#: ../../enterprise/include/class/LogSource.class.php:898
+#: ../../enterprise/include/class/ManageBackups.class.php:446
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3007
+#: ../../enterprise/include/class/DeploymentCenter.class.php:1567
+#: ../../enterprise/include/class/DeploymentCenter.class.php:1669
+#: ../../enterprise/include/class/DeploymentCenter.class.php:1721
+#: ../../enterprise/include/class/DeploymentCenter.class.php:1753
+#: ../../enterprise/include/class/DeploymentCenter.class.php:1788
+#: ../../enterprise/include/functions_HA_cluster.php:492
+#: ../../enterprise/meta/event/custom_events.php:250
+#: ../../enterprise/meta/monitoring/custom_fields_view.php:1152
+#: ../../enterprise/godmode/services/services.elements.php:844
+#: ../../enterprise/godmode/services/services.elements.php:855
+#: ../../enterprise/godmode/services/services.service.php:966
+#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:341
+#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:266
+#: ../../godmode/setup/snmp_wizard.php:100
+#: ../../godmode/events/custom_events.php:205
+#: ../../godmode/massive/massive_operations.php:393
+#: ../../godmode/agentes/status_monitor_custom_fields.php:242
+msgid "Cancel"
+msgstr "Cancelar"
 
-#: ../../operation/snmpconsole/snmp_view.php:681
-#: ../../operation/snmpconsole/snmp_view.php:789
-#: ../../godmode/snmpconsole/snmp_filters.php:46
-#: ../../godmode/snmpconsole/snmp_alert.php:83
-#: ../../godmode/snmpconsole/snmp_alert.php:91
-#: ../../godmode/snmpconsole/snmp_alert.php:99
-msgid "SNMP Console"
-msgstr "Consola SNMP"
+#: ../../views/calendar/special_days.php:411
+#: ../../views/calendar/special_days.php:510
+#: ../../views/calendar/special_days_edit.php:211
+#: ../../include/class/AgentWizard.class.php:5961
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:4321
+#: ../../godmode/agentes/planned_downtime.list.php:695
+#: ../../godmode/alerts/configure_alert_template.php:1550
+msgid "Loading, this operation might take several minutes..."
+msgstr "Cargando, esta operación podría llevar varios minutos..."
 
-#: ../../operation/snmpconsole/snmp_view.php:714
-#: ../../operation/snmpconsole/snmp_view.php:813
-#: ../../operation/agentes/alerts_status.php:501
-#: ../../operation/agentes/graphs.php:269
-#: ../../godmode/snmpconsole/snmp_alert.php:1093
-#: ../../godmode/alerts/alert_list.list.php:178
-#: ../../godmode/users/user_list.php:452
-#: ../../enterprise/godmode/policies/policy_external_alerts.php:373
-#: ../../enterprise/godmode/policies/policy_queue.php:509
-#: ../../enterprise/godmode/policies/policy_queue.php:621
-#: ../../enterprise/godmode/alerts/alert_inventory_list.php:174
-#: ../../enterprise/meta/advanced/collections.php:200
-msgid "Toggle filter(s)"
-msgstr "Conmutar filtro(s)"
+#: ../../views/calendar/special_days.php:421
+msgid "Show templates"
+msgstr "Mostrar plantillas"
 
-#: ../../operation/snmpconsole/snmp_view.php:718
-msgid "There are no SNMP traps in database that contains this filter"
-msgstr "No hay traps SNMP  en la base de datos que contengan este filtro"
+#: ../../views/calendar/special_days.php:431
+#: ../../operation/search_reports.php:68 ../../operation/gis_maps/gis_map.php:190
+#: ../../operation/agentes/status_monitor.php:1510
+#: ../../operation/agentes/pandora_networkmap.php:713
+#: ../../operation/agentes/estado_agente.php:877
+#: ../../operation/agentes/estado_agente.php:880
+#: ../../operation/incidents/list_integriaims_incidents.php:550
+#: ../../include/functions_cron.php:881 ../../include/functions_cron.php:909
+#: ../../include/ajax/module.php:1110
+#: ../../include/class/CalendarManager.class.php:652
+#: ../../include/class/NetworkMap.class.php:3013
+#: ../../enterprise/tools/ipam/ipam_ajax.php:122
+#: ../../enterprise/tools/ipam/ipam_ajax.php:527
+#: ../../enterprise/tools/ipam/ipam.php:417
+#: ../../enterprise/operation/agentes/tag_view.php:742
+#: ../../enterprise/include/ajax/transactional.ajax.php:117
+#: ../../enterprise/include/ajax/transactional.ajax.php:205
+#: ../../enterprise/include/class/Omnishell.class.php:1137
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2382
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3036
+#: ../../enterprise/include/class/NetworkConfigManager.class.php:612
+#: ../../enterprise/include/class/NetworkConfigManager.class.php:784
+#: ../../enterprise/include/class/NetworkConfigManager.class.php:960
+#: ../../enterprise/include/class/NetworkConfigManager.class.php:1107
+#: ../../enterprise/include/class/NetworkConfigManager.class.php:1315
+#: ../../enterprise/include/functions_tasklist.php:595
+#: ../../enterprise/include/functions_tasklist.php:637
+#: ../../enterprise/include/lib/ClusterViewer/ClusterManager.php:618
+#: ../../enterprise/include/lib/Metaconsole/Node.php:1149
+#: ../../enterprise/include/lib/Metaconsole/Node.php:1150
+#: ../../enterprise/meta/screens/screens.visualmap.php:73
+#: ../../enterprise/meta/include/functions_autoprovision.php:506
+#: ../../enterprise/meta/include/functions_autoprovision.php:507
+#: ../../enterprise/meta/include/functions_autoprovision.php:672
+#: ../../enterprise/meta/include/functions_autoprovision.php:673
+#: ../../enterprise/meta/include/functions_wizard_meta.php:2067
+#: ../../enterprise/meta/include/functions_wizard_meta.php:2162
+#: ../../enterprise/meta/include/functions_wizard_meta.php:2726
+#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:298
+#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:464
+#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:815
+#: ../../enterprise/meta/monitoring/wizard/wizard.manage_alert.php:74
+#: ../../enterprise/meta/advanced/collections.editor.php:203
+#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:382
+#: ../../enterprise/godmode/reporting/reporting_builder.template.php:612
+#: ../../enterprise/godmode/massive/massive_edit_tags_policy.php:204
+#: ../../enterprise/godmode/agentes/collections.editor.php:234
+#: ../../extensions/files_repo/files_repo_list.php:138
+#: ../../godmode/setup/snmp_wizard.php:110 ../../godmode/servers/plugin.php:179
+#: ../../godmode/servers/plugin.php:880
+#: ../../godmode/servers/servers.build_table.php:234
+#: ../../godmode/reporting/reporting_builder.list_items.php:624
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2175
+#: ../../godmode/reporting/reporting_builder.php:1169
+#: ../../godmode/events/event_responses.list.php:79
+#: ../../godmode/agentes/planned_downtime.list.php:624
+#: ../../godmode/agentes/fields_manager.php:154
+#: ../../godmode/agentes/modificar_agente.php:803
+#: ../../godmode/agentes/modificar_agente.php:809
+#: ../../godmode/users/user_list.php:796 ../../godmode/users/profile_list.php:434
+#: ../../godmode/groups/group_list.php:917
+#: ../../godmode/groups/group_list.php:918
+msgid "Edit"
+msgstr "Editar"
 
-#: ../../operation/snmpconsole/snmp_view.php:741
-#: ../../views/dashboard/slides.php:41
-msgid "Exit fullscreen"
-msgstr "Salir de pantalla completa"
-
-#: ../../operation/snmpconsole/snmp_view.php:758
-msgid "Refresh every"
-msgstr "Actualizar cada"
-
-#: ../../operation/snmpconsole/snmp_view.php:770
-msgid "SNMP Traps"
-msgstr "Traps SNMP"
-
-#: ../../operation/snmpconsole/snmp_view.php:854
-#: ../../godmode/snmpconsole/snmp_alert.php:743
-#: ../../godmode/snmpconsole/snmp_alert.php:1222
-#: ../../godmode/snmpconsole/snmp_trap_generator.php:125
-#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:303
-msgid "SNMP Agent"
-msgstr "Agente SNMP"
-
-#: ../../operation/snmpconsole/snmp_view.php:859
-#: ../../godmode/snmpconsole/snmp_alert.php:730
-#: ../../godmode/snmpconsole/snmp_alert.php:1226
-#: ../../godmode/snmpconsole/snmp_trap_generator.php:105
-msgid "Enterprise String"
-msgstr "Cadena Enterprise"
-
-#: ../../operation/snmpconsole/snmp_view.php:865
-#: ../../enterprise/include/lib/AlertCorrelation.class.php:1086
-#: ../../include/functions_reporting_html.php:1046
-#: ../../include/functions_reporting_html.php:1270
-#: ../../include/functions_reporting_html.php:2350
-msgid "Count"
-msgstr "Número"
-
-#: ../../operation/snmpconsole/snmp_view.php:871
-msgid "Trap subtype"
-msgstr "Subtipo trap"
-
-#: ../../operation/snmpconsole/snmp_view.php:876
-#: ../../operation/search_users.php:43 ../../operation/users/user_edit.php:258
-#: ../../godmode/users/configure_user.php:852
-#: ../../godmode/users/configure_user.php:868
-#: ../../godmode/users/user_list.php:479
-#: ../../enterprise/include/functions_reporting_csv.php:2549
-#: ../../enterprise/include/functions_reporting_csv.php:2559
-#: ../../include/functions_reporting_html.php:4969
-#: ../../include/functions_reporting_html.php:6167
-#: ../../include/functions_reporting_html.php:6190
-msgid "User ID"
-msgstr "ID usuario"
-
-#: ../../operation/snmpconsole/snmp_view.php:881
-#: ../../operation/messages/message_list.php:200
-#: ../../operation/agentes/estado_generalagente.php:624
-#: ../../operation/agentes/exportdata.csv.php:74
-#: ../../operation/agentes/exportdata.php:83
-#: ../../operation/agentes/status_monitor.php:1365
-#: ../../operation/agentes/exportdata.excel.php:74
-#: ../../operation/search_modules.php:39
-#: ../../operation/events/events.build_table.php:192
-#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:116
-#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:247
-#: ../../godmode/update_manager/update_manager.history.php:44
-#: ../../godmode/setup/news.php:249
-#: ../../godmode/agentes/status_monitor_custom_fields.php:117
-#: ../../godmode/agentes/status_monitor_custom_fields.php:153
-#: ../../godmode/events/custom_events.php:102
-#: ../../enterprise/operation/agentes/tag_view.php:686
-#: ../../enterprise/include/functions_inventory.php:113
-#: ../../enterprise/include/functions_inventory.php:147
-#: ../../enterprise/include/functions_inventory.php:349
-#: ../../enterprise/include/functions_inventory.php:369
-#: ../../enterprise/include/functions_inventory.php:555
-#: ../../enterprise/include/class/Omnishell.class.php:400
-#: ../../enterprise/include/class/LogSource.class.php:628
-#: ../../enterprise/include/functions_reporting_csv.php:802
-#: ../../enterprise/include/functions_reporting_csv.php:875
-#: ../../enterprise/include/functions_reporting_csv.php:1458
-#: ../../enterprise/include/functions_reporting_csv.php:2281
-#: ../../enterprise/include/functions_reporting_csv.php:2317
-#: ../../enterprise/include/functions_reporting_csv.php:2629
-#: ../../enterprise/meta/include/functions_events_meta.php:82
-#: ../../include/functions_netflow.php:278 ../../include/functions_events.php:197
-#: ../../include/functions_events.php:254 ../../include/functions_events.php:2622
-#: ../../include/functions_events.php:4999
-#: ../../include/functions_events.php:6691
-#: ../../include/functions_reporting_html.php:1052
-#: ../../include/functions_reporting_html.php:1060
-#: ../../include/functions_reporting_html.php:1271
-#: ../../include/functions_reporting_html.php:1278
-#: ../../include/functions_reporting_html.php:2357
-#: ../../include/functions_reporting_html.php:4970
-#: ../../include/ajax/events_extended.php:90 ../../include/ajax/events.php:1809
-#: ../../include/ajax/custom_fields.php:415 ../../mobile/operation/events.php:516
-#: ../../mobile/operation/modules.php:661 ../../mobile/operation/modules.php:852
-msgid "Timestamp"
-msgstr "Marca temporal"
-
-#: ../../operation/snmpconsole/snmp_view.php:891
-#: ../../operation/snmpconsole/snmp_view.php:1266
-#: ../../operation/agentes/alerts_status.functions.php:126
-#: ../../operation/agentes/alerts_status.php:550
-#: ../../operation/agentes/alerts_status.php:585
-#: ../../operation/agentes/alerts_status.php:620
-#: ../../operation/agentes/alerts_status.php:652
-#: ../../operation/search_alerts.php:37
-#: ../../operation/events/events.build_table.php:369
-#: ../../godmode/netflow/nf_edit.php:161
-#: ../../godmode/netflow/nf_item_list.php:178
-#: ../../godmode/snmpconsole/snmp_filters.php:291
-#: ../../godmode/snmpconsole/snmp_alert.php:1241
-#: ../../godmode/snmpconsole/snmp_alert.php:1365
-#: ../../godmode/reporting/visual_console_builder.elements.php:118
-#: ../../godmode/reporting/reporting_builder.item_editor.php:3808
-#: ../../godmode/reporting/reporting_builder.item_editor.php:4299
-#: ../../godmode/reporting/reporting_builder.item_editor.php:4320
-#: ../../godmode/massive/massive_operations.php:426
-#: ../../godmode/massive/massive_standby_alerts.php:250
-#: ../../godmode/massive/massive_delete_action_alerts.php:270
-#: ../../godmode/massive/massive_add_action_alerts.php:248
-#: ../../godmode/massive/massive_enable_disable_alerts.php:222
-#: ../../godmode/agentes/agent_template.php:238
-#: ../../godmode/agentes/planned_downtime.editor.php:1002
-#: ../../godmode/agentes/module_manager.php:867
-#: ../../godmode/alerts/alert_view.php:388
-#: ../../godmode/alerts/alert_list.list.php:742
-#: ../../godmode/events/event_filter.php:141
-#: ../../godmode/modules/manage_network_components.php:755
-#: ../../godmode/modules/manage_nc_groups.php:243
-#: ../../godmode/modules/manage_network_templates.php:248
-#: ../../enterprise/operation/agentes/policy_view.php:260
-#: ../../enterprise/tools/ipam/ipam_network_location_config.php:258
-#: ../../enterprise/tools/ipam/ipam_list.php:639
-#: ../../enterprise/godmode/reporting/graph_template_list.php:209
-#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:191
-#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3524
-#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3722
-#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3745
-#: ../../enterprise/godmode/admin_access_logs.php:54
-#: ../../enterprise/godmode/policies/policy_modules.php:1453
-#: ../../enterprise/godmode/policies/policy_alerts.php:575
-#: ../../enterprise/godmode/alerts/alert_inventory_list.php:379
-#: ../../enterprise/godmode/alerts/alert_inventory_builder.php:241
-#: ../../enterprise/godmode/modules/manage_inventory_modules.php:278
-#: ../../enterprise/godmode/servers/manage_export.php:142
-#: ../../enterprise/godmode/services/services.massive.elements.php:66
-#: ../../enterprise/include/functions_services.php:1615
-#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2585
-#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2905
-#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:433
-#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:495
-#: ../../enterprise/meta/advanced/metasetup.relations.php:550
-#: ../../enterprise/meta/monitoring/wizard/wizard.manage_alert.php:257
-#: ../../general/logon_ok.php:248 ../../include/functions.php:3045
-#: ../../include/functions_events.php:6788
-#: ../../include/functions_ui_renders.php:117
-#: ../../include/functions_profile.php:217
-#: ../../include/functions_reporting_html.php:3135
-#: ../../include/functions_reporting_html.php:5676
-#: ../../include/class/AuditLog.class.php:109
-#: ../../include/class/AuditLog.class.php:201
-#: ../../include/class/AgentsAlerts.class.php:904
-#: ../../include/class/ModuleTemplates.class.php:894
-#: ../../include/ajax/alert_list.ajax.php:281
-#: ../../include/ajax/alert_list.ajax.php:306
-#: ../../include/ajax/alert_list.ajax.php:482
-#: ../../mobile/operation/tactical.php:348
-msgid "Action"
-msgstr "Acción"
-
-#: ../../operation/snmpconsole/snmp_view.php:974
-#: ../../operation/snmpconsole/snmp_view.php:994
-#: ../../operation/agentes/interface_view.functions.php:675
-#: ../../operation/agentes/interface_view.functions.php:676
-#: ../../operation/agentes/interface_view.functions.php:677
-#: ../../operation/agentes/interface_view.functions.php:678
-#: ../../operation/agentes/interface_view.functions.php:679
-#: ../../operation/agentes/estado_generalagente.php:219
-#: ../../operation/agentes/estado_generalagente.php:232
-#: ../../operation/agentes/estado_generalagente.php:244
-#: ../../operation/agentes/estado_generalagente.php:392
-#: ../../operation/agentes/estado_generalagente.php:408
-#: ../../operation/agentes/estado_generalagente.php:419
-#: ../../operation/agentes/status_monitor.php:1711
-#: ../../godmode/agentes/planned_downtime.list.php:812
-#: ../../godmode/alerts/alert_view.php:135
-#: ../../godmode/modules/manage_network_components.php:776
-#: ../../godmode/modules/manage_network_components.php:777
-#: ../../godmode/servers/servers.build_table.php:133
-#: ../../godmode/servers/servers.build_table.php:134
-#: ../../godmode/servers/servers.build_table.php:140
-#: ../../godmode/extensions.php:186 ../../godmode/extensions.php:201
-#: ../../enterprise/tools/ipam/ipam_network.php:435
-#: ../../enterprise/tools/ipam/ipam_network.php:515
-#: ../../enterprise/tools/ipam/ipam_ajax.php:366
-#: ../../enterprise/tools/ipam/ipam_ajax.php:387
-#: ../../enterprise/include/functions_reporting.php:6157
-#: ../../enterprise/include/functions_visual_map.php:320
-#: ../../enterprise/include/functions_aws.php:507
-#: ../../enterprise/include/functions_aws.php:508
-#: ../../enterprise/include/functions_services.php:1190
-#: ../../enterprise/include/functions_services.php:1371
-#: ../../enterprise/include/functions_services.php:2077
-#: ../../enterprise/include/lib/Metaconsole/Node.php:505
-#: ../../enterprise/include/lib/Metaconsole/Node.php:1185
-#: ../../enterprise/include/functions_servicemap.php:471
-#: ../../enterprise/meta/advanced/metasetup.visual.php:895
-#: ../../enterprise/meta/advanced/servers.build_table.php:100
-#: ../../enterprise/meta/advanced/servers.build_table.php:101
-#: ../../enterprise/meta/advanced/servers.build_table.php:107
-#: ../../enterprise/views/cluster/view.php:278
-#: ../../enterprise/views/cluster/view.php:293 ../../include/functions.php:1124
-#: ../../include/functions.php:1130 ../../include/functions.php:1134
-#: ../../include/functions_servers.php:1362 ../../include/functions_ui.php:2609
-#: ../../include/functions_ui.php:2617 ../../include/functions_treeview.php:162
-#: ../../include/functions_treeview.php:327
-#: ../../include/functions_treeview.php:423
-#: ../../include/functions_events.php:3811
-#: ../../include/functions_events.php:3961
-#: ../../include/functions_events.php:3982
-#: ../../include/functions_events.php:3987
-#: ../../include/functions_events.php:4000
-#: ../../include/functions_events.php:4001
-#: ../../include/functions_events.php:4013
-#: ../../include/functions_events.php:4064
-#: ../../include/functions_events.php:4091
-#: ../../include/functions_events.php:4147
-#: ../../include/functions_events.php:4164
-#: ../../include/functions_events.php:4171
-#: ../../include/functions_events.php:4237
-#: ../../include/functions_events.php:4309
-#: ../../include/functions_events.php:4448
-#: ../../include/functions_events.php:4487
-#: ../../include/functions_events.php:4501
-#: ../../include/functions_events.php:4506
-#: ../../include/functions_events.php:4536
-#: ../../include/functions_events.php:4629
-#: ../../include/functions_events.php:4709
-#: ../../include/functions_events.php:4719
-#: ../../include/functions_events.php:4936
-#: ../../include/functions_events.php:5013
-#: ../../include/functions_events.php:5102
-#: ../../include/functions_events.php:5131
-#: ../../include/functions_events.php:5146
-#: ../../include/functions_events.php:5156
-#: ../../include/functions_events.php:5166
-#: ../../include/functions_events.php:7444
-#: ../../include/functions_events.php:7463
-#: ../../include/functions_events.php:7468
-#: ../../include/functions_events.php:7475
-#: ../../include/functions_events.php:7488
-#: ../../include/functions_events.php:7501
-#: ../../include/functions_events.php:7513
-#: ../../include/functions_events.php:7566
-#: ../../include/functions_events.php:7593
-#: ../../include/functions_events.php:7618
-#: ../../include/functions_events.php:7662 ../../include/functions_db.php:241
-#: ../../include/functions_reporting_html.php:651
-#: ../../include/functions_reporting_html.php:654
-#: ../../include/functions_reporting_html.php:5228
-#: ../../include/functions_reporting_html.php:5281
-#: ../../include/ajax/module.php:1168 ../../mobile/operation/agent.php:192
-#: ../../mobile/operation/agent.php:200 ../../mobile/operation/events.php:161
-#: ../../mobile/operation/events.php:167 ../../mobile/operation/events.php:175
-#: ../../mobile/operation/events.php:260 ../../mobile/operation/events.php:290
-#: ../../mobile/operation/events.php:298
-msgid "N/A"
-msgstr "N/A"
-
-#: ../../operation/snmpconsole/snmp_view.php:1018
-#: ../../operation/agentes/group_view.php:234
-#: ../../operation/events/sound_events.php:136
-#: ../../godmode/alerts/alert_view.php:105
-#: ../../godmode/alerts/alert_list.list.php:556
-#: ../../enterprise/operation/agentes/policy_view.php:345
-#: ../../enterprise/meta/monitoring/group_view.php:247
-#: ../../include/functions.php:1228 ../../include/functions_reporting.php:12325
-#: ../../include/functions_ui.php:1247 ../../include/functions_agents.php:2939
-#: ../../include/functions_agents.php:2950
-#: ../../include/functions_events.php:2906
-#: ../../include/functions_events.php:3261
-#: ../../include/class/AgentsAlerts.class.php:949
-#: ../../mobile/operation/alerts.php:324
-msgid "Alert fired"
-msgstr "Alerta disparada"
-
-#: ../../operation/snmpconsole/snmp_view.php:1020
-#: ../../godmode/alerts/alert_view.php:111
-#: ../../godmode/alerts/alert_list.list.php:562
-#: ../../enterprise/operation/agentes/policy_view.php:351
-#: ../../include/functions_reporting.php:12248
-#: ../../include/functions_ui.php:1253 ../../include/functions_agents.php:2941
-#: ../../include/functions_agents.php:2952
-#: ../../include/class/AgentsAlerts.class.php:955
-#: ../../mobile/operation/alerts.php:330
-msgid "Alert not fired"
-msgstr "Alerta no disparada"
-
-#: ../../operation/snmpconsole/snmp_view.php:1027
-#: ../../operation/snmpconsole/snmp_view.php:1217
-#: ../../operation/snmpconsole/snmp_view.php:1267
-#: ../../operation/agentes/alerts_status.php:567
-#: ../../operation/agentes/alerts_status.php:604
-#: ../../operation/agentes/alerts_status.php:637
-#: ../../operation/agentes/alerts_status.php:723
-#: ../../godmode/setup/license.php:165
-#: ../../enterprise/godmode/reporting/aws_view.php:181
-#: ../../enterprise/godmode/wizards/Cloud.class.php:325
-#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3130
-#: ../../enterprise/load_enterprise.php:749
-#: ../../include/ajax/alert_list.ajax.php:267
-#: ../../include/ajax/alert_list.ajax.php:293
-#: ../../mobile/operation/events.php:570
-msgid "Validate"
-msgstr "Validar"
-
-#: ../../operation/snmpconsole/snmp_view.php:1038
-#: ../../operation/snmpconsole/snmp_view.php:1051
-#: ../../operation/snmpconsole/snmp_view.php:1220
-#: ../../operation/snmpconsole/snmp_view.php:1269
-#: ../../operation/messages/message_list.php:201
+#: ../../views/calendar/special_days.php:438 ../../views/dashboard/list.php:185
 #: ../../operation/messages/message_list.php:272
 #: ../../operation/messages/message_list.php:275
-#: ../../operation/messages/message_list.php:293
-#: ../../operation/visual_console/view.php:733
-#: ../../operation/gis_maps/gis_map.php:190
-#: ../../operation/agentes/pandora_networkmap.php:714
+#: ../../operation/snmpconsole/snmp_browser.php:643
+#: ../../operation/snmpconsole/snmp_view.php:1033
+#: ../../operation/snmpconsole/snmp_view.php:1046
+#: ../../operation/snmpconsole/snmp_view.php:1220
+#: ../../operation/events/events.build_table.php:983
 #: ../../operation/agentes/pandora_networkmap.php:801
-#: ../../operation/incidents/list_integriaims_incidents.php:555
-#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:120
-#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:198
-#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:251
-#: ../../godmode/netflow/nf_edit.php:196 ../../godmode/netflow/nf_edit.php:208
-#: ../../godmode/netflow/nf_item_list.php:263
-#: ../../godmode/netflow/nf_item_list.php:273
-#: ../../godmode/snmpconsole/snmp_filters.php:301
-#: ../../godmode/snmpconsole/snmp_filters.php:312
-#: ../../godmode/snmpconsole/snmp_alert.php:1276
-#: ../../godmode/snmpconsole/snmp_alert.php:1324
-#: ../../godmode/reporting/visual_console_builder.elements.php:763
-#: ../../godmode/reporting/graph_builder.graph_editor.php:216
-#: ../../godmode/reporting/graph_builder.graph_editor.php:256
-#: ../../godmode/reporting/graphs.php:367 ../../godmode/reporting/graphs.php:368
-#: ../../godmode/reporting/graphs.php:394
-#: ../../godmode/reporting/create_container.php:630
-#: ../../godmode/reporting/create_container.php:683
-#: ../../godmode/reporting/reporting_builder.php:1209
-#: ../../godmode/reporting/reporting_builder.php:1293
-#: ../../godmode/reporting/reporting_builder.list_items.php:629
-#: ../../godmode/reporting/reporting_builder.list_items.php:667
-#: ../../godmode/reporting/reporting_builder.list_items.php:690
-#: ../../godmode/reporting/reporting_builder.list_items.php:791
-#: ../../godmode/reporting/map_builder.php:388
+#: ../../operation/agentes/pandora_networkmap.editor.php:600
+#: ../../operation/users/user_edit.php:1168
+#: ../../operation/incidents/list_integriaims_incidents.php:554
+#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:197
+#: ../../include/class/ModuleTemplates.class.php:918
+#: ../../include/class/ModuleTemplates.class.php:933
+#: ../../include/class/WelcomeWindow.class.php:171
+#: ../../include/class/ConfigPEN.class.php:666
+#: ../../include/class/CredentialStore.class.php:1288
+#: ../../include/class/TreeGroupEdition.class.php:166
+#: ../../include/lib/Dashboard/Widgets/events_list.php:680
+#: ../../include/functions_events.php:3783
+#: ../../include/functions_filemanager.php:715
+#: ../../include/functions_container.php:190
+#: ../../include/functions_container.php:324
+#: ../../include/functions_profile.php:278
+#: ../../update_manager_client/views/online.php:123
+#: ../../update_manager_client/views/online.php:164
+#: ../../update_manager_client/views/offline.php:73
+#: ../../enterprise/tools/ipam/ipam_vlan_config.php:726
+#: ../../enterprise/tools/ipam/ipam_vlan_config.php:856
+#: ../../enterprise/tools/ipam/ipam_network_location_config.php:287
+#: ../../enterprise/tools/ipam/ipam_supernet_config.php:1209
+#: ../../enterprise/tools/ipam/ipam_supernet_config.php:1347
+#: ../../enterprise/operation/services/services.list.php:649
+#: ../../enterprise/operation/services/services.list.php:743
+#: ../../enterprise/operation/agentes/transactional_map.php:414
+#: ../../enterprise/operation/agentes/transactional_map.php:478
+#: ../../enterprise/operation/agentes/manage_transmap_creation.php:268
+#: ../../enterprise/include/ajax/transactional.ajax.php:118
+#: ../../enterprise/include/ajax/transactional.ajax.php:207
+#: ../../enterprise/include/ajax/ipam.ajax.php:755
+#: ../../enterprise/include/ajax/ipam.ajax.php:833
+#: ../../enterprise/include/class/AgentRepository.class.php:792
+#: ../../enterprise/include/class/LogSource.class.php:892
+#: ../../enterprise/include/class/ManageBackups.class.php:443
+#: ../../enterprise/include/class/Omnishell.class.php:504
+#: ../../enterprise/include/class/Omnishell.class.php:1155
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3044
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3356
+#: ../../enterprise/include/class/DeploymentCenter.class.php:1558
+#: ../../enterprise/include/functions_tasklist.php:610
+#: ../../enterprise/include/functions_tasklist.php:645
+#: ../../enterprise/include/lib/Metaconsole/Node.php:1242
+#: ../../enterprise/include/functions_services.php:2022
+#: ../../enterprise/meta/monitoring/custom_fields_view.php:1150
+#: ../../enterprise/meta/monitoring/wizard/wizard.php:143
+#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:566
+#: ../../enterprise/meta/advanced/policymanager.queue.php:349
+#: ../../enterprise/meta/advanced/metasetup.relations.php:584
+#: ../../enterprise/meta/advanced/links.php:173
+#: ../../enterprise/godmode/setup/setup_skins.php:147
+#: ../../enterprise/godmode/servers/credential_boxes_satellite.php:287
+#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:349
+#: ../../enterprise/godmode/modules/local_components.php:694
+#: ../../enterprise/godmode/modules/manage_inventory_modules.php:316
+#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:638
+#: ../../enterprise/godmode/reporting/graph_template_wizard.php:447
+#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:837
+#: ../../enterprise/godmode/reporting/mysql_builder.php:104
+#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:214
+#: ../../enterprise/godmode/reporting/graph_template_list.php:234
+#: ../../enterprise/godmode/reporting/reporting_builder.template.php:619
+#: ../../enterprise/godmode/reporting/reporting_builder.template.php:638
+#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:412
+#: ../../enterprise/godmode/agentes/inventory_manager.php:248
+#: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:249
+#: ../../enterprise/godmode/agentes/manage_config_remote.php:203
+#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:93
+#: ../../enterprise/godmode/alerts/alert_inventory_list.php:415
+#: ../../enterprise/godmode/policies/policy_agents.php:401
+#: ../../enterprise/godmode/policies/policy_agents.php:724
+#: ../../enterprise/godmode/policies/policy_agents.php:1040
+#: ../../enterprise/godmode/policies/policy_agents.php:1155
+#: ../../enterprise/godmode/policies/policy_agents.php:1304
+#: ../../enterprise/godmode/policies/policy_agents.php:1519
+#: ../../enterprise/godmode/policies/policy_queue.php:770
+#: ../../enterprise/godmode/policies/policy_queue.php:804
+#: ../../enterprise/godmode/policies/policy_queue.php:820
+#: ../../enterprise/godmode/policies/policy_modules.php:1545
+#: ../../enterprise/godmode/policies/policy_modules.php:1561
+#: ../../enterprise/godmode/policies/policy_modules.php:1612
+#: ../../enterprise/godmode/policies/policies.php:560
+#: ../../enterprise/godmode/policies/policies.php:581
+#: ../../enterprise/godmode/policies/policies.php:616
+#: ../../enterprise/godmode/policies/policy_external_alerts.php:513
+#: ../../enterprise/godmode/policies/policy_inventory_modules.php:328
+#: ../../enterprise/godmode/policies/policy_inventory_modules.php:333
+#: ../../enterprise/godmode/policies/policy_alerts.php:518
+#: ../../extensions/files_repo/files_repo_list.php:146
+#: ../../godmode/setup/news.php:290 ../../godmode/setup/links.php:160
+#: ../../godmode/servers/plugin.php:884
+#: ../../godmode/modules/manage_network_components.php:864
+#: ../../godmode/modules/manage_network_templates.php:272
+#: ../../godmode/modules/manage_network_templates.php:287
+#: ../../godmode/modules/manage_nc_groups.php:275
+#: ../../godmode/category/category.php:192
+#: ../../godmode/category/category.php:211
 #: ../../godmode/reporting/map_builder.php:512
-#: ../../godmode/reporting/map_builder.php:523 ../../godmode/setup/news.php:251
-#: ../../godmode/setup/gis.php:70 ../../godmode/setup/snmp_wizard.php:110
-#: ../../godmode/setup/setup_visuals.php:1320
-#: ../../godmode/setup/setup_visuals.php:1359
-#: ../../godmode/setup/setup_visuals.php:1379 ../../godmode/setup/links.php:146
-#: ../../godmode/agentes/planned_downtime.list.php:625
-#: ../../godmode/agentes/planned_downtime.list.php:774
+#: ../../godmode/reporting/map_builder.php:523
+#: ../../godmode/reporting/graphs.php:362
+#: ../../godmode/reporting/create_container.php:682
+#: ../../godmode/reporting/visual_console_builder.elements.php:497
+#: ../../godmode/reporting/reporting_builder.php:1179
+#: ../../godmode/reporting/reporting_builder.php:1201
+#: ../../godmode/snmpconsole/snmp_alert.php:1271
+#: ../../godmode/snmpconsole/snmp_alert.php:1319
+#: ../../godmode/snmpconsole/snmp_alert.php:1562
+#: ../../godmode/snmpconsole/snmp_filters.php:301
+#: ../../godmode/snmpconsole/snmp_filters.php:312 ../../godmode/tag/tag.php:395
+#: ../../godmode/events/event_filter.php:188
+#: ../../godmode/netflow/nf_edit.php:195
+#: ../../godmode/netflow/nf_item_list.php:262
+#: ../../godmode/massive/massive_operations.php:391
+#: ../../godmode/massive/massive_standby_alerts.php:254
+#: ../../godmode/massive/massive_edit_plugins.php:576
+#: ../../godmode/massive/massive_enable_disable_alerts.php:226
+#: ../../godmode/wizards/DiscoveryTaskList.class.php:664
+#: ../../godmode/wizards/DiscoveryTaskList.class.php:971
+#: ../../godmode/wizards/DiscoveryTaskList.class.php:997
+#: ../../godmode/wizards/DiscoveryTaskList.class.php:1010
+#: ../../godmode/wizards/DiscoveryTaskList.class.php:1021
+#: ../../godmode/agentes/module_manager.php:1161
+#: ../../godmode/agentes/module_manager.php:1175
+#: ../../godmode/agentes/module_manager.php:1200
+#: ../../godmode/agentes/module_manager.php:1223
+#: ../../godmode/agentes/module_manager.php:1248
+#: ../../godmode/agentes/module_manager_editor_common.php:233
+#: ../../godmode/agentes/agent_manager.php:237
+#: ../../godmode/agentes/planned_downtime.editor.php:1009
 #: ../../godmode/agentes/fields_manager.php:155
 #: ../../godmode/agentes/agent_template.php:259
-#: ../../godmode/agentes/planned_downtime.editor.php:962
-#: ../../godmode/agentes/planned_downtime.editor.php:965
-#: ../../godmode/agentes/planned_downtime.editor.php:1015
-#: ../../godmode/agentes/module_manager.php:868
-#: ../../godmode/agentes/module_manager.php:1228
-#: ../../godmode/agentes/module_manager_editor_common.php:1307
-#: ../../godmode/groups/modu_group_list.php:254
-#: ../../godmode/groups/group_list.php:937
-#: ../../godmode/groups/group_list.php:938
-#: ../../godmode/alerts/alert_list.list.php:909
-#: ../../godmode/alerts/alert_templates.php:445
-#: ../../godmode/alerts/alert_actions.php:331
-#: ../../godmode/alerts/alert_actions.php:449
-#: ../../godmode/users/profile_list.php:443 ../../godmode/users/user_list.php:825
-#: ../../godmode/events/event_filter.php:192
-#: ../../godmode/events/event_filter.php:211
-#: ../../godmode/events/event_responses.list.php:71
-#: ../../godmode/modules/manage_network_components.php:868
-#: ../../godmode/modules/manage_network_components.php:869
-#: ../../godmode/modules/manage_network_components.php:898
-#: ../../godmode/modules/manage_nc_groups.php:276
-#: ../../godmode/modules/manage_nc_groups.php:305
-#: ../../godmode/modules/manage_network_templates_form.php:254
-#: ../../godmode/modules/manage_network_templates.php:287
-#: ../../godmode/modules/manage_network_templates.php:300
-#: ../../godmode/servers/servers.build_table.php:245
-#: ../../godmode/extensions.php:257 ../../godmode/extensions.php:259
-#: ../../enterprise/operation/agentes/transactional_map.php:483
-#: ../../enterprise/operation/agentes/manage_transmap_creation.php:269
-#: ../../enterprise/operation/services/services.list.php:655
-#: ../../enterprise/tools/ipam/ipam_network_location_config.php:288
-#: ../../enterprise/tools/ipam/ipam_network_location_config.php:304
-#: ../../enterprise/tools/ipam/ipam_supernet_config.php:1095
-#: ../../enterprise/tools/ipam/ipam_ajax.php:136
-#: ../../enterprise/tools/ipam/ipam_vlan_config.php:807
-#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:413
-#: ../../enterprise/godmode/reporting/reporting_builder.template.php:646
-#: ../../enterprise/godmode/reporting/reporting_builder.template.php:674
-#: ../../enterprise/godmode/reporting/graph_template_list.php:246
-#: ../../enterprise/godmode/reporting/visual_console_template.php:273
-#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:215
-#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:225
-#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:389
-#: ../../enterprise/godmode/reporting/mysql_builder.php:97
-#: ../../enterprise/godmode/reporting/mysql_builder.php:104
-#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:148
-#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:238
-#: ../../enterprise/godmode/massive/massive_delete_services.php:92
-#: ../../enterprise/godmode/setup/setup_acl.php:595
-#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:687
-#: ../../enterprise/godmode/agentes/inventory_manager.php:249
-#: ../../enterprise/godmode/agentes/plugins_manager.php:196
-#: ../../enterprise/godmode/agentes/plugins_manager.php:281
-#: ../../enterprise/godmode/policies/policies.php:591
-#: ../../enterprise/godmode/policies/policy_external_alerts.php:550
-#: ../../enterprise/godmode/policies/policy_modules.php:1573
-#: ../../enterprise/godmode/policies/policy_modules.php:1605
-#: ../../enterprise/godmode/policies/policy_inventory_modules.php:334
-#: ../../enterprise/godmode/policies/policy_plugins.php:169
-#: ../../enterprise/godmode/policies/policy_agents.php:1083
-#: ../../enterprise/godmode/policies/policy_agents.php:1545
-#: ../../enterprise/godmode/policies/policy_alerts.php:539
-#: ../../enterprise/godmode/policies/policy_queue.php:596
-#: ../../enterprise/godmode/policies/policy_queue.php:660
-#: ../../enterprise/godmode/policies/policy_queue.php:707
-#: ../../enterprise/godmode/modules/local_components.php:698
-#: ../../enterprise/godmode/modules/local_components.php:715
-#: ../../enterprise/godmode/modules/manage_inventory_modules.php:317
-#: ../../enterprise/godmode/modules/manage_inventory_modules.php:332
-#: ../../enterprise/godmode/servers/credential_boxes_satellite.php:252
-#: ../../enterprise/godmode/servers/credential_boxes_satellite.php:287
-#: ../../enterprise/include/functions_tasklist.php:615
-#: ../../enterprise/include/functions_tasklist.php:650
-#: ../../enterprise/include/class/NetworkConfigManager.class.php:644
-#: ../../enterprise/include/class/NetworkConfigManager.class.php:800
-#: ../../enterprise/include/class/NetworkConfigManager.class.php:976
-#: ../../enterprise/include/class/NetworkConfigManager.class.php:1123
-#: ../../enterprise/include/class/NetworkConfigManager.class.php:1331
-#: ../../enterprise/include/class/Omnishell.class.php:1163
-#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2397
-#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3052
-#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3372
-#: ../../enterprise/include/class/AgentRepository.class.php:775
-#: ../../enterprise/include/class/AgentRepository.class.php:810
-#: ../../enterprise/include/class/DeploymentCenter.class.php:1537
-#: ../../enterprise/include/class/DeploymentCenter.class.php:1576
-#: ../../enterprise/include/class/LogSource.class.php:772
-#: ../../enterprise/include/class/LogSource.class.php:894
-#: ../../enterprise/include/class/ManageBackups.class.php:275
-#: ../../enterprise/include/lib/Metaconsole/Node.php:1252
-#: ../../enterprise/include/lib/Metaconsole/Node.php:1253
-#: ../../enterprise/include/lib/ClusterViewer/ClusterManager.php:634
-#: ../../enterprise/include/ajax/log_viewer.ajax.php:96
-#: ../../enterprise/include/ajax/transactional.ajax.php:119
-#: ../../enterprise/include/ajax/transactional.ajax.php:208
-#: ../../enterprise/include/ajax/servers.ajax.php:103
-#: ../../enterprise/meta/advanced/policymanager.queue.php:220
-#: ../../enterprise/meta/advanced/policymanager.queue.php:262
-#: ../../enterprise/meta/advanced/policymanager.queue.php:319
-#: ../../enterprise/meta/advanced/metasetup.visual.php:434
-#: ../../enterprise/meta/advanced/servers.build_table.php:133
-#: ../../enterprise/meta/advanced/metasetup.relations.php:589
-#: ../../enterprise/meta/advanced/metasetup.relations.php:590
-#: ../../enterprise/meta/advanced/metasetup.relations.php:634
-#: ../../enterprise/meta/advanced/links.php:157
-#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:570
-#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:598
-#: ../../enterprise/meta/include/functions_autoprovision.php:517
-#: ../../enterprise/meta/include/functions_autoprovision.php:518
-#: ../../enterprise/meta/include/functions_autoprovision.php:685
-#: ../../enterprise/meta/include/functions_autoprovision.php:686
-#: ../../enterprise/meta/include/functions_wizard_meta.php:396
-#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:300
-#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:466
-#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:817
-#: ../../include/functions_container.php:191
-#: ../../include/functions_container.php:325 ../../include/functions_cron.php:895
-#: ../../include/functions_cron.php:923
-#: ../../include/class/CredentialStore.class.php:1102
-#: ../../include/class/CredentialStore.class.php:1290
-#: ../../include/class/ManageNetScanScripts.class.php:405
-#: ../../include/class/ConfigPEN.class.php:264
-#: ../../include/class/NetworkMap.class.php:2798
-#: ../../include/class/CalendarManager.class.php:686
-#: ../../include/class/ModuleTemplates.class.php:933
-#: ../../include/class/ModuleTemplates.class.php:1211
-#: ../../extensions/files_repo/files_repo_list.php:151
-#: ../../views/dashboard/list.php:103
-msgid "Delete"
+#: ../../godmode/agentes/modificar_agente.php:929
+#: ../../godmode/alerts/alert_list.list.php:1116
+#: ../../godmode/alerts/alert_actions.php:424
+#: ../../godmode/alerts/alert_templates.php:436
+#: ../../godmode/alerts/alert_commands.php:721
+#: ../../godmode/alerts/alert_commands.php:724
+#: ../../godmode/users/configure_user.php:1635
+#: ../../godmode/users/configure_user.php:1930
+#: ../../godmode/users/profile_list.php:439
+#: ../../godmode/groups/modu_group_list.php:273
+#: ../../godmode/groups/modu_group_list.php:276
+#: ../../godmode/groups/group_list.php:926
+msgid "Are you sure?"
+msgstr "¿Estás seguro?"
+
+#: ../../views/calendar/special_days.php:442
+#: ../../operation/events/events.php:642 ../../operation/events/events.php:716
+#: ../../operation/events/events_list.php:630
+#: ../../operation/events/events_list.php:703
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:4319
+#: ../../enterprise/include/functions_ui.php:120
+#: ../../enterprise/include/functions_ui.php:168
+#: ../../enterprise/godmode/massive/massive_edit_tags_policy.php:177
+#: ../../enterprise/godmode/massive/massive_tags_edit_policy.php:161
+#: ../../enterprise/godmode/agentes/collection_manager.php:210
+#: ../../enterprise/godmode/policies/policy_collections.php:173
+#: ../../godmode/events/event_edit_filter.php:537
+#: ../../godmode/events/event_edit_filter.php:590
+#: ../../godmode/alerts/configure_alert_template.php:1548
+msgid "Remove"
 msgstr "Eliminar"
 
-#: ../../operation/snmpconsole/snmp_view.php:1061
-#: ../../operation/snmpconsole/snmp_view.php:1062 ../../operation/menu.php:239
-#: ../../operation/menu.php:241 ../../operation/events/events.php:2022
-#: ../../operation/events/events.php:2188
-#: ../../operation/events/events.build_table.php:843
-#: ../../enterprise/operation/agentes/wux_console_view.php:595
-#: ../../include/functions_events.php:7282
-msgid "Show more"
-msgstr "Mostrar más"
+#: ../../views/calendar/special_days.php:507
+msgid "Load calendar"
+msgstr "Cargar calendario"
 
-#: ../../operation/snmpconsole/snmp_view.php:1076
-msgid "Variable bindings:"
-msgstr "Enlaces variables"
-
-#: ../../operation/snmpconsole/snmp_view.php:1089
-msgid "See more details"
-msgstr "Ver más detalles"
-
-#: ../../operation/snmpconsole/snmp_view.php:1101
-msgid "Enterprise String:"
-msgstr "Cadena Enterprise:"
-
-#: ../../operation/snmpconsole/snmp_view.php:1107
-#: ../../enterprise/godmode/agentes/collections.data.php:523
-#: ../../enterprise/meta/advanced/collections.data.php:432
-#: ../../enterprise/meta/include/functions_autoprovision.php:569
-msgid "Description:"
-msgstr "Descripción:"
-
-#: ../../operation/snmpconsole/snmp_view.php:1153
-msgid "Trap type:"
-msgstr "Tipo trap:"
-
-#: ../../operation/snmpconsole/snmp_view.php:1179
-msgid "Count:"
-msgstr "Contar:"
-
-#: ../../operation/snmpconsole/snmp_view.php:1183
-msgid "First trap:"
-msgstr "Primer trap:"
-
-#: ../../operation/snmpconsole/snmp_view.php:1187
-msgid "Last trap:"
-msgstr "Último trap:"
-
-#: ../../operation/snmpconsole/snmp_view.php:1208
-msgid "No matching traps found"
-msgstr "No se encontraron traps coincidentes."
-
-#: ../../operation/snmpconsole/snmp_view.php:1272
-#: ../../godmode/snmpconsole/snmp_alert.php:1469
-#: ../../enterprise/operation/services/services.service_map.php:104
-#: ../../include/functions_reporting_html.php:2003
-#: ../../extensions/module_groups.php:391 ../../extensions/agents_modules.php:947
-msgid "Legend"
-msgstr "Leyenda"
-
-#: ../../operation/snmpconsole/snmp_view.php:1298
-#: ../../operation/events/events.php:2763 ../../extensions/agents_modules.php:76
-#: ../../views/dashboard/jsLayout.php:42
-msgid "Until next"
-msgstr "Hasta el próximo"
-
-#: ../../operation/search_results.php:67
-msgid "Global search"
-msgstr "Búsqueda global"
-
-#: ../../operation/search_results.php:80
-#: ../../operation/agentes/group_view.php:183
-#: ../../operation/agentes/group_view.php:216
-#: ../../operation/agentes/interface_view.functions.php:71
-#: ../../godmode/reporting/reporting_builder.item_editor.php:1671
-#: ../../godmode/reporting/reporting_builder.item_editor.php:1733
-#: ../../godmode/reporting/reporting_builder.item_editor.php:1980
-#: ../../godmode/reporting/visual_console_builder.wizard.php:408
-#: ../../godmode/reporting/reporting_builder.list_items.php:208
-#: ../../godmode/reporting/reporting_builder.list_items.php:229
-#: ../../godmode/massive/massive_delete_alerts.php:308
-#: ../../godmode/massive/massive_delete_agents.php:280
-#: ../../godmode/massive/massive_add_alerts.php:231
-#: ../../godmode/massive/massive_standby_alerts.php:203
-#: ../../godmode/massive/massive_edit_agents.php:566
-#: ../../godmode/massive/massive_edit_modules.php:511
-#: ../../godmode/massive/massive_edit_plugins.php:367
-#: ../../godmode/massive/massive_delete_modules.php:535
-#: ../../godmode/massive/massive_enable_disable_alerts.php:174
-#: ../../godmode/agentes/planned_downtime.list.php:84
-#: ../../godmode/agentes/planned_downtime.list.php:108
-#: ../../godmode/alerts/alert_list.list.php:69
-#: ../../enterprise/operation/services/services.service_map.php:123
-#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:205
-#: ../../enterprise/godmode/reporting/reporting_builder.global.php:220
-#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:291
-#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:248
-#: ../../enterprise/godmode/massive/massive_add_service_elements.php:361
-#: ../../enterprise/godmode/massive/massive_create_services.php:964
-#: ../../enterprise/godmode/agentes/collections.editor.php:74
-#: ../../enterprise/godmode/agentes/collections.agents.php:53
-#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:100
-#: ../../enterprise/godmode/agentes/collections.data.php:137
-#: ../../enterprise/godmode/agentes/collections.data.php:283
-#: ../../enterprise/godmode/policies/policies.php:407
-#: ../../enterprise/godmode/policies/policies.php:531
-#: ../../enterprise/godmode/policies/policy.php:71
-#: ../../enterprise/godmode/policies/policy_agents.php:531
-#: ../../enterprise/godmode/policies/policy_agents.php:664
-#: ../../enterprise/godmode/policies/policy_agents.php:778
-#: ../../enterprise/godmode/policies/policy_queue.php:633
-#: ../../enterprise/include/functions_cron.php:215
-#: ../../enterprise/include/functions_tasklist.php:338
-#: ../../enterprise/include/functions_reporting_pdf.php:861
-#: ../../enterprise/include/functions_policies.php:3822
-#: ../../enterprise/meta/advanced/policymanager.queue.php:258
-#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:362
-#: ../../enterprise/meta/include/functions_autoprovision.php:476
-#: ../../enterprise/meta/monitoring/group_view.php:154
-#: ../../enterprise/meta/monitoring/group_view.php:215
-#: ../../enterprise/meta/monitoring/wizard/wizard.php:304
-#: ../../include/functions_cron.php:663 ../../include/functions_html.php:1645
-#: ../../include/functions_reporting_html.php:1816
-#: ../../include/functions_reporting_html.php:2285
-#: ../../include/functions_reporting_html.php:3034
-#: ../../include/class/NetworkMap.class.php:3228
-#: ../../include/class/Diagnostics.class.php:1161
-#: ../../include/class/Diagnostics.class.php:1165
-#: ../../include/class/Diagnostics.class.php:1169
-#: ../../include/class/Diagnostics.class.php:1173
-#: ../../include/class/AgentsAlerts.class.php:252
-#: ../../include/class/AgentsAlerts.class.php:542
-#: ../../include/lib/Dashboard/Widgets/groups_status.php:311
-#: ../../include/lib/Dashboard/Widgets/groups_status.php:316
-#: ../../include/lib/Dashboard/Widgets/agent_module.php:448
-#: ../../include/functions_groups.php:53 ../../extensions/agents_modules.php:431
-#: ../../extensions/agents_modules.php:758 ../../mobile/operation/agent.php:155
-#: ../../mobile/operation/home.php:81 ../../mobile/operation/agents.php:204
-#: ../../mobile/include/functions_web.php:23
-msgid "Agents"
-msgstr "Agentes"
-
-#: ../../operation/search_results.php:93
-#: ../../godmode/massive/massive_add_profiles.php:204
-#: ../../godmode/massive/massive_delete_profiles.php:153
-#: ../../include/functions_reporting.php:11579
-msgid "Users"
-msgstr "Usuarios"
-
-#: ../../operation/search_results.php:106
+#: ../../views/calendar/special_days_edit.php:40
+#: ../../operation/search_agents.php:57
 #: ../../operation/agentes/estado_agente.php:766
 #: ../../operation/agentes/ver_agente.php:1418
-#: ../../operation/search_agents.php:57
+#: ../../operation/search_results.php:106 ../../include/functions_reports.php:843
+#: ../../include/functions_reports.php:847
+#: ../../include/functions_reports.php:853
+#: ../../include/functions_reports.php:859
+#: ../../include/class/AgentsAlerts.class.php:542
+#: ../../include/functions_treeview.php:405
+#: ../../include/functions_reporting_html.php:2313
+#: ../../include/functions_reporting_html.php:5335
+#: ../../enterprise/operation/agentes/tag_view.php:608
+#: ../../enterprise/include/functions_policies.php:3761
+#: ../../enterprise/meta/include/functions_wizard_meta.php:1537
+#: ../../enterprise/meta/include/functions_wizard_meta.php:1630
+#: ../../enterprise/meta/include/functions_wizard_meta.php:1755
+#: ../../enterprise/meta/monitoring/wizard/wizard.php:297
+#: ../../enterprise/meta/monitoring/wizard/wizard.module.web.php:102
+#: ../../enterprise/meta/monitoring/wizard/wizard.module.local.php:109
+#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:797
+#: ../../enterprise/meta/monitoring/wizard/wizard.module.network.php:121
+#: ../../enterprise/meta/agentsearch.php:141
+#: ../../enterprise/godmode/services/services.service.php:903
+#: ../../enterprise/godmode/massive/massive_create_services.php:877
+#: ../../enterprise/godmode/alerts/alert_inventory.php:78
+#: ../../enterprise/godmode/alerts/alert_inventory.php:80
+#: ../../enterprise/godmode/policies/policies.php:519
+#: ../../enterprise/godmode/policies/policy_alerts.php:46
+#: ../../mobile/operation/agent.php:355 ../../mobile/operation/home.php:74
+#: ../../mobile/operation/alerts.php:194 ../../mobile/operation/agents.php:98
+#: ../../mobile/operation/agents.php:407
+#: ../../mobile/include/functions_web.php:26 ../../godmode/menu.php:220
 #: ../../godmode/massive/massive_copy_modules.php:216
 #: ../../godmode/agentes/configurar_agente.php:421
 #: ../../godmode/agentes/modificar_agente.php:823
-#: ../../godmode/groups/configure_group.php:230
-#: ../../godmode/groups/group_list.php:846
-#: ../../godmode/alerts/configure_alert_command.php:60
 #: ../../godmode/alerts/configure_alert_template.php:99
 #: ../../godmode/alerts/configure_alert_template.php:123
 #: ../../godmode/alerts/configure_alert_template.php:155
-#: ../../godmode/alerts/alert_commands.php:494
-#: ../../godmode/alerts/alert_list.php:494
-#: ../../godmode/alerts/alert_list.php:496
+#: ../../godmode/alerts/alert_actions.php:74
 #: ../../godmode/alerts/alert_templates.php:131
 #: ../../godmode/alerts/alert_templates.php:183
 #: ../../godmode/alerts/alert_templates.php:206
 #: ../../godmode/alerts/alert_templates.php:227
-#: ../../godmode/alerts/alert_actions.php:74
+#: ../../godmode/alerts/alert_commands.php:494
+#: ../../godmode/alerts/alert_list.php:494
+#: ../../godmode/alerts/alert_list.php:496
+#: ../../godmode/alerts/configure_alert_command.php:60
 #: ../../godmode/alerts/configure_alert_action.php:74
-#: ../../godmode/alerts/configure_alert_action.php:87 ../../godmode/menu.php:220
-#: ../../enterprise/operation/agentes/tag_view.php:608
-#: ../../enterprise/godmode/massive/massive_create_services.php:877
-#: ../../enterprise/godmode/policies/policies.php:519
-#: ../../enterprise/godmode/policies/policy_alerts.php:46
-#: ../../enterprise/godmode/alerts/alert_inventory.php:78
-#: ../../enterprise/godmode/alerts/alert_inventory.php:80
-#: ../../enterprise/godmode/services/services.service.php:903
-#: ../../enterprise/include/functions_policies.php:3761
-#: ../../enterprise/meta/include/functions_wizard_meta.php:1529
-#: ../../enterprise/meta/include/functions_wizard_meta.php:1621
-#: ../../enterprise/meta/include/functions_wizard_meta.php:1745
-#: ../../enterprise/meta/agentsearch.php:141
-#: ../../enterprise/meta/monitoring/wizard/wizard.php:297
-#: ../../enterprise/meta/monitoring/wizard/wizard.module.network.php:121
-#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:796
-#: ../../enterprise/meta/monitoring/wizard/wizard.module.web.php:102
-#: ../../enterprise/meta/monitoring/wizard/wizard.module.local.php:109
-#: ../../include/functions_reports.php:843
-#: ../../include/functions_reports.php:847
-#: ../../include/functions_reports.php:853
-#: ../../include/functions_reports.php:859
-#: ../../include/functions_treeview.php:405
-#: ../../include/functions_reporting_html.php:2313
-#: ../../include/functions_reporting_html.php:5335
-#: ../../include/class/AgentsAlerts.class.php:542
-#: ../../mobile/operation/agent.php:355 ../../mobile/operation/home.php:74
-#: ../../mobile/operation/alerts.php:194 ../../mobile/operation/agents.php:98
-#: ../../mobile/operation/agents.php:407
-#: ../../mobile/include/functions_web.php:26
-#: ../../views/calendar/special_days_edit.php:40
+#: ../../godmode/alerts/configure_alert_action.php:87
+#: ../../godmode/groups/configure_group.php:230
+#: ../../godmode/groups/group_list.php:846
 msgid "Alerts"
 msgstr "Alertas"
 
-#: ../../operation/search_results.php:119
-#: ../../operation/agentes/ver_agente.php:1551
-#: ../../include/functions_reports.php:638
-#: ../../include/functions_reports.php:642
-#: ../../include/functions_reports.php:647
-#: ../../include/functions_reports.php:653
-#: ../../include/functions_reports.php:660
-#: ../../include/functions_reports.php:664
-#: ../../include/functions_reports.php:668
-#: ../../include/functions_reports.php:675
-#: ../../include/functions_reports.php:681
-#: ../../include/functions_reports.php:686 ../../include/functions_groups.php:123
-#: ../../include/functions_groups.php:187
-msgid "Graphs"
-msgstr "Gráficos"
-
-#: ../../operation/search_results.php:132
-#: ../../enterprise/meta/general/main_header.php:167
-#: ../../enterprise/meta/general/main_header.php:183
-#: ../../enterprise/meta/general/main_menu.php:269
-#: ../../enterprise/mobile/include/functions_web.php:15
-#: ../../include/functions_reporting.php:15012
-#: ../../include/functions_groups.php:139
-msgid "Reports"
-msgstr "Informes"
-
-#: ../../operation/search_results.php:145 ../../operation/search_main.php:70
-#: ../../mobile/operation/home.php:66 ../../mobile/operation/visualmaps.php:184
-msgid "Visual consoles"
-msgstr "Consola visual"
-
-#: ../../operation/search_results.php:158
-#: ../../operation/agentes/estado_agente.php:760
-#: ../../operation/agentes/group_view.php:184
-#: ../../operation/agentes/group_view.php:217
-#: ../../operation/agentes/graphs.php:188
-#: ../../operation/agentes/exportdata.php:282 ../../operation/tree.php:114
-#: ../../operation/search_agents.php:55
-#: ../../godmode/reporting/reporting_builder.item_editor.php:1800
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2021
-#: ../../godmode/reporting/visual_console_builder.wizard.php:432
-#: ../../godmode/reporting/reporting_builder.list_items.php:210
-#: ../../godmode/reporting/reporting_builder.list_items.php:239
-#: ../../godmode/massive/massive_edit_modules.php:425
-#: ../../godmode/massive/massive_copy_modules.php:199
-#: ../../godmode/massive/massive_edit_plugins.php:383
-#: ../../godmode/massive/massive_delete_modules.php:463
-#: ../../godmode/agentes/planned_downtime.list.php:85
-#: ../../godmode/agentes/planned_downtime.list.php:115
-#: ../../godmode/agentes/planned_downtime.editor.php:918
-#: ../../godmode/agentes/planned_downtime.editor.php:993
-#: ../../godmode/agentes/configurar_agente.php:405
-#: ../../godmode/agentes/configurar_agente.php:723
-#: ../../godmode/agentes/modificar_agente.php:817
-#: ../../godmode/servers/servers.build_table.php:69
-#: ../../enterprise/operation/agentes/tag_view.php:606
-#: ../../enterprise/operation/services/services.service_map.php:128
-#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:229
-#: ../../enterprise/godmode/reporting/reporting_builder.global.php:222
-#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:297
-#: ../../enterprise/godmode/massive/massive_edit_tags_policy.php:128
-#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:473
-#: ../../enterprise/godmode/massive/massive_add_service_elements.php:362
-#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:176
-#: ../../enterprise/godmode/massive/massive_create_services.php:965
-#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:111
-#: ../../enterprise/godmode/policies/policies.php:509
-#: ../../enterprise/godmode/policies/policy_modules.php:458
-#: ../../enterprise/include/functions_reporting_pdf.php:861
-#: ../../enterprise/include/functions_policies.php:3720
-#: ../../enterprise/meta/advanced/servers.build_table.php:64
-#: ../../enterprise/meta/include/functions_wizard_meta.php:407
-#: ../../enterprise/meta/include/functions_wizard_meta.php:1813
-#: ../../enterprise/meta/agentsearch.php:139
-#: ../../enterprise/meta/monitoring/group_view.php:155
-#: ../../enterprise/meta/monitoring/group_view.php:221
-#: ../../enterprise/meta/monitoring/wizard/wizard.php:292
-#: ../../enterprise/meta/monitoring/wizard/wizard.agent.php:65
-#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:446
-#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:714
-#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:793
-#: ../../include/functions_reports.php:733
-#: ../../include/functions_reports.php:737
-#: ../../include/functions_reports.php:741
-#: ../../include/functions_reports.php:745
-#: ../../include/functions_reports.php:749
-#: ../../include/functions_reports.php:753
-#: ../../include/functions_reports.php:757
-#: ../../include/functions_reports.php:761
-#: ../../include/functions_reports.php:765 ../../include/functions_html.php:1708
-#: ../../include/functions_reporting_html.php:1816
-#: ../../include/functions_reporting_html.php:5326
-#: ../../include/class/AgentsAlerts.class.php:253
-#: ../../include/lib/Dashboard/Widgets/groups_status.php:385
-#: ../../include/lib/Dashboard/Widgets/groups_status.php:391
-#: ../../include/lib/Dashboard/Widgets/tree_view.php:331
-#: ../../include/lib/Dashboard/Widgets/agent_module.php:448
-#: ../../extensions/agents_modules.php:758 ../../mobile/operation/agent.php:327
-#: ../../mobile/operation/home.php:88 ../../mobile/operation/agents.php:96
-#: ../../mobile/operation/agents.php:409 ../../mobile/operation/modules.php:236
-msgid "Modules"
-msgstr "Módulos"
-
-#: ../../operation/search_results.php:171 ../../operation/search_main.php:73
-#: ../../operation/tree.php:127
-#: ../../enterprise/operation/agentes/ver_agente.php:239
-#: ../../enterprise/include/functions_groups.php:33
-#: ../../enterprise/meta/advanced/policymanager.apply.php:198
-#: ../../include/functions_networkmap.php:1299
-#: ../../include/functions_maps.php:42
-#: ../../include/lib/Dashboard/Widgets/tree_view.php:333
-msgid "Policies"
-msgstr "Políticas"
-
-#: ../../operation/search_results.php:192
-#: ../../operation/agentes/alerts_status.functions.php:194
-#: ../../operation/agentes/alerts_status.functions.php:203
-#: ../../operation/agentes/estado_agente.php:267
-#: ../../operation/agentes/estado_agente.php:291
-#: ../../operation/agentes/status_monitor.php:556
-#: ../../godmode/reporting/reporting_builder.item_editor.php:1139
-#: ../../godmode/reporting/visual_console_favorite.php:158
-#: ../../godmode/reporting/visual_console_favorite.php:188
-#: ../../godmode/reporting/graphs.php:241
-#: ../../godmode/reporting/reporting_builder.php:795
-#: ../../godmode/reporting/map_builder.php:350
-#: ../../godmode/reporting/map_builder.php:372
-#: ../../godmode/agentes/planned_downtime.list.php:284
-#: ../../godmode/agentes/planned_downtime.list.php:368
-#: ../../godmode/agentes/module_manager.php:65
-#: ../../godmode/agentes/modificar_agente.php:363
-#: ../../godmode/agentes/modificar_agente.php:372
-#: ../../godmode/groups/group_list.php:785
-#: ../../godmode/groups/group_list.php:795
-#: ../../godmode/alerts/alert_templates.php:314
-#: ../../godmode/alerts/alert_templates.php:325
-#: ../../godmode/alerts/alert_actions.php:244
-#: ../../godmode/alerts/alert_actions.php:302
-#: ../../godmode/users/user_list.php:402 ../../godmode/users/user_list.php:412
-#: ../../godmode/module_library/module_library_view.php:102
-#: ../../godmode/module_library/module_library_view.php:112
-#: ../../godmode/modules/manage_network_components.php:678
-#: ../../enterprise/operation/agentes/agent_inventory.php:109
-#: ../../enterprise/operation/agentes/agent_inventory.php:114
-#: ../../enterprise/operation/agentes/tag_view.php:219
-#: ../../enterprise/operation/inventory/inventory.php:360
-#: ../../enterprise/operation/inventory/inventory.php:413
-#: ../../enterprise/operation/log/log_viewer.php:513
-#: ../../enterprise/operation/log/log_viewer.php:796
-#: ../../enterprise/operation/services/services.treeview_services.php:128
-#: ../../enterprise/operation/services/services.list.php:225
-#: ../../enterprise/operation/services/services.list.php:318
-#: ../../enterprise/operation/services/services.table_services.php:147
-#: ../../enterprise/operation/services/services.table_services.php:238
-#: ../../enterprise/tools/ipam/ipam_network_location_config.php:164
-#: ../../enterprise/tools/ipam/ipam_network_location_config.php:173
-#: ../../enterprise/tools/ipam/ipam_supernet_config.php:563
-#: ../../enterprise/tools/ipam/ipam_supernet_config.php:600
-#: ../../enterprise/tools/ipam/ipam_list.php:90
-#: ../../enterprise/tools/ipam/ipam_list.php:164
-#: ../../enterprise/tools/ipam/ipam_vlan_config.php:432
-#: ../../enterprise/tools/ipam/ipam_vlan_config.php:439
-#: ../../enterprise/godmode/agentes/collection_manager.php:48
-#: ../../enterprise/godmode/agentes/collections.php:313
-#: ../../enterprise/godmode/policies/policy_collections.php:254
-#: ../../enterprise/godmode/policies/policy_agents.php:822
-#: ../../enterprise/godmode/policies/policy_agents.php:835
-#: ../../enterprise/godmode/alerts/alert_inventory_list.php:151
-#: ../../enterprise/godmode/alerts/alert_inventory_list.php:162
-#: ../../enterprise/godmode/modules/local_components.php:573
-#: ../../enterprise/godmode/modules/local_components.php:598
-#: ../../enterprise/meta/advanced/metasetup.translate_string.php:186
-#: ../../enterprise/meta/advanced/metasetup.relations.php:451
-#: ../../enterprise/meta/advanced/collections.php:166
-#: ../../enterprise/meta/advanced/collections.php:179
-#: ../../enterprise/meta/general/main_header.php:689
-#: ../../enterprise/meta/general/main_header.php:691
-#: ../../enterprise/meta/general/header.php:44
-#: ../../enterprise/meta/general/header.php:46
-#: ../../enterprise/meta/agentsearch.php:110
-#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:264
-#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:361
-#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:418
-#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:686
-#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:757
-#: ../../enterprise/extensions/translate_string.php:323
-#: ../../general/ui/agents_list.php:100 ../../general/ui/agents_list.php:113
-#: ../../include/functions_snmp_browser.php:925
-#: ../../include/functions_snmp_browser.php:1501
-#: ../../include/functions_snmp.php:358
-#: ../../include/class/AuditLog.class.php:180
-#: ../../include/class/CalendarManager.class.php:1020
-#: ../../include/class/AgentWizard.class.php:2617
-#: ../../include/ajax/heatmap.ajax.php:70 ../../extensions/module_groups.php:283
-#: ../../mobile/operation/agent.php:320
-msgid "Search"
-msgstr "Buscar"
-
-#: ../../operation/reporting/custom_reporting.php:23
-#: ../../operation/reporting/reporting_viewer.php:211
-#: ../../operation/reporting/reporting_viewer.php:216
-#: ../../operation/reporting/reporting_viewer.php:229
-#: ../../operation/reporting/graph_viewer.php:267
-#: ../../operation/reporting/graph_viewer.php:513 ../../operation/menu.php:311
-#: ../../godmode/reporting/graph_container.php:118
-#: ../../godmode/reporting/graphs.php:129
-#: ../../godmode/reporting/reporting_builder.php:572
-#: ../../godmode/reporting/reporting_builder.php:579
-#: ../../godmode/reporting/reporting_builder.php:592
-#: ../../godmode/reporting/reporting_builder.php:3471
-#: ../../godmode/reporting/reporting_builder.php:3478
-#: ../../godmode/reporting/reporting_builder.php:3491
-#: ../../godmode/reporting/reporting_builder.php:3582
-#: ../../godmode/reporting/reporting_builder.php:3589
-#: ../../godmode/reporting/reporting_builder.php:3605
-#: ../../godmode/reporting/reporting_builder.php:3634
-#: ../../godmode/reporting/graph_builder.php:366
-#: ../../enterprise/operation/agentes/transactional_map.php:70
-#: ../../enterprise/operation/agentes/manage_transmap_creation.php:169
-#: ../../enterprise/operation/agentes/manage_transmap_creation.php:349
-#: ../../enterprise/operation/agentes/manage_transmap_creation.php:471
-#: ../../enterprise/operation/agentes/manage_transmap.php:172
-#: ../../enterprise/godmode/reporting/reporting_builder.template.php:272
-#: ../../enterprise/godmode/reporting/reporting_builder.template.php:285
-#: ../../enterprise/godmode/reporting/reporting_builder.template.php:306
-#: ../../enterprise/godmode/reporting/reporting_builder.template.php:319
-#: ../../enterprise/godmode/reporting/reporting_builder.template.php:340
-#: ../../enterprise/godmode/reporting/reporting_builder.template.php:353
-#: ../../enterprise/godmode/reporting/reporting_builder.template.php:374
-#: ../../enterprise/godmode/reporting/reporting_builder.template.php:387
-#: ../../enterprise/godmode/reporting/graph_template_editor.php:103
-#: ../../enterprise/godmode/reporting/graph_template_wizard.php:144
-#: ../../enterprise/godmode/reporting/graph_template_list.php:128
-#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:74
-#: ../../enterprise/godmode/reporting/mysql_builder.php:75
-#: ../../enterprise/godmode/reporting/mysql_builder.php:202
-#: ../../enterprise/meta/general/logon_ok.php:66
-msgid "Reporting"
-msgstr "Informes"
-
-#: ../../operation/reporting/custom_reporting.php:23 ../../operation/menu.php:318
-#: ../../godmode/reporting/reporting_builder.php:551
-#: ../../godmode/reporting/reporting_builder.php:3450
-msgid "Custom reporting"
-msgstr "Informes personalizados"
-
-#: ../../operation/reporting/custom_reporting.php:28
-#: ../../operation/reporting/graph_viewer.php:539
-msgid "There are no defined reportings"
-msgstr "No hay informes definidos"
-
-#: ../../operation/reporting/reporting_viewer.php:101
-#: ../../godmode/reporting/reporting_builder.php:210
-msgid "Your report has been planned, and the system will email you a "
-msgstr "Se ha planificado su informe, el sistema le enviará un email a "
-
-#: ../../operation/reporting/reporting_viewer.php:102
-#: ../../godmode/reporting/reporting_builder.php:211
-msgid "An error has ocurred"
-msgstr "Ha ocurrido un error"
-
-#: ../../operation/reporting/reporting_viewer.php:119
-#: ../../godmode/netflow/nf_item_list.php:27
-msgid "Report list"
-msgstr "Lista de informes"
-
-#: ../../operation/reporting/reporting_viewer.php:139
-#: ../../operation/reporting/graph_viewer.php:193
-#: ../../operation/visual_console/legacy_view.php:147
-#: ../../operation/visual_console/view.php:160
-#: ../../godmode/reporting/visual_console_builder.php:809
-#: ../../godmode/reporting/reporting_builder.main.php:73
-#: ../../godmode/reporting/reporting_builder.php:3529
-#: ../../godmode/reporting/graph_builder.php:298
-#: ../../enterprise/meta/screens/screens.visualmap.php:241
-msgid "Main data"
-msgstr "Datos principales"
-
-#: ../../operation/reporting/reporting_viewer.php:148
-#: ../../godmode/reporting/reporting_builder.php:3533
-#: ../../enterprise/godmode/reporting/reporting_builder.template.php:162
-#: ../../enterprise/godmode/reporting/reporting_builder.template.php:205
-msgid "List items"
-msgstr "Listado de elementos"
-
-#: ../../operation/reporting/reporting_viewer.php:157
-#: ../../godmode/reporting/reporting_builder.php:3537
-#: ../../enterprise/godmode/reporting/reporting_builder.template.php:151
-#: ../../enterprise/godmode/reporting/reporting_builder.template.php:218
-#: ../../enterprise/include/functions_reporting.php:8019
-#: ../../enterprise/include/functions_reporting.php:8085
-msgid "Item editor"
-msgstr "Editor de elementos"
-
-#: ../../operation/reporting/reporting_viewer.php:173
-#: ../../godmode/reporting/reporting_builder.php:3554
-msgid "View report"
-msgstr "Ver informe"
-
-#: ../../operation/reporting/reporting_viewer.php:186
-#: ../../operation/reporting/graph_viewer.php:234
-#: ../../operation/visual_console/legacy_view.php:205
-#: ../../operation/visual_console/view.php:210
-#: ../../operation/gis_maps/render_view.php:136
-#: ../../enterprise/operation/agentes/manage_transmap.php:141
-#: ../../enterprise/meta/screens/screens.visualmap.php:274
-#: ../../include/class/AgentsAlerts.class.php:804
-#: ../../extensions/disabled/matrix_events.php:35
-#: ../../extensions/agents_modules.php:380
-#: ../../extensions/agents_modules.php:387
-#: ../../extensions/agents_modules.php:390 ../../views/dashboard/header.php:43
-msgid "Full screen mode"
-msgstr "Modo pantalla completa"
-
-#: ../../operation/reporting/reporting_viewer.php:195
-#: ../../operation/reporting/graph_viewer.php:243
-#: ../../operation/visual_console/legacy_view.php:253
-#: ../../operation/visual_console/view.php:444
-#: ../../operation/gis_maps/render_view.php:138
-#: ../../operation/events/events.php:771 ../../operation/heatmap.php:210
-#: ../../include/class/AgentsAlerts.class.php:809
-#: ../../extensions/agents_modules.php:531 ../../views/dashboard/header.php:57
-msgid "Back to normal mode"
-msgstr "Volver a modo normal"
-
-#: ../../operation/reporting/reporting_viewer.php:233
-#: ../../godmode/reporting/reporting_builder.php:596
-#: ../../godmode/reporting/reporting_builder.php:3495
-#: ../../godmode/reporting/reporting_builder.php:3609
-#: ../../godmode/reporting/reporting_builder.php:3638
-#: ../../enterprise/godmode/reporting/reporting_builder.template.php:289
-#: ../../enterprise/godmode/reporting/reporting_builder.template.php:323
-#: ../../enterprise/godmode/reporting/reporting_builder.template.php:357
-#: ../../enterprise/godmode/reporting/reporting_builder.template.php:391
-msgid "Custom reports"
-msgstr "Reportes personalizados"
-
-#: ../../operation/reporting/reporting_viewer.php:249
-msgid "View Report"
-msgstr "Ver informe"
-
-#: ../../operation/reporting/reporting_viewer.php:291
-msgid "Set initial date"
-msgstr "Fijar fecha de inicio"
-
-#: ../../operation/reporting/reporting_viewer.php:304
-#: ../../operation/agentes/gis_view.php:220
-#: ../../godmode/agentes/planned_downtime.list.php:293
-#: ../../godmode/alerts/alert_list.list.php:641
-#: ../../godmode/alerts/alert_list.list.php:644
-#: ../../godmode/alerts/alert_templates.php:96
-#: ../../enterprise/godmode/policies/policy_external_alerts.php:467
-#: ../../enterprise/godmode/policies/policy_alerts.php:436
-#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2331
-#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2335
-#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3335
-#: ../../enterprise/include/functions_reporting_pdf.php:1794
-#: ../../enterprise/include/functions_reporting_pdf.php:1867
-#: ../../enterprise/include/functions_reporting_pdf.php:1982
-#: ../../enterprise/include/functions_reporting_csv.php:715
-#: ../../enterprise/include/functions_reporting_csv.php:951
-#: ../../enterprise/include/functions_reporting_csv.php:1325
-#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:127
-#: ../../include/functions_reporting_html.php:147
-#: ../../include/functions_reporting_html.php:2896
-#: ../../include/functions_reporting_html.php:3701
-#: ../../include/rest-api/index.php:359
-#: ../../include/rest-api/models/VisualConsole/Items/ColorCloud.php:449
-#: ../../include/rest-api/models/VisualConsole/Items/ColorCloud.php:510
-msgid "From"
-msgstr "De"
-
-#: ../../operation/reporting/reporting_viewer.php:307
-#: ../../enterprise/include/functions_reporting_pdf.php:1808
-#: ../../include/functions_reporting_html.php:150
-msgid "Items period before"
-msgstr "Período de elementos antes de"
-
-#: ../../operation/reporting/reporting_viewer.php:308
-#: ../../godmode/massive/massive_add_action_alerts.php:254
-#: ../../godmode/alerts/alert_list.builder.php:129
-#: ../../godmode/alerts/alert_list.list.php:641
-#: ../../godmode/alerts/alert_list.list.php:761
-#: ../../godmode/alerts/alert_templates.php:98
-#: ../../enterprise/godmode/agentes/manage_config_remote.php:108
-#: ../../enterprise/godmode/policies/policy_external_alerts.php:467
-#: ../../enterprise/godmode/policies/policy_external_alerts.php:602
-#: ../../enterprise/godmode/policies/policy_alerts.php:436
-#: ../../enterprise/godmode/policies/policy_alerts.php:600
-#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1016
-#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2331
-#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2335
-#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2492
-#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3337
-#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3466
-#: ../../enterprise/include/functions_reporting_pdf.php:1800
-#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:129
-#: ../../include/functions_reporting.php:14048
-#: ../../include/functions_reporting_html.php:148
-#: ../../include/functions_reporting_html.php:2901
-#: ../../include/class/AgentsAlerts.class.php:316
-#: ../../include/ajax/alert_list.ajax.php:514
-msgid "to"
-msgstr "a"
-
-#: ../../operation/reporting/reporting_viewer.php:321
-msgid "Invalid date selected. Initial date must be before end date."
-msgstr ""
-"Fecha seleccionada no válida. La fecha inicial debe ser anterior a la fecha de "
-"finalización."
-
-#: ../../operation/reporting/reporting_viewer.php:347
-#: ../../operation/reporting/graph_viewer.php:316
-#: ../../godmode/massive/massive_operations.php:361
-#: ../../godmode/massive/massive_copy_modules.php:235
-#: ../../godmode/massive/massive_add_profiles.php:292
-#: ../../enterprise/operation/log/log_viewer.php:845
-#: ../../enterprise/operation/log/log_viewer.php:867
-#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:195
-#: ../../enterprise/godmode/policies/policy_modules.php:1623
-#: ../../enterprise/include/class/CommandCenter.class.php:463
-#: ../../enterprise/meta/monitoring/wizard/wizard.php:149
-#: ../../general/ui/agents_list.php:146 ../../include/functions_events.php:4381
-msgid "Loading"
-msgstr "Cargando"
-
-#: ../../operation/reporting/reporting_viewer.php:426
-#: ../../operation/reporting/graph_viewer.php:505
-msgid "Invalid date selected"
-msgstr "Fecha seleccionada no válida"
-
-#: ../../operation/reporting/graph_viewer.php:59
-#: ../../operation/reporting/graph_viewer.php:67
-#: ../../godmode/netflow/nf_edit.php:105 ../../godmode/netflow/nf_edit.php:138
-#: ../../godmode/netflow/nf_item_list.php:121
-#: ../../godmode/netflow/nf_item_list.php:149
-#: ../../godmode/reporting/graphs.php:152 ../../godmode/reporting/graphs.php:163
-#: ../../godmode/reporting/graphs.php:214
-#: ../../godmode/reporting/map_builder.php:210
-#: ../../godmode/agentes/planned_downtime.list.php:243
-#: ../../godmode/events/event_filter.php:70
-#: ../../godmode/events/event_filter.php:97
-#: ../../godmode/modules/manage_nc_groups.php:153
-#: ../../enterprise/tools/ipam/ipam_network_location_config.php:88
-#: ../../enterprise/godmode/reporting/graph_template_list.php:156
-#: ../../enterprise/godmode/reporting/graph_template_list.php:183
-#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:130
-#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:158
-#: ../../enterprise/meta/advanced/metasetup.relations.php:87
-#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:289
-msgid "Not deleted. Error deleting data"
-msgstr "No se pudo borrar. Error al borrar los datos."
-
-#: ../../operation/reporting/graph_viewer.php:182
-#: ../../operation/reporting/graph_viewer.php:214
-#: ../../godmode/reporting/graph_container.php:77
-#: ../../godmode/reporting/graphs.php:67 ../../godmode/reporting/graphs.php:81
-#: ../../godmode/reporting/graph_builder.php:287
-#: ../../enterprise/godmode/reporting/graph_template_wizard.php:99
-#: ../../enterprise/godmode/reporting/graph_template_wizard.php:113
-#: ../../enterprise/godmode/reporting/graph_template_list.php:54
-#: ../../enterprise/godmode/reporting/graph_template_list.php:73
-#: ../../enterprise/godmode/reporting/graph_template_list.php:87
-msgid "Graph list"
-msgstr "Lista de la gráfica"
-
-#: ../../operation/reporting/graph_viewer.php:204
-#: ../../godmode/reporting/graph_builder.php:309
-msgid "Graph editor"
-msgstr "Editor de gráficas"
-
-#: ../../operation/reporting/graph_viewer.php:223
-#: ../../godmode/reporting/graph_builder.php:320
-msgid "View graph"
-msgstr "Ver gráfica"
-
-#: ../../operation/reporting/graph_viewer.php:271 ../../operation/menu.php:327
-#: ../../godmode/reporting/graph_container.php:122
-#: ../../godmode/reporting/graphs.php:133
-#: ../../godmode/reporting/graph_builder.php:370
-#: ../../enterprise/godmode/reporting/graph_template_editor.php:107
-#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:373
-#: ../../enterprise/godmode/reporting/graph_template_wizard.php:148
-#: ../../enterprise/godmode/reporting/graph_template_list.php:132
-#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:78
-msgid "Custom graphs"
-msgstr "Gráficos personalizados"
-
-#: ../../operation/reporting/graph_viewer.php:335
-msgid "No data."
-msgstr "Sin datos"
+#: ../../views/calendar/special_days_edit.php:40
+msgid "Configure special day"
+msgstr "Configurar día especial"
 
+#: ../../views/calendar/special_days_edit.php:80 ../../general/logon_ok.php:249
 #: ../../operation/reporting/graph_viewer.php:348
 #: ../../operation/events/events.build_table.php:705
 #: ../../operation/incidents/list_integriaims_incidents.php:371
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2054
-#: ../../enterprise/operation/agentes/agent_inventory.php:75
-#: ../../enterprise/operation/inventory/inventory.php:418
-#: ../../enterprise/include/functions_reporting.php:2143
-#: ../../enterprise/include/functions_reporting.php:2180
-#: ../../enterprise/include/functions_reporting.php:2215
-#: ../../enterprise/include/functions_reporting.php:2233
-#: ../../enterprise/include/functions_log.php:279
-#: ../../enterprise/include/functions_log.php:282
-#: ../../enterprise/include/functions_inventory.php:851
-#: ../../enterprise/include/class/ManageBackups.class.php:163
-#: ../../enterprise/include/functions_reporting_pdf.php:712
-#: ../../enterprise/include/functions_reporting_csv.php:776
-#: ../../enterprise/include/functions_reporting_csv.php:832
-#: ../../enterprise/include/functions_reporting_csv.php:877
-#: ../../enterprise/include/functions_reporting_csv.php:2518
-#: ../../general/logon_ok.php:249 ../../include/functions.php:3045
+#: ../../include/class/AuditLog.class.php:110
+#: ../../include/functions_events.php:7120
 #: ../../include/functions_reporting.php:4009
-#: ../../include/functions_reporting.php:4050
-#: ../../include/functions_events.php:7122
+#: ../../include/functions_reporting.php:4050 ../../include/functions.php:3045
 #: ../../include/functions_reporting_html.php:1749
 #: ../../include/functions_reporting_html.php:2534
 #: ../../include/functions_reporting_html.php:2543
@@ -4746,36660 +1820,669 @@ msgstr "Sin datos"
 #: ../../include/functions_reporting_html.php:2618
 #: ../../include/functions_reporting_html.php:2691
 #: ../../include/functions_reporting_html.php:5677
-#: ../../include/class/AuditLog.class.php:110
+#: ../../enterprise/operation/agentes/agent_inventory.php:75
+#: ../../enterprise/operation/inventory/inventory.php:418
+#: ../../enterprise/include/functions_reporting_csv.php:776
+#: ../../enterprise/include/functions_reporting_csv.php:832
+#: ../../enterprise/include/functions_reporting_csv.php:877
+#: ../../enterprise/include/functions_reporting_csv.php:2518
+#: ../../enterprise/include/class/ManageBackups.class.php:163
+#: ../../enterprise/include/functions_inventory.php:851
+#: ../../enterprise/include/functions_log.php:279
+#: ../../enterprise/include/functions_log.php:282
+#: ../../enterprise/include/functions_reporting.php:2143
+#: ../../enterprise/include/functions_reporting.php:2180
+#: ../../enterprise/include/functions_reporting.php:2215
+#: ../../enterprise/include/functions_reporting.php:2233
+#: ../../enterprise/include/functions_reporting_pdf.php:712
 #: ../../extensions/insert_data.php:196 ../../mobile/operation/tactical.php:350
-#: ../../views/calendar/special_days_edit.php:80
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2054
 msgid "Date"
 msgstr "Fecha"
 
-#: ../../operation/reporting/graph_viewer.php:360
-#: ../../operation/agentes/interface_traffic_graph_win.php:213
-#: ../../operation/agentes/graphs.php:218
-#: ../../operation/agentes/stat_win.php:336
-#: ../../operation/agentes/stat_win.php:439
-msgid "Time range"
-msgstr "Rango de tiempo"
-
-#: ../../operation/reporting/graph_viewer.php:369
-#: ../../operation/reporting/graph_viewer.php:391
-msgid "Graph defined"
-msgstr "Gráfico definido"
-
-#: ../../operation/reporting/graph_viewer.php:370
-#: ../../operation/agentes/graphs.php:236 ../../operation/agentes/graphs.php:243
-#: ../../operation/agentes/graphs.php:409 ../../operation/agentes/graphs.php:428
-#: ../../godmode/reporting/graph_builder.main.php:214
-#: ../../godmode/reporting/create_container.php:358
-#: ../../godmode/setup/setup_visuals.php:902
-#: ../../godmode/setup/setup_visuals.php:919
-#: ../../enterprise/godmode/reporting/graph_template_editor.php:245
-#: ../../enterprise/meta/advanced/metasetup.visual.php:348
-#: ../../include/functions_visual_map_editor.php:558
-#: ../../include/lib/Dashboard/Widgets/custom_graph.php:315
-#: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:652
-msgid "Area"
-msgstr "Área"
-
-#: ../../operation/reporting/graph_viewer.php:371
-#: ../../godmode/reporting/graph_builder.main.php:215
-#: ../../enterprise/godmode/reporting/graph_template_editor.php:246
-#: ../../include/lib/Dashboard/Widgets/custom_graph.php:316
-msgid "Stacked area"
-msgstr "Área apilada"
-
-#: ../../operation/reporting/graph_viewer.php:372
-#: ../../operation/visual_console/view.php:361
-#: ../../operation/agentes/graphs.php:238 ../../operation/agentes/graphs.php:244
-#: ../../operation/agentes/graphs.php:417 ../../operation/agentes/graphs.php:432
-#: ../../godmode/reporting/visual_console_builder.elements.php:333
-#: ../../godmode/reporting/graph_builder.main.php:216
-#: ../../godmode/reporting/create_container.php:359
-#: ../../godmode/setup/setup_visuals.php:909
-#: ../../godmode/setup/setup_visuals.php:926
-#: ../../enterprise/godmode/reporting/graph_template_editor.php:247
-#: ../../enterprise/meta/advanced/metasetup.visual.php:357
-#: ../../include/functions_visual_map_editor.php:72
-#: ../../include/functions_visual_map_editor.php:557
-#: ../../include/functions_visual_map_editor.php:1399
-#: ../../include/lib/Dashboard/Widgets/custom_graph.php:317
-#: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:651
-msgid "Line"
-msgstr "Línea"
-
-#: ../../operation/reporting/graph_viewer.php:373
-#: ../../godmode/reporting/graph_builder.main.php:217
-#: ../../enterprise/godmode/reporting/graph_template_editor.php:248
-#: ../../include/lib/Dashboard/Widgets/custom_graph.php:318
-msgid "Stacked line"
-msgstr "Línea apilada"
-
-#: ../../operation/reporting/graph_viewer.php:374
-#: ../../godmode/reporting/graph_builder.main.php:218
-#: ../../include/lib/Dashboard/Widgets/custom_graph.php:319
-msgid "Bullet chart"
-msgstr "Gráfico de puntos"
-
-#: ../../operation/reporting/graph_viewer.php:375
-#: ../../godmode/reporting/graph_builder.main.php:219
-#: ../../include/lib/Dashboard/Widgets/custom_graph.php:320
-msgid "Gauge"
-msgstr "Calibrador"
-
-#: ../../operation/reporting/graph_viewer.php:376
-#: ../../include/lib/Dashboard/Widgets/custom_graph.php:321
-msgid "Horizontal Bars"
-msgstr "Barras horizontales"
-
-#: ../../operation/reporting/graph_viewer.php:377
-#: ../../include/lib/Dashboard/Widgets/custom_graph.php:322
-msgid "Vertical Bars"
-msgstr "Barras verticales"
-
-#: ../../operation/reporting/graph_viewer.php:378
-#: ../../godmode/reporting/graph_builder.main.php:222
-#: ../../include/lib/Dashboard/Widgets/custom_graph.php:323
-msgid "Pie"
-msgstr "Gráfico circular"
-
-#: ../../operation/reporting/graph_viewer.php:383
-msgid "Equalize maxiddmum thresholds"
-msgstr "Equalizar umbrales maxiddmum"
-
-#: ../../operation/reporting/graph_viewer.php:383
-msgid ""
-"If an option is selected, all graphs will have the highest value from all "
-"modules included in the graph as a maximum threshold"
-msgstr ""
-"Si se selecciona una opción, todos los gráficos tendrán el valor más alto de "
-"todos los módulos incluidos en el gráfico como umbral máximo."
-
-#: ../../operation/reporting/graph_viewer.php:392
-msgid "Zoom x1"
-msgstr "Zoom x1"
-
-#: ../../operation/reporting/graph_viewer.php:393
-msgid "Zoom x2"
-msgstr "Ampliación x2"
-
-#: ../../operation/reporting/graph_viewer.php:394
-msgid "Zoom x3"
-msgstr "Zoom x3"
-
-#: ../../operation/reporting/graph_viewer.php:399
-#: ../../operation/visual_console/legacy_view.php:267
-#: ../../operation/visual_console/public_view.php:123
-#: ../../operation/visual_console/legacy_public_view.php:141
-#: ../../operation/visual_console/view.php:457
-#: ../../operation/gis_maps/render_view.php:160
-#: ../../operation/events/events.php:783 ../../operation/heatmap.php:168
-#: ../../godmode/wizards/DiscoveryTaskList.class.php:191
-#: ../../enterprise/godmode/policies/policy_queue.php:786
-#: ../../enterprise/godmode/servers/HA_cluster.php:416
-#: ../../enterprise/include/class/Omnishell.class.php:544
-#: ../../enterprise/include/class/Omnishell.class.php:1329
-#: ../../enterprise/include/functions_ipam.php:1392
-#: ../../enterprise/meta/advanced/policymanager.queue.php:238
-#: ../../enterprise/views/ncm/devices/list.php:171
-#: ../../general/login_page.php:75 ../../general/login_page.php:318
-#: ../../include/class/NetworkMap.class.php:2801
-#: ../../include/class/AgentsAlerts.class.php:848
-#: ../../include/ajax/heatmap.ajax.php:47 ../../include/ajax/module.php:1054
-#: ../../extensions/agents_modules.php:543 ../../views/dashboard/header.php:158
-msgid "Refresh"
-msgstr "Actualizar"
-
-#: ../../operation/reporting/graph_viewer.php:513
-msgid "Custom graph viewer"
-msgstr "Visor de imágenes personalizadas"
-
-#: ../../operation/search_helps.php:17
-msgid "Zero results found."
-msgstr "Cero resultados"
-
-#: ../../operation/search_helps.php:18
-#, php-format
-msgid "You can find more help in the <a class=\"underline\" href=\"%s\">wiki</a>"
-msgstr "Puede encontrar más ayuda en <a class=\"underline\" href=\"%s\">wiki</a>"
-
-#: ../../operation/search_helps.php:32
-msgid "Matches"
-msgstr "Coincidencias"
-
-#: ../../operation/messages/message_edit.php:54
-#: ../../operation/messages/message_list.php:46
-#: ../../operation/messages/message_list.php:50
-msgid "Received messages"
-msgstr "Mensajes recibidos"
-
-#: ../../operation/messages/message_edit.php:66
-#: ../../operation/messages/message_list.php:46
-#: ../../operation/messages/message_list.php:55
-msgid "Sent messages"
-msgstr "Mensajes enviados"
-
-#: ../../operation/messages/message_edit.php:78
-#: ../../operation/messages/message_list.php:64
-#: ../../operation/messages/message_list.php:304
-msgid "Create message"
-msgstr "Crear mensaje"
-
-#: ../../operation/messages/message_edit.php:90
-msgid "Compose message"
-msgstr "Componer mensaje"
-
-#: ../../operation/messages/message_edit.php:99
-#: ../../operation/messages/message_list.php:86 ../../operation/menu.php:453
-#: ../../operation/users/user_edit_header.php:127
-msgid "Workspace"
-msgstr "Área de trabajo"
-
-#: ../../operation/messages/message_edit.php:103
-#: ../../operation/messages/message_list.php:90 ../../operation/menu.php:493
-#: ../../enterprise/meta/general/main_menu.php:318
-msgid "Messages"
-msgstr "Mensajes"
-
-#: ../../operation/messages/message_edit.php:119
-msgid "This message does not exist in the system"
-msgstr "Este mensaje no existe en el sistema."
-
-#: ../../operation/messages/message_edit.php:188
-msgid "wrote"
-msgstr "escribió"
-
-#: ../../operation/messages/message_edit.php:203
-msgid "Delete conversation"
-msgstr "Eliminar conversación"
-
-#: ../../operation/messages/message_edit.php:211
-msgid "Reply"
-msgstr "Responder"
-
-#: ../../operation/messages/message_edit.php:226
-msgid "User or group must be selected."
-msgstr "Usuario o grupo no especificados."
-
-#: ../../operation/messages/message_edit.php:244
-#, php-format
-msgid "Message successfully sent to user %s"
-msgstr "Mensaje enviado correctamente al usuario %s"
-
-#: ../../operation/messages/message_edit.php:245
-#, php-format
-msgid "Error sending message to user %s"
-msgstr "Error al enviar el mensaje al usuario %s"
-
-#: ../../operation/messages/message_edit.php:265
-#: ../../operation/messages/message_list.php:196
-msgid "Sender"
-msgstr "Remitente"
-
-#: ../../operation/messages/message_edit.php:269
-#: ../../operation/messages/message_list.php:194
-msgid "Destination"
-msgstr "Destino"
-
-#: ../../operation/messages/message_edit.php:324
-msgid "Select user"
-msgstr "Seleccionar usuario"
-
-#: ../../operation/messages/message_edit.php:330
-msgid "OR"
-msgstr "O"
-
-#: ../../operation/messages/message_edit.php:341
-msgid "Select group"
-msgstr "Seleccionar grupo"
-
-#: ../../operation/messages/message_edit.php:350
-#: ../../operation/messages/message_list.php:199 ../../godmode/setup/news.php:183
-#: ../../godmode/setup/news.php:246
-#: ../../enterprise/operation/reporting/custom_reporting.php:132
-#: ../../enterprise/include/functions_reporting.php:8179
-#: ../../enterprise/include/functions_cron.php:190
-#: ../../enterprise/include/functions_cron.php:240
-msgid "Subject"
-msgstr "Asunto"
-
-#: ../../operation/messages/message_edit.php:360
-#: ../../enterprise/operation/reporting/custom_reporting.php:150
-#: ../../enterprise/include/functions_reporting.php:8197
-#: ../../enterprise/include/functions_cron.php:194
-#: ../../enterprise/include/functions_cron.php:244
-msgid "Message"
-msgstr "Mensaje"
-
-#: ../../operation/messages/message_edit.php:396
-msgid "Send message"
-msgstr "Enviar mensaje"
-
-#: ../../operation/messages/message_list.php:136
-msgid "Not deleted. Error deleting messages"
-msgstr "No borrado. Error al suprimir mensajes."
-
-#: ../../operation/messages/message_list.php:144
-#: ../../operation/messages/message_list.php:153
-msgid "You have"
-msgstr "Tienes"
-
-#: ../../operation/messages/message_list.php:144
-msgid "sent message(s)"
-msgstr "mensaje(s) enviado(s)"
-
-#: ../../operation/messages/message_list.php:153
-msgid "unread message(s)"
-msgstr "mensaje(s) sin leer"
-
-#: ../../operation/messages/message_list.php:164
-msgid "There are no messages."
-msgstr "No hay mensajes."
-
-#: ../../operation/messages/message_list.php:214
-msgid "Click to read"
-msgstr "Haz clic para leer"
-
-#: ../../operation/messages/message_list.php:218
-msgid "Mark as unread"
-msgstr "Marcar como no leído"
-
-#: ../../operation/messages/message_list.php:224
-#: ../../operation/messages/message_list.php:228
-msgid "Message unread - click to read"
-msgstr "Mensaje sin leer. Haz clic para leerlo."
-
-#: ../../operation/messages/message_list.php:256
-msgid "No Subject"
-msgstr "Sin asunto"
-
-#: ../../operation/search_main.php:54 ../../enterprise/meta/agentsearch.php:122
-msgid "Agents found"
-msgstr "Agentes encontrados"
-
-#: ../../operation/search_main.php:55 ../../operation/search_main.php:57
-#: ../../operation/search_main.php:65 ../../operation/search_main.php:67
-#: ../../operation/search_main.php:69 ../../operation/search_main.php:71
-#: ../../operation/search_main.php:74
-#, php-format
-msgid "%s Found"
-msgstr "%s encontrados"
-
-#: ../../operation/search_main.php:56 ../../operation/tree.php:432
-#: ../../include/lib/Dashboard/Widgets/tree_view.php:617
-msgid "Modules found"
-msgstr "Módulos encontrados"
-
-#: ../../operation/search_main.php:64
-msgid "Users found"
-msgstr "Usuarios encontrados"
-
-#: ../../operation/search_main.php:66
-msgid "Graphs found"
-msgstr "Gráficos encontrados"
-
-#: ../../operation/search_main.php:68
-msgid "Reports found"
-msgstr "Informes encontrados"
-
-#: ../../operation/search_main.php:83
-#, php-format
-msgid "Show %s of %s. View all matches"
-msgstr "Mostrar %s de %s. Ver todas las coincidencias."
-
-#: ../../operation/visual_console/legacy_view.php:121
-#: ../../operation/visual_console/view.php:122
-#: ../../godmode/reporting/visual_console_builder.php:801
-#: ../../enterprise/meta/screens/screens.visualmap.php:286
-msgid "Visual consoles list"
-msgstr "Lista de consolas visuales"
-
-#: ../../operation/visual_console/legacy_view.php:137
-#: ../../operation/visual_console/view.php:150
-#: ../../godmode/reporting/visual_console_builder.php:805
-#: ../../enterprise/meta/screens/screens.visualmap.php:261
-msgid "Show link to public Visual Console"
-msgstr "Mostrar enlace a la Consola Visual pública"
-
-#: ../../operation/visual_console/legacy_view.php:155
-#: ../../operation/visual_console/view.php:168
-#: ../../godmode/reporting/visual_console_builder.php:813
-#: ../../enterprise/meta/screens/screens.visualmap.php:230
-msgid "List elements"
-msgstr "Lista de elementos"
-
-#: ../../operation/visual_console/legacy_view.php:165
-#: ../../operation/visual_console/view.php:178
-#: ../../godmode/reporting/visual_console_builder.php:819
-msgid "Services wizard"
-msgstr "Asistente de servicios"
-
-#: ../../operation/visual_console/legacy_view.php:175
-#: ../../operation/visual_console/view.php:188
-#: ../../godmode/reporting/visual_console_builder.php:825
-#: ../../godmode/reporting/visual_console_builder.wizard.php:518
-#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:94
-#: ../../enterprise/include/functions_reporting.php:60
-#: ../../enterprise/include/functions_reporting.php:7983
-#: ../../enterprise/include/functions_reporting.php:8009
-#: ../../enterprise/meta/general/logon_ok.php:48
-#: ../../enterprise/meta/general/main_header.php:134
-#: ../../enterprise/meta/general/main_menu.php:238
-#: ../../enterprise/meta/screens/screens.visualmap.php:219
-#: ../../enterprise/meta/monitoring/wizard/wizard.php:123
-#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:61
-msgid "Wizard"
-msgstr "Asistente"
-
-#: ../../operation/visual_console/legacy_view.php:183
-#: ../../godmode/reporting/visual_console_builder.php:830
-#: ../../enterprise/godmode/alerts/alert_inventory.php:80
-#: ../../enterprise/meta/screens/screens.visualmap.php:206
-msgid "Builder"
-msgstr "Creador"
-
-#: ../../operation/visual_console/legacy_view.php:193
-#: ../../operation/visual_console/view.php:198
-#: ../../operation/agentes/estado_agente.php:858
-#: ../../operation/agentes/estado_agente.php:861
-#: ../../operation/agentes/ver_agente.php:1907
-#: ../../operation/agentes/status_monitor.php:75 ../../operation/tree.php:187
-#: ../../godmode/reporting/visual_console_builder.php:836
-#: ../../godmode/setup/setup_visuals.php:163
-#: ../../godmode/setup/setup_visuals.php:227
-#: ../../godmode/setup/setup_visuals.php:281
-#: ../../godmode/setup/setup_visuals.php:286
-#: ../../godmode/setup/setup_visuals.php:325
-#: ../../godmode/setup/setup_visuals.php:362
-#: ../../godmode/setup/setup_visuals.php:384
-#: ../../godmode/setup/setup_visuals.php:409
-#: ../../godmode/setup/setup_visuals.php:428
-#: ../../godmode/setup/setup_visuals.php:447
-#: ../../godmode/setup/setup_visuals.php:466
-#: ../../godmode/setup/setup_visuals.php:608
-#: ../../godmode/agentes/configurar_agente.php:372
-#: ../../godmode/agentes/modificar_agente.php:82
-#: ../../godmode/agentes/modificar_agente.php:836
-#: ../../godmode/agentes/modificar_agente.php:841 ../../godmode/menu.php:554
-#: ../../godmode/module_library/module_library_view.php:59
-#: ../../enterprise/operation/agentes/policy_view.php:70
-#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:106
-#: ../../enterprise/include/lib/ClusterViewer/ClusterManager.php:601
-#: ../../enterprise/meta/screens/screens.visualmap.php:163
-#: ../../enterprise/meta/screens/screens.visualmap.php:194
-msgid "View"
-msgstr "Vista"
-
-#: ../../operation/visual_console/legacy_view.php:339
-#: ../../operation/visual_console/legacy_public_view.php:198
-msgid "Until refresh"
-msgstr "Hasta la actualización"
-
-#: ../../operation/visual_console/public_view.php:38
-#: ../../operation/visual_console/legacy_public_view.php:57
-#: ../../operation/gis_maps/public_console.php:277
-#: ../../operation/agentes/stat_win.php:92
-#: ../../operation/events/sound_events.php:90 ../../index.php:1395
-#: ../../enterprise/meta/index.php:206
-msgid "Connection with server has been lost"
-msgstr "Se ha perdido la conexión con el servidor"
-
-#: ../../operation/visual_console/public_view.php:39
-#: ../../operation/visual_console/legacy_public_view.php:58
-#: ../../operation/gis_maps/public_console.php:278
-#: ../../operation/agentes/stat_win.php:93
-#: ../../operation/events/sound_events.php:91 ../../index.php:1396
-#: ../../enterprise/meta/index.php:207
-msgid ""
-"Connection to the server has been lost. Please check your internet connection "
-"or contact with administrator."
-msgstr ""
-"Se ha perdido la conexión con el servidor. Compruebe su conexión a Internet o "
-"póngase en contacto con el administrador"
-
-#: ../../operation/visual_console/public_view.php:150
-#: ../../operation/visual_console/legacy_public_view.php:168
-msgid "QR code of the page"
-msgstr "Código QR de la página"
-
-#: ../../operation/visual_console/view.php:226
-#: ../../operation/agentes/pandora_networkmap.editor.php:214
-#: ../../operation/agentes/pandora_networkmap.php:665
-#: ../../operation/menu.php:300
-#: ../../godmode/reporting/visual_console_builder.php:863
-#: ../../godmode/reporting/visual_console_favorite.php:127
-#: ../../godmode/reporting/map_builder.php:130
-#: ../../godmode/agentes/pandora_networkmap_empty.editor.php:104
-#: ../../enterprise/operation/services/services.treeview_services.php:77
-#: ../../enterprise/operation/services/services.service.php:79
-#: ../../enterprise/operation/services/services.list.php:71
-#: ../../enterprise/operation/services/services.service_map.php:86
-#: ../../enterprise/operation/services/services.table_services.php:54
-#: ../../enterprise/godmode/reporting/visual_console_template.php:118
-#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:117
-#: ../../enterprise/godmode/agentes/pandora_networkmap_empty.editor.php:102
-#: ../../enterprise/godmode/services/services.service.php:485
-#: ../../enterprise/godmode/services/services.elements.php:794
-msgid "Topology maps"
-msgstr "Mapas topológicos"
-
-#: ../../operation/visual_console/view.php:230 ../../operation/menu.php:177
-#: ../../operation/menu.php:181 ../../operation/users/user_edit.php:357
-#: ../../godmode/reporting/visual_console_builder.php:867
-#: ../../godmode/reporting/visual_console_favorite.php:131
-#: ../../godmode/reporting/visual_console_favorite.php:137
-#: ../../godmode/reporting/map_builder.php:134
-#: ../../godmode/reporting/map_builder.php:140
-#: ../../godmode/users/configure_user.php:1110
-#: ../../enterprise/godmode/reporting/visual_console_template.php:122
-#: ../../enterprise/godmode/reporting/visual_console_template.php:128
-#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:121
-#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:127
-#: ../../enterprise/meta/screens/screens.visualmap.php:305
-#: ../../enterprise/meta/screens/screens.visualmap.php:310
-#: ../../include/lib/Dashboard/Widgets/maps_made_by_user.php:324
-#: ../../extensions/resource_exportation.php:436
-msgid "Visual console"
-msgstr "Consola visual"
-
-#: ../../operation/visual_console/view.php:296
-#: ../../godmode/reporting/visual_console_builder.elements.php:182
-#: ../../godmode/setup/gis_step_2.php:233
-#: ../../include/functions_visual_map.php:4214
-#: ../../include/functions_visual_map_editor.php:1387
-msgid "Static Image"
-msgstr "Imagen estática"
-
-#: ../../operation/visual_console/view.php:301
-#: ../../godmode/reporting/visual_console_builder.wizard.php:128
-#: ../../include/functions_visual_map_editor.php:57
-#: ../../include/functions_visual_map_editor.php:1388
-msgid "Percentile Item"
-msgstr "Elemento percentil"
-
-#: ../../operation/visual_console/view.php:306
-#: ../../godmode/reporting/visual_console_builder.elements.php:221
-#: ../../include/functions_visual_map_editor.php:1389
-#: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:555
-#: ../../mobile/operation/events.php:549
-msgid "Module Graph"
-msgstr "Gráfico de módulo"
-
-#: ../../operation/visual_console/view.php:311
-#: ../../godmode/reporting/visual_console_builder.elements.php:351
-#: ../../include/rest-api/models/VisualConsole/Item.php:2155
-msgid "Basic chart"
-msgstr "Gráfico básico"
-
-#: ../../operation/visual_console/view.php:316
-#: ../../include/functions_visual_map_editor.php:1390
-msgid "Serialized pie graph"
-msgstr "Gráfico circular serializado"
-
-#: ../../operation/visual_console/view.php:321
-#: ../../include/functions_visual_map_editor.php:1391
-msgid "Bars Graph"
-msgstr "Gráfico de barras"
-
-#: ../../operation/visual_console/view.php:326
-#: ../../godmode/reporting/visual_console_builder.elements.php:231
-#: ../../include/functions_visual_map.php:4194
-#: ../../include/functions_visual_map_editor.php:59
-#: ../../include/functions_visual_map_editor.php:1392
-msgid "Event history graph"
-msgstr "Gráfica de histórico de eventos"
-
-#: ../../operation/visual_console/view.php:331
-#: ../../godmode/reporting/visual_console_builder.elements.php:240
-#: ../../include/functions_visual_map.php:4219
-#: ../../include/functions_visual_map_editor.php:1393
-#: ../../include/rest-api/models/VisualConsole/Item.php:2131
-msgid "Simple Value"
-msgstr "Valor simple"
-
-#: ../../operation/visual_console/view.php:336
-#: ../../godmode/reporting/visual_console_builder.elements.php:104
-#: ../../godmode/reporting/visual_console_builder.elements.php:283
-#: ../../godmode/reporting/reporting_builder.item_editor.php:1116
-#: ../../godmode/reporting/graph_builder.graph_editor.php:214
-#: ../../godmode/reporting/visual_console_builder.wizard.php:446
-#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:498
-#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1702
-#: ../../enterprise/include/functions_reporting_csv.php:1158
-#: ../../enterprise/meta/advanced/metasetup.consoles.php:513
-#: ../../enterprise/meta/advanced/metasetup.consoles.php:837
-#: ../../include/functions_visual_map.php:4224
-#: ../../include/functions_visual_map_editor.php:67
-#: ../../include/functions_visual_map_editor.php:193
-#: ../../include/functions_visual_map_editor.php:779
-#: ../../include/functions_visual_map_editor.php:1394
-#: ../../include/lib/Dashboard/Widgets/module_value.php:278
-#: ../../include/lib/Dashboard/Widgets/graph_module_histogram.php:274
-#: ../../include/lib/Dashboard/Widgets/module_icon.php:304
-#: ../../include/lib/Dashboard/Widgets/sla_percent.php:285
-#: ../../include/lib/Dashboard/Widgets/module_status.php:294
-#: ../../include/rest-api/models/VisualConsole/Item.php:1941
-#: ../../include/rest-api/models/VisualConsole/Item.php:2135
-msgid "Label"
-msgstr "Etiqueta"
-
-#: ../../operation/visual_console/view.php:341
-#: ../../godmode/reporting/visual_console_builder.elements.php:292
-#: ../../godmode/setup/os.builder.php:40
-#: ../../godmode/groups/configure_group.php:153
-#: ../../godmode/groups/group_list.php:844
-#: ../../godmode/modules/module_list.php:60
-#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:103
-#: ../../include/functions_visual_map.php:4239
-#: ../../include/functions_visual_map_editor.php:68
-#: ../../include/functions_visual_map_editor.php:1395
-#: ../../include/lib/Dashboard/Widgets/module_icon.php:384
-#: ../../include/lib/Dashboard/Widgets/module_status.php:374
-#: ../../include/rest-api/models/VisualConsole/Item.php:2147
-msgid "Icon"
-msgstr "Icono"
-
-#: ../../operation/visual_console/view.php:346
-#: ../../godmode/reporting/visual_console_builder.elements.php:367
-#: ../../include/functions_visual_map.php:4184
-#: ../../include/functions_visual_map_editor.php:69
-#: ../../include/functions_visual_map_editor.php:1396
-#: ../../include/lib/Dashboard/Widgets/clock.php:158
-#: ../../include/lib/Dashboard/Widgets/clock.php:310
-#: ../../include/rest-api/models/VisualConsole/Item.php:2103
-msgid "Clock"
-msgstr "Reloj"
-
-#: ../../operation/visual_console/view.php:356
-#: ../../godmode/reporting/visual_console_builder.elements.php:303
-#: ../../include/functions_visual_map.php:4174
-#: ../../include/functions_visual_map_editor.php:71
-#: ../../include/functions_visual_map_editor.php:1398
-msgid "Box"
-msgstr "Caja"
-
-#: ../../operation/visual_console/view.php:366
-#: ../../godmode/reporting/visual_console_builder.elements.php:343
-#: ../../include/functions_visual_map.php:4234
-#: ../../include/functions_visual_map_editor.php:73
-#: ../../include/functions_visual_map_editor.php:1400
-#: ../../include/rest-api/models/VisualConsole/Item.php:2143
-msgid "Color cloud"
-msgstr "Nube de color"
-
-#: ../../operation/visual_console/view.php:371
-#: ../../godmode/reporting/visual_console_builder.elements.php:322
-#: ../../include/functions_visual_map_editor.php:1405
-msgid "Network link"
-msgstr "Link de red"
-
-#: ../../operation/visual_console/view.php:376
-#: ../../godmode/reporting/visual_console_builder.elements.php:359
-#: ../../include/rest-api/models/VisualConsole/Item.php:2151
-msgid "Odometer"
-msgstr "Odómetro #1"
-
-#: ../../operation/visual_console/view.php:387
-msgid "Delete Item"
-msgstr "Eliminar elemento"
-
-#: ../../operation/visual_console/view.php:393
-msgid "Copy Item"
-msgstr "Copiar elemento"
-
-#: ../../operation/visual_console/view.php:406
-#: ../../operation/agentes/estado_generalagente.php:326
-msgid "Force remote checks"
-msgstr "Forzar comprobación remota"
-
-#: ../../operation/visual_console/view.php:734
-msgid "Are you sure"
-msgstr "¿Está seguro?"
-
-#: ../../operation/visual_console/view.php:806
-#: ../../godmode/wizards/DiscoveryTaskList.class.php:1057
-#: ../../enterprise/godmode/services/services.elements.php:840
-#: ../../enterprise/godmode/services/services.elements.php:851
-#: ../../enterprise/include/functions_visual_map.php:677
-#: ../../enterprise/include/class/Omnishell.class.php:1083
-#: ../../enterprise/include/class/AgentRepository.class.php:842
-#: ../../enterprise/include/class/DeploymentCenter.class.php:1611
-#: ../../enterprise/include/class/LogSource.class.php:788
-#: ../../enterprise/include/class/ManageBackups.class.php:473
-#: ../../enterprise/include/functions_HA_cluster.php:535
-#: ../../include/functions_ui.php:294
-#: ../../include/class/CredentialStore.class.php:1185
-#: ../../include/class/ConfigPEN.class.php:737
-#: ../../include/class/Diagnostics.class.php:2087
-#: ../../include/class/HelpFeedBack.class.php:359
-#: ../../include/class/AgentWizard.class.php:5802
-#: ../../include/class/ModuleTemplates.class.php:1417
-#: ../../include/class/WebServerModuleDebug.class.php:359
-#: ../../include/ajax/snmp_browser.ajax.php:260
-msgid "Success"
-msgstr "Finalizado correctamente"
-
-#: ../../operation/visual_console/view.php:813
-#: ../../operation/visual_console/view.php:818
-#: ../../godmode/wizards/DiscoveryTaskList.class.php:1058
-#: ../../enterprise/operation/agentes/transactional_map.php:327
-#: ../../enterprise/operation/agentes/wux_console_view.php:452
-#: ../../enterprise/operation/agentes/ux_console_view.php:210
-#: ../../enterprise/operation/agentes/ux_console_view.php:352
-#: ../../enterprise/include/class/Omnishell.class.php:1079
-#: ../../enterprise/include/class/DatabaseHA.class.php:208
-#: ../../enterprise/include/class/AgentRepository.class.php:849
-#: ../../enterprise/include/class/AgentRepository.class.php:854
-#: ../../enterprise/include/class/DeploymentCenter.class.php:1618
-#: ../../enterprise/include/class/DeploymentCenter.class.php:1623
-#: ../../enterprise/include/class/LogSource.class.php:795
-#: ../../enterprise/include/class/LogSource.class.php:800
-#: ../../enterprise/include/class/ManageBackups.class.php:484
-#: ../../enterprise/include/class/ManageBackups.class.php:489
-#: ../../enterprise/include/functions_ux_console.php:473
-#: ../../enterprise/include/functions_HA_cluster.php:542
-#: ../../enterprise/include/functions_HA_cluster.php:547
-#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:539
-#: ../../include/class/CredentialStore.class.php:1192
-#: ../../include/class/CredentialStore.class.php:1197
-#: ../../include/class/ConfigPEN.class.php:744
-#: ../../include/class/ConfigPEN.class.php:749
-#: ../../include/class/Diagnostics.class.php:2086
-#: ../../include/class/HelpFeedBack.class.php:354
-#: ../../include/class/AgentWizard.class.php:5809
-#: ../../include/class/AgentWizard.class.php:5814
-#: ../../include/class/ModuleTemplates.class.php:1424
-#: ../../include/class/ModuleTemplates.class.php:1429
-#: ../../include/class/WebServerModuleDebug.class.php:366
-#: ../../include/class/WebServerModuleDebug.class.php:371
-#: ../../include/lib/Dashboard/Widgets/wux_transaction.php:372
-#: ../../include/ajax/snmp_browser.ajax.php:259
-msgid "Failed"
-msgstr "Fallo"
-
-#: ../../operation/network/network_report.php:67
-#: ../../operation/network/network_usage_map.php:124
-msgid "Data to show"
-msgstr "Datos a mostrar"
-
-#: ../../operation/network/network_report.php:78
-#: ../../operation/network/network_usage_map.php:104
-msgid "Number of result to show"
-msgstr "Número de resultados a mostrar"
-
-#: ../../operation/network/network_report.php:109
-#: ../../operation/network/network_usage_map.php:82
-msgid "Time Period"
-msgstr "Período de tiempo"
-
-#: ../../operation/network/network_report.php:140
-#: ../../operation/incidents/list_integriaims_incidents.php:428
-#: ../../godmode/agentes/planned_downtime.list.php:860
-#: ../../godmode/modules/manage_network_templates.php:288
-#: ../../enterprise/operation/reporting/custom_reporting.php:80
-#: ../../enterprise/operation/log/log_viewer.php:805
-#: ../../enterprise/godmode/reporting/reporting_builder.template.php:597
-#: ../../enterprise/include/functions_ipam.php:337
-#: ../../enterprise/meta/monitoring/custom_fields_view.php:319
-#: ../../include/class/ModuleTemplates.class.php:934
-#: ../../include/graphs/functions_flot.php:377
-msgid "Export to CSV"
-msgstr "Exportar a CSV"
-
-#: ../../operation/network/network_report.php:184
-#: ../../godmode/reporting/visual_console_builder.elements.php:790
-#: ../../godmode/reporting/reporting_builder.item_editor.php:70
-#: ../../enterprise/godmode/servers/HA_cluster.php:161
-#: ../../enterprise/include/functions_reporting.php:2315
-#: ../../enterprise/include/class/Azure.cloud.php:803
-#: ../../enterprise/include/class/VMware.app.php:621
-#: ../../enterprise/include/class/Aws.cloud.php:546
-#: ../../enterprise/include/class/DeploymentCenter.class.php:755
-#: ../../enterprise/include/class/DeploymentCenter.class.php:805
-#: ../../enterprise/include/class/DeploymentCenter.class.php:1280
-#: ../../enterprise/include/class/DeploymentCenter.class.php:1397
-#: ../../enterprise/include/class/Aws.S3.php:564
-#: ../../enterprise/include/functions_ipam.php:1642
-#: ../../enterprise/include/functions_ipam.php:1643
-#: ../../enterprise/include/functions_reporting_csv.php:1933
-#: ../../enterprise/meta/monitoring/custom_fields_csv.php:100
-#: ../../include/functions_visual_map_editor.php:1460
-#: ../../include/functions_reporting_html.php:3014
-#: ../../include/functions_reporting_html.php:3340
-#: ../../include/class/AuditLog.class.php:194
-#: ../../include/ajax/heatmap.ajax.php:319
-#: ../../extensions/users_connected.php:144 ../../extensions/api_checker.php:123
-msgid "IP"
-msgstr "IP"
-
-#: ../../operation/network/network_report.php:186
-#: ../../operation/network/network_report.php:233
-msgid "Flows"
-msgstr "Flujo"
-
-#: ../../operation/network/network_report.php:197
-#: ../../operation/network/network_report.php:235
-msgid "Packets"
-msgstr "Paquetes"
-
-#: ../../operation/network/network_report.php:206
-#: ../../operation/network/network_report.php:236
-#: ../../enterprise/include/functions_reporting_csv.php:2808
-#: ../../include/functions_netflow.php:349 ../../include/functions_config.php:965
-#: ../../include/functions_config.php:3027
-msgid "Bytes"
-msgstr "Bytes"
-
-#: ../../operation/network/network_report.php:256
-#, php-format
-msgid "Filtered by port %s. Click here to remove the filter."
-msgstr "Filtrado por puerto %s. Pinche aquí para eliminar el filtro."
-
-#: ../../operation/network/network_report.php:256
-#, php-format
-msgid "Filtered by IP %s. Click here to remove the filter."
-msgstr "Filtrado por IP %s. Pinche aquí para eliminar el filtro."
-
-#: ../../operation/network/network_report.php:313 ../../operation/tree.php:415
-#: ../../operation/tree.php:446 ../../godmode/groups/group_list.php:1034
-#: ../../enterprise/operation/agentes/tag_view.php:578
-#: ../../enterprise/operation/services/services.treeview_services.php:246
-#: ../../enterprise/tools/ipam/ipam_supernet_treeview.php:93
-#: ../../enterprise/include/functions_inventory.php:271
-#: ../../include/class/Heatmap.class.php:684
-#: ../../include/lib/Dashboard/Widgets/tree_view.php:645
-msgid "No data found"
-msgstr "No se encontraron datos"
-
-#: ../../operation/network/network_report.php:324
-#: ../../godmode/setup/performance.php:701
-#: ../../include/functions_netflow.php:2078
-#: ../../include/functions_visual_map.php:2866
-msgid "Others"
-msgstr "Otros"
-
-#: ../../operation/network/network_usage_map.php:29 ../../operation/menu.php:106
-msgid "Network usage map"
-msgstr "Mapa de uso de red"
-
-#: ../../operation/network/network_usage_map.php:139
-msgid "Show netflow map"
-msgstr "Mostrar mapa de flujo de red"
-
-#: ../../operation/network/network_usage_map.php:175
-msgid "No data retrieved"
-msgstr "No se han obtenido datos"
-
-#: ../../operation/search_users.php:45 ../../godmode/tag/tag.php:281
-#: ../../godmode/tag/edit_tag.php:239
-#: ../../enterprise/operation/reporting/custom_reporting.php:20
-#: ../../enterprise/godmode/setup/setup_auth.php:99
-#: ../../enterprise/include/functions_tasklist.php:254
-#: ../../enterprise/include/functions_tasklist.php:341
-#: ../../include/functions_cron.php:575 ../../include/functions_cron.php:666
-msgid "Email"
-msgstr "Correo electrónico"
-
-#: ../../operation/search_users.php:46 ../../operation/gis_maps/ajax.php:239
-#: ../../operation/gis_maps/ajax.php:349 ../../operation/gis_maps/ajax.php:466
-#: ../../operation/agentes/estado_agente.php:769
-#: ../../operation/agentes/estado_generalagente.php:343
-#: ../../operation/agentes/ver_agente.php:1019
-#: ../../operation/agentes/log_sources_status.php:58
-#: ../../operation/search_agents.php:58
-#: ../../godmode/agentes/planned_downtime.editor.php:917
-#: ../../godmode/users/user_list.php:481
-#: ../../enterprise/operation/agentes/tag_view.php:609
-#: ../../enterprise/operation/agentes/ver_agente.php:77
-#: ../../enterprise/operation/agentes/policy_view.php:399
-#: ../../enterprise/godmode/reporting/aws_view.php:61
-#: ../../enterprise/meta/agentsearch.php:142
-#: ../../include/functions_treeview.php:668
-#: ../../include/functions_events.php:4500 ../../include/ajax/module.php:984
-#: ../../extensions/users_connected.php:146 ../../mobile/operation/agent.php:193
-#: ../../mobile/operation/agents.php:99 ../../mobile/operation/agents.php:417
-#: ../../mobile/operation/agents.php:419 ../../mobile/operation/agents.php:422
-msgid "Last contact"
-msgstr "Último contacto"
-
-#: ../../operation/search_users.php:47
-msgid "Profile"
-msgstr "Perfil"
-
-#: ../../operation/search_users.php:62 ../../godmode/users/user_list.php:483
-#: ../../godmode/users/user_list.php:664
-#: ../../enterprise/godmode/setup/setup_metaconsole.php:276
-#: ../../enterprise/godmode/servers/HA_cluster.php:177
-#: ../../enterprise/extensions/disabled/check_acls.php:63
-#: ../../enterprise/extensions/disabled/check_acls.php:150
-msgid "Admin"
-msgstr "Administrador"
-
-#: ../../operation/search_users.php:63 ../../godmode/users/configure_user.php:984
-#: ../../godmode/users/user_list.php:665
-msgid "Administrator"
-msgstr "Administrador"
-
-#: ../../operation/search_users.php:71 ../../operation/users/user_edit.php:696
-#: ../../operation/users/user_edit.php:742
-#: ../../operation/events/events.build_table.php:202
-#: ../../operation/events/events.build_table.php:707
-#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:118
-#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:249
-#: ../../godmode/reporting/reporting_builder.item_editor.php:3311
-#: ../../godmode/update_manager/update_manager.history.php:43
-#: ../../godmode/setup/setup_integria.php:283
-#: ../../godmode/setup/setup_ehorus.php:80
-#: ../../godmode/events/custom_events.php:99
-#: ../../enterprise/godmode/setup/setup_auth.php:1039
-#: ../../enterprise/godmode/setup/setup_auth.php:1071
-#: ../../enterprise/godmode/servers/manage_export_form.php:113
-#: ../../enterprise/include/functions_tasklist.php:152
-#: ../../enterprise/include/class/MySQL.app.php:523
-#: ../../enterprise/include/class/DB2.app.php:501
-#: ../../enterprise/include/class/Oracle.app.php:508
-#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:502
-#: ../../enterprise/meta/general/login_page.php:125
-#: ../../enterprise/meta/general/login_page.php:167
-#: ../../enterprise/meta/include/functions_wizard_meta.php:516
-#: ../../enterprise/meta/include/functions_wizard_meta.php:1465
-#: ../../enterprise/meta/include/functions_events_meta.php:70
-#: ../../enterprise/meta/include/functions_meta.php:1165
-#: ../../enterprise/meta/include/functions_meta.php:1219
-#: ../../enterprise/meta/include/functions_meta.php:1273
-#: ../../enterprise/extensions/disabled/check_acls.php:47
-#: ../../enterprise/extensions/disabled/check_acls.php:132
-#: ../../general/logon_ok.php:247 ../../general/login_page.php:230
-#: ../../general/login_page.php:272 ../../include/functions.php:3045
-#: ../../include/functions_config.php:672 ../../include/functions_config.php:692
-#: ../../include/functions_cron.php:463 ../../include/functions_events.php:194
-#: ../../include/functions_events.php:245 ../../include/functions_events.php:6697
-#: ../../include/functions_events.php:7124
-#: ../../include/functions_reporting_html.php:5674
-#: ../../include/class/CredentialStore.class.php:805
-#: ../../include/class/CredentialStore.class.php:1134
-#: ../../include/class/AuditLog.class.php:108
-#: ../../include/class/AuditLog.class.php:211
-#: ../../extensions/users_connected.php:143 ../../extensions/api_checker.php:138
-#: ../../mobile/operation/tactical.php:349
-#: ../../mobile/include/user.class.php:373
-msgid "User"
-msgstr "Usuario"
-
-#: ../../operation/search_users.php:72 ../../godmode/users/configure_user.php:999
-msgid "Standard User"
-msgstr "Usuario estándar"
-
-#: ../../operation/search_users.php:87 ../../godmode/users/user_list.php:723
-#: ../../include/functions_reporting.php:4421
-#: ../../include/functions_reporting.php:4468
-msgid "The user doesn't have any assigned profile/group"
-msgstr "El usuario no tiene ningún perfil asignado."
-
-#: ../../operation/gis_maps/gis_map.php:30
-#: ../../operation/gis_maps/render_view.php:130
-#: ../../godmode/gis_maps/configure_gis_map.php:86
-msgid "GIS Maps list"
-msgstr "Lista de mapas GIS"
-
-#: ../../operation/gis_maps/gis_map.php:35 ../../operation/menu.php:260
-msgid "GIS Maps"
-msgstr "Mapas GIS"
-
-#: ../../operation/gis_maps/gis_map.php:109
-#: ../../godmode/reporting/graphs.php:323
-#: ../../godmode/reporting/reporting_builder.php:957
-#: ../../godmode/reporting/reporting_builder.php:1156
-#: ../../godmode/reporting/reporting_builder.list_items.php:427
-#: ../../godmode/alerts/alert_list.list.php:482
-#: ../../godmode/alerts/alert_templates.php:387
-#: ../../godmode/users/profile_list.php:349 ../../godmode/users/user_list.php:487
-#: ../../godmode/servers/servers.build_table.php:77
-#: ../../godmode/servers/plugin.php:819
+#: ../../views/calendar/list.php:39
+msgid "Calendars"
+msgstr "Calendarios"
+
+#: ../../views/calendar/list.php:92
+#: ../../operation/events/events.build_table.php:146
+#: ../../operation/incidents/list_integriaims_incidents.php:515
+#: ../../include/functions_events.php:6653
+#: ../../enterprise/tools/ipam/ipam_excel.php:130
+#: ../../enterprise/tools/ipam/ipam_excel.php:199
+#: ../../enterprise/tools/ipam/ipam_vlan_config.php:660
+#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:91
+#: ../../extensions/api_checker.php:161 ../../godmode/setup/os.list.php:68
+#: ../../godmode/modules/module_list.php:61
+#: ../../godmode/agentes/module_manager_editor_common.php:230
+#: ../../godmode/agentes/agent_manager.php:219
+#: ../../godmode/agentes/fields_manager.php:118
+#: ../../godmode/agentes/agent_incidents.php:88
+#: ../../godmode/alerts/alert_commands.php:656
+#: ../../godmode/groups/modu_group_list.php:251
+#: ../../godmode/groups/group_list.php:840
+msgid "ID"
+msgstr "ID"
+
+#: ../../views/calendar/list.php:96 ../../views/dashboard/header.php:80
+#: ../../include/class/ExternalTools.class.php:383
+#: ../../include/class/ConfigPEN.class.php:601
+#: ../../include/class/CredentialStore.class.php:807
+#: ../../include/functions_events.php:302
+#: ../../enterprise/views/ncm/agent/details.php:92
+#: ../../enterprise/views/ncm/snippets/list.php:71
+#: ../../enterprise/views/ncm/firmwares/list.php:77
+#: ../../enterprise/views/ncm/vendors/list.php:71
+#: ../../enterprise/views/ncm/templates/list.php:77
+#: ../../enterprise/views/ncm/models/list.php:73
+#: ../../enterprise/views/ipam/sites/list.php:49
+#: ../../enterprise/views/cluster/list.php:64
+#: ../../enterprise/include/class/AgentRepository.class.php:635
+#: ../../enterprise/include/class/LogSource.class.php:630
+#: ../../enterprise/include/class/Omnishell.class.php:402
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2297
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2906
+#: ../../enterprise/include/class/DeploymentCenter.class.php:764
+#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:266
+#: ../../enterprise/extensions/vmware/vmware_view.php:1338
 #: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:261
-#: ../../enterprise/godmode/policies/policies.php:409
-#: ../../enterprise/godmode/policies/policy_alerts.php:354
-#: ../../enterprise/godmode/alerts/alert_inventory_list.php:224
-#: ../../enterprise/godmode/modules/local_components.php:625
-#: ../../enterprise/meta/advanced/servers.build_table.php:72
-#: ../../enterprise/meta/include/functions_autoprovision.php:644
-#: ../../include/functions_container.php:157
-msgid "Op."
-msgstr "Op."
+#: ../../godmode/update_manager/update_manager.php:42
+#: ../../godmode/reporting/reporting_builder.list_items.php:427
+msgid "Options"
+msgstr "Opciones"
 
-#: ../../operation/gis_maps/gis_map.php:200
-msgid "No maps found"
-msgstr "No se encontraron mapas"
+#: ../../views/calendar/list.php:119
+#: ../../operation/snmpconsole/snmp_view.php:600
+#: ../../operation/events/events.php:1135
+#: ../../operation/events/events_list.php:767 ../../include/ajax/module.php:292
+#: ../../include/class/ConfigPEN.class.php:627
+#: ../../include/class/CredentialStore.class.php:845
+#: ../../enterprise/views/ncm/snippets/list.php:102
+#: ../../enterprise/views/ncm/firmwares/list.php:108
+#: ../../enterprise/views/ncm/vendors/list.php:94
+#: ../../enterprise/views/ncm/devices/list.php:155
+#: ../../enterprise/views/ncm/templates/list.php:108
+#: ../../enterprise/views/ncm/models/list.php:96
+#: ../../enterprise/views/ipam/sites/list.php:73
+#: ../../enterprise/views/cluster/list.php:96
+#: ../../enterprise/include/class/LogSource.class.php:656
+#: ../../enterprise/include/lib/Metaconsole/Node.php:623
+#: ../../enterprise/include/functions_events.php:117
+#: ../../enterprise/include/functions_ipam.php:1663
+#: ../../enterprise/meta/advanced/metasetup.consoles.php:874
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3244
+#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:726
+#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:197
+#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:257
+#: ../../mobile/operation/modules.php:318 ../../mobile/operation/alerts.php:241
+#: ../../mobile/operation/events.php:701 ../../mobile/operation/agents.php:253
+#: ../../godmode/update_manager/update_manager.history.php:67
+#: ../../godmode/snmpconsole/snmp_alert.php:1073
+#: ../../godmode/events/event_edit_filter.php:361
+msgid "Free search"
+msgstr "Búsqueda libre"
 
-#: ../../operation/gis_maps/gis_map.php:207
-#: ../../operation/incidents/list_integriaims_incidents.php:573
-#: ../../operation/incidents/configure_integriaims_incident.php:380
-#: ../../godmode/netflow/nf_edit_form.php:272
-#: ../../godmode/snmpconsole/snmp_filters.php:263
-#: ../../godmode/snmpconsole/snmp_filters.php:336
-#: ../../godmode/snmpconsole/snmp_alert.php:1054
-#: ../../godmode/snmpconsole/snmp_alert.php:1465
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2167
-#: ../../godmode/reporting/graph_builder.main.php:294
-#: ../../godmode/reporting/create_container.php:333
-#: ../../godmode/reporting/map_builder.php:559
-#: ../../godmode/category/edit_category.php:205 ../../godmode/setup/news.php:231
-#: ../../godmode/setup/gis.php:97 ../../godmode/setup/os.php:95
-#: ../../godmode/setup/os.php:177 ../../godmode/setup/links.php:127
-#: ../../godmode/agentes/planned_downtime.list.php:582
-#: ../../godmode/agentes/planned_downtime.list.php:873
-#: ../../godmode/agentes/configure_field.php:141
-#: ../../godmode/agentes/module_manager.php:229
-#: ../../godmode/agentes/module_manager_editor.php:788
-#: ../../godmode/agentes/agent_manager.php:929
-#: ../../godmode/groups/configure_group.php:279
-#: ../../godmode/groups/configure_modu_group.php:86
-#: ../../godmode/alerts/configure_alert_command.php:387
-#: ../../godmode/alerts/alert_list.list.php:958
-#: ../../godmode/alerts/alert_commands.php:748
-#: ../../godmode/alerts/alert_list.php:496
-#: ../../godmode/alerts/alert_templates.php:481
-#: ../../godmode/alerts/alert_actions.php:471
-#: ../../godmode/alerts/configure_alert_action.php:402
-#: ../../godmode/users/profile_list.php:463
-#: ../../godmode/users/configure_user.php:1475
-#: ../../godmode/events/event_responses.editor.php:219
-#: ../../godmode/events/event_edit_filter.php:676
-#: ../../godmode/modules/manage_network_components.php:934
-#: ../../godmode/modules/manage_nc_groups.php:318
-#: ../../godmode/modules/manage_network_components_form.php:376
-#: ../../godmode/modules/manage_network_templates_form.php:180
-#: ../../godmode/modules/manage_nc_groups_form.php:93
-#: ../../godmode/modules/manage_network_templates.php:309
-#: ../../godmode/tag/edit_tag.php:281 ../../godmode/servers/plugin.php:596
-#: ../../enterprise/operation/agentes/manage_transmap_creation.php:405
-#: ../../enterprise/tools/ipam/ipam_network_location_config.php:148
-#: ../../enterprise/tools/ipam/ipam_network_location_config.php:315
-#: ../../enterprise/tools/ipam/ipam_editor.php:361
-#: ../../enterprise/tools/ipam/ipam_list.php:746
-#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:454
-#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor_form.php:24
-#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor_form.php:87
-#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:428
-#: ../../enterprise/godmode/reporting/graph_template_editor.php:269
-#: ../../enterprise/godmode/reporting/aws_view.php:194
-#: ../../enterprise/godmode/setup/edit_skin.php:299
-#: ../../enterprise/godmode/agentes/collections.editor.php:169
-#: ../../enterprise/godmode/agentes/collections.agents.php:38
-#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:671
-#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:720
-#: ../../enterprise/godmode/agentes/collections.php:404
-#: ../../enterprise/godmode/agentes/collections.data.php:68
-#: ../../enterprise/godmode/agentes/collections.data.php:169
-#: ../../enterprise/godmode/agentes/collections.data.php:193
-#: ../../enterprise/godmode/agentes/collections.data.php:213
-#: ../../enterprise/godmode/agentes/collections.data.php:240
-#: ../../enterprise/godmode/agentes/collections.data.php:296
-#: ../../enterprise/godmode/policies/policies.php:645
-#: ../../enterprise/godmode/policies/policy_modules.php:432
-#: ../../enterprise/godmode/policies/configure_policy.php:139
-#: ../../enterprise/godmode/alerts/alert_inventory_list.php:433
-#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:599
-#: ../../enterprise/godmode/modules/configure_local_component.php:680
-#: ../../enterprise/godmode/modules/local_components.php:716
-#: ../../enterprise/godmode/modules/manage_inventory_modules.php:343
-#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:145
-#: ../../enterprise/godmode/servers/manage_export.php:130
-#: ../../enterprise/godmode/servers/manage_export.php:169
-#: ../../enterprise/godmode/services/services.service.php:912
-#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3095
-#: ../../enterprise/meta/advanced/collections.editor.php:136
-#: ../../enterprise/meta/advanced/cron_main.php:467
-#: ../../enterprise/meta/advanced/links.php:137
-#: ../../enterprise/meta/advanced/collections.php:437
-#: ../../enterprise/meta/advanced/collections.php:448
-#: ../../enterprise/meta/advanced/collections.data.php:42
-#: ../../enterprise/meta/advanced/collections.data.php:71
-#: ../../enterprise/meta/advanced/collections.data.php:93
-#: ../../enterprise/meta/advanced/collections.data.php:113
-#: ../../enterprise/meta/advanced/collections.data.php:138
-#: ../../enterprise/meta/advanced/collections.data.php:184
-#: ../../enterprise/meta/include/functions_autoprovision.php:588
-#: ../../enterprise/meta/include/functions_autoprovision.php:789
-#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:300
-#: ../../enterprise/meta/monitoring/wizard/wizard.manage_alert.php:105
-#: ../../enterprise/views/ncm/snippets/list.php:127
-#: ../../enterprise/views/ncm/snippets/edit.php:106
-#: ../../enterprise/views/ncm/vendors/list.php:119
-#: ../../enterprise/views/ncm/vendors/edit.php:104
-#: ../../enterprise/views/ncm/models/list.php:121
-#: ../../enterprise/views/ncm/models/edit.php:103
-#: ../../enterprise/views/ncm/templates/list.php:133
-#: ../../enterprise/views/ncm/templates/edit.php:315
-#: ../../enterprise/views/ncm/firmwares/list.php:133
-#: ../../enterprise/views/ncm/firmwares/edit.php:169
-#: ../../enterprise/views/ipam/sites/list.php:98
-#: ../../enterprise/views/ipam/sites/edit.php:80
-#: ../../include/functions_visual_map_editor.php:884
-#: ../../include/class/ManageNetScanScripts.class.php:763
-#: ../../include/class/ModuleTemplates.class.php:960
-#: ../../include/class/ModuleTemplates.class.php:1007
-#: ../../include/functions_filemanager.php:813
-#: ../../include/functions_filemanager.php:874 ../../views/calendar/list.php:144
-#: ../../views/calendar/special_days_edit.php:163
-#: ../../views/calendar/special_days_edit.php:206
-#: ../../views/calendar/edit.php:120 ../../views/calendar/special_days.php:323
-#: ../../views/calendar/special_days.php:406
-#: ../../views/calendar/special_days.php:481
-#: ../../views/calendar/special_days.php:505
-msgid "Create"
-msgstr "Crear"
+#: ../../views/dashboard/slides.php:41
+#: ../../operation/snmpconsole/snmp_view.php:741
+msgid "Exit fullscreen"
+msgstr "Salir de pantalla completa"
 
-#: ../../operation/gis_maps/gis_map.php:219
-msgid "Caution: Do you want delete the map?"
-msgstr "Cuidado: ¿Quieres borrar el mapa?"
+#: ../../views/dashboard/slides.php:181
+msgid "Change every"
+msgstr "Cambiar cada"
 
-#: ../../operation/gis_maps/gis_map.php:226
-msgid "Do you want to set default the map?"
-msgstr "¿Quieres configurar por defecto el mapa?"
+#: ../../views/dashboard/slides.php:203 ../../include/functions.php:3867
+#: ../../enterprise/meta/monitoring/wizard/wizard.module.web.php:212
+#: ../../enterprise/meta/monitoring/wizard/wizard.module.local.php:211
+#: ../../enterprise/meta/monitoring/wizard/wizard.agent.php:146
+#: ../../enterprise/meta/monitoring/wizard/wizard.module.network.php:252
+msgid "Previous"
+msgstr "Anterior"
 
-#: ../../operation/gis_maps/gis_map.php:234
-msgid "There was error on setup the default map."
-msgstr "Error al configurar el mapa por defecto"
+#: ../../views/dashboard/slides.php:218
+#: ../../enterprise/operation/agentes/transactional_map.php:402
+msgid "Stop"
+msgstr "Parar"
 
-#: ../../operation/gis_maps/ajax.php:236 ../../operation/gis_maps/ajax.php:269
-#: ../../operation/agentes/estado_monitores.php:123
-#: ../../operation/agentes/estado_agente.php:739
-#: ../../operation/agentes/interface_view.functions.php:480
-#: ../../operation/agentes/exportdata.csv.php:74
-#: ../../operation/agentes/alerts_status.php:547
-#: ../../operation/agentes/alerts_status.php:617
-#: ../../operation/agentes/ver_agente.php:1160
-#: ../../operation/agentes/exportdata.php:83
-#: ../../operation/agentes/status_monitor.php:1308
-#: ../../operation/agentes/exportdata.excel.php:74
-#: ../../operation/search_modules.php:33 ../../operation/search_agents.php:42
-#: ../../operation/search_agents.php:48 ../../operation/search_alerts.php:34
-#: ../../operation/events/sound_events.php:165
-#: ../../operation/events/events.php:1953
-#: ../../operation/events/events.build_table.php:80
-#: ../../godmode/reporting/visual_console_builder.elements.php:104
-#: ../../godmode/reporting/reporting_builder.item_editor.php:196
-#: ../../godmode/reporting/reporting_builder.item_editor.php:819
-#: ../../godmode/reporting/reporting_builder.item_editor.php:1553
-#: ../../godmode/reporting/reporting_builder.item_editor.php:3763
-#: ../../godmode/reporting/reporting_builder.item_editor.php:4281
-#: ../../godmode/reporting/reporting_builder.item_editor.php:4305
-#: ../../godmode/reporting/graph_builder.graph_editor.php:212
-#: ../../godmode/reporting/visual_console_builder.wizard.php:450
-#: ../../godmode/reporting/visual_console_builder.wizard.php:738
-#: ../../godmode/reporting/visual_console_builder.wizard.php:761
-#: ../../godmode/reporting/create_container.php:387
-#: ../../godmode/reporting/create_container.php:554
-#: ../../godmode/reporting/create_container.php:627
-#: ../../godmode/reporting/reporting_builder.list_items.php:391
-#: ../../godmode/massive/massive_standby_alerts.php:223
-#: ../../godmode/massive/massive_standby_alerts.php:258
-#: ../../godmode/massive/massive_copy_modules.php:131
-#: ../../godmode/massive/massive_copy_modules.php:295
-#: ../../godmode/massive/massive_enable_disable_alerts.php:195
-#: ../../godmode/massive/massive_enable_disable_alerts.php:230
-#: ../../godmode/gis_maps/configure_gis_map.php:581
-#: ../../godmode/agentes/planned_downtime.list.php:353
-#: ../../godmode/agentes/status_monitor_custom_fields.php:77
-#: ../../godmode/agentes/status_monitor_custom_fields.php:143
-#: ../../godmode/agentes/module_manager_editor_common.php:1250
-#: ../../godmode/agentes/module_manager_editor_common.php:1303
-#: ../../godmode/agentes/module_manager_editor_prediction.php:126
-#: ../../godmode/alerts/alert_view.php:87
-#: ../../godmode/alerts/alert_list.builder.php:56
-#: ../../godmode/alerts/alert_list.list.php:474
-#: ../../godmode/alerts/alert_list.list.php:724
-#: ../../godmode/servers/plugin.php:87
-#: ../../enterprise/operation/agentes/manage_transmap_creation.php:187
-#: ../../enterprise/operation/agentes/manage_transmap_creation.php:365
-#: ../../enterprise/operation/agentes/manage_transmap_creation.php:491
-#: ../../enterprise/operation/agentes/tag_view.php:599
-#: ../../enterprise/operation/inventory/inventory.php:387
-#: ../../enterprise/operation/log/log_viewer.php:632
-#: ../../enterprise/tools/ipam/ipam_network.php:397
-#: ../../enterprise/tools/ipam/ipam_ajax.php:379
-#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:316
-#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1393
-#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2031
-#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3501
-#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3712
-#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3730
-#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:220
-#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:136
-#: ../../enterprise/godmode/agentes/collections.agents.php:94
-#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:85
-#: ../../enterprise/godmode/policies/policy_linking.php:150
-#: ../../enterprise/godmode/modules/manage_inventory_modules.php:299
-#: ../../enterprise/godmode/services/services.elements.php:94
-#: ../../enterprise/godmode/services/services.elements.php:133
-#: ../../enterprise/godmode/services/services.elements.php:274
-#: ../../enterprise/include/functions_reporting.php:1852
-#: ../../enterprise/include/functions_reporting.php:2185
-#: ../../enterprise/include/functions_reporting.php:2216
-#: ../../enterprise/include/functions_reporting.php:2234
-#: ../../enterprise/include/functions_reporting.php:2891
-#: ../../enterprise/include/functions_reporting.php:3878
-#: ../../enterprise/include/functions_reporting.php:4902
-#: ../../enterprise/include/functions_log.php:279
-#: ../../enterprise/include/functions_log.php:282
-#: ../../enterprise/include/functions_inventory.php:363
-#: ../../enterprise/include/functions_inventory.php:849
-#: ../../enterprise/include/functions_inventory.php:905
-#: ../../enterprise/include/functions_events.php:147
-#: ../../enterprise/include/functions_services.php:1666
-#: ../../enterprise/include/class/AlertCorrelationManager.class.php:922
-#: ../../enterprise/include/class/LogSource.class.php:627
-#: ../../enterprise/include/functions_reporting_pdf.php:524
-#: ../../enterprise/include/functions_reporting_pdf.php:532
-#: ../../enterprise/include/functions_reporting_pdf.php:540
-#: ../../enterprise/include/functions_reporting_pdf.php:556
-#: ../../enterprise/include/functions_reporting_pdf.php:714
-#: ../../enterprise/include/functions_reporting_csv.php:490
-#: ../../enterprise/include/functions_reporting_csv.php:776
-#: ../../enterprise/include/functions_reporting_csv.php:802
-#: ../../enterprise/include/functions_reporting_csv.php:915
-#: ../../enterprise/include/functions_reporting_csv.php:954
-#: ../../enterprise/include/functions_reporting_csv.php:1014
-#: ../../enterprise/include/functions_reporting_csv.php:1030
-#: ../../enterprise/include/functions_reporting_csv.php:1054
-#: ../../enterprise/include/functions_reporting_csv.php:1184
-#: ../../enterprise/include/functions_reporting_csv.php:1215
-#: ../../enterprise/include/functions_reporting_csv.php:1270
-#: ../../enterprise/include/functions_reporting_csv.php:1325
-#: ../../enterprise/include/functions_reporting_csv.php:1374
-#: ../../enterprise/include/functions_reporting_csv.php:1429
-#: ../../enterprise/include/functions_reporting_csv.php:1458
-#: ../../enterprise/include/functions_reporting_csv.php:1502
-#: ../../enterprise/include/functions_reporting_csv.php:1548
-#: ../../enterprise/include/functions_reporting_csv.php:1621
-#: ../../enterprise/include/functions_reporting_csv.php:1740
-#: ../../enterprise/include/functions_reporting_csv.php:1975
-#: ../../enterprise/include/functions_reporting_csv.php:2048
-#: ../../enterprise/include/functions_reporting_csv.php:2281
-#: ../../enterprise/include/functions_reporting_csv.php:2317
-#: ../../enterprise/include/functions_reporting_csv.php:2348
-#: ../../enterprise/include/functions_reporting_csv.php:2465
-#: ../../enterprise/include/functions_reporting_csv.php:2518
-#: ../../enterprise/include/functions_reporting_csv.php:2736
-#: ../../enterprise/meta/include/functions_wizard_meta.php:3494
-#: ../../enterprise/meta/agentsearch.php:134
-#: ../../enterprise/meta/monitoring/custom_fields_csv.php:99
-#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:281
-#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:376
-#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:443
-#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:711
-#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:790
-#: ../../enterprise/meta/monitoring/wizard/wizard.manage_alert.php:205
-#: ../../enterprise/meta/monitoring/custom_fields_view.php:704
-#: ../../include/functions_reports.php:1313
-#: ../../include/functions_reporting.php:6654
-#: ../../include/functions_snmp_browser.php:1625
-#: ../../include/functions_graph.php:5343
-#: ../../include/functions_visual_map_editor.php:422
-#: ../../include/functions_visual_map_editor.php:455
-#: ../../include/functions_reporting_html.php:542
-#: ../../include/functions_reporting_html.php:938
-#: ../../include/functions_reporting_html.php:1049
-#: ../../include/functions_reporting_html.php:1057
-#: ../../include/functions_reporting_html.php:1747
-#: ../../include/functions_reporting_html.php:2075
-#: ../../include/functions_reporting_html.php:2177
-#: ../../include/functions_reporting_html.php:2997
-#: ../../include/functions_reporting_html.php:3131
-#: ../../include/functions_reporting_html.php:3434
-#: ../../include/functions_reporting_html.php:3514
-#: ../../include/functions_reporting_html.php:3522
-#: ../../include/functions_reporting_html.php:3531
-#: ../../include/functions_reporting_html.php:3543
-#: ../../include/functions_reporting_html.php:3699
-#: ../../include/functions_reporting_html.php:3822
-#: ../../include/functions_reporting_html.php:3916
-#: ../../include/functions_reporting_html.php:4640
-#: ../../include/functions_reporting_html.php:4688
-#: ../../include/functions_reporting_html.php:4726
-#: ../../include/functions_reporting_html.php:5035
-#: ../../include/functions_reporting_html.php:5075
-#: ../../include/functions_reporting_html.php:5325
-#: ../../include/class/NetworkMap.class.php:2835
-#: ../../include/class/NetworkMap.class.php:2884
-#: ../../include/class/NetworkMap.class.php:3162
-#: ../../include/class/AgentsAlerts.class.php:410
-#: ../../include/class/AgentsAlerts.class.php:974
-#: ../../include/lib/Dashboard/Widgets/module_value.php:290
-#: ../../include/lib/Dashboard/Widgets/wux_transaction_stats.php:250
-#: ../../include/lib/Dashboard/Widgets/top_n.php:206
-#: ../../include/lib/Dashboard/Widgets/graph_module_histogram.php:286
-#: ../../include/lib/Dashboard/Widgets/module_icon.php:316
-#: ../../include/lib/Dashboard/Widgets/module_table_value.php:265
-#: ../../include/lib/Dashboard/Widgets/single_graph.php:261
-#: ../../include/lib/Dashboard/Widgets/sla_percent.php:297
-#: ../../include/lib/Dashboard/Widgets/module_status.php:306
-#: ../../include/lib/Dashboard/Widgets/wux_transaction.php:239
-#: ../../include/functions_gis.php:229
-#: ../../include/rest-api/models/VisualConsole/Items/DonutGraph.php:224
-#: ../../include/rest-api/models/VisualConsole/Items/EventsHistory.php:235
-#: ../../include/rest-api/models/VisualConsole/Items/ColorCloud.php:394
-#: ../../include/rest-api/models/VisualConsole/Items/StaticGraph.php:363
-#: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:546
-#: ../../include/rest-api/models/VisualConsole/Items/SimpleValue.php:332
-#: ../../include/rest-api/models/VisualConsole/Items/Odometer.php:368
-#: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:585
-#: ../../include/rest-api/models/VisualConsole/Items/BarsGraph.php:511
-#: ../../include/rest-api/models/VisualConsole/Items/BasicChart.php:281
-#: ../../include/ajax/heatmap.ajax.php:238
-#: ../../include/ajax/heatmap.ajax.php:277
-#: ../../include/ajax/heatmap.ajax.php:312
-#: ../../include/ajax/alert_list.ajax.php:446
-#: ../../extensions/insert_data.php:158 ../../mobile/operation/events.php:553
-#: ../../mobile/operation/home.php:96 ../../mobile/operation/alerts.php:335
-#: ../../mobile/operation/agents.php:93 ../../mobile/operation/agents.php:403
-#: ../../mobile/operation/modules.php:597
-msgid "Agent"
-msgstr "Agente"
+#: ../../views/dashboard/slides.php:229
+msgid "Pause"
+msgstr "Pausar"
 
-#: ../../operation/gis_maps/ajax.php:237 ../../operation/gis_maps/ajax.php:275
-#: ../../operation/gis_maps/ajax.php:444
-msgid "Position (Lat, Long, Alt)"
-msgstr "Posición (Lat, Long, Alt)"
+#: ../../views/dashboard/slides.php:240
+#: ../../include/class/CustomNetScan.class.php:550
+#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:568
+#: ../../enterprise/include/class/Aws.cloud.php:1423
+#: ../../enterprise/include/class/MySQL.app.php:589
+#: ../../enterprise/include/class/Oracle.app.php:574
+#: ../../enterprise/include/class/DB2.app.php:567
+#: ../../enterprise/include/class/SAP.app.php:442
+#: ../../enterprise/include/class/Omnishell.class.php:643
+#: ../../enterprise/include/class/VMware.app.php:534
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:831
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1093
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1965
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2062
+#: ../../enterprise/include/lib/ClusterViewer/ClusterWizard.php:1200
+#: ../../enterprise/meta/monitoring/wizard/wizard.php:132
+#: ../../enterprise/meta/monitoring/wizard/wizard.module.web.php:215
+#: ../../enterprise/meta/monitoring/wizard/wizard.module.local.php:214
+#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:733
+#: ../../enterprise/meta/monitoring/wizard/wizard.agent.php:149
+#: ../../enterprise/meta/monitoring/wizard/wizard.module.network.php:262
+#: ../../enterprise/godmode/wizards/Cloud.class.php:579
+#: ../../godmode/wizards/HostDevices.class.php:769
+#: ../../godmode/alerts/configure_alert_template.php:1181
+#: ../../godmode/alerts/configure_alert_template.php:1188
+msgid "Next"
+msgstr "Siguiente"
 
-#: ../../operation/gis_maps/ajax.php:238
-msgid "Start contact"
-msgstr "Inicio de contacto"
+#: ../../views/dashboard/slides.php:252
+msgid "Mode Cell"
+msgstr "Modo celdas"
 
-#: ../../operation/gis_maps/ajax.php:240
-msgid "Num reports"
-msgstr "Informes numéricos"
+#: ../../views/dashboard/slides.php:258
+msgid "Mode Layout"
+msgstr "Modo esquema"
 
-#: ../../operation/gis_maps/ajax.php:242 ../../operation/agentes/gis_view.php:225
-msgid "Manual placement"
-msgstr "Colocación manual"
+#: ../../views/dashboard/cell.php:42
+msgid "New widget"
+msgstr "Nuevo widget"
 
-#: ../../operation/gis_maps/ajax.php:279 ../../operation/gis_maps/ajax.php:448
-msgid "Default position of map."
-msgstr "Posición por defecto del mapa"
+#: ../../views/dashboard/cell.php:56
+msgid "Configure widget"
+msgstr "Configurar widget"
 
-#: ../../operation/gis_maps/ajax.php:290
-#: ../../godmode/agentes/agent_manager.php:298
-#: ../../godmode/servers/modificar_server.php:62
-#: ../../enterprise/include/functions_reporting_csv.php:718
-#: ../../enterprise/meta/include/functions_wizard_meta.php:209
-#: ../../enterprise/meta/include/functions_wizard_meta.php:213
-#: ../../enterprise/meta/include/functions_wizard_meta.php:479
-#: ../../enterprise/meta/include/functions_wizard_meta.php:1460
-#: ../../enterprise/meta/include/functions_wizard_meta.php:1805
-#: ../../include/functions_treeview.php:640
-#: ../../include/functions_events.php:4486
-#: ../../include/functions_reporting_html.php:1492
-#: ../../include/functions_reporting_html.php:3826
-#: ../../include/functions_reporting_html.php:3920
-msgid "IP Address"
-msgstr "Dirección IP"
+#: ../../views/dashboard/cell.php:68
+msgid "Delete widget"
+msgstr "Eliminar widget"
 
-#: ../../operation/gis_maps/ajax.php:297
-#: ../../operation/agentes/estado_agente.php:748
-#: ../../operation/agentes/estado_generalagente.php:196
-#: ../../operation/tree.php:78 ../../operation/tree.php:146
-#: ../../operation/search_agents.php:44 ../../operation/search_agents.php:50
-#: ../../godmode/reporting/reporting_builder.item_editor.php:71
-#: ../../godmode/massive/massive_edit_agents.php:719
-#: ../../godmode/agentes/planned_downtime.editor.php:916
-#: ../../godmode/agentes/modificar_agente.php:649
-#: ../../godmode/agentes/agent_manager.php:389
-#: ../../enterprise/operation/agentes/tag_view.php:602
-#: ../../enterprise/tools/ipam/ipam_network.php:398
-#: ../../enterprise/godmode/modules/configure_local_component.php:177
-#: ../../enterprise/godmode/modules/local_components.php:561
-#: ../../enterprise/godmode/modules/local_components.php:586
-#: ../../enterprise/godmode/modules/local_components.php:622
-#: ../../enterprise/godmode/modules/manage_inventory_modules.php:274
-#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:103
-#: ../../enterprise/include/class/AgentRepository.class.php:342
-#: ../../enterprise/include/class/AgentRepository.class.php:630
-#: ../../enterprise/include/class/AgentRepository.class.php:673
-#: ../../enterprise/include/class/DeploymentCenter.class.php:756
-#: ../../enterprise/include/class/DeploymentCenter.class.php:817
-#: ../../enterprise/include/class/DeploymentCenter.class.php:1289
-#: ../../enterprise/include/class/DeploymentCenter.class.php:1397
-#: ../../enterprise/include/functions_reporting_csv.php:718
-#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:254
-#: ../../enterprise/meta/agentsearch.php:136
-#: ../../enterprise/views/cluster/view.php:253
-#: ../../include/functions_events.php:4491
-#: ../../include/functions_reporting_html.php:1496
-#: ../../include/functions_reporting_html.php:3339
-#: ../../include/class/Diagnostics.class.php:748
-#: ../../include/lib/Dashboard/Widgets/tree_view.php:332
-#: ../../include/ajax/heatmap.ajax.php:325 ../../mobile/operation/agents.php:94
-#: ../../mobile/operation/agents.php:404
-msgid "OS"
-msgstr "SO"
+#: ../../views/dashboard/header.php:43
+#: ../../operation/visual_console/legacy_view.php:205
+#: ../../operation/visual_console/view.php:210
+#: ../../operation/gis_maps/render_view.php:136
+#: ../../operation/reporting/graph_viewer.php:234
+#: ../../operation/reporting/reporting_viewer.php:186
+#: ../../include/class/AgentsAlerts.class.php:804
+#: ../../enterprise/operation/agentes/manage_transmap.php:141
+#: ../../enterprise/meta/screens/screens.visualmap.php:274
+#: ../../extensions/disabled/matrix_events.php:35
+#: ../../extensions/agents_modules.php:380
+#: ../../extensions/agents_modules.php:387
+#: ../../extensions/agents_modules.php:390
+msgid "Full screen mode"
+msgstr "Modo pantalla completa"
 
-#: ../../operation/gis_maps/ajax.php:316
-#: ../../godmode/reporting/reporting_builder.item_editor.php:75
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2269
-#: ../../godmode/events/event_responses.editor.php:156
-#: ../../godmode/events/event_responses.editor.php:164
-#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2266
-#: ../../enterprise/include/functions_reporting_csv.php:718
-#: ../../enterprise/include/functions_reporting_csv.php:2409
-#: ../../enterprise/include/functions_reporting_csv.php:2423
-#: ../../include/functions_reporting_html.php:1512
-#: ../../extensions/api_checker.php:220
-msgid "URL"
-msgstr "URL"
+#: ../../views/dashboard/header.php:57
+#: ../../operation/visual_console/legacy_view.php:253
+#: ../../operation/visual_console/view.php:444
+#: ../../operation/gis_maps/render_view.php:138
+#: ../../operation/reporting/graph_viewer.php:243
+#: ../../operation/reporting/reporting_viewer.php:195
+#: ../../operation/heatmap.php:210 ../../operation/events/events.php:771
+#: ../../include/class/AgentsAlerts.class.php:809
+#: ../../extensions/agents_modules.php:531
+msgid "Back to normal mode"
+msgstr "Volver a modo normal"
 
-#: ../../operation/gis_maps/ajax.php:339
-msgid "Satellite Version"
-msgstr "Versión satélite"
-
-#: ../../operation/gis_maps/ajax.php:341
-#: ../../operation/agentes/estado_generalagente.php:227
-#: ../../enterprise/views/cluster/view.php:309
-#: ../../include/functions_treeview.php:731
-msgid "Agent Version"
-msgstr "Versión del agente"
-
-#: ../../operation/gis_maps/ajax.php:351 ../../operation/gis_maps/ajax.php:362
-#: ../../operation/gis_maps/ajax.php:468 ../../operation/gis_maps/ajax.php:479
-#: ../../operation/agentes/estado_generalagente.php:348
-#: ../../godmode/snmpconsole/snmp_alert.php:1295 ../../godmode/db/db_main.php:189
-#: ../../enterprise/tools/ipam/ipam_ajax.php:502
-#: ../../enterprise/tools/ipam/ipam_list.php:675
-#: ../../enterprise/include/functions_tasklist.php:572
-#: ../../enterprise/include/functions_ipam.php:2072
-#: ../../enterprise/include/functions_ipam.php:2073
-#: ../../enterprise/include/functions_ipam.php:2074
-#: ../../include/functions_ui.php:549 ../../include/functions_treeview.php:660
-#: ../../include/functions_cron.php:869
-msgid "Never"
-msgstr "Nunca"
-
-#: ../../operation/gis_maps/ajax.php:360 ../../operation/gis_maps/ajax.php:477
-#: ../../operation/agentes/estado_agente.php:745
-#: ../../operation/agentes/estado_generalagente.php:343
-#: ../../enterprise/operation/agentes/tag_view.php:601
-#: ../../enterprise/include/functions_reporting_csv.php:718
-#: ../../include/functions_treeview.php:668
-msgid "Remote"
-msgstr "Remoto"
-
-#: ../../operation/gis_maps/ajax.php:385 ../../operation/gis_maps/ajax.php:502
-msgid "Number of non-validated critical events"
-msgstr "Numero de eventos críticos no validados"
-
-#: ../../operation/gis_maps/ajax.php:395 ../../operation/gis_maps/ajax.php:512
-msgid "Alert(s) fired"
-msgstr "Alertas disparadas"
-
-#: ../../operation/gis_maps/render_view.php:145
-msgid "Show link to public GIS map"
-msgstr "Mostrar enlace al mapa SIG público"
-
-#: ../../operation/gis_maps/render_view.php:149 ../../include/functions.php:3350
-msgid "5 seconds"
-msgstr "5 segundos"
-
-#: ../../operation/gis_maps/render_view.php:150 ../../include/functions.php:3351
-msgid "10 seconds"
-msgstr "10 segundos"
-
-#: ../../operation/gis_maps/render_view.php:151 ../../operation/heatmap.php:171
-#: ../../include/functions.php:3353
-#: ../../include/class/AgentsAlerts.class.php:816
-#: ../../include/ajax/heatmap.ajax.php:50
-msgid "30 seconds"
-msgstr "30 segundos"
-
-#: ../../operation/gis_maps/render_view.php:152 ../../operation/heatmap.php:172
-#: ../../include/functions.php:3354
-#: ../../include/class/AgentsAlerts.class.php:817
-#: ../../include/ajax/heatmap.ajax.php:51
-msgid "1 minute"
-msgstr "1 minuto"
-
-#: ../../operation/gis_maps/render_view.php:153 ../../include/functions.php:3355
-#: ../../include/class/AgentsAlerts.class.php:818
-msgid "2 minutes"
-msgstr "2 minutos"
-
-#: ../../operation/gis_maps/render_view.php:154 ../../operation/heatmap.php:174
-#: ../../include/functions.php:3356
-#: ../../include/class/AgentsAlerts.class.php:819
-#: ../../include/ajax/heatmap.ajax.php:53 ../../include/ajax/module.php:198
-msgid "5 minutes"
-msgstr "5 minutos"
-
-#: ../../operation/gis_maps/render_view.php:155
-#: ../../include/class/AgentsAlerts.class.php:820
-msgid "10 minutes"
-msgstr "10 minutos"
-
-#: ../../operation/gis_maps/render_view.php:156
-#: ../../godmode/reporting/create_container.php:346
-#: ../../godmode/setup/performance.php:529
-#: ../../enterprise/godmode/reporting/graph_template_editor.php:217
-#: ../../include/functions.php:2691 ../../include/functions.php:3359
-#: ../../include/ajax/graph.ajax.php:146 ../../include/ajax/module.php:200
-msgid "1 hour"
-msgstr "1 hora"
-
-#: ../../operation/gis_maps/render_view.php:157
-#: ../../enterprise/godmode/reporting/graph_template_editor.php:218
-msgid "2 hours"
-msgstr "2 horas"
-
-#: ../../operation/gis_maps/render_view.php:164
-#: ../../operation/agentes/estado_monitores.php:521
-#: ../../operation/agentes/estado_agente.php:275
-#: ../../operation/agentes/group_view.php:228
-#: ../../operation/agentes/group_view.php:233
-#: ../../operation/agentes/tactical.php:178
-#: ../../operation/agentes/status_monitor.php:494 ../../operation/tree.php:214
-#: ../../operation/tree.php:271 ../../operation/tree.php:466
-#: ../../godmode/reporting/reporting_builder.item_editor.php:3603
-#: ../../godmode/massive/massive_delete_agents.php:211
-#: ../../godmode/massive/massive_edit_agents.php:533
-#: ../../godmode/massive/massive_edit_modules.php:387
-#: ../../godmode/massive/massive_edit_modules.php:473
-#: ../../godmode/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/groups/group_list.php:1054
-#: ../../godmode/modules/manage_network_components_form_wizard.php:411
-#: ../../enterprise/operation/agentes/tag_view.php:133
-#: ../../enterprise/operation/services/services.treeview_services.php:266
-#: ../../enterprise/operation/services/services.service.php:122
-#: ../../enterprise/operation/services/services.service.php:168
-#: ../../enterprise/operation/services/services.list.php:239
-#: ../../enterprise/operation/services/services.list.php:504
-#: ../../enterprise/operation/services/services.list.php:558
-#: ../../enterprise/operation/services/services.service_map.php:114
-#: ../../enterprise/operation/services/services.table_services.php:161
-#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:121
-#: ../../enterprise/godmode/massive/massive_create_services.php:733
-#: ../../enterprise/godmode/services/services.service.php:685
-#: ../../enterprise/godmode/services/services.elements.php:363
-#: ../../enterprise/include/functions_reporting.php:3190
-#: ../../enterprise/include/functions_reporting.php:4191
-#: ../../enterprise/include/functions_reporting.php:4842
-#: ../../enterprise/include/functions_reporting.php:6198
-#: ../../enterprise/include/functions_services.php:1440
-#: ../../enterprise/meta/include/functions_wizard_meta.php:984
-#: ../../enterprise/meta/include/functions_wizard_meta.php:1068
-#: ../../enterprise/meta/include/functions_wizard_meta.php:1269
-#: ../../enterprise/meta/include/functions_wizard_meta.php:1293
-#: ../../enterprise/meta/include/functions_wizard_meta.php:1506
-#: ../../enterprise/meta/include/functions_wizard_meta.php:1590
-#: ../../enterprise/meta/include/functions_wizard_meta.php:1709
-#: ../../enterprise/meta/include/functions_wizard_meta.php:1727
-#: ../../enterprise/meta/monitoring/group_view.php:240
-#: ../../enterprise/meta/monitoring/group_view.php:246
-#: ../../enterprise/meta/monitoring/custom_fields_csv.php:122
-#: ../../enterprise/meta/monitoring/tactical.php:239
-#: ../../enterprise/meta/monitoring/custom_fields_view.php:181
-#: ../../include/functions.php:1039 ../../include/functions.php:1275
-#: ../../include/functions.php:1276 ../../include/functions.php:1278
-#: ../../include/functions.php:1319 ../../include/functions_ui.php:2604
-#: ../../include/functions_events.php:3345 ../../include/functions_graph.php:3563
-#: ../../include/functions_graph.php:3564 ../../include/functions_graph.php:5131
-#: ../../include/functions_reporting_html.php:859
-#: ../../include/functions_reporting_html.php:2293
-#: ../../include/functions_reporting_html.php:4556
-#: ../../include/class/AgentWizard.class.php:1303
-#: ../../include/class/AgentWizard.class.php:4003
-#: ../../include/lib/Dashboard/Widgets/system_group_status.php:313
-#: ../../include/lib/Dashboard/Widgets/tree_view.php:387
-#: ../../include/lib/Dashboard/Widgets/tree_view.php:420
-#: ../../include/lib/Dashboard/Widgets/tree_view.php:660
-#: ../../include/rest-api/models/VisualConsole/Items/Group.php:416
-#: ../../extensions/module_groups.php:50 ../../mobile/operation/agents.php:57
-#: ../../mobile/operation/modules.php:71
-msgid "Critical"
-msgstr "Crítico"
+#: ../../views/dashboard/header.php:67
+msgid "Update Dashboard"
+msgstr "Actualizar el panel de control"
 
+#: ../../views/dashboard/header.php:68 ../../views/dashboard/header.php:102
+#: ../../views/dashboard/list.php:224
 #: ../../operation/gis_maps/render_view.php:166
-#: ../../godmode/massive/massive_edit_agents.php:981
-#: ../../enterprise/operation/agentes/transactional_map.php:321
-#: ../../enterprise/operation/agentes/manage_transmap_creation.php:64
+#: ../../include/lib/Dashboard/Widgets/wux_transaction.php:377
+#: ../../include/functions_config.php:1286
+#: ../../include/functions_config.php:3178
 #: ../../enterprise/operation/services/services.service.php:161
 #: ../../enterprise/operation/services/services.list.php:237
 #: ../../enterprise/operation/services/services.list.php:552
 #: ../../enterprise/operation/services/services.service_map.php:116
 #: ../../enterprise/operation/services/services.table_services.php:159
-#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:444
-#: ../../enterprise/godmode/services/services.elements.php:843
-#: ../../enterprise/godmode/services/services.elements.php:854
+#: ../../enterprise/operation/agentes/transactional_map.php:321
+#: ../../enterprise/operation/agentes/manage_transmap_creation.php:64
 #: ../../enterprise/include/class/Omnishell.class.php:1499
 #: ../../enterprise/include/class/AlertCorrelationManager.class.php:3006
 #: ../../enterprise/include/lib/Metaconsole/Node.php:458
 #: ../../enterprise/load_enterprise.php:638
 #: ../../enterprise/load_enterprise.php:1134
-#: ../../include/functions_config.php:1250
-#: ../../include/functions_config.php:3107
-#: ../../include/lib/Dashboard/Widgets/wux_transaction.php:377
-#: ../../views/dashboard/list.php:224 ../../views/dashboard/header.php:68
-#: ../../views/dashboard/header.php:102
+#: ../../enterprise/godmode/services/services.elements.php:843
+#: ../../enterprise/godmode/services/services.elements.php:854
+#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:444
+#: ../../godmode/massive/massive_edit_agents.php:981
 msgid "Ok"
 msgstr "Aceptar"
 
-#: ../../operation/gis_maps/render_view.php:170
-msgid "Filter by status"
-msgstr "Filtro por estado"
-
-#: ../../operation/gis_maps/render_view.php:173
-#: ../../operation/agentes/estado_agente.php:201
-#: ../../godmode/agentes/configurar_agente.php:390
-#: ../../godmode/agentes/configurar_agente.php:695 ../../godmode/menu.php:309
-#: ../../godmode/menu.php:316
-#: ../../godmode/module_library/module_library_view.php:48
-#: ../../enterprise/godmode/policies/configure_policy.php:38
-#: ../../enterprise/godmode/servers/HA_cluster.php:70
-#: ../../enterprise/include/functions_policies.php:3712
-#: ../../enterprise/meta/general/logon_ok.php:99
-#: ../../enterprise/meta/general/main_menu.php:577
-#: ../../enterprise/meta/general/main_menu.php:607
-msgid "Setup"
-msgstr "Configuración"
-
-#: ../../operation/gis_maps/render_view.php:178
-#: ../../enterprise/extensions/vmware/vmware_view.php:1306
-#: ../../enterprise/extensions/vmware/vmware_view.php:1348
-#: ../../include/lib/Dashboard/Widgets/network_map.php:323
-msgid "Map"
-msgstr "Mapa"
-
-#: ../../operation/agentes/ehorus.php:30
-msgid "Missing agent id"
-msgstr "Falta ID de agente"
-
-#: ../../operation/agentes/ehorus.php:51
-msgid "Missing ehorus agent id"
-msgstr "Falta ID de agente de eHorus"
-
-#: ../../operation/agentes/ehorus.php:100 ../../operation/agentes/ehorus.php:137
-msgid "There was an error retrieving an authorization token"
-msgstr "Error al recibir el token de autorización"
-
-#: ../../operation/agentes/ehorus.php:112 ../../operation/agentes/ehorus.php:149
-#: ../../operation/agentes/ehorus.php:185
-msgid "There was an error processing the response"
-msgstr "Error al procesar la respuesta"
-
-#: ../../operation/agentes/ehorus.php:173
-msgid "There was an error retrieving the agent data"
-msgstr "Error al obtener los datos del agente"
-
-#: ../../operation/agentes/ehorus.php:190
-msgid "Remote management of this agent with eHorus"
-msgstr "Control remoto de este agente con eHorus"
-
-#: ../../operation/agentes/ehorus.php:192
-msgid "Launch"
-msgstr "Iniciar"
-
-#: ../../operation/agentes/ehorus.php:198
-msgid "The connection was lost and the authorization token was expired"
-msgstr "La conexión se perdió y el token de autorización ha expirado."
-
-#: ../../operation/agentes/ehorus.php:198
-msgid "Reload the page to request a new authorization token"
-msgstr "Refresca la página para obtener otro token de autorización"
-
-#: ../../operation/agentes/snapshot_view.php:42
-msgid "Cannot connect with node to display the module data."
-msgstr "No se ha podido conectar con el nodo para mostrar datos de módulos."
-
-#: ../../operation/agentes/snapshot_view.php:90
-#, php-format
-msgid "%s Snapshot data view for module (%s)"
-msgstr "Vista de datos de captura de %s del módulo (%s)"
-
-#: ../../operation/agentes/snapshot_view.php:96
-#, php-format
-msgid "Current data at %s"
-msgstr "Datos actuales en %s"
-
-#: ../../operation/agentes/estado_monitores.php:51
-msgid "Tag's information"
-msgstr "Información de etiquetas"
-
-#: ../../operation/agentes/estado_monitores.php:109
-msgid "Relationship information"
-msgstr "Información de relaciones"
-
-#: ../../operation/agentes/estado_monitores.php:125
-#: ../../operation/agentes/exportdata.csv.php:74
-#: ../../operation/agentes/alerts_status.php:548
-#: ../../operation/agentes/alerts_status.php:583
-#: ../../operation/agentes/alerts_status.php:618
-#: ../../operation/agentes/alerts_status.php:650
-#: ../../operation/agentes/exportdata.php:83
-#: ../../operation/agentes/exportdata.excel.php:74
-#: ../../operation/search_modules.php:32 ../../operation/search_alerts.php:35
-#: ../../godmode/reporting/visual_console_builder.elements.php:105
-#: ../../godmode/reporting/reporting_builder.item_editor.php:197
-#: ../../godmode/reporting/reporting_builder.item_editor.php:820
-#: ../../godmode/reporting/reporting_builder.item_editor.php:1610
-#: ../../godmode/reporting/reporting_builder.item_editor.php:3768
-#: ../../godmode/reporting/reporting_builder.item_editor.php:4284
-#: ../../godmode/reporting/reporting_builder.item_editor.php:4308
-#: ../../godmode/reporting/graph_builder.graph_editor.php:213
-#: ../../godmode/reporting/visual_console_builder.wizard.php:449
-#: ../../godmode/reporting/visual_console_builder.wizard.php:770
-#: ../../godmode/reporting/create_container.php:410
-#: ../../godmode/reporting/create_container.php:560
-#: ../../godmode/reporting/create_container.php:628
-#: ../../godmode/reporting/reporting_builder.list_items.php:410
-#: ../../godmode/massive/massive_standby_alerts.php:223
-#: ../../godmode/massive/massive_standby_alerts.php:258
-#: ../../godmode/massive/massive_edit_agents.php:674
-#: ../../godmode/massive/massive_edit_agents.php:1026
-#: ../../godmode/massive/massive_enable_disable_alerts.php:195
-#: ../../godmode/massive/massive_enable_disable_alerts.php:230
-#: ../../godmode/agentes/planned_downtime.list.php:357
-#: ../../godmode/agentes/planned_downtime.editor.php:1001
-#: ../../godmode/agentes/module_manager_editor_common.php:1260
-#: ../../godmode/agentes/module_manager_editor_common.php:1304
-#: ../../godmode/agentes/module_manager_editor_prediction.php:154
-#: ../../godmode/agentes/agent_manager.php:481
-#: ../../godmode/agentes/agent_manager.php:549
-#: ../../godmode/alerts/alert_view.php:91
-#: ../../godmode/alerts/alert_list.builder.php:70
-#: ../../godmode/alerts/alert_list.list.php:476
-#: ../../godmode/alerts/alert_list.list.php:734
-#: ../../godmode/servers/plugin.php:88
-#: ../../enterprise/operation/agentes/agent_inventory.php:69
-#: ../../enterprise/operation/agentes/policy_view.php:258
-#: ../../enterprise/operation/inventory/inventory.php:343
-#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:185
-#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:240
-#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:317
-#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1394
-#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2055
-#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3504
-#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3717
-#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3735
-#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:239
-#: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:211
-#: ../../enterprise/godmode/policies/policy_linking.php:151
-#: ../../enterprise/godmode/policies/policy_alerts.php:352
-#: ../../enterprise/godmode/policies/policy_alerts.php:567
-#: ../../enterprise/godmode/alerts/alert_inventory_list.php:371
-#: ../../enterprise/godmode/services/services.elements.php:93
-#: ../../enterprise/godmode/services/services.elements.php:157
-#: ../../enterprise/godmode/services/services.elements.php:275
-#: ../../enterprise/include/functions_reporting.php:1853
-#: ../../enterprise/include/functions_reporting.php:2892
-#: ../../enterprise/include/functions_reporting.php:3879
-#: ../../enterprise/include/functions_reporting.php:4903
-#: ../../enterprise/include/functions_ui.php:47
-#: ../../enterprise/include/functions_inventory.php:850
-#: ../../enterprise/include/functions_inventory.php:906
-#: ../../enterprise/include/functions_events.php:157
-#: ../../enterprise/include/functions_services.php:1779
-#: ../../enterprise/include/class/AlertCorrelationManager.class.php:923
-#: ../../enterprise/include/functions_reporting_pdf.php:525
-#: ../../enterprise/include/functions_reporting_pdf.php:533
-#: ../../enterprise/include/functions_reporting_pdf.php:541
-#: ../../enterprise/include/functions_reporting_pdf.php:557
-#: ../../enterprise/include/functions_reporting_csv.php:491
-#: ../../enterprise/include/functions_reporting_csv.php:776
-#: ../../enterprise/include/functions_reporting_csv.php:802
-#: ../../enterprise/include/functions_reporting_csv.php:915
-#: ../../enterprise/include/functions_reporting_csv.php:954
-#: ../../enterprise/include/functions_reporting_csv.php:1014
-#: ../../enterprise/include/functions_reporting_csv.php:1030
-#: ../../enterprise/include/functions_reporting_csv.php:1184
-#: ../../enterprise/include/functions_reporting_csv.php:1215
-#: ../../enterprise/include/functions_reporting_csv.php:1270
-#: ../../enterprise/include/functions_reporting_csv.php:1325
-#: ../../enterprise/include/functions_reporting_csv.php:1374
-#: ../../enterprise/include/functions_reporting_csv.php:1429
-#: ../../enterprise/include/functions_reporting_csv.php:1458
-#: ../../enterprise/include/functions_reporting_csv.php:1503
-#: ../../enterprise/include/functions_reporting_csv.php:1549
-#: ../../enterprise/include/functions_reporting_csv.php:1622
-#: ../../enterprise/include/functions_reporting_csv.php:1741
-#: ../../enterprise/include/functions_reporting_csv.php:1976
-#: ../../enterprise/include/functions_reporting_csv.php:2049
-#: ../../enterprise/include/functions_reporting_csv.php:2281
-#: ../../enterprise/include/functions_reporting_csv.php:2317
-#: ../../enterprise/include/functions_reporting_csv.php:2465
-#: ../../enterprise/include/functions_reporting_csv.php:2737
-#: ../../enterprise/meta/include/functions_wizard_meta.php:3501
-#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:222
-#: ../../enterprise/meta/monitoring/wizard/wizard.manage_alert.php:213
-#: ../../enterprise/extensions/disabled/check_acls.php:133
-#: ../../include/functions_reports.php:1344
-#: ../../include/functions_reporting.php:6655
-#: ../../include/functions_treeview.php:64 ../../include/functions_graph.php:5450
-#: ../../include/functions_visual_map_editor.php:497
-#: ../../include/functions_reporting_html.php:543
-#: ../../include/functions_reporting_html.php:939
-#: ../../include/functions_reporting_html.php:1748
-#: ../../include/functions_reporting_html.php:2076
-#: ../../include/functions_reporting_html.php:2178
-#: ../../include/functions_reporting_html.php:3132
-#: ../../include/functions_reporting_html.php:3515
-#: ../../include/functions_reporting_html.php:3523
-#: ../../include/functions_reporting_html.php:3532
-#: ../../include/functions_reporting_html.php:3544
-#: ../../include/functions_reporting_html.php:3700
-#: ../../include/functions_reporting_html.php:3828
-#: ../../include/functions_reporting_html.php:3922
-#: ../../include/functions_reporting_html.php:4641
-#: ../../include/functions_reporting_html.php:4689
-#: ../../include/class/AgentsAlerts.class.php:412
-#: ../../include/class/AgentsAlerts.class.php:903
-#: ../../include/lib/Dashboard/Widgets/module_value.php:308
-#: ../../include/lib/Dashboard/Widgets/top_n.php:221
-#: ../../include/lib/Dashboard/Widgets/graph_module_histogram.php:304
-#: ../../include/lib/Dashboard/Widgets/module_icon.php:334
-#: ../../include/lib/Dashboard/Widgets/module_table_value.php:283
-#: ../../include/lib/Dashboard/Widgets/single_graph.php:279
-#: ../../include/lib/Dashboard/Widgets/sla_percent.php:315
-#: ../../include/lib/Dashboard/Widgets/module_status.php:324
-#: ../../include/lib/Dashboard/Widgets/tree_view.php:682
-#: ../../include/rest-api/models/VisualConsole/Items/DonutGraph.php:242
-#: ../../include/rest-api/models/VisualConsole/Items/EventsHistory.php:252
-#: ../../include/rest-api/models/VisualConsole/Items/ColorCloud.php:411
-#: ../../include/rest-api/models/VisualConsole/Items/StaticGraph.php:380
-#: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:563
-#: ../../include/rest-api/models/VisualConsole/Items/SimpleValue.php:349
-#: ../../include/rest-api/models/VisualConsole/Items/Odometer.php:385
-#: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:604
-#: ../../include/rest-api/models/VisualConsole/Items/BarsGraph.php:529
-#: ../../include/rest-api/models/VisualConsole/Items/BasicChart.php:299
-#: ../../include/ajax/alert_list.ajax.php:279
-#: ../../include/ajax/alert_list.ajax.php:304
-#: ../../include/ajax/alert_list.ajax.php:467
-#: ../../extensions/insert_data.php:175 ../../extensions/agents_modules.php:444
-#: ../../mobile/operation/alerts.php:338
-msgid "Module"
-msgstr "Módulo"
-
-#: ../../operation/agentes/estado_monitores.php:160
-msgid "Non-initialized modules found."
-msgstr "Se han encontrado módulos no iniciados."
-
-#: ../../operation/agentes/estado_monitores.php:181
-msgid "List of modules"
-msgstr "Lista de módulos"
-
-#: ../../operation/agentes/estado_monitores.php:182
-msgid ""
-"To see the list of modules paginated, enable this option in the Styles "
-"Configuration."
-msgstr ""
-"Para ver la lista de módulos con paginación, habilita esta opción en la "
-"configuración de estilos."
-
-#: ../../operation/agentes/estado_monitores.php:421
-#: ../../operation/agentes/status_monitor.php:2056 ../../operation/tree.php:539
-#: ../../enterprise/operation/services/services.treeview_services.php:341
-msgid "Module: "
-msgstr "Módulo: "
-
-#: ../../operation/agentes/estado_monitores.php:518
-msgid "Status:"
-msgstr "Estado:"
-
-#: ../../operation/agentes/estado_monitores.php:524
-msgid "Not Normal"
-msgstr "No normal"
-
-#: ../../operation/agentes/estado_monitores.php:526
-#: ../../operation/agentes/estado_agente.php:276
-#: ../../operation/agentes/group_view.php:224
-#: ../../operation/agentes/group_view.php:229
-#: ../../operation/agentes/pandora_networkmap.view.php:1728
-#: ../../operation/agentes/tactical.php:181
-#: ../../operation/agentes/status_monitor.php:495 ../../operation/tree.php:215
-#: ../../operation/tree.php:272 ../../operation/tree.php:476
-#: ../../operation/events/events.php:2245
-#: ../../godmode/reporting/reporting_builder.item_editor.php:3604
-#: ../../godmode/massive/massive_delete_agents.php:212
-#: ../../godmode/massive/massive_edit_agents.php:534
-#: ../../godmode/massive/massive_edit_modules.php:388
-#: ../../godmode/massive/massive_edit_modules.php:474
-#: ../../godmode/massive/massive_copy_modules.php:118
-#: ../../godmode/massive/massive_copy_modules.php:278
-#: ../../godmode/massive/massive_delete_modules.php:421
-#: ../../godmode/massive/massive_delete_modules.php:442
-#: ../../godmode/groups/group_list.php:1064
-#: ../../godmode/alerts/alert_list.builder.php:290
-#: ../../enterprise/operation/agentes/transactional_map.php:339
-#: ../../enterprise/operation/agentes/transactional_map.php:385
-#: ../../enterprise/operation/agentes/tag_view.php:134
-#: ../../enterprise/operation/services/services.treeview_services.php:276
-#: ../../enterprise/operation/services/services.service.php:180
-#: ../../enterprise/operation/services/services.list.php:240
-#: ../../enterprise/operation/services/services.list.php:571
-#: ../../enterprise/operation/services/services.service_map.php:117
-#: ../../enterprise/operation/services/services.table_services.php:162
-#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:122
-#: ../../enterprise/godmode/services/services.elements.php:381
-#: ../../enterprise/include/functions_reporting.php:1889
-#: ../../enterprise/include/functions_reporting.php:2939
-#: ../../enterprise/include/functions_reporting.php:3927
-#: ../../enterprise/include/functions_reporting.php:4847
-#: ../../enterprise/include/functions_reporting.php:6158
-#: ../../enterprise/include/functions_cron.php:585
-#: ../../enterprise/include/class/DatabaseHA.class.php:223
-#: ../../enterprise/include/lib/ClusterViewer/ClusterManager.php:582
-#: ../../enterprise/include/lib/NetworkManager.php:103
-#: ../../enterprise/include/functions_reporting_pdf.php:637
-#: ../../enterprise/include/functions_HA_cluster.php:70
-#: ../../enterprise/meta/monitoring/group_view.php:236
-#: ../../enterprise/meta/monitoring/group_view.php:242
-#: ../../enterprise/meta/monitoring/custom_fields_csv.php:131
-#: ../../enterprise/meta/monitoring/tactical.php:242
-#: ../../enterprise/meta/monitoring/custom_fields_view.php:182
-#: ../../enterprise/views/ncm/agent/details.php:312
-#: ../../include/functions.php:1225 ../../include/functions.php:4100
-#: ../../include/functions_netflow.php:1865
-#: ../../include/functions_reports.php:557
-#: ../../include/functions_reporting.php:6101
-#: ../../include/functions_visual_map.php:2455
-#: ../../include/functions_visual_map.php:2483
-#: ../../include/functions_visual_map.php:2501
-#: ../../include/functions_visual_map.php:2519 ../../include/functions_ui.php:549
-#: ../../include/functions_ui.php:550 ../../include/functions_maps.php:54
-#: ../../include/functions_alerts.php:699 ../../include/functions_events.php:3245
-#: ../../include/functions_reporting_html.php:2282
-#: ../../include/functions_reporting_html.php:2295
-#: ../../include/functions_reporting_html.php:3246
-#: ../../include/functions_reporting_html.php:3654
-#: ../../include/lib/Dashboard/Widgets/tree_view.php:388
-#: ../../include/lib/Dashboard/Widgets/tree_view.php:421
-#: ../../include/lib/Dashboard/Widgets/tree_view.php:670
-#: ../../include/graphs/functions_flot.php:305
-#: ../../include/functions_filemanager.php:668
-#: ../../include/rest-api/models/VisualConsole/Items/Group.php:437
-#: ../../include/ajax/module.php:1071 ../../extensions/module_groups.php:52
-#: ../../mobile/operation/agents.php:60 ../../mobile/operation/modules.php:72
-msgid "Unknown"
-msgstr "Desconocido"
-
-#: ../../operation/agentes/estado_monitores.php:539
-#: ../../operation/agentes/alerts_status.functions.php:177
-msgid "Free text for search (*):"
-msgstr "Texto libre de búsqueda (*):"
-
-#: ../../operation/agentes/estado_monitores.php:540
-msgid "Search by module name, list matches."
-msgstr "Búsqueda por nombre del módulo, lista de coincidencias."
-
-#: ../../operation/agentes/estado_monitores.php:552
-#: ../../operation/agentes/ver_agente.php:1148
-#: ../../operation/agentes/status_monitor.php:517 ../../operation/heatmap.php:96
-#: ../../operation/heatmap.php:98
-#: ../../godmode/reporting/reporting_builder.item_editor.php:1538
-#: ../../godmode/reporting/create_container.php:540
-#: ../../godmode/massive/massive_edit_modules.php:889
-#: ../../godmode/agentes/module_manager_editor_common.php:265
-#: ../../godmode/modules/manage_network_components_form_common.php:111
-#: ../../enterprise/operation/agentes/tag_view.php:156
-#: ../../enterprise/operation/agentes/ver_agente.php:35
-#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2014
-#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:832
-#: ../../enterprise/godmode/modules/configure_local_component.php:259
-#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:155
-#: ../../include/functions_treeview.php:122
-#: ../../include/functions_events.php:4548 ../../include/functions_html.php:1560
-#: ../../include/functions_graph.php:5366 ../../include/ajax/heatmap.ajax.php:190
-#: ../../include/ajax/heatmap.ajax.php:249
-#: ../../include/ajax/heatmap.ajax.php:288
-#: ../../extensions/agents_modules.php:410 ../../mobile/operation/modules.php:183
-#: ../../mobile/operation/modules.php:184 ../../mobile/operation/modules.php:293
-#: ../../mobile/operation/modules.php:294
-msgid "Module group"
-msgstr "Grupo del módulo"
-
-#: ../../operation/agentes/estado_monitores.php:582
-#: ../../godmode/agentes/module_manager.php:192
-msgid "Show in hierachy mode"
-msgstr "Mostrar en modo jerarquía"
-
-#: ../../operation/agentes/estado_monitores.php:602
-#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1953
-msgid "Reset"
-msgstr "Reiniciar"
-
-#: ../../operation/agentes/realtime_win.php:51
-#: ../../operation/agentes/interface_traffic_graph_win.php:54
-#: ../../operation/agentes/stat_win.php:51
-#: ../../operation/agentes/stat_win.php:174
-#: ../../enterprise/operation/inventory/inventory.php:191
-#: ../../include/chart_generator.php:125
-msgid "There was a problem connecting with the node"
-msgstr "Error al conectar con el nodo"
-
-#: ../../operation/agentes/realtime_win.php:85
-#, php-format
-msgid "%s Realtime Module Graph"
-msgstr "Gráfica de módulos %s en tiempo real"
-
-#: ../../operation/agentes/realtime_win.php:112
-msgid "Realtime extension is not enabled."
-msgstr "La extensión tiempo real no está habilitada"
-
-#: ../../operation/agentes/networkmap.dinamic.php:126
-#: ../../operation/agentes/pandora_networkmap.view.php:2290
-msgid "List of networkmap"
-msgstr "Lista de mapas de red"
-
-#: ../../operation/agentes/networkmap.dinamic.php:226
-#: ../../include/functions_config.php:2371
-msgid "Pandora FMS"
-msgstr "Pandora FMS"
-
-#: ../../operation/agentes/alerts_status.functions.php:50
-msgid "Alert(s) validated"
-msgstr "Alerta(s) validada(s)"
-
-#: ../../operation/agentes/alerts_status.functions.php:51
-msgid "Error processing alert(s)"
-msgstr "Error al procesar la(s) alerta(s)"
-
-#: ../../operation/agentes/alerts_status.functions.php:93
-#: ../../godmode/alerts/alert_list.list.php:135
-#: ../../mobile/operation/alerts.php:64
-msgid "All (Enabled)"
-msgstr "Todos (Habilitados)"
-
-#: ../../operation/agentes/alerts_status.functions.php:97
-#: ../../operation/agentes/estado_generalagente.php:101
-#: ../../operation/agentes/estado_generalagente.php:103
-#: ../../operation/search_agents.php:93
-#: ../../godmode/massive/massive_edit_agents.php:917
-#: ../../godmode/massive/massive_edit_agents.php:1017
-#: ../../godmode/massive/massive_edit_modules.php:765
-#: ../../godmode/agentes/module_manager_editor_common.php:257
-#: ../../godmode/agentes/module_manager_editor_common.php:897
-#: ../../godmode/agentes/module_manager_editor_common.php:1059
-#: ../../godmode/agentes/modificar_agente.php:761
-#: ../../godmode/groups/group_list.php:908
-#: ../../godmode/alerts/alert_view.php:541
-#: ../../godmode/alerts/configure_alert_template.php:899
-#: ../../godmode/alerts/alert_list.list.php:139
-#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:701
-#: ../../enterprise/godmode/setup/edit_skin.php:276
-#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:118
-#: ../../enterprise/godmode/policies/policy_agents.php:1736
-#: ../../enterprise/godmode/policies/policy_agents.php:1751
-#: ../../enterprise/godmode/modules/configure_local_component.php:459
-#: ../../enterprise/include/class/VMware.app.php:888
-#: ../../enterprise/include/class/DatabaseHA.class.php:211
-#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3211
-#: ../../enterprise/include/lib/NetworkManager.php:190
-#: ../../enterprise/include/functions_policies.php:4780
-#: ../../enterprise/meta/include/functions_wizard_meta.php:242
-#: ../../enterprise/meta/include/functions_wizard_meta.php:525
-#: ../../enterprise/meta/include/functions_wizard_meta.php:596
-#: ../../enterprise/meta/include/functions_wizard_meta.php:1141
-#: ../../enterprise/meta/include/functions_wizard_meta.php:1525
-#: ../../enterprise/meta/include/functions_wizard_meta.php:1617
-#: ../../enterprise/meta/include/functions_wizard_meta.php:1809
-#: ../../enterprise/meta/agentsearch.php:251
-#: ../../enterprise/meta/agentsearch.php:258
-#: ../../enterprise/views/cluster/view.php:162
-#: ../../enterprise/views/cluster/view.php:164
-#: ../../include/functions_reporting.php:6321
-#: ../../include/functions_treeview.php:72
-#: ../../include/functions_treeview.php:613
-#: ../../include/functions_visual_map_editor.php:826
-#: ../../include/functions_reporting_html.php:3354
-#: ../../include/rest-api/models/VisualConsole/Items/StaticGraph.php:397
-#: ../../mobile/operation/agent.php:167 ../../mobile/operation/alerts.php:68
-msgid "Disabled"
-msgstr "Deshabilitado"
-
-#: ../../operation/agentes/alerts_status.functions.php:101
-#: ../../godmode/alerts/alert_list.list.php:143
-#: ../../enterprise/operation/agentes/policy_view.php:292
-#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3273
-#: ../../include/functions_ui.php:1155 ../../mobile/operation/alerts.php:73
-msgid "Standby on"
-msgstr "Modo standby activado"
-
-#: ../../operation/agentes/alerts_status.functions.php:102
-#: ../../godmode/alerts/alert_list.list.php:144
-#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3267
-#: ../../mobile/operation/alerts.php:74
-msgid "Standby off"
-msgstr "Modo standby desactivado"
-
-#: ../../operation/agentes/alerts_status.functions.php:107
-#: ../../operation/agentes/group_view.php:222
-#: ../../operation/agentes/status_monitor.php:559
-#: ../../operation/users/user_edit.php:815 ../../operation/tree.php:66
-#: ../../operation/events/events.build_table.php:283
-#: ../../godmode/massive/massive_edit_modules.php:405
-#: ../../godmode/massive/massive_edit_modules.php:491
-#: ../../godmode/massive/massive_edit_modules.php:1047
-#: ../../godmode/massive/massive_copy_modules.php:172
-#: ../../godmode/massive/massive_delete_modules.php:401
-#: ../../godmode/massive/massive_delete_modules.php:515
-#: ../../godmode/events/custom_events.php:108
-#: ../../godmode/modules/manage_network_components_form_common.php:351
-#: ../../godmode/tag/edit_tag.php:66
-#: ../../enterprise/operation/agentes/tag_view.php:223
-#: ../../enterprise/operation/agentes/tag_view.php:225
-#: ../../enterprise/operation/agentes/tag_view.php:678
-#: ../../enterprise/godmode/massive/massive_tags_edit_policy.php:120
-#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:971
-#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:163
-#: ../../enterprise/godmode/setup/setup_auth.php:231
-#: ../../enterprise/godmode/setup/setup_auth.php:510
-#: ../../enterprise/godmode/setup/setup_auth.php:1307
-#: ../../enterprise/godmode/modules/configure_local_component.php:550
-#: ../../enterprise/meta/include/functions_events_meta.php:106
-#: ../../general/first_task/tags.php:22 ../../include/functions_treeview.php:168
-#: ../../include/functions_events.php:203 ../../include/functions_events.php:272
-#: ../../include/functions_events.php:5139
-#: ../../include/functions_events.php:6746
-#: ../../include/functions_profile.php:215
-#: ../../include/functions_reporting_html.php:3396
-#: ../../include/lib/Dashboard/Widgets/tree_view.php:329
-#: ../../include/lib/Dashboard/Widgets/events_list.php:450
-#: ../../mobile/operation/events.php:557
-msgid "Tags"
-msgstr "Etiquetas"
-
-#: ../../operation/agentes/alerts_status.functions.php:107
-#: ../../operation/agentes/status_monitor.php:559
-#: ../../enterprise/operation/agentes/tag_view.php:223
-#: ../../enterprise/operation/agentes/tag_view.php:225
-msgid "Only it is show tags in use."
-msgstr "Mostrar solo etiquetas en uso"
-
-#: ../../operation/agentes/alerts_status.functions.php:112
-#: ../../operation/agentes/status_monitor.php:564
-#: ../../enterprise/operation/agentes/tag_view.php:229
-msgid "No tags"
-msgstr "Sin etiquetas"
-
-#: ../../operation/agentes/alerts_status.functions.php:117
-#: ../../operation/agentes/datos_agente.php:211
-msgid "Free text for search"
-msgstr "Búsqueda de texto libre"
-
-#: ../../operation/agentes/alerts_status.functions.php:118
-msgid "Filter by agent name, module name, template name or action name"
-msgstr ""
-"Filtrar por nombre de agente, nombre de módulo, nombre de plantilla o de acción"
-
-#: ../../operation/agentes/alerts_status.functions.php:123
-#: ../../operation/agentes/alerts_status.php:539
-#: ../../operation/agentes/alerts_status.php:575
-#: ../../operation/agentes/alerts_status.php:610
-#: ../../operation/agentes/alerts_status.php:643
-#: ../../godmode/alerts/alert_list.list.php:141
-#: ../../enterprise/operation/agentes/policy_view.php:257
-#: ../../include/ajax/alert_list.ajax.php:273
-#: ../../include/ajax/alert_list.ajax.php:298
-msgid "Standby"
-msgstr "Standby"
-
-#: ../../operation/agentes/alerts_status.functions.php:129
-msgid "No actions"
-msgstr "Sin acciones"
-
-#: ../../operation/agentes/alerts_status.functions.php:178
-msgid "Filter by module name, template name or action name"
-msgstr "Filtrar por nombre de módulo, nombre de plantilla o nombre de acción"
-
-#: ../../operation/agentes/estado_agente.php:215 ../../operation/menu.php:54
-#: ../../godmode/agentes/agent_manager.php:226
-msgid "Agent detail"
-msgstr "Detalle de agente"
-
-#: ../../operation/agentes/estado_agente.php:228
-#: ../../operation/agentes/group_view.php:102
-#: ../../operation/agentes/interface_view.php:76
-#: ../../operation/agentes/tactical.php:82
-#: ../../operation/agentes/alerts_status.php:204
-#: ../../operation/agentes/status_monitor.php:108 ../../operation/menu.php:37
-#: ../../operation/heatmap.php:137
-#: ../../enterprise/operation/agentes/tag_view.php:54
-#: ../../include/class/AgentsAlerts.class.php:754
-#: ../../extensions/module_groups.php:264 ../../extensions/realtime_graphs.php:71
-#: ../../extensions/agents_modules.php:478
-msgid "Views"
-msgstr "Vistas"
-
-#: ../../operation/agentes/estado_agente.php:242
-msgid "Sucessfully deleted agent"
-msgstr "Agente borrado correctamente"
-
-#: ../../operation/agentes/estado_agente.php:244
-msgid "There was an error message deleting the agent"
-msgstr "Error al intentar borrar el agente"
-
-#: ../../operation/agentes/estado_agente.php:262
-#: ../../operation/agentes/interface_view.functions.php:59
-#: ../../operation/agentes/status_monitor.php:488
-#: ../../godmode/reporting/reporting_builder.item_editor.php:1485
-#: ../../godmode/agentes/planned_downtime.editor.php:797
-#: ../../godmode/agentes/modificar_agente.php:352
-#: ../../enterprise/godmode/reporting/reporting_builder.template.php:746
-#: ../../enterprise/godmode/policies/policies.php:324
-#: ../../enterprise/meta/monitoring/custom_fields_view.php:168
-#: ../../include/functions_html.php:1535
-#: ../../include/class/NetworkMap.class.php:3226
-#: ../../extensions/agents_modules.php:407
-msgid "Recursion"
-msgstr "Recurrencia"
-
-#: ../../operation/agentes/estado_agente.php:277
-#: ../../operation/agentes/status_monitor.php:496
-#: ../../operation/events/events.php:1074
-#: ../../operation/events/events_list.php:942
-#: ../../godmode/reporting/reporting_builder.item_editor.php:3605
-#: ../../godmode/massive/massive_delete_agents.php:213
-#: ../../godmode/massive/massive_edit_agents.php:535
-#: ../../godmode/massive/massive_edit_modules.php:389
-#: ../../godmode/massive/massive_edit_modules.php:475
-#: ../../godmode/massive/massive_copy_modules.php:119
-#: ../../godmode/massive/massive_copy_modules.php:279
-#: ../../godmode/massive/massive_delete_modules.php:422
-#: ../../godmode/massive/massive_delete_modules.php:443
-#: ../../godmode/events/event_edit_filter.php:315
-#: ../../enterprise/operation/agentes/tag_view.php:135
-#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:123
-#: ../../enterprise/meta/monitoring/custom_fields_view.php:183
-#: ../../include/functions.php:1277 ../../include/functions_events.php:3293
-#: ../../include/lib/Dashboard/Widgets/events_list.php:308
-#: ../../mobile/operation/modules.php:73
-msgid "Not normal"
-msgstr "No normal"
-
-#: ../../operation/agentes/estado_agente.php:278
-#: ../../operation/agentes/group_view.php:225
-#: ../../operation/agentes/group_view.php:230
-#: ../../operation/agentes/tactical.php:182
-#: ../../operation/agentes/status_monitor.php:498 ../../operation/tree.php:216
-#: ../../operation/tree.php:273 ../../operation/tree.php:481
-#: ../../godmode/reporting/reporting_builder.item_editor.php:3606
-#: ../../godmode/massive/massive_delete_agents.php:214
-#: ../../godmode/massive/massive_edit_agents.php:536
-#: ../../godmode/massive/massive_edit_modules.php:390
-#: ../../godmode/massive/massive_edit_modules.php:476
-#: ../../godmode/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/groups/group_list.php:1069
-#: ../../enterprise/operation/agentes/transactional_map.php:345
-#: ../../enterprise/operation/agentes/tag_view.php:137
-#: ../../enterprise/operation/services/services.treeview_services.php:281
-#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:124
-#: ../../enterprise/meta/monitoring/group_view.php:237
-#: ../../enterprise/meta/monitoring/group_view.php:243
-#: ../../enterprise/meta/monitoring/tactical.php:243
-#: ../../enterprise/meta/monitoring/custom_fields_view.php:185
-#: ../../include/functions_reporting_html.php:652
-#: ../../include/functions_reporting_html.php:2296
-#: ../../include/functions_reporting_html.php:4364
-#: ../../include/lib/Dashboard/Widgets/tree_view.php:389
-#: ../../include/lib/Dashboard/Widgets/tree_view.php:422
-#: ../../include/lib/Dashboard/Widgets/tree_view.php:675
-#: ../../mobile/operation/modules.php:75
-msgid "Not init"
-msgstr "No iniciados"
-
-#: ../../operation/agentes/estado_agente.php:285
-msgid "Search in custom fields"
-msgstr "Buscar en campos personalizados"
-
-#: ../../operation/agentes/estado_agente.php:831
-#: ../../operation/agentes/estado_generalagente.php:112
-#: ../../operation/agentes/estado_generalagente.php:122
-#: ../../operation/search_agents.php:100
-#: ../../godmode/massive/massive_edit_agents.php:990
-#: ../../godmode/massive/massive_edit_modules.php:1104
-#: ../../godmode/agentes/planned_downtime.list.php:655
-#: ../../godmode/agentes/planned_downtime.editor.php:588
-#: ../../godmode/agentes/module_manager.php:985
-#: ../../godmode/agentes/module_manager_editor_common.php:1056
-#: ../../godmode/agentes/modificar_agente.php:775
-#: ../../godmode/agentes/agent_manager.php:640
-#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1028
-#: ../../enterprise/godmode/massive/massive_create_services.php:819
-#: ../../enterprise/godmode/services/services.service.php:738
-#: ../../enterprise/views/cluster/view.php:168
-#: ../../enterprise/views/cluster/view.php:170
-#: ../../include/class/Tree.class.php:900 ../../include/ajax/module.php:1128
-#: ../../mobile/operation/agent.php:174
-msgid "Quiet"
-msgstr "Modo silencioso"
-
-#: ../../operation/agentes/estado_agente.php:839
-#: ../../operation/agentes/estado_generalagente.php:133
-#: ../../operation/agentes/estado_generalagente.php:141
-#: ../../operation/search_agents.php:111
-#: ../../godmode/agentes/modificar_agente.php:783
-#: ../../enterprise/views/cluster/view.php:178
-#: ../../enterprise/views/cluster/view.php:186
-msgid "Agent in scheduled downtime"
-msgstr "Agente en parada programada"
-
-#: ../../operation/agentes/estado_agente.php:898
-#: ../../enterprise/operation/agentes/tag_view.php:647
-msgid "Remote config"
-msgstr "Configuración remota"
-
-#: ../../operation/agentes/estado_agente.php:975
-#: ../../operation/agentes/group_view.php:570
-#: ../../godmode/agentes/modificar_agente.php:944
-#: ../../enterprise/meta/monitoring/group_view.php:205
-msgid "There are no defined agents"
-msgstr "No hay ningún agente definido"
-
-#: ../../operation/agentes/group_view.php:80
-#: ../../operation/agentes/tactical.php:60
-#: ../../enterprise/operation/services/services.service.php:133
-#: ../../enterprise/operation/services/services.list.php:510
-#: ../../enterprise/tools/ipam/ipam_list.php:631
-#: ../../enterprise/views/ncm/devices/list.php:122
-#: ../../extensions/agents_modules.php:317
-msgid "Last update"
-msgstr "Última actualización"
-
-#: ../../operation/agentes/group_view.php:89 ../../operation/menu.php:48
-#: ../../operation/users/user_edit.php:359
-#: ../../godmode/groups/group_list.php:321
-#: ../../godmode/users/configure_user.php:1112
-#: ../../enterprise/meta/monitoring/group_view.php:72
-msgid "Group view"
-msgstr "Vista de grupo"
-
-#: ../../operation/agentes/group_view.php:180
-msgid "Summary of the status groups"
-msgstr "Resumen de los grupos por estado"
-
-#: ../../operation/agentes/group_view.php:221
-#: ../../operation/agentes/group_view.php:276
-#: ../../godmode/wizards/DiscoveryTaskList.class.php:584
-#: ../../godmode/wizards/DiscoveryTaskList.class.php:674
-#: ../../enterprise/operation/services/services.list.php:639
-#: ../../enterprise/godmode/agentes/inventory_manager.php:257
-#: ../../enterprise/include/functions_ipam.php:1380
-#: ../../include/functions_ui.php:1162 ../../include/ajax/module.php:1052
-msgid "Force"
-msgstr "Forzar"
-
-#: ../../operation/agentes/group_view.php:223 ../../operation/tree.php:456
-#: ../../godmode/groups/group_list.php:1044
-#: ../../enterprise/operation/agentes/agent_inventory.php:240
-#: ../../enterprise/operation/services/services.treeview_services.php:256
-#: ../../enterprise/include/functions_inventory.php:481
-#: ../../enterprise/include/functions_inventory.php:624
-#: ../../enterprise/meta/monitoring/group_view.php:235
-#: ../../include/functions_alerts.php:3354
-#: ../../include/functions_reporting_html.php:2281
-#: ../../include/functions_reporting_html.php:2291
-#: ../../include/lib/Dashboard/Widgets/tree_view.php:650
-msgid "Total"
-msgstr "Total"
-
-#: ../../operation/agentes/group_view.php:313
-#: ../../enterprise/meta/monitoring/group_view.php:359
-#, php-format
-msgid ""
-"This %s installation are using the secondary groups feature. For this reason, "
-"an agent can be counted several times."
-msgstr ""
-"Esta instalación de %s está usando la funcionalidad de grupos secundarios. Por "
-"ello, los agentes se pueden contar varias veces."
-
-#: ../../operation/agentes/group_view.php:320 ../../operation/heatmap.php:109
-#: ../../godmode/reporting/create_container.php:566
-#: ../../godmode/reporting/create_container.php:629
-#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:330
-#: ../../include/ajax/heatmap.ajax.php:126
-#: ../../include/ajax/heatmap.ajax.php:296 ../../mobile/operation/modules.php:194
-#: ../../mobile/operation/modules.php:195 ../../mobile/operation/modules.php:308
-#: ../../mobile/operation/modules.php:309
-msgid "Tag"
-msgstr "Etiqueta"
-
-#: ../../operation/agentes/interface_view.php:63 ../../operation/menu.php:61
-msgid "Interface view"
-msgstr "Vista de interfaz"
-
-#: ../../operation/agentes/pandora_networkmap.view.php:106
-#: ../../operation/agentes/pandora_networkmap.editor.php:311
-#: ../../godmode/agentes/pandora_networkmap_empty.editor.php:154
-#: ../../enterprise/godmode/agentes/pandora_networkmap_empty.editor.php:152
-#: ../../enterprise/extensions/vmware/vmware_view.php:1758
-msgid "Node radius"
-msgstr "Radio de los nodos"
-
-#: ../../operation/agentes/pandora_networkmap.view.php:127
-#: ../../operation/agentes/pandora_networkmap.editor.php:324
-msgid "Position X"
-msgstr "Posición X"
-
-#: ../../operation/agentes/pandora_networkmap.view.php:129
-#: ../../operation/agentes/pandora_networkmap.editor.php:326
-msgid "Position Y"
-msgstr "Posición Y"
-
-#: ../../operation/agentes/pandora_networkmap.view.php:132
-#: ../../operation/agentes/pandora_networkmap.editor.php:329
-msgid "Zoom scale"
-msgstr "Escala de zoom"
-
-#: ../../operation/agentes/pandora_networkmap.view.php:134
-#: ../../operation/agentes/pandora_networkmap.editor.php:334
-msgid ""
-"Introduce zoom level. 1 = Highest resolution. Figures may include decimals"
-msgstr ""
-"Introducir nivel de zoom. 1 = Resolución máxima. Las cifras pueden incluir "
-"decimales."
-
-#: ../../operation/agentes/pandora_networkmap.view.php:136
-#: ../../operation/agentes/pandora_networkmap.editor.php:336
-#: ../../operation/agentes/log_sources_status.php:56
-#: ../../operation/events/events.php:1188
-#: ../../operation/events/events_list.php:999
-#: ../../operation/events/events.build_table.php:293
-#: ../../godmode/reporting/reporting_builder.item_editor.php:1495
-#: ../../godmode/massive/massive_copy_modules.php:144
-#: ../../godmode/events/custom_events.php:109
-#: ../../godmode/events/event_edit_filter.php:627
-#: ../../enterprise/operation/log/log_viewer.php:654
-#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:147
-#: ../../enterprise/include/functions_log.php:279
-#: ../../enterprise/include/functions_log.php:282
-#: ../../enterprise/include/class/LogSource.class.php:626
-#: ../../enterprise/meta/advanced/policymanager.sync.php:307
-#: ../../enterprise/meta/include/functions_events_meta.php:110
-#: ../../include/functions_events.php:204 ../../include/functions_events.php:275
-#: ../../include/functions_events.php:4634
-#: ../../include/functions_events.php:4715
-#: ../../include/functions_events.php:6752
-msgid "Source"
-msgstr "Origen"
-
-#: ../../operation/agentes/pandora_networkmap.view.php:137
-#: ../../operation/agentes/pandora_networkmap.editor.php:337
-#: ../../include/functions_groups.php:107
-msgid "Discovery task"
-msgstr "Tarea Discovery"
-
-#: ../../operation/agentes/pandora_networkmap.view.php:137
-#: ../../operation/agentes/pandora_networkmap.editor.php:337
-msgid "CIDR IP mask"
-msgstr "Máscara CIDR"
-
-#: ../../operation/agentes/pandora_networkmap.view.php:164
-#: ../../operation/agentes/pandora_networkmap.editor.php:339
-msgid "Source from recon task"
-msgstr "Origen de tarea recon"
-
-#: ../../operation/agentes/pandora_networkmap.view.php:166
-#: ../../operation/agentes/pandora_networkmap.editor.php:341
-msgid ""
-"It is setted any recon task, the nodes get from the recontask IP mask instead "
-"from the group."
-msgstr ""
-"Si está seleccionada alguna tarea recon, los nodos se obtendrán de la máscara "
-"IP de la recontask en lugar del grupo."
-
-#: ../../operation/agentes/pandora_networkmap.view.php:182
-#: ../../operation/agentes/pandora_networkmap.editor.php:358
-msgid "Show only the task with the recon script \"SNMP L2 Recon\"."
-msgstr "Mostrar solo las tareas recon con el script \"SNMP L2 Recon\""
-
-#: ../../operation/agentes/pandora_networkmap.view.php:186
-#: ../../operation/agentes/pandora_networkmap.editor.php:362
-msgid "Source from CIDR IP mask"
-msgstr "Origen de máscara CIDR"
-
-#: ../../operation/agentes/pandora_networkmap.view.php:198
-#: ../../operation/agentes/pandora_networkmap.editor.php:387
-msgid "Don't show subgroups:"
-msgstr "No mostrar subgrupos:"
-
-#: ../../operation/agentes/pandora_networkmap.view.php:232
-#: ../../operation/agentes/pandora_networkmap.editor.php:405
-msgid "Method generation networkmap"
-msgstr "Método de generación de mapas de red"
-
-#: ../../operation/agentes/pandora_networkmap.view.php:247
-#: ../../operation/agentes/pandora_networkmap.editor.php:425
-#: ../../enterprise/extensions/vmware/vmware_view.php:1762
-msgid "Node separation"
-msgstr "Separación de nodos"
-
-#: ../../operation/agentes/pandora_networkmap.view.php:248
-#: ../../operation/agentes/pandora_networkmap.editor.php:426
-msgid "Separation between nodes. By default 0.25"
-msgstr "Separación entre nodos.  Por defecto 0,25"
-
-#: ../../operation/agentes/pandora_networkmap.view.php:250
-#: ../../operation/agentes/pandora_networkmap.editor.php:428
-msgid "Rank separation"
-msgstr "Separación de rango"
-
-#: ../../operation/agentes/pandora_networkmap.view.php:251
-#: ../../operation/agentes/pandora_networkmap.editor.php:429
-msgid ""
-"Only flat and radial. Separation between arrows. By default 0.5 in flat and "
-"1.0 in radial"
-msgstr ""
-"Solo plano y radial. Separación entre flechas. Por defecto 0,5 en el plano y "
-"1,0 en el radial."
-
-#: ../../operation/agentes/pandora_networkmap.view.php:253
-#: ../../operation/agentes/pandora_networkmap.editor.php:431
-msgid "Min nodes dist"
-msgstr "Distancia mínima entre nodos"
-
-#: ../../operation/agentes/pandora_networkmap.view.php:254
-#: ../../operation/agentes/pandora_networkmap.editor.php:432
-msgid "Only circular. Minimum separation between all nodes. By default 1.0"
-msgstr "Solo circular. Separación mínima entre todos los nodos. Por defecto 1,0."
-
-#: ../../operation/agentes/pandora_networkmap.view.php:256
-#: ../../operation/agentes/pandora_networkmap.editor.php:434
-msgid "Default ideal node separation"
-msgstr "Separación ideal de nodos por defecto"
-
-#: ../../operation/agentes/pandora_networkmap.view.php:257
-#: ../../operation/agentes/pandora_networkmap.editor.php:435
-msgid "Only fdp. Default ideal node separation in the layout. By default 0.3"
-msgstr ""
-"Solo FDP. Separación ideal de nodos por defecto en el diseño. Por defecto 0,3."
-
-#: ../../operation/agentes/pandora_networkmap.view.php:1234
-#: ../../operation/agentes/estado_generalagente.php:700
-#: ../../include/functions_treeview.php:878
-msgid "Interface traffic"
-msgstr "Interfaz de tráfico"
-
-#: ../../operation/agentes/pandora_networkmap.view.php:1611
-msgid "Success be updated."
-msgstr "Actualizado correctamente"
-
-#: ../../operation/agentes/pandora_networkmap.view.php:1613
-#: ../../enterprise/tools/ipam/ipam_action.php:374
-msgid "Could not be updated."
-msgstr "No se pudo actualizar"
-
-#: ../../operation/agentes/pandora_networkmap.view.php:1708
-msgid "Name: "
-msgstr "Nombre: "
-
-#: ../../operation/agentes/pandora_networkmap.view.php:1743
-#: ../../operation/agentes/status_monitor.php:1432
-msgid "(Adopt) "
-msgstr "(Adoptar) "
-
-#: ../../operation/agentes/pandora_networkmap.view.php:1751
-#: ../../operation/agentes/status_monitor.php:1440
-msgid "(Unlinked) (Adopt) "
-msgstr "(Sin enlazar) (Adoptar) "
-
-#: ../../operation/agentes/pandora_networkmap.view.php:1754
-#: ../../operation/agentes/status_monitor.php:1443
-msgid "(Unlinked) "
-msgstr "(Sin enlazar) "
-
-#: ../../operation/agentes/pandora_networkmap.view.php:1758
-msgid "Policy: "
-msgstr "Política: "
-
-#: ../../operation/agentes/pandora_networkmap.view.php:1766
-#: ../../operation/agentes/pandora_networkmap.view.php:1785
-#: ../../operation/agentes/status_monitor.php:1594
-#: ../../operation/agentes/status_monitor.php:1602
-#: ../../operation/agentes/status_monitor.php:1679
-#: ../../operation/agentes/status_monitor.php:1685
-#: ../../operation/search_modules.php:120 ../../operation/search_modules.php:149
-#: ../../operation/events/events.php:2035 ../../operation/events/events.php:2133
-#: ../../operation/events/events.php:2159
-#: ../../enterprise/operation/agentes/tag_view.php:956
-#: ../../enterprise/operation/agentes/tag_view.php:962
-#: ../../enterprise/operation/agentes/tag_view.php:1005
-#: ../../enterprise/operation/agentes/tag_view.php:1011
-#: ../../enterprise/operation/agentes/policy_view.php:473
-#: ../../enterprise/operation/agentes/policy_view.php:490
-#: ../../enterprise/include/functions_services.php:1976
-#: ../../enterprise/extensions/vmware/vmware_view.php:1014
-#: ../../include/functions.php:1348 ../../include/functions.php:1380
-#: ../../include/functions_ui.php:3769 ../../include/functions_ui.php:3839
-#: ../../include/functions_events.php:59 ../../include/functions_events.php:112
-#: ../../include/functions_events.php:156
-#: ../../include/functions_modules.php:2843
-#: ../../include/functions_modules.php:2859
-#: ../../include/functions_modules.php:4064
-#: ../../include/functions_modules.php:4084
-#: ../../include/class/Tree.class.php:625 ../../include/lib/Module.php:554
-#: ../../mobile/operation/modules.php:554 ../../mobile/operation/modules.php:579
-#: ../../mobile/operation/modules.php:617 ../../mobile/operation/modules.php:642
-msgid "CRITICAL"
-msgstr "CRÍTICO"
-
-#: ../../operation/agentes/pandora_networkmap.view.php:1769
-#: ../../operation/agentes/pandora_networkmap.view.php:1790
-#: ../../operation/agentes/status_monitor.php:1610
-#: ../../operation/agentes/status_monitor.php:1618
-#: ../../operation/agentes/status_monitor.php:1695
-#: ../../operation/agentes/status_monitor.php:1701
-#: ../../operation/search_modules.php:126 ../../operation/search_modules.php:157
-#: ../../operation/events/events.php:2065 ../../operation/events/events.php:2121
-#: ../../operation/events/events.php:2176
-#: ../../enterprise/operation/agentes/tag_view.php:970
-#: ../../enterprise/operation/agentes/tag_view.php:976
-#: ../../enterprise/operation/agentes/tag_view.php:1021
-#: ../../enterprise/operation/agentes/tag_view.php:1027
-#: ../../enterprise/operation/agentes/policy_view.php:476
-#: ../../enterprise/operation/agentes/policy_view.php:495
-#: ../../enterprise/include/functions_services.php:1984
-#: ../../enterprise/include/functions_login.php:34
-#: ../../enterprise/extensions/vmware/vmware_view.php:1019
-#: ../../include/functions.php:1351 ../../include/functions.php:1387
-#: ../../include/functions_ui.php:3757 ../../include/functions_ui.php:3834
-#: ../../include/functions_events.php:70 ../../include/functions_events.php:104
-#: ../../include/functions_events.php:174
-#: ../../include/functions_modules.php:2846
-#: ../../include/functions_modules.php:2863
-#: ../../include/functions_modules.php:4068
-#: ../../include/functions_modules.php:4100
-#: ../../include/class/Tree.class.php:633
-#: ../../include/class/NetworkMap.class.php:2805 ../../include/lib/Module.php:558
-#: ../../mobile/operation/modules.php:560 ../../mobile/operation/modules.php:587
-#: ../../mobile/operation/modules.php:623 ../../mobile/operation/modules.php:650
-msgid "WARNING"
-msgstr "ADVERTENCIA"
-
-#: ../../operation/agentes/pandora_networkmap.view.php:1772
-#: ../../operation/agentes/pandora_networkmap.view.php:1780
-#: ../../operation/agentes/status_monitor.php:1580
-#: ../../operation/agentes/status_monitor.php:1586
-#: ../../operation/agentes/status_monitor.php:1663
-#: ../../operation/agentes/status_monitor.php:1669
-#: ../../operation/search_modules.php:114 ../../operation/search_modules.php:141
-#: ../../operation/events/events.php:2060 ../../operation/events/events.php:2127
-#: ../../operation/events/events.php:2154
-#: ../../enterprise/operation/agentes/tag_view.php:942
-#: ../../enterprise/operation/agentes/tag_view.php:948
-#: ../../enterprise/operation/agentes/tag_view.php:989
-#: ../../enterprise/operation/agentes/tag_view.php:995
-#: ../../enterprise/operation/agentes/policy_view.php:479
-#: ../../enterprise/operation/agentes/policy_view.php:485
-#: ../../enterprise/include/functions_services.php:1968
-#: ../../enterprise/extensions/vmware/vmware_view.php:1009
-#: ../../include/functions.php:1360 ../../include/functions.php:1399
-#: ../../include/functions_ui.php:3763 ../../include/functions_ui.php:3829
-#: ../../include/functions_events.php:56 ../../include/functions_events.php:108
-#: ../../include/functions_events.php:171
-#: ../../include/functions_modules.php:2849
-#: ../../include/functions_modules.php:2855
-#: ../../include/functions_modules.php:4060
-#: ../../include/functions_modules.php:4092
-#: ../../include/class/Tree.class.php:655 ../../include/lib/Module.php:570
-#: ../../mobile/operation/modules.php:548 ../../mobile/operation/modules.php:571
-#: ../../mobile/operation/modules.php:611 ../../mobile/operation/modules.php:634
-msgid "NORMAL"
-msgstr "NORMAL"
-
-#: ../../operation/agentes/pandora_networkmap.view.php:1780
-#: ../../operation/agentes/pandora_networkmap.view.php:1785
-#: ../../operation/agentes/pandora_networkmap.view.php:1790
-#: ../../operation/agentes/status_monitor.php:1626
-#: ../../operation/agentes/status_monitor.php:1634
-#: ../../operation/agentes/status_monitor.php:1663
-#: ../../operation/agentes/status_monitor.php:1669
-#: ../../operation/agentes/status_monitor.php:1679
-#: ../../operation/agentes/status_monitor.php:1685
-#: ../../operation/agentes/status_monitor.php:1695
-#: ../../operation/agentes/status_monitor.php:1701
-#: ../../operation/search_modules.php:132 ../../operation/search_modules.php:141
-#: ../../operation/search_modules.php:149 ../../operation/search_modules.php:157
-#: ../../operation/events/events.php:2032 ../../operation/events/events.php:2140
-#: ../../operation/events/events.php:2151
-#: ../../enterprise/operation/agentes/tag_view.php:989
-#: ../../enterprise/operation/agentes/tag_view.php:995
-#: ../../enterprise/operation/agentes/tag_view.php:1005
-#: ../../enterprise/operation/agentes/tag_view.php:1011
-#: ../../enterprise/operation/agentes/tag_view.php:1021
-#: ../../enterprise/operation/agentes/tag_view.php:1027
-#: ../../enterprise/operation/agentes/policy_view.php:485
-#: ../../enterprise/operation/agentes/policy_view.php:490
-#: ../../enterprise/operation/agentes/policy_view.php:495
-#: ../../enterprise/include/functions_services.php:1999
-#: ../../enterprise/extensions/vmware/vmware_view.php:1024
-#: ../../include/functions.php:1364 ../../include/functions.php:1390
-#: ../../include/functions_ui.php:3776 ../../include/functions_ui.php:3854
-#: ../../include/functions_events.php:73 ../../include/functions_events.php:117
-#: ../../include/functions_events.php:177
-#: ../../include/functions_modules.php:2855
-#: ../../include/functions_modules.php:2859
-#: ../../include/functions_modules.php:2863
-#: ../../include/functions_modules.php:4072
-#: ../../include/class/Tree.class.php:639 ../../include/lib/Module.php:561
-#: ../../mobile/operation/modules.php:571 ../../mobile/operation/modules.php:579
-#: ../../mobile/operation/modules.php:587 ../../mobile/operation/modules.php:634
-#: ../../mobile/operation/modules.php:642 ../../mobile/operation/modules.php:650
-msgid "UNKNOWN"
-msgstr "DESCONOCIDO"
-
-#: ../../operation/agentes/pandora_networkmap.view.php:1780
-#: ../../operation/agentes/pandora_networkmap.view.php:1785
-#: ../../operation/agentes/pandora_networkmap.view.php:1790
-#: ../../operation/agentes/status_monitor.php:1663
-#: ../../operation/agentes/status_monitor.php:1669
-#: ../../operation/agentes/status_monitor.php:1679
-#: ../../operation/agentes/status_monitor.php:1685
-#: ../../operation/agentes/status_monitor.php:1695
-#: ../../operation/agentes/status_monitor.php:1701
-#: ../../operation/search_modules.php:141 ../../operation/search_modules.php:149
-#: ../../operation/search_modules.php:157
-#: ../../enterprise/operation/agentes/transactional_map.php:210
-#: ../../enterprise/operation/agentes/tag_view.php:989
-#: ../../enterprise/operation/agentes/tag_view.php:995
-#: ../../enterprise/operation/agentes/tag_view.php:1005
-#: ../../enterprise/operation/agentes/tag_view.php:1011
-#: ../../enterprise/operation/agentes/tag_view.php:1021
-#: ../../enterprise/operation/agentes/tag_view.php:1027
-#: ../../enterprise/operation/agentes/policy_view.php:485
-#: ../../enterprise/operation/agentes/policy_view.php:490
-#: ../../enterprise/operation/agentes/policy_view.php:495
-#: ../../include/functions_modules.php:2855
-#: ../../include/functions_modules.php:2859
-#: ../../include/functions_modules.php:2863
-#: ../../mobile/operation/modules.php:571 ../../mobile/operation/modules.php:579
-#: ../../mobile/operation/modules.php:587 ../../mobile/operation/modules.php:634
-#: ../../mobile/operation/modules.php:642 ../../mobile/operation/modules.php:650
-msgid "Last status"
-msgstr "Último estado"
-
-#: ../../operation/agentes/pandora_networkmap.view.php:1805
-#: ../../enterprise/extensions/vmware/vmware_manager.php:269
-msgid "Status: "
-msgstr "Estado: "
-
-#: ../../operation/agentes/pandora_networkmap.view.php:1855
-msgid "Data: "
-msgstr "Datos: "
-
-#: ../../operation/agentes/pandora_networkmap.view.php:1857
-#: ../../operation/agentes/estado_generalagente.php:797
-msgid "Last contact: "
-msgstr "Último contacto: "
-
-#: ../../operation/agentes/pandora_networkmap.view.php:2230
-#: ../../operation/agentes/pandora_networkmap.editor.php:218
-#: ../../operation/agentes/pandora_networkmap.php:669
-#: ../../godmode/agentes/pandora_networkmap_empty.editor.php:108
-#: ../../enterprise/godmode/agentes/pandora_networkmap_empty.editor.php:106
-msgid "Networkmap"
-msgstr "Mapa de red"
-
-#: ../../operation/agentes/pandora_networkmap.view.php:2236
-#: ../../operation/agentes/pandora_networkmap.editor.php:256
-#: ../../godmode/agentes/pandora_networkmap_empty.editor.php:115
-#: ../../enterprise/godmode/agentes/pandora_networkmap_empty.editor.php:113
-msgid "Not found networkmap."
-msgstr "No se encontró ningún mapa de red."
-
-#: ../../operation/agentes/interface_view.functions.php:93
-#: ../../operation/agentes/interface_view.functions.php:131
-#: ../../operation/agentes/ver_agente.php:1401
-#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:53
-#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:410
-msgid "Interfaces"
-msgstr "Interfaces"
-
-#: ../../operation/agentes/interface_view.functions.php:120
-#: ../../operation/agentes/interface_view.functions.php:158
-#: ../../operation/agentes/status_monitor.php:538 ../../operation/heatmap.php:291
-#: ../../godmode/users/user_list.php:693
-#: ../../enterprise/operation/agentes/tag_view.php:175
-#: ../../enterprise/include/class/Omnishell.class.php:1124
-#: ../../enterprise/include/class/AgentRepository.class.php:771
-#: ../../enterprise/include/class/DeploymentCenter.class.php:1533
-#: ../../enterprise/include/class/LogSource.class.php:766
-#: ../../enterprise/meta/monitoring/custom_fields_view.php:304
-#: ../../enterprise/extensions/vmware/vmware_view.php:1519
-#: ../../include/class/CredentialStore.class.php:1098
-#: ../../include/class/ConfigPEN.class.php:252
-msgid "Show"
-msgstr "Mostrar"
-
-#: ../../operation/agentes/interface_view.functions.php:170
-#: ../../operation/agentes/interface_view.functions.php:171
-msgid "Interface filter"
-msgstr "Filtro de interfaz"
-
-#: ../../operation/agentes/interface_view.functions.php:489
-msgid "IfName"
-msgstr "IfName"
-
-#: ../../operation/agentes/interface_view.functions.php:499
-msgid "IfSpeed"
-msgstr "IfSpeed"
-
-#: ../../operation/agentes/interface_view.functions.php:507
-msgid "IfInOctets"
-msgstr "IfInOctets"
-
-#: ../../operation/agentes/interface_view.functions.php:515
-msgid "IfOutOctets"
-msgstr "IfOutOctets"
-
-#: ../../operation/agentes/interface_view.functions.php:523
-msgid "% Bandwidth usage (in)"
-msgstr "% Uso de ancho de banda (entrada)"
-
-#: ../../operation/agentes/interface_view.functions.php:531
-msgid "% Bandwidth usage (out)"
-msgstr "% Uso de ancho de banda (salida)"
-
-#: ../../operation/agentes/interface_view.functions.php:539
-#: ../../enterprise/include/functions_reporting_pdf.php:1988
-#: ../../include/functions_treeview.php:319
-#: ../../include/functions_reporting_html.php:90
-#: ../../include/functions_reporting_html.php:5480
-msgid "Last data"
-msgstr "Últimos datos"
-
-#: ../../operation/agentes/interface_view.functions.php:728
-msgid "No search parameters"
-msgstr "No hay parámetros de búsqueda"
-
-#: ../../operation/agentes/status_events.php:26
-#: ../../operation/agentes/status_events.php:27
-msgid "Latest events for this agent"
-msgstr "Últimos eventos para este agente"
-
-#: ../../operation/agentes/tactical.php:69 ../../operation/menu.php:45
-#: ../../operation/users/user_edit.php:360
-#: ../../godmode/users/configure_user.php:1113
-#: ../../enterprise/meta/general/main_header.php:103
-#: ../../enterprise/meta/general/main_menu.php:194
-#: ../../enterprise/meta/monitoring/tactical.php:63
-#: ../../include/lib/Dashboard/Widgets/tactical.php:176
-#: ../../include/lib/Dashboard/Widgets/tactical.php:482
-#: ../../mobile/operation/tactical.php:97 ../../mobile/operation/home.php:45
-msgid "Tactical view"
-msgstr "Vista táctica"
-
-#: ../../operation/agentes/tactical.php:201
-msgid "Report of State"
-msgstr "Informe de estado"
-
-#: ../../operation/agentes/tactical.php:228
-#: ../../include/functions_events.php:2590
-msgid "Latest events"
-msgstr "Últimos eventos"
-
-#: ../../operation/agentes/tactical.php:245
-#: ../../include/functions_events.php:2733
-msgid "Event graph"
-msgstr "Gráfico de eventos"
-
-#: ../../operation/agentes/tactical.php:248
-#: ../../include/functions_events.php:2735
-msgid "Event graph by agent"
-msgstr "Gráfico de eventos por agente"
-
-#: ../../operation/agentes/tactical.php:254
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2915
-#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:681
-#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2897
-msgid "Event graphs"
-msgstr "Gráficos de eventos"
-
-#: ../../operation/agentes/agent_fields.php:24
-#: ../../operation/agentes/estado_generalagente.php:62
-#: ../../operation/agentes/custom_fields.php:24
-#: ../../include/functions_treeview.php:564
-msgid "There was a problem loading agent"
-msgstr "Error al cargar la configuración del agente"
-
-#: ../../operation/agentes/agent_fields.php:37
-#: ../../operation/agentes/status_monitor.php:863
-#: ../../enterprise/operation/agentes/tag_view.php:447
-msgid "Agent custom fields"
-msgstr "Campos personalizados de agente"
-
-#: ../../operation/agentes/agent_fields.php:44
-#: ../../operation/agentes/estado_generalagente.php:525
-#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:256
-#: ../../include/functions_treeview.php:783
-msgid "Custom field"
-msgstr "Campo personalizado"
-
-#: ../../operation/agentes/agent_fields.php:47
-#: ../../operation/agentes/custom_fields.php:90
-msgid "empty"
-msgstr "vacío"
-
-#: ../../operation/agentes/estado_generalagente.php:57
-msgid "The agent has not assigned server. Maybe agent does not run fine."
-msgstr ""
-"El agente no ha sido asignado a ningún servidor. Quizá el agente no se esté "
-"ejecutando correctamente."
-
-#: ../../operation/agentes/estado_generalagente.php:214
-#: ../../enterprise/views/cluster/view.php:273
-msgid "IP address"
-msgstr "Dirección IP"
-
-#: ../../operation/agentes/estado_generalagente.php:267
-msgid "Remote configuration enabled"
-msgstr "Configuración remota habilitada"
-
-#: ../../operation/agentes/estado_generalagente.php:309
-msgid "Agent contact"
-msgstr "Contacto de agente"
-
-#: ../../operation/agentes/estado_generalagente.php:316
-msgid "Refresh data"
-msgstr "Actualizar datos"
-
-#: ../../operation/agentes/estado_generalagente.php:357
-msgid "Next contact"
-msgstr "Siguiente contacto"
-
-#: ../../operation/agentes/estado_generalagente.php:389
-#: ../../godmode/reporting/reporting_builder.item_editor.php:73
-#: ../../godmode/agentes/agent_manager.php:457
-#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:528
-#: ../../include/functions_events.php:5120
-msgid "Secondary groups"
-msgstr "Grupos secundarios"
-
-#: ../../operation/agentes/estado_generalagente.php:406
-#: ../../operation/agentes/ver_agente.php:1209
-#: ../../godmode/reporting/visual_console_builder.elements.php:108
-#: ../../godmode/massive/massive_edit_agents.php:648
-#: ../../godmode/agentes/agent_manager.php:527
-#: ../../godmode/groups/configure_group.php:170
-#: ../../godmode/groups/group_list.php:848
-#: ../../godmode/modules/manage_nc_groups_form.php:71
-#: ../../enterprise/views/ipam/sites/list.php:48
-#: ../../enterprise/views/ipam/sites/edit.php:64
-#: ../../include/functions_visual_map_editor.php:956
-#: ../../include/rest-api/models/VisualConsole/Item.php:2175
-msgid "Parent"
-msgstr "Padre"
-
-#: ../../operation/agentes/estado_generalagente.php:417
-#: ../../operation/agentes/status_monitor.php:1341
-#: ../../godmode/agentes/status_monitor_custom_fields.php:101
-#: ../../godmode/agentes/status_monitor_custom_fields.php:149
-#: ../../include/functions_treeview.php:326
-msgid "Last status change"
-msgstr "Último cambio de estado"
-
-#: ../../operation/agentes/estado_generalagente.php:445
-msgid "Agent info"
-msgstr "Información del agente"
-
-#: ../../operation/agentes/estado_generalagente.php:452
-#: ../../include/functions_treeview.php:750
-msgid "Position (Long, Lat)"
-msgstr "Posición (longitud, latitud)"
-
-#: ../../operation/agentes/estado_generalagente.php:458
-msgid "There is no GIS data."
-msgstr "No hay datos GIS"
-
-#: ../../operation/agentes/estado_generalagente.php:476
-#: ../../operation/agentes/ver_agente.php:1517
-#: ../../godmode/agentes/agent_manager.php:610
-#: ../../godmode/agentes/agent_manager.php:627
-#: ../../include/functions_treeview.php:759
-msgid "Url address"
-msgstr "Dirección URL"
-
-#: ../../operation/agentes/estado_generalagente.php:486
-#: ../../include/functions_treeview.php:634
-msgid "Other IP addresses"
-msgstr "Otras direcciones IP"
-
-#: ../../operation/agentes/estado_generalagente.php:494
-#: ../../include/functions_treeview.php:767
-msgid "Timezone Offset"
-msgstr "Zona horaria desactivada"
-
-#: ../../operation/agentes/estado_generalagente.php:579
-msgid "Agent access rate (Last 24h)"
-msgstr "Índice de acceso de agente (últimas 24h)"
-
-#: ../../operation/agentes/estado_generalagente.php:618
-msgid "Active incident on this agent"
-msgstr "Activar incidencia a este agente"
-
-#: ../../operation/agentes/estado_generalagente.php:622
-#: ../../godmode/setup/news.php:248
-msgid "Author"
-msgstr "Autor"
-
-#: ../../operation/agentes/estado_generalagente.php:629
-#: ../../operation/incidents/list_integriaims_incidents.php:516
-#: ../../operation/incidents/configure_integriaims_incident.php:213
-#: ../../operation/incidents/integriaims_export_csv.php:81
-#: ../../godmode/setup/setup_integria.php:333
-#: ../../godmode/setup/setup_integria.php:454
-#: ../../enterprise/include/functions_reporting_csv.php:421
-#: ../../enterprise/include/functions_reporting_csv.php:443
-#: ../../enterprise/include/functions_reporting_csv.php:474
-#: ../../enterprise/include/functions_reporting_csv.php:697
-#: ../../enterprise/include/functions_reporting_csv.php:741
-#: ../../enterprise/include/functions_reporting_csv.php:755
-#: ../../enterprise/include/functions_reporting_csv.php:769
-#: ../../enterprise/include/functions_reporting_csv.php:789
-#: ../../enterprise/include/functions_reporting_csv.php:818
-#: ../../enterprise/include/functions_reporting_csv.php:857
-#: ../../enterprise/include/functions_reporting_csv.php:901
-#: ../../enterprise/include/functions_reporting_csv.php:933
-#: ../../enterprise/include/functions_reporting_csv.php:970
-#: ../../enterprise/include/functions_reporting_csv.php:993
-#: ../../enterprise/include/functions_reporting_csv.php:1144
-#: ../../enterprise/include/functions_reporting_csv.php:1171
-#: ../../enterprise/include/functions_reporting_csv.php:1202
-#: ../../enterprise/include/functions_reporting_csv.php:1257
-#: ../../enterprise/include/functions_reporting_csv.php:1312
-#: ../../enterprise/include/functions_reporting_csv.php:1361
-#: ../../enterprise/include/functions_reporting_csv.php:1416
-#: ../../enterprise/include/functions_reporting_csv.php:1445
-#: ../../enterprise/include/functions_reporting_csv.php:1482
-#: ../../enterprise/include/functions_reporting_csv.php:1608
-#: ../../enterprise/include/functions_reporting_csv.php:1724
-#: ../../enterprise/include/functions_reporting_csv.php:1868
-#: ../../enterprise/include/functions_reporting_csv.php:1918
-#: ../../enterprise/include/functions_reporting_csv.php:1964
-#: ../../enterprise/include/functions_reporting_csv.php:2032
-#: ../../enterprise/include/functions_reporting_csv.php:2176
-#: ../../enterprise/include/functions_reporting_csv.php:2268
-#: ../../enterprise/include/functions_reporting_csv.php:2299
-#: ../../enterprise/include/functions_reporting_csv.php:2335
-#: ../../enterprise/include/functions_reporting_csv.php:2388
-#: ../../enterprise/include/functions_reporting_csv.php:2410
-#: ../../enterprise/include/functions_reporting_csv.php:2451
-#: ../../enterprise/include/functions_reporting_csv.php:2505
-#: ../../enterprise/include/functions_reporting_csv.php:2534
-#: ../../enterprise/include/functions_reporting_csv.php:2610
-#: ../../enterprise/include/functions_reporting_csv.php:2661
-#: ../../enterprise/include/functions_reporting_csv.php:2710
-#: ../../enterprise/include/functions_reporting_csv.php:2787
-#: ../../enterprise/include/ajax/log_viewer.ajax.php:55
-#: ../../include/lib/Dashboard/Widget.php:545
-#: ../../include/rest-api/models/VisualConsole/Items/Odometer.php:404
-msgid "Title"
-msgstr "Título"
-
-#: ../../operation/agentes/estado_generalagente.php:631
-#: ../../operation/incidents/list_integriaims_incidents.php:348
-#: ../../operation/incidents/list_integriaims_incidents.php:519
-#: ../../operation/incidents/configure_integriaims_incident.php:296
-#: ../../operation/incidents/integriaims_export_csv.php:85
-#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:325
-#: ../../godmode/snmpconsole/snmp_alert.php:1018
-#: ../../godmode/snmpconsole/snmp_alert.php:1080
-#: ../../godmode/setup/setup_integria.php:379
-#: ../../godmode/setup/setup_integria.php:501
-#: ../../godmode/agentes/agent_incidents.php:91
-#: ../../godmode/alerts/alert_view.php:124
-#: ../../godmode/alerts/configure_alert_template.php:1118
-#: ../../godmode/alerts/alert_list.list.php:126
-#: ../../godmode/alerts/alert_templates.php:51
-#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:204
-#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:264
-#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:328
-#: ../../enterprise/include/class/AlertCorrelationManager.class.php:815
-#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:443
-#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:503
-#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:555
-#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:464
-#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:82
-#: ../../include/functions_events.php:4672
-#: ../../include/functions_reporting_html.php:5038
-msgid "Priority"
-msgstr "Prioridad"
-
-#: ../../operation/agentes/estado_generalagente.php:777
-msgid "Events info (24hr.)"
-msgstr "Información de eventos (24h)"
-
-#: ../../operation/agentes/estado_generalagente.php:870
-#: ../../enterprise/views/cluster/view.php:369
-msgid "Events (Last 24h)"
-msgstr "Eventos (últimas 24h)"
-
-#: ../../operation/agentes/estado_generalagente.php:922
-msgid "Interface information (SNMP)"
-msgstr "Información de interfaz (SNMP)"
-
-#: ../../operation/agentes/pandora_networkmap.editor.php:205
-msgid "Network maps editor"
-msgstr "Editor de mapas de red"
-
-#: ../../operation/agentes/pandora_networkmap.editor.php:365
-#: ../../enterprise/godmode/agentes/manage_config_remote.php:140
-msgid "Source group"
-msgstr "Grupo de origen"
-
-#: ../../operation/agentes/pandora_networkmap.editor.php:382
-msgid "Source id group changed. All elements in networkmap will be lost."
-msgstr ""
-"Grupo de ID de origen cambiado. Se perderán todos los elementos del mapa de "
-"red."
-
-#: ../../operation/agentes/pandora_networkmap.editor.php:445
-#: ../../godmode/agentes/pandora_networkmap_empty.editor.php:175
-#: ../../enterprise/godmode/agentes/pandora_networkmap_empty.editor.php:173
-msgid "Save networkmap"
-msgstr "Guardar mapa de red"
-
-#: ../../operation/agentes/pandora_networkmap.editor.php:456
-#: ../../godmode/agentes/pandora_networkmap_empty.editor.php:186
-#: ../../enterprise/godmode/agentes/pandora_networkmap_empty.editor.php:184
-msgid "Update networkmap"
-msgstr "Actualizar mapa de red"
-
-#: ../../operation/agentes/pandora_networkmap.editor.php:601
-msgid "Source id group changed. All elements in Networkmap will be lost"
-msgstr ""
-"Grupo de ID de origen cambiado. Se perderán todos los elementos del mapa de "
-"red."
-
-#: ../../operation/agentes/exportdata.csv.php:66
-#: ../../operation/agentes/exportdata.php:71
-#: ../../operation/agentes/exportdata.excel.php:66
-msgid "Invalid time specified"
-msgstr "Hora especificada no válida"
-
-#: ../../operation/agentes/exportdata.csv.php:74
-#: ../../operation/agentes/exportdata.php:83
-#: ../../operation/agentes/status_monitor.php:1357
-#: ../../operation/agentes/exportdata.excel.php:74
-#: ../../operation/search_modules.php:38
-#: ../../operation/events/events.build_table.php:330
-#: ../../godmode/agentes/status_monitor_custom_fields.php:113
-#: ../../godmode/agentes/status_monitor_custom_fields.php:152
-#: ../../godmode/events/custom_events.php:115
-#: ../../enterprise/operation/agentes/tag_view.php:684
-#: ../../enterprise/operation/agentes/policy_view.php:398
-#: ../../enterprise/godmode/agentes/collections.editor.php:56
-#: ../../enterprise/godmode/agentes/collections.agents.php:47
-#: ../../enterprise/godmode/agentes/collections.agents.php:56
-#: ../../enterprise/godmode/agentes/collections.data.php:74
-#: ../../enterprise/godmode/agentes/collections.data.php:117
-#: ../../enterprise/godmode/agentes/collections.data.php:184
-#: ../../enterprise/godmode/agentes/collections.data.php:204
-#: ../../enterprise/godmode/agentes/collections.data.php:224
-#: ../../enterprise/godmode/agentes/collections.data.php:251
-#: ../../enterprise/godmode/agentes/collections.data.php:279
-#: ../../enterprise/godmode/agentes/collections.data.php:309
-#: ../../enterprise/godmode/agentes/collections.data.php:332
-#: ../../enterprise/include/functions_reporting.php:2184
-#: ../../enterprise/include/functions_reporting.php:2217
-#: ../../enterprise/include/functions_reporting.php:2221
-#: ../../enterprise/include/functions_services.php:1612
-#: ../../enterprise/include/functions_reporting_pdf.php:702
-#: ../../enterprise/include/functions_reporting_csv.php:802
-#: ../../enterprise/include/functions_reporting_csv.php:832
-#: ../../enterprise/include/functions_reporting_csv.php:879
-#: ../../enterprise/include/functions_reporting_csv.php:915
-#: ../../enterprise/include/functions_reporting_csv.php:954
-#: ../../enterprise/include/functions_reporting_csv.php:1014
-#: ../../enterprise/include/functions_reporting_csv.php:1458
-#: ../../enterprise/include/functions_reporting_csv.php:2281
-#: ../../enterprise/include/functions_reporting_csv.php:2317
-#: ../../enterprise/include/functions_reporting_csv.php:2423
-#: ../../enterprise/include/functions_reporting_csv.php:2518
-#: ../../enterprise/include/functions_reporting_csv.php:2740
-#: ../../enterprise/meta/advanced/collections.editor.php:54
-#: ../../enterprise/meta/advanced/collections.data.php:46
-#: ../../enterprise/meta/advanced/collections.data.php:86
-#: ../../enterprise/meta/advanced/collections.data.php:104
-#: ../../enterprise/meta/advanced/collections.data.php:124
-#: ../../enterprise/meta/advanced/collections.data.php:149
-#: ../../enterprise/meta/advanced/collections.data.php:172
-#: ../../enterprise/meta/advanced/collections.data.php:197
-#: ../../enterprise/meta/advanced/collections.data.php:238
-#: ../../enterprise/meta/advanced/collections.data.php:263
-#: ../../enterprise/meta/include/functions_events_meta.php:134
-#: ../../include/functions_netflow.php:301
-#: ../../include/functions_reporting.php:4010
-#: ../../include/functions_reporting.php:4051
-#: ../../include/functions_reporting.php:4802
-#: ../../include/functions_events.php:210 ../../include/functions_events.php:293
-#: ../../include/functions_events.php:6776 ../../include/functions_graph.php:3769
-#: ../../include/functions_reporting_html.php:2079
-#: ../../include/functions_reporting_html.php:2535
-#: ../../include/functions_reporting_html.php:2539
-#: ../../include/functions_reporting_html.php:2540
-#: ../../include/functions_reporting_html.php:2544
-#: ../../include/functions_reporting_html.php:2549
-#: ../../include/functions_reporting_html.php:2554
-#: ../../include/functions_reporting_html.php:2558
-#: ../../include/functions_reporting_html.php:2563
-#: ../../include/functions_reporting_html.php:2570
-#: ../../include/functions_reporting_html.php:2619
-#: ../../include/functions_reporting_html.php:2692
-#: ../../include/ajax/module.php:982 ../../include/ajax/custom_fields.php:412
-#: ../../extensions/insert_data.php:194 ../../extensions/insert_data.php:195
-#: ../../mobile/operation/modules.php:715 ../../mobile/operation/modules.php:718
-#: ../../mobile/operation/modules.php:719 ../../mobile/operation/modules.php:720
-#: ../../mobile/operation/modules.php:721 ../../mobile/operation/modules.php:722
-#: ../../mobile/operation/modules.php:723 ../../mobile/operation/modules.php:724
-#: ../../mobile/operation/modules.php:725 ../../mobile/operation/modules.php:727
-#: ../../mobile/operation/modules.php:730 ../../mobile/operation/modules.php:731
-#: ../../mobile/operation/modules.php:732 ../../mobile/operation/modules.php:733
-#: ../../mobile/operation/modules.php:734 ../../mobile/operation/modules.php:735
-#: ../../mobile/operation/modules.php:736 ../../mobile/operation/modules.php:737
-#: ../../mobile/operation/modules.php:853
-msgid "Data"
-msgstr "Datos"
-
-#: ../../operation/agentes/exportdata.csv.php:178
-#: ../../operation/agentes/exportdata.php:209
-#: ../../operation/agentes/exportdata.excel.php:161
-msgid "No modules specified"
-msgstr "No se especificó ningún módulo"
-
-#: ../../operation/agentes/interface_traffic_graph_win.php:78
-#: ../../include/rest-api/models/VisualConsole/View.php:738
-#: ../../include/rest-api/models/VisualConsole/View.php:817
-msgid "In"
-msgstr "En"
-
-#: ../../operation/agentes/interface_traffic_graph_win.php:79
-#: ../../include/rest-api/models/VisualConsole/View.php:739
-#: ../../include/rest-api/models/VisualConsole/View.php:818
-msgid "Out"
-msgstr "Fuera"
-
-#: ../../operation/agentes/interface_traffic_graph_win.php:95
-#, php-format
-msgid "%s Interface Graph"
-msgstr "Gráfica de interfaz de %s"
-
-#: ../../operation/agentes/interface_traffic_graph_win.php:167
-#: ../../operation/agentes/stat_win.php:265
-msgid "Refresh time"
-msgstr "Tiempo de actualización"
-
-#: ../../operation/agentes/interface_traffic_graph_win.php:181
-#: ../../operation/agentes/graphs.php:207
-#: ../../operation/agentes/exportdata.php:318
-#: ../../operation/agentes/stat_win.php:300
-#: ../../operation/agentes/stat_win.php:419
-#: ../../mobile/operation/module_graph.php:461
-msgid "Begin date"
-msgstr "Fecha de inicio"
-
-#: ../../operation/agentes/interface_traffic_graph_win.php:207
-#: ../../operation/agentes/stat_win.php:318
-#: ../../operation/agentes/stat_win.php:429
-msgid "Begin time"
-msgstr "Tiempo de inicio"
-
-#: ../../operation/agentes/interface_traffic_graph_win.php:227
-#: ../../operation/agentes/stat_win.php:371
-msgid "Show percentil"
-msgstr "Mostrar el percentil"
-
-#: ../../operation/agentes/interface_traffic_graph_win.php:238
-#: ../../operation/agentes/stat_win.php:406
-#: ../../godmode/reporting/graph_builder.main.php:285
-#: ../../godmode/reporting/create_container.php:437
-#: ../../godmode/reporting/create_container.php:494
-#: ../../godmode/reporting/create_container.php:589
-msgid "Show full scale graph (TIP)"
-msgstr "Mostrar gráfica a escala completa (TIP)"
-
-#: ../../operation/agentes/interface_traffic_graph_win.php:240
-#: ../../operation/agentes/stat_win.php:408
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2488
-#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:560
-#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2492
-msgid ""
-"TIP mode charts do not support average - maximum - minimum series, you can "
-"only enable TIP or average, maximum or minimum series"
-msgstr ""
-"Tablas en modo TIP no soportan las series media - máximo - mínimo, solo puede "
-"habilitar las series TIP o media, máximo o mínimo"
-
-#: ../../operation/agentes/interface_traffic_graph_win.php:250
-msgid "Zoom factor"
-msgstr "Nivel de zoom"
-
-#: ../../operation/agentes/interface_traffic_graph_win.php:257
-msgid "Full"
-msgstr "Completa"
-
-#: ../../operation/agentes/interface_traffic_graph_win.php:276
-#: ../../operation/agentes/stat_win.php:462
-#: ../../enterprise/views/cluster/view.php:441
-msgid "Reload"
+#: ../../views/dashboard/header.php:92
+msgid "Back to dashboards list"
+msgstr "Volver a la lista de dashboards"
+
+#: ../../views/dashboard/header.php:101
+msgid "Slides"
+msgstr "Diapositivas"
+
+#: ../../views/dashboard/header.php:115
+msgid "Slides mode"
+msgstr "Modo diapositivas"
+
+#: ../../views/dashboard/header.php:136
+msgid "Show link to public dashboard"
+msgstr "Mostrar el enlace al dashboard público"
+
+#: ../../views/dashboard/header.php:158 ../../general/login_page.php:75
+#: ../../general/login_page.php:318
+#: ../../operation/visual_console/legacy_public_view.php:141
+#: ../../operation/visual_console/legacy_view.php:267
+#: ../../operation/visual_console/view.php:457
+#: ../../operation/visual_console/public_view.php:123
+#: ../../operation/gis_maps/render_view.php:160
+#: ../../operation/reporting/graph_viewer.php:399 ../../operation/heatmap.php:168
+#: ../../operation/events/events.php:783 ../../include/ajax/module.php:1054
+#: ../../include/ajax/heatmap.ajax.php:47
+#: ../../include/class/AgentsAlerts.class.php:848
+#: ../../include/class/NetworkMap.class.php:2801
+#: ../../enterprise/views/ncm/devices/list.php:171
+#: ../../enterprise/include/class/Omnishell.class.php:544
+#: ../../enterprise/include/class/Omnishell.class.php:1329
+#: ../../enterprise/include/functions_ipam.php:1396
+#: ../../enterprise/meta/advanced/policymanager.queue.php:238
+#: ../../enterprise/godmode/servers/HA_cluster.php:416
+#: ../../enterprise/godmode/policies/policy_queue.php:801
+#: ../../extensions/agents_modules.php:543
+#: ../../godmode/wizards/DiscoveryTaskList.class.php:191
+msgid "Refresh"
 msgstr "Actualizar"
 
-#: ../../operation/agentes/interface_traffic_graph_win.php:306
-#: ../../operation/agentes/stat_win.php:500
-msgid "Graph configuration menu"
-msgstr "Menu de configuración de gráfica"
+#: ../../views/dashboard/header.php:211
+msgid "Add Cell"
+msgstr "Añadir celda"
 
-#: ../../operation/agentes/interface_traffic_graph_win.php:308
-#: ../../operation/agentes/stat_win.php:502 ../../include/ajax/module.php:399
-msgid ""
-"In Pandora FMS, data is stored compressed. The data visualization in database, "
-"charts or CSV exported data won't match, because is interpreted at runtime. "
-"Please check 'Pandora FMS Engineering' chapter from documentation."
-msgstr ""
-"En Pandora FMS los datos se almacenan comprimidos. La visualización de los "
-"datos en la base de datos, las tablas o los datos exportados en CSV no "
-"coincidirán porque se interpretan en el momento de la ejecución. Lea la "
-"documentación del capítulo de 'Ingeniería de Pandora FMS'."
+#: ../../views/dashboard/header.php:278 ../../views/dashboard/list.php:42
+#: ../../enterprise/meta/general/main_menu.php:309
+#: ../../enterprise/meta/general/main_header.php:222
+msgid "Dashboards"
+msgstr "Dashboards"
 
-#: ../../operation/agentes/pandora_networkmap.php:139
-#: ../../operation/agentes/pandora_networkmap.php:374
-msgid "Succesfully created"
-msgstr "Creado correctamente"
+#: ../../views/dashboard/header.php:278
+#: ../../operation/snmpconsole/snmp_statistics.php:66
+#: ../../operation/snmpconsole/snmp_view.php:107
+#: ../../operation/events/events.php:939 ../../include/functions_html.php:1894
+#: ../../include/functions_html.php:1895 ../../include/functions_html.php:2005
+#: ../../include/functions_html.php:2006 ../../include/functions_html.php:2185
+#: ../../include/functions_html.php:2186
+#: ../../enterprise/godmode/alerts/alert_inventory.php:78
+#: ../../godmode/category/category.php:89
+#: ../../godmode/agentes/planned_downtime.editor.php:59
+#: ../../godmode/alerts/alert_list.php:494
+msgid "List"
+msgstr "Lista"
 
-#: ../../operation/agentes/pandora_networkmap.php:140
-#: ../../operation/agentes/pandora_networkmap.php:375
-#: ../../godmode/reporting/reporting_builder.item_editor.php:5695
-#: ../../godmode/setup/news.php:67 ../../godmode/setup/gis.php:49
-#: ../../godmode/agentes/planned_downtime.editor.php:406
-#: ../../godmode/agentes/configurar_agente.php:350
-#: ../../godmode/agentes/configurar_agente.php:875
-#: ../../godmode/alerts/configure_alert_template.php:192
-#: ../../godmode/alerts/configure_alert_template.php:527
-#: ../../godmode/alerts/alert_commands.php:559
-#: ../../godmode/alerts/alert_list.php:165
-#: ../../godmode/users/configure_user.php:475
-#: ../../godmode/modules/manage_network_components.php:199
-#: ../../godmode/modules/manage_network_components.php:427
-#: ../../godmode/modules/manage_nc_groups.php:85
-#: ../../enterprise/operation/agentes/transactional_map.php:135
-#: ../../enterprise/tools/ipam/ipam_network_location_config.php:51
-#: ../../enterprise/tools/ipam/ipam_action.php:153
-#: ../../enterprise/godmode/reporting/reporting_builder.template_editor.php:48
-#: ../../enterprise/godmode/setup/setup_metaconsole.php:126
-#: ../../enterprise/godmode/policies/policies.php:170
-#: ../../enterprise/godmode/policies/policy_external_alerts.php:124
-#: ../../enterprise/godmode/policies/policy_external_alerts.php:127
-#: ../../enterprise/godmode/alerts/alert_inventory_builder.php:77
-#: ../../enterprise/godmode/modules/local_components.php:142
-#: ../../enterprise/godmode/modules/local_components.php:318
-#: ../../enterprise/godmode/servers/credential_boxes_satellite.php:81
-#: ../../enterprise/godmode/servers/manage_export.php:112
-#: ../../enterprise/godmode/servers/manage_export.php:119
-#: ../../enterprise/include/ajax/servers.ajax.php:198
-#: ../../include/functions_planned_downtimes.php:112
-#: ../../include/functions_planned_downtimes.php:827
-#: ../../include/functions_alerts.php:2739
-msgid "Could not be created"
-msgstr "No se ha podido crear"
+#: ../../views/dashboard/widget.php:35 ../../views/dashboard/listWidgets.php:85
+msgid "Add widget"
+msgstr "Agregar widget"
 
-#: ../../operation/agentes/pandora_networkmap.php:215
-#: ../../operation/agentes/pandora_networkmap.php:507
-msgid "Succesfully updated"
-msgstr "Actualizado correctamente"
+#: ../../views/dashboard/widget.php:45
+msgid "Please select widget"
+msgstr "Seleccione un widget"
 
-#: ../../operation/agentes/pandora_networkmap.php:532
-msgid "Succesfully duplicate"
-msgstr "Duplicado correctamente"
+#: ../../views/dashboard/jsLayout.php:42
+#: ../../operation/snmpconsole/snmp_view.php:1298
+#: ../../operation/events/events.php:2763 ../../extensions/agents_modules.php:76
+msgid "Until next"
+msgstr "Hasta el próximo"
 
-#: ../../operation/agentes/pandora_networkmap.php:533
-#: ../../enterprise/godmode/policies/policy_modules.php:1399
-msgid "Could not be duplicated"
-msgstr "No se puede duplicar"
+#: ../../views/dashboard/formDashboard.php:91
+#: ../../enterprise/godmode/reporting/reporting_builder.template.php:499
+#: ../../godmode/reporting/reporting_builder.php:938
+msgid "Private"
+msgstr "Privado"
 
-#: ../../operation/agentes/pandora_networkmap.php:546
-msgid "Succesfully deleted"
+#: ../../views/dashboard/formDashboard.php:122
+#: ../../enterprise/godmode/services/services.service.php:728
+#: ../../enterprise/godmode/reporting/visual_console_template.php:272
+#: ../../enterprise/godmode/massive/massive_create_services.php:809
+msgid "Favourite"
+msgstr "Favorito"
+
+#: ../../views/dashboard/list.php:53
+#: ../../operation/messages/message_list.php:113
+#: ../../operation/messages/message_list.php:135
+#: ../../operation/gis_maps/gis_map.php:86
+#: ../../operation/reporting/graph_viewer.php:57
+#: ../../operation/reporting/graph_viewer.php:65
+#: ../../operation/snmpconsole/snmp_view.php:155
+#: ../../operation/incidents/list_integriaims_incidents.php:295
+#: ../../include/class/ConfigPEN.class.php:486
+#: ../../enterprise/tools/ipam/ipam_vlan_config.php:132
+#: ../../enterprise/tools/ipam/ipam_network_location_config.php:87
+#: ../../enterprise/tools/ipam/ipam_action.php:102
+#: ../../enterprise/tools/ipam/ipam_supernet_config.php:152
+#: ../../enterprise/operation/agentes/transactional_map.php:182
+#: ../../enterprise/operation/agentes/manage_transmap_creation.php:82
+#: ../../enterprise/include/class/DatabaseHA.class.php:1057
+#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:288
+#: ../../enterprise/meta/advanced/metasetup.relations.php:86
+#: ../../enterprise/meta/advanced/links.php:84
+#: ../../enterprise/godmode/setup/setup_metaconsole.php:138
+#: ../../enterprise/godmode/modules/local_components.php:417
+#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:165
+#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:129
+#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:157
+#: ../../enterprise/godmode/reporting/graph_template_list.php:155
+#: ../../enterprise/godmode/reporting/graph_template_list.php:182
+#: ../../enterprise/godmode/reporting/reporting_builder.template.php:424
+#: ../../enterprise/godmode/reporting/reporting_builder.template.php:442
+#: ../../enterprise/godmode/alerts/alert_inventory_list.php:68
+#: ../../enterprise/godmode/alerts/alert_inventory_list.php:118
+#: ../../extensions/files_repo.php:184 ../../godmode/setup/news.php:120
+#: ../../godmode/setup/gis.php:61 ../../godmode/setup/links.php:76
+#: ../../godmode/modules/manage_network_components.php:552
+#: ../../godmode/modules/manage_nc_groups.php:152
+#: ../../godmode/reporting/map_builder.php:209
+#: ../../godmode/reporting/graphs.php:150 ../../godmode/reporting/graphs.php:162
+#: ../../godmode/reporting/graphs.php:213
+#: ../../godmode/reporting/reporting_builder.php:668
+#: ../../godmode/snmpconsole/snmp_alert.php:650
+#: ../../godmode/snmpconsole/snmp_filters.php:180
+#: ../../godmode/events/event_filter.php:69
+#: ../../godmode/events/event_filter.php:96 ../../godmode/netflow/nf_edit.php:104
+#: ../../godmode/netflow/nf_edit.php:137
+#: ../../godmode/netflow/nf_item_list.php:120
+#: ../../godmode/netflow/nf_item_list.php:148
+#: ../../godmode/massive/massive_delete_modules.php:162
+#: ../../godmode/massive/massive_delete_action_alerts.php:170
+#: ../../godmode/massive/massive_delete_alerts.php:201
+#: ../../godmode/agentes/planned_downtime.list.php:242
+#: ../../godmode/alerts/alert_actions.php:205
+#: ../../godmode/alerts/alert_templates.php:252
+#: ../../godmode/alerts/alert_commands.php:604
+#: ../../godmode/alerts/alert_list.php:232
+#: ../../godmode/alerts/alert_list.php:339 ../../godmode/users/user_list.php:293
+#: ../../godmode/users/user_list.php:340
+#: ../../godmode/users/configure_user.php:137
+#: ../../godmode/users/configure_user.php:157
+#: ../../godmode/users/profile_list.php:133
+msgid "Successfully deleted"
 msgstr "Eliminado correctamente"
 
-#: ../../operation/agentes/pandora_networkmap.php:656
-msgid "List of network maps"
-msgstr "Lista de mapas de red"
+#: ../../views/dashboard/list.php:54
+#: ../../operation/messages/message_list.php:114
+#: ../../operation/gis_maps/gis_map.php:87
+#: ../../operation/snmpconsole/snmp_view.php:156
+#: ../../operation/agentes/pandora_networkmap.php:547
+#: ../../operation/incidents/list_integriaims_incidents.php:296
+#: ../../enterprise/tools/ipam/ipam_vlan_config.php:130
+#: ../../enterprise/tools/ipam/ipam_action.php:100
+#: ../../enterprise/tools/ipam/ipam_supernet_config.php:150
+#: ../../enterprise/operation/agentes/transactional_map.php:183
+#: ../../enterprise/operation/agentes/manage_transmap_creation.php:83
+#: ../../enterprise/godmode/setup/setup_metaconsole.php:139
+#: ../../enterprise/godmode/modules/local_components.php:418
+#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:166
+#: ../../enterprise/godmode/reporting/reporting_builder.template.php:425
+#: ../../enterprise/godmode/reporting/reporting_builder.template.php:443
+#: ../../enterprise/godmode/alerts/alert_inventory_list.php:69
+#: ../../enterprise/godmode/alerts/alert_inventory_list.php:119
+#: ../../enterprise/godmode/policies/policy_agents.php:104
+#: ../../enterprise/godmode/policies/policy_agents.php:126
+#: ../../enterprise/godmode/policies/policy_modules.php:1313
+#: ../../enterprise/godmode/policies/policy_external_alerts.php:147
+#: ../../enterprise/godmode/policies/policy_external_alerts.php:174
+#: ../../enterprise/godmode/policies/policy_inventory_modules.php:166
+#: ../../enterprise/godmode/policies/policy_alerts.php:256
+#: ../../enterprise/godmode/policies/policy_alerts.php:302
+#: ../../enterprise/godmode/policies/policy_collections.php:100
+#: ../../extensions/files_repo.php:184 ../../godmode/setup/news.php:121
+#: ../../godmode/setup/gis.php:59
+#: ../../godmode/modules/manage_network_components.php:553
+#: ../../godmode/reporting/reporting_builder.php:669
+#: ../../godmode/massive/massive_delete_action_alerts.php:171
+#: ../../godmode/massive/massive_delete_alerts.php:202
+#: ../../godmode/alerts/alert_actions.php:206
+#: ../../godmode/alerts/alert_templates.php:253
+#: ../../godmode/alerts/alert_commands.php:605
+#: ../../godmode/alerts/alert_list.php:233
+#: ../../godmode/alerts/alert_list.php:340
+#: ../../godmode/users/configure_user.php:138
+msgid "Could not be deleted"
+msgstr "No se pudo eliminar"
 
-#: ../../operation/agentes/pandora_networkmap.php:708
-#: ../../enterprise/views/cluster/list.php:62
-#: ../../include/functions_reporting_html.php:5589
-msgid "Nodes"
-msgstr "Nodos"
+#: ../../views/dashboard/list.php:61
+msgid "Successfully duplicate"
+msgstr "Duplicado correctamente"
 
-#: ../../operation/agentes/pandora_networkmap.php:710 ../../operation/tree.php:90
-#: ../../godmode/reporting/visual_console_builder.wizard.php:362
-#: ../../enterprise/godmode/setup/setup_auth.php:230
-#: ../../enterprise/godmode/setup/setup_auth.php:509
-#: ../../enterprise/godmode/setup/setup_auth.php:1306
-#: ../../enterprise/godmode/policies/policy_agents.php:566
-#: ../../enterprise/godmode/policies/policy_agents.php:1215
-#: ../../include/functions_networkmap.php:1295
-#: ../../include/functions_maps.php:46
-#: ../../include/lib/Dashboard/Widgets/system_group_status.php:295
-#: ../../include/lib/Dashboard/Widgets/top_n_events_by_group.php:301
-#: ../../include/lib/Dashboard/Widgets/groups_status.php:216
-#: ../../include/lib/Dashboard/Widgets/tree_view.php:328
-#: ../../include/lib/Dashboard/Widgets/tree_view.php:337
-#: ../../include/lib/Dashboard/Widgets/tree_view.php:359
-#: ../../include/lib/Dashboard/Widgets/events_list.php:420
-#: ../../include/lib/Dashboard/Widgets/top_n_events_by_module.php:301
-#: ../../extensions/module_groups.php:311
-#: ../../extensions/files_repo/files_repo_form.php:55
-#: ../../mobile/operation/home.php:57 ../../mobile/operation/groups.php:77
-#: ../../mobile/include/functions_web.php:27
-msgid "Groups"
-msgstr "Grupos"
+#: ../../views/dashboard/list.php:62
+msgid "Could not be duplicate"
+msgstr "No se pudo duplicar"
 
+#: ../../views/dashboard/list.php:70
+msgid "There are no dashboards defined."
+msgstr "No hay dashboards definidos"
+
+#: ../../views/dashboard/list.php:96
+msgid "Cells"
+msgstr "Celdas"
+
+#: ../../views/dashboard/list.php:98
+msgid "Favorite"
+msgstr "Favorito"
+
+#: ../../views/dashboard/list.php:99
+#: ../../operation/snmpconsole/snmp_browser.php:68
+#: ../../operation/snmpconsole/snmp_statistics.php:54
+#: ../../operation/snmpconsole/snmp_view.php:128 ../../operation/heatmap.php:87
+#: ../../operation/events/events.php:826
+#: ../../operation/agentes/networkmap.dinamic.php:115
+#: ../../operation/agentes/pandora_networkmap.view.php:2279
+#: ../../include/class/AgentsAlerts.class.php:834
+msgid "Full screen"
+msgstr "Pantalla completa"
+
+#: ../../views/dashboard/list.php:102
 #: ../../operation/agentes/pandora_networkmap.php:712
 #: ../../operation/agentes/pandora_networkmap.php:799
+#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:230
+#: ../../enterprise/godmode/policies/policy_modules.php:1673
+#: ../../enterprise/godmode/policies/policies.php:570
 #: ../../godmode/reporting/map_builder.php:387
 #: ../../godmode/agentes/planned_downtime.list.php:623
 #: ../../godmode/agentes/planned_downtime.list.php:749
 #: ../../godmode/agentes/planned_downtime.list.php:795
 #: ../../godmode/alerts/alert_actions.php:330
-#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:230
-#: ../../enterprise/godmode/policies/policies.php:570
-#: ../../enterprise/godmode/policies/policy_modules.php:1660
-#: ../../views/dashboard/list.php:102
 msgid "Copy"
 msgstr "Copiar"
 
-#: ../../operation/agentes/pandora_networkmap.php:776
-msgid "Empty map"
-msgstr "Mapa vacío"
-
-#: ../../operation/agentes/pandora_networkmap.php:778
-#: ../../enterprise/godmode/services/services.elements.php:99
-#: ../../enterprise/include/functions_reporting.php:2535
-#: ../../enterprise/include/functions_reporting.php:3479
-#: ../../enterprise/include/functions_reporting.php:4454
-#: ../../include/functions_reporting.php:1060
-#: ../../include/functions_reporting.php:8923 ../../include/functions_maps.php:50
-msgid "Dynamic"
-msgstr "Dinámico"
-
-#: ../../operation/agentes/pandora_networkmap.php:780
-msgid "Pending to generate"
-msgstr "Pendiente de generar"
-
-#: ../../operation/agentes/pandora_networkmap.php:800
-#: ../../operation/heatmap.php:70 ../../operation/heatmap.php:279
-#: ../../enterprise/operation/services/services.list.php:625
-msgid "Config"
-msgstr "Configuración"
-
-#: ../../operation/agentes/pandora_networkmap.php:811
-msgid "There are no maps defined."
-msgstr "No hay mapas definidos."
-
-#: ../../operation/agentes/pandora_networkmap.php:818
-msgid "Create network map"
-msgstr "Crear mapa de red"
-
-#: ../../operation/agentes/pandora_networkmap.php:825
-msgid "Create empty network map"
-msgstr "Crear mapa de red vacío"
-
-#: ../../operation/agentes/alerts_status.php:191 ../../operation/menu.php:66
-#: ../../operation/users/user_edit.php:361
-#: ../../godmode/users/configure_user.php:1114
-msgid "Alert detail"
-msgstr "Detalle de alertas"
-
-#: ../../operation/agentes/alerts_status.php:209
-#: ../../enterprise/meta/general/main_header.php:115
-#: ../../enterprise/meta/general/main_menu.php:206
-msgid "Alerts view"
-msgstr "Vista de alertas"
-
-#: ../../operation/agentes/alerts_status.php:217
-msgid "Insufficient permissions to validate alerts"
-msgstr "Permisos insuficientes para validar alertas"
-
-#: ../../operation/agentes/alerts_status.php:484 ../../operation/tree.php:304
-#: ../../operation/events/events_list.php:1102
-#: ../../godmode/reporting/reporting_builder.list_items.php:273
-#: ../../godmode/alerts/alert_templates.php:337
-#: ../../godmode/alerts/alert_actions.php:315
-#: ../../godmode/users/user_list.php:444
-#: ../../godmode/modules/manage_network_components.php:690
-#: ../../godmode/tag/tag.php:246 ../../godmode/tag/tag.php:412
-#: ../../enterprise/godmode/modules/local_components.php:584
-#: ../../enterprise/meta/advanced/policymanager.queue.php:246
-#: ../../enterprise/meta/advanced/collections.php:192
-#: ../../enterprise/meta/agentsearch.php:113
-#: ../../enterprise/meta/monitoring/custom_fields_view.php:334
-msgid "Show Options"
-msgstr "Mostrar opciones"
-
-#: ../../operation/agentes/alerts_status.php:500
-#: ../../godmode/alerts/alert_list.list.php:178
-#: ../../enterprise/godmode/policies/policy_external_alerts.php:372
-msgid "Alert control filter"
-msgstr "Filtro de control de alertas"
-
-#: ../../operation/agentes/alerts_status.php:537
-#: ../../operation/agentes/alerts_status.php:573
-#: ../../operation/agentes/status_monitor.php:1303
-#: ../../godmode/agentes/status_monitor_custom_fields.php:73
-#: ../../godmode/agentes/status_monitor_custom_fields.php:142
-#: ../../godmode/agentes/module_manager.php:841
-#: ../../godmode/alerts/alert_view.php:148
-#: ../../enterprise/operation/agentes/collection_view.php:74
-#: ../../enterprise/operation/agentes/policy_view.php:67
-#: ../../enterprise/godmode/massive/massive_edit_tags_policy.php:116
-#: ../../enterprise/godmode/massive/massive_add_alerts_policy.php:102
-#: ../../enterprise/godmode/massive/massive_tags_edit_policy.php:108
-#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:112
-#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:462
-#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:208
-#: ../../enterprise/godmode/agentes/inventory_manager.php:219
-#: ../../enterprise/godmode/agentes/plugins_manager.php:193
-#: ../../enterprise/godmode/agentes/collection_manager.php:205
-#: ../../enterprise/godmode/policies/policy_queue.php:578
-#: ../../enterprise/godmode/policies/policy_queue.php:632
-#: ../../enterprise/include/functions_policies.php:4068
-#: ../../enterprise/meta/advanced/policymanager.queue.php:210
-#: ../../enterprise/meta/advanced/policymanager.queue.php:257
-#: ../../enterprise/meta/advanced/policymanager.sync.php:319
-#: ../../enterprise/extensions/resource_exportation/functions.php:18
-#: ../../include/ajax/module.php:974 ../../include/ajax/alert_list.ajax.php:272
-msgid "Policy"
-msgstr "Política"
-
-#: ../../operation/agentes/alerts_status.php:537
-#: ../../operation/agentes/alerts_status.php:573
-#: ../../operation/agentes/status_monitor.php:1303
-#: ../../godmode/snmpconsole/snmp_alert.php:1217
-#: ../../godmode/reporting/graph_builder.graph_editor.php:211
-#: ../../godmode/reporting/reporting_builder.list_items.php:371
-#: ../../godmode/agentes/module_manager.php:841
-#: ../../enterprise/operation/agentes/collection_view.php:74
-#: ../../enterprise/godmode/agentes/inventory_manager.php:219
-#: ../../enterprise/godmode/agentes/collection_manager.php:205
-#: ../../include/ajax/module.php:974 ../../include/ajax/alert_list.ajax.php:272
-msgid "P."
-msgstr "P."
-
-#: ../../operation/agentes/alerts_status.php:539
-#: ../../operation/agentes/alerts_status.php:575
-#: ../../operation/agentes/alerts_status.php:610
-#: ../../operation/agentes/alerts_status.php:643
-#: ../../godmode/agentes/module_manager.php:844
-#: ../../enterprise/operation/agentes/policy_view.php:66
-#: ../../enterprise/operation/agentes/policy_view.php:166
-#: ../../enterprise/operation/agentes/policy_view.php:257
-#: ../../enterprise/operation/agentes/policy_view.php:262
-#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:190
-#: ../../enterprise/godmode/admin_access_logs.php:50
-#: ../../enterprise/godmode/policies/policy_agents.php:852
-#: ../../enterprise/godmode/policies/policy_agents.php:1368
-#: ../../include/functions_events.php:2604
-#: ../../include/class/AuditLog.class.php:128
-#: ../../include/ajax/alert_list.ajax.php:273
-#: ../../include/ajax/alert_list.ajax.php:298
-#: ../../mobile/operation/agents.php:406
-msgid "S."
-msgstr "S."
-
-#: ../../operation/agentes/alerts_status.php:543
-#: ../../operation/agentes/alerts_status.php:579
-#: ../../operation/agentes/alerts_status.php:613
-#: ../../operation/agentes/alerts_status.php:646
-#: ../../include/ajax/module.php:970 ../../include/ajax/alert_list.ajax.php:276
-#: ../../include/ajax/alert_list.ajax.php:301
-msgid "Force execution"
-msgstr "Forzar ejecución"
-
-#: ../../operation/agentes/alerts_status.php:543
-#: ../../operation/agentes/alerts_status.php:579
-#: ../../operation/agentes/alerts_status.php:613
-#: ../../operation/agentes/alerts_status.php:646
-#: ../../include/ajax/module.php:970 ../../include/ajax/alert_list.ajax.php:276
-#: ../../include/ajax/alert_list.ajax.php:301
-msgid "F."
-msgstr "F."
-
-#: ../../operation/agentes/alerts_status.php:549
-#: ../../operation/agentes/alerts_status.php:584
-#: ../../operation/agentes/alerts_status.php:619
-#: ../../operation/agentes/alerts_status.php:651
-#: ../../operation/search_alerts.php:36
-#: ../../godmode/reporting/reporting_builder.item_editor.php:201
-#: ../../godmode/reporting/reporting_builder.item_editor.php:825
-#: ../../godmode/alerts/alert_view.php:95
-#: ../../godmode/alerts/alert_list.builder.php:140
-#: ../../godmode/alerts/alert_list.list.php:480
-#: ../../enterprise/operation/agentes/policy_view.php:259
-#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:321
-#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1399
-#: ../../enterprise/godmode/policies/policy_external_alerts.php:329
-#: ../../enterprise/godmode/policies/policy_alerts.php:351
-#: ../../enterprise/godmode/policies/policy_alerts.php:557
-#: ../../enterprise/include/functions_tasklist.php:328
-#: ../../enterprise/include/functions_reporting_csv.php:2465
-#: ../../enterprise/meta/monitoring/wizard/wizard.manage_alert.php:224
-#: ../../include/functions_treeview.php:412
-#: ../../include/functions_treeview.php:453 ../../include/functions_cron.php:653
-#: ../../include/functions_reporting_html.php:3133
-#: ../../include/functions_reporting_html.php:3136
-#: ../../include/class/AgentsAlerts.class.php:338
-#: ../../include/class/AgentsAlerts.class.php:976
-#: ../../include/ajax/alert_list.ajax.php:280
-#: ../../include/ajax/alert_list.ajax.php:305
-#: ../../mobile/operation/alerts.php:342
-msgid "Template"
-msgstr "Plantilla"
-
-#: ../../operation/agentes/alerts_status.php:551
-#: ../../operation/agentes/alerts_status.php:586
-#: ../../operation/agentes/alerts_status.php:621
-#: ../../operation/agentes/alerts_status.php:653
-#: ../../godmode/snmpconsole/snmp_alert.php:1238
-#: ../../godmode/alerts/alert_view.php:99
-#: ../../enterprise/operation/agentes/policy_view.php:261
-#: ../../enterprise/godmode/alerts/alert_inventory_list.php:221
-#: ../../include/functions_treeview.php:455
-#: ../../include/functions_reporting_html.php:5158
-#: ../../include/class/AgentsAlerts.class.php:905
-#: ../../include/ajax/alert_list.ajax.php:282
-#: ../../include/ajax/alert_list.ajax.php:307
-msgid "Last fired"
-msgstr "Disparada por última vez"
-
-#: ../../operation/agentes/alerts_status.php:732
-#: ../../include/ajax/alert_list.ajax.php:328
-msgid "No alerts found"
-msgstr "No se encontró ninguna alerta"
-
-#: ../../operation/agentes/alerts_status.php:742
-msgid "Full list of alerts"
-msgstr "Lista completa de alertas"
-
-#: ../../operation/agentes/graphs.php:143
-msgid "Other modules"
-msgstr "Otros módulos"
-
-#: ../../operation/agentes/graphs.php:150
-msgid "Modules network no proc"
-msgstr "Módulos de red sin proc"
-
-#: ../../operation/agentes/graphs.php:157
-msgid "Modules boolean"
-msgstr "Módulos booleanos"
-
-#: ../../operation/agentes/graphs.php:222
-#: ../../operation/agentes/stat_win.php:276
-msgid "Show events"
-msgstr "Mostrar eventos"
-
-#: ../../operation/agentes/graphs.php:224
-#: ../../operation/agentes/stat_win.php:310
-msgid "Show alerts"
-msgstr "Mostrar alertas"
-
-#: ../../operation/agentes/graphs.php:224
-msgid "the combined graph does not show the alerts into this graph"
-msgstr "Los gráficos combinados no muestran las alertas."
-
-#: ../../operation/agentes/graphs.php:226
-msgid "Show as one combined graph"
-msgstr "Mostrar como un gráfico combinado"
-
-#: ../../operation/agentes/graphs.php:228
-msgid "several graphs for each module"
-msgstr "Varios gráficos por cada módulo"
-
-#: ../../operation/agentes/graphs.php:229
-msgid "One combined graph"
-msgstr "Gráfico combinado"
-
-#: ../../operation/agentes/graphs.php:233
-#: ../../godmode/netflow/nf_item_list.php:177
-msgid "Chart type"
-msgstr "Tipo de gráfico"
-
-#: ../../operation/agentes/graphs.php:237 ../../operation/agentes/graphs.php:413
-msgid "Area stack"
-msgstr "Gráfico de área apilada"
-
-#: ../../operation/agentes/graphs.php:239 ../../operation/agentes/graphs.php:421
-msgid "Line stack"
-msgstr "Gráfico de línea apilada"
-
-#: ../../operation/agentes/graphs.php:256
-msgid "Save as custom graph"
-msgstr "Guardar como gráfico personalizado"
-
-#: ../../operation/agentes/graphs.php:269
-msgid "Filter graphs"
-msgstr "Filtrar gráficos"
-
-#: ../../operation/agentes/graphs.php:296
-msgid "There was an error loading the graph"
-msgstr "Error al cargar el gráfico"
-
-#: ../../operation/agentes/graphs.php:304 ../../operation/agentes/graphs.php:308
-msgid "Name custom graph"
-msgstr "Nombre de gráfico personalizado"
-
-#: ../../operation/agentes/graphs.php:342
-#: ../../godmode/reporting/visual_console_builder.data.php:229
-#: ../../godmode/reporting/reporting_builder.main.php:45
-#: ../../godmode/setup/snmp_wizard.php:100 ../../godmode/setup/gis_step_2.php:521
-#: ../../enterprise/godmode/reporting/reporting_builder.template_editor.php:109
-#: ../../enterprise/godmode/reporting/mysql_builder.php:240
-#: ../../enterprise/include/ajax/transactional.ajax.php:83
-#: ../../enterprise/views/ncm/agent/manage.php:259
-#: ../../extensions/insert_data.php:208
-msgid "Save"
-msgstr "Guardar"
-
-#: ../../operation/agentes/graphs.php:354
-msgid "Save custom graph"
-msgstr "Guardar gráfico personalizado"
-
-#: ../../operation/agentes/graphs.php:375
-msgid "Custom graph create from the tab graphs in the agent."
-msgstr "Gráfico personalizado creado desde la sección de gráficos del agente"
-
-#: ../../operation/agentes/ver_agente.php:1008
-#: ../../enterprise/operation/agentes/ver_agente.php:72
-msgid "Main IP"
-msgstr "IP principal"
-
-#: ../../operation/agentes/ver_agente.php:1020
-#: ../../enterprise/operation/agentes/ver_agente.php:78
-#: ../../include/functions_events.php:4505
-msgid "Last remote contact"
-msgstr "Último contacto remoto"
-
-#: ../../operation/agentes/ver_agente.php:1065
-#: ../../enterprise/operation/agentes/ver_agente.php:122
-msgid "Monitors down"
-msgstr "Monitores caídos"
-
-#: ../../operation/agentes/ver_agente.php:1106
-#: ../../enterprise/operation/agentes/ver_agente.php:164
-#: ../../include/lib/Dashboard/Widgets/system_group_status.php:576
-#: ../../mobile/operation/groups.php:174
-msgid "Alerts fired"
-msgstr "Alertas disparadas"
-
-#: ../../operation/agentes/ver_agente.php:1172
-#: ../../godmode/setup/setup_general.php:649
-#: ../../enterprise/tools/ipam/ipam_supernet_config.php:349
-#: ../../enterprise/tools/ipam/ipam_calculator.php:62
-#: ../../enterprise/tools/ipam/ipam_network.php:395
-#: ../../enterprise/tools/ipam/ipam_excel.php:133
-#: ../../enterprise/tools/ipam/ipam_ajax.php:359
-#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:53
-#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:254
-#: ../../enterprise/godmode/servers/manage_export_form.php:99
-#: ../../enterprise/godmode/servers/manage_export.php:140
-#: ../../enterprise/include/functions_ipam.php:2032
-#: ../../enterprise/views/ncm/devices/list.php:117
-msgid "Address"
-msgstr "Dirección"
-
-#: ../../operation/agentes/ver_agente.php:1223
-msgid "Sons"
-msgstr "Hijos"
-
-#: ../../operation/agentes/ver_agente.php:1348
-#: ../../operation/search_agents.php:132 ../../operation/search_agents.php:133
-#: ../../enterprise/tools/ipam/ipam.php:426
-#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:301
-#: ../../enterprise/godmode/agentes/agent_autoconfiguration.php:103
-#: ../../enterprise/meta/advanced/metasetup.consoles.php:841
-msgid "Manage"
-msgstr "Gestionar"
-
-#: ../../operation/agentes/ver_agente.php:1478
-#: ../../godmode/agentes/configurar_agente.php:509
-msgid "GIS data"
-msgstr "Datos GIS"
-
-#: ../../operation/agentes/ver_agente.php:1498 ../../operation/menu.php:474
-#: ../../operation/incidents/incident_statistics.php:21
-#: ../../godmode/agentes/configurar_agente.php:581
-#: ../../godmode/agentes/configurar_agente.php:749
-#: ../../general/first_task/incidents.php:28
-msgid "Incidents"
-msgstr "Incidentes"
-
-#: ../../operation/agentes/ver_agente.php:1535
-#: ../../operation/agentes/status_monitor.php:62
-#: ../../operation/agentes/status_monitor.php:85
-#: ../../godmode/reporting/reporting_builder.item_editor.php:76
-#: ../../godmode/massive/massive_edit_agents.php:1103
-#: ../../godmode/agentes/agent_manager.php:864
-#: ../../godmode/agentes/agent_manager.php:889 ../../godmode/menu.php:77
-#: ../../godmode/events/events.php:80 ../../godmode/events/events.php:95
-#: ../../enterprise/meta/event/custom_events.php:56
-#: ../../enterprise/meta/event/custom_events.php:61
-#: ../../enterprise/meta/event/custom_events.php:74
-#: ../../enterprise/meta/event/custom_events.php:92
-#: ../../include/functions_events.php:4510
-#: ../../include/functions_reporting_html.php:1516
-msgid "Custom fields"
-msgstr "Campos personalizados"
-
-#: ../../operation/agentes/ver_agente.php:1573
-msgid "Log Viewer"
-msgstr "Visor de logs"
-
-#: ../../operation/agentes/ver_agente.php:1600 ../../godmode/setup/setup.php:177
-#: ../../godmode/setup/setup.php:277 ../../godmode/menu.php:347
-msgid "eHorus"
-msgstr "eHorus"
-
-#: ../../operation/agentes/ver_agente.php:1612
-msgid "Terminal"
-msgstr "Terminal"
-
-#: ../../operation/agentes/ver_agente.php:1623
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2401
-#: ../../enterprise/godmode/reporting/reporting_builder.global.php:367
-#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2439
-#: ../../include/lib/Dashboard/Widgets/top_n.php:286
-msgid "Display"
-msgstr "Mostrar"
-
-#: ../../operation/agentes/ver_agente.php:1634
-msgid "Processes"
-msgstr "Procesos"
-
-#: ../../operation/agentes/ver_agente.php:1645
-#: ../../enterprise/operation/menu.php:77
-#: ../../enterprise/operation/services/services.treeview_services.php:61
-#: ../../enterprise/operation/services/services.treeview_services.php:81
-#: ../../enterprise/operation/services/services.service.php:83
-#: ../../enterprise/operation/services/services.list.php:58
-#: ../../enterprise/operation/services/services.list.php:75
-#: ../../enterprise/operation/services/services.service_map.php:90
-#: ../../enterprise/operation/services/services.service_map.php:109
-#: ../../enterprise/operation/services/services.table_services.php:38
-#: ../../enterprise/operation/services/services.table_services.php:58
-#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:300
-#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:136
-#: ../../enterprise/godmode/massive/massive_add_service_elements.php:363
-#: ../../enterprise/godmode/massive/massive_create_services.php:966
-#: ../../enterprise/godmode/menu.php:137
-#: ../../enterprise/godmode/services/services.service.php:469
-#: ../../enterprise/godmode/services/services.service.php:489
-#: ../../enterprise/godmode/services/services.massive.meta.php:42
-#: ../../enterprise/godmode/services/services.elements.php:778
-#: ../../enterprise/godmode/services/services.elements.php:798
-#: ../../enterprise/godmode/services/services.massive.elements.php:44
-#: ../../enterprise/include/functions_groups.php:65
-#: ../../enterprise/meta/general/main_header.php:210
-#: ../../enterprise/meta/general/main_menu.php:329
-#: ../../general/first_task/service_list.php:23
-msgid "Services"
-msgstr "Servicios"
-
-#: ../../operation/agentes/ver_agente.php:1656
-#: ../../enterprise/godmode/agentes/collections.editor.php:65
-#: ../../enterprise/godmode/agentes/collections.editor.php:424
-#: ../../enterprise/godmode/agentes/collections.editor.php:446
-#: ../../enterprise/godmode/agentes/collections.agents.php:50
-#: ../../enterprise/godmode/agentes/collections.data.php:127
-#: ../../enterprise/godmode/agentes/collections.data.php:281
-#: ../../enterprise/godmode/agentes/collections.data.php:334
-#: ../../enterprise/include/functions_collection.php:186
-#: ../../enterprise/meta/advanced/collections.editor.php:57
-#: ../../enterprise/meta/advanced/collections.editor.php:385
-#: ../../enterprise/meta/advanced/collections.editor.php:402
-#: ../../enterprise/meta/advanced/collections.data.php:174
-#: ../../enterprise/meta/advanced/collections.data.php:241
-#: ../../enterprise/meta/advanced/collections.data.php:265
-msgid "Files"
-msgstr "Archivos"
-
-#: ../../operation/agentes/ver_agente.php:1674
-#: ../../operation/agentes/ver_agente.php:1873
-#: ../../enterprise/operation/menu.php:61
-msgid "SAP view"
-msgstr "Vista SAP"
-
-#: ../../operation/agentes/ver_agente.php:1686 ../../godmode/setup/setup.php:224
-#: ../../godmode/setup/setup.php:311 ../../godmode/menu.php:361
-msgid "External Tools"
-msgstr "Herramientas externas"
-
-#: ../../operation/agentes/exportdata.php:34 ../../operation/menu.php:515
-msgid "Export data"
-msgstr "Exportar datos"
-
-#: ../../operation/agentes/exportdata.php:248
-#: ../../enterprise/godmode/agentes/manage_config_remote.php:153
-msgid "Source agent"
-msgstr "Agente de origen"
-
-#: ../../operation/agentes/exportdata.php:283
-msgid "No modules of type string. You can not calculate their average"
-msgstr "No hay módulos de tipo cadena. No puedes calcular la media."
-
-#: ../../operation/agentes/exportdata.php:375
-msgid "Export type"
-msgstr "Tipo de exportación"
-
-#: ../../operation/agentes/exportdata.php:378
-#: ../../include/functions_netflow.php:1184
-msgid "Data table"
-msgstr "Tabla de datos"
-
-#: ../../operation/agentes/exportdata.php:379
-#: ../../enterprise/operation/reporting/custom_reporting.php:18
-#: ../../enterprise/godmode/reporting/reporting_builder.template.php:505
-#: ../../extensions/insert_data.php:199
-msgid "CSV"
-msgstr "CSV"
-
-#: ../../operation/agentes/exportdata.php:380
-msgid "MS Excel"
-msgstr "MS Excel"
-
-#: ../../operation/agentes/exportdata.php:381
-msgid "Average per hour/day"
-msgstr "Media por hora/día"
-
-#: ../../operation/agentes/exportdata.php:389
-#: ../../enterprise/include/functions_reporting.php:8128
-#: ../../enterprise/extensions/resource_exportation/functions.php:21
-#: ../../extensions/resource_exportation.php:435
-#: ../../extensions/resource_exportation.php:438
-msgid "Export"
-msgstr "Exportar"
-
-#: ../../operation/agentes/gis_view.php:59
-#: ../../godmode/agentes/agent_conf_gis.php:38
-msgid "There is no default map. Please go to the setup for to set a default map."
-msgstr ""
-"No existe ningún mapa por defecto. Por favor, selecciona uno en la sección de "
-"configuración."
-
-#: ../../operation/agentes/gis_view.php:96
-msgid "Period to show data as path"
-msgstr "Período para mostrar datos como ruta"
-
-#: ../../operation/agentes/gis_view.php:100
-msgid "Refresh path"
-msgstr "Actualizar ruta"
-
-#: ../../operation/agentes/gis_view.php:158
-msgid "This agent doesn't have any GIS data."
-msgstr "Este agente no tiene ningún dato GIS."
-
-#: ../../operation/agentes/gis_view.php:170
-msgid "Positional data from the last"
-msgstr "Datos de posición desde el último"
-
-#: ../../operation/agentes/gis_view.php:209
-#, php-format
-msgid "%s Km"
-msgstr "%s Km"
-
-#: ../../operation/agentes/gis_view.php:217
-#: ../../godmode/setup/gis_step_2.php:483
-msgid "Longitude"
-msgstr "Longitud"
-
-#: ../../operation/agentes/gis_view.php:218
-#: ../../godmode/setup/gis_step_2.php:465
-msgid "Latitude"
-msgstr "Latitud"
-
-#: ../../operation/agentes/gis_view.php:219
-#: ../../godmode/setup/gis_step_2.php:501
-msgid "Altitude"
-msgstr "Altitud"
-
-#: ../../operation/agentes/gis_view.php:221
-#: ../../godmode/agentes/planned_downtime.list.php:302
-#: ../../enterprise/include/functions_reporting_pdf.php:1984
-#: ../../enterprise/include/functions_reporting_csv.php:716
-#: ../../enterprise/include/functions_reporting_csv.php:952
-#: ../../enterprise/include/functions_reporting_csv.php:1325
-#: ../../include/functions_snmp.php:413 ../../include/functions_snmp.php:421
-#: ../../include/functions_reporting_html.php:3702
-#: ../../include/rest-api/index.php:361
-#: ../../include/rest-api/models/VisualConsole/Items/ColorCloud.php:460
-#: ../../include/rest-api/models/VisualConsole/Items/ColorCloud.php:520
-msgid "To"
-msgstr "Para"
-
-#: ../../operation/agentes/gis_view.php:223
-msgid "Distance"
-msgstr "Distancia"
-
-#: ../../operation/agentes/gis_view.php:224
-msgid "# of Packages"
-msgstr "# de paquetes"
-
-#: ../../operation/agentes/custom_fields.php:59
-msgid "No fields defined"
-msgstr "No se han definido campos"
-
-#: ../../operation/agentes/custom_fields.php:65
-#: ../../godmode/agentes/fields_manager.php:119
-#: ../../godmode/alerts/alert_view.php:441
-#: ../../godmode/alerts/alert_view.php:564
-#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2656
-msgid "Field"
-msgstr "Campo"
-
-#: ../../operation/agentes/custom_fields.php:67
-#: ../../godmode/agentes/fields_manager.php:120
-#: ../../godmode/agentes/configure_field.php:95
-msgid "Display on front"
-msgstr "Mostrar en la vista principal"
-
-#: ../../operation/agentes/custom_fields.php:67
-#: ../../godmode/agentes/fields_manager.php:120
-#: ../../godmode/agentes/configure_field.php:96
-msgid ""
-"The fields with display on front enabled will be displayed into the agent "
-"details"
-msgstr ""
-"Si esta opción está activada, los campos mostrarán la información en la vista "
-"principal."
-
-#: ../../operation/agentes/log_sources_status.php:57
-#: ../../godmode/wizards/DiscoveryTaskList.class.php:1289
-#: ../../godmode/wizards/DiscoveryTaskList.class.php:1853
-msgid "Review"
-msgstr "Revisar"
-
-#: ../../operation/agentes/log_sources_status.php:75
-msgid "Review in log viewer"
-msgstr "Revisar en visor de logs"
-
-#: ../../operation/agentes/log_sources_status.php:98
-msgid "No log sources found"
-msgstr "No se han encontrado fuentes de logs"
-
-#: ../../operation/agentes/log_sources_status.php:117
-msgid "Log sources status"
-msgstr "Estado de las fuentes de logs"
-
-#: ../../operation/agentes/status_monitor.php:95 ../../operation/menu.php:58
-msgid "Monitor detail"
-msgstr "Detalle del monitor"
-
-#: ../../operation/agentes/status_monitor.php:119
-msgid "Monitor view"
-msgstr "Vista del monitor"
-
-#: ../../operation/agentes/status_monitor.php:500
-#: ../../enterprise/operation/agentes/tag_view.php:139
-msgid "Monitor status"
-msgstr "Estado del monitor"
-
-#: ../../operation/agentes/status_monitor.php:518 ../../operation/heatmap.php:96
-#: ../../godmode/massive/massive_edit_modules.php:892
-#: ../../godmode/agentes/module_manager_editor_common.php:271
-#: ../../godmode/agentes/module_manager_editor_common.php:1188
-#: ../../enterprise/operation/agentes/tag_view.php:157
-#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:835
-#: ../../include/functions_treeview.php:116
-#: ../../include/functions_graph.php:5316 ../../include/ajax/heatmap.ajax.php:196
-msgid "Not assigned"
-msgstr "Sin asignar"
-
-#: ../../operation/agentes/status_monitor.php:545
-#: ../../operation/agentes/status_monitor.php:1319
-#: ../../godmode/agentes/agent_template.php:235
-#: ../../godmode/agentes/status_monitor_custom_fields.php:85
-#: ../../godmode/agentes/status_monitor_custom_fields.php:145
-#: ../../godmode/alerts/alert_list.list.php:89
-#: ../../godmode/modules/manage_network_components.php:748
-#: ../../godmode/modules/manage_network_components_form_wizard.php:271
-#: ../../godmode/modules/manage_network_templates_form.php:231
-#: ../../enterprise/operation/agentes/tag_view.php:205
-#: ../../enterprise/godmode/policies/policy_external_alerts.php:338
-#: ../../enterprise/include/functions_reporting_csv.php:873
-#: ../../enterprise/meta/include/functions_events_meta.php:90
-#: ../../include/ajax/heatmap.ajax.php:225
-#: ../../include/ajax/heatmap.ajax.php:264 ../../include/ajax/module.php:978
-#: ../../include/ajax/custom_fields.php:411
-#: ../../mobile/operation/modules.php:594 ../../mobile/operation/modules.php:848
-msgid "Module name"
-msgstr "Nombre del módulo"
-
-#: ../../operation/agentes/status_monitor.php:625
-#: ../../godmode/agentes/module_manager_editor_data.php:15
-#: ../../enterprise/operation/agentes/tag_view.php:278
-msgid "Data server module"
-msgstr "Módulo del servidor de datos"
-
-#: ../../operation/agentes/status_monitor.php:627
-#: ../../godmode/agentes/module_manager_editor_network.php:77
-#: ../../enterprise/operation/agentes/tag_view.php:280
-msgid "Network server module"
-msgstr "Módulo del servidor de red"
-
-#: ../../operation/agentes/status_monitor.php:631
-#: ../../godmode/agentes/module_manager_editor_plugin.php:46
-#: ../../enterprise/operation/agentes/tag_view.php:284
-msgid "Plugin server module"
-msgstr "Módulo del servidor de plugin"
-
-#: ../../operation/agentes/status_monitor.php:635
-#: ../../godmode/agentes/module_manager_editor_wmi.php:33
-#: ../../enterprise/operation/agentes/tag_view.php:288
-msgid "WMI server module"
-msgstr "Módulo del servidor WMI"
-
-#: ../../operation/agentes/status_monitor.php:639
-#: ../../godmode/agentes/module_manager_editor_prediction.php:107
-#: ../../enterprise/operation/agentes/tag_view.php:292
-msgid "Prediction server module"
-msgstr "Módulo del servidor de predicción"
-
-#: ../../operation/agentes/status_monitor.php:643
-#: ../../godmode/agentes/module_manager_editor_web.php:55
-#: ../../enterprise/operation/agentes/tag_view.php:296
-msgid "Web server module"
-msgstr "Módulo del servidor web"
-
-#: ../../operation/agentes/status_monitor.php:645
-msgid "Wux server module"
-msgstr "Módulo del servidor WUX"
-
-#: ../../operation/agentes/status_monitor.php:650
-#: ../../operation/agentes/status_monitor.php:1324
-#: ../../godmode/agentes/status_monitor_custom_fields.php:89
-#: ../../godmode/agentes/status_monitor_custom_fields.php:146
-#: ../../enterprise/operation/agentes/tag_view.php:299
-#: ../../enterprise/operation/agentes/tag_view.php:680
-msgid "Server type"
-msgstr "Tipo de servidor"
-
-#: ../../operation/agentes/status_monitor.php:656
-#: ../../godmode/agentes/modificar_agente.php:324
-#: ../../enterprise/operation/agentes/tag_view.php:305
-msgid "Only enabled"
-msgstr "Solo habilitados"
-
-#: ../../operation/agentes/status_monitor.php:657
-#: ../../godmode/agentes/modificar_agente.php:323
-#: ../../enterprise/operation/agentes/tag_view.php:306
-msgid "Only disabled"
-msgstr "Solo deshabilitados"
-
-#: ../../operation/agentes/status_monitor.php:660
-#: ../../enterprise/operation/agentes/tag_view.php:309
-msgid "Show monitors..."
-msgstr "Mostrar módulos..."
-
-#: ../../operation/agentes/status_monitor.php:666
-msgid "Min. hours in current status"
-msgstr "Mín. de horas en el estado actual"
-
-#: ../../operation/agentes/status_monitor.php:671
-#: ../../godmode/agentes/status_monitor_custom_fields.php:81
-#: ../../godmode/agentes/status_monitor_custom_fields.php:144
-#: ../../enterprise/operation/agentes/tag_view.php:319
-#: ../../enterprise/operation/agentes/tag_view.php:679
-msgid "Data type"
-msgstr "Tipo de dato"
-
-#: ../../operation/agentes/status_monitor.php:776
-msgid "Not condition"
-msgstr "Condition NOT"
-
-#: ../../operation/agentes/status_monitor.php:776
-msgid ""
-"If you check this option, those elements that do NOT meet any of the "
-"requirements will be shown"
-msgstr ""
-"Si marca esta opción, se mostrarán aquellos elementos que NO cumplan alguno de "
-"los requisitos"
-
-#: ../../operation/agentes/status_monitor.php:845
-msgid "Advanced Options"
-msgstr "Opciones avanzadas"
-
-#: ../../operation/agentes/status_monitor.php:854
-msgid "Show filters"
-msgstr "Mostrar filtros"
-
-#: ../../operation/agentes/status_monitor.php:1313
-msgid "Data Type"
-msgstr "Tipo de datos"
-
-#: ../../operation/agentes/status_monitor.php:1347
-#: ../../operation/search_modules.php:37
-#: ../../godmode/agentes/status_monitor_custom_fields.php:105
-#: ../../godmode/agentes/status_monitor_custom_fields.php:150
-#: ../../enterprise/operation/agentes/tag_view.php:682
-#: ../../enterprise/operation/services/services.service.php:130
-#: ../../enterprise/operation/services/services.list.php:509
-#: ../../include/functions_events.php:4585
-#: ../../include/functions_visual_map_editor.php:58
-#: ../../include/class/NetworkMap.class.php:2908
-#: ../../include/lib/Dashboard/Widgets/custom_graph.php:303
-#: ../../include/ajax/module.php:983 ../../extensions/realtime_graphs.php:161
-msgid "Graph"
-msgstr "Gráfico"
-
-#: ../../operation/agentes/status_monitor.php:1352
-#: ../../godmode/agentes/status_monitor_custom_fields.php:109
-#: ../../godmode/agentes/status_monitor_custom_fields.php:151
-#: ../../godmode/agentes/module_manager.php:864
-#: ../../enterprise/operation/agentes/tag_view.php:683
-msgid "Warn"
-msgstr "Advertencia"
-
-#: ../../operation/agentes/status_monitor.php:1573
-#: ../../operation/search_modules.php:108 ../../operation/events/events.php:2164
-#: ../../enterprise/operation/agentes/tag_view.php:935
-#: ../../include/functions_events.php:62 ../../include/functions_modules.php:2840
-#: ../../include/functions_modules.php:4076
-#: ../../mobile/operation/modules.php:542 ../../mobile/operation/modules.php:605
-msgid "NOT INIT"
-msgstr "No iniciado"
-
-#: ../../operation/agentes/status_monitor.php:1642
-#: ../../operation/agentes/status_monitor.php:1650
-#: ../../include/functions.php:1357 ../../include/functions.php:1394
-#: ../../include/functions_modules.php:4088
-#: ../../include/class/Tree.class.php:646 ../../include/lib/Module.php:565
-msgid "NO DATA"
-msgstr "SIN DATOS"
-
-#: ../../operation/agentes/status_monitor.php:1981
-msgid "This group doesn't have any monitor"
-msgstr "Este grupo no tiene ningún monitor definido."
-
-#: ../../operation/agentes/status_monitor.php:1983
-msgid "Sorry no search parameters"
-msgstr "No hay parámetros de búsqueda"
-
-#: ../../operation/agentes/datos_agente.php:173
-msgid "Received data from"
-msgstr "Datos recibidos de"
-
-#: ../../operation/agentes/datos_agente.php:180
-msgid "Main database"
-msgstr "Base de datos principal"
-
-#: ../../operation/agentes/datos_agente.php:180
-#: ../../enterprise/godmode/menu.php:148
-#: ../../enterprise/include/functions_setup.php:67
-#: ../../enterprise/include/functions_setup.php:119
-msgid "History database"
-msgstr "Base de datos histórica"
-
-#: ../../operation/agentes/datos_agente.php:181
-msgid ""
-"Switch between the main database and the history database to retrieve module "
-"data"
-msgstr ""
-"Cambiar entre base de datos principal e histórica para recoger los datos de "
-"los módulos"
-
-#: ../../operation/agentes/datos_agente.php:194 ../../include/ajax/module.php:223
-msgid "Choose a time from now"
-msgstr "Elija un tiempo a partir de ahora"
-
-#: ../../operation/agentes/datos_agente.php:197 ../../include/ajax/module.php:249
-msgid "Specify time range"
-msgstr "Especificar rango de tiempo"
-
-#: ../../operation/agentes/datos_agente.php:198
-#: ../../operation/events/events_list.php:881
-#: ../../enterprise/godmode/reporting/reporting_builder.template.php:778
-#: ../../include/ajax/module.php:250
-msgid "Timestamp from:"
-msgstr "Marca temporal desde:"
-
-#: ../../operation/agentes/datos_agente.php:204
-#: ../../operation/events/events_list.php:884
-#: ../../enterprise/godmode/reporting/reporting_builder.template.php:796
-#: ../../include/ajax/module.php:270
-msgid "Timestamp to:"
-msgstr "Marca temporal hasta:"
-
-#: ../../operation/agentes/datos_agente.php:295
-#: ../../godmode/reporting/map_builder.php:452
-#: ../../godmode/reporting/map_builder.php:469
-#: ../../godmode/agentes/module_manager.php:794 ../../include/ajax/module.php:560
-msgid "No available data to show"
-msgstr "No hay datos disponibles para mostrar"
-
-#: ../../operation/agentes/stat_win.php:116
-#, php-format
-msgid "%s Graph"
-msgstr "Gráfica %s"
-
-#: ../../operation/agentes/stat_win.php:147
-msgid "There was a problem locating the source of the graph"
-msgstr "Error al localizar la fuente del gráfico"
-
-#: ../../operation/agentes/stat_win.php:295
-#, php-format
-msgid ""
-"'Show events' is disabled because this %s node is set to event replication."
-msgstr ""
-"\"Mostrar eventos\" está deshabilitado porque el nodo de %s está en "
-"replicación de eventos."
-
-#: ../../operation/agentes/stat_win.php:328
-#: ../../mobile/operation/module_graph.php:444
-msgid "Show unknown graph"
-msgstr "Mostrar gráficos desconocidos"
-
-#: ../../operation/agentes/stat_win.php:351
-msgid "Zoom"
-msgstr "Ampliación"
-
-#: ../../operation/agentes/stat_win.php:380
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2507
-#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:543
-#: ../../mobile/operation/module_graph.php:436
-msgid "Time compare (Overlapped)"
-msgstr "Comparación de tiempo (solapado)"
-
-#: ../../operation/agentes/stat_win.php:388
-#: ../../operation/agentes/stat_win.php:450
-#: ../../mobile/operation/module_graph.php:428
-msgid "Time compare (Separated)"
-msgstr "Comparación de tiempo (por separado)"
-
-#: ../../operation/agentes/stat_win.php:397
-msgid "Show AVG/MAX/MIN data series in graph"
-msgstr "Mostar series de datos MEDIA/MÄX./MÍN. en la gráfica"
-
-#: ../../operation/search_maps.php:30
-#: ../../enterprise/godmode/services/services.elements.php:778
-msgid "Elements"
-msgstr "Elementos"
-
-#: ../../operation/menu.php:51 ../../operation/tree.php:138
-#: ../../godmode/groups/group_list.php:344
-#: ../../enterprise/operation/services/services.treeview_services.php:61
-#: ../../enterprise/operation/services/services.treeview_services.php:68
-#: ../../enterprise/meta/general/main_header.php:97
-#: ../../enterprise/meta/general/main_menu.php:188
-#: ../../include/lib/Dashboard/Widgets/tree_view.php:173
-#: ../../include/lib/Dashboard/Widgets/tree_view.php:714
-msgid "Tree view"
-msgstr "Vista de árbol"
-
-#: ../../operation/menu.php:69 ../../operation/heatmap.php:92
-msgid "Heatmap view"
-msgstr "Vista de mapa de calor"
-
-#: ../../operation/menu.php:78 ../../godmode/wizards/HostDevices.class.php:916
-#: ../../godmode/wizards/DiscoveryTaskList.class.php:597
-#: ../../enterprise/tools/ipam/ipam_vlan_network.php:63
-#: ../../enterprise/tools/ipam/ipam_calculator.php:185
-#: ../../enterprise/tools/ipam/ipam_editor.php:122
-#: ../../enterprise/tools/ipam/ipam_supernet_network.php:58
-#: ../../enterprise/tools/ipam/ipam_supernet_network.php:83
-#: ../../enterprise/tools/ipam/ipam_list.php:570
-#: ../../enterprise/include/functions_ipam.php:1976
-#: ../../enterprise/include/ajax/ipam.ajax.php:366
-#: ../../enterprise/include/ajax/ipam.ajax.php:396
-#: ../../include/functions_ui.php:870
-msgid "Network"
-msgstr "Red"
-
-#: ../../operation/menu.php:96
-msgid "Netflow Live View"
-msgstr "Netflow en tiempo real"
-
-#: ../../operation/menu.php:125
-#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:461
-#: ../../include/functions_menu.php:531
-msgid "SNMP console"
-msgstr "Consola SNMP"
-
-#: ../../operation/menu.php:126
-msgid "SNMP browser"
-msgstr "Navegador SNMP"
-
-#: ../../operation/menu.php:135
-msgid "SNMP filters"
-msgstr "Filtros SNMP"
-
-#: ../../operation/menu.php:136 ../../include/functions_menu.php:530
-msgid "SNMP trap generator"
-msgstr "Generador de traps SNMP"
-
-#: ../../operation/menu.php:165
-#: ../../include/lib/Dashboard/Widgets/network_map.php:172
-#: ../../include/lib/Dashboard/Widgets/network_map.php:478
-msgid "Network map"
-msgstr "Mapa de red"
-
-#: ../../operation/menu.php:265
-msgid "List of Gis maps"
-msgstr "Lista de mapas GIS"
-
-#: ../../operation/menu.php:339 ../../operation/users/user_edit.php:363
-#: ../../godmode/users/configure_user.php:1119
-#: ../../enterprise/extensions/vmware/vmware_view.php:1316
-#: ../../enterprise/extensions/vmware/vmware_view.php:1353
-#: ../../include/class/OrderInterpreter.class.php:219
-#: ../../mobile/include/functions_web.php:22
-msgid "Dashboard"
-msgstr "Dashboard"
-
-#: ../../operation/menu.php:373 ../../operation/events/events.php:946
-#: ../../operation/events/events.php:959 ../../godmode/menu.php:269
-#: ../../enterprise/tools/ipam/ipam_network.php:399
-#: ../../enterprise/tools/ipam/ipam_massive.php:103
-#: ../../enterprise/include/class/CommandCenter.class.php:1071
-#: ../../enterprise/meta/general/logon_ok.php:57
-#: ../../enterprise/meta/general/main_header.php:154
-#: ../../enterprise/meta/general/main_menu.php:257
-#: ../../enterprise/meta/monitoring/tactical.php:272
-#: ../../include/functions.php:4086 ../../include/functions_reports.php:864
-#: ../../include/functions_reports.php:868
-#: ../../include/functions_reports.php:872 ../../mobile/operation/events.php:609
-#: ../../mobile/operation/home.php:51 ../../mobile/include/functions_web.php:25
-msgid "Events"
-msgstr "Eventos"
-
-#: ../../operation/menu.php:379 ../../godmode/users/configure_profile.php:298
-#: ../../enterprise/godmode/reporting/graph_template_editor.php:255
-#: ../../enterprise/meta/event/custom_events.php:38
-msgid "View events"
-msgstr "Ver eventos"
-
-#: ../../operation/menu.php:416
-msgid "RSS"
-msgstr "RSS"
-
-#: ../../operation/menu.php:425 ../../operation/events/sound_events.php:64
-msgid "Sound Events"
-msgstr "Eventos sonoros"
-
-#: ../../operation/menu.php:443 ../../operation/events/events.php:968
-msgid "Sound Alerts"
-msgstr "Alertas sonoras"
-
-#: ../../operation/menu.php:460 ../../enterprise/meta/general/main_header.php:624
-#: ../../enterprise/meta/general/main_header.php:630
-#: ../../enterprise/meta/general/header.php:204
-#: ../../enterprise/meta/general/header.php:214
-#: ../../enterprise/meta/include/functions_users_meta.php:193
-#: ../../enterprise/meta/include/functions_users_meta.php:208
-#: ../../general/header.php:407 ../../general/header.php:417
-msgid "Edit my user"
-msgstr "Editar mi usuario"
-
-#: ../../operation/menu.php:465
-msgid "Configure user notifications"
-msgstr "Configurar notificaciones de usuario"
-
-#: ../../operation/menu.php:485
-msgid "Integria IMS statistics"
-msgstr "Estadísticas de Integria IMS"
-
-#: ../../operation/menu.php:486
-msgid "Integria IMS ticket list"
-msgstr "Lista de tickets de Integria IMS"
-
-#: ../../operation/menu.php:499
-msgid "Messages List"
-msgstr "Lista de mensajes"
-
-#: ../../operation/menu.php:500
-msgid "New message"
-msgstr "Mensaje nuevo"
-
-#: ../../operation/menu.php:521
-msgid "Scheduled downtime"
-msgstr "Desconexión programada"
-
-#: ../../operation/menu.php:595
-msgid "Tools"
-msgstr "Herramientas"
-
-#: ../../operation/search_policies.php:37
-msgid "Id_group"
-msgstr "Id_group"
-
-#: ../../operation/search_policies.php:50
-#: ../../enterprise/godmode/policies/policies.php:471
-#: ../../enterprise/meta/agentsearch.php:409
-msgid "Policy updated"
-msgstr "Política actualizada"
-
-#: ../../operation/search_policies.php:58
-#: ../../enterprise/godmode/policies/policies.php:479
-#: ../../enterprise/meta/agentsearch.php:417
-msgid "Pending update policy only database"
-msgstr "Pendiente de actualizar la política, solo para cambios en base de datos."
-
-#: ../../operation/search_policies.php:66
-#: ../../enterprise/godmode/policies/policies.php:487
-#: ../../enterprise/meta/agentsearch.php:425
-msgid "Pending update policy"
-msgstr "Pendiente actualizar política"
-
-#: ../../operation/users/user_edit_notifications.php:36
-#: ../../operation/users/user_edit_header.php:102
-msgid "User notifications"
-msgstr "Notifivaciones de usuario"
-
-#: ../../operation/users/user_edit_notifications.php:64
-#: ../../godmode/alerts/alert_list.list.php:1027
-#: ../../godmode/users/user_list.php:745 ../../godmode/extensions.php:257
-#: ../../enterprise/godmode/agentes/agent_autoconfiguration.php:174
-#: ../../enterprise/godmode/agentes/plugins_manager.php:195
-#: ../../enterprise/godmode/agentes/plugins_manager.php:262
-#: ../../enterprise/godmode/policies/policy_alerts.php:722
-#: ../../enterprise/include/lib/Metaconsole/Node.php:1165
-#: ../../enterprise/include/lib/Metaconsole/Node.php:1166
-#: ../../enterprise/include/functions_HA_cluster.php:61
-msgid "Enable"
-msgstr "Activar"
-
-#: ../../operation/users/user_edit_notifications.php:65
-msgid "Also receive an email"
-msgstr "Recibir también un correo electrónico"
-
-#: ../../operation/users/user_edit_notifications.php:94
-msgid "Controls have been disabled by the system administrator"
-msgstr "Los controles han sido deshabilitados por el administrador del sistema"
-
-#: ../../operation/users/user_edit.php:31
-#: ../../godmode/users/configure_user.php:244
-msgid "User detail editor"
-msgstr "Editor de detalles de usuario"
-
-#: ../../operation/users/user_edit.php:153
-msgid "Current password of user is required to perform password change"
-msgstr "Se requiere la contraseña actual del usuario para cambiar la contraseña"
-
-#: ../../operation/users/user_edit.php:155
-msgid "Current password of user is not correct"
-msgstr "La contraseña actual del usuario no es correcta"
-
-#: ../../operation/users/user_edit.php:159
-msgid ""
-"Passwords didn't match or other problem encountered while updating passwords"
-msgstr ""
-"Las contraseñas no coincidían o se encontró otro problema al actualizar las "
-"contraseñas."
-
-#: ../../operation/users/user_edit.php:172
-#: ../../operation/users/user_edit.php:187
-msgid "Password successfully updated"
-msgstr "Contraseña actualizada correctamente"
-
-#: ../../operation/users/user_edit.php:182
-#: ../../operation/users/user_edit.php:230
-msgid "Error updating user info"
-msgstr "Error al actualizar la información del usuario"
-
-#: ../../operation/users/user_edit.php:184
-#: ../../operation/users/user_edit.php:229
-#: ../../godmode/users/configure_user.php:643
-#: ../../godmode/users/configure_user.php:667
-#: ../../godmode/users/configure_user.php:737
-#: ../../godmode/users/configure_user.php:744
-#: ../../godmode/users/configure_user.php:776
-msgid "User info successfully updated"
-msgstr "Información del usuario actualizada correctamente"
-
-#: ../../operation/users/user_edit.php:189
-msgid "Skin successfully updated"
-msgstr "Skin actualizado correctamente"
-
-#: ../../operation/users/user_edit.php:192
-#: ../../enterprise/godmode/reporting/mysql_builder.php:214
-msgid "No changes have been made"
-msgstr "No se han hecho cambios"
-
-#: ../../operation/users/user_edit.php:203
-msgid "Please enter a valid email"
-msgstr "Añada una dirección de correo electrónico válida"
-
-#: ../../operation/users/user_edit.php:205
-msgid "Please enter a valid phone number"
-msgstr "Añada un número de teléfono valido"
-
-#: ../../operation/users/user_edit.php:211
-msgid "Error updating passwords: "
-msgstr "Error al actualizar contraseñas: "
-
-#: ../../operation/users/user_edit.php:235
-msgid "Edit my User"
-msgstr "Editar mi usuario"
-
-#: ../../operation/users/user_edit.php:244
-#: ../../godmode/category/category.php:101
-#: ../../godmode/massive/massive_operations.php:410
-#: ../../godmode/massive/massive_add_profiles.php:45
-#: ../../godmode/massive/massive_delete_profiles.php:45
-#: ../../godmode/setup/os.list.php:49
-#: ../../godmode/agentes/modificar_agente.php:117
-#: ../../godmode/groups/modu_group_list.php:85
-#: ../../godmode/groups/group_list.php:396
-#: ../../godmode/alerts/configure_alert_command.php:189
-#: ../../godmode/alerts/configure_alert_template.php:412
-#: ../../godmode/alerts/alert_commands.php:636
-#: ../../godmode/alerts/alert_templates.php:261
-#: ../../godmode/alerts/alert_actions.php:215
-#: ../../godmode/alerts/configure_alert_action.php:113
-#: ../../godmode/users/profile_list.php:108 ../../godmode/users/user_list.php:425
-#: ../../godmode/modules/manage_network_components.php:306
-#: ../../godmode/modules/manage_nc_groups.php:286 ../../godmode/tag/tag.php:188
-#: ../../godmode/servers/plugin_registration.php:79
-#: ../../enterprise/operation/agentes/policy_view.php:51
-#: ../../enterprise/godmode/massive/massive_edit_tags_policy.php:33
-#: ../../enterprise/godmode/massive/massive_add_alerts_policy.php:31
-#: ../../enterprise/godmode/massive/massive_tags_edit_policy.php:33
-#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:31
-#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:31
-#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:33
-#: ../../enterprise/godmode/agentes/collections.editor.php:112
-#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:316
-#: ../../enterprise/godmode/agentes/agent_autoconfiguration.php:122
-#: ../../enterprise/godmode/agentes/collections.php:95
-#: ../../enterprise/godmode/agentes/collections.data.php:398
-#: ../../enterprise/godmode/policies/policies.php:261
-#: ../../enterprise/godmode/policies/policy_external_alerts.php:302
-#: ../../enterprise/godmode/policies/policy_modules.php:469
-#: ../../enterprise/godmode/policies/policy_collections.php:43
-#: ../../enterprise/godmode/policies/policy_inventory_modules.php:84
-#: ../../enterprise/godmode/policies/policy_linking.php:110
-#: ../../enterprise/godmode/policies/policy_plugins.php:31
-#: ../../enterprise/godmode/policies/configure_policy.php:74
-#: ../../enterprise/godmode/policies/policy_agents.php:319
-#: ../../enterprise/godmode/policies/policy_alerts.php:57
-#: ../../enterprise/godmode/policies/policy_queue.php:211
-#: ../../enterprise/godmode/modules/local_components.php:256
-#: ../../enterprise/godmode/modules/manage_inventory_modules.php:56
-#: ../../enterprise/include/lib/Policy/Queue.php:162
-#: ../../enterprise/include/lib/Policy/Queue.php:163
-#: ../../enterprise/include/lib/Policy/Queue.php:406
-#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:206
-#: ../../enterprise/extensions/csv_import_group.php:43
-#: ../../extensions/resource_registration.php:1107
-#: ../../views/calendar/list.php:57 ../../views/calendar/special_days_edit.php:58
-#: ../../views/calendar/edit.php:58 ../../views/calendar/special_days.php:59
-msgid "metaconsole"
-msgstr "metaconsola"
-
-#: ../../operation/users/user_edit.php:246
-#: ../../godmode/category/category.php:103
-#: ../../godmode/massive/massive_operations.php:412
-#: ../../godmode/massive/massive_add_profiles.php:47
-#: ../../godmode/massive/massive_delete_profiles.php:47
-#: ../../godmode/setup/os.list.php:51
-#: ../../godmode/agentes/modificar_agente.php:119
-#: ../../godmode/groups/modu_group_list.php:87
-#: ../../godmode/groups/group_list.php:398
-#: ../../godmode/alerts/configure_alert_command.php:191
-#: ../../godmode/alerts/configure_alert_template.php:414
-#: ../../godmode/alerts/alert_commands.php:638
-#: ../../godmode/alerts/alert_templates.php:263
-#: ../../godmode/alerts/alert_actions.php:217
-#: ../../godmode/alerts/configure_alert_action.php:115
-#: ../../godmode/users/profile_list.php:110 ../../godmode/users/user_list.php:427
-#: ../../godmode/modules/manage_network_components.php:308
-#: ../../godmode/modules/manage_nc_groups.php:288 ../../godmode/tag/tag.php:190
-#: ../../enterprise/operation/agentes/policy_view.php:53
-#: ../../enterprise/godmode/massive/massive_edit_tags_policy.php:35
-#: ../../enterprise/godmode/massive/massive_add_alerts_policy.php:33
-#: ../../enterprise/godmode/massive/massive_tags_edit_policy.php:35
-#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:33
-#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:33
-#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:35
-#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:318
-#: ../../enterprise/godmode/agentes/agent_autoconfiguration.php:124
-#: ../../enterprise/godmode/policies/policies.php:263
-#: ../../enterprise/godmode/policies/policy_external_alerts.php:304
-#: ../../enterprise/godmode/policies/policy_modules.php:471
-#: ../../enterprise/godmode/policies/policy_collections.php:45
-#: ../../enterprise/godmode/policies/policy_inventory_modules.php:86
-#: ../../enterprise/godmode/policies/policy_linking.php:112
-#: ../../enterprise/godmode/policies/policy_plugins.php:33
-#: ../../enterprise/godmode/policies/configure_policy.php:76
-#: ../../enterprise/godmode/policies/policy_agents.php:321
-#: ../../enterprise/godmode/policies/policy_alerts.php:59
-#: ../../enterprise/godmode/policies/policy_queue.php:213
-#: ../../enterprise/godmode/modules/local_components.php:258
-#: ../../enterprise/godmode/modules/manage_inventory_modules.php:58
-#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:208
-#: ../../enterprise/extensions/csv_import_group.php:45
-#: ../../extensions/resource_registration.php:1109
-#: ../../views/calendar/list.php:60 ../../views/calendar/special_days_edit.php:61
-#: ../../views/calendar/edit.php:61 ../../views/calendar/special_days.php:62
-msgid "any node"
-msgstr "cualquier nodo"
-
-#: ../../operation/users/user_edit.php:251 ../../godmode/users/user_list.php:432
-#, php-format
-msgid ""
-"This node is configured with centralized mode. All users information is read "
-"only. Go to %s to manage it."
-msgstr ""
-"Este nodo esta configurado con el modo centralizado. Toda la información de "
-"las políticas está en modo lectura. Vaya a%s para administrarlo."
-
-#: ../../operation/users/user_edit.php:272
-#: ../../godmode/users/configure_user.php:899
-msgid "Full (display) name"
-msgstr "Nombre completo"
-
-#: ../../operation/users/user_edit.php:292
-#: ../../godmode/users/configure_user.php:1021
-msgid "E-mail"
-msgstr "Correo electrónico"
-
-#: ../../operation/users/user_edit.php:294
-#: ../../godmode/users/configure_user.php:1037
-msgid "Phone number"
-msgstr "Número de teléfono"
-
-#: ../../operation/users/user_edit.php:298
-#: ../../enterprise/include/process_reset_pass.php:103
-#: ../../enterprise/meta/include/process_reset_pass.php:96
-msgid "New Password"
-msgstr "Contraseña nueva"
-
-#: ../../operation/users/user_edit.php:299
-#: ../../godmode/users/configure_user.php:950
-msgid "Password confirmation"
-msgstr "Confirmar contraseña"
-
-#: ../../operation/users/user_edit.php:300
-msgid "Current password"
-msgstr "Contraseña actual"
-
-#: ../../operation/users/user_edit.php:302
-msgid "You cannot change your password under the current authentication scheme"
-msgstr ""
-"No puede cambiar la contraseña con la configuración actual de autenticación"
-
-#: ../../operation/users/user_edit.php:317
-msgid "If checkbox is clicked then block size global configuration is used"
-msgstr ""
-"Si se marca la casilla, se usará el tamaño de bloque de la configuración "
-"global."
-
-#: ../../operation/users/user_edit.php:325
-#: ../../godmode/users/configure_user.php:904
-#: ../../enterprise/meta/advanced/metasetup.translate_string.php:174
-#: ../../enterprise/extensions/translate_string.php:302
-msgid "Language"
-msgstr "Idioma"
-
-#: ../../operation/users/user_edit.php:354
-#: ../../godmode/users/configure_user.php:1103
-msgid "Home screen"
-msgstr "Pantalla de inicio"
-
-#: ../../operation/users/user_edit.php:354
-#: ../../godmode/users/configure_user.php:1104
-msgid ""
-"User can customize the home page. By default, will display 'Agent Detail'. "
-"Example: Select 'Other' and type index.php?sec=estado&sec2=operation/agentes/"
-"ver_agente&id_agente=1 to show agent detail view"
-msgstr ""
-"El usuario puede personalizar la página de inicio. Mostrará \"Detalle de agente"
-"\" por defecto. Ejemplo: seleccionar \"otro\" y escribir index.php?"
-"sec=estado&sec2=operation/agentes/ver_agente&id_agente=1 para mostrar la vista "
-"de detalle de agente"
-
-#: ../../operation/users/user_edit.php:358 ../../operation/events/events.php:837
-#: ../../godmode/users/configure_user.php:1111 ../../godmode/events/events.php:41
-msgid "Event list"
-msgstr "Lista de eventos"
-
-#: ../../operation/users/user_edit.php:401
-#: ../../operation/users/user_edit.php:410
-#: ../../godmode/users/configure_user.php:1072
-msgid "Skin"
-msgstr "Apariencia"
-
-#: ../../operation/users/user_edit.php:411
-msgid "This change will only apply to nodes"
-msgstr "Este cambio solo se aplicará a los nodos"
-
-#: ../../operation/users/user_edit.php:419
-#: ../../godmode/users/configure_user.php:916
-msgid "Timezone"
-msgstr "Zona horaria"
-
-#: ../../operation/users/user_edit.php:419
-#: ../../godmode/users/configure_user.php:917
-msgid "The timezone must be that of the associated server."
-msgstr "La zona horaria debe ser la del servidor asociado."
-
-#: ../../operation/users/user_edit.php:426 ../../godmode/setup/setup_auth.php:223
-#: ../../godmode/users/configure_user.php:1332
-#: ../../enterprise/meta/include/functions_meta.php:582
-#: ../../enterprise/meta/include/functions_meta.php:884
-#: ../../include/functions_config.php:740
-msgid "Double authentication"
-msgstr "Doble autentificación"
-
-#: ../../operation/users/user_edit.php:440
-#: ../../godmode/users/configure_user.php:1350
-msgid "Show information"
-msgstr "Mostrar información"
-
-#: ../../operation/users/user_edit.php:448
-msgid "Event filter"
-msgstr "Filtro de eventos"
-
-#: ../../operation/users/user_edit.php:519
-msgid "Autorefresh"
-msgstr "Actualización automática"
-
-#: ../../operation/users/user_edit.php:520
-msgid "This will activate autorefresh in selected pages"
-msgstr "Esto activará la actualización automática en las páginas seleccionadas."
-
-#: ../../operation/users/user_edit.php:555
-msgid "Full list of pages"
-msgstr "Lista completa de páginas"
-
-#: ../../operation/users/user_edit.php:564
-#: ../../operation/users/user_edit.php:565
-msgid "Push selected pages into autorefresh list"
-msgstr "Añadir las páginas seleccionadas a la lista de actualización automática"
-
-#: ../../operation/users/user_edit.php:573
-#: ../../operation/users/user_edit.php:574
-msgid "Pop selected pages out of autorefresh list"
-msgstr "Quitar las páginas seleccionadas de la lista de actualización automática"
-
-#: ../../operation/users/user_edit.php:579
-msgid "List of pages with autorefresh"
-msgstr "Lista de páginas con actualización automática"
-
-#: ../../operation/users/user_edit.php:588
-msgid "Time autorefresh"
-msgstr "Tiempo de actualización automática"
-
-#: ../../operation/users/user_edit.php:590
-msgid ""
-"Interval of autorefresh of the elements, by default they are 30 seconds, "
-"needing to enable the autorefresh first"
-msgstr ""
-"Intervalo de auto refresco de los elementos, 30 segundos por defecto, pero "
-"debe habilitar primero el auto refresco."
-
-#: ../../operation/users/user_edit.php:606
-#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:317
-#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:410
-#: ../../godmode/users/configure_user.php:1042
-#: ../../enterprise/tools/ipam/ipam_network.php:403
-#: ../../enterprise/tools/ipam/ipam_network.php:672
-#: ../../enterprise/tools/ipam/ipam_ajax.php:293
-#: ../../enterprise/tools/ipam/ipam_ajax.php:479
-#: ../../enterprise/tools/ipam/ipam_massive.php:83
-#: ../../enterprise/include/functions_reporting.php:2317
-#: ../../enterprise/include/functions_ipam.php:2036
-#: ../../enterprise/include/functions_reporting_csv.php:1935
-#: ../../general/logon_ok.php:251 ../../include/functions.php:3045
-#: ../../include/functions_reporting_html.php:5679
-#: ../../include/class/AuditLog.class.php:112 ../../include/ajax/events.php:1517
-#: ../../mobile/operation/events.php:561
-msgid "Comments"
-msgstr "Comentarios"
-
-#: ../../operation/users/user_edit.php:685
-msgid "eHorus user configuration"
-msgstr "Configuración de usuario eHorus"
-
-#: ../../operation/users/user_edit.php:690
-msgid "eHorus user acces enabled"
-msgstr "Acceso de usuario eHorus habilitado"
-
-#: ../../operation/users/user_edit.php:702
-#: ../../operation/users/user_edit.php:748
-#: ../../godmode/massive/massive_edit_modules.php:908
-#: ../../godmode/setup/setup_integria.php:289
-#: ../../godmode/setup/setup_ehorus.php:86
-#: ../../godmode/agentes/module_manager_editor_wmi.php:116
-#: ../../godmode/users/configure_user.php:934
-#: ../../godmode/modules/manage_network_components_form_wmi.php:49
-#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:851
-#: ../../enterprise/godmode/setup/setup_auth.php:1045
-#: ../../enterprise/godmode/setup/setup_auth.php:1077
-#: ../../enterprise/godmode/setup/setup_module_library.php:52
-#: ../../enterprise/godmode/servers/manage_credential_boxes.php:59
-#: ../../enterprise/godmode/servers/manage_export_form.php:117
-#: ../../enterprise/godmode/servers/credential_boxes_satellite.php:250
-#: ../../enterprise/include/functions_ui.php:104
-#: ../../enterprise/include/functions_setup.php:55
-#: ../../enterprise/include/functions_setup.php:113
-#: ../../enterprise/include/class/MySQL.app.php:535
-#: ../../enterprise/include/class/VMware.app.php:732
-#: ../../enterprise/include/class/DB2.app.php:513
-#: ../../enterprise/include/class/Oracle.app.php:520
-#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:514
-#: ../../enterprise/include/ajax/servers.ajax.php:101
-#: ../../enterprise/include/ajax/servers.ajax.php:159
-#: ../../enterprise/include/ajax/servers.ajax.php:285
-#: ../../enterprise/meta/general/login_page.php:139
-#: ../../enterprise/meta/general/login_page.php:181
-#: ../../enterprise/meta/include/functions_wizard_meta.php:520
-#: ../../enterprise/meta/include/functions_wizard_meta.php:1469
-#: ../../enterprise/meta/include/functions_meta.php:1177
-#: ../../enterprise/meta/include/functions_meta.php:1231
-#: ../../enterprise/meta/include/functions_meta.php:1285
-#: ../../general/login_page.php:244 ../../general/login_page.php:285
-#: ../../include/functions_config.php:676 ../../include/functions_config.php:696
-#: ../../include/class/CredentialStore.class.php:958
-#: ../../include/class/CredentialStore.class.php:995
-#: ../../include/class/CredentialStore.class.php:1135
-#: ../../include/class/CredentialStore.class.php:1158
-#: ../../include/class/AgentWizard.class.php:672
-#: ../../extensions/api_checker.php:143 ../../mobile/include/user.class.php:380
-msgid "Password"
-msgstr "Contraseña"
-
-#: ../../operation/users/user_edit.php:711
-#: ../../operation/users/user_edit.php:757
-#: ../../godmode/setup/setup_integria.php:566
-#: ../../godmode/setup/setup_ehorus.php:111
-#: ../../enterprise/include/lib/NetworkManager.php:82
-msgid "Test"
-msgstr "Probar"
-
-#: ../../operation/users/user_edit.php:712
-#: ../../operation/users/user_edit.php:758
-#: ../../godmode/setup/setup_integria.php:567
-#: ../../godmode/setup/setup_ehorus.php:112 ../../godmode/menu.php:31
-#: ../../enterprise/operation/agentes/transactional_map.php:398
-msgid "Start"
-msgstr "Inicio"
-
-#: ../../operation/users/user_edit.php:737
-msgid "Integria user configuration"
-msgstr "Configuración de usuario de Integria"
-
-#: ../../operation/users/user_edit.php:774
-msgid "You can not change your user info under the current authentication scheme"
-msgstr ""
-"No puede cambiar la información de usuario con la configuración actual de "
-"autenticación"
-
-#: ../../operation/users/user_edit.php:787
-#: ../../operation/users/user_edit.php:796
-#: ../../include/functions_profile.php:188
-msgid "Profiles/Groups assigned to this user"
-msgstr "Perfiles/Grupos asignados a este usuario"
-
-#: ../../operation/users/user_edit.php:813
-#: ../../godmode/massive/massive_add_profiles.php:202
-#: ../../godmode/massive/massive_delete_profiles.php:151
-#: ../../godmode/users/configure_profile.php:265
-#: ../../enterprise/godmode/setup/setup_acl.php:591
-#: ../../include/functions_profile.php:213
-msgid "Profile name"
-msgstr "Nombre del perfil"
-
-#: ../../operation/users/user_edit.php:851
-msgid "This user doesn't have any assigned profile/group."
-msgstr "Este usuario no tiene asignado ningún perfil/grupo"
-
-#: ../../operation/users/user_edit.php:1061
-#: ../../operation/users/user_edit.php:1127
-#: ../../operation/users/user_edit.php:1198
-#: ../../godmode/users/configure_user.php:1822
-#: ../../godmode/users/configure_user.php:1892
-#: ../../godmode/users/configure_user.php:1964
-#: ../../enterprise/include/functions_login.php:485
-#: ../../general/register.php:154 ../../general/logon_failed.php:18
-#: ../../include/ajax/double_auth.ajax.php:252
-#: ../../include/ajax/double_auth.ajax.php:350
-#: ../../include/ajax/double_auth.ajax.php:396
-#: ../../include/ajax/double_auth.ajax.php:512
-msgid "Authentication error"
-msgstr "Error de autentificación"
-
-#: ../../operation/users/user_edit.php:1064
-#: ../../operation/users/user_edit.php:1130
-#: ../../godmode/massive/massive_edit_plugins.php:856
-#: ../../godmode/massive/massive_edit_plugins.php:857
-#: ../../godmode/users/configure_user.php:1825
-#: ../../godmode/users/configure_user.php:1895
-#: ../../enterprise/godmode/services/services.elements.php:841
-#: ../../enterprise/godmode/services/services.elements.php:852
-#: ../../enterprise/include/class/CommandCenter.class.php:473
-#: ../../enterprise/include/lib/Metaconsole/Node.php:593
-#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:4052
-#: ../../enterprise/include/functions_login.php:104
-#: ../../enterprise/include/functions_login.php:488
-#: ../../enterprise/meta/include/functions_ui_meta.php:970
-#: ../../general/register.php:157 ../../include/functions.php:1236
-#: ../../include/functions_ui.php:290 ../../include/functions_events.php:2930
-#: ../../include/functions_events.php:3285
-#: ../../include/class/Diagnostics.class.php:1827
-#: ../../include/ajax/double_auth.ajax.php:255
-#: ../../include/ajax/double_auth.ajax.php:353
-#: ../../include/ajax/double_auth.ajax.php:399
-#: ../../include/ajax/double_auth.ajax.php:516
-#: ../../mobile/operation/visualmap.php:182
-msgid "Error"
-msgstr "Error"
-
-#: ../../operation/users/user_edit.php:1068
-#: ../../operation/users/user_edit.php:1134
-#: ../../godmode/users/configure_user.php:1829
-#: ../../godmode/users/configure_user.php:1899
-#: ../../enterprise/include/functions_login.php:492
-#: ../../general/register.php:161 ../../include/ajax/double_auth.ajax.php:259
-#: ../../include/ajax/double_auth.ajax.php:357
-#: ../../include/ajax/double_auth.ajax.php:403
-#: ../../include/ajax/double_auth.ajax.php:520
-msgid "There was an error loading the data"
-msgstr "Error al cargar los datos"
-
-#: ../../operation/users/user_edit.php:1079
-#: ../../godmode/users/configure_user.php:1840
-msgid "Double autentication information"
-msgstr "Información sobre la doble autentificación"
-
-#: ../../operation/users/user_edit.php:1142
-#: ../../operation/users/user_edit.php:1218
-#: ../../godmode/users/configure_user.php:1907
-#: ../../godmode/users/configure_user.php:1985
-#: ../../enterprise/include/functions_login.php:501
-#: ../../general/register.php:170
-msgid "Double autentication activation"
-msgstr "Activación de la doble autentificación"
-
-#: ../../operation/users/user_edit.php:1168
-#: ../../godmode/users/configure_user.php:1930
-msgid "The double authentication will be deactivated"
-msgstr "La doble autentificación se desactivará"
-
-#: ../../operation/users/user_edit.php:1169
-#: ../../godmode/users/configure_user.php:1931
-msgid "Deactivate"
-msgstr "Desactivado"
-
-#: ../../operation/users/user_edit.php:1201
-#: ../../godmode/users/configure_user.php:1967
-msgid "The double autentication was deactivated successfully"
-msgstr "La doble autentificación fue desactivada correctamente"
-
-#: ../../operation/users/user_edit.php:1204
-#: ../../operation/users/user_edit.php:1208
-#: ../../godmode/users/configure_user.php:1971
-#: ../../godmode/users/configure_user.php:1975
-msgid "There was an error deactivating the double autentication"
-msgstr "Error al desactivar la doble autentificación"
-
-#: ../../operation/users/user_edit.php:1243
-#: ../../operation/users/user_edit.php:1321
-#: ../../godmode/setup/setup_integria.php:720
-#: ../../godmode/setup/setup_integria.php:801
-#: ../../godmode/setup/setup_ehorus.php:255
-msgid "Empty user or password"
-msgstr "Usuario o contraseña vacío"
-
-#: ../../operation/users/user_edit.php:1244
-#: ../../operation/users/user_edit.php:1322
-#: ../../godmode/setup/setup_integria.php:721
-#: ../../godmode/setup/setup_integria.php:802
-#: ../../godmode/setup/setup_ehorus.php:256
-msgid "User not found"
-msgstr "Usuario no encontrado"
-
-#: ../../operation/users/user_edit.php:1245
-#: ../../operation/users/user_edit.php:1323
-#: ../../godmode/setup/setup_integria.php:722
-#: ../../godmode/setup/setup_integria.php:803
-#: ../../godmode/setup/setup_ehorus.php:257
-msgid "Invalid password"
-msgstr "Contraseña incorrecta"
-
-#: ../../operation/users/user_edit_header.php:91
-#: ../../godmode/users/profile_list.php:63
-#: ../../godmode/users/profile_list.php:84
-#: ../../godmode/users/configure_user.php:223
-#: ../../godmode/users/configure_profile.php:55
-#: ../../godmode/users/configure_profile.php:76
-#: ../../godmode/users/user_list.php:214 ../../godmode/users/user_list.php:239
-#: ../../godmode/users/user_list.php:250
-#: ../../enterprise/meta/general/main_header.php:321
-#: ../../enterprise/meta/general/main_header.php:401
-#: ../../enterprise/meta/general/main_header.php:408
-#: ../../enterprise/meta/general/main_menu.php:458
-#: ../../enterprise/meta/general/main_menu.php:518
-#: ../../enterprise/meta/general/main_menu.php:525
-#: ../../enterprise/meta/include/functions_users_meta.php:182
-#: ../../enterprise/meta/include/functions_users_meta.php:204
-msgid "User management"
-msgstr "Gestión de usuarios"
-
-#: ../../operation/users/user_edit_header.php:131
-msgid "Edit user"
-msgstr "Editar usuario"
-
-#: ../../operation/tree.php:102 ../../godmode/menu.php:90
-#: ../../include/lib/Dashboard/Widgets/tree_view.php:330
-#: ../../extensions/module_groups.php:422
-msgid "Module groups"
-msgstr "Grupos de módulos"
-
-#: ../../operation/tree.php:139
-#, php-format
-msgid "Sort the agents by %s"
-msgstr "Ordenar los agentes por %s"
-
-#: ../../operation/tree.php:142
-msgid "tags"
-msgstr "Etiquetas"
-
-#: ../../operation/tree.php:150
-msgid "groups"
-msgstr "Grupos"
-
-#: ../../operation/tree.php:154
-msgid "module groups"
-msgstr "Grupos de módulos"
-
-#: ../../operation/tree.php:158 ../../godmode/setup/license.php:136
-#: ../../godmode/setup/license.php:139 ../../godmode/setup/license.php:142
-#: ../../godmode/setup/license.php:145
-msgid "modules"
-msgstr "módulos"
-
-#: ../../operation/tree.php:163
-msgid "policies"
-msgstr "Políticas"
-
-#: ../../operation/tree.php:219
-msgid "Search group"
-msgstr "Buscar grupo"
-
-#: ../../operation/tree.php:223 ../../operation/tree.php:279
-msgid "Show not init modules"
-msgstr "Mostrar módulos no iniciados"
-
-#: ../../operation/tree.php:232
-msgid "Search agent"
-msgstr "Buscar agente"
-
-#: ../../operation/tree.php:235
-msgid "Show not init agents"
-msgstr "Mostrar agentes no iniciados"
-
-#: ../../operation/tree.php:243
-msgid "Show full hirearchy"
-msgstr "Mostrar jerarquía completa"
-
-#: ../../operation/tree.php:246
-#: ../../enterprise/godmode/servers/HA_cluster.php:163
-#: ../../enterprise/include/functions_reporting_csv.php:2348
-msgid "Agent status"
-msgstr "Estado de agente"
-
-#: ../../operation/tree.php:254
-msgid "Show only disabled"
-msgstr "Mostrar solo deshabilitados"
-
-#: ../../operation/tree.php:276
-msgid "Search module"
-msgstr "Buscar módulo"
-
-#: ../../operation/tree.php:285
-#: ../../enterprise/meta/include/functions_events_meta.php:138
-#: ../../include/functions_events.php:211 ../../include/functions_events.php:6782
-#: ../../include/functions_reporting_html.php:4899
-#: ../../include/lib/Dashboard/Widgets/module_status.php:173
-#: ../../include/lib/Dashboard/Widgets/module_status.php:538
-msgid "Module status"
-msgstr "Estado del módulo"
-
-#: ../../operation/tree.php:308
-msgid "Tree search"
-msgstr "Búsqueda de árbol"
-
-#: ../../operation/tree.php:420 ../../enterprise/meta/agentsearch.php:315
-#: ../../include/lib/Dashboard/Widgets/tree_view.php:601
-msgid "Policies found"
-msgstr "Políticas encontradas"
-
-#: ../../operation/tree.php:423
-#: ../../include/lib/Dashboard/Widgets/tree_view.php:605
-msgid "Operating systems found"
-msgstr "Sistemas operativos encontrados"
-
-#: ../../operation/tree.php:426
-#: ../../include/lib/Dashboard/Widgets/tree_view.php:609
-msgid "Tags found"
-msgstr "Etiquetas encontradas"
-
-#: ../../operation/tree.php:429
-#: ../../include/lib/Dashboard/Widgets/tree_view.php:613
-msgid "Module Groups found"
-msgstr "Grupos de módulos encontrados"
-
-#: ../../operation/tree.php:436
-#: ../../include/lib/Dashboard/Widgets/tree_view.php:622
-msgid "Groups found"
-msgstr "Grupos encontrados"
-
-#: ../../operation/tree.php:454 ../../godmode/groups/group_list.php:1042
-#: ../../godmode/db/db_main.php:102
-#: ../../enterprise/operation/services/services.treeview_services.php:254
-#: ../../enterprise/include/functions_reporting_csv.php:983
-#: ../../include/functions_reporting.php:11490
-#: ../../include/functions_reporting_html.php:5560
-#: ../../include/class/Diagnostics.class.php:549
-#: ../../include/lib/Dashboard/Widgets/tree_view.php:648
-#: ../../mobile/operation/groups.php:147
-msgid "Total agents"
-msgstr "Agentes totales"
-
-#: ../../operation/tree.php:455 ../../godmode/groups/group_list.php:1043
-#: ../../godmode/module_library/module_library_view.php:159
-#: ../../enterprise/operation/services/services.treeview_services.php:255
-#: ../../enterprise/include/functions_reporting_csv.php:983
-#: ../../include/class/Diagnostics.class.php:553
-#: ../../include/lib/Dashboard/Widgets/tree_view.php:649
-msgid "Total modules"
-msgstr "Módulos totales"
-
-#: ../../operation/tree.php:459 ../../operation/tree.php:460
-#: ../../operation/tree.php:461 ../../godmode/groups/group_list.php:1047
-#: ../../godmode/groups/group_list.php:1048
-#: ../../godmode/groups/group_list.php:1049
-#: ../../enterprise/operation/services/services.treeview_services.php:259
-#: ../../enterprise/operation/services/services.treeview_services.php:260
-#: ../../enterprise/operation/services/services.treeview_services.php:261
-#: ../../enterprise/include/functions_reporting_csv.php:983
-#: ../../include/functions_reporting.php:11351
-#: ../../include/functions_reporting.php:11374
-#: ../../include/functions_graph.php:2631
-#: ../../include/lib/Dashboard/Widgets/tree_view.php:653
-#: ../../include/lib/Dashboard/Widgets/tree_view.php:654
-#: ../../include/lib/Dashboard/Widgets/tree_view.php:655
-msgid "Fired alerts"
-msgstr "Alertas disparadas"
-
-#: ../../operation/tree.php:464 ../../godmode/groups/group_list.php:1052
-#: ../../enterprise/operation/services/services.treeview_services.php:264
-#: ../../enterprise/meta/monitoring/custom_fields_view.php:533
-#: ../../include/lib/Dashboard/Widgets/tree_view.php:658
-msgid "Critical agents"
-msgstr "Agentes críticos"
-
-#: ../../operation/tree.php:465 ../../godmode/groups/group_list.php:1053
-#: ../../enterprise/operation/services/services.treeview_services.php:265
-#: ../../enterprise/include/functions_reporting_csv.php:983
-#: ../../enterprise/meta/monitoring/custom_fields_view.php:602
-#: ../../include/lib/Dashboard/Widgets/tree_view.php:659
-#: ../../mobile/operation/groups.php:171
-msgid "Critical modules"
-msgstr "Módulos críticos"
-
-#: ../../operation/tree.php:469 ../../godmode/groups/group_list.php:1057
-#: ../../enterprise/operation/services/services.treeview_services.php:269
-#: ../../enterprise/meta/monitoring/custom_fields_view.php:543
-#: ../../include/lib/Dashboard/Widgets/tree_view.php:663
-msgid "Warning agents"
-msgstr "Agentes en estado de advertencia"
-
-#: ../../operation/tree.php:470 ../../godmode/groups/group_list.php:1058
-#: ../../enterprise/operation/services/services.treeview_services.php:270
-#: ../../enterprise/include/functions_reporting_csv.php:983
-#: ../../enterprise/meta/monitoring/custom_fields_view.php:613
-#: ../../include/lib/Dashboard/Widgets/tree_view.php:664
-#: ../../mobile/operation/groups.php:168
-msgid "Warning modules"
-msgstr "Módulos de advertencia"
-
-#: ../../operation/tree.php:474 ../../godmode/groups/group_list.php:1062
-#: ../../enterprise/operation/services/services.treeview_services.php:274
-#: ../../enterprise/meta/monitoring/custom_fields_view.php:563
-#: ../../include/lib/Dashboard/Widgets/tree_view.php:668
-msgid "Unknown agents"
-msgstr "Agentes en desconocido"
-
-#: ../../operation/tree.php:475 ../../godmode/groups/group_list.php:1063
-#: ../../enterprise/operation/services/services.treeview_services.php:275
-#: ../../enterprise/include/functions_reporting_csv.php:983
-#: ../../enterprise/meta/monitoring/custom_fields_view.php:635
-#: ../../include/lib/Dashboard/Widgets/tree_view.php:669
-#: ../../mobile/operation/groups.php:159
-msgid "Unknown modules"
-msgstr "Módulos desconocidos"
-
-#: ../../operation/tree.php:479 ../../godmode/groups/group_list.php:1067
-#: ../../enterprise/operation/services/services.treeview_services.php:279
-#: ../../enterprise/meta/monitoring/custom_fields_view.php:573
-#: ../../include/lib/Dashboard/Widgets/tree_view.php:673
-msgid "Not init agents"
-msgstr "Agentes no iniciados"
-
-#: ../../operation/tree.php:480 ../../godmode/groups/group_list.php:1068
-#: ../../enterprise/operation/services/services.treeview_services.php:280
-#: ../../enterprise/include/functions_reporting_csv.php:983
-#: ../../enterprise/meta/monitoring/custom_fields_view.php:646
-#: ../../include/lib/Dashboard/Widgets/tree_view.php:674
-#: ../../mobile/operation/groups.php:162
-msgid "Not init modules"
-msgstr "Módulos no iniciados"
-
-#: ../../operation/tree.php:484 ../../godmode/groups/group_list.php:1072
-#: ../../enterprise/operation/services/services.treeview_services.php:284
-#: ../../enterprise/meta/monitoring/custom_fields_view.php:553
-#: ../../include/lib/Dashboard/Widgets/tree_view.php:678
-msgid "Normal agents"
-msgstr "Agentes en normal"
-
-#: ../../operation/tree.php:485 ../../godmode/groups/group_list.php:1073
-#: ../../enterprise/operation/services/services.treeview_services.php:285
-#: ../../enterprise/include/functions_reporting_csv.php:983
-#: ../../enterprise/meta/monitoring/custom_fields_view.php:624
-#: ../../include/lib/Dashboard/Widgets/tree_view.php:679
-#: ../../mobile/operation/groups.php:165
-msgid "Normal modules"
-msgstr "Módulos normales"
-
-#: ../../operation/events/sound_events.php:86
-msgid "Sound console"
-msgstr "Consola sonora"
-
-#: ../../operation/events/sound_events.php:145
-#: ../../enterprise/meta/monitoring/custom_fields_view.php:452
-#: ../../include/functions_reporting.php:11409
-msgid "Monitor critical"
-msgstr "Monitor crítico"
-
-#: ../../operation/events/sound_events.php:154
-#: ../../enterprise/meta/monitoring/custom_fields_view.php:485
-#: ../../include/functions_reporting.php:11424
-msgid "Monitor unknown"
-msgstr "Monitor en estado desconocido"
-
-#: ../../operation/events/sound_events.php:163
-#: ../../enterprise/meta/monitoring/custom_fields_view.php:463
-#: ../../include/functions_reporting.php:11413
-msgid "Monitor warning"
-msgstr "Monitor en estado de advertencia"
-
-#: ../../operation/events/sound_events.php:186
-msgid "Event"
-msgstr "Evento"
-
-#: ../../operation/events/events.php:625 ../../operation/events/events.php:701
-#: ../../operation/events/events_list.php:613
-#: ../../operation/events/events_list.php:689
-#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:271
-#: ../../godmode/snmpconsole/snmp_alert.php:1445
-#: ../../godmode/reporting/graph_builder.graph_editor.php:352
-#: ../../godmode/reporting/visual_console_builder.wizard.php:531
-#: ../../godmode/setup/news.php:299 ../../godmode/setup/setup_visuals.php:1297
-#: ../../godmode/setup/setup_visuals.php:1352
-#: ../../godmode/setup/setup_visuals.php:1372 ../../godmode/setup/links.php:173
-#: ../../godmode/gis_maps/configure_gis_map.php:631
-#: ../../godmode/agentes/planned_downtime.editor.php:875
-#: ../../godmode/agentes/planned_downtime.editor.php:1049
-#: ../../godmode/alerts/alert_list.list.php:798
-#: ../../godmode/users/configure_profile.php:403
-#: ../../godmode/events/event_edit_filter.php:509
-#: ../../godmode/events/event_edit_filter.php:562
-#: ../../godmode/modules/manage_network_templates_form.php:347
-#: ../../godmode/servers/plugin.php:909
-#: ../../enterprise/operation/agentes/manage_transmap_creation.php:308
-#: ../../enterprise/tools/ipam/ipam_supernet_config.php:1119
-#: ../../enterprise/tools/ipam/ipam_vlan_config.php:830
-#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:254
-#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:833
-#: ../../enterprise/godmode/reporting/reporting_builder.global.php:237
-#: ../../enterprise/godmode/reporting/reporting_builder.global.php:498
-#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:340
-#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:498
-#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:190
-#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:251
-#: ../../enterprise/godmode/massive/massive_edit_tags_policy.php:168
-#: ../../enterprise/godmode/massive/massive_add_alerts_policy.php:138
-#: ../../enterprise/godmode/massive/massive_tags_edit_policy.php:152
-#: ../../enterprise/godmode/setup/setup_acl.php:532
-#: ../../enterprise/godmode/setup/setup_acl.php:558
-#: ../../enterprise/godmode/setup/setup_metaconsole.php:247
-#: ../../enterprise/godmode/setup/setup_metaconsole.php:357
-#: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:230
-#: ../../enterprise/godmode/agentes/inventory_manager.php:185
-#: ../../enterprise/godmode/agentes/plugins_manager.php:163
-#: ../../enterprise/godmode/agentes/collection_manager.php:113
-#: ../../enterprise/godmode/agentes/collection_manager.php:142
-#: ../../enterprise/godmode/policies/policy_external_alerts.php:607
-#: ../../enterprise/godmode/policies/policy_external_alerts.php:703
-#: ../../enterprise/godmode/policies/policy_collections.php:267
-#: ../../enterprise/godmode/policies/policy_inventory_modules.php:263
-#: ../../enterprise/godmode/policies/policy_plugins.php:144
-#: ../../enterprise/godmode/policies/policy_alerts.php:605
-#: ../../enterprise/godmode/policies/policy_alerts.php:670
-#: ../../enterprise/godmode/alerts/alert_inventory_list.php:398
-#: ../../enterprise/godmode/servers/manage_credential_boxes.php:82
-#: ../../enterprise/godmode/servers/manage_export_form.php:138
-#: ../../enterprise/godmode/servers/credential_boxes_satellite.php:298
-#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2240
-#: ../../enterprise/include/ajax/log_viewer.ajax.php:93
-#: ../../enterprise/include/ajax/servers.ajax.php:144
-#: ../../enterprise/include/ajax/servers.ajax.php:177
-#: ../../enterprise/meta/advanced/metasetup.visual.php:411
-#: ../../enterprise/meta/advanced/metasetup.consoles.php:739
-#: ../../enterprise/meta/advanced/links.php:189
-#: ../../enterprise/meta/include/functions_autoprovision.php:703
-#: ../../enterprise/meta/include/functions_wizard_meta.php:1360
-#: ../../include/functions_snmp_browser.php:1558
-#: ../../include/class/ManageNetScanScripts.class.php:471
-#: ../../include/functions_notifications.php:974
-#: ../../extensions/files_repo/files_repo_form.php:105
-msgid "Add"
-msgstr "Añadir"
-
-#: ../../operation/events/events.php:642 ../../operation/events/events.php:716
-#: ../../operation/events/events_list.php:630
-#: ../../operation/events/events_list.php:703
-#: ../../godmode/alerts/configure_alert_template.php:1548
-#: ../../godmode/events/event_edit_filter.php:537
-#: ../../godmode/events/event_edit_filter.php:590
-#: ../../enterprise/godmode/massive/massive_edit_tags_policy.php:177
-#: ../../enterprise/godmode/massive/massive_tags_edit_policy.php:161
-#: ../../enterprise/godmode/agentes/collection_manager.php:210
-#: ../../enterprise/godmode/policies/policy_collections.php:173
-#: ../../enterprise/include/functions_ui.php:120
-#: ../../enterprise/include/functions_ui.php:168
-#: ../../enterprise/include/class/AlertCorrelationManager.class.php:4319
-#: ../../views/calendar/special_days.php:442
-msgid "Remove"
+#: ../../views/dashboard/list.php:103
+#: ../../operation/messages/message_list.php:201
+#: ../../operation/messages/message_list.php:272
+#: ../../operation/messages/message_list.php:275
+#: ../../operation/messages/message_list.php:293
+#: ../../operation/visual_console/view.php:733
+#: ../../operation/gis_maps/gis_map.php:190
+#: ../../operation/snmpconsole/snmp_view.php:1038
+#: ../../operation/snmpconsole/snmp_view.php:1051
+#: ../../operation/snmpconsole/snmp_view.php:1220
+#: ../../operation/snmpconsole/snmp_view.php:1269
+#: ../../operation/agentes/pandora_networkmap.php:714
+#: ../../operation/agentes/pandora_networkmap.php:801
+#: ../../operation/incidents/list_integriaims_incidents.php:555
+#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:120
+#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:198
+#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:251
+#: ../../include/functions_cron.php:895 ../../include/functions_cron.php:923
+#: ../../include/class/ModuleTemplates.class.php:933
+#: ../../include/class/ModuleTemplates.class.php:1211
+#: ../../include/class/ManageNetScanScripts.class.php:405
+#: ../../include/class/ConfigPEN.class.php:264
+#: ../../include/class/CredentialStore.class.php:1102
+#: ../../include/class/CredentialStore.class.php:1290
+#: ../../include/class/CalendarManager.class.php:686
+#: ../../include/class/NetworkMap.class.php:2798
+#: ../../include/functions_container.php:191
+#: ../../include/functions_container.php:325
+#: ../../enterprise/tools/ipam/ipam_vlan_config.php:807
+#: ../../enterprise/tools/ipam/ipam_network_location_config.php:288
+#: ../../enterprise/tools/ipam/ipam_network_location_config.php:304
+#: ../../enterprise/tools/ipam/ipam_ajax.php:136
+#: ../../enterprise/tools/ipam/ipam_supernet_config.php:1297
+#: ../../enterprise/operation/services/services.list.php:655
+#: ../../enterprise/operation/agentes/transactional_map.php:483
+#: ../../enterprise/operation/agentes/manage_transmap_creation.php:269
+#: ../../enterprise/include/ajax/log_viewer.ajax.php:96
+#: ../../enterprise/include/ajax/servers.ajax.php:103
+#: ../../enterprise/include/ajax/transactional.ajax.php:119
+#: ../../enterprise/include/ajax/transactional.ajax.php:208
+#: ../../enterprise/include/class/AgentRepository.class.php:775
+#: ../../enterprise/include/class/AgentRepository.class.php:810
+#: ../../enterprise/include/class/LogSource.class.php:772
+#: ../../enterprise/include/class/LogSource.class.php:894
+#: ../../enterprise/include/class/ManageBackups.class.php:275
+#: ../../enterprise/include/class/Omnishell.class.php:1163
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2397
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3052
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3372
+#: ../../enterprise/include/class/NetworkConfigManager.class.php:644
+#: ../../enterprise/include/class/NetworkConfigManager.class.php:800
+#: ../../enterprise/include/class/NetworkConfigManager.class.php:976
+#: ../../enterprise/include/class/NetworkConfigManager.class.php:1123
+#: ../../enterprise/include/class/NetworkConfigManager.class.php:1331
+#: ../../enterprise/include/class/DeploymentCenter.class.php:1537
+#: ../../enterprise/include/class/DeploymentCenter.class.php:1576
+#: ../../enterprise/include/functions_tasklist.php:615
+#: ../../enterprise/include/functions_tasklist.php:650
+#: ../../enterprise/include/lib/ClusterViewer/ClusterManager.php:634
+#: ../../enterprise/include/lib/Metaconsole/Node.php:1252
+#: ../../enterprise/include/lib/Metaconsole/Node.php:1253
+#: ../../enterprise/meta/include/functions_autoprovision.php:517
+#: ../../enterprise/meta/include/functions_autoprovision.php:518
+#: ../../enterprise/meta/include/functions_autoprovision.php:685
+#: ../../enterprise/meta/include/functions_autoprovision.php:686
+#: ../../enterprise/meta/include/functions_wizard_meta.php:398
+#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:301
+#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:467
+#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:818
+#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:570
+#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:598
+#: ../../enterprise/meta/advanced/policymanager.queue.php:220
+#: ../../enterprise/meta/advanced/policymanager.queue.php:262
+#: ../../enterprise/meta/advanced/policymanager.queue.php:319
+#: ../../enterprise/meta/advanced/metasetup.relations.php:589
+#: ../../enterprise/meta/advanced/metasetup.relations.php:590
+#: ../../enterprise/meta/advanced/metasetup.relations.php:634
+#: ../../enterprise/meta/advanced/servers.build_table.php:133
+#: ../../enterprise/meta/advanced/metasetup.visual.php:434
+#: ../../enterprise/meta/advanced/links.php:157
+#: ../../enterprise/godmode/setup/setup_acl.php:595
+#: ../../enterprise/godmode/servers/credential_boxes_satellite.php:252
+#: ../../enterprise/godmode/servers/credential_boxes_satellite.php:287
+#: ../../enterprise/godmode/modules/local_components.php:698
+#: ../../enterprise/godmode/modules/local_components.php:715
+#: ../../enterprise/godmode/modules/manage_inventory_modules.php:317
+#: ../../enterprise/godmode/modules/manage_inventory_modules.php:332
+#: ../../enterprise/godmode/reporting/visual_console_template.php:273
+#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:389
+#: ../../enterprise/godmode/reporting/mysql_builder.php:97
+#: ../../enterprise/godmode/reporting/mysql_builder.php:104
+#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:215
+#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:225
+#: ../../enterprise/godmode/reporting/graph_template_list.php:246
+#: ../../enterprise/godmode/reporting/reporting_builder.template.php:646
+#: ../../enterprise/godmode/reporting/reporting_builder.template.php:674
+#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:413
+#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:148
+#: ../../enterprise/godmode/massive/massive_delete_services.php:92
+#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:238
+#: ../../enterprise/godmode/agentes/inventory_manager.php:249
+#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:687
+#: ../../enterprise/godmode/agentes/plugins_manager.php:196
+#: ../../enterprise/godmode/agentes/plugins_manager.php:281
+#: ../../enterprise/godmode/policies/policy_agents.php:1083
+#: ../../enterprise/godmode/policies/policy_agents.php:1545
+#: ../../enterprise/godmode/policies/policy_queue.php:611
+#: ../../enterprise/godmode/policies/policy_queue.php:675
+#: ../../enterprise/godmode/policies/policy_queue.php:722
+#: ../../enterprise/godmode/policies/policy_modules.php:1586
+#: ../../enterprise/godmode/policies/policy_modules.php:1618
+#: ../../enterprise/godmode/policies/policies.php:591
+#: ../../enterprise/godmode/policies/policy_external_alerts.php:550
+#: ../../enterprise/godmode/policies/policy_inventory_modules.php:334
+#: ../../enterprise/godmode/policies/policy_alerts.php:539
+#: ../../enterprise/godmode/policies/policy_plugins.php:169
+#: ../../extensions/files_repo/files_repo_list.php:151
+#: ../../godmode/setup/snmp_wizard.php:110
+#: ../../godmode/setup/setup_visuals.php:1320
+#: ../../godmode/setup/setup_visuals.php:1359
+#: ../../godmode/setup/setup_visuals.php:1379 ../../godmode/setup/news.php:251
+#: ../../godmode/setup/gis.php:70 ../../godmode/setup/links.php:146
+#: ../../godmode/servers/servers.build_table.php:259
+#: ../../godmode/modules/manage_network_components.php:868
+#: ../../godmode/modules/manage_network_components.php:869
+#: ../../godmode/modules/manage_network_components.php:898
+#: ../../godmode/modules/manage_network_templates.php:287
+#: ../../godmode/modules/manage_network_templates.php:300
+#: ../../godmode/modules/manage_network_templates_form.php:254
+#: ../../godmode/modules/manage_nc_groups.php:276
+#: ../../godmode/modules/manage_nc_groups.php:305
+#: ../../godmode/extensions.php:257 ../../godmode/extensions.php:259
+#: ../../godmode/reporting/map_builder.php:388
+#: ../../godmode/reporting/map_builder.php:512
+#: ../../godmode/reporting/map_builder.php:523
+#: ../../godmode/reporting/graphs.php:367 ../../godmode/reporting/graphs.php:368
+#: ../../godmode/reporting/graphs.php:394
+#: ../../godmode/reporting/reporting_builder.list_items.php:629
+#: ../../godmode/reporting/reporting_builder.list_items.php:667
+#: ../../godmode/reporting/reporting_builder.list_items.php:690
+#: ../../godmode/reporting/reporting_builder.list_items.php:791
+#: ../../godmode/reporting/create_container.php:630
+#: ../../godmode/reporting/create_container.php:683
+#: ../../godmode/reporting/visual_console_builder.elements.php:763
+#: ../../godmode/reporting/reporting_builder.php:1209
+#: ../../godmode/reporting/reporting_builder.php:1293
+#: ../../godmode/reporting/graph_builder.graph_editor.php:216
+#: ../../godmode/reporting/graph_builder.graph_editor.php:256
+#: ../../godmode/snmpconsole/snmp_alert.php:1276
+#: ../../godmode/snmpconsole/snmp_alert.php:1324
+#: ../../godmode/snmpconsole/snmp_filters.php:301
+#: ../../godmode/snmpconsole/snmp_filters.php:312
+#: ../../godmode/events/event_responses.list.php:71
+#: ../../godmode/events/event_filter.php:192
+#: ../../godmode/events/event_filter.php:211
+#: ../../godmode/netflow/nf_edit.php:196 ../../godmode/netflow/nf_edit.php:208
+#: ../../godmode/netflow/nf_item_list.php:263
+#: ../../godmode/netflow/nf_item_list.php:273
+#: ../../godmode/agentes/module_manager.php:868
+#: ../../godmode/agentes/module_manager.php:1228
+#: ../../godmode/agentes/module_manager_editor_common.php:1307
+#: ../../godmode/agentes/planned_downtime.editor.php:962
+#: ../../godmode/agentes/planned_downtime.editor.php:965
+#: ../../godmode/agentes/planned_downtime.editor.php:1015
+#: ../../godmode/agentes/planned_downtime.list.php:625
+#: ../../godmode/agentes/planned_downtime.list.php:774
+#: ../../godmode/agentes/fields_manager.php:155
+#: ../../godmode/agentes/agent_template.php:259
+#: ../../godmode/alerts/alert_list.list.php:912
+#: ../../godmode/alerts/alert_actions.php:331
+#: ../../godmode/alerts/alert_actions.php:449
+#: ../../godmode/alerts/alert_templates.php:445
+#: ../../godmode/users/user_list.php:825 ../../godmode/users/profile_list.php:443
+#: ../../godmode/groups/modu_group_list.php:254
+#: ../../godmode/groups/group_list.php:937
+#: ../../godmode/groups/group_list.php:938
+msgid "Delete"
 msgstr "Eliminar"
 
-#: ../../operation/events/events.php:801
-msgid "Event viewer"
-msgstr "Visor de eventos"
-
-#: ../../operation/events/events.php:848
-msgid "History event list"
-msgstr "Lista histórica de eventos"
-
-#: ../../operation/events/events.php:859
-msgid "RSS Events"
-msgstr "Eventos RSS"
-
-#: ../../operation/events/events.php:870
-msgid "Export to CSV file"
-msgstr "Exportar a un archivo CSV"
-
-#: ../../operation/events/events.php:881 ../../operation/events/events.php:929
-msgid "Sound events"
-msgstr "Eventos sonoros"
-
-#: ../../operation/events/events.php:894
-#: ../../godmode/users/configure_profile.php:306
-#: ../../godmode/events/events.php:116 ../../godmode/events/events.php:124
-msgid "Manage events"
-msgstr "Gestionar eventos"
-
-#: ../../operation/events/events.php:934
-msgid "History"
-msgstr "Histórico"
-
-#: ../../operation/events/events.php:997
-msgid "Errors"
-msgstr "Errores"
-
-#: ../../operation/events/events.php:1023
-msgid ""
-"Event viewer is disabled due event replication. For more information, please "
-"contact with the administrator"
-msgstr ""
-"El visor de eventos está desactivado debido a la replicación de eventos. Por "
-"favor, contacta con el administrador para obtener más información."
-
-#: ../../operation/events/events.php:1084
-#: ../../operation/events/events_list.php:937
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2844
-#: ../../godmode/events/event_filter.php:138
-#: ../../godmode/events/event_edit_filter.php:317
-#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:629
-#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2843
-#: ../../enterprise/include/functions_events.php:127
-#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1381
-#: ../../enterprise/include/lib/AlertCorrelation.class.php:1083
-#: ../../enterprise/meta/include/functions_events_meta.php:86
-#: ../../include/functions_events.php:198 ../../include/functions_events.php:6715
-#: ../../include/lib/Dashboard/Widgets/events_list.php:321
-msgid "Event type"
-msgstr "Tipo de evento"
-
-#: ../../operation/events/events.php:1098 ../../operation/events/events.php:1670
-#: ../../operation/events/events_list.php:970
-#: ../../godmode/events/event_filter.php:139
-#: ../../godmode/events/event_edit_filter.php:350
-#: ../../enterprise/include/functions_events.php:107
-#: ../../include/lib/Dashboard/Widgets/events_list.php:378
-msgid "Event status"
-msgstr "Estado del evento"
-
-#: ../../operation/events/events.php:1118
-#: ../../operation/events/events_list.php:983
-#: ../../godmode/events/event_edit_filter.php:436
-#: ../../enterprise/godmode/setup/setup.php:161
-msgid "All events"
-msgstr "Todos los eventos"
-
-#: ../../operation/events/events.php:1119 ../../operation/events/events.php:1720
-#: ../../operation/events/events_list.php:984
-#: ../../godmode/events/event_edit_filter.php:437
-msgid "Group events"
-msgstr "Eventos agrupados"
-
-#: ../../operation/events/events.php:1120
-#: ../../operation/events/events_list.php:985
-#: ../../include/ajax/heatmap.ajax.php:78
-msgid "Group agents"
-msgstr "Grupos de agente"
-
-#: ../../operation/events/events.php:1129
-#: ../../operation/events/events_list.php:982
-#: ../../godmode/events/event_edit_filter.php:438
-#: ../../enterprise/include/functions_events.php:198
-#: ../../include/functions_events.php:5038 ../../mobile/operation/events.php:528
-msgid "Repeated"
-msgstr "Repetido"
-
-#: ../../operation/events/events.php:1174
-#: ../../operation/events/events_list.php:376
-#: ../../operation/events/events_list.php:493
-#: ../../operation/events/events_list.php:1050
-#: ../../enterprise/meta/monitoring/custom_fields_view.php:222
-#: ../../enterprise/meta/monitoring/custom_fields_view.php:228
-#: ../../enterprise/meta/monitoring/custom_fields_view.php:229
-#: ../../include/ajax/events.php:759
-msgid "Save filter"
-msgstr "Guardar filtro"
-
-#: ../../operation/events/events.php:1195
-#: ../../operation/events/events_list.php:1001
-#: ../../operation/events/events.build_table.php:303
-#: ../../godmode/events/event_edit_filter.php:630
-#: ../../include/functions_events.php:6758
-msgid "Extra ID"
-msgstr "ID extra"
-
-#: ../../operation/events/events.php:1208
-#: ../../operation/events/events_list.php:1003
-#: ../../operation/events/events.build_table.php:273
-#: ../../operation/events/events.build_table.php:709
-#: ../../godmode/events/custom_events.php:107
-#: ../../godmode/events/event_edit_filter.php:633
-#: ../../godmode/wizards/HostDevices.class.php:958
-#: ../../enterprise/meta/include/functions_events_meta.php:102
-#: ../../include/functions_events.php:202 ../../include/functions_events.php:269
-#: ../../include/functions_events.php:3754
-#: ../../include/functions_events.php:6740
-#: ../../include/functions_events.php:7126
-#: ../../include/class/CustomNetScan.class.php:468
-msgid "Comment"
-msgstr "Comentar"
-
-#: ../../operation/events/events.php:1246
-#: ../../operation/events/events_list.php:769
-#: ../../godmode/events/event_edit_filter.php:371
-#: ../../enterprise/meta/agentsearch.php:52
-#: ../../enterprise/meta/agentsearch.php:58
-#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:278
-#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:374
-#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:440
-#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:708
-#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:787
-#: ../../mobile/operation/home.php:168
-msgid "Agent search"
-msgstr "Búsqueda de agente"
-
-#: ../../operation/events/events.php:1252
-#: ../../operation/events/events_list.php:821
-#: ../../operation/events/events.build_table.php:156
-#: ../../godmode/reporting/reporting_builder.item_editor.php:1095
-#: ../../godmode/reporting/reporting_builder.item_editor.php:3481
-#: ../../godmode/massive/massive_edit_agents.php:743
-#: ../../godmode/agentes/module_manager.php:844
-#: ../../godmode/agentes/agent_manager.php:411
-#: ../../godmode/wizards/DiscoveryTaskList.class.php:1043
-#: ../../godmode/modules/manage_network_components.php:749
-#: ../../enterprise/operation/inventory/inventory.php:317
-#: ../../enterprise/operation/log/log_viewer.php:613
-#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1962
-#: ../../enterprise/include/functions_events.php:283
-#: ../../enterprise/include/class/SAPView.class.php:226
-#: ../../enterprise/include/class/CSVImportAgents.class.php:152
-#: ../../enterprise/include/functions_reporting_csv.php:2733
-#: ../../enterprise/meta/advanced/policymanager.queue.php:256
-#: ../../enterprise/meta/include/functions_wizard_meta.php:173
-#: ../../enterprise/meta/include/functions_wizard_meta.php:1788
-#: ../../enterprise/meta/agentsearch.php:133
-#: ../../enterprise/meta/agentsearch.php:326
-#: ../../enterprise/meta/monitoring/custom_fields_csv.php:101
-#: ../../enterprise/meta/monitoring/wizard/wizard.manage_alert.php:197
-#: ../../enterprise/meta/monitoring/custom_fields_view.php:706
-#: ../../include/functions_events.php:6659
-#: ../../include/functions_reporting_html.php:2072
-#: ../../include/class/AgentWizard.class.php:1181
-msgid "Server"
-msgstr "Servidor"
-
-#: ../../operation/events/events.php:1263
-#: ../../operation/events/events_list.php:809
-#: ../../godmode/events/event_edit_filter.php:614
-#: ../../enterprise/meta/monitoring/custom_fields_view.php:293
-msgid "Module search"
-msgstr "Búsqueda por módulo"
-
-#: ../../operation/events/events.php:1293 ../../operation/events/events.php:2632
-#: ../../operation/events/events_list.php:803
-#: ../../godmode/reporting/create_container.php:573
-#: ../../godmode/massive/massive_edit_agents.php:643
-#: ../../godmode/massive/massive_edit_agents.php:1026
-#: ../../godmode/massive/massive_edit_modules.php:411
-#: ../../godmode/massive/massive_edit_modules.php:497
-#: ../../godmode/massive/massive_copy_modules.php:178
-#: ../../godmode/massive/massive_delete_modules.php:407
-#: ../../godmode/massive/massive_delete_modules.php:521
-#: ../../godmode/massive/massive_add_action_alerts.php:216
-#: ../../godmode/agentes/planned_downtime.list.php:326
-#: ../../godmode/agentes/planned_downtime.editor.php:800
-#: ../../godmode/agentes/agent_manager.php:328
-#: ../../godmode/agentes/agent_manager.php:472
-#: ../../godmode/events/event_edit_filter.php:431
-#: ../../enterprise/operation/services/services.list.php:249
-#: ../../enterprise/operation/services/services.list.php:279
-#: ../../enterprise/operation/services/services.table_services.php:171
-#: ../../enterprise/operation/services/services.table_services.php:201
-#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:169
-#: ../../enterprise/godmode/setup/setup_acl.php:572
-#: ../../enterprise/godmode/setup/setup_auth.php:69
-#: ../../enterprise/godmode/setup/setup_auth.php:269
-#: ../../enterprise/godmode/setup/setup_auth.php:319
-#: ../../enterprise/godmode/setup/setup_auth.php:380
-#: ../../enterprise/godmode/setup/setup_auth.php:546
-#: ../../enterprise/godmode/setup/setup_auth.php:1175
-#: ../../enterprise/godmode/setup/setup_auth.php:1345
-#: ../../enterprise/godmode/services/services.elements.php:290
-#: ../../enterprise/include/class/Omnishell.class.php:361
-#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1733
-#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3865
-#: ../../enterprise/include/class/AgentRepository.class.php:650
-#: ../../enterprise/include/class/DeploymentCenter.class.php:779
-#: ../../include/functions_html.php:2278 ../../include/functions_html.php:2279
-#: ../../include/functions_html.php:2280 ../../include/functions_html.php:2281
-#: ../../include/functions_html.php:2282 ../../include/functions_html.php:2284
-#: ../../include/functions_html.php:2285 ../../include/functions_html.php:2286
-#: ../../include/functions_html.php:2287 ../../include/functions_html.php:2288
-#: ../../include/functions_profile.php:338
-#: ../../include/functions_visual_map_editor.php:498
-#: ../../include/functions_visual_map_editor.php:1459
-#: ../../include/functions_visual_map_editor.php:1553
-#: ../../include/lib/Dashboard/Widgets/events_list.php:329
-#: ../../include/ajax/visual_console_builder.ajax.php:1186
-msgid "Any"
-msgstr "Cualquiera"
-
-#: ../../operation/events/events.php:1297
-#: ../../operation/events/events_list.php:790
-#: ../../godmode/events/event_edit_filter.php:414
-#: ../../enterprise/include/functions_events.php:168
-msgid "User ack."
-msgstr "Validación del usuario"
-
-#: ../../operation/events/events.php:1304
-#: ../../operation/events/events_list.php:840
-#: ../../godmode/events/event_edit_filter.php:602
-msgid "Filter alert events"
-msgstr "Filtrar eventos de alertas"
-
-#: ../../operation/events/events.php:1305
-#: ../../operation/events/events_list.php:841
-#: ../../godmode/events/event_edit_filter.php:603
-msgid "Only alert events"
-msgstr "Solo eventos de alertas"
-
-#: ../../operation/events/events.php:1320
-#: ../../operation/events/events_list.php:837
-#: ../../godmode/events/event_edit_filter.php:598
-#: ../../enterprise/include/functions_events.php:208
-msgid "Alert events"
-msgstr "Eventos de la alerta"
-
-#: ../../operation/events/events.php:1342
-#: ../../operation/events/events_list.php:1013
-msgid "Id source event"
-msgstr "Evento de origen de ID"
-
-#: ../../operation/events/events.php:1400
-msgid "From (date:time)"
-msgstr "Desde (fecha:hora)"
-
-#: ../../operation/events/events.php:1458
-msgid "To (date:time)"
-msgstr "Hasta (fecha:hora)"
-
-#: ../../operation/events/events.php:1469
-msgid "Filter custom data by field name"
-msgstr "Filtrar datos personalizados por nombre de campo"
-
-#: ../../operation/events/events.php:1470
-msgid "Filter custom data by field value"
-msgstr "Filtrar datos personalizados por valor de campo"
-
-#: ../../operation/events/events.php:1485
-msgid "Custom data filter"
-msgstr "Filtro de datos personalizado"
-
-#: ../../operation/events/events.php:1507
-msgid "Custom data search"
-msgstr "Búsqueda de datos personalizada"
-
-#: ../../operation/events/events.php:1516 ../../operation/events/events.php:1519
-#: ../../operation/events/events_list.php:892
-#: ../../operation/events/events_list.php:895
-#: ../../godmode/events/event_edit_filter.php:493
-#: ../../enterprise/include/functions_events.php:251
-msgid "Events with following tags"
-msgstr "Eventos con las siguientes etiquetas"
-
-#: ../../operation/events/events.php:1517 ../../operation/events/events.php:1520
-#: ../../operation/events/events_list.php:893
-#: ../../operation/events/events_list.php:896
-#: ../../godmode/events/event_edit_filter.php:546
-#: ../../enterprise/include/functions_events.php:273
-msgid "Events without following tags"
-msgstr "Eventos sin las siguientes etiquetas"
-
-#: ../../operation/events/events.php:1532
-#: ../../operation/events/events_list.php:1030
-#: ../../godmode/massive/massive_edit_agents.php:1027
-#: ../../godmode/massive/massive_add_action_alerts.php:250
-#: ../../godmode/agentes/module_manager_editor.php:746
-#: ../../godmode/agentes/agent_manager.php:744
-#: ../../godmode/agentes/agent_manager.php:878
-#: ../../enterprise/godmode/reporting/reporting_builder.template.php:141
-#: ../../enterprise/godmode/reporting/reporting_builder.template.php:230
-#: ../../enterprise/godmode/policies/policy_external_alerts.php:598
-#: ../../enterprise/godmode/policies/policy_modules.php:412
-#: ../../enterprise/meta/advanced/metasetup.consoles.php:613
-#: ../../enterprise/meta/advanced/metasetup.consoles.php:699
-#: ../../enterprise/meta/advanced/metasetup.consoles.php:704
-#: ../../include/functions_visual_map_editor.php:895
-#: ../../extensions/quick_shell.php:521
-msgid "Advanced options"
-msgstr "Opciones avanzadas"
-
-#: ../../operation/events/events.php:1657
-msgid "Current filter"
-msgstr "Filtro actual"
-
-#: ../../operation/events/events.php:1662
-msgid "Not set."
-msgstr "No establecida"
-
-#: ../../operation/events/events.php:1675
-msgid "Any status."
-msgstr "Cualquier estado"
-
-#: ../../operation/events/events.php:1679
-msgid "New events."
-msgstr "Nuevos eventos"
-
-#: ../../operation/events/events.php:1683
-msgid "Validated."
-msgstr "Validado."
-
-#: ../../operation/events/events.php:1687
-msgid "In proccess."
-msgstr "In proceso."
-
-#: ../../operation/events/events.php:1691
-msgid "Not validated."
-msgstr "No validado."
-
-#: ../../operation/events/events.php:1703
-msgid "Any time."
-msgstr "Cualquier hora."
-
-#: ../../operation/events/events.php:1705 ../../operation/events/events.php:2634
-msgid "Last hour."
-msgstr "Última hora."
-
-#: ../../operation/events/events.php:1707
-#, php-format
-msgid "Last %d hours."
-msgstr "Últimas %d horas."
-
-#: ../../operation/events/events.php:1715
-msgid "Duplicated"
-msgstr "Duplicado"
-
-#: ../../operation/events/events.php:1718
-msgid "All events."
-msgstr "Todos los eventos."
-
-#: ../../operation/events/events.php:1722
-msgid "Group agents."
-msgstr "Agentes de grupo."
-
-#: ../../operation/events/events.php:1812
-msgid "In progress selected"
-msgstr "Seleccionado en proceso"
-
-#: ../../operation/events/events.php:1813
-msgid "Validate selected"
-msgstr "Validar selección"
-
-#: ../../operation/events/events.php:1817
-#: ../../godmode/snmpconsole/snmp_alert.php:1457
-#: ../../godmode/agentes/agent_manager.php:310
-#: ../../enterprise/operation/services/services.list.php:728
-#: ../../enterprise/godmode/reporting/reporting_builder.global.php:298
-#: ../../enterprise/include/class/Omnishell.class.php:520
-#: ../../include/class/ModuleTemplates.class.php:970
-msgid "Delete selected"
-msgstr "Borrar seleccionado(s)"
-
-#: ../../operation/events/events.php:1847
-#: ../../operation/events/events.build_table.php:1008
-msgid "Execute event response"
-msgstr "Ejecutar respuesta de eventos"
-
-#: ../../operation/events/events.php:1860
-#: ../../operation/events/events.build_table.php:1016
-#, php-format
-msgid "A maximum of %s event custom responses can be selected"
-msgstr ""
-"De puede seleccionar un máximo se %s respuestas personalizadas de eventos"
-
-#: ../../operation/events/events.php:1865
-#: ../../operation/events/events.build_table.php:1021
-msgid "Please, select an event"
-msgstr "Seleccione un evento"
-
-#: ../../operation/events/events.php:1893
-#: ../../godmode/events/event_responses.editor.php:146
-#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:566
-#: ../../enterprise/meta/advanced/cron_main.php:440
-#: ../../include/functions_events.php:3863
-#: ../../include/class/ExternalTools.class.php:354
-#: ../../include/lib/Dashboard/Widgets/events_list.php:788
-#: ../../include/ajax/events.php:1998
-msgid "Parameters"
-msgstr "Parámetros"
-
-#: ../../operation/events/events.php:1930
-#: ../../godmode/events/custom_events.php:96
-#: ../../enterprise/include/functions_reporting.php:2316
-#: ../../enterprise/include/functions_reporting_csv.php:1934
-#: ../../include/functions_events.php:236
-msgid "Agent ID"
-msgstr "ID de agente"
-
-#: ../../operation/events/events.php:1934
-#: ../../operation/events/events.build_table.php:182
-#: ../../godmode/agentes/modificar_agente.php:647
-#: ../../godmode/agentes/agent_manager.php:213
-#: ../../enterprise/include/functions_ipam.php:2035
-#: ../../enterprise/include/functions_reporting_csv.php:871
-#: ../../enterprise/meta/include/functions_events_meta.php:66
-#: ../../include/functions_treeview.php:617
-#: ../../include/functions_events.php:193 ../../include/functions_events.php:239
-#: ../../include/functions_events.php:2617
-#: ../../include/functions_events.php:6684
-#: ../../include/functions_reporting_html.php:3337
-#: ../../mobile/operation/modules.php:597 ../../mobile/operation/modules.php:849
-msgid "Agent name"
-msgstr "Nombre del agente"
-
-#: ../../operation/events/events.php:1954
-msgid "has at least"
-msgstr "tiene al menos"
-
-#: ../../operation/events/events.php:1956
-msgid "events"
-msgstr "eventos"
-
-#: ../../operation/events/events.php:2040 ../../include/functions_ui.php:3819
-#: ../../include/functions_events.php:159
-msgid "MAINTENANCE"
-msgstr "MANTENIMIENTO"
-
-#: ../../operation/events/events.php:2045 ../../include/functions_ui.php:3824
-#: ../../include/functions_events.php:162
-msgid "INFORMATIONAL"
-msgstr "INFORMATIVO"
-
-#: ../../operation/events/events.php:2050 ../../include/functions_ui.php:3849
-#: ../../include/functions_events.php:165
-msgid "MAJOR"
-msgstr "MAYOR"
-
-#: ../../operation/events/events.php:2055 ../../include/functions_ui.php:3844
-#: ../../include/functions_events.php:168
-msgid "MINOR"
-msgstr "MENOR"
-
-#: ../../operation/events/events.php:2106 ../../operation/events/events.php:2171
-#: ../../include/functions_ui.php:3741 ../../include/functions_events.php:67
-#: ../../include/functions_events.php:93
-msgid "ALERT"
-msgstr "ALERTA"
-
-#: ../../operation/events/events.php:2115 ../../include/functions_ui.php:3750
-#: ../../include/functions_events.php:100 ../../include/functions_events.php:2910
-#: ../../include/functions_graph.php:3455
-msgid "SYSTEM"
-msgstr "SISTEMA"
-
-#: ../../operation/events/events.php:2200
-msgid "Validate events"
-msgstr "Validar eventos"
-
-#: ../../operation/events/events.php:2203
-#: ../../operation/events/events.build_table.php:856
-#: ../../include/functions_events.php:7248
-msgid "Validate event"
-msgstr "Validar evento"
-
-#: ../../operation/events/events.php:2215
-#: ../../operation/events/events.build_table.php:867
-msgid "Change to in progress status"
-msgstr "Cambiar a estado en proceso"
-
-#: ../../operation/events/events.php:2224
-msgid "Delete events"
-msgstr "Eliminar eventos"
-
-#: ../../operation/events/events.php:2227
-#: ../../operation/events/events.build_table.php:884
-#: ../../include/functions_events.php:3778
-#: ../../include/functions_events.php:3782
-#: ../../include/functions_events.php:7262
-msgid "Delete event"
-msgstr "Eliminar evento"
-
-#: ../../operation/events/events.php:2249
-#: ../../operation/events/events.build_table.php:420
-#: ../../include/functions_reporting.php:10694
-#: ../../include/functions_events.php:2653
-#: ../../include/functions_events.php:4821
-#: ../../include/functions_events.php:6831
-#: ../../include/functions_reporting_html.php:1077
-#: ../../include/functions_reporting_html.php:1300
-#: ../../include/functions_reporting_html.php:2372
-#: ../../include/ajax/events.php:1784 ../../mobile/operation/events.php:267
-msgid "New event"
-msgstr "Nuevo evento"
-
-#: ../../operation/events/events.php:2255
-#: ../../operation/events/events.build_table.php:425
-#: ../../include/functions_reporting.php:10699
-#: ../../include/functions_events.php:2658
-#: ../../include/functions_events.php:4827
-#: ../../include/functions_events.php:6836
-#: ../../include/functions_reporting_html.php:1082
-#: ../../include/functions_reporting_html.php:1305
-#: ../../include/functions_reporting_html.php:2377
-#: ../../include/ajax/events.php:1789 ../../mobile/operation/events.php:272
-msgid "Event validated"
-msgstr "Evento validado"
-
-#: ../../operation/events/events.php:2261
-#: ../../operation/events/events.build_table.php:430
-#: ../../include/functions_reporting.php:10704
-#: ../../include/functions_events.php:2663
-#: ../../include/functions_events.php:4833
-#: ../../include/functions_events.php:6841
-#: ../../include/functions_reporting_html.php:1087
-#: ../../include/functions_reporting_html.php:1310
-#: ../../include/functions_reporting_html.php:2382
-#: ../../include/ajax/events.php:1794 ../../mobile/operation/events.php:277
-msgid "Event in process"
-msgstr "Evento en proceso"
-
-#: ../../operation/events/events.php:2307
-#: ../../godmode/setup/setup_general.php:125
-#: ../../enterprise/meta/advanced/metasetup.setup.php:144
-#: ../../include/functions.php:1235 ../../include/functions_reporting.php:10731
-#: ../../include/functions_events.php:2693
-#: ../../include/functions_events.php:3281 ../../include/functions_graph.php:2864
-#: ../../include/functions_graph.php:3630 ../../include/functions_graph.php:3632
-#: ../../include/functions_reporting_html.php:1123
-#: ../../include/functions_reporting_html.php:2411
-#: ../../include/lib/Dashboard/Widgets/top_n_events_by_group.php:433
-#: ../../include/lib/Dashboard/Widgets/top_n_events_by_module.php:437
-#: ../../mobile/operation/events.php:127
-msgid "System"
-msgstr "Sistema"
-
-#: ../../operation/events/events.php:2636
-msgid "hours."
-msgstr "horas."
-
-#: ../../operation/events/events.php:2822
-#: ../../operation/events/events.build_table.php:323
-#: ../../godmode/events/custom_events.php:113
-#: ../../enterprise/meta/include/functions_events_meta.php:126
-#: ../../include/functions_events.php:208 ../../include/functions_events.php:287
-#: ../../include/functions_events.php:4693
-#: ../../include/functions_events.php:6770
-msgid "Instructions"
-msgstr "Instrucciones"
-
-#: ../../operation/events/events_rss.php:195
-msgid "Your IP is not into the IP list with API access."
-msgstr "Tu IP no se encuentra en el listado de IPs con acceso a la API."
-
-#: ../../operation/events/events_rss.php:214
-msgid "The URL of your feed has bad hash."
-msgstr "La URL de tu feed tiene mal el hash."
-
-#: ../../operation/events/events_list.php:360
-#: ../../operation/events/events_list.php:1099
-msgid "No filter loaded"
-msgstr "No se ha cargado el filtro"
-
-#: ../../operation/events/events_list.php:368
-#: ../../operation/events/events_list.php:1099
-msgid "Filter loaded"
-msgstr "Filtro cargado"
-
-#: ../../operation/events/events_list.php:418 ../../include/ajax/events.php:678
-msgid "New filter"
-msgstr "Nuevo filtro"
-
-#: ../../operation/events/events_list.php:426
-#: ../../operation/events/events_list.php:479
-#: ../../godmode/netflow/nf_edit_form.php:188
-#: ../../godmode/snmpconsole/snmp_filters.php:35
-#: ../../include/ajax/events.php:686 ../../include/ajax/events.php:746
-#: ../../include/ajax/custom_fields.php:707
-msgid "Update filter"
-msgstr "Actualizar filtro"
-
-#: ../../operation/events/events_list.php:433
-#: ../../godmode/events/event_edit_filter.php:261
-#: ../../include/ajax/events.php:693 ../../include/ajax/custom_fields.php:571
-#: ../../include/ajax/custom_fields.php:618
-#: ../../include/ajax/custom_fields.php:662
-msgid "Filter name"
-msgstr "Nombre del filtro"
-
-#: ../../operation/events/events_list.php:436 ../../include/ajax/events.php:696
-msgid "Save in Group"
-msgstr "Guardar en el grupo"
-
-#: ../../operation/events/events_list.php:438
-#: ../../enterprise/godmode/reporting/reporting_builder.template.php:723
-#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:115
-#: ../../enterprise/godmode/reporting/graph_template_wizard.php:207
-#: ../../enterprise/godmode/reporting/reporting_builder.global.php:98
-#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:211
-#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:335
-#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:358
-#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:209
-#: ../../enterprise/godmode/policies/policy_agents.php:436
-#: ../../enterprise/godmode/policies/policy_agents.php:468
-#: ../../enterprise/include/class/Omnishell.class.php:812
-#: ../../enterprise/include/class/Omnishell.class.php:891
-#: ../../enterprise/views/cluster/list.php:87
-#: ../../enterprise/views/ncm/snippets/list.php:94
-#: ../../enterprise/views/ncm/templates/list.php:100
-#: ../../enterprise/views/ncm/devices/list.php:147
-#: ../../enterprise/views/ncm/firmwares/list.php:100
-#: ../../include/functions_snmp_browser.php:1478
-#: ../../include/functions_html.php:1234 ../../include/functions_html.php:1387
-#: ../../include/ajax/events.php:698
-msgid "Filter group"
-msgstr "Filtrar grupo"
-
-#: ../../operation/events/events_list.php:465 ../../include/ajax/events.php:732
-msgid "Overwrite filter"
-msgstr "Sobrescribir filtro"
-
-#: ../../operation/events/events_list.php:871
-#: ../../godmode/events/event_edit_filter.php:449
-#: ../../enterprise/include/functions_events.php:178
-msgid "Date from"
-msgstr "Fecha desde"
-
-#: ../../operation/events/events_list.php:875
-#: ../../godmode/events/event_edit_filter.php:452
-#: ../../enterprise/include/functions_events.php:188
-msgid "Date to"
-msgstr "Fecha hasta"
-
-#: ../../operation/events/events_list.php:1105
-#: ../../operation/events/events_list.php:1107
-msgid "Event control filter"
-msgstr "Filtro de control de eventos"
-
-#: ../../operation/events/events_list.php:1115
-msgid "Error creating filter."
-msgstr "Error al crear el filtro"
-
-#: ../../operation/events/events_list.php:1119
-msgid "Error creating filter is duplicated."
-msgstr "Error al crear el filtro ya que está duplicado"
-
-#: ../../operation/events/events_list.php:1123
-msgid "Filter created."
-msgstr "Filtro creado"
-
-#: ../../operation/events/events_list.php:1128
-msgid "Filter updated."
-msgstr "Filtro actualizado"
-
-#: ../../operation/events/events_list.php:1132
-msgid "Error updating filter."
-msgstr "Error al actualizar el filtro"
-
-#: ../../operation/events/events_list.php:1538 ../../include/ajax/events.php:803
-msgid "Filter name cannot be left blank"
-msgstr "El nombre del filtro no se puede dejar en blanco."
-
-#: ../../operation/events/events_list.php:1614
-#: ../../operation/events/events_list.php:1707
-#: ../../godmode/reporting/create_container.php:294
-#: ../../godmode/reporting/create_container.php:310
-#: ../../godmode/setup/setup_general.php:574
-#: ../../godmode/gis_maps/configure_gis_map.php:575
-#: ../../include/ajax/graph.ajax.php:145 ../../include/ajax/events.php:946
-msgid "none"
-msgstr "ninguno"
-
-#: ../../operation/events/events.build_table.php:81
-msgid "More detail"
-msgstr "Más detalles"
-
-#: ../../operation/events/events.build_table.php:105
-#: ../../operation/events/events.build_table.php:107
-msgid "The Agent: "
-msgstr "El agente: "
-
-#: ../../operation/events/events.build_table.php:105
-#: ../../operation/events/events.build_table.php:107
-msgid " has "
-msgstr " tiene "
-
-#: ../../operation/events/events.build_table.php:105
-#: ../../operation/events/events.build_table.php:107
-msgid " events."
-msgstr " eventos."
-
-#: ../../operation/events/events.build_table.php:134
-#: ../../operation/events/events.build_table.php:1164
-#: ../../include/functions_reporting.php:2000
-#: ../../include/functions_reporting.php:2299
-#: ../../include/functions_events.php:2577
-#: ../../include/functions_events.php:2580
-#: ../../include/functions_reporting_html.php:5881
-#: ../../include/functions_reporting_html.php:6066
-#: ../../mobile/operation/events.php:865
-msgid "No events"
-msgstr "No hay eventos"
-
-#: ../../operation/events/events.build_table.php:146
-#: ../../operation/incidents/list_integriaims_incidents.php:515
-#: ../../godmode/setup/os.list.php:68
-#: ../../godmode/agentes/fields_manager.php:118
-#: ../../godmode/agentes/agent_incidents.php:88
-#: ../../godmode/agentes/module_manager_editor_common.php:230
-#: ../../godmode/agentes/agent_manager.php:219
-#: ../../godmode/groups/modu_group_list.php:251
-#: ../../godmode/groups/group_list.php:840
-#: ../../godmode/alerts/alert_commands.php:656
-#: ../../godmode/modules/module_list.php:61
-#: ../../enterprise/tools/ipam/ipam_excel.php:130
-#: ../../enterprise/tools/ipam/ipam_excel.php:199
-#: ../../enterprise/tools/ipam/ipam_vlan_config.php:660
-#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:91
-#: ../../include/functions_events.php:6655 ../../extensions/api_checker.php:161
-#: ../../views/calendar/list.php:92
-msgid "ID"
-msgstr "ID"
-
-#: ../../operation/events/events.build_table.php:162
-#: ../../include/functions_events.php:4980
-#: ../../include/functions_events.php:6671 ../../mobile/operation/events.php:512
-msgid "Event ID"
-msgstr "ID del evento"
-
-#: ../../operation/events/events.build_table.php:172
-#: ../../godmode/events/custom_events.php:95
-#: ../../include/functions_events.php:233 ../../include/functions_events.php:6677
-#: ../../mobile/operation/events.php:124
-msgid "Event Name"
-msgstr "Nombre del evento"
-
-#: ../../operation/events/events.build_table.php:212
-#: ../../operation/incidents/list_integriaims_incidents.php:342
-#: ../../operation/incidents/list_integriaims_incidents.php:522
-#: ../../operation/incidents/configure_integriaims_incident.php:312
-#: ../../operation/incidents/integriaims_export_csv.php:89
-#: ../../godmode/setup/setup_integria.php:397
-#: ../../godmode/setup/setup_integria.php:519
-#: ../../godmode/events/custom_events.php:111
-#: ../../enterprise/meta/include/functions_events_meta.php:118
-#: ../../include/functions_events.php:206 ../../include/functions_events.php:281
-#: ../../include/functions_events.php:5011
-#: ../../include/functions_events.php:6703 ../../mobile/operation/events.php:520
-msgid "Owner"
-msgstr "Propietario"
-
-#: ../../operation/events/events.build_table.php:232
-#: ../../godmode/events/custom_events.php:103
-#: ../../include/functions_events.php:257
-msgid "Event Type"
-msgstr "Tipo de evento"
-
-#: ../../operation/events/events.build_table.php:243
-#: ../../godmode/events/custom_events.php:104
-#: ../../include/functions_events.php:260
-#: ../../include/class/AgentWizard.class.php:1180
-#: ../../include/class/AgentWizard.class.php:4015
-#: ../../include/class/ModuleTemplates.class.php:1207
-msgid "Module Name"
-msgstr "Nombre del módulo"
-
-#: ../../operation/events/events.build_table.php:313
-#: ../../godmode/events/custom_events.php:112
-#: ../../enterprise/meta/include/functions_events_meta.php:122
-#: ../../include/functions_events.php:207 ../../include/functions_events.php:284
-#: ../../include/functions_events.php:6764
-msgid "ACK Timestamp"
-msgstr "ACK Marca temporal"
-
-#: ../../operation/events/events.build_table.php:340
-#: ../../godmode/massive/massive_edit_modules.php:382
-#: ../../godmode/massive/massive_delete_modules.php:436
-#: ../../godmode/events/custom_events.php:116
-#: ../../include/functions_events.php:296
-msgid "Module Status"
-msgstr "Estado de módulo"
-
-#: ../../operation/events/events.build_table.php:350
-#: ../../godmode/events/custom_events.php:119
-#: ../../godmode/events/event_edit_filter.php:650
-#: ../../include/functions_events.php:213 ../../include/functions_events.php:315
-#: ../../include/ajax/events.php:1552
-msgid "Custom data"
-msgstr "Datos personalizados"
-
-#: ../../operation/events/events.build_table.php:894
-#: ../../include/functions_events.php:7271
-msgid "Is not allowed delete events in process"
-msgstr "No puede borrar eventos en proceso"
-
-#: ../../operation/heatmap.php:173 ../../include/ajax/heatmap.ajax.php:52
-msgid "3 minutes"
-msgstr "3 minutos"
-
-#: ../../operation/incidents/list_integriaims_incidents.php:24
-msgid "Integria IMS Tickets"
-msgstr "Tickets de Integria IMS"
-
-#: ../../operation/incidents/list_integriaims_incidents.php:34
-#: ../../operation/incidents/configure_integriaims_incident.php:33
-#: ../../operation/incidents/incident_statistics.php:24
-#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:23
-#: ../../godmode/agentes/agent_incidents.php:22
-msgid ""
-"In order to access ticket management system, integration with Integria IMS "
-"must be enabled and properly configured"
-msgstr ""
-"Para acceder al sistema de gestión de tickets, la integración con Integria IMS "
-"debe estar activada y correctamente configurada"
-
-#: ../../operation/incidents/list_integriaims_incidents.php:42
-#: ../../operation/incidents/configure_integriaims_incident.php:41
-#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:31
-#: ../../godmode/setup/setup_integria.php:64
-msgid "Integria IMS API is not reachable"
-msgstr "API de Integria IMS no accesible"
-
-#: ../../operation/incidents/list_integriaims_incidents.php:317
-msgid "Text filter"
-msgstr "Filtro de texto"
-
-#: ../../operation/incidents/list_integriaims_incidents.php:345
-#: ../../operation/incidents/list_integriaims_incidents.php:521
-#: ../../operation/incidents/configure_integriaims_incident.php:282
-#: ../../operation/incidents/integriaims_export_csv.php:88
-msgid "Creator"
-msgstr "Creador"
-
-#: ../../operation/incidents/list_integriaims_incidents.php:381
-msgid "Created from"
-msgstr "Creado desde"
-
-#: ../../operation/incidents/list_integriaims_incidents.php:393
-msgid "Created to"
-msgstr "Creado hasta"
-
-#: ../../operation/incidents/list_integriaims_incidents.php:517
-#: ../../operation/incidents/integriaims_export_csv.php:82
-msgid "Group/Company"
-msgstr "Grupo/Compañia"
-
-#: ../../operation/incidents/list_integriaims_incidents.php:518
-msgid "Status/Resolution"
-msgstr "Estado/Resolución"
-
-#: ../../operation/incidents/list_integriaims_incidents.php:520
-msgid "Updated/Started"
-msgstr "Actualizado/Iniciado"
-
-#: ../../operation/incidents/list_integriaims_incidents.php:564
-msgid "No tickets to show"
-msgstr "No hay tickets"
-
-#: ../../operation/incidents/configure_integriaims_incident.php:26
-msgid "Update Integria IMS Ticket"
-msgstr "Actualizar el ticket de Integria IMS"
-
-#: ../../operation/incidents/configure_integriaims_incident.php:28
-msgid "Create Integria IMS Ticket"
-msgstr "Crear ticket de Integria IMS"
-
-#: ../../operation/incidents/configure_integriaims_incident.php:123
-msgid "Successfully created in Integria IMS"
-msgstr "Creado correctamente en Integria IMS"
-
-#: ../../operation/incidents/configure_integriaims_incident.php:124
-msgid "Could not be created in Integria IMS"
-msgstr "No se ha podido crear en Integria IMS"
-
-#: ../../operation/incidents/configure_integriaims_incident.php:144
-msgid "Successfully updated in Integria IMS"
-msgstr "Actualizado correctamente en Integria IMS"
-
-#: ../../operation/incidents/configure_integriaims_incident.php:145
-msgid "Could not be updated in Integria IMS"
-msgstr "No se ha podido actualizar en Integria IMS"
-
-#: ../../operation/incidents/configure_integriaims_incident.php:240
-#: ../../operation/incidents/configure_integriaims_incident.php:256
-#: ../../operation/incidents/configure_integriaims_incident.php:302
-#: ../../godmode/snmpconsole/snmp_trap_generator.php:159
-#: ../../godmode/massive/massive_delete_alerts.php:277
-#: ../../godmode/massive/massive_add_alerts.php:286
-#: ../../godmode/massive/massive_edit_modules.php:318
-#: ../../godmode/massive/massive_edit_modules.php:431
-#: ../../godmode/massive/massive_copy_modules.php:138
-#: ../../godmode/massive/massive_delete_modules.php:334
-#: ../../godmode/massive/massive_delete_modules.php:469
-#: ../../godmode/setup/setup_integria.php:367
-#: ../../godmode/setup/setup_integria.php:385
-#: ../../godmode/setup/setup_integria.php:414
-#: ../../godmode/setup/setup_integria.php:432
-#: ../../godmode/setup/setup_integria.php:489
-#: ../../godmode/setup/setup_integria.php:507
-#: ../../godmode/setup/setup_integria.php:536
-#: ../../godmode/setup/setup_integria.php:554
-#: ../../godmode/alerts/alert_list.builder.php:82
-#: ../../godmode/alerts/alert_list.builder.php:156
-#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:141
-#: ../../enterprise/godmode/massive/massive_create_services.php:902
-#: ../../enterprise/godmode/massive/massive_create_services.php:914
-#: ../../enterprise/godmode/massive/massive_create_services.php:926
-#: ../../enterprise/godmode/massive/massive_create_services.php:938
-#: ../../enterprise/godmode/policies/policy_external_alerts.php:676
-#: ../../enterprise/godmode/policies/policy_alerts.php:648
-#: ../../enterprise/godmode/services/services.service.php:845
-#: ../../enterprise/godmode/services/services.service.php:857
-#: ../../enterprise/godmode/services/services.service.php:869
-#: ../../enterprise/godmode/services/services.service.php:881
-#: ../../enterprise/meta/general/main_header.php:558
-#: ../../enterprise/meta/general/header.php:121
-#: ../../enterprise/meta/include/ajax/wizard.ajax.php:742
-#: ../../enterprise/meta/monitoring/wizard/wizard.php:150
-#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:231
-#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:259
-#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:356
-#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:413
-#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:681
-#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:752
-#: ../../enterprise/meta/monitoring/wizard/wizard.manage_alert.php:231
-#: ../../general/header.php:265 ../../include/functions_reports.php:1351
-#: ../../include/class/AgentsAlerts.class.php:354
-#: ../../extensions/insert_data.php:186
-msgid "Select"
-msgstr "Seleccionar"
-
-#: ../../operation/incidents/configure_integriaims_incident.php:294
-msgid ""
-"This field corresponds to the Integria IMS user specified in Integria IMS setup"
-msgstr ""
-"Este campo corresponde al usuario de Integria IMS especificado en la "
-"configuración de Integria IMS"
-
-#: ../../operation/incidents/configure_integriaims_incident.php:352
-#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:206
-msgid "File name"
-msgstr "Nombre de archivo"
-
-#: ../../operation/incidents/configure_integriaims_incident.php:354
-#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:208
-msgid "Attachment description"
-msgstr "Descripción de los datos adjuntos"
-
-#: ../../operation/incidents/incident_statistics.php:29
-msgid "Incidents by status"
-msgstr "Incidentes por estado"
-
-#: ../../operation/incidents/incident_statistics.php:32
-msgid "Incidents by priority"
-msgstr "Incidentes por prioridad"
-
-#: ../../operation/incidents/incident_statistics.php:35
-msgid "Incidents by group"
-msgstr "Incidentes por grupo"
-
-#: ../../operation/incidents/incident_statistics.php:38
-msgid "Incidents by user"
-msgstr "Incidentes por usuario"
-
-#: ../../operation/incidents/integriaims_export_csv.php:80
-msgid "ID Ticket"
-msgstr "Ticket de ID"
-
-#: ../../operation/incidents/integriaims_export_csv.php:86
-#: ../../godmode/agentes/agent_incidents.php:93
-#: ../../godmode/servers/servers.build_table.php:73
-#: ../../enterprise/tools/ipam/ipam_ajax.php:494
-#: ../../enterprise/include/class/DatabaseHA.class.php:798
-#: ../../enterprise/meta/advanced/servers.build_table.php:68
-msgid "Updated"
-msgstr "Actualizado"
-
-#: ../../operation/incidents/integriaims_export_csv.php:87
-msgid "Started"
-msgstr "Iniciado hace"
-
-#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:59
-#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:378
-#: ../../enterprise/tools/ipam/ipam_ajax.php:483
-#: ../../enterprise/include/functions_ipam.php:1337
-#: ../../include/ajax/events.php:1507
-msgid "Details"
-msgstr "Detalles"
-
-#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:77
-msgid "Not yet"
-msgstr "Todavía no"
-
-#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:81
-msgid "Not closed yet"
-msgstr "No cerrado todavía"
-
-#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:115
-#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:246
-msgid "Filename"
-msgstr "Nombre del archivo"
-
-#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:119
-#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:250
-#: ../../godmode/events/event_responses.editor.php:130
-#: ../../enterprise/include/class/ManageBackups.class.php:164
-#: ../../include/functions_visual_map_editor.php:125
-#: ../../include/functions_visual_map_editor.php:178
-#: ../../include/functions_visual_map_editor.php:838
-#: ../../include/functions_visual_map_editor.php:933
-#: ../../include/functions_filemanager.php:606
-#: ../../include/rest-api/models/VisualConsole/Item.php:1991
-#: ../../include/rest-api/models/VisualConsole/Items/Box.php:214
-#: ../../extensions/files_repo/files_repo_list.php:57
-msgid "Size"
-msgstr "Tamaño"
-
-#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:124
-#: ../../enterprise/meta/include/ajax/wizard.ajax.php:609
-#: ../../enterprise/meta/monitoring/wizard/wizard.php:135
-msgid "No description available"
-msgstr "Sin descripción disponible"
-
-#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:142
-msgid "File successfully deleted"
-msgstr "Archivo añadido correctamente"
-
-#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:143
-msgid "File could not be deleted"
-msgstr "El archivo no se ha podido eliminar"
-
-#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:218
-#: ../../godmode/servers/plugin_registration.php:113
-#: ../../enterprise/tools/ipam/ipam_supernet_config.php:549
-#: ../../enterprise/tools/ipam/ipam_network.php:142
-#: ../../enterprise/tools/ipam/ipam_list.php:77
-#: ../../enterprise/tools/ipam/ipam_vlan_config.php:420
-#: ../../enterprise/include/functions_policies.php:4477
-#: ../../extensions/extension_uploader.php:92
-#: ../../extensions/resource_registration.php:1137
-#: ../../views/calendar/special_days.php:138
-msgid "Upload"
-msgstr "Subir"
-
-#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:222
-msgid "Add attachment"
-msgstr "Añadir adjunto"
-
-#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:224
-#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:397
-msgid "Attached files"
-msgstr "Archivos adjuntos"
-
-#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:282
-msgid "Comment successfully added"
-msgstr "Comentario añadido correctamente"
-
-#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:283
-msgid "Comment could not be added"
-msgstr "No se ha podido añadir el comentario"
-
-#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:309
-msgid "No comments found"
-msgstr "No se han encontrado comentarios"
-
-#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:314
-#: ../../include/functions_events.php:3757
-#: ../../include/functions_events.php:5362
-msgid "Add comment"
-msgstr "Añadir comentario"
-
-#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:349
-msgid "Created by"
-msgstr "Creado por"
-
-#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:350
-msgid "Owned by"
-msgstr "Pertenece a"
-
-#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:351
-msgid "Closed by"
-msgstr "Cerrado por"
-
-#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:366
-#: ../../enterprise/include/functions_ipam.php:2040
-msgid "Created at"
-msgstr "Creado en"
-
-#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:367
-#: ../../godmode/wizards/DiscoveryTaskList.class.php:609
-#: ../../enterprise/operation/agentes/transactional_map.php:212
-msgid "Updated at"
-msgstr "Actualizado el"
-
-#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:368
-msgid "Closed at"
-msgstr "Cerrado el"
-
-#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:379
-msgid "People"
-msgstr "Personas"
-
-#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:380
-#: ../../include/functions_reporting_html.php:6104
-msgid "Dates"
-msgstr "Fechas"
-
-#: ../../index.php:332 ../../enterprise/meta/index.php:295
-#: ../../include/ajax/double_auth.ajax.php:500
-#: ../../mobile/include/user.class.php:280
-msgid "Invalid code"
-msgstr "Código no válido"
-
-#: ../../index.php:344 ../../enterprise/meta/index.php:307
-msgid "The code shouldn't be empty"
-msgstr "El código no debería estar vacío"
-
-#: ../../index.php:357 ../../enterprise/meta/index.php:320
-msgid "Expired login"
-msgstr "Inicio de sesión caducado"
-
-#: ../../index.php:364 ../../index.php:370 ../../enterprise/meta/index.php:327
-#: ../../enterprise/meta/index.php:333
-msgid "Login error"
-msgstr "Error de conexión"
-
-#: ../../index.php:483 ../../index.php:760 ../../index.php:834
-#: ../../include/functions_html.php:4647
-#, 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."
-
-#: ../../index.php:788 ../../enterprise/meta/index.php:616
-msgid "Password changed successfully"
-msgstr "Contraseña modificada correctamente"
-
-#: ../../index.php:794 ../../enterprise/meta/index.php:622
-msgid "Failed to change password"
-msgstr "No se pudo modificar la contraseña"
-
-#: ../../index.php:799 ../../enterprise/include/process_reset_pass.php:127
-#: ../../enterprise/meta/index.php:625
-#: ../../enterprise/meta/include/process_reset_pass.php:123
-msgid "Passwords must be the same"
-msgstr "Las contraseñas deben coincidir"
-
-#: ../../index.php:811 ../../enterprise/meta/index.php:636
-msgid "Too much time since password change request"
-msgstr "Ha pasado demasiado tiempo desde la solicitud de cambio de contraseña"
-
-#: ../../index.php:818 ../../enterprise/meta/index.php:643
-msgid "This user has not requested a password change"
-msgstr "Este usuario no ha solicitado un cambio de contraseña"
-
-#: ../../index.php:845 ../../enterprise/meta/index.php:659
-msgid "Id user cannot be empty"
-msgstr "El ID de usuario no puede estar vacío"
-
-#: ../../index.php:853 ../../enterprise/meta/index.php:667
-msgid "Error in reset password request"
-msgstr "Error en la solicitud para restablecer la contraseña"
-
-#: ../../index.php:861 ../../enterprise/meta/index.php:675
-msgid "This user doesn't have a valid email address"
-msgstr "Este usuario no tiene una dirección válida de email"
-
-#: ../../index.php:871 ../../enterprise/include/reset_pass.php:108
-#: ../../enterprise/meta/index.php:691
-#: ../../enterprise/meta/include/reset_pass.php:103
-msgid "Reset password"
-msgstr "Restablecer la contraseña"
-
-#: ../../index.php:872 ../../enterprise/meta/index.php:692
-msgid "This is an automatically sent message for user "
-msgstr "Este es un mensaje enviado automáticamente para el usuario "
-
-#: ../../index.php:875 ../../enterprise/meta/index.php:695
-msgid "Please click the link below to reset your password"
-msgstr "Haz clic en el enlace de abajo para restablecer la contraseña"
-
-#: ../../index.php:877 ../../enterprise/meta/index.php:697
-msgid "Reset your password"
-msgstr "Restablecer la contraseña"
-
-#: ../../index.php:881 ../../enterprise/meta/index.php:701
-msgid "Please do not reply to this email."
-msgstr "No respondas a este email."
-
-#: ../../index.php:886 ../../enterprise/meta/index.php:707
-msgid "Error at sending the email"
-msgstr "Error al enviar el email"
-
-#: ../../index.php:946
-msgid "User doesn\\'t exist."
-msgstr "El usuario no existe."
-
-#: ../../index.php:968
-msgid "User only can use the API."
-msgstr "El usuario solo puede usar la API."
-
-#: ../../index.php:1163
-#, php-format
-msgid "Metaconsole MR (%d) is different than this one (%d)"
-msgstr "La Metaconsola MR (%d) es diferente a esta (%d)"
-
-#: ../../index.php:1169 ../../enterprise/meta/index.php:925
-msgid "Please keep all environment updated to same version."
-msgstr "Mantenga todo el entorno actualizado a la misma versión."
-
-#: ../../index.php:1257 ../../enterprise/meta/index.php:982
-#: ../../enterprise/meta/index.php:1061
-msgid "Sorry! I can't find the page!"
-msgstr "No se puede encontrar la página"
-
-#: ../../godmode/netflow/nf_edit.php:38
-msgid "Manage Netflow Filter"
-msgstr "Filtro de gestión Netflow"
-
-#: ../../godmode/netflow/nf_edit.php:57 ../../godmode/netflow/nf_edit.php:63
-#: ../../godmode/netflow/nf_edit_form.php:73
-#: ../../godmode/netflow/nf_edit_form.php:83 ../../godmode/menu.php:97
-msgid "Netflow filters"
-msgstr "Filtros Netflow"
-
-#: ../../godmode/netflow/nf_edit.php:212
-#: ../../godmode/events/event_filter.php:215
-msgid "There are no defined filters"
-msgstr "No hay filtros definidos"
-
-#: ../../godmode/netflow/nf_edit.php:217
-#: ../../godmode/netflow/nf_edit_form.php:190
-#: ../../godmode/snmpconsole/snmp_filters.php:37
-#: ../../godmode/events/event_filter.php:225
-#: ../../enterprise/meta/event/custom_events.php:44
-#: ../../include/ajax/custom_fields.php:652
-msgid "Create filter"
-msgstr "Crear filtro"
-
-#: ../../godmode/netflow/nf_item_list.php:30
-#: ../../godmode/netflow/nf_item_list.php:38
-msgid "Report items"
-msgstr "Elementos de informe"
-
-#: ../../godmode/netflow/nf_item_list.php:33
-msgid "Edit report"
-msgstr "Editar informe"
-
-#: ../../godmode/netflow/nf_item_list.php:53
-msgid "Netflow reports"
-msgstr "Informes Netflow"
-
-#: ../../godmode/netflow/nf_item_list.php:57
-msgid "Item list"
-msgstr "Lista de elementos"
-
-#: ../../godmode/netflow/nf_item_list.php:173
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2342
-#: ../../godmode/reporting/reporting_builder.item_editor.php:3021
-#: ../../enterprise/operation/log/log_viewer.php:500
-#: ../../enterprise/godmode/reporting/reporting_builder.global.php:338
-#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:436
-#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2395
-#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2964
-#: ../../include/lib/Dashboard/Widgets/top_n.php:267
-msgid "Order"
-msgstr "Orden"
-
-#: ../../godmode/netflow/nf_item_list.php:226
-#: ../../godmode/netflow/nf_item_list.php:231
-#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:325
-msgid "Move to down"
-msgstr "Bajar"
-
-#: ../../godmode/netflow/nf_item_list.php:228
-#: ../../godmode/netflow/nf_item_list.php:230
-#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:312
-msgid "Move to up"
-msgstr "Subir"
-
-#: ../../godmode/netflow/nf_item_list.php:277
-msgid "There are no defined items"
-msgstr "No hay elementos definidos"
-
-#: ../../godmode/netflow/nf_item_list.php:282
-#: ../../godmode/reporting/reporting_builder.item_editor.php:3699
-#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3451
-msgid "Create item"
-msgstr "Crear elemento"
-
-#: ../../godmode/netflow/nf_edit_form.php:53 ../../godmode/events/events.php:54
-msgid "Filter list"
-msgstr "Lista de filtros"
-
-#: ../../godmode/netflow/nf_edit_form.php:55
-#: ../../godmode/netflow/nf_edit_form.php:77
-msgid "Add filter"
-msgstr "Añadir filtro"
-
-#: ../../godmode/netflow/nf_edit_form.php:58
-msgid "Netflow Filter"
-msgstr "Filtro Netflow"
-
-#: ../../godmode/netflow/nf_edit_form.php:118
-#: ../../godmode/events/event_edit_filter.php:205
-#: ../../godmode/modules/manage_nc_groups.php:95
-#: ../../enterprise/tools/ipam/ipam_network_location_config.php:61
-#: ../../enterprise/godmode/reporting/graph_template_editor.php:155
-msgid "Not updated. Blank name"
-msgstr "No actualizado; nombre en blanco"
-
-#: ../../godmode/netflow/nf_edit_form.php:140 ../../godmode/setup/news.php:108
-#: ../../godmode/events/event_edit_filter.php:216
-#: ../../godmode/modules/manage_nc_groups.php:119
-#: ../../enterprise/tools/ipam/ipam_network_location_config.php:72
-msgid "Not updated. Error updating data"
-msgstr "No se ha podido actualizar. Error al actualizar los datos."
-
-#: ../../godmode/netflow/nf_edit_form.php:235
-msgid "Filter:"
-msgstr "Filtrar:"
-
-#: ../../godmode/snmpconsole/snmp_filters.php:41
-msgid "Filter overview"
-msgstr "Revisión del filtro"
-
-#: ../../godmode/snmpconsole/snmp_filters.php:108
-msgid "There was a problem updating the filter"
-msgstr "Error al actualizar el filtro"
-
-#: ../../godmode/snmpconsole/snmp_filters.php:126
-#: ../../godmode/snmpconsole/snmp_filters.php:152
-msgid "Description is empty"
-msgstr "La descripción está vacía"
-
-#: ../../godmode/snmpconsole/snmp_filters.php:129
-msgid "Filter is empty"
-msgstr "El filtro está vacío"
-
-#: ../../godmode/snmpconsole/snmp_filters.php:149
-msgid "Filters are empty"
-msgstr "Los filtros están vacíos"
-
-#: ../../godmode/snmpconsole/snmp_filters.php:159
-msgid "There was a problem creating the filter"
-msgstr "Error al crear el filtro"
-
-#: ../../godmode/snmpconsole/snmp_filters.php:164
-#: ../../godmode/snmpconsole/snmp_alert.php:283 ../../godmode/setup/news.php:66
-#: ../../godmode/setup/gis.php:47 ../../godmode/setup/links.php:44
-#: ../../godmode/agentes/planned_downtime.editor.php:416
-#: ../../godmode/agentes/configurar_agente.php:880
-#: ../../godmode/alerts/configure_alert_template.php:536
-#: ../../godmode/alerts/alert_commands.php:572
-#: ../../godmode/alerts/alert_list.php:178
-#: ../../godmode/users/profile_list.php:269
-#: ../../godmode/users/configure_user.php:474
-#: ../../godmode/modules/manage_nc_groups.php:84
-#: ../../enterprise/operation/agentes/transactional_map.php:134
-#: ../../enterprise/tools/ipam/ipam_network_location_config.php:50
-#: ../../enterprise/tools/ipam/ipam_action.php:214
-#: ../../enterprise/godmode/reporting/reporting_builder.template_editor.php:47
-#: ../../enterprise/godmode/setup/setup_metaconsole.php:125
-#: ../../enterprise/godmode/alerts/alert_inventory_builder.php:76
-#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:221
-#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:234
-#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:283
-#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:302
-#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:382
-#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:399
-#: ../../enterprise/godmode/servers/credential_boxes_satellite.php:80
-#: ../../enterprise/godmode/servers/credential_boxes_satellite.php:111
-#: ../../enterprise/godmode/servers/manage_export.php:112
-#: ../../enterprise/godmode/servers/manage_export.php:119
-#: ../../enterprise/include/class/NetworkConfigManager.class.php:1787
-#: ../../enterprise/include/class/NetworkConfigManager.class.php:1877
-#: ../../enterprise/include/class/NetworkConfigManager.class.php:1972
-#: ../../enterprise/include/class/NetworkConfigManager.class.php:2066
-#: ../../enterprise/include/ajax/servers.ajax.php:197
-#: ../../enterprise/include/ajax/servers.ajax.php:330
-#: ../../enterprise/meta/advanced/cron_main.php:158
-#: ../../enterprise/meta/advanced/cron_main.php:202
-#: ../../enterprise/meta/advanced/cron_main.php:295
-#: ../../enterprise/meta/advanced/links.php:49
-#: ../../include/functions_planned_downtimes.php:114
-#: ../../include/functions_planned_downtimes.php:832
-#: ../../include/functions_alerts.php:2738
-#: ../../include/class/CalendarManager.class.php:490
-#: ../../include/class/CalendarManager.class.php:843
-msgid "Successfully created"
-msgstr "Creado correctamente"
-
-#: ../../godmode/snmpconsole/snmp_filters.php:178
-msgid "There was a problem deleting the filter"
-msgstr "Error al borrar el filtro"
-
-#: ../../godmode/snmpconsole/snmp_filters.php:221
-#: ../../godmode/snmpconsole/snmp_filters.php:231
-msgid ""
-"This field contains a substring, could be part of a IP address, a numeric OID, "
-"or a plain substring"
-msgstr ""
-"Este campo contiene una subcadena que podría ser parte de una dirección IP, un "
-"OID numérico o una subcadena simple."
-
-#: ../../godmode/snmpconsole/snmp_filters.php:223
-msgid "Click to remove the filter"
-msgstr "Haz clic para quitar el filtro"
-
-#: ../../godmode/snmpconsole/snmp_filters.php:254
-#: ../../godmode/snmpconsole/snmp_filters.php:255
-msgid "Click to add new filter"
-msgstr "Haz clic para añadir filtro nuevo"
-
-#: ../../godmode/snmpconsole/snmp_alert.php:83
-#: ../../enterprise/godmode/alerts/alert_inventory_builder.php:278
-msgid "Update alert"
-msgstr "Actualizar alerta"
-
-#: ../../godmode/snmpconsole/snmp_alert.php:91
-#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:650
-#: ../../enterprise/meta/monitoring/wizard/wizard.manage_alert.php:104
-msgid "Create alert"
-msgstr "Crear alerta"
-
-#: ../../godmode/snmpconsole/snmp_alert.php:99
-msgid "Alert overview"
-msgstr "Vista general de alertas"
-
-#: ../../godmode/snmpconsole/snmp_alert.php:277
-msgid "There was a problem creating the alert"
-msgstr "Hubo un problema al crear la alerta"
-
-#: ../../godmode/snmpconsole/snmp_alert.php:413
-msgid "There was a problem updating the alert"
-msgstr "Hubo un problema al actualizar la alerta"
-
-#: ../../godmode/snmpconsole/snmp_alert.php:610
-#: ../../godmode/snmpconsole/snmp_alert.php:623
-msgid "There was a problem duplicating the alert"
-msgstr "Hubo un problema al duplicar la alerta"
-
-#: ../../godmode/snmpconsole/snmp_alert.php:616
-msgid "Successfully Duplicate"
-msgstr "Duplicada correctamente"
-
-#: ../../godmode/snmpconsole/snmp_alert.php:644
-msgid "There was a problem deleting the alert"
-msgstr "Error al borrar la alerta"
-
-#: ../../godmode/snmpconsole/snmp_alert.php:682
-#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:159
-#, php-format
-msgid "Successfully deleted alerts (%s / %s)"
-msgstr "Alertas eliminadas correctamente (%s / %s)"
-
-#: ../../godmode/snmpconsole/snmp_alert.php:686
-#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:167
-#, php-format
-msgid "Unsuccessfully deleted alerts (%s / %s)"
-msgstr "Error al eliminar las alertas (%s / %s)"
-
-#: ../../godmode/snmpconsole/snmp_alert.php:730
-msgid "Matches substrings. End the string with $ for exact matches."
-msgstr ""
-"Coincide con las subcadenas. Escriba $ al final de la cadena para encontrar "
-"coincidencias exactas."
-
-#: ../../godmode/snmpconsole/snmp_alert.php:735
-#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:301
-msgid "Custom Value/OID"
-msgstr "Valor/OID personalizado"
-
-#: ../../godmode/snmpconsole/snmp_alert.php:785
-#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:307
-msgid "Single value"
-msgstr "Valor único"
-
-#: ../../godmode/snmpconsole/snmp_alert.php:790
-#: ../../godmode/snmpconsole/snmp_alert.php:797
-#: ../../godmode/snmpconsole/snmp_alert.php:806
-#: ../../godmode/snmpconsole/snmp_alert.php:815
-#: ../../godmode/snmpconsole/snmp_alert.php:824
-#: ../../godmode/snmpconsole/snmp_alert.php:833
-#: ../../godmode/snmpconsole/snmp_alert.php:842
-#: ../../godmode/snmpconsole/snmp_alert.php:850
-#: ../../godmode/snmpconsole/snmp_alert.php:858
-#: ../../godmode/snmpconsole/snmp_alert.php:866
-#: ../../godmode/snmpconsole/snmp_alert.php:874
-#: ../../godmode/snmpconsole/snmp_alert.php:882
-#: ../../godmode/snmpconsole/snmp_alert.php:890
-#: ../../godmode/snmpconsole/snmp_alert.php:898
-#: ../../godmode/snmpconsole/snmp_alert.php:906
-#: ../../godmode/snmpconsole/snmp_alert.php:914
-#: ../../godmode/snmpconsole/snmp_alert.php:922
-#: ../../godmode/snmpconsole/snmp_alert.php:930
-#: ../../godmode/snmpconsole/snmp_alert.php:938
-#: ../../godmode/snmpconsole/snmp_alert.php:946
-msgid "Variable bindings/Data"
-msgstr "Enlaces variables/Datos"
-
-#: ../../godmode/snmpconsole/snmp_alert.php:988
-#: ../../godmode/alerts/configure_alert_template.php:691
-#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:309
-msgid "Min. number of alerts"
-msgstr "Número mínimo de alertas"
-
-#: ../../godmode/snmpconsole/snmp_alert.php:991
-#: ../../godmode/alerts/configure_alert_template.php:728
-#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:311
-msgid "Max. number of alerts"
-msgstr "Número máximo de alertas"
-
-#: ../../godmode/snmpconsole/snmp_alert.php:996
-#: ../../godmode/alerts/alert_view.php:262
-#: ../../godmode/alerts/configure_alert_template.php:676
-#: ../../godmode/alerts/alert_templates.php:91
-#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:313
-#: ../../enterprise/godmode/alerts/alert_inventory_builder.php:230
-#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2201
-#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:122
-msgid "Time threshold"
-msgstr "Umbral de tiempo"
-
-#: ../../godmode/snmpconsole/snmp_alert.php:1010
-#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:326
-msgid "Other value"
-msgstr "Otros valores"
-
-#: ../../godmode/snmpconsole/snmp_alert.php:1015
-#: ../../godmode/setup/setup_visuals.php:1030
-#: ../../godmode/setup/setup_visuals.php:1031
-#: ../../godmode/setup/setup_visuals.php:1342
-#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:327
-#: ../../enterprise/include/ajax/log_viewer.ajax.php:274
-#: ../../enterprise/meta/advanced/metasetup.visual.php:382
-#: ../../enterprise/meta/advanced/metasetup.visual.php:849
-#: ../../enterprise/meta/advanced/metasetup.visual.php:850
-#: ../../include/functions.php:499 ../../include/functions.php:630
-#: ../../include/functions_html.php:2107
-#: ../../include/functions_visual_map_editor.php:1223
-#: ../../include/functions_visual_map_editor.php:1224
-#: ../../include/class/AgentsAlerts.class.php:387
-msgid "seconds"
-msgstr "segundos"
-
-#: ../../godmode/snmpconsole/snmp_alert.php:1023
-#: ../../godmode/snmpconsole/snmp_alert.php:1220
-#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:455
-#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:567
-msgid "Alert action"
-msgstr "Acción de alerta"
-
-#: ../../godmode/snmpconsole/snmp_alert.php:1039
-#: ../../godmode/snmpconsole/snmp_alert.php:1217
-#: ../../godmode/reporting/visual_console_builder.elements.php:107
-#: ../../godmode/reporting/reporting_builder.list_items.php:371
-#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:332
-#: ../../include/functions_visual_map_editor.php:922
-#: ../../include/rest-api/models/VisualConsole/Item.php:2023
-#: ../../include/rest-api/models/VisualConsole/Items/Box.php:246
-msgid "Position"
-msgstr "Posición"
-
-#: ../../godmode/snmpconsole/snmp_alert.php:1043
-#: ../../godmode/alerts/configure_alert_template.php:749
-#: ../../enterprise/godmode/alerts/alert_inventory_builder.php:270
-#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1080
-msgid "Disable event"
-msgstr "Deshabilitar evento"
-
-#: ../../godmode/snmpconsole/snmp_alert.php:1074
-msgid ""
-"Search by these fields description, OID, Custom Value, SNMP Agent (IP), Single "
-"value, each Variable bindings/Datas."
-msgstr ""
-"Búsqueda por estos campos de descripción: OID, Valor personalizado, Agente "
-"SNMP (IP), Valor individual, cada Enlace Variable/Datos."
-
-#: ../../godmode/snmpconsole/snmp_alert.php:1093
-msgid "Alert SNMP control filter"
-msgstr "Filtro de control de alerta SNMP"
-
-#: ../../godmode/snmpconsole/snmp_alert.php:1178
-msgid "There are no SNMP alerts"
-msgstr "Ninguna alerta SNMP definida"
-
-#: ../../godmode/snmpconsole/snmp_alert.php:1229
-msgid "Custom Value/Enterprise String"
-msgstr "Valor personalizado/Cadena Enterprise"
-
-#: ../../godmode/snmpconsole/snmp_alert.php:1234
-#: ../../include/functions_treeview.php:454
-#: ../../include/functions_reporting_html.php:5037
-#: ../../include/functions_reporting_html.php:5159
-msgid "Times fired"
-msgstr "Nº de veces disparada"
-
-#: ../../godmode/snmpconsole/snmp_alert.php:1234
-msgid "TF."
-msgstr "TF."
-
-#: ../../godmode/snmpconsole/snmp_alert.php:1303
-#: ../../godmode/snmpconsole/snmp_alert.php:1304
-#: ../../godmode/reporting/reporting_builder.php:1196
-#: ../../godmode/agentes/module_manager.php:1166
-#: ../../godmode/alerts/alert_templates.php:431
-#: ../../godmode/alerts/alert_actions.php:435
-#: ../../godmode/modules/manage_network_components.php:859
-#: ../../godmode/modules/manage_network_components.php:860
-#: ../../enterprise/godmode/reporting/reporting_builder.template.php:627
-#: ../../enterprise/godmode/policies/policy_modules.php:1542
-#: ../../enterprise/godmode/modules/local_components.php:690
-#: ../../enterprise/include/class/NetworkConfigManager.class.php:628
-msgid "Duplicate"
-msgstr "Duplicar"
-
-#: ../../godmode/snmpconsole/snmp_alert.php:1317
-#: ../../godmode/alerts/alert_list.list.php:896
-#: ../../godmode/alerts/alert_list.list.php:903
-#: ../../godmode/alerts/alert_list.list.php:1129
-#: ../../enterprise/godmode/policies/policy_external_alerts.php:508
-#: ../../enterprise/godmode/policies/policy_alerts.php:754
-#: ../../enterprise/godmode/alerts/alert_inventory_list.php:344
-#: ../../enterprise/godmode/alerts/alert_inventory_list.php:350
-#: ../../enterprise/godmode/alerts/alert_inventory_list.php:444
-#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:508
-msgid "Add action"
-msgstr "Añadir acción"
-
-#: ../../godmode/snmpconsole/snmp_alert.php:1357
-msgid "ID Alert SNMP"
-msgstr "ID alerta SNMP"
-
-#: ../../godmode/snmpconsole/snmp_alert.php:1589
-msgid "Add action "
-msgstr "Añadir acción "
-
-#: ../../godmode/snmpconsole/snmp_trap_generator.php:38
-msgid "SNMP Trap generator"
-msgstr "Generador de traps SNMP"
-
-#: ../../godmode/snmpconsole/snmp_trap_generator.php:68
-msgid "Empty parameters"
-msgstr "Parámetros vacíos"
-
-#: ../../godmode/snmpconsole/snmp_trap_generator.php:74
-msgid "Successfully generated"
-msgstr "Generado correctamente"
-
-#: ../../godmode/snmpconsole/snmp_trap_generator.php:75
-#, php-format
-msgid "Could not be generated: %s"
-msgstr "No se pudo generar: %s"
-
-#: ../../godmode/snmpconsole/snmp_trap_generator.php:85
-msgid "Host address"
-msgstr "Dirección del host"
-
-#: ../../godmode/snmpconsole/snmp_trap_generator.php:95
-#: ../../include/functions_snmp_browser.php:727
-msgid "Community"
-msgstr "Comunidad"
-
-#: ../../godmode/snmpconsole/snmp_trap_generator.php:115
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2527
-#: ../../godmode/reporting/visual_console_builder.wizard.php:319
-#: ../../godmode/massive/massive_edit_modules.php:884
-#: ../../godmode/setup/setup_visuals.php:1288
-#: ../../godmode/setup/setup_visuals.php:1349
-#: ../../godmode/setup/setup_visuals.php:1369
-#: ../../godmode/agentes/module_manager_editor_common.php:1214
-#: ../../godmode/alerts/configure_alert_template.php:816
-#: ../../enterprise/operation/services/services.service.php:124
-#: ../../enterprise/operation/services/services.list.php:506
-#: ../../enterprise/godmode/reporting/reporting_builder.global.php:405
-#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2519
-#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:827
-#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:376
-#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:548
-#: ../../enterprise/include/functions_reporting_csv.php:1158
-#: ../../enterprise/include/functions_reporting_csv.php:1184
-#: ../../enterprise/include/functions_reporting_csv.php:1215
-#: ../../enterprise/include/functions_reporting_csv.php:1270
-#: ../../enterprise/include/functions_reporting_csv.php:1374
-#: ../../enterprise/include/functions_reporting_csv.php:2681
-#: ../../enterprise/meta/advanced/metasetup.relations.php:430
-#: ../../enterprise/meta/include/functions_autoprovision.php:643
-#: ../../include/functions_netflow.php:212
-#: ../../include/functions_reports.php:1068
-#: ../../include/functions_snmp_browser.php:560
-#: ../../include/functions_graph.php:5453
-#: ../../include/functions_visual_map_editor.php:693
-#: ../../include/functions_reporting_html.php:940
-#: ../../include/functions_reporting_html.php:2180
-#: ../../include/functions_reporting_html.php:4646
-#: ../../include/functions_reporting_html.php:5156
-#: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:505
-#: ../../include/ajax/events.php:2003
-msgid "Value"
-msgstr "Valor"
-
-#: ../../godmode/snmpconsole/snmp_trap_generator.php:135
-msgid "SNMP Type"
-msgstr "Tipo de SNMP"
-
-#: ../../godmode/snmpconsole/snmp_trap_generator.php:168
-msgid "Generate trap"
-msgstr "Generar trap"
-
-#: ../../godmode/reporting/visual_console_builder.php:211
-msgid "This file isn't image"
-msgstr "El archivo no es una imagen."
-
-#: ../../godmode/reporting/visual_console_builder.php:214
-msgid "This file isn't image."
-msgstr "El archivo no es una imagen."
-
-#: ../../godmode/reporting/visual_console_builder.php:220
-#: ../../godmode/reporting/visual_console_builder.php:223
-msgid "File already are exists."
-msgstr "El archivo ya existe."
-
-#: ../../godmode/reporting/visual_console_builder.php:231
-#: ../../godmode/reporting/visual_console_builder.php:234
-msgid "The file have not image extension."
-msgstr "El archivo no tiene una extensión válida."
-
-#: ../../godmode/reporting/visual_console_builder.php:246
-#: ../../godmode/reporting/visual_console_builder.php:249
-#: ../../godmode/reporting/visual_console_builder.php:259
-#: ../../godmode/reporting/visual_console_builder.php:265
-msgid "Problems with move file to target."
-msgstr "Error al mover el archivo al objetivo"
-
-#: ../../godmode/reporting/visual_console_builder.php:302
-msgid "Successfully update."
-msgstr "Actualizado correctamente"
-
-#: ../../godmode/reporting/visual_console_builder.php:321
-msgid "Could not be update."
-msgstr "No se puede actualizar"
-
-#: ../../godmode/reporting/visual_console_builder.php:341
-msgid "Successfully created."
-msgstr "Creado correctamente"
-
-#: ../../godmode/reporting/visual_console_builder.php:360
-msgid "Could not be created."
-msgstr "No se pudo crear"
-
-#: ../../godmode/reporting/visual_console_builder.php:408
-msgid "Successfully multiple delete."
-msgstr "Supresión múltiple realizada correctamente"
-
-#: ../../godmode/reporting/visual_console_builder.php:409
-msgid "Unsuccessful multiple delete."
-msgstr "Error de supresión múltiple"
-
-#: ../../godmode/reporting/visual_console_builder.php:529
-msgid "Successfully delete."
-msgstr "Borrado satisfactoriamente"
-
-#: ../../godmode/reporting/visual_console_builder.php:844
-#: ../../enterprise/meta/screens/screens.visualmap.php:297
-msgid "New visual console"
-msgstr "Nueva consola visual"
-
-#: ../../godmode/reporting/visual_console_builder.elements.php:105
-#: ../../godmode/reporting/visual_console_builder.wizard.php:151
-#: ../../enterprise/include/rest-api/models/VisualConsole/Items/Service.php:236
-#: ../../include/functions_visual_map_editor.php:250
-#: ../../include/functions_filemanager.php:641
-#: ../../include/rest-api/models/VisualConsole/Items/Icon.php:175
-#: ../../include/rest-api/models/VisualConsole/Items/Group.php:522
-#: ../../include/rest-api/models/VisualConsole/Items/StaticGraph.php:336
-msgid "Image"
-msgstr "Imagen"
-
-#: ../../godmode/reporting/visual_console_builder.elements.php:105
-#: ../../godmode/reporting/visual_console_builder.elements.php:575
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2090
-#: ../../godmode/reporting/create_container.php:480
-#: ../../godmode/reporting/create_container.php:624
-#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2154
-#: ../../include/functions_reports.php:561
-#: ../../include/functions_reports.php:648
-#: ../../include/functions_reports.php:654
-#: ../../include/functions_reporting.php:9845
-#: ../../include/functions_visual_map_editor.php:397
-#: ../../include/functions_visual_map_editor.php:400
-#: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:625
-msgid "Custom graph"
-msgstr "Gráfica personalizada"
-
-#: ../../godmode/reporting/visual_console_builder.elements.php:106
-msgid "Width x Height<br>Max value"
-msgstr "Ancho x Alto<br>Valor máximo"
-
-#: ../../godmode/reporting/visual_console_builder.elements.php:107
-#: ../../godmode/reporting/reporting_builder.item_editor.php:1258
-#: ../../godmode/reporting/visual_console_builder.wizard.php:242
-#: ../../godmode/reporting/graph_builder.main.php:196
-#: ../../godmode/agentes/module_manager_editor_prediction.php:179
-#: ../../enterprise/godmode/reporting/graph_template_editor.php:235
-#: ../../enterprise/godmode/reporting/reporting_builder.global.php:102
-#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1765
-#: ../../enterprise/include/functions_reporting_csv.php:483
-#: ../../enterprise/include/functions_reporting_csv.php:486
-#: ../../enterprise/include/functions_reporting_csv.php:710
-#: ../../enterprise/include/functions_reporting_csv.php:831
-#: ../../enterprise/include/functions_reporting_csv.php:914
-#: ../../enterprise/include/functions_reporting_csv.php:946
-#: ../../enterprise/include/functions_reporting_csv.php:1006
-#: ../../enterprise/include/functions_reporting_csv.php:1184
-#: ../../enterprise/include/functions_reporting_csv.php:1215
-#: ../../enterprise/include/functions_reporting_csv.php:1270
-#: ../../enterprise/include/functions_reporting_csv.php:1374
-#: ../../enterprise/include/functions_reporting_csv.php:1429
-#: ../../enterprise/include/functions_reporting_csv.php:1495
-#: ../../enterprise/include/functions_reporting_csv.php:1881
-#: ../../enterprise/include/functions_reporting_csv.php:1931
-#: ../../enterprise/include/functions_reporting_csv.php:2627
-#: ../../enterprise/include/functions_reporting_csv.php:2678
-#: ../../enterprise/include/functions_reporting_csv.php:2804
-#: ../../include/functions_visual_map_editor.php:788
-#: ../../include/rest-api/models/VisualConsole/Items/SimpleValue.php:394
-#: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:639
-#: ../../include/rest-api/models/VisualConsole/Items/BasicChart.php:313
-msgid "Period"
-msgstr "Período"
-
-#: ../../godmode/reporting/visual_console_builder.elements.php:108
-msgid "Map linked"
-msgstr "Mapa enlazado"
-
-#: ../../godmode/reporting/visual_console_builder.elements.php:118
-#: ../../enterprise/godmode/admin_access_logs.php:54
-#: ../../enterprise/godmode/policies/policy_agents.php:854
-#: ../../enterprise/godmode/policies/policy_agents.php:1369
-#: ../../include/class/AuditLog.class.php:128
-#: ../../mobile/operation/agents.php:407
-msgid "A."
-msgstr "A."
-
-#: ../../godmode/reporting/visual_console_builder.elements.php:151
-#: ../../godmode/reporting/visual_console_builder.data.php:169
-#: ../../include/functions_visual_map_editor.php:55
-#: ../../include/functions_visual_map_editor.php:632
-#: ../../include/lib/Dashboard/Widget.php:556
-msgid "Background"
-msgstr "Imagen de fondo"
-
-#: ../../godmode/reporting/visual_console_builder.elements.php:193
-msgid "Percentile Bar"
-msgstr "Barra de percentil"
-
-#: ../../godmode/reporting/visual_console_builder.elements.php:203
-msgid "Percentile Bubble"
-msgstr "Burbuja percentil"
-
-#: ../../godmode/reporting/visual_console_builder.elements.php:212
-#: ../../godmode/reporting/visual_console_builder.wizard.php:285
-#: ../../godmode/setup/setup_visuals.php:935
-#: ../../enterprise/meta/advanced/metasetup.visual.php:216
-#: ../../enterprise/meta/include/functions_meta.php:1348
-#: ../../include/functions_visual_map_editor.php:686
-#: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:458
-msgid "Percentile"
-msgstr "Percentil"
-
-#: ../../godmode/reporting/visual_console_builder.elements.php:251
-msgid "Simple Value (Process Max)"
-msgstr "Valor simple (máximo)"
-
-#: ../../godmode/reporting/visual_console_builder.elements.php:262
-msgid "Simple Value (Process Min)"
-msgstr "Valor simple (mínimo)"
-
-#: ../../godmode/reporting/visual_console_builder.elements.php:273
-msgid "Simple Value (Process Avg)"
-msgstr "Valor simple (media)"
-
-#: ../../godmode/reporting/visual_console_builder.elements.php:394
-#: ../../godmode/reporting/visual_console_builder.elements.php:832
-msgid "Edit label"
-msgstr "Editar etiqueta"
-
-#: ../../godmode/reporting/visual_console_builder.data.php:94
-msgid "Create visual console"
-msgstr "Crear consola visual"
-
-#: ../../godmode/reporting/visual_console_builder.data.php:106
-#: ../../godmode/setup/os.builder.php:35
-#: ../../enterprise/godmode/agentes/collections.data.php:425
-#: ../../enterprise/meta/advanced/collections.data.php:332
-#: ../../enterprise/meta/include/functions_autoprovision.php:566
-msgid "Name:"
-msgstr "Nombre:"
-
-#: ../../godmode/reporting/visual_console_builder.data.php:106
-msgid ""
-"Use [ or ( as first character, for example '[*] Map name', to render this map "
-"name in main menu"
-msgstr ""
-"Usa [ o ( como primer carácter. Por ejemplo \"[*] Nombre de mapa\", para "
-"renderizar este nombre de mapa en el menú principal."
-
-#: ../../godmode/reporting/visual_console_builder.data.php:179
-msgid "Background image"
-msgstr "Imagen de fondo"
-
-#: ../../godmode/reporting/visual_console_builder.data.php:181
-#: ../../include/functions_visual_map_editor.php:347
-#: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:524
-#: ../../include/rest-api/models/VisualConsole/Items/BarsGraph.php:469
-msgid "Background color"
-msgstr "Color de fondo"
-
-#: ../../godmode/reporting/visual_console_builder.data.php:211
-msgid "Layout size"
-msgstr "Tamaño del diseño"
-
-#: ../../godmode/reporting/visual_console_builder.data.php:214
-msgid "Set custom size"
-msgstr "Especificar tamaño personalizado"
-
-#: ../../godmode/reporting/visual_console_builder.data.php:220
-msgid "Get default image size"
-msgstr "Establecer el tamaño de imagen por defecto"
-
-#: ../../godmode/reporting/visual_console_builder.data.php:222
-msgid "Favourite visual console"
-msgstr "Consola visual favorita"
-
-#: ../../godmode/reporting/visual_console_builder.data.php:225
-msgid "Auto adjust to screen in fullscreen"
-msgstr "Ajuste automático a la pantalla en pantalla completa"
-
-#: ../../godmode/reporting/reporting_builder.item_editor.php:58
-#: ../../enterprise/godmode/reporting/reporting_builder.global.php:51
-#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:57
-#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:196
-msgid "Only table"
-msgstr "Solo tabla"
-
-#: ../../godmode/reporting/reporting_builder.item_editor.php:59
-#: ../../enterprise/godmode/reporting/reporting_builder.global.php:52
-#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:58
-#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:197
-msgid "Table & Graph"
-msgstr "Tabla y gráfico"
-
-#: ../../godmode/reporting/reporting_builder.item_editor.php:60
-#: ../../enterprise/godmode/reporting/reporting_builder.global.php:53
-#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:59
-#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:198
-msgid "Only graph"
-msgstr "Solo gráfico"
-
-#: ../../godmode/reporting/reporting_builder.item_editor.php:64
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2345
-#: ../../enterprise/operation/log/log_viewer.php:497
-#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:303
-#: ../../enterprise/godmode/reporting/reporting_builder.global.php:343
-#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:63
-#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:202
-#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2398
-#: ../../include/lib/Dashboard/Widgets/top_n.php:262
-msgid "Ascending"
-msgstr "Ascendente"
-
-#: ../../godmode/reporting/reporting_builder.item_editor.php:65
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2352
-#: ../../enterprise/operation/log/log_viewer.php:496
-#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:310
-#: ../../enterprise/godmode/reporting/reporting_builder.global.php:345
-#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:64
-#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:203
-#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2405
-#: ../../include/lib/Dashboard/Widgets/top_n.php:261
-msgid "Descending"
-msgstr "Descendente"
-
-#: ../../godmode/reporting/reporting_builder.item_editor.php:69
-#: ../../godmode/agentes/agent_manager.php:289
-#: ../../enterprise/include/functions_reporting_csv.php:718
-#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:255
-#: ../../enterprise/meta/include/functions_wizard_meta.php:188
-#: ../../enterprise/meta/include/functions_wizard_meta.php:1793
-#: ../../include/functions_reporting_html.php:1488
-msgid "Alias"
-msgstr "Alias"
-
-#: ../../godmode/reporting/reporting_builder.item_editor.php:78
-#: ../../godmode/update_manager/update_manager.history.php:40
-#: ../../godmode/servers/servers.build_table.php:68
-#: ../../godmode/extensions.php:139
-#: ../../enterprise/tools/ipam/ipam_calculator.php:52
-#: ../../enterprise/godmode/servers/list_satellite.php:39
-#: ../../enterprise/include/class/AgentRepository.class.php:366
-#: ../../enterprise/include/class/AgentRepository.class.php:632
-#: ../../enterprise/include/functions_reporting_csv.php:718
-#: ../../enterprise/meta/advanced/metasetup.consoles.php:838
-#: ../../enterprise/meta/advanced/servers.build_table.php:63
-#: ../../include/functions_snmp_browser.php:746
-#: ../../include/functions_reporting_html.php:1524
-msgid "Version"
-msgstr "Versión"
-
-#: ../../godmode/reporting/reporting_builder.item_editor.php:79
-#: ../../godmode/massive/massive_edit_agents.php:945
-#: ../../godmode/agentes/configurar_agente.php:603
-#: ../../godmode/agentes/configurar_agente.php:753
-#: ../../godmode/agentes/agent_manager.php:485
-#: ../../godmode/servers/servers.build_table.php:232
-#: ../../enterprise/godmode/policies/policy_agents.php:849
-msgid "Remote configuration"
-msgstr "Configuración remota"
-
-#: ../../godmode/reporting/reporting_builder.item_editor.php:189
-#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1985
-msgid "Local metaconsole"
-msgstr "Metaconsola local"
-
-#: ../../godmode/reporting/reporting_builder.item_editor.php:972
-#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1642
-msgid "Item Editor"
-msgstr "Editor de elemento"
-
-#: ../../godmode/reporting/reporting_builder.item_editor.php:993
-msgid "Not valid"
-msgstr "No válido"
-
-#: ../../godmode/reporting/reporting_builder.item_editor.php:1001
-msgid ""
-"This type of report brings a lot of data loading, it is recommended to use it "
-"for scheduled reports and not for real-time view."
-msgstr ""
-"Este tipo de informes tienen muchos datos que cargar. Recomendamos su uso para "
-"informes programados y no para informes de tiempo real."
-
-#: ../../godmode/reporting/reporting_builder.item_editor.php:1151
-msgid "Log number"
-msgstr "Número de logs"
-
-#: ../../godmode/reporting/reporting_builder.item_editor.php:1153
-msgid ""
-"Warning: this parameter limits the contents of the logs and affects the "
-"performance."
-msgstr ""
-"Advertencia: este parámetro limita los contenidos de los logs y afecta al "
-"rendimiento."
-
-#: ../../godmode/reporting/reporting_builder.item_editor.php:1165
-#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3382
-msgid "Filter by network"
-msgstr "Filtrar por red"
-
-#: ../../godmode/reporting/reporting_builder.item_editor.php:1184
-#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3412
-msgid "Show alive IPs only"
-msgstr "Mostrar solo IPs vivas"
-
-#: ../../godmode/reporting/reporting_builder.item_editor.php:1197
-#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3425
-msgid "Show IPs not assigned to an agent"
-msgstr "Mostrar IP no asignadas a un agente"
-
-#: ../../godmode/reporting/reporting_builder.item_editor.php:1212
-#: ../../godmode/reporting/create_container.php:364
-#: ../../godmode/reporting/create_container.php:473
-#: ../../godmode/reporting/create_container.php:527
-#: ../../godmode/reporting/reporting_builder.list_items.php:424
-#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:111
-#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:215
-#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1722
-#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:258
-msgid "Time lapse"
-msgstr "Intervalo de tiempo"
-
-#: ../../godmode/reporting/reporting_builder.item_editor.php:1214
-msgid ""
-"This is the range, or period of time over which the report renders the "
-"information for this report type. For example, a week means data from a week "
-"ago from now. "
-msgstr ""
-"Este es el lapso de tiempo que refleja el informe. Si es una semana, por "
-"ejemplo, el informe mostrará los datos desde hace una semana hasta ahora. "
-
-#: ../../godmode/reporting/reporting_builder.item_editor.php:1235
-#: ../../enterprise/godmode/reporting/reporting_builder.global.php:192
-#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1742
-#: ../../include/functions_reports.php:766
-msgid "Last value"
-msgstr "Último valor"
-
-#: ../../godmode/reporting/reporting_builder.item_editor.php:1237
-#: ../../godmode/reporting/reporting_builder.item_editor.php:6945
-#: ../../enterprise/godmode/reporting/reporting_builder.global.php:194
-#: ../../enterprise/godmode/reporting/reporting_builder.global.php:797
-#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1744
-#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:4993
-msgid ""
-"Warning: period 0 reports cannot be used to show information back in time. "
-"Information contained in this kind of reports will be always reporting the "
-"most recent information"
-msgstr ""
-"Advertencia: los informes en período 0 no pueden mostrar la información "
-"pasada. La información contenida en este tipo de informes mostrará siempre la "
-"información más reciente."
-
-#: ../../godmode/reporting/reporting_builder.item_editor.php:1277
-#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:759
-#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1784
-msgid "Projection period"
-msgstr "Período de proyección"
-
-#: ../../godmode/reporting/reporting_builder.item_editor.php:1296
-#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:734
-#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1803
-msgid "Data range"
-msgstr "Rango de datos"
-
-#: ../../godmode/reporting/reporting_builder.item_editor.php:1301
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2411
-#: ../../godmode/alerts/alert_view.php:266
-#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:737
-#: ../../enterprise/godmode/reporting/reporting_builder.global.php:273
-#: ../../enterprise/godmode/reporting/reporting_builder.global.php:385
-#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1810
-#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2449
-#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2206
-#: ../../enterprise/include/functions_reporting_csv.php:1030
-#: ../../enterprise/meta/include/functions_wizard_meta.php:976
-#: ../../enterprise/meta/include/functions_wizard_meta.php:985
-#: ../../enterprise/meta/include/functions_wizard_meta.php:1060
-#: ../../enterprise/meta/include/functions_wizard_meta.php:1069
-#: ../../enterprise/meta/include/functions_wizard_meta.php:1261
-#: ../../enterprise/meta/include/functions_wizard_meta.php:1270
-#: ../../enterprise/meta/include/functions_wizard_meta.php:1498
-#: ../../enterprise/meta/include/functions_wizard_meta.php:1507
-#: ../../enterprise/meta/include/functions_wizard_meta.php:1582
-#: ../../enterprise/meta/include/functions_wizard_meta.php:1591
-#: ../../enterprise/meta/include/functions_wizard_meta.php:1701
-#: ../../enterprise/meta/include/functions_wizard_meta.php:1710
-#: ../../include/functions_reporting.php:1524 ../../include/functions_ui.php:2604
-#: ../../include/functions_reporting_html.php:4692
-msgid "Min"
-msgstr "Mín."
-
-#: ../../godmode/reporting/reporting_builder.item_editor.php:1303
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2404
-#: ../../godmode/alerts/alert_view.php:266
-#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:745
-#: ../../enterprise/godmode/reporting/reporting_builder.global.php:285
-#: ../../enterprise/godmode/reporting/reporting_builder.global.php:378
-#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1808
-#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2442
-#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2206
-#: ../../enterprise/include/functions_reporting_csv.php:1030
-#: ../../enterprise/meta/include/functions_wizard_meta.php:978
-#: ../../enterprise/meta/include/functions_wizard_meta.php:987
-#: ../../enterprise/meta/include/functions_wizard_meta.php:1062
-#: ../../enterprise/meta/include/functions_wizard_meta.php:1071
-#: ../../enterprise/meta/include/functions_wizard_meta.php:1263
-#: ../../enterprise/meta/include/functions_wizard_meta.php:1272
-#: ../../enterprise/meta/include/functions_wizard_meta.php:1500
-#: ../../enterprise/meta/include/functions_wizard_meta.php:1509
-#: ../../enterprise/meta/include/functions_wizard_meta.php:1584
-#: ../../enterprise/meta/include/functions_wizard_meta.php:1593
-#: ../../enterprise/meta/include/functions_wizard_meta.php:1703
-#: ../../enterprise/meta/include/functions_wizard_meta.php:1712
-#: ../../include/functions_reporting.php:1520 ../../include/functions_ui.php:2604
-#: ../../include/functions_reporting_html.php:4691
-msgid "Max"
-msgstr "Máx."
-
-#: ../../godmode/reporting/reporting_builder.item_editor.php:1309
-#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:441
-#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1816
-msgid "Only display wrong SLAs"
-msgstr "Mostrar solo los SLA incorrectos"
-
-#: ../../godmode/reporting/reporting_builder.item_editor.php:1323
-#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1830
-msgid "Current month"
-msgstr "Mes actual"
-
-#: ../../godmode/reporting/reporting_builder.item_editor.php:1339
-#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1840
-msgid "Working time"
-msgstr "Tiempo de trabajo"
-
-#: ../../godmode/reporting/reporting_builder.item_editor.php:1348
-#: ../../godmode/alerts/alert_templates.php:64
-#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1848
-#: ../../enterprise/include/functions_reporting.php:1731
-#: ../../enterprise/include/functions_reporting.php:2462
-#: ../../enterprise/include/functions_reporting.php:2780
-#: ../../enterprise/include/functions_reporting.php:3405
-#: ../../enterprise/include/functions_reporting.php:4381
-#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:95
-#: ../../include/functions_html.php:2258
-#: ../../views/calendar/special_days_edit.php:116
-#: ../../views/calendar/special_days.php:92
-#: ../../views/calendar/special_days.php:358
-msgid "Monday"
-msgstr "Lunes"
-
-#: ../../godmode/reporting/reporting_builder.item_editor.php:1356
-#: ../../godmode/alerts/alert_templates.php:65
-#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1856
-#: ../../enterprise/include/functions_reporting.php:1732
-#: ../../enterprise/include/functions_reporting.php:2463
-#: ../../enterprise/include/functions_reporting.php:2781
-#: ../../enterprise/include/functions_reporting.php:3406
-#: ../../enterprise/include/functions_reporting.php:4382
-#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:96
-#: ../../include/functions_html.php:2259
-#: ../../views/calendar/special_days_edit.php:117
-#: ../../views/calendar/special_days.php:93
-#: ../../views/calendar/special_days.php:362
-msgid "Tuesday"
-msgstr "Martes"
-
-#: ../../godmode/reporting/reporting_builder.item_editor.php:1364
-#: ../../godmode/alerts/alert_templates.php:66
-#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1864
-#: ../../enterprise/include/functions_reporting.php:1733
-#: ../../enterprise/include/functions_reporting.php:2464
-#: ../../enterprise/include/functions_reporting.php:2782
-#: ../../enterprise/include/functions_reporting.php:3407
-#: ../../enterprise/include/functions_reporting.php:4383
-#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:97
-#: ../../include/functions_html.php:2260
-#: ../../views/calendar/special_days_edit.php:118
-#: ../../views/calendar/special_days.php:94
-#: ../../views/calendar/special_days.php:366
-msgid "Wednesday"
-msgstr "Miércoles"
-
-#: ../../godmode/reporting/reporting_builder.item_editor.php:1372
-#: ../../godmode/alerts/alert_templates.php:67
-#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1872
-#: ../../enterprise/include/functions_reporting.php:1734
-#: ../../enterprise/include/functions_reporting.php:2465
-#: ../../enterprise/include/functions_reporting.php:2783
-#: ../../enterprise/include/functions_reporting.php:3408
-#: ../../enterprise/include/functions_reporting.php:4384
-#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:98
-#: ../../include/functions_html.php:2261
-#: ../../views/calendar/special_days_edit.php:119
-#: ../../views/calendar/special_days.php:95
-#: ../../views/calendar/special_days.php:370
-msgid "Thursday"
-msgstr "Jueves"
-
-#: ../../godmode/reporting/reporting_builder.item_editor.php:1380
-#: ../../godmode/alerts/alert_templates.php:68
-#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1880
-#: ../../enterprise/include/functions_reporting.php:1735
-#: ../../enterprise/include/functions_reporting.php:2466
-#: ../../enterprise/include/functions_reporting.php:2784
-#: ../../enterprise/include/functions_reporting.php:3409
-#: ../../enterprise/include/functions_reporting.php:4385
-#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:99
-#: ../../include/functions_html.php:2262
-#: ../../views/calendar/special_days_edit.php:120
-#: ../../views/calendar/special_days.php:96
-#: ../../views/calendar/special_days.php:374
-msgid "Friday"
-msgstr "Viernes"
-
-#: ../../godmode/reporting/reporting_builder.item_editor.php:1388
-#: ../../godmode/alerts/alert_templates.php:69
-#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1888
-#: ../../enterprise/include/functions_reporting.php:1736
-#: ../../enterprise/include/functions_reporting.php:2467
-#: ../../enterprise/include/functions_reporting.php:2785
-#: ../../enterprise/include/functions_reporting.php:3410
-#: ../../enterprise/include/functions_reporting.php:4386
-#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:100
-#: ../../include/functions_html.php:2263
-#: ../../views/calendar/special_days_edit.php:121
-#: ../../views/calendar/special_days.php:97
-#: ../../views/calendar/special_days.php:378
-msgid "Saturday"
-msgstr "Sábado"
-
-#: ../../godmode/reporting/reporting_builder.item_editor.php:1396
-#: ../../godmode/alerts/alert_templates.php:70
-#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1896
-#: ../../enterprise/include/functions_reporting.php:1737
-#: ../../enterprise/include/functions_reporting.php:2468
-#: ../../enterprise/include/functions_reporting.php:2786
-#: ../../enterprise/include/functions_reporting.php:3411
-#: ../../enterprise/include/functions_reporting.php:4387
-#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:101
-#: ../../include/functions_html.php:2257
-#: ../../views/calendar/special_days_edit.php:122
-#: ../../views/calendar/special_days.php:98
-#: ../../views/calendar/special_days.php:382
-msgid "Sunday"
-msgstr "Domingo"
-
-#: ../../godmode/reporting/reporting_builder.item_editor.php:1405
-#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1905
-msgid "Time from"
-msgstr "Hora desde"
-
-#: ../../godmode/reporting/reporting_builder.item_editor.php:1423
-#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1923
-msgid "Time to"
-msgstr "Hora hasta"
-
-#: ../../godmode/reporting/reporting_builder.item_editor.php:1441
-#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1941
-msgid "Show 24x7 item"
-msgstr "Mostrar elementos 24/7"
-
-#: ../../godmode/reporting/reporting_builder.item_editor.php:1661
-#: ../../godmode/reporting/reporting_builder.item_editor.php:4027
-#: ../../godmode/reporting/reporting_builder.item_editor.php:4064
-#: ../../godmode/reporting/reporting_builder.item_editor.php:4233
-#: ../../godmode/reporting/reporting_builder.item_editor.php:4506
-#: ../../godmode/reporting/reporting_builder.item_editor.php:4540
-#: ../../godmode/reporting/reporting_builder.item_editor.php:4594
-#: ../../godmode/reporting/create_container.php:418
-#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3678
-#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3930
-#: ../../include/functions_ui.php:5776 ../../include/functions_html.php:5265
-msgid "Select an Agent first"
-msgstr "Debe seleccionar primero un agente"
-
-#: ../../godmode/reporting/reporting_builder.item_editor.php:1773
-msgid "Show modules"
-msgstr "Mostrar módulos"
-
-#: ../../godmode/reporting/reporting_builder.item_editor.php:1777
-#: ../../godmode/massive/massive_delete_alerts.php:339
-#: ../../godmode/massive/massive_add_alerts.php:264
-#: ../../godmode/massive/massive_edit_modules.php:528
-#: ../../godmode/massive/massive_delete_action_alerts.php:245
-#: ../../godmode/massive/massive_delete_modules.php:555
-#: ../../godmode/massive/massive_add_action_alerts.php:224
-#: ../../godmode/agentes/planned_downtime.editor.php:811
-#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:265
-#: ../../include/functions_html.php:1659 ../../include/functions_html.php:1678
-#: ../../extensions/agents_modules.php:436
-#: ../../extensions/agents_modules.php:439
-msgid "Show common modules"
-msgstr "Mostrar módulos comunes"
-
-#: ../../godmode/reporting/reporting_builder.item_editor.php:1778
-#: ../../godmode/massive/massive_delete_alerts.php:340
-#: ../../godmode/massive/massive_add_alerts.php:265
-#: ../../godmode/massive/massive_edit_modules.php:529
-#: ../../godmode/massive/massive_delete_action_alerts.php:246
-#: ../../godmode/massive/massive_delete_modules.php:556
-#: ../../godmode/massive/massive_add_action_alerts.php:225
-#: ../../godmode/agentes/planned_downtime.editor.php:812
-#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:266
-#: ../../include/functions_html.php:1660 ../../extensions/agents_modules.php:437
-msgid "Show all modules"
-msgstr "Mostrar todos los módulos"
-
-#: ../../godmode/reporting/reporting_builder.item_editor.php:1850
-#: ../../include/lib/Dashboard/Widgets/agent_module.php:265
-#: ../../extensions/agents_modules.php:400
-msgid "Information to be shown"
-msgstr "Información que debe mostrarse"
-
-#: ../../godmode/reporting/reporting_builder.item_editor.php:1854
-#: ../../include/lib/Dashboard/Widgets/agent_module.php:255
-#: ../../extensions/agents_modules.php:396
-msgid "Show module status"
-msgstr "Mostrar el estado del módulo"
-
-#: ../../godmode/reporting/reporting_builder.item_editor.php:1855
-#: ../../include/lib/Dashboard/Widgets/agent_module.php:256
-#: ../../extensions/agents_modules.php:397
-msgid "Show module data"
-msgstr "Mostrar datos del módulo"
-
-#: ../../godmode/reporting/reporting_builder.item_editor.php:1881
-#: ../../godmode/agentes/configurar_agente.php:739 ../../godmode/menu.php:144
-#: ../../godmode/menu.php:230
-#: ../../enterprise/godmode/reporting/graph_template_wizard.php:192
-#: ../../enterprise/godmode/reporting/visual_console_template.php:109
-#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:261
-#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:191
-#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2094
-#: ../../enterprise/include/functions_reporting.php:146
-#: ../../enterprise/include/functions_reporting.php:7976
-#: ../../enterprise/include/functions_reporting.php:8004
-#: ../../enterprise/include/functions_reporting.php:8075
-#: ../../enterprise/meta/include/functions_alerts_meta.php:129
-#: ../../enterprise/meta/include/functions_alerts_meta.php:160
-#: ../../enterprise/views/ncm/templates/list.php:32
-#: ../../include/functions_menu.php:515
-#: ../../include/class/ConfigPEN.class.php:332
-#: ../../include/class/ModuleTemplates.class.php:196
-#: ../../include/class/ModuleTemplates.class.php:214
-msgid "Templates"
-msgstr "Plantillas"
-
-#: ../../godmode/reporting/reporting_builder.item_editor.php:1946
-#: ../../godmode/category/category.php:170
-#: ../../godmode/agentes/fields_manager.php:121
-#: ../../godmode/agentes/planned_downtime.editor.php:921
-#: ../../godmode/agentes/modificar_agente.php:653
-#: ../../godmode/groups/group_list.php:853
-#: ../../godmode/alerts/alert_view.php:301
-#: ../../godmode/alerts/alert_list.builder.php:96
-#: ../../godmode/alerts/alert_list.list.php:120
-#: ../../godmode/alerts/alert_list.list.php:481
-#: ../../godmode/alerts/alert_commands.php:659 ../../godmode/menu.php:234
-#: ../../godmode/events/event_responses.list.php:53 ../../godmode/tag/tag.php:284
-#: ../../enterprise/operation/agentes/transactional_map.php:213
-#: ../../enterprise/operation/agentes/manage_transmap_creation.php:190
-#: ../../enterprise/operation/services/services.list.php:513
-#: ../../enterprise/tools/ipam/ipam_supernet_config.php:875
-#: ../../enterprise/tools/ipam/ipam_ajax.php:532
-#: ../../enterprise/tools/ipam/ipam_vlan_config.php:689
-#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:387
-#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2117
-#: ../../enterprise/godmode/setup/setup_skins.php:128
-#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:379
-#: ../../enterprise/godmode/agentes/inventory_manager.php:224
-#: ../../enterprise/godmode/agentes/agent_autoconfiguration.php:142
-#: ../../enterprise/godmode/agentes/collections.php:332
-#: ../../enterprise/godmode/policies/policy_external_alerts.php:350
-#: ../../enterprise/godmode/policies/policy_external_alerts.php:384
-#: ../../enterprise/godmode/policies/policy_external_alerts.php:682
-#: ../../enterprise/godmode/policies/policy_inventory_modules.php:305
-#: ../../enterprise/godmode/policies/policy_alerts.php:353
-#: ../../enterprise/godmode/alerts/alert_inventory_list.php:223
-#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2293
-#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2461
-#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3432
-#: ../../enterprise/include/class/ManageBackups.class.php:167
-#: ../../enterprise/include/functions_reporting_csv.php:2465
-#: ../../enterprise/meta/advanced/collections.php:339
-#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:468
-#: ../../enterprise/meta/include/functions_autoprovision.php:477
-#: ../../enterprise/meta/include/functions_alerts_meta.php:133
-#: ../../enterprise/meta/include/functions_alerts_meta.php:164
-#: ../../enterprise/meta/monitoring/wizard/wizard.php:140
-#: ../../enterprise/views/ncm/agent/details.php:485
-#: ../../include/functions_reporting.php:2721
-#: ../../include/functions_treeview.php:413 ../../include/functions_cron.php:469
-#: ../../include/functions_reporting_html.php:3134
-#: ../../include/class/AgentsAlerts.class.php:254
-#: ../../include/class/AgentsAlerts.class.php:285
-#: ../../include/functions_filemanager.php:607
-msgid "Actions"
-msgstr "Acciones"
-
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2075
-#: ../../enterprise/operation/inventory/inventory.php:420
-msgid "Last"
-msgstr "Último"
-
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2154
-msgid "Target server"
-msgstr "Servidor Target"
-
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2186
-#: ../../godmode/setup/news.php:205 ../../godmode/setup/setup_visuals.php:1289
-#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor_form.php:74
-#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:385
-#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2189
-#: ../../enterprise/include/functions_reporting_csv.php:2387
-#: ../../enterprise/include/functions_reporting_csv.php:2401
-#: ../../include/functions_reports.php:835
-#: ../../include/functions_reporting.php:6824
-#: ../../include/lib/Dashboard/Widgets/post.php:214
-msgid "Text"
-msgstr "Texto"
-
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2202
-#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2231
-msgid "Custom SQL template"
-msgstr "Plantilla SQL personalizada"
-
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2222
-#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:424
-#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2251
-#: ../../include/functions_reports.php:809
-msgid "SQL query"
-msgstr "Consulta SQL"
-
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2223
-#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2252
-msgid "The entities of the fields that contain them must be included."
-msgstr "Las entidades de los campos que los contienen deben estar incluidas."
-
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2237
-#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2198
-msgid "Max items"
-msgstr "Número máximo de elementos"
-
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2249
-#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:770
-#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2215
-msgid "Serialized header"
-msgstr "Cabecera serializada"
-
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2250
-#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:770
-#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2216
-msgid "The separator character is |"
-msgstr "El carácter separador es |"
-
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2280
-#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2277
-msgid "Protocol must be specified in URL (e.g.: \"https://\")"
-msgstr ""
-"El protocolo debe estar especificado en la URL (por ejemplo: \"https://\")"
-
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2286
-#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:774
-#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2283
-msgid "Field separator"
-msgstr "Separador de campo"
-
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2287
-#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:774
-#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2284
-msgid "Separator for different fields in the serialized text chain"
-msgstr "Separador para diferentes campos en la cadena de texto serializada"
-
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2307
-#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:778
-#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2304
-msgid "Line separator"
-msgstr "Separador de línea"
-
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2308
-#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:778
-#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2305
-msgid ""
-"Separator in different lines (composed by fields) of the serialized text chain"
-msgstr ""
-"Separador en diferentes líneas (compuestas por campos) de la cadena de texto "
-"serializada"
-
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2328
-#: ../../enterprise/godmode/reporting/reporting_builder.global.php:313
-#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2325
-msgid "Group by agent"
-msgstr "Agrupar por agente"
-
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2359
-#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:317
-#: ../../enterprise/godmode/reporting/reporting_builder.global.php:347
-#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2412
-#: ../../include/lib/Dashboard/Widgets/top_n.php:263
-msgid "By agent name"
-msgstr "Por nombre de agente"
-
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2371
-#: ../../enterprise/godmode/reporting/reporting_builder.global.php:355
-#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2424
-#: ../../include/lib/Dashboard/Widgets/top_n.php:249
-msgid "Quantity (n)"
-msgstr "Cantidad (n)"
-
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2418
-#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2456
-#: ../../enterprise/include/functions_reporting_csv.php:1030
-#: ../../include/functions_reporting.php:1530
-#: ../../include/functions_reporting_html.php:4690
-msgid "Avg"
-msgstr "Media"
-
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2432
-#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:523
-#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2469
-msgid "Graph render"
-msgstr "Representar en gráfica"
-
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2438
-#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:529
-#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2475
-msgid "Avg, max & min"
-msgstr "Media, máx. y mín."
-
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2439
-#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:530
-#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2476
-msgid "Max only"
-msgstr "Solo máx."
-
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2440
-#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:531
-#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2477
-msgid "Min only"
-msgstr "Solo mín."
-
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2441
-#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:532
-#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2478
-msgid "Avg only"
-msgstr "Solo media"
-
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2455
-msgid "Macros definition"
-msgstr "Definición de macros"
-
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2466
-msgid "Render definition"
-msgstr "Definición de renderizado"
-
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2467
-msgid ""
-"Be aware because not all CSS inline styles are supported in the pdf library"
-msgstr ""
-"Tenga en cuenta que no todos los estilos CSS inline son compatibles con la "
-"biblioteca PDF"
-
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2487
-#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:559
-#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2491
-msgid "Full resolution graph (TIP)"
-msgstr "Gráfica a resolución completa (TIP)"
-
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2522
-#: ../../godmode/reporting/graph_builder.main.php:245
-#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:576
-#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2502
-#: ../../include/functions.php:4108 ../../include/functions.php:4116
-msgid "Percentil"
-msgstr "Percentil"
-
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2542
-#: ../../enterprise/godmode/reporting/reporting_builder.global.php:417
-#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2533
-#: ../../enterprise/godmode/alerts/alert_inventory_builder.php:215
-msgid "Condition"
-msgstr "Condición"
-
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2546
-#: ../../enterprise/godmode/reporting/reporting_builder.global.php:422
-#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2536
-#: ../../include/functions_reporting.php:3070
-msgid "Everything"
-msgstr "Todo"
-
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2547
-msgid "Greater or equal (>=)"
-msgstr "Mayor o igual (>=)"
-
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2548
-msgid "Less or equal (<=)"
-msgstr "Menor o igual (<=)"
-
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2549
-msgid "Less (<)"
-msgstr "Menor a (<)"
-
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2550
-msgid "Greater (>)"
-msgstr "Mayor a (>)"
-
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2551
-msgid "Equal (=)"
-msgstr "Igual a (=)"
-
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2552
-msgid "Not equal (!=)"
-msgstr "No igual a (!=)"
-
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2554
-#: ../../enterprise/godmode/reporting/reporting_builder.global.php:430
-#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2564
-#: ../../include/functions_reporting_html.php:3263
-msgid "Not OK"
-msgstr "Mal"
-
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2566
-#: ../../enterprise/godmode/reporting/reporting_builder.global.php:438
-#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:447
-#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2576
-msgid "Show graph"
-msgstr "Mostrar gráfico"
-
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2580
-#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2590
-msgid "Select fields to show"
-msgstr "Seleccionar campos a mostrar"
-
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2588
-#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2598
-#: ../../enterprise/include/functions_reporting_csv.php:494
-#: ../../include/functions_reporting_html.php:3832
-msgid "Total time"
-msgstr "Tiempo total"
-
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2596
-#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2606
-#: ../../enterprise/include/functions_reporting_csv.php:498
-#: ../../include/functions_reporting_html.php:3838
-msgid "Time failed"
-msgstr "Tiempo en fallo"
-
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2604
-#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2614
-#: ../../enterprise/include/functions_reporting_csv.php:502
-msgid "Time in OK status"
-msgstr "Tiempo en estado OK"
-
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2612
-#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2622
-#: ../../enterprise/include/functions_reporting.php:4968
-#: ../../enterprise/include/functions_reporting_csv.php:506
-#: ../../include/functions_reporting_html.php:3850
-msgid "Time in warning status"
-msgstr "Tiempo en estado de advertencia"
-
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2620
-#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2630
-#: ../../enterprise/include/functions_reporting_csv.php:510
-msgid "Time in unknown status"
-msgstr "Tiempo en estado desconocido"
-
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2632
-#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2642
-#: ../../enterprise/include/functions_reporting_csv.php:514
-msgid "Time of not initialized module"
-msgstr "Tiempo de módulo no inicializado"
-
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2644
-#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2654
-#: ../../enterprise/include/functions_reporting_csv.php:518
-msgid "Time of downtime"
-msgstr "Tiempo de parada"
-
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2656
-#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:354
-#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2669
-msgid "Show address instead module name"
-msgstr "Mostrar la dirección en lugar del nombre del módulo"
-
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2657
-#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:355
-#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2670
-msgid "Show the main address of agent."
-msgstr "Mostrar la dirección principal del agente"
-
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2676
-#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:332
-#: ../../enterprise/godmode/reporting/reporting_builder.global.php:450
-#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2689
-msgid "Show resume"
-msgstr "Mostrar resumen"
-
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2677
-msgid ""
-"Show a summary chart with max, min and average number of total modules at the "
-"end of the report and Checks."
-msgstr ""
-"Mostrar una gráfica de sumario con el máximo, mínimo y la media del total de "
-"módulos al final del informe y las comprobaciones."
-
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2696
-#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2708
-msgid "<p class= \"mrgn_lft_15px\">Select fields to show</p>"
-msgstr "<p class= \"mrgn_lft_15px\">Seleccione campos a mostrar</p>"
-
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2704
-#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2716
-#: ../../enterprise/include/functions_reporting_csv.php:526
-#: ../../include/functions_reporting_html.php:3926
-msgid "Total checks"
-msgstr "Comprobaciones totales"
-
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2712
-#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2724
-#: ../../include/functions_reporting_html.php:3932
-msgid "Checks failed"
-msgstr "Comprobaciones fallidas"
-
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2720
-#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2732
-#: ../../enterprise/include/functions_reporting_csv.php:534
-msgid "Checks in OK status"
-msgstr "Comprobaciones en estado OK"
-
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2732
-msgid "Checks in Warning status"
-msgstr "Chequeos en estado Warning"
-
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2744
-#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2744
-#: ../../enterprise/include/functions_reporting_csv.php:538
-msgid "Unknown checks"
-msgstr "Comprobaciones desconocidas"
-
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2756
-#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2756
-msgid "<p class=\"mrgn_lft_15px\">Select fields to show</p>"
-msgstr "<p class=\"mrgn_lft_15px\">Seleccione campos a mostrar</p>"
-
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2764
-#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2764
-#: ../../enterprise/include/functions_reporting_csv.php:661
-#: ../../include/functions_reporting_html.php:4246
-msgid "Agent max value"
-msgstr "Valor máximo del agente"
-
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2772
-#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2772
-msgid "Agent min values"
-msgstr "Valores mínimos de agente"
-
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2785
-#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:591
-#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2784
-msgid "Show Summary group"
-msgstr "Mostrar el resumen del grupo"
-
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2802
-msgid "Only data"
-msgstr "Sólo datos"
-
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2871
-#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:655
-#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2870
-msgid "Event Status"
-msgstr "Estado del evento"
-
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2900
-msgid "Include extended events"
-msgstr "Incluir eventos ampliados"
-
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2919
-msgid "By agent "
-msgstr "Por agente "
-
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2929
-msgid "By user validator "
-msgstr "Por validador de usuario "
-
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2939
-msgid "By criticity "
-msgstr "Por prioridad "
-
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2949
-msgid "Validated vs unvalidated "
-msgstr "Validado vs invalidado "
-
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2963
-#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2985
-msgid "Query History Database"
-msgstr "Base de datos histórica de consultas"
-
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2964
-msgid ""
-"With the token enabled the query will affect the Historical Database, which "
-"may mean a small drop in performance."
-msgstr ""
-"Con el token habilitado, la consulta afectará a la base de datos histórica, "
-"que puede acarrear una bajada del rendimiento."
-
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2979
-#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2945
-msgid "Height (dynamic graphs)"
-msgstr "Altura (gráficos dinámicos)"
-
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2998
-#: ../../enterprise/godmode/reporting/reporting_builder.global.php:325
-#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2375
-msgid "Show in the same row"
-msgstr "Mostrar en la misma fila"
-
-#: ../../godmode/reporting/reporting_builder.item_editor.php:3000
-#: ../../enterprise/godmode/reporting/reporting_builder.global.php:326
-#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2377
-msgid "Show one module per row with all its operations"
-msgstr "Mostrar un módulo por fila con todas sus operaciones"
-
-#: ../../godmode/reporting/reporting_builder.item_editor.php:3022
-#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:436
-#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2965
-msgid "SLA items sorted by fulfillment value"
-msgstr "Elementos de SLA ordenados por valor rellenado"
-
-#: ../../godmode/reporting/reporting_builder.item_editor.php:3044
-#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2997
-msgid "Priority mode"
-msgstr "Modo de prioridad"
-
-#: ../../godmode/reporting/reporting_builder.item_editor.php:3049
-#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3002
-msgid "Priority ok mode"
-msgstr "Modo de prioridad ok"
-
-#: ../../godmode/reporting/reporting_builder.item_editor.php:3061
-#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3014
-msgid "Priority unknown mode"
-msgstr "Modo de prioridad desconocido"
-
-#: ../../godmode/reporting/reporting_builder.item_editor.php:3077
-#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:448
-#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:388
-#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3030
-msgid "Failover mode"
-msgstr "Modo conmutación"
-
-#: ../../godmode/reporting/reporting_builder.item_editor.php:3078
-#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:449
-#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:389
-#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3031
-msgid ""
-"SLA calculation must be performed taking into account the failover modules "
-"assigned to the primary module"
-msgstr ""
-"El SLA debe calcularse teniendo en cuenta los módulos de conmutación asignados "
-"al módulo primario"
-
-#: ../../godmode/reporting/reporting_builder.item_editor.php:3097
-#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:466
-#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:406
-#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3050
-msgid "Failover type"
-msgstr "Tipo de conmutación"
-
-#: ../../godmode/reporting/reporting_builder.item_editor.php:3102
-#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:471
-#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:411
-#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3055
-msgid "Failover normal"
-msgstr "Conmutación normal"
-
-#: ../../godmode/reporting/reporting_builder.item_editor.php:3114
-#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:483
-#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:423
-#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3067
-msgid "Failover simple"
-msgstr "Conmutación simple"
-
-#: ../../godmode/reporting/reporting_builder.item_editor.php:3130
-#: ../../godmode/wizards/DiscoveryTaskList.class.php:1417
-#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:453
-#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3083
-#: ../../include/functions_netflow.php:1183
-#: ../../include/functions_reporting_html.php:4530
-#: ../../include/functions_reporting_html.php:4800
-#: ../../include/functions_reporting_html.php:4937
-#: ../../include/lib/Dashboard/Widgets/tactical.php:286
-msgid "Summary"
-msgstr "Lista de agentes"
-
-#: ../../godmode/reporting/reporting_builder.item_editor.php:3149
-msgid "Include filter"
-msgstr "Incluir filtro"
-
-#: ../../godmode/reporting/reporting_builder.item_editor.php:3153
-#: ../../godmode/reporting/reporting_builder.item_editor.php:3162
-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:3158
-msgid "Exclude filter"
-msgstr "Excluir filtro"
-
-#: ../../godmode/reporting/reporting_builder.item_editor.php:3169
-#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3254
-msgid "Calculate for custom intervals"
-msgstr "Calcular intervalos personalizados"
-
-#: ../../godmode/reporting/reporting_builder.item_editor.php:3181
-#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3266
-msgid "Time lapse intervals"
-msgstr "Intervalos de tiempo transcurrido"
-
-#: ../../godmode/reporting/reporting_builder.item_editor.php:3184
-#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3268
-msgid ""
-"Lapses of time in which the period is divided to make more precise calculations"
-msgstr ""
-"Lapsos de tiempo en los que el intervalo se divide para obtener cálculos más "
-"precisos"
-
-#: ../../godmode/reporting/reporting_builder.item_editor.php:3225
-#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3313
-msgid "Table only"
-msgstr "Solo tabla"
-
-#: ../../godmode/reporting/reporting_builder.item_editor.php:3236
-#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3323
-msgid "Graph only"
-msgstr "Solo gráfico"
-
-#: ../../godmode/reporting/reporting_builder.item_editor.php:3247
-#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3333
-msgid "Graph and table"
-msgstr "Gráfico y tabla"
-
-#: ../../godmode/reporting/reporting_builder.item_editor.php:3264
-#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:816
-#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3350
-msgid "Uncompress module"
-msgstr "Descomprimir módulo"
-
-#: ../../godmode/reporting/reporting_builder.item_editor.php:3265
-#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:817
-#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3351
-msgid "Use uncompressed module data."
-msgstr "Utilizar datos de módulos descomprimidos"
-
-#: ../../godmode/reporting/reporting_builder.item_editor.php:3288
-#: ../../include/functions_reporting.php:4444
-msgid "Unassigned group"
-msgstr "Grupo no asignado"
-
-#: ../../godmode/reporting/reporting_builder.item_editor.php:3334
-#: ../../include/functions_reporting.php:4438
-msgid "Unnasigned group"
-msgstr "Grupo no asignado"
-
-#: ../../godmode/reporting/reporting_builder.item_editor.php:3357
-msgid "Select by group"
-msgstr "Seleccionar por grupo"
-
-#: ../../godmode/reporting/reporting_builder.item_editor.php:3375
-#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2801
-msgid "Show Summary"
-msgstr "Mostrar resumen"
-
-#: ../../godmode/reporting/reporting_builder.item_editor.php:3392
-#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2341
-msgid "Group by"
-msgstr "Agrupar por"
-
-#: ../../godmode/reporting/reporting_builder.item_editor.php:3427
-#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:783
-#: ../../enterprise/godmode/reporting/reporting_builder.global.php:465
-#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:467
-#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3366
-msgid "Show item in landscape format (only PDF)"
-msgstr "Mostrar elemento en formato apaisado (solo PDF)"
-
-#: ../../godmode/reporting/reporting_builder.item_editor.php:3436
-#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:799
-#: ../../enterprise/godmode/reporting/reporting_builder.global.php:481
-#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:481
-#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3375
-msgid "Page break at the end of the item (only PDF)"
-msgstr "Salto de página después del elemento (solo PDF)"
-
-#: ../../godmode/reporting/reporting_builder.item_editor.php:3445
-msgid "Display options"
-msgstr "Mostrar opciones"
-
-#: ../../godmode/reporting/reporting_builder.item_editor.php:3503
-msgid "Agent group filter"
-msgstr "Filtro de grupo de agentes"
-
-#: ../../godmode/reporting/reporting_builder.item_editor.php:3523
-msgid "Agent OS filter"
-msgstr "Filtro del so del agente"
-
-#: ../../godmode/reporting/reporting_builder.item_editor.php:3549
-msgid "Agent custom field"
-msgstr "Campo personalizado de agente"
-
-#: ../../godmode/reporting/reporting_builder.item_editor.php:3571
-msgid "Agent custom field filter"
-msgstr "Filtro de campo personalizado de agente"
-
-#: ../../godmode/reporting/reporting_builder.item_editor.php:3595
-msgid "Agent status filter"
-msgstr "Filtro de estado del agente"
-
-#: ../../godmode/reporting/reporting_builder.item_editor.php:3633
-msgid "Agent version filter"
-msgstr "Filtro de versión del agente"
-
-#: ../../godmode/reporting/reporting_builder.item_editor.php:3657
-msgid "Agent has remote configuration"
-msgstr "El agente tiene configuración remota"
-
-#: ../../godmode/reporting/reporting_builder.item_editor.php:3658
-msgid "Filter agents by remote configuration enabled."
-msgstr "Filtrar agentes por configuración remota habilitada."
-
-#: ../../godmode/reporting/reporting_builder.item_editor.php:3669
-msgid "Agent module filter"
-msgstr "Filtro del módulo del agente"
-
-#: ../../godmode/reporting/reporting_builder.item_editor.php:3706
-#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3460
-#: ../../include/functions_visual_map_editor.php:1421
-#: ../../extensions/agents_modules.php:448
-msgid "Update item"
-msgstr "Actualizar elemento"
-
-#: ../../godmode/reporting/reporting_builder.item_editor.php:3775
-#: ../../godmode/reporting/reporting_builder.item_editor.php:4290
-msgid "Agent Failover"
-msgstr "Conmutación de agente"
-
-#: ../../godmode/reporting/reporting_builder.item_editor.php:3780
-#: ../../godmode/reporting/reporting_builder.item_editor.php:4293
-msgid "Module Failover"
-msgstr "Conmutación de módulo"
-
-#: ../../godmode/reporting/reporting_builder.item_editor.php:3788
-#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:25
-#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:166
-#: ../../enterprise/godmode/services/services.elements.php:95
-#: ../../enterprise/godmode/services/services.elements.php:181
-#: ../../enterprise/include/functions_reporting.php:6136
-#: ../../enterprise/include/functions_visual_map.php:539
-#: ../../enterprise/include/functions_visual_map_editor.php:30
-#: ../../enterprise/include/functions_visual_map_editor.php:41
-#: ../../enterprise/include/functions_visual_map_editor.php:54
-#: ../../enterprise/include/functions_visual_map_editor.php:85
-#: ../../enterprise/include/functions_services.php:1712
-#: ../../enterprise/include/rest-api/models/VisualConsole/Items/Service.php:288
-#: ../../include/lib/Dashboard/Widgets/service_map.php:287
-msgid "Service"
-msgstr "Servicio"
-
-#: ../../godmode/reporting/reporting_builder.item_editor.php:3793
-#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3509
-msgid "SLA Min. (value)"
-msgstr "Valor mínimo para el SLA"
-
-#: ../../godmode/reporting/reporting_builder.item_editor.php:3798
-#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3514
-msgid "SLA Max. (value)"
-msgstr "Valor máximo para el SLA"
-
-#: ../../godmode/reporting/reporting_builder.item_editor.php:3803
-#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3519
-msgid "SLA Limit (%)"
-msgstr "Límite (%) para el SLA"
-
-#: ../../godmode/reporting/reporting_builder.item_editor.php:3820
-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:4266
-msgid "rate"
-msgstr "tasa"
-
-#: ../../godmode/reporting/reporting_builder.item_editor.php:4267
-#: ../../enterprise/include/ajax/top_n_widget.ajax.php:80
-msgid "max"
-msgstr "máx"
-
-#: ../../godmode/reporting/reporting_builder.item_editor.php:4268
-#: ../../enterprise/include/ajax/top_n_widget.ajax.php:81
-msgid "min"
-msgstr "mín"
-
-#: ../../godmode/reporting/reporting_builder.item_editor.php:4269
-#: ../../enterprise/include/ajax/top_n_widget.ajax.php:82
-msgid "sum"
-msgstr "suma"
-
-#: ../../godmode/reporting/reporting_builder.item_editor.php:4312
-#: ../../godmode/extensions.php:148
-#: ../../enterprise/godmode/reporting/reporting_builder.global.php:223
-#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3740
-#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:374
-#: ../../enterprise/godmode/policies/policy_queue.php:590
-#: ../../enterprise/godmode/policies/policy_queue.php:634
-#: ../../enterprise/include/class/CommandCenter.class.php:451
-#: ../../enterprise/include/functions_reporting_csv.php:1014
-#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:155
-#: ../../enterprise/meta/advanced/policymanager.queue.php:214
-#: ../../enterprise/meta/advanced/policymanager.queue.php:259
-#: ../../enterprise/meta/include/functions_autoprovision.php:641
-#: ../../include/functions_menu.php:597
-#: ../../include/functions_reporting_html.php:2179
-#: ../../include/functions_reporting_html.php:4643
-#: ../../include/class/ExternalTools.class.php:530
-#: ../../extensions/api_checker.php:156
-msgid "Operation"
-msgstr "Operación"
-
-#: ../../godmode/reporting/reporting_builder.item_editor.php:4314
-msgid ""
-"Please be careful, when the module have diferent intervals in their life, the "
-"summatory maybe get bad result."
-msgstr ""
-"Por favor, ten en cuenta que cuando el módulo tiene diferentes intervalos a lo "
-"largo de su historia, el sumatorio puede obtener resultados incorrectos."
-
-#: ../../godmode/reporting/reporting_builder.item_editor.php:4334
-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:4600
-#: ../../godmode/reporting/reporting_builder.item_editor.php:4604
-#: ../../godmode/reporting/reporting_builder.item_editor.php:4608
-#: ../../godmode/reporting/reporting_builder.item_editor.php:4612
-#: ../../godmode/reporting/reporting_builder.item_editor.php:4616
-#: ../../godmode/reporting/reporting_builder.item_editor.php:4620
-#: ../../godmode/reporting/reporting_builder.item_editor.php:4624
-#: ../../godmode/reporting/reporting_builder.item_editor.php:4628
-msgid "Item Editor Information"
-msgstr "Información de editor de elemento"
-
-#: ../../godmode/reporting/reporting_builder.item_editor.php:4601
-msgid "Please select a name."
-msgstr "Seleccione un nombre."
-
-#: ../../godmode/reporting/reporting_builder.item_editor.php:4605
-msgid "Please select an agent."
-msgstr "Seleccione un agente."
-
-#: ../../godmode/reporting/reporting_builder.item_editor.php:4609
-#: ../../godmode/agentes/planned_downtime.editor.php:1388
-msgid "Please select a module."
-msgstr "Por favor, seleccione un módulo."
-
-#: ../../godmode/reporting/reporting_builder.item_editor.php:4613
-msgid "Please insert a SQL query."
-msgstr "Inserte una consulta SQL."
-
-#: ../../godmode/reporting/reporting_builder.item_editor.php:4617
-msgid "Please insert a URL."
-msgstr "Inserte una URL."
-
-#: ../../godmode/reporting/reporting_builder.item_editor.php:4621
-msgid "Please checked a custom interval option."
-msgstr "Compruebe la opción de intervalo personalizado"
-
-#: ../../godmode/reporting/reporting_builder.item_editor.php:4625
-msgid "Please select a user."
-msgstr "Seleccione un usuario."
-
-#: ../../godmode/reporting/reporting_builder.item_editor.php:4629
-msgid "Please select a group."
-msgstr "Seleccione un grupo"
-
-#: ../../godmode/reporting/graph_builder.graph_editor.php:199
-#, php-format
-msgid ""
-"The maximum number of items in a chart is %d. You have %d elements, only first "
-"%d will be displayed."
-msgstr ""
-"El número máximo de elementos en una tabla es %d. Tiene %d elementos, solo se "
-"mostrarán los primeros %d."
-
-#: ../../godmode/reporting/graph_builder.graph_editor.php:215
-#: ../../godmode/reporting/graph_builder.graph_editor.php:345
-#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:187
-#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:242
-#: ../../include/functions.php:3973
-msgid "Weight"
-msgstr "Peso"
-
-#: ../../godmode/reporting/graph_builder.graph_editor.php:217
-#: ../../godmode/reporting/graph_builder.graph_editor.php:318
-#: ../../godmode/reporting/reporting_builder.list_items.php:440
-#: ../../godmode/reporting/reporting_builder.list_items.php:740
-#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:190
-#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2900
-#: ../../enterprise/include/functions_ipam.php:1639
-#: ../../enterprise/meta/include/functions_autoprovision.php:473
-#: ../../enterprise/meta/include/functions_autoprovision.php:640
-msgid "Sort"
-msgstr "Ordenar"
-
-#: ../../godmode/reporting/graph_builder.graph_editor.php:284
-#: ../../godmode/reporting/graph_builder.graph_editor.php:288
-#: ../../godmode/reporting/reporting_builder.list_items.php:706
-#: ../../godmode/reporting/reporting_builder.list_items.php:710
-msgid "Sort items"
-msgstr "Ordenar elementos"
-
-#: ../../godmode/reporting/graph_builder.graph_editor.php:291
-msgid "Sort selected items"
-msgstr "Ordenar elementos seleccionados"
-
-#: ../../godmode/reporting/graph_builder.graph_editor.php:294
-msgid "before to"
-msgstr "antes de"
-
-#: ../../godmode/reporting/graph_builder.graph_editor.php:295
-msgid "after to"
-msgstr "después de"
-
-#: ../../godmode/reporting/graph_builder.graph_editor.php:367
-#: ../../enterprise/meta/monitoring/wizard/wizard.php:145
-#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:384
-msgid "Please, select a module"
-msgstr "Por favor, selecciona un módulo."
-
-#: ../../godmode/reporting/graph_builder.graph_editor.php:407
-#: ../../godmode/reporting/reporting_builder.list_items.php:844
-msgid "Please select any item to order"
-msgstr "Por favor, selecciona cualquier elemento para ordenar."
-
-#: ../../godmode/reporting/reporting_builder.main.php:146
-msgid "Only the group can view the report"
-msgstr "Solo el grupo puede ver el informe."
-
-#: ../../godmode/reporting/reporting_builder.main.php:147
-msgid "The next group can edit the report"
-msgstr "El siguiente grupo puede editar el informe."
-
-#: ../../godmode/reporting/reporting_builder.main.php:148
-msgid "Only the user and admin user can edit the report"
-msgstr "Solo el usuario y el usuario administrador pueden editar el informe."
-
-#: ../../godmode/reporting/reporting_builder.main.php:150
-msgid "Write Access"
-msgstr "Permisos de escritura"
-
-#: ../../godmode/reporting/reporting_builder.main.php:152
-msgid ""
-"For example, you want a report that the people of \"All\" groups can see but "
-"you want to edit only for you or your group."
-msgstr ""
-"Por ejemplo, quieres un informe que las personas de \"Todos\" los grupos "
-"pueden ver, pero quieres que solo tú o tu grupo podáis editarlo."
-
-#: ../../godmode/reporting/reporting_builder.main.php:193
-msgid "Non interactive report"
-msgstr "Informe no interactivo"
-
-#: ../../godmode/reporting/reporting_builder.main.php:226
-#: ../../enterprise/godmode/reporting/reporting_builder.template_editor.php:222
-msgid "Generate cover page in PDF render"
-msgstr "Generar portada en formato PDF"
-
-#: ../../godmode/reporting/reporting_builder.main.php:234
-#: ../../enterprise/godmode/reporting/reporting_builder.template_editor.php:230
-msgid "Generate index in PDF render"
-msgstr "Generar índice en formato PDF"
-
-#: ../../godmode/reporting/graph_container.php:101
-#: ../../godmode/reporting/graph_container.php:109
-#: ../../godmode/reporting/create_container.php:188
-#: ../../enterprise/godmode/reporting/graph_template_wizard.php:127
-#: ../../enterprise/godmode/reporting/graph_template_list.php:111
-msgid "Graph container"
-msgstr "Contenedor de gráfica"
-
-#: ../../godmode/reporting/graph_container.php:134
-#: ../../godmode/reporting/create_container.php:196
-msgid "Create container"
-msgstr "Crear contenedor"
-
-#: ../../godmode/reporting/visual_console_builder.wizard.php:127
-#: ../../include/functions_visual_map_editor.php:56
-msgid "Static Graph"
-msgstr "Gráfico estático"
-
-#: ../../godmode/reporting/visual_console_builder.wizard.php:129
-#: ../../include/functions_visual_map.php:4179
-#: ../../include/functions_visual_map_editor.php:397
-#: ../../include/rest-api/models/VisualConsole/Item.php:2099
-#: ../../mobile/operation/home.php:102
-msgid "Module graph"
-msgstr "Gráfico de módulo"
-
-#: ../../godmode/reporting/visual_console_builder.wizard.php:130
-#: ../../include/functions_visual_map_editor.php:60
-msgid "Simple value"
-msgstr "Valor simple"
-
-#: ../../godmode/reporting/visual_console_builder.wizard.php:165
-msgid "Range between elements (px)"
-msgstr "Rango entre elementos (px)"
-
-#: ../../godmode/reporting/visual_console_builder.wizard.php:178
-msgid "Size (px)"
-msgstr "Tamaño (px)"
-
-#: ../../godmode/reporting/visual_console_builder.wizard.php:180
-#: ../../godmode/setup/gis_step_2.php:371
-#: ../../godmode/events/event_responses.editor.php:139
-#: ../../enterprise/godmode/reporting/graph_template_editor.php:208
-#: ../../include/functions_reports.php:1248
-#: ../../include/functions_visual_map_editor.php:97
-#: ../../include/functions_visual_map_editor.php:668
-#: ../../include/rest-api/models/VisualConsole/Items/NetworkLink.php:926
-#: ../../include/rest-api/models/VisualConsole/Items/Line.php:475
-msgid "Width"
-msgstr "Anchura"
-
-#: ../../godmode/reporting/visual_console_builder.wizard.php:181
-#: ../../godmode/setup/gis_step_2.php:378
-#: ../../godmode/events/event_responses.editor.php:141
-#: ../../enterprise/godmode/reporting/graph_template_editor.php:212
-#: ../../include/functions_reports.php:1264
-#: ../../include/functions_reports.php:1364
-#: ../../include/functions_visual_map_editor.php:673
-msgid "Height"
-msgstr "Altura"
-
-#: ../../godmode/reporting/visual_console_builder.wizard.php:215
-#: ../../enterprise/extensions/vmware/vmware_view.php:1754
-msgid "Font"
-msgstr "Fuente"
-
-#: ../../godmode/reporting/visual_console_builder.wizard.php:228
-#: ../../include/functions_config.php:1007
-msgid "Font size"
-msgstr "Tamaño de fuente"
-
-#: ../../godmode/reporting/visual_console_builder.wizard.php:256
-#: ../../include/functions_visual_map_editor.php:612
-#: ../../include/rest-api/models/VisualConsole/Items/SimpleValue.php:371
-msgid "Process"
-msgstr "Procesar"
-
-#: ../../godmode/reporting/visual_console_builder.wizard.php:259
-#: ../../include/functions_visual_map_editor.php:615
-msgid "Min value"
-msgstr "Valor mínimo"
-
-#: ../../godmode/reporting/visual_console_builder.wizard.php:260
-#: ../../godmode/reporting/visual_console_builder.wizard.php:278
-#: ../../include/functions_visual_map_editor.php:616
-#: ../../include/functions_visual_map_editor.php:682
-msgid "Max value"
-msgstr "Valor máx."
-
-#: ../../godmode/reporting/visual_console_builder.wizard.php:261
-#: ../../include/functions_visual_map_editor.php:617
-msgid "Avg value"
-msgstr "Valor medio"
-
-#: ../../godmode/reporting/visual_console_builder.wizard.php:273
-msgid "Width (px)"
-msgstr "Ancho (px)"
-
-#: ../../godmode/reporting/visual_console_builder.wizard.php:295
-#: ../../include/functions_visual_map_editor.php:687
-#: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:459
-msgid "Bubble"
-msgstr "Burbuja"
-
-#: ../../godmode/reporting/visual_console_builder.wizard.php:307
-#: ../../include/functions_visual_map_editor.php:711
-#: ../../include/functions_visual_map_editor.php:729
-#: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:509
-msgid "Value to show"
-msgstr "Valor para mostrar"
-
-#: ../../godmode/reporting/visual_console_builder.wizard.php:309
-#: ../../include/functions_visual_map_editor.php:692
-#: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:504
-msgid "Percent"
-msgstr "Porcentaje"
-
-#: ../../godmode/reporting/visual_console_builder.wizard.php:333
-#: ../../godmode/setup/os.php:225 ../../godmode/menu.php:278
-#: ../../enterprise/godmode/servers/HA_cluster.php:97
-#: ../../enterprise/meta/advanced/policymanager.apply.php:200
-#: ../../mobile/include/functions_web.php:28
-msgid "Servers"
-msgstr "Servidores"
-
-#: ../../godmode/reporting/visual_console_builder.wizard.php:378
-msgid "One item per agent"
-msgstr "Un elemento por agente"
-
-#: ../../godmode/reporting/visual_console_builder.wizard.php:408
-#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:207
-#: ../../enterprise/godmode/reporting/reporting_builder.global.php:220
-#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:291
-msgid "If you select several agents, only the common modules will be displayed"
-msgstr "Si selecciona varios agentes, solo se mostrarán los módulos comunes"
-
-#: ../../godmode/reporting/visual_console_builder.wizard.php:448
-#: ../../godmode/reporting/visual_console_builder.wizard.php:765
-msgid "Agent - Module"
-msgstr "Agente-Módulo"
-
-#: ../../godmode/reporting/visual_console_builder.wizard.php:465
-msgid "Enable link agent"
-msgstr "Habilitar el enlace del agente"
-
-#: ../../godmode/reporting/visual_console_builder.wizard.php:476
-msgid "Set Parent"
-msgstr "Establecer padre"
-
-#: ../../godmode/reporting/visual_console_builder.wizard.php:479
-msgid "Item created in the visualmap"
-msgstr "Elemento creado en el mapa visual"
-
-#: ../../godmode/reporting/visual_console_builder.wizard.php:480
-msgid "Use the agents relationship (from selected agents)"
-msgstr "Usar la relación entre agentes (de los agentes seleccionados)"
-
-#: ../../godmode/reporting/visual_console_builder.wizard.php:489
-msgid "Item in the map"
-msgstr "Elemento en el mapa"
-
-#: ../../godmode/reporting/visual_console_builder.wizard.php:490
-#, php-format
-msgid "The parenting relationships in %s will be drawn on the map."
-msgstr "Las relaciones de jerarquía de %s se muestran en el mapa."
-
-#: ../../godmode/reporting/visual_console_builder.wizard.php:510
-#: ../../godmode/reporting/visual_console_builder.wizard.php:514
-msgid "Are you sure to add many elements\\nin visual map?"
-msgstr ""
-"¿Estás seguro de que quieres añadir tantos elementos en la consola visual?"
-
-#: ../../godmode/reporting/visual_console_builder.wizard.php:538
-#: ../../enterprise/operation/agentes/agent_inventory.diff_view.php:173
-#: ../../enterprise/operation/agentes/agent_inventory.diff_view.php:176
-#: ../../mobile/operation/tactical.php:239 ../../mobile/operation/events.php:871
-#: ../../mobile/operation/agents.php:463 ../../mobile/operation/modules.php:799
-#: ../../mobile/operation/module_graph.php:477
-msgid "Loading..."
-msgstr "Cargando…"
-
-#: ../../godmode/reporting/visual_console_builder.wizard.php:686
-msgid "Please select any module or modules."
-msgstr "Por favor, selecciona cualquier módulo o módulos."
-
-#: ../../godmode/reporting/graph_builder.main.php:208
-#: ../../godmode/reporting/create_container.php:428
-#: ../../godmode/reporting/create_container.php:583
-#: ../../include/functions_visual_map_editor.php:554
-msgid "Type of graph"
-msgstr "Tipo de gráfica"
-
-#: ../../godmode/reporting/graph_builder.main.php:220
-#: ../../enterprise/operation/log/log_viewer.php:761
-msgid "Horizontal bars"
-msgstr "Barras horizontales"
-
-#: ../../godmode/reporting/graph_builder.main.php:221
-#: ../../enterprise/operation/log/log_viewer.php:762
-msgid "Vertical bars"
-msgstr "Barras verticales"
-
-#: ../../godmode/reporting/graph_builder.main.php:230
-msgid "Equalize maximum thresholds"
-msgstr "Igualar umbrales máximos"
-
-#: ../../godmode/reporting/graph_builder.main.php:258
-msgid "Add summatory series"
-msgstr "Añadir series sumatorias"
-
-#: ../../godmode/reporting/graph_builder.main.php:268
-msgid "Add average series"
-msgstr "Añadir series de promedios"
-
-#: ../../godmode/reporting/graph_builder.main.php:279
-msgid "Modules and series"
-msgstr "Módulos y series"
-
-#: ../../godmode/reporting/graph_builder.main.php:308
-#: ../../godmode/wizards/HostDevices.class.php:648
-#: ../../godmode/wizards/HostDevices.class.php:747
-#: ../../godmode/wizards/Wizard.main.php:416
-#: ../../godmode/wizards/DiscoveryTaskList.class.php:181
-#: ../../godmode/modules/manage_network_components_form.php:367
-#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:469
-#: ../../enterprise/include/class/MySQL.app.php:371
-#: ../../enterprise/include/class/SAP.app.php:401
-#: ../../enterprise/include/class/Azure.cloud.php:689
-#: ../../enterprise/include/class/VMware.app.php:455
-#: ../../enterprise/include/class/Omnishell.class.php:630
-#: ../../enterprise/include/class/Omnishell.class.php:980
-#: ../../enterprise/include/class/Omnishell.class.php:1349
-#: ../../enterprise/include/class/Aws.cloud.php:1126
-#: ../../enterprise/include/class/AlertCorrelationManager.class.php:285
-#: ../../enterprise/include/class/AlertCorrelationManager.class.php:339
-#: ../../enterprise/include/class/DB2.app.php:354
-#: ../../enterprise/include/class/Oracle.app.php:361
-#: ../../enterprise/include/class/Google.cloud.php:686
-#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:356
-#: ../../enterprise/include/lib/ClusterViewer/ClusterWizard.php:349
-#: ../../enterprise/include/lib/ClusterViewer/ClusterManager.php:752
-#: ../../include/class/HTML.class.php:419
-#: ../../include/class/CustomNetScan.class.php:314
-#: ../../include/class/CustomNetScan.class.php:422
-msgid "Go back"
-msgstr "Volver"
-
-#: ../../godmode/reporting/visual_console_favorite.php:72
-#: ../../godmode/reporting/map_builder.php:75
-#: ../../godmode/reporting/map_builder.php:121
-#: ../../enterprise/godmode/reporting/visual_console_template.php:63
-#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:62
-msgid "Visual Console List"
-msgstr "Lista de la consola visual"
-
-#: ../../godmode/reporting/visual_console_favorite.php:84
-#: ../../godmode/reporting/map_builder.php:87
-#: ../../enterprise/godmode/reporting/visual_console_template.php:75
-#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:74
-msgid "Visual Favourite Console"
-msgstr "Consola visual favorita"
-
-#: ../../godmode/reporting/visual_console_favorite.php:97
-#: ../../godmode/reporting/map_builder.php:100
-#: ../../enterprise/godmode/reporting/visual_console_template.php:88
-#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:87
-msgid "Visual Console Template"
-msgstr "Plantilla de la consola visual"
-
-#: ../../godmode/reporting/visual_console_favorite.php:109
-#: ../../godmode/reporting/map_builder.php:112
-#: ../../enterprise/godmode/reporting/visual_console_template.php:100
-#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:99
-msgid "Visual Console Template Wizard"
-msgstr "Asistente de plantilla de consola visual"
-
-#: ../../godmode/reporting/visual_console_favorite.php:118
-#: ../../enterprise/meta/general/main_header.php:247
-#: ../../enterprise/meta/general/main_menu.php:353
-msgid "Favourite Visual Console"
-msgstr "Consola visual favorita"
-
-#: ../../godmode/reporting/visual_console_favorite.php:185
-#: ../../godmode/reporting/map_builder.php:368
-msgid "Group Recursion"
-msgstr "Recursividad de grupo"
-
-#: ../../godmode/reporting/visual_console_favorite.php:223
-msgid "No favourite consoles defined"
-msgstr "No hay consolas favoritas"
-
-#: ../../godmode/reporting/graphs.php:106
-msgid "Graphs containers"
-msgstr "Contenedores de gráficos"
-
-#: ../../godmode/reporting/graphs.php:120
-msgid "List of custom graphs"
-msgstr "Lista de gráficos personalizados"
-
-#: ../../godmode/reporting/graphs.php:235
-#: ../../godmode/reporting/reporting_builder.php:779
-msgid "Free text for search: "
-msgstr "Texto libre de búsqueda "
-
-#: ../../godmode/reporting/graphs.php:236
-#: ../../godmode/reporting/reporting_builder.php:781
-msgid "Search by report name or description, list matches."
-msgstr "Búsqueda por nombre del informe o descripción, lista de coincidencias"
-
-#: ../../godmode/reporting/graphs.php:248
-#: ../../godmode/reporting/reporting_builder.php:807
-msgid "Show Option"
-msgstr "Mostrar opciones"
-
-#: ../../godmode/reporting/graphs.php:312
-#: ../../include/functions_container.php:148
-msgid "Number of Graphs"
-msgstr "Número de gráficos"
-
-#: ../../godmode/reporting/graphs.php:402
-msgid "Create graph"
-msgstr "Crear gráfico"
-
-#: ../../godmode/reporting/create_container.php:155
-msgid "Container name is missing."
-msgstr "Falta el nombre del contenedor."
-
-#: ../../godmode/reporting/create_container.php:205
-msgid "Container stored successfully"
-msgstr "Contenedor guardado correctamente"
-
-#: ../../godmode/reporting/create_container.php:205
-msgid "There was a problem storing container"
-msgstr "Hubo un problema al guardar el contenedor"
-
-#: ../../godmode/reporting/create_container.php:212
-msgid "Update the container"
-msgstr "Actualizar contenedor"
-
-#: ../../godmode/reporting/create_container.php:212
-msgid "Bad update the container"
-msgstr "Mala actualización del contenedor"
-
-#: ../../godmode/reporting/create_container.php:287
-msgid "Parent container"
-msgstr "Contenedor padre"
-
-#: ../../godmode/reporting/create_container.php:345
-#: ../../include/functions.php:2680
-msgid "custom"
-msgstr "personalizado"
-
-#: ../../godmode/reporting/create_container.php:347
-#: ../../godmode/reporting/create_container.php:348
-#: ../../godmode/reporting/create_container.php:349
-#: ../../include/functions.php:2692 ../../include/functions.php:2693
-#: ../../include/ajax/graph.ajax.php:147 ../../include/ajax/graph.ajax.php:148
-#: ../../include/ajax/graph.ajax.php:149
-#, php-format
-msgid "%s hours"
-msgstr "%s horas"
-
-#: ../../godmode/reporting/create_container.php:350
-#: ../../enterprise/godmode/reporting/graph_template_editor.php:222
-#: ../../include/functions.php:2694 ../../include/ajax/graph.ajax.php:150
-#: ../../include/ajax/module.php:203
-msgid "1 day"
-msgstr "1 día"
-
-#: ../../godmode/reporting/create_container.php:351
-#: ../../godmode/reporting/create_container.php:352
-#: ../../include/ajax/graph.ajax.php:151 ../../include/ajax/graph.ajax.php:152
-#, php-format
-msgid "%s days"
-msgstr "%s días"
-
-#: ../../godmode/reporting/create_container.php:353
-#: ../../include/functions.php:2695 ../../include/ajax/graph.ajax.php:153
-#: ../../include/ajax/module.php:204
-msgid "1 week"
-msgstr "1 semana"
-
-#: ../../godmode/reporting/create_container.php:354
-#: ../../enterprise/godmode/reporting/graph_template_editor.php:226
-#: ../../include/functions.php:2696 ../../include/ajax/graph.ajax.php:154
-#: ../../include/ajax/module.php:205
-msgid "15 days"
-msgstr "15 días"
-
-#: ../../godmode/reporting/create_container.php:355
-#: ../../include/functions.php:2697 ../../include/ajax/graph.ajax.php:155
-#: ../../include/ajax/module.php:206
-msgid "1 month"
-msgstr "1 mes"
-
-#: ../../godmode/reporting/create_container.php:365
-#: ../../godmode/reporting/create_container.php:474
-#: ../../godmode/reporting/create_container.php:528
-msgid ""
-"This is the interval or period of time with which the graph data will be "
-"obtained. For example, a week means data from a week ago from now. "
-msgstr ""
-"Este es el intervalo o período de tiempo en el que se obtendrán los datos de "
-"la gráfica. Por ejemplo, una semana significa que habrá datos desde hace una "
-"semana hasta ahora. "
-
-#: ../../godmode/reporting/create_container.php:448
-#: ../../godmode/reporting/create_container.php:501
-#: ../../godmode/reporting/create_container.php:596
-msgid "Add item"
-msgstr "Añadir elemento"
-
-#: ../../godmode/reporting/create_container.php:614
-msgid "There are no items in this container."
-msgstr "No hay elementos en este contenedor."
-
-#: ../../godmode/reporting/create_container.php:623
-msgid "Agent/Module"
-msgstr "Agente/módulo"
-
-#: ../../godmode/reporting/create_container.php:626
-msgid "M.Group"
-msgstr "M.Grupo"
-
-#: ../../godmode/reporting/visual_console_builder.editor.php:163
-msgid "Min allowed size is 1024x768"
-msgstr "El tamaño mínimo permitido es 1024x768"
-
-#: ../../godmode/reporting/visual_console_builder.editor.php:167
-msgid "Loading in progress"
-msgstr "Cargando"
-
-#: ../../godmode/reporting/visual_console_builder.editor.php:169
-msgid "Saving in progress"
-msgstr "Guardando"
-
-#: ../../godmode/reporting/visual_console_builder.editor.php:171
-msgid "Deletion in progress"
-msgstr "Eliminando"
-
-#: ../../godmode/reporting/reporting_builder.php:535
-#: ../../godmode/reporting/reporting_builder.php:3439
-#: ../../godmode/reporting/reporting_builder.php:3522
-#: ../../godmode/reporting/reporting_builder.php:3570
-msgid "Reports list"
-msgstr "Lista de informes"
-
-#: ../../godmode/reporting/reporting_builder.php:583
-msgid "List of reports"
-msgstr "Lista de informes"
-
-#: ../../godmode/reporting/reporting_builder.php:737
-#: ../../godmode/reporting/map_builder.php:315
-#: ../../godmode/reporting/map_builder.php:322
-#: ../../godmode/alerts/alert_commands.php:625
-#: ../../godmode/alerts/alert_actions.php:129
-#: ../../enterprise/godmode/reporting/reporting_builder.template.php:455
-#: ../../enterprise/godmode/policies/policies.php:235
-#: ../../include/functions_planned_downtimes.php:961
-#: ../../include/functions_agents.php:1018
-msgid "Successfully copied"
-msgstr "Copia realizada correctamente"
-
-#: ../../godmode/reporting/reporting_builder.php:738
-#: ../../godmode/alerts/alert_commands.php:626
-#: ../../godmode/alerts/alert_actions.php:130
-#: ../../enterprise/godmode/reporting/reporting_builder.template.php:456
-#: ../../enterprise/godmode/policies/policies.php:236
-#: ../../include/functions_planned_downtimes.php:958
-msgid "Could not be copied"
-msgstr "No se ha podido copiar"
-
-#: ../../godmode/reporting/reporting_builder.php:938
-#: ../../enterprise/godmode/reporting/reporting_builder.template.php:499
-#: ../../views/dashboard/formDashboard.php:91
-msgid "Private"
-msgstr "Privado"
-
-#: ../../godmode/reporting/reporting_builder.php:1046
-msgid "This report exceeds the item limit for realtime operations"
-msgstr ""
-"Este informe excede el tiempo límite para las operaciones de tiempo real."
-
-#: ../../godmode/reporting/reporting_builder.php:1055
-#: ../../enterprise/godmode/reporting/reporting_builder.template.php:565
-msgid "HTML view"
-msgstr "Vista HTML"
-
-#: ../../godmode/reporting/reporting_builder.php:1065
-#: ../../enterprise/godmode/reporting/reporting_builder.template.php:573
-msgid "Export to XML"
-msgstr "Exportar a XML"
-
-#: ../../godmode/reporting/reporting_builder.php:1262
-#: ../../enterprise/operation/agentes/agent_inventory.php:254
-#: ../../enterprise/operation/inventory/inventory.php:459
-#: ../../enterprise/operation/inventory/inventory.php:502
-#: ../../enterprise/operation/log/log_viewer.php:1256
-#: ../../enterprise/operation/log/log_viewer.php:1264
-#: ../../enterprise/godmode/agentes/collection_manager.php:196
-#: ../../include/functions_reporting.php:2687
-msgid "No data found."
-msgstr "No se encontraron datos."
-
-#: ../../godmode/reporting/reporting_builder.php:1278
-msgid "Create report"
-msgstr "Crear informe"
-
-#: ../../godmode/reporting/reporting_builder.php:3573
-msgid "Create Custom Report"
-msgstr "Crear informa personalizado"
-
-#: ../../godmode/reporting/reporting_builder.php:3660
-#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1624
-msgid "Successfull action"
-msgstr "Acción completada"
-
-#: ../../godmode/reporting/reporting_builder.php:3661
-msgid "Unsuccessful action<br><br>"
-msgstr "Acción fallida<br><br>"
-
-#: ../../godmode/reporting/reporting_builder.list_items.php:222
-#: ../../godmode/events/events.php:90 ../../godmode/events/events.php:110
-#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2843
-#: ../../enterprise/meta/general/main_header.php:291
-#: ../../enterprise/meta/general/main_menu.php:398
-#: ../../enterprise/meta/event/custom_events.php:69
-#: ../../enterprise/meta/event/custom_events.php:88
-msgid "Filters"
-msgstr "Filtros"
-
-#: ../../godmode/reporting/reporting_builder.list_items.php:378
-#: ../../godmode/reporting/reporting_builder.list_items.php:397
-#: ../../godmode/reporting/reporting_builder.list_items.php:416
-#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:207
-#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:226
-#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:245
-msgid "Ascendent"
-msgstr "Ascencente"
-
-#: ../../godmode/reporting/reporting_builder.list_items.php:385
-#: ../../godmode/reporting/reporting_builder.list_items.php:404
-#: ../../godmode/reporting/reporting_builder.list_items.php:420
-#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:214
-#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:233
-#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:252
-msgid "Descent"
-msgstr "Descendente"
-
-#: ../../godmode/reporting/reporting_builder.list_items.php:425
-#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:259
-msgid "Name or Description"
-msgstr "Nombre o descripción"
-
-#: ../../godmode/reporting/reporting_builder.list_items.php:427
-#: ../../godmode/update_manager/update_manager.php:42
-#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:261
-#: ../../enterprise/include/class/Omnishell.class.php:402
-#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2297
-#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2906
-#: ../../enterprise/include/class/AgentRepository.class.php:635
-#: ../../enterprise/include/class/DeploymentCenter.class.php:764
-#: ../../enterprise/include/class/LogSource.class.php:630
-#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:266
-#: ../../enterprise/extensions/vmware/vmware_view.php:1338
-#: ../../enterprise/views/cluster/list.php:64
-#: ../../enterprise/views/ncm/snippets/list.php:71
-#: ../../enterprise/views/ncm/vendors/list.php:71
-#: ../../enterprise/views/ncm/agent/details.php:92
-#: ../../enterprise/views/ncm/models/list.php:73
-#: ../../enterprise/views/ncm/templates/list.php:77
-#: ../../enterprise/views/ncm/firmwares/list.php:77
-#: ../../enterprise/views/ipam/sites/list.php:49
-#: ../../include/functions_events.php:302
-#: ../../include/class/CredentialStore.class.php:807
-#: ../../include/class/ConfigPEN.class.php:601
-#: ../../include/class/ExternalTools.class.php:383
-#: ../../views/calendar/list.php:96 ../../views/dashboard/header.php:80
-msgid "Options"
-msgstr "Opciones"
-
-#: ../../godmode/reporting/reporting_builder.list_items.php:445
-#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:409
-#: ../../include/functions_graph.php:1538
-msgid "No items."
-msgstr "Sin elementos"
-
-#: ../../godmode/reporting/reporting_builder.list_items.php:713
-msgid "Sort selected items from position: "
-msgstr "Ordenar elementos desde posición: "
-
-#: ../../godmode/reporting/reporting_builder.list_items.php:716
-msgid "Move before to"
-msgstr "Mover antes de"
-
-#: ../../godmode/reporting/reporting_builder.list_items.php:717
-msgid "Move after to"
-msgstr "Mover después de"
-
-#: ../../godmode/reporting/reporting_builder.list_items.php:757
-#: ../../godmode/reporting/reporting_builder.list_items.php:761
-msgid "Delete items"
-msgstr "Borrar elementos"
-
-#: ../../godmode/reporting/reporting_builder.list_items.php:764
-msgid "Delete selected items from position: "
-msgstr "Borrar los elementos seleccionados desde la posición: "
-
-#: ../../godmode/reporting/reporting_builder.list_items.php:767
-msgid "Delete above to"
-msgstr "Borrar lo que está encima de"
-
-#: ../../godmode/reporting/reporting_builder.list_items.php:768
-msgid "Delete below to"
-msgstr "Borrar lo que está debajo de"
-
-#: ../../godmode/reporting/reporting_builder.list_items.php:824
-msgid ""
-"Are you sure to sort the items into the report?\\n. This action change the "
-"sorting of items into data base."
-msgstr ""
-"¿Está seguro de que quiere clasificar los elementos en el informe?\\n. Esta "
-"acción podría cambiar la clasificación de los elementos en la base de datos."
-
-#: ../../godmode/reporting/reporting_builder.list_items.php:874
-msgid "Are you sure to delete the items into the report?\\n"
-msgstr "¿Estás seguro de que quieres borrar los elementos en el informe?\\n"
-
-#: ../../godmode/reporting/reporting_builder.list_items.php:901
-msgid "Please select any item to delete"
-msgstr "Por favor, selecciona cualquier elemento para borrarlo."
-
-#: ../../godmode/reporting/graph_builder.php:336
-msgid "Graph builder"
-msgstr "Creador de gráficos"
-
-#: ../../godmode/reporting/graph_builder.php:378
-msgid "Graph stored successfully"
-msgstr "Gráfica almacenada correctamente"
-
-#: ../../godmode/reporting/graph_builder.php:379
-msgid "There was a problem storing Graph"
-msgstr "Error al almacenar el gráfico"
-
-#: ../../godmode/reporting/graph_builder.php:386
-#: ../../godmode/agentes/configurar_agente.php:1938
-msgid "Module added successfully"
-msgstr "Módulo añadido correctamente"
-
-#: ../../godmode/reporting/graph_builder.php:387
-msgid "There was a problem adding Module"
-msgstr "Ha surgido un problema al añadir el módulo."
-
-#: ../../godmode/reporting/graph_builder.php:394
-msgid "Update the graph"
-msgstr "Actualizar el gráfico"
-
-#: ../../godmode/reporting/graph_builder.php:395
-msgid "Bad update the graph"
-msgstr "No se pudo actualizar el gráfico."
-
-#: ../../godmode/reporting/graph_builder.php:402
-msgid "Graph deleted successfully"
-msgstr "Gráfico borrado correctamente"
-
-#: ../../godmode/reporting/graph_builder.php:403
-msgid "There was a problem deleting Graph"
-msgstr "Ha surgido un problema al borrar el gráfico."
-
-#: ../../godmode/reporting/map_builder.php:318
-#: ../../godmode/reporting/map_builder.php:326
-msgid "Not copied. Error copying data"
-msgstr "Se ha producido un error al copiar los datos."
-
-#: ../../godmode/reporting/map_builder.php:384
-msgid "Map name"
-msgstr "Nombre del mapa"
-
-#: ../../godmode/reporting/map_builder.php:386
-msgid "Items"
-msgstr "Elementos"
-
-#: ../../godmode/reporting/map_builder.php:462
-#: ../../general/first_task/map_builder.php:23
-msgid "There are no visual console defined yet."
-msgstr "No hay consola visual definida todavía."
-
-#: ../../godmode/category/category.php:63 ../../godmode/category/category.php:77
-#: ../../godmode/category/edit_category.php:47
-#: ../../godmode/category/edit_category.php:61
-msgid "List categories"
-msgstr "Lista de categorías"
-
-#: ../../godmode/category/category.php:89 ../../godmode/category/category.php:91
-#: ../../godmode/category/edit_category.php:73
-#: ../../godmode/category/edit_category.php:75
-msgid "Categories configuration"
-msgstr "Configuración de categorías"
-
-#: ../../godmode/category/category.php:108
-#, php-format
-msgid ""
-"This node is configured with centralized mode. All categories information is "
-"read only. Go to %s to manage it."
-msgstr ""
-"Este nodo esta configurado con el modo centralizado. Toda la información de "
-"las políticas está en modo lectura. Vaya a %s para administrarlo."
-
-#: ../../godmode/category/category.php:123
-msgid "Error deleting category"
-msgstr "Error al eliminar la categoría"
-
-#: ../../godmode/category/category.php:129
-msgid "Successfully deleted category"
-msgstr "Categoría eliminada correctamente"
-
-#: ../../godmode/category/category.php:168
-msgid "Category name"
-msgstr "Nombre de la categoría"
-
-#: ../../godmode/category/category.php:226
-msgid "No categories found"
-msgstr "Ninguna categoría encontrada"
-
-#: ../../godmode/category/category.php:239
-#: ../../godmode/category/edit_category.php:171
-msgid "Create category"
-msgstr "Crear categoría"
-
-#: ../../godmode/category/edit_category.php:73
-msgid "Editor"
-msgstr "Editor"
-
-#: ../../godmode/category/edit_category.php:95
-msgid "Error updating category"
-msgstr "Error al actualizar categoría"
-
-#: ../../godmode/category/edit_category.php:101
-msgid "Successfully updated category"
-msgstr "Categoría actualizada correctamente"
-
-#: ../../godmode/category/edit_category.php:123
-msgid "Error creating category"
-msgstr "Error al crear categoría"
-
-#: ../../godmode/category/edit_category.php:131
-msgid "Successfully created category"
-msgstr "Categoría creada correctamente"
-
-#: ../../godmode/category/edit_category.php:163
-msgid "Update category"
-msgstr "Actualizar categoría"
-
-#: ../../godmode/um_client/index.php:96
-#, php-format
-msgid ""
-"You cannot use update manager %s. You are exceding monitoring limits by %s "
-"elements. Please update your license or disable enterprise section by moving "
-"enterprise directory to another location and try again."
-msgstr ""
-"No puede utilizar el administrador de actualizaciones %s. Estás exiendo los "
-"límites de supervisión al %s elementos. Actualice su licencia."
-
-#: ../../godmode/um_client/index.php:107
-#, php-format
-msgid ""
-"You cannot use update manager %s. This license has expired %d days ago. Please "
-"update your license or disable enterprise section by moving enterprise "
-"directory to another location and try again."
-msgstr ""
-"No puede utilizar el administrador de actualizaciones %s. Esta licencia ha "
-"caducado hace %d días. Actualice su licencia."
-
-#: ../../godmode/um_client/index.php:120
-#, php-format
-msgid ""
-"You cannot use update manager %s. This license is a trial license to test all "
-"%s features. Please update your license to unlock all %s features."
-msgstr ""
-"No puede utilizar el administrador de actualizaciones %s. Esta licencia es una "
-"licencia de prueba para probar todas las características %s. Actualice su "
-"licencia para desbloquear todas %s funciones."
-
-#: ../../godmode/um_client/index.php:215
-#, php-format
-msgid "Master server version %s does not match console version %s."
-msgstr ""
-"La versión maestra del servidor %s no coincide con la versión de consola %s."
-
-#: ../../godmode/um_client/index.php:227
-#, php-format
-msgid ""
-"'%s' recommended value is %s or greater. Please, change it on your PHP "
-"configuration file (php.ini) or contact with administrator"
-msgstr ""
-"El valor recomendado \"%s\" es %s o mayor. Por favor, cámbielo en su archivo "
-"de configuración PHP (php.ini) o póngase en contacto con el administrador"
-
-#: ../../godmode/um_client/index.php:316
-msgid "Update manager online requires registration."
-msgstr "Update Manager online requiere registro."
-
-#: ../../godmode/um_client/index.php:321
-msgid ""
-"Applying offline patches may make your console unusable, we recommend to "
-"completely backup your files before applying any patch."
-msgstr ""
-"La aplicación de parches sin conexión puede hacer que su consola sea "
-"inutilizable, le recomendamos que haga una copia de seguridad completa de sus "
-"archivos antes de aplicar cualquier parche."
-
-#: ../../godmode/massive/massive_operations.php:59
-msgid "Bulk alert add"
-msgstr "Añadir alerta masiva"
-
-#: ../../godmode/massive/massive_operations.php:60
-msgid "Bulk alert delete"
-msgstr "Eliminar alerta masiva"
-
-#: ../../godmode/massive/massive_operations.php:61
-msgid "Bulk alert actions add"
-msgstr "Añadir acciones de alerta masiva"
-
-#: ../../godmode/massive/massive_operations.php:62
-msgid "Bulk alert actions delete"
-msgstr "Eliminar acciones de alerta masiva"
-
-#: ../../godmode/massive/massive_operations.php:63
-msgid "Bulk alert enable/disable"
-msgstr "Habilitar/Deshabilitar alerta masiva"
-
-#: ../../godmode/massive/massive_operations.php:64
-msgid "Bulk alert setting standby"
-msgstr "Configuración standby de alertas masivas"
-
-#: ../../godmode/massive/massive_operations.php:68
-msgid "Bulk agent edit"
-msgstr "Edición agentes masiva"
-
-#: ../../godmode/massive/massive_operations.php:69
-#: ../../godmode/massive/massive_operations.php:73
-msgid "Bulk agent delete"
-msgstr "Eliminar agentes de forma masiva"
-
-#: ../../godmode/massive/massive_operations.php:79
-msgid "Bulk profile add"
-msgstr "Añadir perfiles de forma masiva"
-
-#: ../../godmode/massive/massive_operations.php:80
-msgid "Bulk profile delete"
-msgstr "Eliminar perfiles de forma masiva"
-
-#: ../../godmode/massive/massive_operations.php:87
-msgid "Bulk module edit"
-msgstr "Editar módulos de forma masiva"
-
-#: ../../godmode/massive/massive_operations.php:88
-msgid "Bulk module copy"
-msgstr "Copiar módulos de forma masiva"
-
-#: ../../godmode/massive/massive_operations.php:89
-msgid "Bulk module delete"
-msgstr "Eliminar módulos de forma masiva"
-
-#: ../../godmode/massive/massive_operations.php:93
-msgid "Bulk plugin edit"
-msgstr "Editar plugins de forma masiva"
-
-#: ../../godmode/massive/massive_operations.php:233 ../../godmode/menu.php:195
-msgid "Alerts operations"
-msgstr "Operaciones sobre alertas"
-
-#: ../../godmode/massive/massive_operations.php:245 ../../godmode/menu.php:192
-msgid "Users operations"
-msgstr "Operaciones sobre usuarios"
-
-#: ../../godmode/massive/massive_operations.php:257 ../../godmode/menu.php:188
-msgid "Agents operations"
-msgstr "Operaciones sobre agentes"
-
-#: ../../godmode/massive/massive_operations.php:269 ../../godmode/menu.php:189
-msgid "Modules operations"
-msgstr "Operaciones sobre módulos"
-
-#: ../../godmode/massive/massive_operations.php:281 ../../godmode/menu.php:190
-msgid "Plugins operations"
-msgstr "Operaciones de plugins"
-
-#: ../../godmode/massive/massive_operations.php:329 ../../godmode/menu.php:183
-#: ../../enterprise/meta/general/main_menu.php:482
-msgid "Bulk operations"
-msgstr "Operaciones masivas"
-
-#: ../../godmode/massive/massive_operations.php:347
-#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:207
-msgid ""
-"In order to perform massive operations, PHP needs a correct configuration in "
-"timeout parameters. Please, open your PHP configuration file (php.ini) for "
-"example: <i>sudo vi /etc/php5/apache2/php.ini;</i><br> And set your timeout "
-"parameters to a correct value: <br><i> max_execution_time = 0</i> and "
-"<i>max_input_time = -1</i>"
-msgstr ""
-"Para poder realizar operaciones masivas, PHP necesitas una configuración "
-"correcta de los parámetros de tiempo de espera. Por favor, abre el archivo de "
-"configuración PHP (php.ini), por ejemplo: <i>sudo vi /etc/php5/apache2/php.ini;"
-"</i><br>y fija los parámetros del tiempo de espera en un valor correcto: "
-"<br><i> max_execution_time = 0</i> y <i>max_input_time = -1</i>"
-
-#: ../../godmode/massive/massive_operations.php:389
-#, php-format
-msgid ""
-"No changes have been made because they exceed the maximum allowed (%d). Make "
-"fewer changes or contact the administrator."
-msgstr ""
-"No se han hecho cambios porque exceden el máximo permitido (%d). Haga menos "
-"cambios o póngase en contacto con el administrador."
-
-#: ../../godmode/massive/massive_operations.php:390
-#: ../../godmode/massive/massive_edit_plugins.php:921
-#: ../../enterprise/tools/ipam/ipam.php:300
-#: ../../enterprise/tools/ipam/ipam.php:361
-#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:692
-msgid "Massive operations"
-msgstr "Operaciones masivas"
-
-#: ../../godmode/massive/massive_operations.php:417
-#, php-format
-msgid "This node is configured with centralized mode. To delete agents go to %s"
-msgstr ""
-"Este nodo está configurado en modo centralizado. Para eliminar un agente, vaya "
-"a %s"
-
-#: ../../godmode/massive/massive_operations.php:440
-msgid "The blank fields will not be updated"
-msgstr "Los campos en blanco no se actualizarán."
-
-#: ../../godmode/massive/massive_delete_alerts.php:108
-#: ../../godmode/massive/massive_add_alerts.php:105
-msgid "No alert selected"
-msgstr "No se seleccionó ninguna alerta"
-
-#: ../../godmode/massive/massive_delete_alerts.php:113
-#: ../../godmode/massive/massive_delete_agents.php:61
-#: ../../godmode/massive/massive_add_alerts.php:100
-#: ../../godmode/massive/massive_edit_agents.php:172
-#: ../../godmode/massive/massive_delete_modules.php:87
-#: ../../godmode/massive/massive_add_action_alerts.php:75
-#: ../../enterprise/godmode/policies/policy_agents.php:1152
-#: ../../include/functions_visual_map.php:2566
-#: ../../include/functions_visual_map.php:2947
-msgid "No agents selected"
-msgstr "No se seleccionó ningún agente"
-
-#: ../../godmode/massive/massive_delete_alerts.php:271
-#: ../../godmode/massive/massive_add_alerts.php:280
-#: ../../godmode/massive/massive_standby_alerts.php:217
-#: ../../godmode/massive/massive_enable_disable_alerts.php:189
-#: ../../enterprise/godmode/massive/massive_add_alerts_policy.php:115
-#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:125
-#: ../../enterprise/godmode/policies/policy_alerts.php:642
-msgid "Alert template"
-msgstr "Plantilla de alerta"
-
-#: ../../godmode/massive/massive_delete_alerts.php:301
-msgid "Show alerts on disabled modules"
-msgstr "Mostrar alertas de módulos deshabilitados"
-
-#: ../../godmode/massive/massive_delete_alerts.php:305
-#: ../../godmode/massive/massive_delete_agents.php:199
-#: ../../godmode/massive/massive_add_alerts.php:228
-#: ../../godmode/massive/massive_standby_alerts.php:200
-#: ../../godmode/massive/massive_edit_agents.php:520
-#: ../../godmode/massive/massive_edit_modules.php:370
-#: ../../godmode/massive/massive_copy_modules.php:112
-#: ../../godmode/massive/massive_copy_modules.php:265
-#: ../../godmode/massive/massive_delete_action_alerts.php:221
-#: ../../godmode/massive/massive_delete_modules.php:386
-#: ../../godmode/massive/massive_add_action_alerts.php:209
-#: ../../godmode/massive/massive_enable_disable_alerts.php:171
-#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:115
-#: ../../enterprise/godmode/policies/policy_agents.php:454
-#: ../../enterprise/godmode/policies/policy_agents.php:485
-#: ../../enterprise/godmode/policies/policy_agents.php:549
-#: ../../enterprise/godmode/policies/policy_agents.php:814
-#: ../../include/functions_html.php:1248 ../../include/functions_html.php:1400
-#: ../../include/lib/Dashboard/Widgets/events_list.php:436
-msgid "Group recursion"
-msgstr "Recursión de grupos"
-
-#: ../../godmode/massive/massive_delete_alerts.php:335
-#: ../../godmode/massive/massive_add_alerts.php:260
-#: ../../godmode/massive/massive_edit_modules.php:524
-#: ../../godmode/massive/massive_delete_action_alerts.php:241
-#: ../../godmode/massive/massive_delete_modules.php:551
-#: ../../godmode/massive/massive_add_action_alerts.php:220
-#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:261
-msgid "When select agents"
-msgstr "Al seleccionar agentes"
-
-#: ../../godmode/massive/massive_delete_alerts.php:382
-#: ../../godmode/massive/massive_add_alerts.php:324
-#: ../../godmode/massive/massive_edit_agents.php:1199
-#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:359
-msgid ""
-"Unsucessful sending the data, please contact with your administrator or make "
-"with less elements."
-msgstr ""
-"Error al enviar los datos. Por favor, contacta con el administrador o "
-"inténtalo con menos elementos."
-
-#: ../../godmode/massive/massive_delete_agents.php:122
-#, php-format
-msgid ""
-"There was an error deleting the agent, the operation has been cancelled Could "
-"not delete agent %s"
-msgstr ""
-"Se produjo un error al eliminar el agente. La operación ha sido cancelada. No "
-"se pudo eliminar el agente %s."
-
-#: ../../godmode/massive/massive_delete_agents.php:132
-#, php-format
-msgid "Successfully deleted (%s)"
-msgstr "Borrado correctamente (%s)"
-
-#: ../../godmode/massive/massive_delete_agents.php:226
-#: ../../godmode/massive/massive_edit_agents.php:547
-msgid "Show agents"
-msgstr "Mostrar agentes"
-
-#: ../../godmode/massive/massive_delete_agents.php:252
-#: ../../enterprise/godmode/policies/policy_linking.php:153
-#: ../../enterprise/godmode/policies/policy_queue.php:655
-#: ../../include/functions_events.php:4993
-#: ../../include/lib/Dashboard/Widget.php:584
-msgid "Node"
-msgstr "Nodo"
-
-#: ../../godmode/massive/massive_add_alerts.php:168
-#: ../../godmode/massive/massive_add_action_alerts.php:160
-#: ../../godmode/alerts/alert_list.php:271
-#: ../../enterprise/godmode/alerts/alert_inventory_list.php:91
-msgid "Successfully added"
-msgstr "Añadido correctamente"
-
-#: ../../godmode/massive/massive_add_alerts.php:169
-#: ../../godmode/massive/massive_delete_action_alerts.php:175
-#: ../../godmode/massive/massive_add_action_alerts.php:75
-#: ../../godmode/massive/massive_add_action_alerts.php:134
-#: ../../godmode/massive/massive_add_action_alerts.php:160
-#: ../../godmode/massive/massive_add_action_alerts.php:163
-#: ../../godmode/massive/massive_add_action_alerts.php:166
-#: ../../godmode/alerts/alert_list.php:272
-#: ../../enterprise/godmode/policies/policy_external_alerts.php:201
-#: ../../enterprise/godmode/policies/policy_agents.php:251
-#: ../../enterprise/godmode/policies/policy_alerts.php:280
-#: ../../enterprise/godmode/alerts/alert_inventory_list.php:92
-msgid "Could not be added"
-msgstr "No se pudo añadir"
-
-#: ../../godmode/massive/massive_standby_alerts.php:102
-#: ../../godmode/alerts/alert_list.php:447
-#: ../../enterprise/godmode/policies/policy_alerts.php:204
-msgid "Successfully set off standby"
-msgstr "Se ha desactivado el modo standby"
-
-#: ../../godmode/massive/massive_standby_alerts.php:102
-#: ../../godmode/alerts/alert_list.php:448
-#: ../../enterprise/godmode/policies/policy_alerts.php:205
-msgid "Could not be set off standby"
-msgstr "No se pudo desactivar el modo standby"
-
-#: ../../godmode/massive/massive_standby_alerts.php:132
-#: ../../godmode/alerts/alert_list.php:420
-#: ../../enterprise/godmode/policies/policy_alerts.php:178
-msgid "Successfully set standby"
-msgstr "Modo standby activado"
-
-#: ../../godmode/massive/massive_standby_alerts.php:132
-#: ../../godmode/alerts/alert_list.php:421
-#: ../../enterprise/godmode/policies/policy_alerts.php:179
-msgid "Could not be set standby"
-msgstr "No se pudo establecer el modo standby"
-
-#: ../../godmode/massive/massive_standby_alerts.php:223
-msgid "Not standby alerts"
-msgstr "Alertas sin standby"
-
-#: ../../godmode/massive/massive_standby_alerts.php:223
-#: ../../godmode/massive/massive_standby_alerts.php:258
-#: ../../godmode/massive/massive_enable_disable_alerts.php:195
-#: ../../godmode/massive/massive_enable_disable_alerts.php:230
-#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:121
-#: ../../include/class/ModuleTemplates.class.php:1208
-msgid "Format"
-msgstr "Formato"
-
-#: ../../godmode/massive/massive_standby_alerts.php:252
-#: ../../godmode/massive/massive_standby_alerts.php:256
-msgid "Set standby selected alerts"
-msgstr "Poner en standby las alertas seleccionadas"
-
-#: ../../godmode/massive/massive_standby_alerts.php:258
-msgid "Standby alerts"
-msgstr "Alertas en standby"
-
-#: ../../godmode/massive/massive_edit_agents.php:176
-msgid "No values changed"
-msgstr "No se han cambiado los valores."
-
-#: ../../godmode/massive/massive_edit_agents.php:227
-msgid "Configuration files deleted successfully"
-msgstr "Los archivos de configuración se borraron correctamente."
-
-#: ../../godmode/massive/massive_edit_agents.php:228
-msgid "Configuration files cannot be deleted"
-msgstr "Los archivos de configuración no se pudieron borrar."
-
-#: ../../godmode/massive/massive_edit_agents.php:420
-#, php-format
-msgid "Agents updated successfully (%d)"
-msgstr "Agentes actualizados correctamente (%d)"
-
-#: ../../godmode/massive/massive_edit_agents.php:435
-#, php-format
-msgid "Agents cannot be updated (%d), ids (%s)"
-msgstr "Los agentes no se pueden actualizar (%d), identificadores (%s)"
-
-#: ../../godmode/massive/massive_edit_agents.php:450
-#, php-format
-msgid "Agent ID: %s cannot be updated custom fields (%s)"
-msgstr "ID del agente: %s no se pueden actualizar los campos personalizados (%s)"
-
-#: ../../godmode/massive/massive_edit_agents.php:470
-#, php-format
-msgid "Agent ID: %s cannot be updated %s secondary groups (%s)"
-msgstr "ID de agente: %s no se puede actualizar %s grupos secundarios (%s)"
-
-#: ../../godmode/massive/massive_edit_agents.php:661
-#: ../../godmode/agentes/agent_manager.php:547
-msgid "Cascade protection"
-msgstr "Protección en cascada"
-
-#: ../../godmode/massive/massive_edit_agents.php:669
-#: ../../godmode/massive/massive_edit_agents.php:694
-#: ../../godmode/massive/massive_edit_agents.php:711
-#: ../../godmode/massive/massive_edit_agents.php:725
-#: ../../godmode/massive/massive_edit_agents.php:749
-#: ../../godmode/massive/massive_edit_agents.php:859
-#: ../../godmode/massive/massive_edit_agents.php:906
-#: ../../godmode/massive/massive_edit_agents.php:981
-#: ../../godmode/massive/massive_edit_agents.php:985
-#: ../../godmode/massive/massive_edit_agents.php:994
-#: ../../godmode/massive/massive_edit_agents.php:1022
-#: ../../godmode/massive/massive_edit_agents.php:1091
-#: ../../godmode/massive/massive_edit_modules.php:615
-#: ../../godmode/massive/massive_edit_modules.php:637
-#: ../../godmode/massive/massive_edit_modules.php:706
-#: ../../godmode/massive/massive_edit_modules.php:728
-#: ../../godmode/massive/massive_edit_modules.php:759
-#: ../../godmode/massive/massive_edit_modules.php:768
-#: ../../godmode/massive/massive_edit_modules.php:827
-#: ../../godmode/massive/massive_edit_modules.php:845
-#: ../../godmode/massive/massive_edit_modules.php:864
-#: ../../godmode/massive/massive_edit_modules.php:868
-#: ../../godmode/massive/massive_edit_modules.php:879
-#: ../../godmode/massive/massive_edit_modules.php:899
-#: ../../godmode/massive/massive_edit_modules.php:924
-#: ../../godmode/massive/massive_edit_modules.php:936
-#: ../../godmode/massive/massive_edit_modules.php:997
-#: ../../godmode/massive/massive_edit_modules.php:1043
-#: ../../godmode/massive/massive_edit_modules.php:1061
-#: ../../godmode/massive/massive_edit_modules.php:1067
-#: ../../godmode/massive/massive_edit_modules.php:1080
-#: ../../godmode/massive/massive_edit_modules.php:1108
-#: ../../godmode/massive/massive_edit_modules.php:1212
-#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:28
-#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:315
-#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:330
-#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:552
-#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:573
-#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:643
-#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:664
-#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:695
-#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:704
-#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:763
-#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:786
-#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:807
-#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:811
-#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:822
-#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:842
-#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:867
-#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:883
-#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:944
-#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:967
-#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:985
-#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:991
-#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1004
-#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1032
-#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1134
-#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:510
-#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:524
-#: ../../include/functions_html.php:1838 ../../include/functions_html.php:1939
-#: ../../include/functions_html.php:2077
-msgid "No change"
-msgstr "Sin cambios"
-
-#: ../../godmode/massive/massive_edit_agents.php:798
-#: ../../godmode/agentes/module_manager_editor_common.php:567
-#: ../../godmode/agentes/agent_manager.php:198
-#: ../../godmode/groups/configure_group.php:238
-#: ../../enterprise/tools/ipam/ipam_excel.php:212
-#: ../../enterprise/tools/ipam/ipam_vlan_config.php:342
-#: ../../enterprise/tools/ipam/ipam_vlan_config.php:674
-#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:398
-msgid "Custom ID"
-msgstr "ID personalizado"
-
-#: ../../godmode/massive/massive_edit_agents.php:804
-#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:575
-#: ../../include/functions_html.php:5874
-msgid "Add secondary groups"
-msgstr "Añadir grupos secundarios"
-
-#: ../../godmode/massive/massive_edit_agents.php:830
-#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:582
-#: ../../include/functions_html.php:5887
-msgid "Remove secondary groups"
-msgstr "Eliminar grupos secundarios"
-
-#: ../../godmode/massive/massive_edit_agents.php:858
-#: ../../godmode/agentes/agent_manager.php:563
-msgid "Module definition"
-msgstr "Definición de módulos"
-
-#: ../../godmode/massive/massive_edit_agents.php:870
-#: ../../godmode/agentes/agent_manager.php:568
-msgid "Learning mode"
-msgstr "Modo de aprendizaje"
-
-#: ../../godmode/massive/massive_edit_agents.php:881
-#: ../../godmode/agentes/agent_manager.php:578
-msgid "Normal mode"
-msgstr "Modo normal"
-
-#: ../../godmode/massive/massive_edit_agents.php:892
-#: ../../godmode/agentes/agent_manager.php:588
-msgid "Autodisable mode"
-msgstr "Modo autodeshabilitado"
-
-#: ../../godmode/massive/massive_edit_agents.php:919
-msgid ""
-"If the remote configuration is enabled, it will also go into standby mode when "
-"disabling it."
-msgstr ""
-"Si la configuración remota está habilitada, también entrará en modo de espera "
-"cuando se deshabilite."
-
-#: ../../godmode/massive/massive_edit_agents.php:932
-msgid "Active"
-msgstr "Activo"
-
-#: ../../godmode/massive/massive_edit_agents.php:948
-msgid "Delete available remote configurations"
-msgstr "Borrar las configuraciones remotas disponibles"
-
-#: ../../godmode/massive/massive_edit_agents.php:952
-#: ../../godmode/agentes/agent_manager.php:502
-#: ../../enterprise/godmode/services/services.massive.meta.php:56
-#: ../../enterprise/godmode/services/services.massive.elements.php:93
-msgid "Not available"
-msgstr "No disponible"
-
-#: ../../godmode/massive/massive_edit_agents.php:980
-#: ../../godmode/agentes/agent_manager.php:652
-msgid "Agent icon"
-msgstr "Icono de agente"
-
-#: ../../godmode/massive/massive_edit_agents.php:981
-msgid "Without status"
-msgstr "Sin estado"
-
-#: ../../godmode/massive/massive_edit_agents.php:981
-#: ../../include/lib/Dashboard/Widgets/maps_status.php:360
-msgid "Bad"
-msgstr "Mal"
-
-#: ../../godmode/massive/massive_edit_agents.php:984
-#: ../../godmode/agentes/agent_conf_gis.php:124
-msgid "Ignore new GIS data:"
-msgstr "Ignorar nuevos datos GIS:"
-
-#: ../../godmode/massive/massive_edit_agents.php:991
-msgid "The agent still runs but the alerts and events will be stop"
-msgstr "El agente seguirá ejecutándose, pero las alertas y eventos se detendrán."
-
-#: ../../godmode/massive/massive_edit_agents.php:1006
-#: ../../godmode/agentes/agent_manager.php:479
-msgid "Safe operation mode"
-msgstr "Modo seguro de operación"
-
-#: ../../godmode/massive/massive_edit_agents.php:1008
-#, php-format
-msgid ""
-"This mode allow %s to disable all modules \n"
-"of this agent while the selected module is on CRITICAL status"
-msgstr ""
-"Este modo permite que %s deshabilite todos los módulos \n"
-"de este agente mientras el módulo seleccionado esté en estado CRÍTICO"
-
-#: ../../godmode/massive/massive_edit_agents.php:1016
-#: ../../godmode/agentes/module_manager_editor_common.php:1061
-#: ../../godmode/agentes/module_manager_editor_common.php:1071
-#: ../../godmode/groups/group_list.php:908
-#: ../../godmode/alerts/configure_alert_template.php:900
-#: ../../godmode/modules/manage_network_components_form_wizard.php:246
-#: ../../enterprise/tools/ipam/ipam_network.php:402
-#: ../../enterprise/tools/ipam/ipam_ajax.php:419
-#: ../../enterprise/tools/ipam/ipam_massive.php:103
-#: ../../enterprise/include/class/DatabaseHA.class.php:205
-#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3218
-#: ../../include/functions_visual_map_editor.php:825
-#: ../../include/functions_reporting_html.php:3352
-#: ../../include/rest-api/models/VisualConsole/Items/StaticGraph.php:398
-msgid "Enabled"
-msgstr "Habilitado"
-
-#: ../../godmode/massive/massive_edit_modules.php:137
-msgid "Error updating the modules from a module type"
-msgstr "Error al actualizar los módulos desde un tipo de módulos"
-
-#: ../../godmode/massive/massive_edit_modules.php:160
-msgid "Error updating the modules from an agent group"
-msgstr "Error al actualizar los módulos desde un grupo de agentes"
-
-#: ../../godmode/massive/massive_edit_modules.php:178
-msgid "Error updating the modules (maybe there was no field to update)"
-msgstr ""
-"Error al actualizar los módulos (puede que no hubiera ningún campo para "
-"actualizar)"
-
-#: ../../godmode/massive/massive_edit_modules.php:304
-#: ../../godmode/massive/massive_delete_modules.php:318
-msgid "Selection mode"
-msgstr "Modo de selección"
-
-#: ../../godmode/massive/massive_edit_modules.php:305
-#: ../../godmode/massive/massive_delete_modules.php:319
-msgid "Select modules first "
-msgstr "Seleccionar primero los módulos "
-
-#: ../../godmode/massive/massive_edit_modules.php:306
-#: ../../godmode/massive/massive_delete_modules.php:320
-msgid "Select agents first "
-msgstr "Seleccionar primero los agentes "
-
-#: ../../godmode/massive/massive_edit_modules.php:309
-#: ../../godmode/massive/massive_delete_modules.php:323
-#: ../../godmode/modules/manage_network_components_form_wizard.php:335
-#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:148
-msgid "Module type"
-msgstr "Tipo módulo"
-
-#: ../../godmode/massive/massive_edit_modules.php:325
-#: ../../godmode/massive/massive_delete_modules.php:343
-msgid "Select all modules of this type"
-msgstr "Seleccionar todos los módulos de este tipo"
-
-#: ../../godmode/massive/massive_edit_modules.php:356
-#: ../../godmode/massive/massive_delete_modules.php:372
-#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:211
-msgid "Agent group"
-msgstr "Grupo de agentes"
-
-#: ../../godmode/massive/massive_edit_modules.php:371
-#: ../../godmode/massive/massive_delete_modules.php:387
-msgid "Select all modules of this group"
-msgstr "Seleccionar todos los módulos de este grupo"
-
-#: ../../godmode/massive/massive_edit_modules.php:420
-#: ../../godmode/massive/massive_copy_modules.php:196
-#: ../../godmode/massive/massive_delete_modules.php:458
-msgid "Filter Modules"
-msgstr "Filtrar módulos"
-
-#: ../../godmode/massive/massive_edit_modules.php:436
-#: ../../godmode/massive/massive_delete_modules.php:477
-msgid "Select all modules"
-msgstr "Seleccionar todos los módulos"
-
-#: ../../godmode/massive/massive_edit_modules.php:438
-#: ../../godmode/massive/massive_delete_modules.php:479
-msgid "When select modules"
-msgstr "Cuando se seleccionan módulos"
-
-#: ../../godmode/massive/massive_edit_modules.php:442
-#: ../../godmode/massive/massive_delete_modules.php:483
-msgid "Show common agents"
-msgstr "Mostrar agentes comunes"
-
-#: ../../godmode/massive/massive_edit_modules.php:443
-#: ../../godmode/massive/massive_delete_modules.php:484
-msgid "Show all agents"
-msgstr "Mostrar todos los agentes"
-
-#: ../../godmode/massive/massive_edit_modules.php:468
-#: ../../enterprise/meta/monitoring/custom_fields_csv.php:102
-msgid "Agent Status"
-msgstr "Estado de agente"
-
-#: ../../godmode/massive/massive_edit_modules.php:506
-#: ../../include/lib/Dashboard/Widgets/tree_view.php:405
-msgid "Filter agents"
-msgstr "Filtrar agentes"
-
-#: ../../godmode/massive/massive_edit_modules.php:522
-#: ../../godmode/massive/massive_delete_modules.php:549
-msgid "Select all agents"
-msgstr "Seleccionar todos los agentes"
-
-#: ../../godmode/massive/massive_edit_modules.php:530
-#: ../../godmode/massive/massive_delete_action_alerts.php:247
-#: ../../godmode/massive/massive_delete_modules.php:557
-#: ../../godmode/massive/massive_add_action_alerts.php:226
-msgid "Show unknown and not init modules"
-msgstr "Mostrar módulos desconocidos y no iniciados"
-
-#: ../../godmode/massive/massive_edit_modules.php:552
-#: ../../godmode/modules/manage_network_components_form_common.php:146
-#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:489
-#: ../../enterprise/godmode/modules/configure_local_component.php:292
-msgid "Dynamic Interval"
-msgstr "Intervalo dinámico"
-
-#: ../../godmode/massive/massive_edit_modules.php:554
-#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:491
-msgid "Dynamic Min."
-msgstr "Mínimo dinámico"
-
-#: ../../godmode/massive/massive_edit_modules.php:556
-#: ../../godmode/modules/manage_network_components_form_common.php:159
-#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:493
-#: ../../enterprise/godmode/modules/configure_local_component.php:305
-msgid "Dynamic Max."
-msgstr "Dinámico máximo"
-
-#: ../../godmode/massive/massive_edit_modules.php:558
-#: ../../godmode/modules/manage_network_components_form_common.php:161
-#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:495
-#: ../../enterprise/godmode/modules/configure_local_component.php:307
-msgid "Dynamic Two Tailed: "
-msgstr "El segundo rango dínámico falla: "
-
-#: ../../godmode/massive/massive_edit_modules.php:561
-#: ../../godmode/modules/manage_network_components_form_common.php:164
-#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:289
-#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:498
-#: ../../enterprise/godmode/modules/configure_local_component.php:310
-#: ../../include/functions_treeview.php:96 ../../include/functions_alerts.php:676
-msgid "Warning status"
-msgstr "Estado advertencia"
-
-#: ../../godmode/massive/massive_edit_modules.php:565
-#: ../../godmode/massive/massive_edit_modules.php:656
-#: ../../godmode/massive/massive_edit_modules.php:885
-#: ../../godmode/alerts/configure_alert_template.php:850
-#: ../../godmode/modules/manage_network_components_form_wizard.php:386
-#: ../../godmode/modules/manage_network_components_form_wizard.php:414
-#: ../../godmode/modules/manage_network_components_form_common.php:165
-#: ../../godmode/modules/manage_network_components_form_common.php:206
-#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:293
-#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:342
-#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:502
-#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:593
-#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:828
-#: ../../enterprise/godmode/modules/configure_local_component.php:311
-#: ../../enterprise/godmode/modules/configure_local_component.php:354
-#: ../../include/functions_treeview.php:92
-#: ../../include/functions_treeview.php:104
-#: ../../include/functions_alerts.php:673
-#: ../../include/functions_reporting_html.php:5192
-#: ../../include/lib/Dashboard/Widgets/top_n.php:282
-msgid "Min."
-msgstr "Mín."
-
-#: ../../godmode/massive/massive_edit_modules.php:580
-#: ../../godmode/massive/massive_edit_modules.php:671
-#: ../../godmode/massive/massive_edit_modules.php:887
-#: ../../godmode/agentes/module_manager_editor_common.php:428
-#: ../../godmode/agentes/module_manager_editor_common.php:489
-#: ../../godmode/alerts/configure_alert_template.php:862
-#: ../../godmode/modules/manage_network_components_form_wizard.php:388
-#: ../../godmode/modules/manage_network_components_form_wizard.php:423
-#: ../../godmode/modules/manage_network_components_form_common.php:174
-#: ../../godmode/modules/manage_network_components_form_common.php:215
-#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:308
-#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:357
-#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:517
-#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:608
-#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:830
-#: ../../enterprise/godmode/modules/configure_local_component.php:320
-#: ../../enterprise/godmode/modules/configure_local_component.php:363
-#: ../../include/functions_treeview.php:92
-#: ../../include/functions_treeview.php:104
-#: ../../include/functions_alerts.php:672
-#: ../../include/functions_reporting_html.php:5193
-#: ../../include/lib/Dashboard/Widgets/top_n.php:281
-msgid "Max."
-msgstr "Máx."
-
-#: ../../godmode/massive/massive_edit_modules.php:595
-#: ../../godmode/massive/massive_edit_modules.php:686
-#: ../../godmode/agentes/module_manager_editor_common.php:444
-#: ../../godmode/agentes/module_manager_editor_common.php:505
-#: ../../godmode/modules/manage_network_components_form_common.php:183
-#: ../../godmode/modules/manage_network_components_form_common.php:224
-#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:323
-#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:372
-#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:532
-#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:623
-#: ../../enterprise/godmode/modules/configure_local_component.php:329
-#: ../../enterprise/godmode/modules/configure_local_component.php:372
-#: ../../include/functions_treeview.php:90
-#: ../../include/functions_treeview.php:102
-msgid "Str."
-msgstr "Str."
-
-#: ../../godmode/massive/massive_edit_modules.php:610
-#: ../../godmode/massive/massive_edit_modules.php:701
-#: ../../godmode/agentes/module_manager_editor_common.php:459
-#: ../../godmode/agentes/module_manager_editor_common.php:520
-#: ../../godmode/modules/manage_network_components_form_wizard.php:395
-#: ../../godmode/modules/manage_network_components_form_wizard.php:437
-#: ../../godmode/modules/manage_network_components_form_common.php:192
-#: ../../godmode/modules/manage_network_components_form_common.php:233
-#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:547
-#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:638
-#: ../../enterprise/godmode/modules/configure_local_component.php:338
-#: ../../enterprise/godmode/modules/configure_local_component.php:381
-#: ../../enterprise/meta/include/functions_wizard_meta.php:980
-#: ../../enterprise/meta/include/functions_wizard_meta.php:989
-#: ../../enterprise/meta/include/functions_wizard_meta.php:1064
-#: ../../enterprise/meta/include/functions_wizard_meta.php:1073
-#: ../../enterprise/meta/include/functions_wizard_meta.php:1265
-#: ../../enterprise/meta/include/functions_wizard_meta.php:1274
-#: ../../enterprise/meta/include/functions_wizard_meta.php:1502
-#: ../../enterprise/meta/include/functions_wizard_meta.php:1511
-#: ../../enterprise/meta/include/functions_wizard_meta.php:1586
-#: ../../enterprise/meta/include/functions_wizard_meta.php:1595
-#: ../../enterprise/meta/include/functions_wizard_meta.php:1705
-#: ../../enterprise/meta/include/functions_wizard_meta.php:1714
-#: ../../enterprise/meta/include/functions_wizard_meta.php:1730
-msgid "Inverse interval"
-msgstr "Intervalo inverso"
-
-#: ../../godmode/massive/massive_edit_modules.php:630
-#: ../../godmode/massive/massive_edit_modules.php:722
-#: ../../godmode/agentes/module_manager_editor_common.php:464
-#: ../../godmode/agentes/module_manager_editor_common.php:526
-#: ../../godmode/modules/manage_network_components_form_wizard.php:399
-#: ../../godmode/modules/manage_network_components_form_wizard.php:441
-#: ../../godmode/modules/manage_network_components_form_common.php:196
-#: ../../godmode/modules/manage_network_components_form_common.php:237
-#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:567
-#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:658
-#: ../../enterprise/godmode/modules/configure_local_component.php:343
-#: ../../enterprise/godmode/modules/configure_local_component.php:386
-msgid "Percentage"
-msgstr "Porcentaje"
-
-#: ../../godmode/massive/massive_edit_modules.php:652
-#: ../../godmode/modules/manage_network_components_form_common.php:205
-#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:338
-#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:589
-#: ../../enterprise/godmode/modules/configure_local_component.php:353
-#: ../../include/functions_treeview.php:108
-#: ../../include/functions_alerts.php:677
-msgid "Critical status"
-msgstr "Estado crítico"
-
-#: ../../godmode/massive/massive_edit_modules.php:780
-#: ../../godmode/setup/snmp_wizard.php:43
-#: ../../godmode/agentes/module_manager_editor_common.php:649
-#: ../../godmode/modules/manage_network_components_form_plugin.php:49
-#: ../../godmode/modules/manage_network_components_form_wmi.php:55
-#: ../../godmode/modules/manage_network_components_form_network.php:178
-#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:716
-#: ../../enterprise/godmode/modules/configure_local_component.php:473
-msgid "Post process"
-msgstr "Posprocesado"
-
-#: ../../godmode/massive/massive_edit_modules.php:796
-#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:732
-msgid "SMNP community"
-msgstr "Comunidad SMNP"
-
-#: ../../godmode/massive/massive_edit_modules.php:806
-#: ../../godmode/agentes/module_manager_editor_network.php:227
-#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:742
-msgid "SNMP OID"
-msgstr "SNMP OID"
-
-#: ../../godmode/massive/massive_edit_modules.php:817
-#: ../../godmode/agentes/module_manager_editor_wmi.php:59
-#: ../../godmode/agentes/module_manager_editor_network.php:94
-#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:753
-#: ../../enterprise/meta/include/functions_wizard_meta.php:492
-#: ../../include/ajax/events.php:1824
-msgid "Auto"
-msgstr "Automático"
-
-#: ../../godmode/massive/massive_edit_modules.php:818
-#: ../../godmode/agentes/module_manager_editor_wmi.php:60
-#: ../../godmode/agentes/module_manager_editor_network.php:95
-#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:754
-#: ../../enterprise/meta/include/functions_wizard_meta.php:493
-msgid "Force primary key"
-msgstr "Forzar clave primaria"
-
-#: ../../godmode/massive/massive_edit_modules.php:821
-#: ../../godmode/agentes/module_manager_editor_wmi.php:45
-#: ../../godmode/agentes/module_manager_editor_network.php:80
-#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:757
-#: ../../include/functions_snmp_browser.php:702
-#: ../../include/class/AgentWizard.class.php:615
-msgid "Target IP"
-msgstr "IP objetivo"
-
-#: ../../godmode/massive/massive_edit_modules.php:839
-#: ../../godmode/agentes/module_manager_editor_network.php:180
-#: ../../godmode/wizards/HostDevices.class.php:1199
-#: ../../godmode/modules/manage_network_components_form_network.php:55
-#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:272
-#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:780
-#: ../../include/class/AgentWizard.class.php:726
-msgid "SNMP version"
-msgstr "Versión SNMP"
-
-#: ../../godmode/massive/massive_edit_modules.php:852
-#: ../../godmode/agentes/module_manager_editor_network.php:336
-#: ../../godmode/wizards/HostDevices.class.php:1259
-#: ../../godmode/modules/manage_network_components_form_network.php:96
-#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:299
-#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:795
-#: ../../include/functions_snmp_browser.php:826
-msgid "Auth user"
-msgstr "Autentificación de usuario"
-
-#: ../../godmode/massive/massive_edit_modules.php:861
-#: ../../godmode/agentes/module_manager_editor_network.php:349
-#: ../../godmode/wizards/HostDevices.class.php:1270
-#: ../../godmode/modules/manage_network_components_form_network.php:105
-#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:308
-#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:804
-#: ../../include/functions_snmp_browser.php:836
-msgid "Auth password"
-msgstr "Autentificación de contraseña"
-
-#: ../../godmode/massive/massive_edit_modules.php:861
-#: ../../godmode/massive/massive_edit_modules.php:865
-#: ../../godmode/agentes/module_manager_editor_network.php:349
-#: ../../godmode/agentes/module_manager_editor_network.php:371
-#: ../../godmode/wizards/HostDevices.class.php:1272
-#: ../../godmode/wizards/HostDevices.class.php:1303
-#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:804
-#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:808
-msgid "The pass length must be eight character minimum."
-msgstr "La longitud de la contraseña debe ser mínimo de ocho caracteres."
-
-#: ../../godmode/massive/massive_edit_modules.php:863
-#: ../../godmode/agentes/module_manager_editor_network.php:369
-#: ../../godmode/wizards/HostDevices.class.php:1286
-#: ../../godmode/modules/manage_network_components_form_network.php:123
-#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:324
-#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:806
-#: ../../include/functions_snmp_browser.php:853
-#: ../../include/class/AgentWizard.class.php:860
-msgid "Privacy method"
-msgstr "Método de privacidad"
-
-#: ../../godmode/massive/massive_edit_modules.php:864
-#: ../../godmode/agentes/module_manager_editor_network.php:370
-#: ../../godmode/wizards/HostDevices.class.php:1291
-#: ../../godmode/modules/manage_network_components_form_network.php:126
-#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:327
-#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:807
-#: ../../include/functions_snmp_browser.php:856
-msgid "DES"
-msgstr "DES"
-
-#: ../../godmode/massive/massive_edit_modules.php:864
-#: ../../godmode/agentes/module_manager_editor_network.php:370
-#: ../../godmode/wizards/HostDevices.class.php:1292
-#: ../../godmode/modules/manage_network_components_form_network.php:127
-#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:328
-#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:807
-#: ../../include/functions_snmp_browser.php:857
-msgid "AES"
-msgstr "AES"
-
-#: ../../godmode/massive/massive_edit_modules.php:865
-#: ../../godmode/agentes/module_manager_editor_network.php:371
-#: ../../godmode/wizards/HostDevices.class.php:1301
-#: ../../godmode/modules/manage_network_components_form_network.php:136
-#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:808
-#: ../../include/functions_snmp_browser.php:867
-#: ../../include/class/AgentWizard.class.php:874
-msgid "Privacy pass"
-msgstr "Conexión privada"
-
-#: ../../godmode/massive/massive_edit_modules.php:867
-#: ../../godmode/agentes/module_manager_editor_network.php:391
-#: ../../godmode/wizards/HostDevices.class.php:1317
-#: ../../godmode/modules/manage_network_components_form_network.php:148
-#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:347
-#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:810
-#: ../../include/functions_snmp_browser.php:877
-msgid "Auth method"
-msgstr "Método de autentificación"
-
-#: ../../godmode/massive/massive_edit_modules.php:868
-#: ../../godmode/agentes/module_manager_editor_network.php:394
-#: ../../godmode/wizards/HostDevices.class.php:1322
-#: ../../godmode/modules/manage_network_components_form_network.php:151
-#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:350
-#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:811
-#: ../../include/functions_snmp_browser.php:880
-#: ../../include/class/Diagnostics.class.php:2175
-msgid "MD5"
-msgstr "MD5"
-
-#: ../../godmode/massive/massive_edit_modules.php:868
-#: ../../godmode/agentes/module_manager_editor_network.php:395
-#: ../../godmode/wizards/HostDevices.class.php:1323
-#: ../../godmode/modules/manage_network_components_form_network.php:152
-#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:351
-#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:811
-#: ../../include/functions_snmp_browser.php:881
-msgid "SHA"
-msgstr "SHA"
-
-#: ../../godmode/massive/massive_edit_modules.php:869
-#: ../../godmode/agentes/module_manager_editor_network.php:408
-#: ../../godmode/wizards/HostDevices.class.php:1332
-#: ../../godmode/modules/manage_network_components_form_network.php:161
-#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:360
-#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:812
-#: ../../include/functions_snmp_browser.php:890
-#: ../../include/class/AgentWizard.class.php:801
-msgid "Security level"
-msgstr "Nivel de seguridad"
-
-#: ../../godmode/massive/massive_edit_modules.php:872
-#: ../../godmode/agentes/module_manager_editor_network.php:411
-#: ../../godmode/wizards/HostDevices.class.php:1337
-#: ../../godmode/modules/manage_network_components_form_network.php:164
-#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:363
-#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:815
-#: ../../include/functions_snmp_browser.php:893
-msgid "Not auth and not privacy method"
-msgstr "Método sin autentificación ni privacidad"
-
-#: ../../godmode/massive/massive_edit_modules.php:873
-#: ../../godmode/agentes/module_manager_editor_network.php:412
-#: ../../godmode/wizards/HostDevices.class.php:1338
-#: ../../godmode/modules/manage_network_components_form_network.php:165
-#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:364
-#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:816
-#: ../../include/functions_snmp_browser.php:894
-msgid "Auth and not privacy method"
-msgstr "Método con autentificación y sin privacidad"
-
-#: ../../godmode/massive/massive_edit_modules.php:874
-#: ../../godmode/agentes/module_manager_editor_network.php:413
-#: ../../godmode/wizards/HostDevices.class.php:1339
-#: ../../godmode/modules/manage_network_components_form_network.php:166
-#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:365
-#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:817
-#: ../../include/functions_snmp_browser.php:895
-msgid "Auth and privacy method"
-msgstr "Método con autentificación y privacidad"
-
-#: ../../godmode/massive/massive_edit_modules.php:906
-#: ../../godmode/agentes/module_manager_editor_wmi.php:103
-#: ../../godmode/modules/manage_network_components_form_wmi.php:47
-#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:849
-#: ../../enterprise/godmode/setup/setup_module_library.php:49
-#: ../../enterprise/include/functions_ui.php:102
-#: ../../include/class/CredentialStore.class.php:957
-#: ../../include/class/AgentWizard.class.php:659
-#: ../../extensions/quick_shell.php:174
-msgid "Username"
-msgstr "Usuario"
-
-#: ../../godmode/massive/massive_edit_modules.php:912
-#: ../../godmode/agentes/module_manager_editor_common.php:731
-#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:855
-msgid "Export target"
-msgstr "Servidor de exportación"
-
-#: ../../godmode/massive/massive_edit_modules.php:925
-#: ../../godmode/agentes/module_manager_editor_common.php:582
-#: ../../godmode/modules/manage_network_components_form_common.php:312
-#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:868
-#: ../../enterprise/godmode/modules/configure_local_component.php:468
-#: ../../enterprise/include/functions_reporting_csv.php:2741
-#: ../../enterprise/meta/include/functions_wizard_meta.php:922
-#: ../../enterprise/meta/include/functions_wizard_meta.php:1038
-#: ../../enterprise/meta/include/functions_wizard_meta.php:1217
-#: ../../enterprise/meta/include/functions_wizard_meta.php:1520
-#: ../../enterprise/meta/include/functions_wizard_meta.php:1604
-#: ../../enterprise/meta/include/functions_wizard_meta.php:1740
-#: ../../include/functions_reporting_html.php:3394
-msgid "Unit"
-msgstr "Unidad"
-
-#: ../../godmode/massive/massive_edit_modules.php:930
-#: ../../godmode/agentes/module_manager_editor_common.php:780
-#: ../../godmode/modules/manage_network_components_form_common.php:243
-#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:873
-#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:232
-#: ../../enterprise/godmode/modules/configure_local_component.php:391
-msgid "FF threshold"
-msgstr "Umbral FF"
-
-#: ../../godmode/massive/massive_edit_modules.php:933
-#: ../../godmode/alerts/alert_view.php:407
-#: ../../enterprise/operation/services/services.list.php:278
-#: ../../enterprise/operation/services/services.table_services.php:200
-#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:880
-#: ../../enterprise/godmode/massive/massive_create_services.php:690
-#: ../../enterprise/godmode/servers/HA_cluster.php:175
-#: ../../enterprise/godmode/services/services.service.php:643
-msgid "Mode"
-msgstr "Modo"
-
-#: ../../godmode/massive/massive_edit_modules.php:937
-#: ../../godmode/massive/massive_edit_modules.php:963
-#: ../../godmode/agentes/module_manager_editor_common.php:821
-#: ../../godmode/modules/manage_network_components_form_common.php:276
-#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:884
-#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:910
-#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:274
-#: ../../enterprise/godmode/modules/configure_local_component.php:417
-msgid "Each state changing"
-msgstr "Cada cambio de estado"
-
-#: ../../godmode/massive/massive_edit_modules.php:938
-#: ../../godmode/massive/massive_edit_modules.php:953
-#: ../../godmode/agentes/module_manager_editor_common.php:799
-#: ../../godmode/modules/manage_network_components_form_common.php:260
-#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:885
-#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:900
-#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:252
-#: ../../enterprise/godmode/modules/configure_local_component.php:402
-msgid "All state changing"
-msgstr "Todos los cambios de estado"
-
-#: ../../godmode/massive/massive_edit_modules.php:964
-#: ../../godmode/agentes/module_manager_editor_common.php:822
-#: ../../godmode/modules/manage_network_components_form_common.php:277
-#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:911
-#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:275
-#: ../../enterprise/godmode/modules/configure_local_component.php:418
-msgid "To normal"
-msgstr "A normal"
-
-#: ../../godmode/massive/massive_edit_modules.php:974
-#: ../../godmode/agentes/module_manager_editor_common.php:836
-#: ../../godmode/modules/manage_network_components_form_common.php:286
-#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:921
-#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:289
-#: ../../enterprise/godmode/modules/configure_local_component.php:427
-msgid "To warning"
-msgstr "A advertencia"
-
-#: ../../godmode/massive/massive_edit_modules.php:984
-#: ../../godmode/agentes/module_manager_editor_common.php:850
-#: ../../godmode/modules/manage_network_components_form_common.php:295
-#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:931
-#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:303
-#: ../../enterprise/godmode/modules/configure_local_component.php:436
-msgid "To critical"
-msgstr "A crítico"
-
-#: ../../godmode/massive/massive_edit_modules.php:994
-#: ../../godmode/agentes/module_manager_editor_common.php:782
-#: ../../godmode/modules/manage_network_components_form_common.php:246
-#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:941
-#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:235
-#: ../../enterprise/godmode/modules/configure_local_component.php:394
-msgid "Keep counters"
-msgstr "Mantener los contadores"
-
-#: ../../godmode/massive/massive_edit_modules.php:998
-#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:945
-msgid "Active Counters"
-msgstr "Contadores activos"
-
-#: ../../godmode/massive/massive_edit_modules.php:999
-#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:946
-msgid "Inactive Counters"
-msgstr "Contadores inactivos"
-
-#: ../../godmode/massive/massive_edit_modules.php:1014
-#: ../../godmode/agentes/module_manager_editor_common.php:865
-#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:961
-#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:480
-msgid "FF interval"
-msgstr "Intervalo FF"
-
-#: ../../godmode/massive/massive_edit_modules.php:1024
-#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:962
-#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:496
-msgid "Module execution flip flop time interval (in secs)."
-msgstr "Tiempo del intervalo de flip flop de ejecución del módulo (en segundos)."
-
-#: ../../godmode/massive/massive_edit_modules.php:1028
-#: ../../godmode/agentes/module_manager_editor_common.php:880
-#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:963
-#: ../../enterprise/godmode/modules/configure_local_component.php:450
-msgid "FF timeout"
-msgstr "FF tiempo de espera"
-
-#: ../../godmode/massive/massive_edit_modules.php:1038
-#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:964
-#: ../../enterprise/godmode/modules/configure_local_component.php:458
-msgid ""
-"Timeout in secs from start of flip flop counting. If this value is exceeded, "
-"FF counter is reset. Set to 0 for no timeout."
-msgstr ""
-"Tiempo de espera en segundos desde el comiendo del contador flip flop. Si se "
-"excede este valor, el contador FF será reiniciado. Poner 0 para no tener "
-"tiempo de espera"
-
-#: ../../godmode/massive/massive_edit_modules.php:1042
-#: ../../godmode/agentes/module_manager_editor_common.php:532
-#: ../../godmode/modules/manage_network_components_form_common.php:305
-#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:966
-#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:318
-#: ../../enterprise/godmode/modules/configure_local_component.php:447
-#: ../../enterprise/include/functions_reporting_csv.php:2175
-#: ../../include/functions_reporting.php:3945
-msgid "Historical data"
-msgstr "Histórico de datos"
-
-#: ../../godmode/massive/massive_edit_modules.php:1060
-#: ../../godmode/agentes/module_manager_editor_common.php:1143
-#: ../../godmode/module_library/module_library_view.php:123
-#: ../../godmode/modules/manage_network_components_form_common.php:342
-#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:984
-#: ../../enterprise/godmode/modules/configure_local_component.php:542
-msgid "Category"
-msgstr "Categoría"
-
-#: ../../godmode/massive/massive_edit_modules.php:1066
-#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:990
-msgid "Policy linking status"
-msgstr "Estado de enlaces de la política"
-
-#: ../../godmode/massive/massive_edit_modules.php:1066
-#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:990
-msgid "This field only has sense in modules adopted by a policy."
-msgstr "Este campo solo tiene sentido en los módulos aprobados por una política."
-
-#: ../../godmode/massive/massive_edit_modules.php:1067
-#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:991
-msgid "Linked"
-msgstr "Enlazado"
-
-#: ../../godmode/massive/massive_edit_modules.php:1067
-#: ../../godmode/agentes/module_manager.php:1050
-#: ../../godmode/agentes/module_manager.php:1053
-#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:991
-#: ../../include/ajax/module.php:1092 ../../include/ajax/module.php:1095
-msgid "Unlinked"
-msgstr "Desenlazado"
-
-#: ../../godmode/massive/massive_edit_modules.php:1076
-#: ../../godmode/agentes/module_manager_editor_common.php:764
-#: ../../godmode/modules/manage_network_components_form_common.php:315
-#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1000
-msgid "Discard unknown events"
-msgstr "Descartar eventos desconocidos"
-
-#: ../../godmode/massive/massive_edit_modules.php:1092
-#: ../../godmode/agentes/module_manager_editor_common.php:1093
-#: ../../godmode/modules/manage_network_components_form_common.php:323
-#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1016
-#: ../../enterprise/godmode/modules/configure_local_component.php:523
-msgid "Critical instructions"
-msgstr "Instrucciones de crítico"
-
-#: ../../godmode/massive/massive_edit_modules.php:1092
-#: ../../godmode/modules/manage_network_components_form_common.php:323
-#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1016
-#: ../../enterprise/godmode/modules/configure_local_component.php:523
-msgid "Instructions when the status is critical"
-msgstr "Instrucciones en caso de que se encuentre en estado crítico"
-
-#: ../../godmode/massive/massive_edit_modules.php:1096
-#: ../../godmode/agentes/module_manager_editor_common.php:1098
-#: ../../godmode/modules/manage_network_components_form_common.php:327
-#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1020
-#: ../../enterprise/godmode/modules/configure_local_component.php:528
-msgid "Warning instructions"
-msgstr "Instrucciones de advertencia"
-
-#: ../../godmode/massive/massive_edit_modules.php:1096
-#: ../../godmode/modules/manage_network_components_form_common.php:327
-#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1020
-#: ../../enterprise/godmode/modules/configure_local_component.php:528
-msgid "Instructions when the status is warning"
-msgstr "Instrucciones en caso de que se encuentre en estado de advertencia"
-
-#: ../../godmode/massive/massive_edit_modules.php:1100
-#: ../../godmode/agentes/module_manager_editor_common.php:1102
-#: ../../godmode/modules/manage_network_components_form_common.php:331
-#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1024
-#: ../../enterprise/godmode/modules/configure_local_component.php:533
-msgid "Unknown instructions"
-msgstr "Instrucciones de desconocido"
-
-#: ../../godmode/massive/massive_edit_modules.php:1100
-#: ../../godmode/modules/manage_network_components_form_common.php:331
-#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1024
-#: ../../enterprise/godmode/modules/configure_local_component.php:533
-msgid "Instructions when the status is unknown"
-msgstr "Instrucciones en caso de que se encuentre en estado desconocido"
-
-#: ../../godmode/massive/massive_edit_modules.php:1105
-#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1029
-msgid "The module still store data but the alerts and events will be stop"
-msgstr ""
-"El módulo todavía almacena datos pero las alertas y los eventos se detendrán."
-
-#: ../../godmode/massive/massive_edit_modules.php:1122
-#: ../../godmode/agentes/module_manager_editor_common.php:1135
-#: ../../enterprise/operation/agentes/manage_transmap_creation_phases_data.php:80
-#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1044
-msgid "Timeout"
-msgstr "Tiempo de espera"
-
-#: ../../godmode/massive/massive_edit_modules.php:1131
-#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1053
-msgid "Seconds that agent will wait for the execution of the module."
-msgstr "Segundos que el agente tendrá que esperar para la ejecución del módulo"
-
-#: ../../godmode/massive/massive_edit_modules.php:1135
-#: ../../godmode/agentes/module_manager_editor_common.php:1138
-#: ../../enterprise/operation/agentes/manage_transmap_creation_phases_data.php:77
-#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1057
-#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:500
-msgid "Retries"
-msgstr "Reintentos"
-
-#: ../../godmode/massive/massive_edit_modules.php:1137
-#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1059
-#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:515
-msgid "Number of retries that the module will attempt to run."
-msgstr "Número de intentos que el módulo intentará activar"
-
-#: ../../godmode/massive/massive_edit_modules.php:1141
-#: ../../godmode/agentes/module_manager_editor_web.php:93
-#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1066
-#: ../../enterprise/include/functions_enterprise.php:460
-#: ../../enterprise/meta/include/functions_wizard_meta.php:609
-#: ../../enterprise/meta/include/functions_wizard_meta.php:666
-msgid "Web checks"
-msgstr "Comprobaciones web"
-
-#: ../../godmode/massive/massive_edit_modules.php:1145
-#: ../../godmode/agentes/module_manager_editor_network.php:126
-#: ../../godmode/modules/manage_network_components_form_network.php:53
-#: ../../godmode/servers/modificar_server.php:84
-#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1063
-#: ../../enterprise/godmode/setup/setup_history.php:174
-#: ../../enterprise/godmode/servers/manage_export_form.php:121
-#: ../../enterprise/include/class/Azure.cloud.php:813
-#: ../../enterprise/include/class/VMware.app.php:632
-#: ../../enterprise/include/class/Aws.cloud.php:556
-#: ../../enterprise/include/class/Aws.S3.php:574
-#: ../../enterprise/views/ncm/agent/manage.php:118
-#: ../../include/functions_snmp_browser.php:714
-#: ../../include/functions_config.php:1511
-#: ../../include/class/AgentWizard.class.php:630
-#: ../../extensions/quick_shell.php:181
-msgid "Port"
-msgstr "Puerto"
-
-#: ../../godmode/massive/massive_edit_modules.php:1148
-#: ../../godmode/agentes/module_manager_editor_network.php:281
-#: ../../godmode/modules/manage_network_components_form_network.php:209
-#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1070
-msgid "TCP send"
-msgstr "Enviar TCP"
-
-#: ../../godmode/massive/massive_edit_modules.php:1151
-#: ../../godmode/agentes/module_manager_editor_network.php:295
-#: ../../godmode/modules/manage_network_components_form_network.php:216
-#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1073
-msgid "TCP receive"
-msgstr "Recibir TCP"
-
-#: ../../godmode/massive/massive_edit_modules.php:1154
-#: ../../godmode/agentes/module_manager_editor_wmi.php:133
-#: ../../godmode/modules/manage_network_components_form_wmi.php:31
-#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1076
-msgid "WMI query"
-msgstr "Consulta WMI"
-
-#: ../../godmode/massive/massive_edit_modules.php:1157
-#: ../../godmode/agentes/module_manager_editor_wmi.php:151
-#: ../../godmode/modules/manage_network_components_form_wizard.php:684
-#: ../../godmode/modules/manage_network_components_form_wmi.php:33
-#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1079
-msgid "Key string"
-msgstr "Cadena clave"
-
-#: ../../godmode/massive/massive_edit_modules.php:1160
-#: ../../godmode/agentes/module_manager_editor_wmi.php:164
-#: ../../godmode/modules/manage_network_components_form_wmi.php:39
-#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1082
-msgid "Field number"
-msgstr "Campo número"
-
-#: ../../godmode/massive/massive_edit_modules.php:1163
-#: ../../godmode/massive/massive_edit_plugins.php:346
-#: ../../godmode/agentes/module_manager_editor_plugin.php:49
-#: ../../godmode/modules/manage_network_components_form_plugin.php:35
-#: ../../godmode/servers/plugin_registration.php:503
-#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1085
-msgid "Plugin"
-msgstr "Plugin"
-
-#: ../../godmode/massive/massive_edit_modules.php:1181
-#: ../../godmode/massive/massive_edit_plugins.php:480
-#: ../../godmode/agentes/module_manager_editor_network.php:433
-#: ../../godmode/alerts/configure_alert_command.php:246
-#: ../../godmode/alerts/alert_actions.php:272
-#: ../../godmode/alerts/alert_actions.php:327
-#: ../../godmode/alerts/configure_alert_action.php:247
-#: ../../godmode/events/event_responses.editor.php:157
-#: ../../godmode/events/event_responses.editor.php:164
-#: ../../godmode/modules/manage_network_components_form_network.php:223
-#: ../../godmode/servers/plugin.php:429 ../../godmode/servers/plugin.php:434
-#: ../../godmode/servers/plugin.php:817
-#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1103
-#: ../../include/class/ManageNetScanScripts.class.php:434
-#: ../../include/class/ExternalTools.class.php:353
-msgid "Command"
-msgstr "Comando"
-
-#: ../../godmode/massive/massive_edit_modules.php:1198
-#: ../../godmode/agentes/module_manager_editor_network.php:459
-#: ../../godmode/modules/manage_network_components_form_network.php:242
-#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1120
-#: ../../enterprise/include/class/DeploymentCenter.class.php:1397
-msgid "Credential identifier"
-msgstr "Credencial"
-
-#: ../../godmode/massive/massive_edit_modules.php:1213
-#: ../../godmode/agentes/module_manager_editor_network.php:477
-#: ../../godmode/modules/manage_network_components_form_network.php:258
-#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1135
-msgid "Inherited"
-msgstr "Heredado"
-
-#: ../../godmode/massive/massive_edit_modules.php:1214
-#: ../../godmode/modules/manage_network_components_form_network.php:259
-#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1136
-msgid "Linux"
-msgstr "Linux"
-
-#: ../../godmode/massive/massive_edit_modules.php:1215
-#: ../../godmode/modules/manage_network_components_form_network.php:260
-#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1137
-msgid "Windows"
-msgstr "Windows"
-
-#: ../../godmode/massive/massive_edit_modules.php:1218
-#: ../../godmode/modules/manage_network_components_form_network.php:263
-#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1140
-msgid "Target OS"
-msgstr "SO objetivo"
-
-#: ../../godmode/massive/massive_edit_modules.php:1260
-#: ../../godmode/massive/massive_delete_modules.php:595
-msgid "Please, select an agent first"
-msgstr "Primero seleccione un agente"
-
-#: ../../godmode/massive/massive_edit_modules.php:1999
-#: ../../godmode/massive/massive_delete_action_alerts.php:175
-#: ../../godmode/massive/massive_add_action_alerts.php:163
-#: ../../godmode/agentes/module_manager.php:274
-#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:880
-#: ../../enterprise/include/functions_massive.php:54
-#: ../../include/functions_visual_map.php:2674
-msgid "No modules selected"
-msgstr "No se han seleccionado módulos."
-
-#: ../../godmode/massive/massive_copy_modules.php:185
-#: ../../godmode/alerts/alert_list.list.php:482
-#: ../../godmode/wizards/DiscoveryTaskList.class.php:612
-#: ../../enterprise/godmode/reporting/reporting_builder.template.php:520
-#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:136
-#: ../../enterprise/godmode/policies/policy_alerts.php:354
-#: ../../enterprise/godmode/alerts/alert_inventory_list.php:224
-#: ../../enterprise/include/functions_tasklist.php:158
-#: ../../enterprise/views/ncm/devices/list.php:123
-msgid "Operations"
-msgstr "Operaciones"
-
-#: ../../godmode/massive/massive_copy_modules.php:188
-#: ../../enterprise/godmode/policies/policy_modules.php:1630
-msgid "Copy modules"
-msgstr "Copiar módulos"
-
-#: ../../godmode/massive/massive_copy_modules.php:193
-msgid "Copy alerts"
-msgstr "Copiar alertas"
-
-#: ../../godmode/massive/massive_copy_modules.php:213
-#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:190
-msgid "No modules for this agent"
-msgstr "No existen módulos para este agente"
-
-#: ../../godmode/massive/massive_copy_modules.php:230
-msgid "No alerts for this agent"
-msgstr "Ninguna alerta para este agente"
-
-#: ../../godmode/massive/massive_copy_modules.php:239
-#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:199
-#: ../../enterprise/meta/advanced/policymanager.sync.php:321
-msgid "Targets"
-msgstr "Destinos"
-
-#: ../../godmode/massive/massive_copy_modules.php:292
-#: ../../godmode/massive/massive_delete_modules.php:530
-msgid "Filter Agents"
-msgstr "Filtrar agentes"
-
-#: ../../godmode/massive/massive_copy_modules.php:309
-msgid "To agent(s)"
-msgstr "A los agentes"
-
-#: ../../godmode/massive/massive_copy_modules.php:551
-#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:366
-#: ../../include/functions_agents.php:836
-msgid "No source agent to copy"
-msgstr "No hay agente de origen del que copiar"
-
-#: ../../godmode/massive/massive_copy_modules.php:559
-msgid "No operation selected"
-msgstr "No se seleccionó ninguna operación"
-
-#: ../../godmode/massive/massive_copy_modules.php:564
-#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:371
-#: ../../include/functions_agents.php:867
-msgid "No modules have been selected"
-msgstr "No se ha seleccionado ningún módulo"
-
-#: ../../godmode/massive/massive_copy_modules.php:569
-#: ../../include/functions_agents.php:841
-msgid "No destiny agent(s) to copy"
-msgstr "No hay agentes destino a los que copiar"
-
-#: ../../godmode/massive/massive_add_profiles.php:52
-#: ../../godmode/massive/massive_delete_profiles.php:52
-#, php-format
-msgid ""
-"This node is configured with centralized mode. All profiles user information "
-"is read only. Go to %s to manage it."
-msgstr ""
-"Este nodo esta configurado con el modo centralizado. Toda la información de "
-"las políticas está en modo lectura. Vaya a %s para administrarlo."
-
-#: ../../godmode/massive/massive_add_profiles.php:184
-msgid "Profiles added successfully"
-msgstr "Perfiles agregados correctamente"
-
-#: ../../godmode/massive/massive_add_profiles.php:185
-msgid "Profiles cannot be added"
-msgstr "Los perfiles no se han podido agregar"
-
-#: ../../godmode/massive/massive_edit_plugins.php:177
-msgid "Error retrieving the plugin macros"
-msgstr "Error al recuperar las macros de plugin"
-
-#: ../../godmode/massive/massive_edit_plugins.php:185
-msgid "Error retrieving the modified macros"
-msgstr "Error al recuperar las macros modificadas"
-
-#: ../../godmode/massive/massive_edit_plugins.php:208
-msgid "Error retrieving the module plugin macros"
-msgstr "Error al recuperar las macros del módulo de plugin"
-
-#: ../../godmode/massive/massive_edit_plugins.php:226
-msgid "Error retrieving the module plugin macros data"
-msgstr "Error al recuperar los datos de las macros del módulo de plugin"
-
-#: ../../godmode/massive/massive_edit_plugins.php:264
-msgid "Error building the new macros"
-msgstr "Error al crear las nuevas macros"
-
-#: ../../godmode/massive/massive_edit_plugins.php:290
-#, php-format
-msgid "%d modules updated"
-msgstr "%d módulos actualizados"
-
-#: ../../godmode/massive/massive_edit_plugins.php:321
-msgid "There are not registered plugins"
-msgstr "No hay plugins registrados"
-
-#: ../../godmode/massive/massive_edit_plugins.php:464
-msgid "Invalid plugin data"
-msgstr "Dato de plugin no válido"
-
-#: ../../godmode/massive/massive_edit_plugins.php:571
-msgid "Clear"
-msgstr "Vaciar"
-
-#: ../../godmode/massive/massive_edit_plugins.php:599
-msgid "Invalid macros array"
-msgstr "Matriz de macros no válida"
-
-#: ../../godmode/massive/massive_edit_plugins.php:624
-msgid "Multiple values"
-msgstr "Valores múltiples"
-
-#: ../../godmode/massive/massive_edit_plugins.php:656
-#: ../../godmode/massive/massive_edit_plugins.php:792
-#: ../../godmode/massive/massive_edit_plugins.php:808
-msgid "Invalid agents array"
-msgstr "Matriz de agentes no válida"
-
-#: ../../godmode/massive/massive_edit_plugins.php:672
-msgid "Invalid agent element"
-msgstr "Elemento de agente no válido"
-
-#: ../../godmode/massive/massive_edit_plugins.php:683
-msgid "Invalid modules array"
-msgstr "Matriz de módulos no válida"
-
-#: ../../godmode/massive/massive_edit_plugins.php:711
-msgid "Invalid module element"
-msgstr "Elemento de módulo no válido"
-
-#: ../../godmode/massive/massive_edit_plugins.php:920
-msgid "There are no modules using this plugin"
-msgstr "Ningún módulo está usando este plugin"
-
-#: ../../godmode/massive/massive_edit_plugins.php:1005
-msgid "There was a problem loading the module plugin macros data"
-msgstr ""
-"Surgió un problema al cargar los datos de las macros del módulo de plugin."
-
-#: ../../godmode/massive/massive_delete_action_alerts.php:75
-msgid "Could not be deleted. No agents selected"
-msgstr "No se puede borrar. Ningún agente seleccionado"
-
-#: ../../godmode/massive/massive_delete_action_alerts.php:122
-msgid "Could not be deleted. No alerts selected"
-msgstr "No se puede borrar. No hay alertas seleccionadas"
-
-#: ../../godmode/massive/massive_delete_action_alerts.php:181
-msgid "Could not be deleted. No action selected"
-msgstr "No se puede eliminar. No hay acciones seleccionadas"
-
-#: ../../godmode/massive/massive_delete_action_alerts.php:230
-#: ../../godmode/massive/massive_add_action_alerts.php:212
-msgid "Agents with templates"
-msgstr "Agentes con plantillas"
-
-#: ../../godmode/massive/massive_delete_action_alerts.php:239
-#: ../../godmode/massive/massive_add_action_alerts.php:218
-#: ../../godmode/alerts/alert_templates.php:131
-#: ../../godmode/alerts/alert_templates.php:183
-#: ../../godmode/alerts/alert_templates.php:206
-#: ../../godmode/alerts/alert_templates.php:227
-msgid "Alert templates"
-msgstr "Plantillas de alertas"
-
-#: ../../godmode/massive/massive_delete_modules.php:82
-msgid "No module selected"
-msgstr "No se seleccionó ningún módulo"
-
-#: ../../godmode/massive/massive_delete_modules.php:156
-msgid "There was an error deleting the modules, the operation has been cancelled"
-msgstr "Hubo un error al borrar los módulos, se canceló la operación"
-
-#: ../../godmode/massive/massive_delete_profiles.php:133
-msgid "Profiles deleted successfully"
-msgstr "Perfiles borrados correctamente"
-
-#: ../../godmode/massive/massive_delete_profiles.php:134
-msgid "Profiles cannot be deleted"
-msgstr "No se pudieron borrar los perfiles."
-
-#: ../../godmode/massive/massive_add_action_alerts.php:134
-msgid "No alerts selected"
-msgstr "No se seleccionó ninguna alerta"
-
-#: ../../godmode/massive/massive_add_action_alerts.php:166
-msgid "No actions selected"
-msgstr "No hay acciones seleccionadas"
-
-#: ../../godmode/massive/massive_add_action_alerts.php:252
-#: ../../godmode/alerts/alert_list.builder.php:127
-#: ../../godmode/alerts/alert_list.list.php:750
-#: ../../enterprise/godmode/policies/policy_external_alerts.php:600
-#: ../../enterprise/godmode/policies/policy_alerts.php:596
-#: ../../include/class/AgentsAlerts.class.php:314
-#: ../../include/ajax/alert_list.ajax.php:503
-msgid "Number of alerts match from"
-msgstr "Número de alertas coincidentes con"
-
-#: ../../godmode/massive/massive_enable_disable_alerts.php:102
-#: ../../godmode/agentes/configurar_agente.php:2171
-#: ../../godmode/agentes/modificar_agente.php:234
-#: ../../godmode/alerts/alert_list.php:366 ../../godmode/users/user_list.php:372
-#: ../../enterprise/godmode/setup/setup_metaconsole.php:147
-#: ../../enterprise/godmode/policies/policy_modules.php:517
-#: ../../enterprise/godmode/policies/policy_alerts.php:126
-#: ../../enterprise/meta/advanced/metasetup.consoles.php:387
-#: ../../include/ajax/alert_list.ajax.php:345
-msgid "Successfully enabled"
-msgstr "Activado correctamente"
-
-#: ../../godmode/massive/massive_enable_disable_alerts.php:102
-#: ../../godmode/agentes/configurar_agente.php:2172
-#: ../../godmode/agentes/modificar_agente.php:235
-#: ../../godmode/alerts/alert_list.php:367
-#: ../../enterprise/godmode/setup/setup_metaconsole.php:148
-#: ../../enterprise/godmode/policies/policy_modules.php:518
-#: ../../enterprise/godmode/policies/policy_alerts.php:127
-#: ../../enterprise/meta/advanced/metasetup.consoles.php:388
-#: ../../include/ajax/alert_list.ajax.php:347
-msgid "Could not be enabled"
-msgstr "No se pudo activar"
-
-#: ../../godmode/massive/massive_enable_disable_alerts.php:124
-#: ../../godmode/agentes/configurar_agente.php:2196
-#: ../../godmode/agentes/modificar_agente.php:277
-#: ../../godmode/alerts/alert_list.php:393 ../../godmode/users/user_list.php:366
-#: ../../enterprise/godmode/setup/setup_metaconsole.php:156
-#: ../../enterprise/godmode/policies/policy_modules.php:534
-#: ../../enterprise/godmode/policies/policy_alerts.php:152
-#: ../../enterprise/meta/advanced/metasetup.consoles.php:412
-#: ../../include/ajax/alert_list.ajax.php:366
-msgid "Successfully disabled"
-msgstr "Desactivado correctamente"
-
-#: ../../godmode/massive/massive_enable_disable_alerts.php:124
-#: ../../godmode/agentes/configurar_agente.php:2197
-#: ../../godmode/agentes/modificar_agente.php:278
-#: ../../godmode/alerts/alert_list.php:394
-#: ../../enterprise/godmode/setup/setup_metaconsole.php:157
-#: ../../enterprise/godmode/policies/policy_modules.php:535
-#: ../../enterprise/godmode/policies/policy_alerts.php:153
-#: ../../include/ajax/alert_list.ajax.php:368
-msgid "Could not be disabled"
-msgstr "No se pudo desactivar"
-
-#: ../../godmode/massive/massive_enable_disable_alerts.php:195
-msgid "Enabled alerts"
-msgstr "Alertas activadas"
-
-#: ../../godmode/massive/massive_enable_disable_alerts.php:224
-msgid "Disable selected alerts"
-msgstr "Desactivar alertas seleccionadas"
-
-#: ../../godmode/massive/massive_enable_disable_alerts.php:228
-msgid "Enable selected alerts"
-msgstr "Activar alertas seleccionadas"
-
-#: ../../godmode/massive/massive_enable_disable_alerts.php:230
-msgid "Disabled alerts"
-msgstr "Deshabilitar alertas"
-
-#: ../../godmode/update_manager/update_manager.setup.php:168
-#: ../../godmode/update_manager/update_manager.setup.php:243
-#: ../../enterprise/meta/advanced/metasetup.mail.php:79
-msgid "Succesful Update the url config vars."
-msgstr "Variables de configuración de la URL actualizadas correctamente."
-
-#: ../../godmode/update_manager/update_manager.setup.php:169
-#: ../../godmode/update_manager/update_manager.setup.php:244
-#: ../../enterprise/meta/advanced/metasetup.mail.php:80
-msgid "Unsuccesful Update the url config vars."
-msgstr "Error al actualizar las variables de configuración de la URL."
-
-#: ../../godmode/update_manager/update_manager.setup.php:271
-msgid "URL update manager:"
-msgstr "URL Administrador de actualizaciones:"
-
-#: ../../godmode/update_manager/update_manager.setup.php:275
-msgid "URL update manager"
-msgstr "URL Administrador de actualizaciones"
-
-#: ../../godmode/update_manager/update_manager.setup.php:281
-msgid "Use secured update manager:"
-msgstr "Utilice el administrador de actualizaciones seguro:"
-
-#: ../../godmode/update_manager/update_manager.setup.php:290
-msgid "Proxy server:"
-msgstr "Servidor Proxy:"
-
-#: ../../godmode/update_manager/update_manager.setup.php:294
-msgid "Proxy server"
-msgstr "Servidor proxy"
-
-#: ../../godmode/update_manager/update_manager.setup.php:300
-msgid "Proxy port:"
-msgstr "Puerto Proxy:"
-
-#: ../../godmode/update_manager/update_manager.setup.php:304
-msgid "Proxy port"
-msgstr "Puerto del Proxy"
-
-#: ../../godmode/update_manager/update_manager.setup.php:310
-msgid "Proxy user:"
-msgstr "Usuario del Proxy:"
-
-#: ../../godmode/update_manager/update_manager.setup.php:314
-msgid "Proxy user"
-msgstr "Usuario del Proxy"
-
-#: ../../godmode/update_manager/update_manager.setup.php:320
-msgid "Proxy password:"
-msgstr "Contraseña del Proxy:"
-
-#: ../../godmode/update_manager/update_manager.setup.php:324
-msgid "Proxy password"
-msgstr "Contraseña del Proxy"
-
-#: ../../godmode/update_manager/update_manager.setup.php:330
-msgid "Allow no-consecutive patches:"
-msgstr "Permitir parches no consecutivos:"
-
-#: ../../godmode/update_manager/update_manager.setup.php:339
-msgid "Limit to LTS updates:"
-msgstr "Límite a las actualizaciones de LTS:"
-
-#: ../../godmode/update_manager/update_manager.setup.php:349
-msgid "Registration ID:"
-msgstr "ID de registro:"
-
-#: ../../godmode/update_manager/update_manager.setup.php:353
-msgid "Cancel registration:"
-msgstr "Cancelar registro:"
-
-#: ../../godmode/update_manager/update_manager.setup.php:365
-msgid "Unregister"
-msgstr "Cerrar cuenta"
-
-#: ../../godmode/update_manager/update_manager.setup.php:370
-msgid "Pandora FMS community reminder"
-msgstr "Recordatorio de la comunidad de Pandora FMS"
-
-#: ../../godmode/update_manager/update_manager.setup.php:370
-msgid ""
-"Every 8 days, a message is displayed to admin users to remember to register "
-"this Pandora instance"
-msgstr ""
-"Cada 8 días, se mostrará un mensaje al administrador para que recuerde "
-"registrar esta instancia de Pandora FMS."
-
-#: ../../godmode/update_manager/update_manager.php:49
-msgid "Journal"
-msgstr "Diario"
-
-#: ../../godmode/update_manager/update_manager.php:56
-msgid "Offline update manager"
-msgstr "Administrador de actualizaciones offline"
-
-#: ../../godmode/update_manager/update_manager.php:63
-msgid "Online update manager"
-msgstr "Administrador de actualizaciones online"
-
-#: ../../godmode/update_manager/update_manager.php:68
-msgid "Update manager » Journal"
-msgstr "Gestor de actualizaciones » Diario"
-
-#: ../../godmode/update_manager/update_manager.php:72
-msgid "Update manager » Setup"
-msgstr "Configuración del Administrador de actualizaciones"
-
-#: ../../godmode/update_manager/update_manager.php:76
-msgid "Update manager » Offline"
-msgstr "Administrador de actualizaciones » Offline"
-
-#: ../../godmode/update_manager/update_manager.php:81
-msgid "Update manager » Online"
-msgstr "Administrador de actualizaciones » Online"
-
-#: ../../godmode/update_manager/update_manager.history.php:42
-msgid "Origin"
-msgstr "Origen"
-
-#: ../../godmode/setup/news.php:29
-msgid "Site news management"
-msgstr "Gestionar noticias del sitio"
-
-#: ../../godmode/setup/news.php:152 ../../godmode/setup/links.php:92
-msgid "Name error"
-msgstr "Error de nombre"
-
-#: ../../godmode/setup/news.php:191
-msgid "Modal screen"
-msgstr "Pantalla modal"
-
-#: ../../godmode/setup/news.php:194
-msgid "Expire"
-msgstr "Caduca"
-
-#: ../../godmode/setup/news.php:197 ../../godmode/setup/news.php:250
-msgid "Expiration"
-msgstr "Vencimiento"
-
-#: ../../godmode/setup/news.php:241
-msgid "There are no defined news"
-msgstr "No hay noticias definidas"
-
-#: ../../godmode/setup/news.php:268
-msgid "Modal"
-msgstr "Modal"
-
-#: ../../godmode/setup/news.php:270
-msgid "Board"
-msgstr "Tablero"
-
-#: ../../godmode/setup/news.php:281
-msgid "Expired"
-msgstr "Caducado"
-
-#: ../../godmode/setup/gis.php:68
-msgid "Map connection name"
-msgstr "Nombre de la conexión"
-
-#: ../../godmode/setup/gis.php:86
-msgid "Do you wan delete this connection?"
-msgstr "¿Deseas borrar esta conexión?"
-
-#: ../../godmode/setup/snmp_wizard.php:31
-#: ../../godmode/agentes/configurar_agente.php:538
-#: ../../godmode/agentes/configurar_agente.php:759
-#: ../../enterprise/include/functions_policies.php:3735
-msgid "SNMP Wizard"
-msgstr "Asistente SNMP"
-
-#: ../../godmode/setup/snmp_wizard.php:42
-#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor_form.php:56
-#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:382
-#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:299
-#: ../../include/functions_snmp_browser.php:556
-msgid "OID"
-msgstr "OID"
-
-#: ../../godmode/setup/snmp_wizard.php:44
-#: ../../enterprise/godmode/setup/setup_auth.php:177
-#: ../../enterprise/godmode/setup/setup_auth.php:234
-#: ../../enterprise/godmode/setup/setup_auth.php:460
-#: ../../enterprise/godmode/setup/setup_auth.php:512
-#: ../../enterprise/godmode/setup/setup_auth.php:1255
-#: ../../enterprise/godmode/setup/setup_auth.php:1309
-msgid "OP"
-msgstr "OP"
-
-#: ../../godmode/setup/snmp_wizard.php:155
-msgid "Unsucessful update the snmp translation"
-msgstr "No se pudo actualizar la traducción SNMP"
-
-#: ../../godmode/setup/snmp_wizard.php:162
-msgid "Unsucessful update the snmp translation."
-msgstr "No se pudo actualizar la traducción SNMP"
-
-#: ../../godmode/setup/snmp_wizard.php:210
-msgid "Unsucessful delete the snmp translation"
-msgstr "No se pudo borrar la traducción de SNMP"
-
-#: ../../godmode/setup/snmp_wizard.php:217
-msgid "Unsucessful delete the snmp translation."
-msgstr "No se pudo borrar la traducción de SNMP"
-
-#: ../../godmode/setup/snmp_wizard.php:278
-msgid "Unsucessful save the snmp translation"
-msgstr "No se pudo guardar la traducción de SNMP"
-
-#: ../../godmode/setup/snmp_wizard.php:287
-msgid "Unsucessful save the snmp translation."
-msgstr "No se pudo guardar la traducción de SNMP"
-
-#: ../../godmode/setup/os.list.php:56
-#, php-format
-msgid ""
-"This node is configured with centralized mode. All OS definitions are read "
-"only. Go to %s to manage them."
-msgstr ""
-"Este nodo esta configurado con el modo centralizado. Toda la información de "
-"las políticas está en modo lectura. Vaya a %s para administrarlo."
-
-#: ../../godmode/setup/os.list.php:141
-msgid "There are no defined operating systems"
-msgstr "No hay sistemas operativos definidos"
-
-#: ../../godmode/setup/os.list.php:147
-msgid "Create OS"
-msgstr "Crear SO"
-
-#: ../../godmode/setup/setup_visuals.php:79
-msgid "Paginated module view"
-msgstr "Vista del módulo paginada"
-
-#: ../../godmode/setup/setup_visuals.php:88
-#: ../../enterprise/meta/advanced/metasetup.visual.php:466
-#: ../../enterprise/meta/include/functions_meta.php:1859
-#: ../../include/functions_config.php:1247
-msgid "Display data of proc modules in other format"
-msgstr "Mostrar los datos de los módulos proc en otro formato"
-
-#: ../../godmode/setup/setup_visuals.php:97
-#: ../../enterprise/meta/advanced/metasetup.visual.php:474
-#: ../../enterprise/meta/include/functions_meta.php:1869
-#: ../../include/functions_config.php:1251
-msgid "Display text proc modules have state is ok"
-msgstr "Texto mostrado cuando el estado del módulo proc es OK"
-
-#: ../../godmode/setup/setup_visuals.php:101
-#: ../../enterprise/meta/advanced/metasetup.visual.php:484
-#: ../../enterprise/meta/include/functions_meta.php:1879
-#: ../../include/functions_config.php:1255
-msgid "Display text when proc modules have state critical"
-msgstr "Texto mostrado cuando el estado del módulo proc es Crítico"
-
-#: ../../godmode/setup/setup_visuals.php:106
-msgid "Click to display lateral menus"
-msgstr "Haz clic para mostrar el menú lateral"
-
-#: ../../godmode/setup/setup_visuals.php:116
-#: ../../include/functions_config.php:1264
-msgid "Service label font size"
-msgstr "Tamaño de fuente para el mapa de servicios"
-
-#: ../../godmode/setup/setup_visuals.php:120
-msgid "Space between items in Service maps"
-msgstr "Espacio entre nodos para el mapa de servicios"
-
-#: ../../godmode/setup/setup_visuals.php:137
-#: ../../include/functions_config.php:979
-msgid "Style template"
-msgstr "Plantilla de estilo"
-
-#: ../../godmode/setup/setup_visuals.php:150
-#: ../../include/functions_config.php:999
-msgid "Status icon set"
-msgstr "Icono de estado en"
-
-#: ../../godmode/setup/setup_visuals.php:151
-msgid "Colors"
-msgstr "Colores"
-
-#: ../../godmode/setup/setup_visuals.php:152
-msgid "Faces"
-msgstr "Caras"
-
-#: ../../godmode/setup/setup_visuals.php:153
-msgid "Colors and text"
-msgstr "Colores y texto"
-
-#: ../../godmode/setup/setup_visuals.php:176
-#: ../../include/functions_config.php:1075
-msgid "Login background"
-msgstr "Imagen de fondo de la pantalla de inicio de sesión"
-
-#: ../../godmode/setup/setup_visuals.php:190
-#: ../../enterprise/meta/advanced/metasetup.visual.php:503
-#: ../../enterprise/meta/include/functions_meta.php:1598
-#: ../../include/functions_config.php:1011
-msgid "Custom favicon"
-msgstr "Personalizar favicon"
-
-#: ../../godmode/setup/setup_visuals.php:212
-#: ../../enterprise/meta/advanced/metasetup.visual.php:531
-msgid "Custom background logo"
-msgstr "Fondo del logo personalizado"
-
-#: ../../godmode/setup/setup_visuals.php:279
-#: ../../enterprise/meta/advanced/metasetup.visual.php:576
-msgid "Custom logo (menu)"
-msgstr "Logo personalizado (menu)"
-
-#: ../../godmode/setup/setup_visuals.php:284
-#: ../../enterprise/meta/advanced/metasetup.visual.php:607
-msgid "Custom logo collapsed (menu)"
-msgstr "El logo personalizado se ha caído (menú)"
-
-#: ../../godmode/setup/setup_visuals.php:289
-#: ../../enterprise/meta/advanced/metasetup.visual.php:638
-msgid "Custom logo (header white background)"
-msgstr "Logo personalizado (fondo blanco de cabecera)"
-
-#: ../../godmode/setup/setup_visuals.php:328
-#: ../../enterprise/meta/advanced/metasetup.visual.php:667
-msgid "Custom logo (login)"
-msgstr "Logo personalizado (inicio de sesión)"
-
-#: ../../godmode/setup/setup_visuals.php:367
-#: ../../enterprise/meta/advanced/metasetup.visual.php:696
-msgid "Custom Splash (login)"
-msgstr "Splash personalizado (inicio de sesión)"
-
-#: ../../godmode/setup/setup_visuals.php:393
-#: ../../include/functions_config.php:1035
-msgid "Custom documentation logo"
-msgstr "Logo de documentación personalizado"
-
-#: ../../godmode/setup/setup_visuals.php:413
-#: ../../include/functions_config.php:1039
-msgid "Custom support logo"
-msgstr "Logo de soporte personalizado"
-
-#: ../../godmode/setup/setup_visuals.php:432
-#: ../../include/functions_config.php:1043
-#: ../../include/functions_config.php:1047
-msgid "Custom networkmap center logo"
-msgstr "Logo central del mapa de red personalizado"
-
-#: ../../godmode/setup/setup_visuals.php:451
-msgid "Custom mobile console icon"
-msgstr "Icono de la consola móvil personalizada"
-
-#: ../../godmode/setup/setup_visuals.php:471
-#: ../../enterprise/meta/advanced/metasetup.visual.php:746
-msgid "Title (header)"
-msgstr "Título (encabezado)"
-
-#: ../../godmode/setup/setup_visuals.php:476
-#: ../../enterprise/meta/advanced/metasetup.visual.php:750
-msgid "Subtitle (header)"
-msgstr "Subtítulo (encabezado)"
-
-#: ../../godmode/setup/setup_visuals.php:482
-#: ../../enterprise/meta/advanced/metasetup.visual.php:754
-msgid "Title 1 (login)"
-msgstr "Título 1 (inicio de sesión)"
-
-#: ../../godmode/setup/setup_visuals.php:489
-#: ../../enterprise/meta/advanced/metasetup.visual.php:765
-msgid "Title 2 (login)"
-msgstr "Título 2 (inicio de sesión)"
-
-#: ../../godmode/setup/setup_visuals.php:495
-#: ../../enterprise/meta/advanced/metasetup.visual.php:775
-#: ../../enterprise/meta/include/functions_meta.php:1688
-msgid "Docs URL (login)"
-msgstr "URL de documentos (inicio de sesión)"
-
-#: ../../godmode/setup/setup_visuals.php:501
-#: ../../enterprise/meta/advanced/metasetup.visual.php:785
-#: ../../enterprise/meta/include/functions_meta.php:1698
-msgid "Support URL (login)"
-msgstr "URL soporte (inicio de sesión)"
-
-#: ../../godmode/setup/setup_visuals.php:507
-#: ../../enterprise/meta/advanced/metasetup.visual.php:724
-#: ../../enterprise/meta/advanced/metasetup.visual.php:795
-#: ../../enterprise/meta/include/functions_meta.php:1628
-#: ../../include/functions_config.php:1087
-msgid "Product name"
-msgstr "Nombre del producto"
-
-#: ../../godmode/setup/setup_visuals.php:513
-#: ../../enterprise/meta/advanced/metasetup.visual.php:735
-#: ../../enterprise/meta/advanced/metasetup.visual.php:805
-#: ../../enterprise/meta/include/functions_meta.php:1638
-#: ../../include/functions_config.php:1091
-msgid "Copyright notice"
-msgstr "Aviso de copyright"
-
-#: ../../godmode/setup/setup_visuals.php:519
-msgid "Disable logo in graphs"
-msgstr "Deshabilitar el logo en los gráficos"
-
-#: ../../godmode/setup/setup_visuals.php:535
-msgid "Disable helps"
-msgstr "Deshabilitar ayudas"
-
-#: ../../godmode/setup/setup_visuals.php:544
-#: ../../include/functions_config.php:1207
-msgid "Fixed header"
-msgstr "Cabecera fija"
-
-#: ../../godmode/setup/setup_visuals.php:555
-msgid "Automatically hide submenu"
-msgstr "Ocultar submenú automáticamente"
-
-#: ../../godmode/setup/setup_visuals.php:563
-#: ../../enterprise/meta/advanced/metasetup.visual.php:826
-#: ../../enterprise/meta/include/functions_meta.php:1528
-msgid "Visual effects and animation"
-msgstr "Efectos visuales y animación"
-
-#: ../../godmode/setup/setup_visuals.php:583
-#: ../../include/functions_config.php:1179
-msgid "GIS Labels"
-msgstr "Etiquetas GIS"
-
-#: ../../godmode/setup/setup_visuals.php:598
-#: ../../include/functions_config.php:1187
-msgid "Default icon in GIS"
-msgstr "Icono GIS por defecto"
-
-#: ../../godmode/setup/setup_visuals.php:604
-msgid "Agent icon group"
-msgstr "Grupo de iconos de agente"
-
-#: ../../godmode/setup/setup_visuals.php:622
-msgid "Graphs font size"
-msgstr "Tamaño de fuente de las gráficas"
-
-#: ../../godmode/setup/setup_visuals.php:653
-#: ../../include/functions_config.php:1155
-#: ../../include/functions_config.php:1159
-msgid "Agent size text"
-msgstr "Tamaño del texto del agente"
-
-#: ../../godmode/setup/setup_visuals.php:654
-#: ../../godmode/setup/setup_visuals.php:659
-msgid "Small:"
-msgstr "Pequeño:"
-
-#: ../../godmode/setup/setup_visuals.php:655
-#: ../../godmode/setup/setup_visuals.php:660
-msgid "Normal:"
-msgstr "Normal:"
-
-#: ../../godmode/setup/setup_visuals.php:658
-#: ../../include/functions_config.php:1163
-msgid "Module size text"
-msgstr "Tamaño del nombre del módulo"
-
-#: ../../godmode/setup/setup_visuals.php:663
-#: ../../include/functions_config.php:1167
-#: ../../include/functions_config.php:1171
-msgid "Description size text"
-msgstr "Tamaño del texto de la descripción"
-
-#: ../../godmode/setup/setup_visuals.php:667
-#: ../../include/functions_config.php:1175
-msgid "Item title size text"
-msgstr "Tamaño del texto de los títulos de elementos"
-
-#: ../../godmode/setup/setup_visuals.php:678
-msgid "Show unit along with value in reports"
-msgstr "Mostrar la unidad junto con el valor en los informes"
-
-#: ../../godmode/setup/setup_visuals.php:698
-#: ../../enterprise/meta/advanced/metasetup.visual.php:166
-#: ../../include/functions_config.php:926
-msgid "Graph color #1"
-msgstr "Color de la gráfica #1"
-
-#: ../../godmode/setup/setup_visuals.php:709
-#: ../../enterprise/meta/advanced/metasetup.visual.php:176
-#: ../../include/functions_config.php:930
-msgid "Graph color #2"
-msgstr "Color de la gráfica #2"
-
-#: ../../godmode/setup/setup_visuals.php:720
-#: ../../enterprise/meta/advanced/metasetup.visual.php:186
-#: ../../include/functions_config.php:934
-msgid "Graph color #3"
-msgstr "Color de la gráfica #3"
-
-#: ../../godmode/setup/setup_visuals.php:731
-#: ../../include/functions_config.php:938
-msgid "Graph color #4"
-msgstr "Color del gráfico #4"
-
-#: ../../godmode/setup/setup_visuals.php:742
-#: ../../include/functions_config.php:942
-msgid "Graph color #5"
-msgstr "Color del gráfico #5"
-
-#: ../../godmode/setup/setup_visuals.php:753
-#: ../../include/functions_config.php:946
-msgid "Graph color #6"
-msgstr "Color del gráfico #6"
-
-#: ../../godmode/setup/setup_visuals.php:764
-#: ../../include/functions_config.php:950
-msgid "Graph color #7"
-msgstr "Color del gráfico #7"
-
-#: ../../godmode/setup/setup_visuals.php:775
-#: ../../include/functions_config.php:954
-msgid "Graph color #8"
-msgstr "Color del gráfico #8"
-
-#: ../../godmode/setup/setup_visuals.php:786
-#: ../../include/functions_config.php:958
-msgid "Graph color #9"
-msgstr "Color del gráfico #9"
-
-#: ../../godmode/setup/setup_visuals.php:797
-#: ../../include/functions_config.php:962
-msgid "Graph color #10"
-msgstr "Color del gráfico #10"
-
-#: ../../godmode/setup/setup_visuals.php:808
-#: ../../enterprise/meta/advanced/metasetup.visual.php:232
-#: ../../enterprise/meta/include/functions_meta.php:1433
-#: ../../include/functions_config.php:966
-msgid "Value to interface graphics"
-msgstr "Valor para la interfaz gráfica"
-
-#: ../../godmode/setup/setup_visuals.php:824
-msgid "Data precision"
-msgstr "Precisión de datos"
-
-#: ../../godmode/setup/setup_visuals.php:842
-msgid "Data precision in graphs"
-msgstr "Precisión de datos en los gráficos"
-
-#: ../../godmode/setup/setup_visuals.php:857
-#: ../../include/functions_config.php:1231
-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:869
-#: ../../enterprise/meta/advanced/metasetup.visual.php:252
-#: ../../enterprise/meta/include/functions_meta.php:1362
-msgid "Number of elements in Custom Graph"
-msgstr "Número de elementos en gráfica personalizada"
-
-#: ../../godmode/setup/setup_visuals.php:883
-#: ../../enterprise/meta/advanced/metasetup.visual.php:265
-#: ../../enterprise/meta/include/functions_meta.php:1456
-#: ../../include/functions_config.php:987
-msgid "Use round corners"
-msgstr "Usar bordes redondeados"
-
-#: ../../godmode/setup/setup_visuals.php:892
-#: ../../enterprise/meta/advanced/metasetup.visual.php:273
-#: ../../enterprise/meta/include/functions_meta.php:1467
-#: ../../include/functions_config.php:991
-msgid "Chart fit to content"
-msgstr "Tabla adaptada al contenido"
-
-#: ../../godmode/setup/setup_visuals.php:901
-#: ../../enterprise/meta/advanced/metasetup.visual.php:346
-msgid "Type of module charts"
-msgstr "Tipo de gráficos de módulos"
-
-#: ../../godmode/setup/setup_visuals.php:918
-msgid "Type of interface charts"
-msgstr "Tipo de las gráficos de interfaces"
-
-#: ../../godmode/setup/setup_visuals.php:946
-msgid "Graph TIP view:"
-msgstr "Vista TIP de la gráfica:"
-
-#: ../../godmode/setup/setup_visuals.php:951
-#: ../../enterprise/meta/advanced/metasetup.visual.php:291
-msgid "On Boolean graphs"
-msgstr "En gráficos booleanos"
-
-#: ../../godmode/setup/setup_visuals.php:967
-#: ../../enterprise/meta/advanced/metasetup.visual.php:312
-msgid "Graph mode"
-msgstr "Modo de gráfico"
-
-#: ../../godmode/setup/setup_visuals.php:970
-#: ../../enterprise/meta/advanced/metasetup.visual.php:309
-msgid "Show only average by default"
-msgstr "Mostrar solo la media por defecto"
-
-#: ../../godmode/setup/setup_visuals.php:971
-#: ../../enterprise/meta/advanced/metasetup.visual.php:310
-msgid "Show MAX/AVG/MIN by default"
-msgstr "Mostrar MÁX/MEDIA/MÍN por defecto"
-
-#: ../../godmode/setup/setup_visuals.php:986
-#: ../../enterprise/meta/advanced/metasetup.visual.php:332
-msgid "Zoom graphs:"
-msgstr "Gráficas ampliadas:"
-
-#: ../../godmode/setup/setup_visuals.php:1020
-#: ../../enterprise/meta/advanced/metasetup.visual.php:836
-msgid "Legacy Visual Console View"
-msgstr "Vista de la consola visual heredada"
-
-#: ../../godmode/setup/setup_visuals.php:1032
-#: ../../godmode/setup/setup_visuals.php:1033
-#: ../../godmode/setup/setup_visuals.php:1034
-#: ../../godmode/setup/setup_visuals.php:1035
-#: ../../godmode/setup/setup_visuals.php:1343
-#: ../../enterprise/include/ajax/log_viewer.ajax.php:276
-#: ../../enterprise/meta/advanced/metasetup.visual.php:383
-#: ../../enterprise/meta/advanced/metasetup.visual.php:851
-#: ../../enterprise/meta/advanced/metasetup.visual.php:852
-#: ../../enterprise/meta/advanced/metasetup.visual.php:853
-#: ../../enterprise/meta/advanced/metasetup.visual.php:854
-#: ../../include/functions.php:503 ../../include/functions.php:634
-#: ../../include/functions_html.php:2108
-#: ../../include/functions_visual_map_editor.php:1225
-#: ../../include/functions_visual_map_editor.php:1226
-#: ../../include/functions_visual_map_editor.php:1227
-#: ../../include/functions_visual_map_editor.php:1228
-msgid "minutes"
-msgstr "minutos"
-
-#: ../../godmode/setup/setup_visuals.php:1036
-#: ../../enterprise/meta/advanced/metasetup.visual.php:855
-#: ../../include/functions_visual_map_editor.php:1229
-msgid "hour"
-msgstr "hora"
-
-#: ../../godmode/setup/setup_visuals.php:1038
-#: ../../enterprise/meta/advanced/metasetup.visual.php:857
-msgid "Default cache expiration"
-msgstr "Caducidad del caché por defecto"
-
-#: ../../godmode/setup/setup_visuals.php:1043
-#: ../../enterprise/meta/advanced/metasetup.visual.php:862
-#: ../../include/functions_visual_map_editor.php:1255
-msgid "No cache"
-msgstr "No hay chaché"
-
-#: ../../godmode/setup/setup_visuals.php:1055
-#: ../../enterprise/meta/advanced/metasetup.visual.php:874
-#: ../../enterprise/meta/include/functions_meta.php:1906
-#: ../../include/functions_config.php:1135
-msgid "Default interval for refresh on Visual Console"
-msgstr "Intervalo de actualización por defecto en la consola visual"
-
-#: ../../godmode/setup/setup_visuals.php:1059
-msgid "Classic view"
-msgstr "Vista clásica"
-
-#: ../../godmode/setup/setup_visuals.php:1060
-msgid "View of favorites"
-msgstr "Vista de favoritos"
-
-#: ../../godmode/setup/setup_visuals.php:1061
-msgid "Type of view of visual consoles"
-msgstr "Tipo de vista de las consolas visuales"
-
-#: ../../godmode/setup/setup_visuals.php:1065
-msgid "Number of favorite visual consoles to show in the menu"
-msgstr "Nº de consolas visuales favoritas mostradas en el menú"
-
-#: ../../godmode/setup/setup_visuals.php:1069
-#: ../../include/functions_config.php:1147
-msgid "Default line thickness for the Visual Console"
-msgstr "Grosor de línea por defecto en las consolas visuales"
-
-#: ../../godmode/setup/setup_visuals.php:1083
-msgid "Number of favorite services to show in the menu"
-msgstr "Número de servicios favoritos a mostrar en el menú"
-
-#: ../../godmode/setup/setup_visuals.php:1097
-#: ../../enterprise/meta/advanced/metasetup.visual.php:939
-msgid "Show report info with description"
-msgstr "Mostrar la información del informe con la descripción"
-
-#: ../../godmode/setup/setup_visuals.php:1106
-#: ../../enterprise/meta/advanced/metasetup.visual.php:951
-msgid "Custom report front page"
-msgstr "Portada de informe personalizado"
-
-#: ../../godmode/setup/setup_visuals.php:1116
-#: ../../enterprise/meta/advanced/metasetup.visual.php:963
-#: ../../enterprise/meta/include/functions_meta.php:1393
-#: ../../include/functions_config.php:1397
-msgid "PDF font size (px)"
-msgstr "Tamaño de fuente de PDF (px)"
-
-#: ../../godmode/setup/setup_visuals.php:1121
-#: ../../enterprise/meta/advanced/metasetup.visual.php:966
-#: ../../enterprise/meta/include/functions_meta.php:1383
-#: ../../include/functions_config.php:1393
-msgid "HTML font size for SLA (em)"
-msgstr "Tamaño de fuente en SLA (em)"
-
-#: ../../godmode/setup/setup_visuals.php:1126
-#: ../../enterprise/meta/advanced/metasetup.visual.php:969
-#: ../../enterprise/meta/include/functions_meta.php:1508
-msgid "Graph image height for HTML reports"
-msgstr "Altura de la imagen de la gráfica en informes HTML"
-
-#: ../../godmode/setup/setup_visuals.php:1135
-#: ../../enterprise/meta/advanced/metasetup.visual.php:1036
-#: ../../enterprise/meta/include/functions_meta.php:1403
-msgid "Interval description"
-msgstr "Descripción del intervalo"
-
-#: ../../godmode/setup/setup_visuals.php:1149
-#: ../../godmode/setup/setup_visuals.php:1164
-#: ../../godmode/setup/setup_visuals.php:1172
-#: ../../godmode/setup/setup_visuals.php:1192
-#: ../../godmode/setup/setup_visuals.php:1208
-#: ../../enterprise/meta/advanced/metasetup.visual.php:1053
-#: ../../enterprise/meta/advanced/metasetup.visual.php:1066
-#: ../../enterprise/meta/advanced/metasetup.visual.php:1077
-#: ../../enterprise/meta/advanced/metasetup.visual.php:1087
-#: ../../enterprise/meta/include/functions_meta.php:1793
-#: ../../enterprise/meta/include/functions_meta.php:1809
-#: ../../enterprise/meta/include/functions_meta.php:1819
-#: ../../enterprise/meta/include/functions_meta.php:1829
-#: ../../enterprise/meta/include/functions_meta.php:1839
-#: ../../enterprise/meta/include/functions_meta.php:1849
-#: ../../include/functions_config.php:1401
-#: ../../include/functions_config.php:1405
-#: ../../include/functions_config.php:1409
-#: ../../include/functions_config.php:1413
-#: ../../include/functions_config.php:1417
-#: ../../include/functions_config.php:1421
-msgid "Custom report front"
-msgstr "Portada de informe personalizado"
-
-#: ../../godmode/setup/setup_visuals.php:1149
-#: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:127
-#: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:130
-#: ../../enterprise/meta/advanced/metasetup.visual.php:1053
-#: ../../enterprise/meta/include/functions_meta.php:1568
-#: ../../enterprise/meta/include/functions_meta.php:1819
-#: ../../include/functions_config.php:1015
-#: ../../include/functions_config.php:1409
-msgid "Custom logo"
-msgstr "Logo personalizado"
-
-#: ../../godmode/setup/setup_visuals.php:1150
-msgid ""
-"The dir of custom logos is in your www Console in 'images/custom_logo'. You "
-"can upload more files (ONLY JPEG AND PNG) in upload tool in console."
-msgstr ""
-"El dir de los logos personalizados está en su www Consola en 'images/"
-"custom_logo'. Puede añadir más archivos (SOLO JPEG AND PNG) en la herramienta "
-"de actualización de la consola."
-
-#: ../../godmode/setup/setup_visuals.php:1172
-#: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:153
-#: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:142
-#: ../../enterprise/meta/advanced/metasetup.visual.php:1077
-#: ../../enterprise/meta/include/functions_meta.php:1829
-#: ../../include/functions_config.php:1413
-msgid "Header"
-msgstr "Encabezado"
-
-#: ../../godmode/setup/setup_visuals.php:1192
-#: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:163
-#: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:152
-#: ../../enterprise/meta/advanced/metasetup.visual.php:1087
-#: ../../enterprise/meta/include/functions_meta.php:1839
-#: ../../include/functions_config.php:1417
-msgid "First page"
-msgstr "Primera página"
-
-#: ../../godmode/setup/setup_visuals.php:1208
-#: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:173
-#: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:162
-#: ../../enterprise/meta/include/functions_meta.php:1849
-#: ../../include/functions_config.php:1421
-msgid "Footer"
-msgstr "Pie de página"
-
-#: ../../godmode/setup/setup_visuals.php:1236
-#: ../../include/functions_config.php:1219
-msgid "Networkmap max width"
-msgstr "Máximo ancho de Networkmap"
-
-#: ../../godmode/setup/setup_visuals.php:1247
-#: ../../enterprise/meta/advanced/metasetup.visual.php:454
-#: ../../enterprise/meta/include/functions_meta.php:1558
-msgid "Show only the group name"
-msgstr "Mostrar solo el nombre del grupo"
-
-#: ../../godmode/setup/setup_visuals.php:1256
-#: ../../enterprise/meta/advanced/metasetup.visual.php:105
-#: ../../enterprise/meta/include/functions_meta.php:1298
-#: ../../include/functions_config.php:918
-msgid "Date format string"
-msgstr "Formato de fecha a mostrar"
-
-#: ../../godmode/setup/setup_visuals.php:1257
-#: ../../enterprise/meta/advanced/metasetup.visual.php:109
-msgid "Example"
-msgstr "Ejemplo"
-
-#: ../../godmode/setup/setup_visuals.php:1275
-#: ../../enterprise/meta/advanced/metasetup.visual.php:136
-msgid "Timestamp, time comparison, or compact mode"
-msgstr "Marca horaria, comparación horaria o modo compacto"
-
-#: ../../godmode/setup/setup_visuals.php:1277
-#: ../../enterprise/meta/advanced/metasetup.visual.php:139
-msgid "Comparation in rollover"
-msgstr "Fecha en comparación"
-
-#: ../../godmode/setup/setup_visuals.php:1278
-#: ../../enterprise/meta/advanced/metasetup.visual.php:148
-msgid "Timestamp in rollover"
-msgstr "Fecha literal"
-
-#: ../../godmode/setup/setup_visuals.php:1279
-#: ../../enterprise/meta/advanced/metasetup.visual.php:157
-msgid "Compact mode"
-msgstr "Modo compacto"
-
-#: ../../godmode/setup/setup_visuals.php:1287
-msgid "Custom values post process"
-msgstr "Valores personalizados para postprocesado"
-
-#: ../../godmode/setup/setup_visuals.php:1308
-#: ../../godmode/setup/setup_visuals.php:1376
-msgid "Delete custom values"
-msgstr "Eliminar valores personalizados"
-
-#: ../../godmode/setup/setup_visuals.php:1340
-msgid "Interval values"
-msgstr "Valores del intervalo"
-
-#: ../../godmode/setup/setup_visuals.php:1344
-#: ../../enterprise/include/ajax/log_viewer.ajax.php:278
-#: ../../enterprise/meta/advanced/metasetup.visual.php:384
-#: ../../include/functions.php:504 ../../include/functions.php:635
-#: ../../include/functions_snmp.php:402 ../../include/functions_html.php:2109
-msgid "hours"
-msgstr "horas"
-
-#: ../../godmode/setup/setup_visuals.php:1345 ../../godmode/db/db_main.php:86
-#: ../../godmode/db/db_main.php:92
-#: ../../enterprise/include/ajax/log_viewer.ajax.php:280
-#: ../../enterprise/meta/advanced/metasetup.visual.php:385
-#: ../../include/functions.php:500 ../../include/functions.php:631
-#: ../../include/functions_html.php:2110
-msgid "days"
-msgstr "días"
-
-#: ../../godmode/setup/setup_visuals.php:1346
-#: ../../enterprise/meta/advanced/metasetup.visual.php:386
-#: ../../include/functions.php:501 ../../include/functions.php:632
-#: ../../include/functions_html.php:2112
-msgid "months"
-msgstr "meses"
-
-#: ../../godmode/setup/setup_visuals.php:1347
-#: ../../enterprise/meta/advanced/metasetup.visual.php:387
-#: ../../include/functions.php:502 ../../include/functions.php:633
-#: ../../include/functions_html.php:2113
-msgid "years"
-msgstr "años"
-
-#: ../../godmode/setup/setup_visuals.php:1357
-#: ../../enterprise/meta/advanced/metasetup.visual.php:420
-#: ../../enterprise/meta/include/functions_meta.php:1767
-#: ../../include/functions_config.php:1366
-msgid "Delete interval"
-msgstr "Borrar intervalo"
-
-#: ../../godmode/setup/setup_visuals.php:1368
-msgid "Module units"
-msgstr "Unidades de módulo"
-
-#: ../../godmode/setup/setup_visuals.php:1400
-#: ../../enterprise/meta/advanced/metasetup.visual.php:988
-#: ../../enterprise/meta/include/functions_meta.php:1413
-#: ../../include/functions_config.php:1425
-msgid "CSV divider"
-msgstr "Separador CSV"
-
-#: ../../godmode/setup/setup_visuals.php:1446
-#: ../../enterprise/meta/advanced/metasetup.visual.php:1028
-#: ../../enterprise/meta/include/functions_meta.php:1423
-#: ../../include/functions_config.php:1429
-msgid "CSV decimal separator"
-msgstr "Separador decimal CSV"
-
-#: ../../godmode/setup/setup_visuals.php:1451
-#: ../../enterprise/meta/advanced/metasetup.visual.php:903
-msgid "Data multiplier to use in graphs/data"
-msgstr "Multiplicador de datos para usar en gráficas/datos"
-
-#: ../../godmode/setup/setup_visuals.php:1453
-#: ../../enterprise/meta/advanced/metasetup.visual.php:907
-msgid "Use 1024 when module unit are bytes"
-msgstr "Utilizar 1024 cuando la unidad del módulo sea bytes"
-
-#: ../../godmode/setup/setup_visuals.php:1454
-#: ../../enterprise/meta/advanced/metasetup.visual.php:908
-msgid "Use always 1000"
-msgstr "Utilizar siempre 1000"
-
-#: ../../godmode/setup/setup_visuals.php:1455
-#: ../../enterprise/meta/advanced/metasetup.visual.php:909
-msgid "Use always 1024"
-msgstr "Utilizar siempre 1024"
-
-#: ../../godmode/setup/setup_visuals.php:1484
-msgid "Behaviour configuration"
-msgstr "Configuración del comportamiento"
-
-#: ../../godmode/setup/setup_visuals.php:1489
-msgid "GIS configuration"
-msgstr "Configuración GIS"
-
-#: ../../godmode/setup/setup_visuals.php:1494
-msgid "Style configuration"
-msgstr "Configuración de estilo"
-
-#: ../../godmode/setup/setup_visuals.php:1499
-msgid "Charts configuration"
-msgstr "Configuración de gráficos"
-
-#: ../../godmode/setup/setup_visuals.php:1504
-msgid "Font and Text configuration"
-msgstr "Configuración de fuente y texto"
-
-#: ../../godmode/setup/setup_visuals.php:1509
-msgid "Visual consoles configuration"
-msgstr "Configuración de las consolas visuales"
-
-#: ../../godmode/setup/setup_visuals.php:1514
-msgid "Reports configuration "
-msgstr "Configuración de informes "
-
-#: ../../godmode/setup/setup_visuals.php:1519
-msgid "Services configuration"
-msgstr "Configuración de servicios"
-
-#: ../../godmode/setup/setup_visuals.php:1524
-msgid "Other configuration"
-msgstr "Otra configuración"
-
-#: ../../godmode/setup/setup_visuals.php:1752
-#: ../../enterprise/meta/advanced/metasetup.visual.php:1318
-msgid "Logo preview"
-msgstr "Logo de vista previa"
-
-#: ../../godmode/setup/setup_visuals.php:1782
-#: ../../enterprise/meta/advanced/metasetup.visual.php:1340
-msgid "Splash Preview"
-msgstr "Vista previa de Splash"
-
-#: ../../godmode/setup/setup_visuals.php:1801
-msgid "Mobile console logo preview"
-msgstr "Vista previa del logo de la consola móvil"
-
-#: ../../godmode/setup/setup_visuals.php:1806
-#: ../../enterprise/meta/advanced/metasetup.visual.php:1345
-msgid "Background preview"
-msgstr "Vista previa del fondo"
-
-#: ../../godmode/setup/setup_visuals.php:1836
-msgid "Gis icons preview"
-msgstr "Vista previa de los iconos GIS"
-
-#: ../../godmode/setup/setup_visuals.php:1902
-msgid "Status set preview"
-msgstr "Vista previa del estado"
-
-#: ../../godmode/setup/setup_websocket_engine.php:38
-msgid "WebSocket settings"
-msgstr "Ajustes de WebSocket"
-
-#: ../../godmode/setup/setup_websocket_engine.php:47
-msgid "Bind address"
-msgstr "Dirección de enlace"
-
-#: ../../godmode/setup/setup_websocket_engine.php:57
-msgid "Bind port"
-msgstr "Puerto de enlace"
-
-#: ../../godmode/setup/setup_websocket_engine.php:67
-#: ../../include/functions_config.php:1784
-msgid "WebSocket proxy url"
-msgstr "URL del proxy de WebSocket"
-
-#: ../../godmode/setup/setup_integria.php:261
-#: ../../include/functions_config.php:1670
-msgid "Enable Integria IMS"
-msgstr "Habilitar Integria IMS"
-
-#: ../../godmode/setup/setup_integria.php:296
-msgid "URL to Integria IMS setup"
-msgstr "URL a la configuración de Integria IMS"
-
-#: ../../godmode/setup/setup_integria.php:296
-msgid ""
-"Full URL to your Integria IMS setup (e.g., http://192.168.1.20/integria, "
-"https://support.mycompany.com)."
-msgstr ""
-"URL completa a su configuración de Integria IMS (por ejemplo, "
-"http://192.168.1.20/integria, https://support.mycompany.com)."
-
-#: ../../godmode/setup/setup_integria.php:302
-msgid "API Password"
-msgstr "Contraseña de la API"
-
-#: ../../godmode/setup/setup_integria.php:309
-#: ../../godmode/setup/setup_ehorus.php:105
-msgid "Request timeout"
-msgstr "Tiempo de espera excedido para la petición"
-
-#: ../../godmode/setup/setup_integria.php:314
-#: ../../godmode/agentes/configurar_agente.php:711
-#: ../../enterprise/operation/snmpconsole/snmp_view.php:23
-#: ../../enterprise/operation/agentes/ver_agente.php:192
-#: ../../enterprise/operation/menu.php:19
-#: ../../enterprise/operation/inventory/inventory.php:137
-#: ../../enterprise/godmode/agentes/configurar_agente.php:88
-#: ../../enterprise/godmode/policies/policies.php:539
-#: ../../enterprise/include/functions_reporting_csv.php:754
-#: ../../enterprise/meta/general/main_menu.php:229
-#: ../../include/functions_reports.php:878
-#: ../../include/functions_reports.php:885
-#: ../../include/functions_reports.php:886
-#: ../../include/functions_reports.php:890
-#: ../../include/functions_reporting.php:2612
-msgid "Inventory"
-msgstr "Inventario"
-
-#: ../../godmode/setup/setup_integria.php:315
-msgid "Sync inventory"
-msgstr "Inventario Sync"
-
-#: ../../godmode/setup/setup_integria.php:348
-#: ../../godmode/setup/setup_integria.php:469
-msgid "Ticket body"
-msgstr "Cuerpo del ticket"
-
-#: ../../godmode/setup/setup_integria.php:585 ../../godmode/setup/setup.php:165
-#: ../../godmode/setup/setup.php:283 ../../godmode/menu.php:350
-msgid "Integria IMS"
-msgstr "Integria IMS"
-
-#: ../../godmode/setup/setup_integria.php:603
-msgid "Integria API settings"
-msgstr "Ajustes de la API de Integria"
-
-#: ../../godmode/setup/setup_integria.php:614
-msgid "Alert default values"
-msgstr "Valores por defecto de la API"
-
-#: ../../godmode/setup/setup_integria.php:624
-msgid "Event custom response default values"
-msgstr "Valores por defecto de respuesta de evento personalizados"
-
-#: ../../godmode/setup/setup_integria.php:636
-#: ../../godmode/wizards/HostDevices.class.php:772
-#: ../../enterprise/include/class/MySQL.app.php:591
-#: ../../enterprise/include/class/SAP.app.php:444
-#: ../../enterprise/include/class/VMware.app.php:536
-#: ../../enterprise/include/class/DB2.app.php:569
-#: ../../enterprise/include/class/Oracle.app.php:576
-#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:570
-#: ../../enterprise/include/lib/ClusterViewer/ClusterWizard.php:1202
-#: ../../include/class/CustomNetScan.class.php:553
-msgid "Update and continue"
-msgstr "Actualizar y continuar"
-
-#: ../../godmode/setup/setup_integria.php:719
-#: ../../godmode/setup/setup_ehorus.php:254
-msgid "Connection timeout"
-msgstr "La sesión ha caducado."
-
-#: ../../godmode/setup/file_manager.php:46 ../../godmode/menu.php:399
-#: ../../enterprise/meta/advanced/metasetup.php:117
-#: ../../enterprise/meta/advanced/metasetup.php:239
-msgid "File manager"
-msgstr "Gestor de archivos"
-
-#: ../../godmode/setup/file_manager.php:66 ../../godmode/servers/plugin.php:235
-#: ../../include/functions_filemanager.php:590
-#, php-format
-msgid "Index of %s"
-msgstr "Índice de %s"
-
-#: ../../godmode/setup/setup_netflow.php:37
-#: ../../include/functions_config.php:1439
-msgid "Data storage path"
-msgstr "Ruta de almacenamiento de datos"
-
-#: ../../godmode/setup/setup_netflow.php:40
-#: ../../include/functions_config.php:1443
-msgid "Daemon interval"
-msgstr "Intervalo del demonio"
-
-#: ../../godmode/setup/setup_netflow.php:43
-#: ../../include/functions_config.php:1447
-msgid "Daemon binary path"
-msgstr "Ruta de demonio binario"
-
-#: ../../godmode/setup/setup_netflow.php:46
-#: ../../include/functions_config.php:1451
-msgid "Nfdump binary path"
-msgstr "Ruta binaria Nfdump"
-
-#: ../../godmode/setup/setup_netflow.php:49
-#: ../../include/functions_config.php:1455
-msgid "Nfexpire binary path"
-msgstr "Ruta binaria Nfexpire"
-
-#: ../../godmode/setup/setup_netflow.php:52
-#: ../../include/functions_config.php:1459
-msgid "Maximum chart resolution"
-msgstr "Máxima resolución del gráfico"
-
-#: ../../godmode/setup/setup_netflow.php:55
-#: ../../enterprise/meta/advanced/metasetup.setup.php:218
-#: ../../include/functions_config.php:1463
-msgid "Disable custom live view filters"
-msgstr "Desactiva los filtros de vista activa personalizados"
-
-#: ../../godmode/setup/setup_netflow.php:57
-#: ../../include/functions_config.php:1467
-msgid "Netflow max lifetime"
-msgstr "Tiempo  máximo del Netflow"
-
-#: ../../godmode/setup/setup_netflow.php:60
-#: ../../include/functions_config.php:1471
-msgid "Name resolution for IP address"
-msgstr "Habilitar la resolución de nombre con IP"
-
-#: ../../godmode/setup/setup_auth.php:56
-#: ../../enterprise/meta/include/functions_meta.php:512
-#: ../../include/functions_config.php:636
-msgid "Fallback to local authentication"
-msgstr "Alternativa si falla la autentificación"
-
-#: ../../godmode/setup/setup_auth.php:69
-#: ../../enterprise/meta/include/functions_meta.php:522
-#: ../../enterprise/meta/include/functions_meta.php:741
-#: ../../include/functions_config.php:548
-msgid "Autocreate remote users"
-msgstr "Crear usuarios remotos automáticamente"
-
-#: ../../godmode/setup/setup_auth.php:92
-#: ../../enterprise/meta/include/functions_meta.php:909
-#: ../../include/functions_config.php:604
-msgid "LDAP server"
-msgstr "Servidor LDAP"
-
-#: ../../godmode/setup/setup_auth.php:105
-#: ../../enterprise/meta/include/functions_meta.php:919
-#: ../../include/functions_config.php:608
-msgid "LDAP port"
-msgstr "Puerto LDAP"
-
-#: ../../godmode/setup/setup_auth.php:123
-#: ../../enterprise/meta/include/functions_meta.php:929
-#: ../../include/functions_config.php:612
-msgid "LDAP version"
-msgstr "Versión LDAP"
-
-#: ../../godmode/setup/setup_auth.php:137
-#: ../../enterprise/godmode/setup/setup_auth.php:589
-#: ../../enterprise/godmode/setup/setup_auth.php:1391
-#: ../../enterprise/meta/include/functions_meta.php:655
-#: ../../enterprise/meta/include/functions_meta.php:939
-#: ../../include/functions_config.php:580 ../../include/functions_config.php:616
-msgid "Start TLS"
-msgstr "Start TLS"
-
-#: ../../godmode/setup/setup_auth.php:148
-#: ../../enterprise/meta/include/functions_meta.php:949
-#: ../../include/functions_config.php:620
-msgid "Base DN"
-msgstr "DN base"
-
-#: ../../godmode/setup/setup_auth.php:161
-#: ../../enterprise/meta/include/functions_meta.php:959
-#: ../../include/functions_config.php:624
-msgid "Login attribute"
-msgstr "Atributo de acceso"
-
-#: ../../godmode/setup/setup_auth.php:174
-#: ../../enterprise/meta/include/functions_meta.php:969
-#: ../../include/functions_config.php:628
-msgid "Admin LDAP login"
-msgstr "Inicio de sesión de administrador LDAP"
-
-#: ../../godmode/setup/setup_auth.php:187
-#: ../../enterprise/meta/include/functions_meta.php:979
-#: ../../include/functions_config.php:632
-msgid "Admin LDAP password"
-msgstr "Contraseña de administrador LDAP"
-
-#: ../../godmode/setup/setup_auth.php:238
-msgid "Force 2FA for all users is enabled"
-msgstr "Forzar 2FA para todos los usuarios está habilitado"
-
-#: ../../godmode/setup/setup_auth.php:259
-msgid "Session timeout (mins)"
-msgstr "Fin de la sesión (minutos)"
-
-#: ../../godmode/setup/setup_auth.php:302
-#, php-format
-msgid "Local %s"
-msgstr "%s local"
-
-#: ../../godmode/setup/setup_auth.php:303
-msgid "ldap"
-msgstr "LDAP"
-
-#: ../../godmode/setup/setup_auth.php:310
-#: ../../enterprise/meta/include/functions_meta.php:502
-#: ../../include/functions_config.php:544
-#: ../../include/class/AgentWizard.class.php:831
-msgid "Authentication method"
-msgstr "Método de autentificación"
-
-#: ../../godmode/setup/setup_general.php:77
-#: ../../include/functions_register.php:122
-msgid "Language code"
-msgstr "Codigo de idioma"
-
-#: ../../godmode/setup/setup_general.php:88
-#: ../../enterprise/meta/advanced/metasetup.setup.php:155
-#: ../../enterprise/meta/include/functions_meta.php:138
-#: ../../include/functions_config.php:182
-msgid "Remote config directory"
-msgstr "Directorio remoto de configuración"
-
-#: ../../godmode/setup/setup_general.php:98
-#: ../../enterprise/meta/advanced/metasetup.setup.php:158
-#: ../../enterprise/meta/include/functions_meta.php:148
-msgid "Phantomjs bin directory"
-msgstr "Directorio Phantomjs bin"
-
-#: ../../godmode/setup/setup_general.php:110
-#: ../../enterprise/meta/advanced/metasetup.setup.php:126
-#: ../../enterprise/meta/include/functions_meta.php:82
-#: ../../include/functions_config.php:190
-msgid "Auto login (hash) password"
-msgstr "Contraseña («hash») de inicio de sesión automático"
-
-#: ../../godmode/setup/setup_general.php:124
-#: ../../enterprise/meta/advanced/metasetup.setup.php:142
-#: ../../enterprise/meta/include/functions_meta.php:92
-#: ../../include/functions_config.php:194
-msgid "Time source"
-msgstr "Hora de referencia"
-
-#: ../../godmode/setup/setup_general.php:126
-#: ../../enterprise/meta/advanced/metasetup.setup.php:145
-msgid "Database"
-msgstr "Base de datos"
-
-#: ../../godmode/setup/setup_general.php:137
-#: ../../include/functions_config.php:198
-msgid "Automatic check for updates"
-msgstr "Comprobación automática de actualizaciones"
-
-#: ../../godmode/setup/setup_general.php:145
-msgid "Enforce https Information"
-msgstr "Aplicar la información http"
-
-#: ../../godmode/setup/setup_general.php:146
-msgid "If SSL is not properly configured you will lose access to "
-msgstr "Si SSL no está configurado adecuadamente, perderá acceso a "
-
-#: ../../godmode/setup/setup_general.php:146
-#: ../../godmode/setup/setup_general.php:340
-msgid " Console"
-msgstr " Consola"
-
-#: ../../godmode/setup/setup_general.php:149
-#: ../../enterprise/meta/advanced/metasetup.setup.php:148
-#: ../../enterprise/meta/include/functions_meta.php:102
-#: ../../include/functions_config.php:206
-msgid "Enforce https"
-msgstr "Forzar https"
-
-#: ../../godmode/setup/setup_general.php:160
-msgid "Use cert of SSL"
-msgstr "Usar el certificado SSL"
-
-#: ../../godmode/setup/setup_general.php:173
-msgid "Path of SSL Cert."
-msgstr "Ruta del certificado SSL"
-
-#: ../../godmode/setup/setup_general.php:183
-#: ../../enterprise/meta/advanced/metasetup.setup.php:152
-#: ../../enterprise/meta/include/functions_meta.php:127
-#: ../../include/functions_config.php:217
-msgid "Attachment store"
-msgstr "Almacenamiento de adjuntos"
-
-#: ../../godmode/setup/setup_general.php:193
-#: ../../enterprise/meta/advanced/metasetup.setup.php:272
-#: ../../enterprise/meta/include/functions_meta.php:238
-#: ../../include/functions_config.php:230
-msgid "IP list with API access"
-msgstr "Lista de IPs con acceso a la API"
-
-#: ../../godmode/setup/setup_general.php:212
-#: ../../enterprise/godmode/setup/setup_metaconsole.php:210
-#: ../../enterprise/meta/advanced/metasetup.consoles.php:533
-#: ../../enterprise/meta/advanced/metasetup.setup.php:267
-#: ../../enterprise/meta/include/functions_meta.php:218
-#: ../../enterprise/meta/include/functions_meta.php:228
-#: ../../include/functions_config.php:234
-msgid "API password"
-msgstr "Contraseña de la API"
-
-#: ../../godmode/setup/setup_general.php:223
-#: ../../include/functions_config.php:238
-msgid "Enable GIS features"
-msgstr "Habilitar funcionalidades GIS"
-
-#: ../../godmode/setup/setup_general.php:231
-#: ../../include/functions_config.php:254
-msgid "Enable Netflow"
-msgstr "Activar Netflow"
-
-#: ../../godmode/setup/setup_general.php:249
-#: ../../enterprise/meta/advanced/metasetup.setup.php:162
-#: ../../include/functions_visual_map_editor.php:290
-#: ../../include/functions_register.php:134
-#: ../../include/rest-api/models/VisualConsole/Items/Clock.php:271
-msgid "Africa"
-msgstr "África"
-
-#: ../../godmode/setup/setup_general.php:250
-#: ../../enterprise/meta/advanced/metasetup.setup.php:163
-#: ../../include/functions_visual_map_editor.php:291
-#: ../../include/functions_register.php:135
-#: ../../include/rest-api/models/VisualConsole/Items/Clock.php:272
-msgid "America"
-msgstr "América"
-
-#: ../../godmode/setup/setup_general.php:251
-#: ../../enterprise/meta/advanced/metasetup.setup.php:164
-#: ../../include/functions_visual_map_editor.php:292
-#: ../../include/functions_register.php:136
-#: ../../include/rest-api/models/VisualConsole/Items/Clock.php:273
-msgid "Antarctica"
-msgstr "Antártida"
-
-#: ../../godmode/setup/setup_general.php:252
-#: ../../enterprise/meta/advanced/metasetup.setup.php:165
-#: ../../include/functions_visual_map_editor.php:293
-#: ../../include/functions_register.php:137
-#: ../../include/rest-api/models/VisualConsole/Items/Clock.php:274
-msgid "Arctic"
-msgstr "Ártico"
-
-#: ../../godmode/setup/setup_general.php:253
-#: ../../enterprise/meta/advanced/metasetup.setup.php:166
-#: ../../include/functions_visual_map_editor.php:294
-#: ../../include/functions_register.php:138
-#: ../../include/rest-api/models/VisualConsole/Items/Clock.php:275
-msgid "Asia"
-msgstr "Asia"
-
-#: ../../godmode/setup/setup_general.php:254
-#: ../../enterprise/meta/advanced/metasetup.setup.php:167
-#: ../../include/functions_visual_map_editor.php:295
-#: ../../include/functions_register.php:139
-#: ../../include/rest-api/models/VisualConsole/Items/Clock.php:276
-msgid "Atlantic"
-msgstr "Atlántico"
-
-#: ../../godmode/setup/setup_general.php:255
-#: ../../enterprise/meta/advanced/metasetup.setup.php:168
-#: ../../include/functions_visual_map_editor.php:296
-#: ../../include/functions_register.php:140
-#: ../../include/rest-api/models/VisualConsole/Items/Clock.php:277
-msgid "Australia"
-msgstr "Australia"
-
-#: ../../godmode/setup/setup_general.php:256
-#: ../../enterprise/meta/advanced/metasetup.setup.php:169
-#: ../../include/functions_visual_map_editor.php:297
-#: ../../include/functions_register.php:141
-#: ../../include/rest-api/models/VisualConsole/Items/Clock.php:278
-msgid "Europe"
-msgstr "Europa"
-
-#: ../../godmode/setup/setup_general.php:257
-#: ../../enterprise/meta/advanced/metasetup.setup.php:170
-#: ../../include/functions_visual_map_editor.php:298
-#: ../../include/functions_register.php:142
-#: ../../include/rest-api/models/VisualConsole/Items/Clock.php:279
-msgid "Indian"
-msgstr "Índico"
-
-#: ../../godmode/setup/setup_general.php:258
-#: ../../enterprise/meta/advanced/metasetup.setup.php:171
-#: ../../include/functions_visual_map_editor.php:299
-#: ../../include/functions_register.php:143
-#: ../../include/rest-api/models/VisualConsole/Items/Clock.php:280
-msgid "Pacific"
-msgstr "Pacífico"
-
-#: ../../godmode/setup/setup_general.php:259
-#: ../../enterprise/meta/advanced/metasetup.setup.php:172
-#: ../../include/functions_visual_map_editor.php:300
-#: ../../include/functions_register.php:144
-#: ../../include/rest-api/models/VisualConsole/Items/Clock.php:281
-msgid "UTC"
-msgstr "UTC"
-
-#: ../../godmode/setup/setup_general.php:279
-#: ../../enterprise/meta/advanced/metasetup.setup.php:191
-#: ../../enterprise/meta/include/functions_meta.php:158
-#: ../../include/functions_config.php:259
-#: ../../include/functions_register.php:164
-msgid "Timezone setup"
-msgstr "Configuración de zona horaria"
-
-#: ../../godmode/setup/setup_general.php:296
-#: ../../enterprise/meta/advanced/metasetup.setup.php:193
-msgid "Change timezone"
-msgstr "Cambiar zona horaria"
-
-#: ../../godmode/setup/setup_general.php:319
-#: ../../enterprise/meta/advanced/metasetup.setup.php:197
-#: ../../enterprise/meta/include/functions_meta.php:168
-#: ../../include/functions_config.php:290
-msgid "Public URL"
-msgstr "URL pública"
-
-#: ../../godmode/setup/setup_general.php:329
-#: ../../enterprise/meta/advanced/metasetup.setup.php:201
-#: ../../enterprise/meta/include/functions_meta.php:178
-#: ../../include/functions_config.php:294
-msgid "Force use Public URL"
-msgstr "Forzar el uso de la URL pública"
-
-#: ../../godmode/setup/setup_general.php:338
-msgid "Enforce public URL usage information"
-msgstr "Aplicar la información de uso de la URL pública"
-
-#: ../../godmode/setup/setup_general.php:340
-msgid "If public URL is not properly configured you will lose access to "
-msgstr "Si la URL pública no está configurada correctamente, perderá acceso a "
-
-#: ../../godmode/setup/setup_general.php:343
-#: ../../enterprise/meta/advanced/metasetup.setup.php:215
-#: ../../enterprise/meta/include/functions_meta.php:188
-#: ../../include/functions_config.php:298
-msgid "Public URL host exclusions"
-msgstr "Exclusiones del host de URL pública"
-
-#: ../../godmode/setup/setup_general.php:353
-#: ../../include/functions_config.php:302
-msgid "Referer security"
-msgstr "Seguridad de Referer"
-
-#: ../../godmode/setup/setup_general.php:361
-#: ../../include/functions_config.php:306
-msgid "Event storm protection"
-msgstr "Protección de tormenta de eventos"
-
-#: ../../godmode/setup/setup_general.php:370
-#: ../../enterprise/meta/advanced/metasetup.setup.php:222
-#: ../../enterprise/meta/include/functions_meta.php:208
-#: ../../include/functions_config.php:310
-msgid "Command Snapshot"
-msgstr "Salida de comandos como capturas"
-
-#: ../../godmode/setup/setup_general.php:378
-msgid "Change remote config encoding"
-msgstr "Cambiar codificación de configuración remota"
-
-#: ../../godmode/setup/setup_general.php:386
-#: ../../include/functions_config.php:318
-msgid "Server logs directory"
-msgstr "Directorio de logs del servidor"
-
-#: ../../godmode/setup/setup_general.php:396
-#: ../../include/functions_config.php:322
-msgid "Log size limit in system logs viewer extension"
-msgstr "Límite de tamaño de logs en la extensión del visor de logs del sistema"
-
-#: ../../godmode/setup/setup_general.php:407
-msgid "Full mode"
-msgstr "Modo total"
-
-#: ../../godmode/setup/setup_general.php:408
-#: ../../enterprise/include/lib/NetworkManager.php:88
-msgid "On demand"
-msgstr "Por demanda"
-
-#: ../../godmode/setup/setup_general.php:409
-msgid "Expert"
-msgstr "Experta/o"
-
-#: ../../godmode/setup/setup_general.php:411
-#: ../../include/functions_config.php:326
-msgid "Tutorial mode"
-msgstr "Modo tutorial"
-
-#: ../../godmode/setup/setup_general.php:425
-#: ../../include/functions_config.php:330
-msgid "Allow create scheduled downtimes in the past"
-msgstr ""
-"Permitir la creación de paradas planificadas con fecha anterior a la actual"
-
-#: ../../godmode/setup/setup_general.php:433
-msgid "Limit for bulk operations"
-msgstr "Límite de operaciones en bloque"
-
-#: ../../godmode/setup/setup_general.php:443
-msgid "Include agents manually disabled"
-msgstr "Incluir agentes deshabilitados manualmente"
-
-#: ../../godmode/setup/setup_general.php:451
-msgid "Set alias as name by default in agent creation"
-msgstr "Poner alias como nombre por defecto en la creación de agente"
-
-#: ../../godmode/setup/setup_general.php:459
-#: ../../godmode/agentes/agent_manager.php:301
-#: ../../include/functions_config.php:362
-msgid "Unique IP"
-msgstr "IP única"
-
-#: ../../godmode/setup/setup_general.php:467
-#: ../../enterprise/meta/advanced/metasetup.setup.php:324
-#: ../../enterprise/meta/include/functions_meta.php:303
-msgid "Enable console log"
-msgstr "Habilitar log de consola"
-
-#: ../../godmode/setup/setup_general.php:468
-#: ../../godmode/setup/setup_general.php:479
-msgid "Log location"
-msgstr "Localización de logs"
-
-#: ../../godmode/setup/setup_general.php:478
-#: ../../enterprise/meta/advanced/metasetup.setup.php:345
-#: ../../enterprise/meta/include/functions_meta.php:313
-msgid "Enable audit log"
-msgstr "Habilitar auditoría de logs"
-
-#: ../../godmode/setup/setup_general.php:489
-msgid "Module custom ID readonly"
-msgstr "Solo lectura del ID personalizado de módulo"
-
-#: ../../godmode/setup/setup_general.php:490
-msgid "Useful for integrations"
-msgstr "Útil para integraciones"
-
-#: ../../godmode/setup/setup_general.php:503
-msgid "General options"
-msgstr "Opciones generales"
-
-#: ../../godmode/setup/setup_general.php:518
-#: ../../enterprise/meta/advanced/metasetup.mail.php:104
-msgid "Mail configuration"
-msgstr "Configuración de email"
-
-#: ../../godmode/setup/setup_general.php:522
-msgid ""
-"Please notice that some providers like Gmail or Office365 need to setup/enable "
-"manually external connections using SMTP and you need to use STARTTLS on port "
-"587.\n"
-"\n"
-"    If you have manual settings in your pandora_server.conf, please note these "
-"settings will ignore this console setup."
-msgstr ""
-"Algunos de los proveedores como Gmail u Office365 necesitan ajustar/habilitar "
-"las conexiones externas manualmente utilizando SNMP y necesita usar STARTTLS "
-"en el puerto 587."
-
-#: ../../godmode/setup/setup_general.php:528
-msgid "From address"
-msgstr "De"
-
-#: ../../godmode/setup/setup_general.php:538
-#: ../../enterprise/meta/advanced/metasetup.mail.php:112
-#: ../../include/functions_config.php:374
-msgid "From name"
-msgstr "Desde nombre"
-
-#: ../../godmode/setup/setup_general.php:548
-msgid "SMTP Server"
-msgstr "Servidor SMTP"
-
-#: ../../godmode/setup/setup_general.php:558
-msgid "SMTP Port"
-msgstr "Puerto SMTP"
-
-#: ../../godmode/setup/setup_general.php:568
-#: ../../include/functions_config.php:382
-msgid "Encryption"
-msgstr "Encriptación"
-
-#: ../../godmode/setup/setup_general.php:579
-#: ../../enterprise/meta/advanced/metasetup.mail.php:121
-#: ../../include/functions_config.php:386
-msgid "Email user"
-msgstr "Usuario de email"
-
-#: ../../godmode/setup/setup_general.php:589
-#: ../../enterprise/meta/advanced/metasetup.mail.php:124
-#: ../../include/functions_config.php:390
-msgid "Email password"
-msgstr "Contraseña de email"
-
-#: ../../godmode/setup/setup_general.php:608
-msgid "Email test"
-msgstr "Prueba de email"
-
-#: ../../godmode/setup/setup_general.php:660 ../../general/header.php:813
-msgid "Send"
-msgstr "Enviar"
-
-#: ../../godmode/setup/setup_general.php:670
-msgid "Check mail configuration"
-msgstr "Revisar configuración de correo"
-
-#: ../../godmode/setup/license.php:51
-msgid "License management"
-msgstr "Gestión de licencias"
-
-#: ../../godmode/setup/license.php:80
-#: ../../enterprise/meta/advanced/license_meta.php:52
-msgid "Failed to Update license file"
-msgstr "Error al actualizar el archivo de licencia"
-
-#: ../../godmode/setup/license.php:83 ../../enterprise/load_enterprise.php:559
-msgid "License updated"
-msgstr "Licencia actualizada"
-
-#: ../../godmode/setup/license.php:99
-msgid "Error while connecting to licence server."
-msgstr "Error al conectar con el servidor de licencias."
-
-#: ../../godmode/setup/license.php:100
-msgid "Invalid response while validating license."
-msgstr "Respuesta no válida al validar la licencia."
-
-#: ../../godmode/setup/license.php:101
-#: ../../enterprise/meta/advanced/metasetup.consoles.php:322
-msgid "Unknown error"
-msgstr "Error desconocido"
-
-#: ../../godmode/setup/license.php:121
-msgid "Licence"
-msgstr "Licencia"
-
-#: ../../godmode/setup/license.php:129
-#: ../../include/class/Diagnostics.class.php:1152
-msgid "Customer key"
-msgstr "Clave del cliente"
-
-#: ../../godmode/setup/license.php:135
-#: ../../include/class/Diagnostics.class.php:1160
-msgid "Platform Limit"
-msgstr "Límite de la plataforma"
-
-#: ../../godmode/setup/license.php:136 ../../godmode/setup/license.php:139
-#: ../../godmode/setup/license.php:142 ../../godmode/setup/license.php:145
-msgid "agents"
-msgstr "agentes"
-
-#: ../../godmode/setup/license.php:138
-#: ../../include/class/Diagnostics.class.php:1164
-msgid "Current Platform Count"
-msgstr "Cómputo de la plataforma actual"
-
-#: ../../godmode/setup/license.php:141
-#: ../../include/class/Diagnostics.class.php:1168
-msgid "Current Platform Count (enabled: items)"
-msgstr "Cómputo de la plataforma actual (activado: elementos)"
-
-#: ../../godmode/setup/license.php:144
-#: ../../include/class/Diagnostics.class.php:1172
-msgid "Current Platform Count (disabled: items)"
-msgstr "Cómputo de la plataforma actual (desactivado: elementos)"
-
-#: ../../godmode/setup/license.php:147
-#: ../../include/class/Diagnostics.class.php:1176
-msgid "License Mode"
-msgstr "Modalidad de licencia"
-
-#: ../../godmode/setup/license.php:150
-msgid "NMS"
-msgstr "NMS"
-
-#: ../../godmode/setup/license.php:151 ../../godmode/setup/license.php:154
-#: ../../enterprise/godmode/agentes/agent_autoconfiguration.php:66
-msgid "enabled"
-msgstr "activado"
-
-#: ../../godmode/setup/license.php:151 ../../godmode/setup/license.php:154
-#: ../../enterprise/godmode/agentes/agent_autoconfiguration.php:69
-msgid "disabled"
-msgstr "desactivado"
-
-#: ../../godmode/setup/license.php:153
-#: ../../godmode/servers/modificar_server.php:42
-#: ../../include/functions_ui.php:866
-#: ../../include/class/Diagnostics.class.php:1184
-msgid "Satellite"
-msgstr "Satélite"
-
-#: ../../godmode/setup/license.php:156
-#: ../../include/class/Diagnostics.class.php:1188
-msgid "Licensed to"
-msgstr "Con licencia para"
-
-#: ../../godmode/setup/license.php:167 ../../godmode/setup/license.php:182
-msgid "Request new license"
-msgstr "Solicitar nueva licencia"
-
-#: ../../godmode/setup/license.php:186
-#, php-format
-msgid "To get your <b>%s Enterprise License</b>:"
-msgstr "Para conseguir la <b>%s licencia Enterprise</b>:"
-
-#: ../../godmode/setup/license.php:189
-#, php-format
-msgid "Go to %s"
-msgstr "Ir a %s"
-
-#: ../../godmode/setup/license.php:192
-msgid "Enter the <b>auth key</b> and the following <b>request key</b>:"
-msgstr ""
-"Introduce la <b>clave de autentificación</b> y la siguiente <b>clave de "
-"petición</b>:"
-
-#: ../../godmode/setup/license.php:198
-msgid "Enter your name (or a company name) and a contact email address."
-msgstr "Introduce tu nombre (o el de tu empresa) y un email de contacto."
-
-#: ../../godmode/setup/license.php:201
-msgid "Click on <b>Generate</b>."
-msgstr "Haz clic en <b>Generar</b>"
-
-#: ../../godmode/setup/license.php:204
-msgid ""
-"Click <a href=\"javascript: close_code_license_dialog();\">here</a>, enter the "
-"generated license key and click on <b>Validate</b>."
-msgstr ""
-"Haz clic <a href=\"javascript: close_code_license_dialog();\">aquí</a>, "
-"introduce la clave de licencia generada y pulsa en <b>Validar</b>."
-
-#: ../../godmode/setup/gis_step_2.php:37
-msgid "GIS Maps connections"
-msgstr "Conexiones mapas GIS"
-
-#: ../../godmode/setup/gis_step_2.php:54
-msgid "Create new map connection"
-msgstr "Crear nueva conexión de mapas"
-
-#: ../../godmode/setup/gis_step_2.php:81
-msgid "Edit map connection"
-msgstr "Editar la conexión de mapas"
-
-#: ../../godmode/setup/gis_step_2.php:213
-msgid "Connection Name"
-msgstr "Nombre de conexión"
-
-#: ../../godmode/setup/gis_step_2.php:219
-msgid "Number of zoom levels"
-msgstr "Número de niveles de zoom"
-
-#: ../../godmode/setup/gis_step_2.php:223
-msgid "Default zoom level"
-msgstr "Nivel de zoom por defecto"
-
-#: ../../godmode/setup/gis_step_2.php:226
-msgid "Basic configuration"
-msgstr "Configuración básica"
-
-#: ../../godmode/setup/gis_step_2.php:231
-msgid "Open Street Maps"
-msgstr "OpenStreetMaps"
-
-#: ../../godmode/setup/gis_step_2.php:232
-msgid "Google Maps"
-msgstr "Google Maps"
-
-#: ../../godmode/setup/gis_step_2.php:234
-msgid "WMS Server"
-msgstr "Servidor WMS"
-
-#: ../../godmode/setup/gis_step_2.php:236
-msgid "Please select the connection type"
-msgstr "Tipo de conexión"
-
-#: ../../godmode/setup/gis_step_2.php:238
-msgid "Map connection type"
-msgstr "Tipo de conexión de mapa"
-
-#: ../../godmode/setup/gis_step_2.php:286
-msgid "Tile Server URL"
-msgstr "URL del servidor tile"
-
-#: ../../godmode/setup/gis_step_2.php:299
-msgid "Google Physical"
-msgstr "Google Physical"
-
-#: ../../godmode/setup/gis_step_2.php:300
-msgid "Google Hybrid"
-msgstr "Google Hybrid"
-
-#: ../../godmode/setup/gis_step_2.php:301
-msgid "Google Satelite"
-msgstr "Google Satélite"
-
-#: ../../godmode/setup/gis_step_2.php:303
-msgid "Google Map Type"
-msgstr "Tipo de mapa de Google"
-
-#: ../../godmode/setup/gis_step_2.php:327
-msgid "Google Maps Key"
-msgstr "Clave de Google Maps"
-
-#: ../../godmode/setup/gis_step_2.php:336
-msgid "Image URL"
-msgstr "URL de la imagen"
-
-#: ../../godmode/setup/gis_step_2.php:343
-msgid "Corners of the area of the image"
-msgstr "Esquinas del área de la imagen"
-
-#: ../../godmode/setup/gis_step_2.php:343
-#: ../../include/rest-api/models/VisualConsole/Item.php:1960
-msgid "Left"
-msgstr "Izquierda"
-
-#: ../../godmode/setup/gis_step_2.php:350
-#: ../../include/lib/Dashboard/Widgets/top_n_events_by_group.php:317
-#: ../../include/lib/Dashboard/Widgets/top_n_events_by_module.php:317
-#: ../../include/rest-api/models/VisualConsole/Item.php:1957
-msgid "Bottom"
-msgstr "Inferior"
-
-#: ../../godmode/setup/gis_step_2.php:357
-#: ../../include/rest-api/models/VisualConsole/Item.php:1959
-msgid "Right"
-msgstr "Derecha"
-
-#: ../../godmode/setup/gis_step_2.php:364
-#: ../../include/rest-api/models/VisualConsole/Item.php:1958
-msgid "Top"
-msgstr "Superior"
-
-#: ../../godmode/setup/gis_step_2.php:371
-msgid "Image Size"
-msgstr "Tamaño de imagen"
-
-#: ../../godmode/setup/gis_step_2.php:388
-msgid "WMS Server URL"
-msgstr "URL del servidor WMS"
-
-#: ../../godmode/setup/gis_step_2.php:395
-#: ../../godmode/gis_maps/configure_gis_map.php:552
-msgid "Layers"
-msgstr "Capas"
-
-#: ../../godmode/setup/gis_step_2.php:430
-msgid ""
-"Preview to select the center of the map and the default position of an agent "
-"without gis data"
-msgstr ""
-"Vista previa para elegir el centro del mapa y la posición por defecto de un "
-"agente sin información GIS"
-
-#: ../../godmode/setup/gis_step_2.php:431
-msgid "Load preview map"
-msgstr "Vista previa del mapa"
-
-#: ../../godmode/setup/gis_step_2.php:440
-msgid "Map Center"
-msgstr "Centro del mapa"
-
-#: ../../godmode/setup/gis_step_2.php:441
-msgid "Default position for agents without GIS data"
-msgstr "Posición por defecto para agentes sin información GIS"
-
-#: ../../godmode/setup/gis_step_2.php:443
-msgid "Change in the map"
-msgstr "Cambiar en el mapa"
-
-#: ../../godmode/setup/gis_step_2.php:564 ../../godmode/setup/gis_step_2.php:659
-msgid "Center"
-msgstr "Centro"
-
-#: ../../godmode/setup/gis_step_2.php:624
-msgid "Refresh preview map"
-msgstr "Actualizar vista previa"
-
-#: ../../godmode/setup/setup.php:96 ../../godmode/setup/setup.php:249
-#: ../../godmode/alerts/configure_alert_template.php:229
-#: ../../godmode/alerts/configure_alert_template.php:233
-#: ../../godmode/servers/plugin.php:367 ../../godmode/servers/plugin.php:372
-#: ../../enterprise/godmode/reporting/reporting_builder.global.php:48
-#: ../../enterprise/include/class/Aws.cloud.php:345
-#: ../../enterprise/include/functions_reporting_csv.php:992
-#: ../../enterprise/meta/include/functions_wizard_meta.php:247
-#: ../../enterprise/meta/include/functions_wizard_meta.php:530
-#: ../../enterprise/meta/include/functions_wizard_meta.php:601
-#: ../../enterprise/meta/include/functions_wizard_meta.php:1146
-#: ../../include/functions_reports.php:771
-#: ../../include/functions_reporting.php:9397 ../../include/ajax/events.php:1494
-msgid "General"
-msgstr "General"
-
-#: ../../godmode/setup/setup.php:113 ../../godmode/setup/setup.php:255
-#: ../../godmode/menu.php:331 ../../enterprise/meta/advanced/metasetup.php:91
-#: ../../enterprise/meta/advanced/metasetup.php:227
-msgid "Authentication"
-msgstr "Autentificación"
-
-#: ../../godmode/setup/setup.php:125 ../../godmode/setup/setup.php:260
-#: ../../godmode/menu.php:334
-#: ../../enterprise/meta/advanced/metasetup.performance.php:74
-msgid "Performance"
-msgstr "Rendimiento"
-
-#: ../../godmode/setup/setup.php:137 ../../godmode/setup/setup.php:266
-#: ../../godmode/menu.php:337
-#: ../../enterprise/meta/advanced/metasetup.visual.php:98
-msgid "Visual styles"
-msgstr "Estilos visuales"
-
-#: ../../godmode/setup/setup.php:151 ../../godmode/setup/setup.php:271
-#: ../../godmode/menu.php:342
-#: ../../enterprise/include/functions_enterprise.php:452
-#: ../../enterprise/meta/general/logon_ok.php:37
-#: ../../enterprise/meta/general/main_header.php:275
-#: ../../enterprise/meta/general/main_menu.php:381
-#: ../../include/functions_reports.php:906
-#: ../../include/functions_reports.php:910
-#: ../../include/functions_reports.php:914
-#: ../../include/functions_reports.php:918
-msgid "Netflow"
-msgstr "Netflow"
-
-#: ../../godmode/setup/setup.php:190 ../../godmode/setup/setup.php:289
-#: ../../enterprise/godmode/menu.php:331
-msgid "Module Library"
-msgstr "Biblioteca de módulos"
-
-#: ../../godmode/setup/setup.php:204 ../../godmode/setup/setup.php:300
-#: ../../godmode/menu.php:355 ../../enterprise/meta/advanced/metasetup.php:141
-#: ../../enterprise/meta/advanced/metasetup.php:251
-msgid "Notifications"
-msgstr "Notificaciones"
-
-#: ../../godmode/setup/setup.php:216
-msgid "Websocket engine"
-msgstr "Motor websocket"
-
-#: ../../godmode/setup/setup.php:234
-msgid "GIS Map connection"
-msgstr "Conexión mapa GIS"
-
-#: ../../godmode/setup/setup.php:295 ../../godmode/menu.php:365
-msgid "Map conections GIS"
-msgstr "Conexión de mapa GIS"
-
-#: ../../godmode/setup/setup.php:305
-msgid "Pandora Websocket Engine"
-msgstr "Motor Websocket Pandora"
-
-#: ../../godmode/setup/setup.php:317 ../../godmode/extensions.php:140
-#: ../../enterprise/godmode/menu.php:295
-#: ../../enterprise/include/functions_setup.php:44
-#: ../../enterprise/include/functions_setup.php:108
-msgid "Enterprise"
-msgstr "Enterprise"
-
-#: ../../godmode/setup/setup.php:330
-#: ../../godmode/agentes/planned_downtime.list.php:615 ../../godmode/menu.php:210
-#: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:251
-#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:687
-#: ../../enterprise/godmode/modules/configure_local_component.php:483
-#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:351
-#: ../../enterprise/meta/monitoring/wizard/wizard.agent.php:64
-#: ../../enterprise/meta/monitoring/wizard/wizard.module.network.php:119
-#: ../../enterprise/meta/monitoring/wizard/wizard.module.web.php:100
-#: ../../enterprise/meta/monitoring/wizard/wizard.module.local.php:107
-#: ../../enterprise/views/ncm/agent/details.php:600
-#: ../../include/functions_reports.php:898
-#: ../../include/functions_reports.php:902
-#: ../../include/class/ConfigPEN.class.php:327
-#: ../../include/class/ModuleTemplates.class.php:195
-#: ../../include/class/ModuleTemplates.class.php:213
-msgid "Configuration"
-msgstr "Configuración"
-
-#: ../../godmode/setup/setup.php:349
-msgid "Correct update the setup options"
-msgstr "Actualización correcta de las opciones de configuración"
-
-#: ../../godmode/setup/os.php:190
-msgid "List OS"
-msgstr "Lista de sistemas operativos"
-
-#: ../../godmode/setup/os.php:202
-msgid "Builder OS"
-msgstr "Creador de SO"
-
-#: ../../godmode/setup/os.php:211 ../../godmode/setup/os.php:229
-#: ../../godmode/menu.php:369
-msgid "Edit OS"
-msgstr "Editar SO"
-
-#: ../../godmode/setup/os.php:211
-msgid "List of OS"
-msgstr "Lista de sistemas operativos"
-
-#: ../../godmode/setup/os.php:238 ../../include/functions_api.php:2033
-msgid "Success creating OS"
-msgstr "SO creado correctamente"
-
-#: ../../godmode/setup/os.php:242
-msgid "Fail creating OS"
-msgstr "Error al crear SO"
-
-#: ../../godmode/setup/os.php:246 ../../include/functions_api.php:2072
-msgid "Success updating OS"
-msgstr "SO creado correctamente"
-
-#: ../../godmode/setup/os.php:250
-msgid "Error updating OS"
-msgstr "Error al actualizar SO"
-
-#: ../../godmode/setup/os.php:254
-msgid "There are agents with this OS."
-msgstr "Existen agentes con este SO"
-
-#: ../../godmode/setup/os.php:258
-msgid "Success deleting"
-msgstr "Borrado correctamente"
-
-#: ../../godmode/setup/os.php:262
-msgid "Error deleting"
-msgstr "Error al borrar"
-
-#: ../../godmode/setup/performance.php:181
-msgid "Pandora_db running in active database."
-msgstr "Pandora_db en ejecución en la base de datos activa."
-
-#: ../../godmode/setup/performance.php:182
-#: ../../godmode/setup/performance.php:238
-msgid "Executed:"
-msgstr "Ejectuado:"
-
-#: ../../godmode/setup/performance.php:188
-#: ../../godmode/setup/performance.php:243
-#: ../../enterprise/operation/agentes/wux_console_view.php:357
-#: ../../enterprise/operation/agentes/wux_console_view.php:378
-#: ../../general/logon_ok.php:191
-msgid "ago"
-msgstr "hace"
-
-#: ../../godmode/setup/performance.php:237
-msgid "Pandora_db running in historical database."
-msgstr "Pandora_db en ejecución en la base de datos histórica."
-
-#: ../../godmode/setup/performance.php:245
-msgid "not executed"
-msgstr "No ejecutado"
-
-#: ../../godmode/setup/performance.php:260
-#: ../../godmode/setup/performance.php:447
-#: ../../enterprise/meta/advanced/metasetup.performance.php:79
-#: ../../enterprise/meta/include/functions_meta.php:1919
-#: ../../include/functions_config.php:777
-msgid "Max. days before delete events"
-msgstr "Nº max. de días antes de borrar eventos"
-
-#: ../../godmode/setup/performance.php:271 ../../include/functions_config.php:782
-msgid "Max. days before delete traps"
-msgstr "Nº max. de días antes de borrar traps SNMP"
-
-#: ../../godmode/setup/performance.php:281
-#: ../../enterprise/meta/advanced/metasetup.performance.php:88
-#: ../../enterprise/meta/include/functions_meta.php:1939
-#: ../../include/functions_config.php:790
-msgid "Max. days before delete audit events"
-msgstr "Nº max. de días antes de borrar eventos de auditoría interna"
-
-#: ../../godmode/setup/performance.php:291
-#: ../../godmode/setup/performance.php:457 ../../include/functions_config.php:786
-msgid "Max. days before delete string data"
-msgstr "Nº max. de días antes de borrar datos de tipo texto"
-
-#: ../../godmode/setup/performance.php:301 ../../include/functions_config.php:794
-msgid "Max. days before delete GIS data"
-msgstr "Nº max. de días antes de borrar información GIS"
-
-#: ../../godmode/setup/performance.php:311
-#: ../../godmode/setup/performance.php:417 ../../include/functions_config.php:798
-msgid "Max. days before purge"
-msgstr "Máx. días antes de purga de datos"
-
-#: ../../godmode/setup/performance.php:321
-#: ../../godmode/setup/performance.php:427 ../../include/functions_config.php:806
-msgid "Max. days before compact data"
-msgstr "Máx. días antes de comprimir datos"
-
-#: ../../godmode/setup/performance.php:331 ../../include/functions_config.php:802
-msgid "Max. days before delete unknown modules"
-msgstr "Máximo de días antes de borrar módulos desconocidos"
-
-#: ../../godmode/setup/performance.php:341
-msgid "Max. days before delete autodisabled agents"
-msgstr "Nº máximo de días antes de la eliminación de los agentes deshabilitados"
-
-#: ../../godmode/setup/performance.php:351 ../../include/functions_config.php:854
-msgid "Retention period of past special days"
-msgstr "Período de retención de días especiales pasados"
-
-#: ../../godmode/setup/performance.php:361
-#: ../../enterprise/meta/advanced/metasetup.performance.php:127
-#: ../../enterprise/meta/include/functions_meta.php:2002
-#: ../../include/functions_config.php:858
-msgid "Max. macro data fields"
-msgstr "Nº máx. de campos de macro de datos"
-
-#: ../../godmode/setup/performance.php:375 ../../include/functions_config.php:863
-msgid "Max. days before delete inventory data"
-msgstr "Nº de días máximo antes del borrado de datos de inventario"
-
-#: ../../godmode/setup/performance.php:437
-#: ../../godmode/setup/performance.php:518 ../../include/functions_config.php:818
-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:475 ../../include/functions_config.php:868
-msgid "Max. days before delete old messages"
-msgstr "Núm. máx. de días antes de borrar mensajes antiguos"
-
-#: ../../godmode/setup/performance.php:488 ../../include/functions_config.php:872
-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:508
-msgid "Item limit for realtime reports"
-msgstr "Límite del elemento para informes en tiempo real"
-
-#: ../../godmode/setup/performance.php:530
-#: ../../enterprise/godmode/reporting/graph_template_editor.php:221
-#: ../../include/ajax/module.php:202
-msgid "12 hours"
-msgstr "12 horas"
-
-#: ../../godmode/setup/performance.php:531
-msgid "Last day"
-msgstr "Último día"
-
-#: ../../godmode/setup/performance.php:532
-#: ../../enterprise/godmode/reporting/graph_template_editor.php:223
-msgid "2 days"
-msgstr "2 días"
-
-#: ../../godmode/setup/performance.php:533
-msgid "10 days"
-msgstr "10 días"
-
-#: ../../godmode/setup/performance.php:534
-#: ../../enterprise/godmode/reporting/graph_template_editor.php:225
-msgid "Last week"
-msgstr "Última semana"
-
-#: ../../godmode/setup/performance.php:535
-msgid "2 weeks"
-msgstr "2 semanas"
-
-#: ../../godmode/setup/performance.php:536
-#: ../../enterprise/godmode/reporting/graph_template_editor.php:227
-msgid "Last month"
-msgstr "Último mes"
-
-#: ../../godmode/setup/performance.php:538
-#: ../../enterprise/meta/advanced/metasetup.performance.php:91
-#: ../../enterprise/meta/include/functions_meta.php:1949
-#: ../../include/functions_config.php:822
-msgid "Default hours for event view"
-msgstr "Nº de horas predeterminado para la visualización de eventos"
-
-#: ../../godmode/setup/performance.php:548 ../../include/functions_config.php:826
-msgid "Use realtime statistics"
-msgstr "Usar estadísticas en tiempo real"
-
-#: ../../godmode/setup/performance.php:556 ../../include/functions_config.php:830
-msgid "Batch statistics period (secs)"
-msgstr "Período de las estadísticas programadas (seg.)"
-
-#: ../../godmode/setup/performance.php:566
-#: ../../enterprise/meta/include/functions_meta.php:1959
-#: ../../include/functions_config.php:834
-msgid "Use agent access graph"
-msgstr "Usar la gráfica de acceso del agente"
-
-#: ../../godmode/setup/performance.php:569 ../../include/functions_config.php:838
-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:579 ../../include/functions_config.php:842
-msgid "Delete not init modules"
-msgstr "Borrar módulos no iniciados"
-
-#: ../../godmode/setup/performance.php:582
-msgid "Big Operation Step to purge old data"
-msgstr "Gran operación para la purga de datos antiguos"
-
-#: ../../godmode/setup/performance.php:592 ../../include/functions_config.php:850
-msgid "Small Operation Step to purge old data"
-msgstr "Operación menor para la purga de datos antiguos"
-
-#: ../../godmode/setup/performance.php:602 ../../include/functions_config.php:876
-msgid "Graph container - Max. Items"
-msgstr "Contenedor de gráficas - Máx. elementos"
-
-#: ../../godmode/setup/performance.php:612
-#: ../../enterprise/meta/advanced/metasetup.performance.php:104
-msgid "Events response max. execution"
-msgstr "Máx. tiempo de ejecución de respuesta de eventos"
-
-#: ../../godmode/setup/performance.php:622
-#: ../../enterprise/meta/advanced/metasetup.performance.php:118
-#: ../../include/functions_config.php:884
-msgid "Row limit in csv log"
-msgstr "Límite de líneas en log CSV"
-
-#: ../../godmode/setup/performance.php:632
-msgid "SNMP walk binary"
-msgstr "Binario walk SNMP"
-
-#: ../../godmode/setup/performance.php:643
-msgid ""
-"SNMP bulk walk is not able to request V1 SNMP, this option will be used "
-"instead (by default snmpwalk, slower)."
-msgstr ""
-"El walk en bloque SNMP no puede solicitar V1 SNMP, esta opción se utilizará en "
-"su lugar (por defecto snmpwalk, más lento)."
-
-#: ../../godmode/setup/performance.php:646
-msgid "SNMP walk binary (fallback)"
-msgstr "Binario walk SNMP (alternativa)"
-
-#: ../../godmode/setup/performance.php:658
-#: ../../enterprise/meta/advanced/metasetup.performance.php:142
-#, php-format
-msgid ""
-"%s web2image cache system cleanup. It is always cleaned up after perform an "
-"upgrade"
-msgstr ""
-"%s limpieza del sistema de caché web2image. Siempre se limpia después de "
-"realizar una actualización"
-
-#: ../../godmode/setup/performance.php:665
-#: ../../enterprise/meta/advanced/metasetup.performance.php:147
-msgid "PhantomJS cache cleanup "
-msgstr "Limpieza de caché de PhantomJS "
-
-#: ../../godmode/setup/performance.php:672
-#: ../../enterprise/meta/advanced/metasetup.performance.php:154
-msgid "No scheduled"
-msgstr "No programado"
-
-#: ../../godmode/setup/performance.php:673
-#: ../../enterprise/meta/advanced/metasetup.performance.php:155
-msgid "Each week"
-msgstr "Cada semana"
-
-#: ../../godmode/setup/performance.php:674
-#: ../../enterprise/meta/advanced/metasetup.performance.php:156
-msgid "Each day"
-msgstr "Cada día"
-
-#: ../../godmode/setup/performance.php:684
-#: ../../enterprise/godmode/setup/setup_history.php:513
-msgid "Database maintenance status"
-msgstr "Estado de mantenimiento de la base de datos"
-
-#: ../../godmode/setup/performance.php:689
-msgid "Database maintenance options"
-msgstr "Opciones de mantenimiento de la base de datos"
-
-#: ../../godmode/setup/performance.php:695
-msgid "Historical database maintenance options"
-msgstr "Opciones de mantenimiento de la base de datos histórica"
-
-#: ../../godmode/setup/links.php:28
-msgid "Link management"
-msgstr "Gestionar enlaces"
-
-#: ../../godmode/setup/links.php:42 ../../enterprise/meta/advanced/links.php:47
-msgid "There was a problem creating link"
-msgstr "Error al crear el enlace"
-
-#: ../../godmode/setup/links.php:61 ../../enterprise/meta/advanced/links.php:68
-msgid "There was a problem modifying link"
-msgstr "Error al modificar el enlace"
-
-#: ../../godmode/setup/links.php:74 ../../enterprise/meta/advanced/links.php:82
-msgid "There was a problem deleting link"
-msgstr "Error al borrar el enlace"
-
-#: ../../godmode/setup/links.php:116 ../../godmode/setup/links.php:145
-#: ../../enterprise/meta/advanced/links.php:127
-#: ../../enterprise/meta/advanced/links.php:156
-msgid "Link name"
-msgstr "Nombre del enlace"
-
-#: ../../godmode/setup/links.php:119
-#: ../../enterprise/godmode/policies/policy_linking.php:204
-#: ../../enterprise/meta/advanced/links.php:130
-msgid "Link"
-msgstr "Enlace"
-
-#: ../../godmode/setup/links.php:141 ../../enterprise/meta/advanced/links.php:152
-msgid "There isn't links"
-msgstr "No hay enlaces"
-
-#: ../../godmode/setup/setup_ehorus.php:58
-#: ../../include/functions_config.php:1632
-msgid "Enable eHorus"
-msgstr "Activar eHorus"
-
-#: ../../godmode/setup/setup_ehorus.php:93
-msgid "API Hostname"
-msgstr "Nombre del propietario de la API"
-
-#: ../../godmode/setup/setup_ehorus.php:99
-msgid "API Port"
-msgstr "Puerto de la API"
-
-#: ../../godmode/setup/setup_ehorus.php:139
-msgid "Remote Management System"
-msgstr "Sistema de gestión remota"
-
-#: ../../godmode/setup/setup_ehorus.php:147
-msgid "Custom field eHorusID created"
-msgstr "Campo personalizado eHorusID creado"
-
-#: ../../godmode/setup/setup_ehorus.php:147
-msgid "Error creating custom field"
-msgstr "Error al crear campo personalizado"
-
-#: ../../godmode/setup/setup_ehorus.php:151
-msgid "eHorus has his own agent identifiers"
-msgstr "eHorus tiene sus propios identificadores de agente"
-
-#: ../../godmode/setup/setup_ehorus.php:152
-msgid "To store them, it will be necessary to use an agent custom field"
-msgstr "Para guardarlo, será necesario usar un campo personalizado del agente."
-
-#: ../../godmode/setup/setup_ehorus.php:153
-msgid "Possibly the eHorus id will have to be filled in by hand for every agent"
-msgstr ""
-"Es posible que el ID de eHorus tenga que ser introducido a mano por cada agente"
-
-#: ../../godmode/setup/setup_ehorus.php:158
-msgid "The custom field does not exists already"
-msgstr "El campo personalizado no existe aún"
-
-#: ../../godmode/setup/setup_ehorus.php:172
-msgid "eHorus API"
-msgstr "API eHorus"
-
-#: ../../godmode/gis_maps/configure_gis_map.php:98
-msgid "View GIS"
-msgstr "Ver GIS"
-
-#: ../../godmode/gis_maps/configure_gis_map.php:106
-msgid "GIS Maps builder"
-msgstr "Creador de mapas GIS"
-
-#: ../../godmode/gis_maps/configure_gis_map.php:196
-msgid "Map successfully created"
-msgstr "Mapa creado correctamente"
-
-#: ../../godmode/gis_maps/configure_gis_map.php:197
-msgid "Map could not be created"
-msgstr "No se pudo crear el mapa"
-
-#: ../../godmode/gis_maps/configure_gis_map.php:299
-msgid "Map successfully update"
-msgstr "Mapa actualizado correctamente"
-
-#: ../../godmode/gis_maps/configure_gis_map.php:300
-msgid "Map could not be updated"
-msgstr "No se pudo actualizar el mapa"
-
-#: ../../godmode/gis_maps/configure_gis_map.php:353
-msgid "Do you want to use the default data from the connection?"
-msgstr "¿Quieres usar los datos que vienen por defecto de la conexión?"
-
-#: ../../godmode/gis_maps/configure_gis_map.php:387
-msgid "The connection"
-msgstr "La conexión"
-
-#: ../../godmode/gis_maps/configure_gis_map.php:387
-msgid "just added previously."
-msgstr "ya ha sido añadido."
-
-#: ../../godmode/gis_maps/configure_gis_map.php:455
-msgid "Map Name"
-msgstr "Nombre del mapa"
-
-#: ../../godmode/gis_maps/configure_gis_map.php:474
-msgid "Add Map connection"
-msgstr "Añadir conexión al mapa"
-
-#: ../../godmode/gis_maps/configure_gis_map.php:523
-msgid "Default zoom"
-msgstr "Zoom por defecto"
-
-#: ../../godmode/gis_maps/configure_gis_map.php:530
-msgid "Center Latitude"
-msgstr "Latitud central"
-
-#: ../../godmode/gis_maps/configure_gis_map.php:533
-msgid "Center Longitude"
-msgstr "Longitud central"
-
-#: ../../godmode/gis_maps/configure_gis_map.php:536
-msgid "Center Altitude"
-msgstr "Altitud central"
-
-#: ../../godmode/gis_maps/configure_gis_map.php:539
-msgid "Default Latitude"
-msgstr "Latitud por defecto"
-
-#: ../../godmode/gis_maps/configure_gis_map.php:542
-msgid "Default Longitude"
-msgstr "Longitud por defecto"
-
-#: ../../godmode/gis_maps/configure_gis_map.php:545
-msgid "Default Altitude"
-msgstr "Altitud por defecto"
-
-#: ../../godmode/gis_maps/configure_gis_map.php:561
-msgid "List of layers"
-msgstr "Lista de capas"
-
-#: ../../godmode/gis_maps/configure_gis_map.php:562
-msgid "New layer"
-msgstr "Nueva capa"
-
-#: ../../godmode/gis_maps/configure_gis_map.php:568
-msgid "Layer name"
-msgstr "Nombre de la capa"
-
-#: ../../godmode/gis_maps/configure_gis_map.php:570
-msgid "Visible"
-msgstr "Visible"
-
-#: ../../godmode/gis_maps/configure_gis_map.php:574
-msgid "Show agents from group"
-msgstr "Mostrar agentes del grupo"
-
-#: ../../godmode/gis_maps/configure_gis_map.php:586
-msgid "Add agent"
-msgstr "Añadir agente"
-
-#: ../../godmode/gis_maps/configure_gis_map.php:608
-msgid "List of Agents to be shown in the layer"
-msgstr "Lista de los agentes que se mostrarán en la capa"
-
-#: ../../godmode/gis_maps/configure_gis_map.php:639
-msgid "Use the data of this agent"
-msgstr "Utilice los datos de este agente"
-
-#: ../../godmode/gis_maps/configure_gis_map.php:647
-msgid "List of groups to be shown in the layer"
-msgstr "Lista de grupos a mostrar en la capa"
-
-#: ../../godmode/gis_maps/configure_gis_map.php:654
-msgid "Save Layer"
-msgstr "Guardar capa"
-
-#: ../../godmode/gis_maps/configure_gis_map.php:670
-#: ../../godmode/gis_maps/configure_gis_map.php:677
-msgid "Save map"
-msgstr "Guardar mapa"
-
-#: ../../godmode/gis_maps/configure_gis_map.php:672
-msgid "Update map"
-msgstr "Actualizar mapa"
-
-#: ../../godmode/gis_maps/configure_gis_map.php:1060
-msgid "Using data from"
-msgstr "Utilizando los datos de"
-
-#: ../../godmode/gis_maps/configure_gis_map.php:1218
-msgid "Empty layer names are not supported"
-msgstr "No se admiten nombres de capa vacíos"
-
-#: ../../godmode/agentes/planned_downtime.list.php:174
-#: ../../godmode/agentes/planned_downtime.editor.php:67
-#: ../../include/functions_reporting_html.php:879
-#: ../../include/functions_reporting_html.php:4576
-msgid "Scheduled Downtime"
-msgstr "Parada planificada"
-
-#: ../../godmode/agentes/planned_downtime.list.php:206
-msgid "An error occurred stopping the scheduled downtime"
-msgstr "Se produjo un error al detener la parada planificada"
-
-#: ../../godmode/agentes/planned_downtime.list.php:233
-msgid "This scheduled downtime is running"
-msgstr "Esta parada planificada se está ejecutando"
-
-#: ../../godmode/agentes/planned_downtime.list.php:318
-#: ../../godmode/agentes/planned_downtime.editor.php:606
-msgid "Once"
-msgstr "Una vez"
-
-#: ../../godmode/agentes/planned_downtime.list.php:319
-#: ../../godmode/agentes/planned_downtime.list.php:664
-#: ../../godmode/agentes/planned_downtime.editor.php:607
-msgid "Periodically"
-msgstr "Periódicamente"
-
-#: ../../godmode/agentes/planned_downtime.list.php:321
-#: ../../godmode/modules/manage_network_components_form_wizard.php:471
-msgid "Execution type"
-msgstr "Tipo de ejecución"
-
-#: ../../godmode/agentes/planned_downtime.list.php:333
-msgid "Show past downtimes"
-msgstr "Mostrar paradas antiguas"
-
-#: ../../godmode/agentes/planned_downtime.list.php:574
-#: ../../godmode/agentes/planned_downtime.export_csv.php:202
-msgid "No scheduled downtime"
-msgstr "No hay paradas planificadas"
-
-#: ../../godmode/agentes/planned_downtime.list.php:610
-msgid "Name #Ag."
-msgstr "Nombre (núm. ag.)"
-
-#: ../../godmode/agentes/planned_downtime.list.php:614
-#: ../../godmode/agentes/planned_downtime.editor.php:603
-#: ../../godmode/modules/manage_network_components_form_wizard.php:654
-#: ../../include/functions_reporting_html.php:6103
-msgid "Execution"
-msgstr "Ejecución"
-
-#: ../../godmode/agentes/planned_downtime.list.php:616
-#: ../../godmode/agentes/planned_downtime.list.php:688
-#: ../../enterprise/operation/agentes/transactional_map.php:265
-#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:554
-msgid "Running"
-msgstr "Ejecutándose"
-
-#: ../../godmode/agentes/planned_downtime.list.php:617
-msgid "Affected"
-msgstr "Afectado"
-
-#: ../../godmode/agentes/planned_downtime.list.php:622
-#: ../../godmode/agentes/planned_downtime.list.php:725
-#: ../../godmode/agentes/planned_downtime.list.php:731
-msgid "Stop downtime"
-msgstr "Detener parada planificada"
-
-#: ../../godmode/agentes/planned_downtime.list.php:656
-#: ../../godmode/agentes/planned_downtime.editor.php:589
-msgid "Disabled Agents"
-msgstr "Agentes desactivados"
-
-#: ../../godmode/agentes/planned_downtime.list.php:657
-#: ../../godmode/agentes/planned_downtime.editor.php:590
-msgid "Disabled only Alerts"
-msgstr "Deshabilitar solo las alertas"
-
-#: ../../godmode/agentes/planned_downtime.list.php:663
-msgid "once"
-msgstr "una vez"
-
-#: ../../godmode/agentes/planned_downtime.list.php:678
-msgid "Not running"
-msgstr "No está en ejecución"
-
-#: ../../godmode/agentes/planned_downtime.list.php:695
-#: ../../godmode/alerts/configure_alert_template.php:1550
-#: ../../enterprise/include/class/AlertCorrelationManager.class.php:4321
-#: ../../include/class/AgentWizard.class.php:5961
-#: ../../views/calendar/special_days_edit.php:211
-#: ../../views/calendar/special_days.php:411
-#: ../../views/calendar/special_days.php:510
-msgid "Loading, this operation might take several minutes..."
-msgstr "Cargando, esta operación podría llevar varios minutos..."
-
-#: ../../godmode/agentes/planned_downtime.list.php:696
-msgid "Agents / Modules affected"
-msgstr "Agentes / Módulos afectados"
-
-#: ../../godmode/agentes/planned_downtime.list.php:705
-msgid "Agents and modules affected"
-msgstr "Agentes y módulos afectados"
-
-#: ../../godmode/agentes/planned_downtime.list.php:903
-msgid ""
-"WARNING: If you delete this scheduled downtime, it will not be taken into "
-"account in future SLA reports"
-msgstr ""
-"ADVERTENCIA: si se borra esta parada planificada, no se tendrá en cuenta en "
-"futuros informes SLA"
-
-#: ../../godmode/agentes/planned_downtime.list.php:909
-msgid "WARNING: There are malformed scheduled downtimes"
-msgstr "ADVERTENCIA: hay paradas planificadas mal formadas"
-
-#: ../../godmode/agentes/planned_downtime.list.php:909
-msgid "Do you want to migrate automatically the malformed items?"
-msgstr "¿Quiere migrar automáticamente los elementos mal formados?"
-
-#: ../../godmode/agentes/agent_conf_gis.php:50
-msgid ""
-"There is no GIS data for this agent, so it's positioned in default position of "
-"map."
-msgstr ""
-"No hay datos de GIS para este agente, por lo que es colocado en posición por "
-"defecto del mapa."
-
-#: ../../godmode/agentes/agent_conf_gis.php:58
-msgid ""
-"When you change the Agent position, the agent automatically activates the "
-"'Ignore new GIS data' option"
-msgstr ""
-"Cuando se cambia la posición de agente, el agente activa automáticamente la "
-"opción \"Ignorar nuevos datos GIS\"."
-
-#: ../../godmode/agentes/agent_conf_gis.php:67
-msgid "Agent position"
-msgstr "Posición del agente"
-
-#: ../../godmode/agentes/agent_conf_gis.php:73
-msgid "Latitude: "
-msgstr "Latitud: "
-
-#: ../../godmode/agentes/agent_conf_gis.php:90
-msgid "Longitude: "
-msgstr "Longitud: "
-
-#: ../../godmode/agentes/agent_conf_gis.php:107
-msgid "Altitude: "
-msgstr "Altitud: "
-
-#: ../../godmode/agentes/fields_manager.php:30
-msgid "Agents custom fields manager"
-msgstr "Gestor de campos personalizados del agente"
-
-#: ../../godmode/agentes/fields_manager.php:46
-#: ../../include/ajax/custom_fields.php:737
-msgid "The name must not be empty"
-msgstr "El nombre no puede estar vacío."
-
-#: ../../godmode/agentes/fields_manager.php:48
-msgid "The name must be unique"
-msgstr "El nombre debe ser único."
-
-#: ../../godmode/agentes/fields_manager.php:59
-msgid "Field successfully created"
-msgstr "Se ha creado el campo."
-
-#: ../../godmode/agentes/fields_manager.php:80
-msgid "Field successfully updated"
-msgstr "Se ha actualizado el campo."
-
-#: ../../godmode/agentes/fields_manager.php:82
-msgid "There was a problem modifying field"
-msgstr "Ha habido un problema al modificar el campo."
-
-#: ../../godmode/agentes/fields_manager.php:94
-msgid "There was a problem deleting field"
-msgstr "Ha surgido un problema al borrar el campo."
-
-#: ../../godmode/agentes/fields_manager.php:96
-msgid "Field successfully deleted"
-msgstr "El campo se ha borrado correctamente."
-
-#: ../../godmode/agentes/fields_manager.php:168
-msgid "Create field"
-msgstr "Crear campo"
-
-#: ../../godmode/agentes/module_manager_editor_web.php:155
-msgid "Debug remotely this module"
-msgstr "Depurar este módulo en remoto"
-
-#: ../../godmode/agentes/module_manager_editor_web.php:158
-msgid "Debug this module once it has been initialized"
-msgstr "Depurar este módulo una vez iniciado"
-
-#: ../../godmode/agentes/module_manager_editor_web.php:164
-#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:180
-#: ../../enterprise/godmode/modules/configure_local_component.php:494
-#: ../../enterprise/meta/include/functions_wizard_meta.php:673
-msgid "Load basic"
-msgstr "cargar básicos"
-
-#: ../../godmode/agentes/module_manager_editor_web.php:170
-#: ../../enterprise/meta/include/functions_wizard_meta.php:679
-msgid "Load a basic structure on Web Checks"
-msgstr "Cargar una estructura básica en las comprobaciones web"
-
-#: ../../godmode/agentes/module_manager_editor_web.php:172
-#: ../../enterprise/godmode/setup/setup_log_collector.php:49
-#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:183
-#: ../../enterprise/godmode/modules/configure_local_component.php:503
-#: ../../enterprise/include/functions_metaconsole.php:1408
-#: ../../enterprise/include/functions_metaconsole.php:1441
-#: ../../enterprise/include/functions_metaconsole.php:1474
-#: ../../enterprise/include/functions_metaconsole.php:1507
-#: ../../enterprise/include/functions_metaconsole.php:1540
-#: ../../enterprise/include/functions_metaconsole.php:1573
-#: ../../enterprise/include/functions_metaconsole.php:1604
-#: ../../enterprise/include/functions_metaconsole.php:1637
-#: ../../enterprise/meta/include/functions_wizard_meta.php:238
-#: ../../enterprise/meta/include/functions_wizard_meta.php:681
-msgid "Check"
-msgstr "Comprobar"
-
-#: ../../godmode/agentes/module_manager_editor_web.php:178
-#: ../../enterprise/meta/include/functions_wizard_meta.php:687
-msgid "Check the correct structure of the WebCheck"
-msgstr "Cargar la estructura correcta de las comprobaciones web"
-
-#: ../../godmode/agentes/module_manager_editor_web.php:180
-#: ../../include/class/WebServerModuleDebug.class.php:325
-msgid "Debug"
-msgstr "Depurar"
-
-#: ../../godmode/agentes/module_manager_editor_web.php:199
-#: ../../enterprise/meta/include/functions_wizard_meta.php:592
-msgid "Check type"
-msgstr "Comprueba el tipo"
-
-#: ../../godmode/agentes/module_manager_editor_web.php:205
-msgid "Requests"
-msgstr "Peticiones"
-
-#: ../../godmode/agentes/module_manager_editor_web.php:208
-msgid "Agent browser id"
-msgstr "ID del navegador (Agent Browser)"
-
-#: ../../godmode/agentes/module_manager_editor_web.php:214
-msgid "HTTP auth (login)"
-msgstr "Autentificación HTTP (inicio de sesión)"
-
-#: ../../godmode/agentes/module_manager_editor_web.php:217
-msgid "HTTP auth (password)"
-msgstr "Autentificación HTTP (contraseña)"
-
-#: ../../godmode/agentes/module_manager_editor_web.php:224
-#: ../../enterprise/meta/include/functions_wizard_meta.php:1084
-#: ../../enterprise/meta/include/functions_wizard_meta.php:1613
-msgid "Proxy URL"
-msgstr "Proxy URL"
-
-#: ../../godmode/agentes/module_manager_editor_web.php:231
-msgid "Proxy auth (login)"
-msgstr "Autentificación Proxy (inicio de sesión)"
-
-#: ../../godmode/agentes/module_manager_editor_web.php:235
-msgid "Proxy auth (pass)"
-msgstr "Autentificación proxy (contraseña)"
-
-#: ../../godmode/agentes/module_manager_editor_web.php:242
-msgid "Proxy auth (server)"
-msgstr "Autentificación proxy (servidor)"
-
-#: ../../godmode/agentes/module_manager_editor_web.php:246
-msgid "Proxy auth (realm)"
-msgstr "Autentificación proxy (área)"
-
-#: ../../godmode/agentes/module_manager_editor_web.php:253
-#: ../../enterprise/meta/include/functions_wizard_meta.php:694
-msgid "First line must be \"task_begin\""
-msgstr "La primera línea tiene que ser \"task_begin\"."
-
-#: ../../godmode/agentes/module_manager_editor_web.php:254
-#: ../../enterprise/meta/include/functions_wizard_meta.php:695
-msgid "Webchecks configuration is empty"
-msgstr "La configuración de comprobaciones web está vacía."
-
-#: ../../godmode/agentes/module_manager_editor_web.php:255
-#: ../../godmode/agentes/module_manager_editor_web.php:256
-#: ../../enterprise/meta/include/functions_wizard_meta.php:696
-#: ../../enterprise/meta/include/functions_wizard_meta.php:697
-msgid "Last line must be \"task_end\""
-msgstr "La última línea tiene que ser \"task_end\"."
-
-#: ../../godmode/agentes/module_manager_editor_web.php:257
-#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:203
-#: ../../enterprise/godmode/modules/configure_local_component.php:513
-#: ../../enterprise/meta/include/functions_wizard_meta.php:698
-msgid "There is a line with a unknown token 'token_fail'."
-msgstr "Hay una línea con un token desconocido \"token_fail\"."
-
-#: ../../godmode/agentes/module_manager_editor_web.php:258
-msgid "There isn't get or post"
-msgstr "No se puede obtener o publicar."
-
-#: ../../godmode/agentes/module_manager_editor_web.php:259
-#: ../../enterprise/meta/include/functions_wizard_meta.php:699
-msgid "Web checks are built correctly"
-msgstr "Las comprobaciones web se han efectuado correctamente."
-
-#: ../../godmode/agentes/agent_template.php:67
-#: ../../include/functions_api.php:15411
-msgid "Created by template "
-msgstr "Creado mediante la plantilla "
-
-#: ../../godmode/agentes/agent_template.php:156
-msgid "Error adding modules"
-msgstr "Error al añadir módulos"
-
-#: ../../godmode/agentes/agent_template.php:158
-msgid "Error adding modules. The following errors already exists: "
-msgstr "Error al añadir los módulos. Ocurrieron los siguientes errores: "
-
-#: ../../godmode/agentes/agent_template.php:163
-#: ../../include/functions_api.php:15505
-msgid "Modules successfully added"
-msgstr "Módulos añadidos correctamente"
-
-#: ../../godmode/agentes/agent_template.php:188
-msgid "Assign"
-msgstr "Asignar"
-
-#: ../../godmode/agentes/agent_template.php:269
-#: ../../mobile/operation/modules.php:772
-msgid "No modules"
-msgstr "Sin módulos"
-
-#: ../../godmode/agentes/configure_field.php:41
-msgid "Update agent custom field"
-msgstr "Actualizar campo personalizado del agente"
-
-#: ../../godmode/agentes/configure_field.php:43
-msgid "Create agent custom field"
-msgstr "Crear campo personalizado"
-
-#: ../../godmode/agentes/configure_field.php:55
-#: ../../godmode/agentes/configure_field.php:59
-#: ../../godmode/agentes/configure_field.php:63
-#: ../../godmode/agentes/configure_field.php:67
-msgid "Agent Custom Fields Information"
-msgstr "Información de los campos de personalización de agentes"
-
-#: ../../godmode/agentes/configure_field.php:56
-msgid ""
-"You cannot set the Password type until you clear the combo values and click on "
-"update button."
-msgstr ""
-"No puede establecer el tipo de contraseña hasta que elimine los valores del "
-"combo y pinche en el botón actualizar."
-
-#: ../../godmode/agentes/configure_field.php:60
-msgid ""
-"You cannot unset the enable combo until you clear the combo values and click "
-"on update."
-msgstr ""
-"No puede desactivar el combo habilitado hasta que elimine los valores del "
-"combo y pinche en actualizar."
-
-#: ../../godmode/agentes/configure_field.php:64
-msgid "If you select Enabled combo the Password type will be disabled."
-msgstr ""
-"Si selecciona el combo Habilitado, se deshabilitará el tipo de contraseña."
-
-#: ../../godmode/agentes/configure_field.php:68
-msgid "If you select Passord type the Enabled combo will be disabled."
-msgstr ""
-"Si selecciona el tipo de Contraseña el combo Habliitado se deshabilitará."
-
-#: ../../godmode/agentes/configure_field.php:84
-msgid "Pass type"
-msgstr "Tipo de contraseña"
-
-#: ../../godmode/agentes/configure_field.php:85
-msgid ""
-"The fields with pass type enabled will be displayed like html input type pass "
-"in html"
-msgstr ""
-"Los campos con el tipo de contraseña habilitado se mostrarán con asteriscos en "
-"HTML."
-
-#: ../../godmode/agentes/configure_field.php:106
-msgid "Enabled combo"
-msgstr "Combo habilitado"
-
-#: ../../godmode/agentes/configure_field.php:118
-msgid "Combo values"
-msgstr "Valores de combo"
-
-#: ../../godmode/agentes/configure_field.php:119
-msgid "Set values separated by comma"
-msgstr "Establecer valores separados por coma"
-
-#: ../../godmode/agentes/agent_incidents.php:69
-msgid "No incidents associated to this agent"
-msgstr "No hay incidentes asociados a este agente"
-
-#: ../../godmode/agentes/agent_incidents.php:90
-msgid "Incident"
-msgstr "Incidente"
-
-#: ../../godmode/agentes/status_monitor_custom_fields.php:125
-msgid "Show monitor detail fields"
-msgstr "Mostrar campo de detalle de monitor"
-
-#: ../../godmode/agentes/status_monitor_custom_fields.php:164
-#: ../../godmode/events/custom_events.php:129
-#: ../../enterprise/meta/event/custom_events.php:175
-msgid "Fields available"
-msgstr "Campos disponibles"
-
-#: ../../godmode/agentes/status_monitor_custom_fields.php:171
-#: ../../godmode/events/custom_events.php:136
-#: ../../enterprise/meta/event/custom_events.php:187
-msgid "Add fields to select"
-msgstr "Añadir campos para seleccionar"
-
-#: ../../godmode/agentes/status_monitor_custom_fields.php:180
-#: ../../godmode/events/custom_events.php:144
-#: ../../enterprise/meta/event/custom_events.php:197
-msgid "Delete fields to select"
-msgstr "Eliminar campos para seleccionar"
-
-#: ../../godmode/agentes/status_monitor_custom_fields.php:186
-#: ../../godmode/events/custom_events.php:149
-#: ../../enterprise/meta/event/custom_events.php:177
-msgid "Fields selected"
-msgstr "Campos seleccionados"
-
-#: ../../godmode/agentes/status_monitor_custom_fields.php:240
-#: ../../godmode/events/custom_events.php:203
-#: ../../enterprise/meta/event/custom_events.php:248
-msgid "There must be at least one custom field. Timestamp will be set by default"
-msgstr ""
-"Debe haber al menos un campo personalizado. La marca horaria está establecida "
-"por defecto."
-
-#: ../../godmode/agentes/status_monitor_custom_fields.php:241
-#: ../../godmode/events/custom_events.php:204
-#: ../../enterprise/meta/monitoring/custom_fields_view.php:1151
-#: ../../enterprise/meta/event/custom_events.php:249
-#: ../../include/class/TreeGroupEdition.class.php:164
-msgid "Confirm"
-msgstr "Confirmar"
-
-#: ../../godmode/agentes/planned_downtime.editor.php:208
-#: ../../godmode/agentes/planned_downtime.editor.php:1123
-#: ../../godmode/agentes/planned_downtime.editor.php:1258
-msgid "This elements cannot be modified while the downtime is being executed"
-msgstr ""
-"Estos elementos no se pueden modificar mientras se está ejecutando el tiempo "
-"de inactividad."
-
-#: ../../godmode/agentes/planned_downtime.editor.php:241
-#: ../../include/functions_planned_downtimes.php:40
-#: ../../include/functions_planned_downtimes.php:742
-msgid ""
-"Not created. Error inserting data. Start time must be higher than the current "
-"time"
-msgstr ""
-"No ha sido creado. Error insertando datos. La fecha de comienzo debe ser "
-"anterior a la fecha actual."
-
-#: ../../godmode/agentes/planned_downtime.editor.php:245
-#: ../../godmode/agentes/planned_downtime.editor.php:249
-#: ../../godmode/agentes/planned_downtime.editor.php:257
-#: ../../godmode/agentes/planned_downtime.editor.php:261
-#: ../../include/functions_planned_downtimes.php:42
-#: ../../include/functions_planned_downtimes.php:47
-#: ../../include/functions_planned_downtimes.php:49
-#: ../../include/functions_planned_downtimes.php:747
-#: ../../include/functions_planned_downtimes.php:754
-#: ../../include/functions_planned_downtimes.php:762
-#: ../../include/functions_planned_downtimes.php:770
-#: ../../include/functions_planned_downtimes.php:775
-#: ../../include/functions_planned_downtimes.php:780
-#: ../../include/functions_planned_downtimes.php:785
-#: ../../include/functions_planned_downtimes.php:790
-#: ../../include/functions_planned_downtimes.php:795
-#: ../../include/functions_planned_downtimes.php:800
-msgid "Not created. Error inserting data"
-msgstr "No se pudo crear. Error al insertar los datos."
-
-#: ../../godmode/agentes/planned_downtime.editor.php:245
-#: ../../include/functions_planned_downtimes.php:42
-#: ../../include/functions_planned_downtimes.php:754
-msgid "The end date must be higher than the start date"
-msgstr "La fecha de fin debe ser posterior a la fecha de inicio."
-
-#: ../../godmode/agentes/planned_downtime.editor.php:249
-#: ../../include/functions_planned_downtimes.php:747
-msgid "The end date must be higher than the current time"
-msgstr "La fecha fin debería ser posterior a la fecha actual."
-
-#: ../../godmode/agentes/planned_downtime.editor.php:257
-#: ../../godmode/agentes/planned_downtime.editor.php:716
-#: ../../godmode/agentes/planned_downtime.editor.php:729
-#: ../../include/functions_planned_downtimes.php:47
-#: ../../include/functions_planned_downtimes.php:762
-msgid "The end time must be higher than the start time"
-msgstr "La hora de fin debe ser posterior a la fecha de inicio."
-
-#: ../../godmode/agentes/planned_downtime.editor.php:261
-#: ../../godmode/agentes/planned_downtime.editor.php:701
-#: ../../include/functions_planned_downtimes.php:49
-#: ../../include/functions_planned_downtimes.php:770
-msgid "The end day must be higher than the start day"
-msgstr "El día de fin debe ser posterior el día de inicio."
-
-#: ../../godmode/agentes/planned_downtime.editor.php:313
-#: ../../include/functions_planned_downtimes.php:98
-#: ../../include/functions_planned_downtimes.php:814
-msgid "Each scheduled downtime must have a different name"
-msgstr "Cada tiempo de inactividad programado debe tener un nombre diferente"
-
-#: ../../godmode/agentes/planned_downtime.editor.php:318
-#: ../../godmode/agentes/planned_downtime.editor.php:350
-#: ../../include/functions_planned_downtimes.php:103
-#: ../../include/functions_planned_downtimes.php:820
-msgid "Scheduled downtime must have a name"
-msgstr "La parada de servicio planeada debe tener un nombre."
-
-#: ../../godmode/agentes/planned_downtime.editor.php:583
-msgid "Quiet: Modules will not generate events or fire alerts."
-msgstr "Modo silencioso: los módulos no generarán eventos ni dispararán alertas."
-
-#: ../../godmode/agentes/planned_downtime.editor.php:583
-msgid "Disable Agents: Disables the selected agents."
-msgstr "Deshabilitar agentes: deshabilita los agentes seleccionados"
-
-#: ../../godmode/agentes/planned_downtime.editor.php:583
-msgid "Disable Alerts: Disable alerts for the selected agents."
-msgstr ""
-"Deshabilitar alertas: deshabilita las alertas de los agentes seleccionados"
-
-#: ../../godmode/agentes/planned_downtime.editor.php:622
-msgid "Configure the time"
-msgstr "Configurar el tiempo"
-
-#: ../../godmode/agentes/planned_downtime.editor.php:628
-#: ../../include/functions_reporting_html.php:86
-#: ../../include/functions_reporting_html.php:5487
-#: ../../include/ajax/alert_list.ajax.php:579
-msgid "From:"
-msgstr "Desde:"
-
-#: ../../godmode/agentes/planned_downtime.editor.php:632
-#: ../../include/functions_reporting_html.php:86
-#: ../../include/functions_reporting_html.php:5487
-#: ../../include/ajax/alert_list.ajax.php:593
-msgid "To:"
-msgstr "Hasta:"
-
-#: ../../godmode/agentes/planned_downtime.editor.php:641
-msgid "Type Periodicity:"
-msgstr "Periodicidad del tipo:"
-
-#: ../../godmode/agentes/planned_downtime.editor.php:643
-#: ../../godmode/agentes/module_manager_editor_prediction.php:181
-#: ../../enterprise/include/functions_cron.php:502
-#: ../../enterprise/include/lib/NetworkManager.php:182
-msgid "Weekly"
-msgstr "Semanalmente"
-
-#: ../../godmode/agentes/planned_downtime.editor.php:644
-#: ../../godmode/agentes/module_manager_editor_prediction.php:182
-#: ../../enterprise/include/functions_cron.php:503
-msgid "Monthly"
-msgstr "Mensualmente"
-
-#: ../../godmode/agentes/planned_downtime.editor.php:662
-#: ../../include/functions.php:1077 ../../include/functions_reporting.php:14061
-#: ../../include/class/CalendarManager.class.php:978
-#: ../../views/calendar/special_days.php:225
-msgid "Mon"
-msgstr "Lun"
-
-#: ../../godmode/agentes/planned_downtime.editor.php:663
-#: ../../include/functions.php:1081 ../../include/functions_reporting.php:14066
-#: ../../include/class/CalendarManager.class.php:979
-#: ../../views/calendar/special_days.php:226
-msgid "Tue"
-msgstr "Mar"
-
-#: ../../godmode/agentes/planned_downtime.editor.php:664
-#: ../../include/functions.php:1085 ../../include/functions_reporting.php:14071
-#: ../../include/class/CalendarManager.class.php:980
-#: ../../views/calendar/special_days.php:227
-msgid "Wed"
-msgstr "Mié"
-
-#: ../../godmode/agentes/planned_downtime.editor.php:665
-#: ../../include/functions.php:1089 ../../include/functions_reporting.php:14076
-#: ../../include/class/CalendarManager.class.php:981
-#: ../../views/calendar/special_days.php:228
-msgid "Thu"
-msgstr "Jue"
-
-#: ../../godmode/agentes/planned_downtime.editor.php:666
-#: ../../include/functions.php:1093 ../../include/functions_reporting.php:14081
-#: ../../include/class/CalendarManager.class.php:982
-#: ../../views/calendar/special_days.php:229
-msgid "Fri"
-msgstr "Vie"
-
-#: ../../godmode/agentes/planned_downtime.editor.php:667
-#: ../../include/functions.php:1097 ../../include/functions_reporting.php:14086
-#: ../../include/class/CalendarManager.class.php:983
-#: ../../views/calendar/special_days.php:230
-msgid "Sat"
-msgstr "Sáb"
-
-#: ../../godmode/agentes/planned_downtime.editor.php:668
-#: ../../include/functions.php:1101 ../../include/functions_reporting.php:14091
-#: ../../include/class/CalendarManager.class.php:984
-#: ../../views/calendar/special_days.php:224
-msgid "Sun"
-msgstr "Dom"
-
-#: ../../godmode/agentes/planned_downtime.editor.php:673
-msgid "From day:"
-msgstr "Desde el día:"
-
-#: ../../godmode/agentes/planned_downtime.editor.php:687
-msgid "To day:"
-msgstr "Hasta el día:"
-
-#: ../../godmode/agentes/planned_downtime.editor.php:706
-msgid "From hour:"
-msgstr "Desde la hora:"
-
-#: ../../godmode/agentes/planned_downtime.editor.php:719
-msgid "To hour:"
-msgstr "Hasta la hora:"
-
-#: ../../godmode/agentes/planned_downtime.editor.php:795
-msgid "Group filter"
-msgstr "Filtro de grupo"
-
-#: ../../godmode/agentes/planned_downtime.editor.php:799
-#: ../../enterprise/include/class/Omnishell.class.php:835
-msgid "Available agents"
-msgstr "Agentes disponibles"
-
-#: ../../godmode/agentes/planned_downtime.editor.php:829
-msgid "Available modules:"
-msgstr "Módulos disponibles:"
-
-#: ../../godmode/agentes/planned_downtime.editor.php:830
-msgid "Only for type Quiet for downtimes."
-msgstr "Solo para tipo Modo silencioso para paradas"
-
-#: ../../godmode/agentes/planned_downtime.editor.php:888
-msgid "Agents planned for this downtime"
-msgstr "Agentes planificados para esta parada"
-
-#: ../../godmode/agentes/planned_downtime.editor.php:906
-msgid "There are no agents"
-msgstr "No hay agentes"
-
-#: ../../godmode/agentes/planned_downtime.editor.php:948
-msgid "All alerts"
-msgstr "Todas las alertas"
-
-#: ../../godmode/agentes/planned_downtime.editor.php:950
-msgid "Entire agent"
-msgstr "Agente completo"
-
-#: ../../godmode/agentes/planned_downtime.editor.php:953
-#: ../../godmode/agentes/planned_downtime.editor.php:1075
-msgid "All modules"
-msgstr "Todos los módulos"
-
-#: ../../godmode/agentes/planned_downtime.editor.php:955
-#: ../../godmode/agentes/planned_downtime.editor.php:1067
-#: ../../godmode/agentes/planned_downtime.editor.php:1071
-msgid "Some modules"
-msgstr "Algunos módulos"
-
-#: ../../godmode/agentes/planned_downtime.editor.php:1021
-msgid "Add Module:"
-msgstr "Añadir módulo:"
-
-#: ../../godmode/agentes/planned_downtime.editor.php:1523
-msgid ""
-"WARNING: If you edit this scheduled downtime, the data of future SLA reports "
-"may be altered"
-msgstr ""
-"ADVERTENCIA: si se modifica esta parada planificada, los datos de los futuros "
-"informes SLA pueden ser alterados"
-
-#: ../../godmode/agentes/module_manager.php:130
-msgid "Create a new data server module"
-msgstr "Crear un nuevo módulo de servidor de datos"
-
-#: ../../godmode/agentes/module_manager.php:132
-msgid "Create a new network server module"
-msgstr "Crear un nuevo módulo de servidor de red"
-
-#: ../../godmode/agentes/module_manager.php:136
-msgid "Create a new plugin server module"
-msgstr "Crear un nuevo módulo de servidor de complementos"
-
-#: ../../godmode/agentes/module_manager.php:140
-msgid "Create a new WMI server module"
-msgstr "Crear un nuevo módulo de servidor WMI"
-
-#: ../../godmode/agentes/module_manager.php:144
-msgid "Create a new prediction server module"
-msgstr "Crear un nuevo módulo de servidor de predicción"
-
-#: ../../godmode/agentes/module_manager.php:148
-msgid "Create a new web Server module"
-msgstr "Crear un nuevo módulo de servidor web"
-
-#: ../../godmode/agentes/module_manager.php:211
-msgid "<p>Type</p>"
-msgstr "<p>Tipo</p>"
-
-#: ../../godmode/agentes/module_manager.php:241
-msgid "Get more modules on Monitoring Library"
-msgstr "Añadir más módulos de la Librería de módulos"
-
-#: ../../godmode/agentes/module_manager.php:280
-msgid "There was a problem completing the operation"
-msgstr "Hubo un problema al completar la operación"
-
-#: ../../godmode/agentes/module_manager.php:437
-#: ../../godmode/agentes/module_manager.php:478
-#, php-format
-msgid "There was a problem completing the operation. Applied to 0/%d modules."
-msgstr ""
-"Ha habido un problema al completar la operación. Aplicado a los módulos 0/%d."
-
-#: ../../godmode/agentes/module_manager.php:443
-#: ../../godmode/agentes/module_manager.php:484
-msgid "Operation finished successfully."
-msgstr "Operación concluida correctamente."
-
-#: ../../godmode/agentes/module_manager.php:447
-#: ../../godmode/agentes/module_manager.php:488
-#, php-format
-msgid "There was a problem completing the operation. Applied to %d/%d modules."
-msgstr ""
-"Ha habido un problema al completar la operación. Aplicado a los módulos %d/%d."
-
-#: ../../godmode/agentes/module_manager.php:868
-msgid "Del."
-msgstr "Del."
-
-#: ../../godmode/agentes/module_manager.php:1042
-#: ../../godmode/agentes/module_manager.php:1050
-#: ../../include/ajax/module.php:1084 ../../include/ajax/module.php:1092
-msgid "Adopted"
-msgstr "Adoptado"
-
-#: ../../godmode/agentes/module_manager.php:1086
-#: ../../enterprise/operation/agentes/policy_view.php:457
-msgid "Non initialized module"
-msgstr "Módulo no iniciado"
-
-#: ../../godmode/agentes/module_manager.php:1105
-#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:454
-msgid ""
-"The policy modules of data type will only update their intervals when policy "
-"is applied."
-msgstr ""
-"Los módulos de política de tipo dato solo actualizarán sus intervalos cuando "
-"la política sea aplicada."
-
-#: ../../godmode/agentes/module_manager.php:1143
-#: ../../godmode/agentes/module_manager.php:1144
-#: ../../enterprise/godmode/policies/policy_modules.php:1515
-#: ../../enterprise/godmode/policies/policy_modules.php:1516
-msgid "Enable module"
-msgstr "Habilitar el módulo"
-
-#: ../../godmode/agentes/module_manager.php:1153
-#: ../../godmode/agentes/module_manager.php:1154
-#: ../../enterprise/godmode/policies/policy_modules.php:1525
-#: ../../enterprise/godmode/policies/policy_modules.php:1526
-msgid "Disable module"
-msgstr "Deshabilitar el módulo"
-
-#: ../../godmode/agentes/module_manager.php:1180
-msgid "Normalize"
-msgstr "Normalizar"
-
-#: ../../godmode/agentes/module_manager.php:1190
-msgid "Normalize (Disabled)"
-msgstr "Normalizar (deshabilitado)"
-
-#: ../../godmode/agentes/module_manager.php:1205
-#: ../../include/functions_snmp_browser.php:638
-msgid "Create network component"
-msgstr "Crear componentes de red"
-
-#: ../../godmode/agentes/module_manager.php:1214
-msgid "Create network component (Disabled)"
-msgstr "Crear componentes de red (desactivado)"
-
-#: ../../godmode/agentes/module_manager.php:1274
-msgid "Execute action"
-msgstr "Ejecutar acción"
-
-#: ../../godmode/agentes/module_manager_editor_common.php:108
-msgid "Using module component"
-msgstr "Utilizar módulo de librería"
-
-#: ../../godmode/agentes/module_manager_editor_common.php:118
-#: ../../godmode/agentes/module_manager_editor_common.php:135
-#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:76
-#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:96
-msgid "Manual setup"
-msgstr "Configuración manual"
-
-#: ../../godmode/agentes/module_manager_editor_common.php:127
-#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:88
-msgid "No component was found"
-msgstr "No se encontró ningún componente"
-
-#: ../../godmode/agentes/module_manager_editor_common.php:238
-#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:98
-msgid "Delete module"
-msgstr "Eliminar módulo"
-
-#: ../../godmode/agentes/module_manager_editor_common.php:413
-msgid "Warning threshold"
-msgstr "Umbral de advertencia"
-
-#: ../../godmode/agentes/module_manager_editor_common.php:415
-#: ../../godmode/agentes/module_manager_editor_common.php:476
-msgid "Min. "
-msgstr "Min. "
-
-#: ../../godmode/agentes/module_manager_editor_common.php:474
-msgid "Critical threshold"
-msgstr "Umbral crítico"
-
-#: ../../godmode/agentes/module_manager_editor_common.php:627
-#: ../../godmode/agentes/module_manager_editor_common.php:629
-#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:430
-#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:433
-#: ../../enterprise/meta/monitoring/wizard/wizard.php:156
-#, php-format
-msgid "Agent interval x %s"
-msgstr "Intervalo del agente x %s"
-
-#: ../../godmode/agentes/module_manager_editor_common.php:664
-#: ../../godmode/modules/manage_network_components_form_common.php:308
-#: ../../enterprise/godmode/modules/configure_local_component.php:461
-#: ../../enterprise/include/functions_reporting_csv.php:1201
-#: ../../include/functions_reporting.php:6431
-#: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:480
-msgid "Min. Value"
-msgstr "Valor mínimo"
-
-#: ../../godmode/agentes/module_manager_editor_common.php:668
-#: ../../godmode/modules/manage_network_components_form_common.php:310
-#: ../../enterprise/godmode/modules/configure_local_component.php:466
-#: ../../enterprise/include/functions_reporting_csv.php:1256
-#: ../../include/functions_reporting.php:6427
-#: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:492
-msgid "Max. Value"
-msgstr "Valor máximo"
-
-#: ../../godmode/agentes/module_manager_editor_common.php:673
-msgid "Dynamic Threshold Interval"
-msgstr "Intervalo de rango dinámico"
-
-#: ../../godmode/agentes/module_manager_editor_common.php:691
-#: ../../godmode/modules/manage_network_components_form_common.php:152
-#: ../../enterprise/godmode/modules/configure_local_component.php:298
-msgid "Advanced options Dynamic Threshold"
-msgstr "Opciones avanzadas rango dinámico"
-
-#: ../../godmode/agentes/module_manager_editor_common.php:700
-msgid "Dynamic Threshold Min. "
-msgstr "Rango dinámico mínimo "
-
-#: ../../godmode/agentes/module_manager_editor_common.php:713
-msgid "Dynamic Threshold Max. "
-msgstr "Rango dinámico máximo "
-
-#: ../../godmode/agentes/module_manager_editor_common.php:726
-msgid "Dynamic Threshold Two Tailed: "
-msgstr "Rango dinámico dos fallido: "
-
-#: ../../godmode/agentes/module_manager_editor_common.php:737
-msgid "Not needed"
-msgstr "No necesario"
-
-#: ../../godmode/agentes/module_manager_editor_common.php:906
-#: ../../godmode/modules/manage_network_components_form_common.php:362
-#: ../../enterprise/godmode/modules/configure_local_component.php:561
-msgid "Tags available"
-msgstr "Etiquetas disponibles"
-
-#: ../../godmode/agentes/module_manager_editor_common.php:1001
-#: ../../godmode/modules/manage_network_components_form_common.php:380
-#: ../../enterprise/godmode/modules/configure_local_component.php:579
-msgid "Add tags to module"
-msgstr "Añadir etiquetas al módulo"
-
-#: ../../godmode/agentes/module_manager_editor_common.php:1010
-#: ../../godmode/modules/manage_network_components_form_common.php:381
-#: ../../enterprise/godmode/modules/configure_local_component.php:580
-msgid "Delete tags to module"
-msgstr "Eliminar etiquetas del módulo"
-
-#: ../../godmode/agentes/module_manager_editor_common.php:1014
-#: ../../godmode/modules/manage_network_components_form_common.php:382
-#: ../../enterprise/godmode/setup/setup_auth.php:174
-#: ../../enterprise/godmode/setup/setup_auth.php:458
-#: ../../enterprise/godmode/setup/setup_auth.php:1253
-#: ../../enterprise/godmode/modules/configure_local_component.php:581
-msgid "Tags selected"
-msgstr "Etiquetas seleccionadas"
-
-#: ../../godmode/agentes/module_manager_editor_common.php:1035
-msgid "Tags from policy"
-msgstr "Etiquetas desde política"
-
-#: ../../godmode/agentes/module_manager_editor_common.php:1075
-msgid "Cascade Protection Services"
-msgstr "Servicios de protección en cascada"
-
-#: ../../godmode/agentes/module_manager_editor_common.php:1109
-#: ../../godmode/agentes/module_manager_editor_common.php:1117
-#: ../../godmode/agentes/module_manager_editor_common.php:1126
-msgid "Cron from"
-msgstr "Cron desde"
-
-#: ../../godmode/agentes/module_manager_editor_common.php:1113
-#: ../../godmode/agentes/module_manager_editor_common.php:1121
-#: ../../godmode/agentes/module_manager_editor_common.php:1130
-msgid "Cron to"
-msgstr "Cron hasta"
-
-#: ../../godmode/agentes/module_manager_editor_common.php:1166
-msgid "Module parent"
-msgstr "Padre del módulo"
-
-#: ../../godmode/agentes/module_manager_editor_common.php:1226
-#: ../../godmode/agentes/module_manager_editor.php:750
-#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:574
-#: ../../enterprise/godmode/policies/policy_modules.php:417
-msgid "Custom macros"
-msgstr "Macros personalizadas"
-
-#: ../../godmode/agentes/module_manager_editor_common.php:1264
-#: ../../godmode/agentes/module_manager_editor_common.php:1375
-msgid "Direct"
-msgstr "Directo"
-
-#: ../../godmode/agentes/module_manager_editor_common.php:1265
-#: ../../godmode/agentes/module_manager_editor_common.php:1375
-#: ../../include/functions_reporting_html.php:3819
-#: ../../include/functions_reporting_html.php:3913
-#: ../../include/functions_reporting_html.php:3993
-#: ../../include/functions_reporting_html.php:4002
-#: ../../include/functions_reporting_html.php:4140
-#: ../../include/functions_reporting_html.php:4149
-#: ../../include/functions_reporting_html.php:4473
-#: ../../include/functions_reporting_html.php:4479
-msgid "Failover"
-msgstr "Conmutación"
-
-#: ../../godmode/agentes/module_manager_editor_common.php:1266
-msgid "Rel. type"
-msgstr "Rel. tipo"
-
-#: ../../godmode/agentes/module_manager_editor_common.php:1281
-msgid "Add relationship"
-msgstr "Añadir relación"
-
-#: ../../godmode/agentes/module_manager_editor_common.php:1306
-msgid "Changes"
-msgstr "Cambios"
-
-#: ../../godmode/agentes/module_manager_editor_common.php:1986
-#: ../../godmode/modules/manage_network_components_form_common.php:706
-#: ../../enterprise/godmode/modules/configure_local_component.php:978
-msgid "Normal Status"
-msgstr "Estado normal"
-
-#: ../../godmode/agentes/module_manager_editor_common.php:1987
-#: ../../godmode/modules/manage_network_components_form_common.php:707
-#: ../../enterprise/godmode/modules/configure_local_component.php:979
-msgid "Warning Status"
-msgstr "Estado de advertencia"
-
-#: ../../godmode/agentes/module_manager_editor_common.php:1988
-#: ../../godmode/modules/manage_network_components_form_common.php:708
-#: ../../enterprise/godmode/modules/configure_local_component.php:980
-msgid "Critical Status"
-msgstr "Estado crítico"
-
-#: ../../godmode/agentes/module_manager_editor_common.php:1990
-#: ../../godmode/modules/manage_network_components_form_common.php:710
-#: ../../enterprise/godmode/modules/configure_local_component.php:983
-msgid "Please introduce a maximum warning higher than the minimun warning"
-msgstr ""
-"Por favor, introduce un máximo de advertencia mayor que el mínimo de "
-"advertencia."
-
-#: ../../godmode/agentes/module_manager_editor_common.php:1991
-#: ../../godmode/modules/manage_network_components_form_common.php:711
-#: ../../enterprise/godmode/modules/configure_local_component.php:985
-msgid "Please introduce a maximum critical higher than the minimun critical"
-msgstr "Por favor introduce un máximo de crítico mayor que el mínimo de crítico."
-
-#: ../../godmode/agentes/module_manager_editor_common.php:1992
-#: ../../godmode/modules/manage_network_components_form_common.php:712
-msgid "Please introduce a positive percentage value"
-msgstr "Introduzca un valor porcentual positivo"
-
-#: ../../godmode/agentes/module_manager_editor_wmi.php:87
-#: ../../godmode/modules/manage_network_components_form_wmi.php:41
-msgid "Namespace"
-msgstr "Espacio de nombres"
-
-#: ../../godmode/agentes/module_manager_editor_wmi.php:87
-msgid "Optional. WMI namespace. If unsure leave blank."
-msgstr "Opcional. Campo de nombre WMI. Ante la duda, dejar en blanco."
-
-#: ../../godmode/agentes/module_manager_editor_wmi.php:151
-msgid ""
-"Optional. Substring to look for in the WQL query result. The module returns 1 "
-"if found, 0 if not."
-msgstr ""
-"Opcional. Subcadena para buscar en los resultados de la consulta WQL. El "
-"módulo devuelve 1 si se ha encontrado algún resultado, 0 en caso contrario."
-
-#: ../../godmode/agentes/module_manager_editor_wmi.php:164
-msgid "Column number to retrieve from the WQL query result (starting from zero)."
-msgstr ""
-"Número de columna a obtener del resultado de la consulta WQL (a partir de 0)."
-
-#: ../../godmode/agentes/configurar_agente.php:243
-#: ../../godmode/agentes/configurar_agente.php:1040
-msgid "No agent alias specified"
-msgstr "No se ha especificado el alias del agente"
-
-#: ../../godmode/agentes/configurar_agente.php:246
-msgid "Agent cannot be created due to the maximum agent limit for this group"
-msgstr ""
-"El agente no puede crearse por el límite de máximo número de agentes de este "
-"grupo"
-
-#: ../../godmode/agentes/configurar_agente.php:352
-msgid "Could not be created, because name already exists"
-msgstr "No se pudo crear, el nombre ya existe."
-
-#: ../../godmode/agentes/configurar_agente.php:354
-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:437 ../../godmode/menu.php:149
-#: ../../godmode/wizards/HostDevices.class.php:1077
-msgid "Module templates"
-msgstr "Plantillas de módulos"
-
-#: ../../godmode/agentes/configurar_agente.php:526
-#: ../../enterprise/godmode/policies/policy.php:102
-#: ../../enterprise/include/functions_policies.php:3730
-msgid "Agent wizard"
-msgstr "Asistente de agente"
-
-#: ../../godmode/agentes/configurar_agente.php:548
-#: ../../godmode/agentes/configurar_agente.php:765
-#: ../../enterprise/include/functions_policies.php:3738
-msgid "SNMP Interfaces wizard"
-msgstr "Asistente de interfaces SNMP"
-
-#: ../../godmode/agentes/configurar_agente.php:558
-#: ../../godmode/agentes/configurar_agente.php:771
-#: ../../enterprise/include/functions_policies.php:3741
-msgid "WMI Wizard"
-msgstr "Asistente WMI"
-
-#: ../../godmode/agentes/configurar_agente.php:701
-#: ../../enterprise/operation/agentes/ver_agente.php:215
-#: ../../enterprise/godmode/agentes/collections.php:327
-#: ../../enterprise/include/functions_groups.php:81
-#: ../../enterprise/meta/advanced/collections.php:289
-msgid "Collection"
-msgstr "Colección"
-
-#: ../../godmode/agentes/configurar_agente.php:706
-#: ../../enterprise/godmode/menu.php:81
-msgid "Network config manager"
-msgstr "Administrador de configuración de red"
-
-#: ../../godmode/agentes/configurar_agente.php:717
-#: ../../enterprise/godmode/agentes/configurar_agente.php:112
-#: ../../enterprise/godmode/policies/policy.php:82
-#: ../../enterprise/include/functions_policies.php:3830
-msgid "Agent plugins"
-msgstr "Plugins del agente"
-
-#: ../../godmode/agentes/configurar_agente.php:744
-msgid "Gis"
-msgstr "GIS"
-
-#: ../../godmode/agentes/configurar_agente.php:786
-msgid "SNMP explorer"
-msgstr "Explorador SNMP"
-
-#: ../../godmode/agentes/configurar_agente.php:817
-#: ../../godmode/agentes/configurar_agente.php:839
-#: ../../godmode/agentes/modificar_agente.php:104 ../../godmode/menu.php:103
-msgid "Resources"
-msgstr "Recursos"
-
-#: ../../godmode/agentes/configurar_agente.php:818
-#: ../../godmode/agentes/configurar_agente.php:840
-#: ../../godmode/agentes/modificar_agente.php:108 ../../godmode/menu.php:71
-#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:236
-msgid "Manage agents"
-msgstr "Gestionar agentes"
-
-#: ../../godmode/agentes/configurar_agente.php:827
-msgid "Agent manager"
-msgstr "Administrador de agente"
-
-#: ../../godmode/agentes/configurar_agente.php:867
-#: ../../godmode/servers/modificar_server.php:222
-msgid "Conf file deleted successfully"
-msgstr "Archivo de configuración borrado correctamente"
-
-#: ../../godmode/agentes/configurar_agente.php:868
-#: ../../godmode/servers/modificar_server.php:223
-msgid "Could not delete conf file"
-msgstr "No se puede borrar el archivo de configuración"
-
-#: ../../godmode/agentes/configurar_agente.php:885
-#: ../../godmode/agentes/configurar_agente.php:1035
-#: ../../include/class/ExternalTools.class.php:750
-msgid "The ip or dns name entered cannot be resolved"
-msgstr "La IP o nombre del DNS no se puede resolver"
-
-#: ../../godmode/agentes/configurar_agente.php:912
-#: ../../godmode/agentes/configurar_agente.php:916
-msgid "No data to normalize"
-msgstr "No hay datos para normalizar"
-
-#: ../../godmode/agentes/configurar_agente.php:921
-#, php-format
-msgid "Deleted data above %f"
-msgstr "Eliminar datos por encima de %f"
-
-#: ../../godmode/agentes/configurar_agente.php:922
-#, php-format
-msgid "Error normalizing module %s"
-msgstr "Error al normalizar el módulo %s"
-
-#: ../../godmode/agentes/configurar_agente.php:1050
-#, php-format
-msgid "The group id %d is incorrect."
-msgstr "El grupo id %d es incorrecto."
-
-#: ../../godmode/agentes/configurar_agente.php:1052
-msgid "Agent cannot be updated due to the maximum agent limit for this group"
-msgstr ""
-"El agente no se puede actualizar por el límite máximo de agentes de este grupo"
-
-#: ../../godmode/agentes/configurar_agente.php:1054
-msgid "Duplicate main IP address"
-msgstr "Duplicar la dirección IP principal"
-
-#: ../../godmode/agentes/configurar_agente.php:1106
-msgid "There was a problem updating the agent"
-msgstr "Hubo un problema al actualizar el agente"
-
-#: ../../godmode/agentes/configurar_agente.php:1199
-msgid "There was a problem loading the agent"
-msgstr "Hubo un problema al cargar el agente"
-
-#: ../../godmode/agentes/configurar_agente.php:1709
-msgid ""
-"There was a problem updating module. Another module already exists with the "
-"same name."
-msgstr ""
-"Hubo un problema al actualizar el módulo. Ya existe otro módulo con el mismo "
-"nombre."
-
-#: ../../godmode/agentes/configurar_agente.php:1713
-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:1717
-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:1723
-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:1752
-msgid "Module successfully updated"
-msgstr "Módulo actualizado correctamente"
-
-#: ../../godmode/agentes/configurar_agente.php:1899
-msgid ""
-"There was a problem adding module. Another module already exists with the same "
-"name."
-msgstr ""
-"Hubo un problema al añadir el módulo. Ya existe otro módulo con el mismo "
-"nombre."
-
-#: ../../godmode/agentes/configurar_agente.php:1903
-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:1909
-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:2089
-msgid "There was a problem deleting the module"
-msgstr "Hubo un problema al borrar el módulo"
-
-#: ../../godmode/agentes/configurar_agente.php:2093
-msgid "Module deleted succesfully"
-msgstr "Módulo borrado correctamente"
-
-#: ../../godmode/agentes/configurar_agente.php:2110
-#: ../../enterprise/godmode/policies/policy_modules.php:1350
-#: ../../include/functions_reports.php:956
-#, php-format
-msgid "copy of %s"
-msgstr "copia de %s"
-
-#: ../../godmode/agentes/configurar_agente.php:2124
-#: ../../enterprise/godmode/policies/policy_modules.php:1368
-#, php-format
-msgid "copy of %s (%d)"
-msgstr "copia de  %s (%d)"
-
-#: ../../godmode/agentes/configurar_agente.php:2232
-#: ../../include/functions_api.php:11173
-#, php-format
-msgid "Save by %s Console"
-msgstr "Guardar por consola de %s"
-
-#: ../../godmode/agentes/configurar_agente.php:2250
-#: ../../include/functions_api.php:11174
-#, php-format
-msgid "Update by %s Console"
-msgstr "Actualizar por consola de %s"
-
-#: ../../godmode/agentes/configurar_agente.php:2266
-#: ../../include/functions_api.php:11175
-#, php-format
-msgid "Insert by %s Console"
-msgstr "Insertar por consola de %s"
-
-#: ../../godmode/agentes/configurar_agente.php:2339
-#: ../../godmode/agentes/configurar_agente.php:2351
-msgid "Invalid tab specified"
-msgstr "La pestaña no es válida"
-
-#: ../../godmode/agentes/module_manager_editor_prediction.php:110
-msgid "Source module"
-msgstr "Módulo origen"
-
-#: ../../godmode/agentes/module_manager_editor_prediction.php:148
-#: ../../godmode/agentes/module_manager_editor_prediction.php:169
-msgid "Select Module"
-msgstr "Seleccionar módulo"
-
-#: ../../godmode/agentes/module_manager_editor_prediction.php:183
-#: ../../enterprise/include/functions_cron.php:501
-#: ../../enterprise/include/lib/NetworkManager.php:178
-#: ../../include/functions_netflow.php:1850
-msgid "Daily"
-msgstr "Diariamente"
-
-#: ../../godmode/agentes/module_manager_editor_prediction.php:195
-msgid "Calculation type"
-msgstr "Tipo de cálculo"
-
-#: ../../godmode/agentes/module_manager_editor_prediction.php:203
-msgid "Estimated absolute value"
-msgstr "Valor absoluto estimado"
-
-#: ../../godmode/agentes/module_manager_editor_prediction.php:204
-msgid "Calculation of days to reach limit"
-msgstr "Cálculo de días para alcanzar el límite"
-
-#: ../../godmode/agentes/module_manager_editor_prediction.php:213
-msgid "Future estimation"
-msgstr "Estimación futura"
-
-#: ../../godmode/agentes/module_manager_editor_prediction.php:228
-msgid "Limit value"
-msgstr "Valor límite"
-
-#: ../../godmode/agentes/pandora_networkmap_empty.editor.php:95
-#: ../../enterprise/godmode/agentes/pandora_networkmap_empty.editor.php:93
-msgid "Empty Network maps editor"
-msgstr "Editor de mapas de red vacío"
-
-#: ../../godmode/agentes/modificar_agente.php:95
-#, php-format
-msgid "Agents defined in %s"
-msgstr "Agentes definidos en %s"
-
-#: ../../godmode/agentes/modificar_agente.php:124
-#, php-format
-msgid ""
-"This node is configured with centralized mode. Go to %s to delete an agent"
-msgstr ""
-"Este nodo está configurado en modo centralizado. Para eliminar un agente, vaya "
-"%s"
-
-#: ../../godmode/agentes/modificar_agente.php:170
-msgid "Success deleted agent."
-msgstr "Agente eliminado correctamente"
-
-#: ../../godmode/agentes/modificar_agente.php:171
-msgid "Could not be deleted."
-msgstr "No pudo ser borrado."
-
-#: ../../godmode/agentes/modificar_agente.php:186
-msgid "Maybe the files conf or md5 could not be deleted"
-msgstr "Los archivos conf o md5 no han podido ser borrados."
-
-#: ../../godmode/agentes/modificar_agente.php:320
-msgid "Show Agents"
-msgstr "Mostrar agentes"
-
-#: ../../godmode/agentes/modificar_agente.php:322
-msgid "Everyone"
-msgstr "Todos"
-
-#: ../../godmode/agentes/modificar_agente.php:336
-msgid "Operative System"
-msgstr "Sistema operativo"
-
-#: ../../godmode/agentes/modificar_agente.php:367
-msgid ""
-"Search filter by alias, name, description, IP address or custom fields content"
-msgstr ""
-"Buscar filtro por alias, nombre, descripción, dirección IP o contenido de "
-"campos personalizados."
-
-#: ../../godmode/agentes/modificar_agente.php:648
-msgid "Remote agent configuration"
-msgstr "Configuración remota del agente"
-
-#: ../../godmode/agentes/modificar_agente.php:648
-msgid "R"
-msgstr "R"
-
-#: ../../godmode/agentes/modificar_agente.php:858
-msgid "Edit remote config"
-msgstr "Editar configuración remota"
-
-#: ../../godmode/agentes/modificar_agente.php:908
-msgid "You are going to enable a cluster agent. Are you sure?"
-msgstr "¿Esta seguro de que desea habilitar el cluster de agentes?"
-
-#: ../../godmode/agentes/modificar_agente.php:911
-msgid "Enable agent"
-msgstr "Habilitar agente"
-
-#: ../../godmode/agentes/modificar_agente.php:918
-msgid "You are going to disable a cluster agent. Are you sure?"
-msgstr "¿Esta seguro de que desea deshabilitar el cluster de agentes?"
-
-#: ../../godmode/agentes/modificar_agente.php:921
-msgid "Disable agent"
-msgstr "Deshabilitar agente"
-
-#: ../../godmode/agentes/modificar_agente.php:931
-msgid "WARNING! - You are going to delete a cluster agent. Are you sure?"
-msgstr ""
-"¡ADVERTENCIA! - ¿Esta seguro de que desea eliminar el cluster de agentes?"
-
-#: ../../godmode/agentes/module_manager_editor.php:542
-#: ../../enterprise/godmode/policies/policies.php:249
-#: ../../enterprise/godmode/policies/policy_external_alerts.php:77
-#: ../../enterprise/godmode/policies/policy_modules.php:599
-#: ../../enterprise/godmode/policies/policy_collections.php:63
-#: ../../enterprise/godmode/policies/policy_inventory_modules.php:98
-#: ../../enterprise/godmode/policies/policy_linking.php:41
-#: ../../enterprise/godmode/policies/policy_agents.php:85
-#: ../../enterprise/godmode/policies/policy_alerts.php:94
-msgid "This policy is applying and cannot be modified"
-msgstr "Esta política se está aplicando y no puede ser modificada"
-
-#: ../../godmode/agentes/module_manager_editor.php:548
-#: ../../enterprise/include/functions_policies.php:3529
-msgid "Module will be linked in the next application"
-msgstr "El módulo será enlazado en la próxima aplicación."
-
-#: ../../godmode/agentes/module_manager_editor.php:562
-#: ../../enterprise/include/functions_policies.php:3539
-msgid "Module will be unlinked in the next application"
-msgstr "El módulo será desenlazado en la próxima aplicación."
-
-#: ../../godmode/agentes/module_manager_editor.php:718
-msgid "Invalid module type"
-msgstr "Tipo de módulo no válido"
-
-#: ../../godmode/agentes/module_manager_editor.php:738
-#: ../../enterprise/godmode/policies/policy_modules.php:403
-msgid "Base options"
-msgstr "Opciones de base"
-
-#: ../../godmode/agentes/module_manager_editor.php:762
-msgid "Module relations"
-msgstr "Relaciones entre módulos"
-
-#: ../../godmode/agentes/module_manager_editor.php:822
-#: ../../enterprise/godmode/policies/policy_modules.php:1693
-msgid "No module name provided"
-msgstr "No se proporcionó ningún nombre de módulo."
-
-#: ../../godmode/agentes/module_manager_editor.php:832
-#: ../../enterprise/godmode/policies/policy_modules.php:1694
-msgid "No target IP provided"
-msgstr "No se proporcionó ninguna IP de destino."
-
-#: ../../godmode/agentes/module_manager_editor.php:842
-#: ../../enterprise/godmode/policies/policy_modules.php:1695
-msgid "No SNMP OID provided"
-msgstr "No se proporcionó ningún OID de SMTP."
-
-#: ../../godmode/agentes/module_manager_editor.php:852
-msgid "No module to predict"
-msgstr "No existe ningún módulo para predecir."
-
-#: ../../godmode/agentes/module_manager_editor.php:862
-msgid "No plug-in provided"
-msgstr "Plugin no proporcionado"
-
-#: ../../godmode/agentes/module_manager_editor.php:872
-msgid "No server provided"
-msgstr "Ningún servidor especificado"
-
-#: ../../godmode/agentes/module_manager_editor.php:903
-msgid ""
-"Error, The field name and name in module_name in data configuration are "
-"different."
-msgstr ""
-"Error, el nombre del campo y el nombre de module_name en los datos de "
-"configuración son diferentes."
-
-#: ../../godmode/agentes/module_manager_editor.php:941
-msgid "The File APIs are not fully supported in this browser."
-msgstr "Las API de archivos no son totalmente compatibles con este navegador."
-
-#: ../../godmode/agentes/module_manager_editor.php:942
-msgid "Couldn`t find the fileinput element."
-msgstr "Elemento de archivo de entrada no encontrado"
-
-#: ../../godmode/agentes/module_manager_editor.php:943
-msgid "This browser doesn`t seem to support the files property of file inputs."
-msgstr ""
-"Este navegador parece no ser compatible con los archivos pertenecientes al "
-"archivo de entrada."
-
-#: ../../godmode/agentes/module_manager_editor.php:944
-msgid "Please select a file before clicking Load"
-msgstr "Seleccione un archivo antes de hacer clic en Cargar"
-
-#: ../../godmode/agentes/module_manager_editor_network.php:43
-#: ../../extensions/realtime_graphs.php:249
-msgid "Use this OID"
-msgstr "Usar esta OID"
-
-#: ../../godmode/agentes/module_manager_editor_network.php:149
-#: ../../godmode/modules/manage_network_components_form_network.php:82
-#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:263
-#: ../../include/class/AgentWizard.class.php:704
-msgid "SNMP community"
-msgstr "Comunidad SNMP"
-
-#: ../../godmode/agentes/module_manager_editor_network.php:266
-msgid "SNMP walk"
-msgstr "SNMP walk"
-
-#: ../../godmode/agentes/module_manager_editor_network.php:448
-msgid ""
-"Please use single quotation marks when necessary. \n"
-"\n"
-"If double quotation marks are needed, please escape them with a backslash "
-"(\\&quot;)"
-msgstr ""
-"Utilice comillas simples cuando sea necesario. \n"
-"\n"
-"Si se necesitan comillas dobles, escápase de ellas con una barra diagonal "
-"inversa (\\&quot;)"
-
-#: ../../godmode/agentes/module_manager_editor_network.php:474
-#: ../../godmode/wizards/HostDevices.class.php:1435
-#: ../../enterprise/include/class/SAP.app.php:605
-#: ../../enterprise/include/class/DeploymentCenter.class.php:1136
-#: ../../enterprise/include/class/DeploymentCenter.class.php:1266
-msgid "Manage credentials"
-msgstr "Gestionar credenciales"
-
-#: ../../godmode/agentes/module_manager_editor_network.php:478
-#: ../../enterprise/godmode/servers/HA_cluster.php:167
-#: ../../extensions/quick_shell.php:195
-msgid "SSH"
-msgstr "SSH"
-
-#: ../../godmode/agentes/module_manager_editor_network.php:479
-msgid "Windows remote"
-msgstr "Windows remoto"
-
-#: ../../godmode/agentes/module_manager_editor_network.php:482
-#: ../../enterprise/views/ncm/agent/manage.php:102
-msgid "Connection method"
-msgstr "Modo de conexión"
-
-#: ../../godmode/agentes/agent_manager.php:241
-msgid "Delete agent"
-msgstr "Borrar agente"
-
-#: ../../godmode/agentes/agent_manager.php:260
-#: ../../enterprise/godmode/policies/policy_agents.php:946
-msgid "This agent can be remotely configured"
-msgstr "Este agente puede ser configurado remotamente"
-
-#: ../../godmode/agentes/agent_manager.php:272
-msgid "QR Code Agent view"
-msgstr "Código QR de la vista de agente"
-
-#: ../../godmode/agentes/agent_manager.php:293
-msgid "Use alias as name"
-msgstr "Usar el alias como nombre"
-
-#: ../../godmode/agentes/agent_manager.php:335
-msgid "Primary group"
-msgstr "Grupo primario"
-
-#: ../../godmode/agentes/agent_manager.php:495
-#: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:249
-#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:349
-msgid "Delete remote configuration file"
-msgstr "Borrar el archivo de configuración remota"
-
-#: ../../godmode/agentes/agent_manager.php:520
-msgid "Cascade protection services"
-msgstr "Servicios de protección en cascada"
-
-#: ../../godmode/agentes/agent_manager.php:605
-msgid "Disabled mode"
-msgstr "Modo deshabilitado"
-
-#: ../../godmode/agentes/agent_manager.php:702
-msgid "Update new GIS data:"
-msgstr "Actualizar nuevos datos GIS:"
-
-#: ../../godmode/agentes/agent_manager.php:760
-msgid "Click to display"
-msgstr "Pinche para visualizar"
-
-#: ../../godmode/agentes/agent_manager.php:1012
-msgid "Secondary group cannot be primary too."
-msgstr "Un grupo secundario no puede ser también primario."
-
-#: ../../godmode/groups/modu_group_list.php:70
-#, php-format
-msgid "Module groups defined in %s"
-msgstr "Grupos de módulos definidos en %s"
-
-#: ../../godmode/groups/modu_group_list.php:92
-#, php-format
-msgid ""
-"This node is configured with centralized mode. All module groups information "
-"is read only. Go to %s to manage it."
-msgstr ""
-"Este nodo esta configurado con el modo centralizado. Toda la información de "
-"las políticas está en modo lectura. Vaya a %s para administrarlo."
-
-#: ../../godmode/groups/modu_group_list.php:119
-#: ../../godmode/groups/group_list.php:468
-msgid "Group successfully created"
-msgstr "Grupo creado correctamente"
-
-#: ../../godmode/groups/modu_group_list.php:122
-#: ../../godmode/groups/group_list.php:470
-msgid "There was a problem creating group"
-msgstr "Ha habido un problema al crear el grupo."
-
-#: ../../godmode/groups/modu_group_list.php:127
-#: ../../godmode/groups/modu_group_list.php:163
-msgid "Each module group must have a different name"
-msgstr "Cada grupo de módulos debe tener un nombre diferente"
-
-#: ../../godmode/groups/modu_group_list.php:131
-#: ../../godmode/groups/modu_group_list.php:167
-msgid "Module group must have a name"
-msgstr "El grupo de módulos debe tener un nombre"
-
-#: ../../godmode/groups/modu_group_list.php:155
-#: ../../godmode/groups/group_list.php:540
-msgid "Group successfully updated"
-msgstr "Grupo actualizado correctamente"
-
-#: ../../godmode/groups/modu_group_list.php:158
-#: ../../godmode/groups/group_list.php:542
-msgid "There was a problem modifying group"
-msgstr "Ha habido un problema al modificar el grupo"
-
-#: ../../godmode/groups/modu_group_list.php:227
-#: ../../godmode/groups/group_list.php:723
-msgid "There was a problem deleting group"
-msgstr "Ha habido un problema al borrar el grupo."
-
-#: ../../godmode/groups/modu_group_list.php:229
-#: ../../godmode/groups/group_list.php:720
-msgid "Group successfully deleted"
-msgstr "Grupo eliminado correctamente"
-
-#: ../../godmode/groups/modu_group_list.php:294
-msgid "There are no defined module groups"
-msgstr "No hay grupos de módulos definidos"
-
-#: ../../godmode/groups/modu_group_list.php:303
-msgid "Create module group"
-msgstr "Crear grupo de módulos"
-
-#: ../../godmode/groups/configure_group.php:87
-#: ../../godmode/groups/configure_modu_group.php:49
-msgid "There was a problem loading group"
-msgstr "Hubo un error al cargar la configuración del grupo"
-
-#: ../../godmode/groups/configure_group.php:106
-msgid "Update group"
-msgstr "Actualizar grupo"
-
-#: ../../godmode/groups/configure_group.php:108
-#: ../../godmode/groups/group_list.php:981
-msgid "Create group"
-msgstr "Crear grupo"
-
-#: ../../godmode/groups/configure_group.php:122
-#: ../../godmode/groups/group_list.php:380 ../../godmode/menu.php:136
-#: ../../godmode/users/profile_list.php:323
-#: ../../enterprise/godmode/setup/setup_auth.php:229
-#: ../../enterprise/godmode/setup/setup_auth.php:508
-#: ../../enterprise/godmode/setup/setup_auth.php:1305
-msgid "Profiles"
-msgstr "Perfiles"
-
-#: ../../godmode/groups/configure_group.php:126
-#: ../../godmode/groups/group_list.php:384
-msgid "Manage agents group"
-msgstr "Administrar grupo de agentes"
-
-#: ../../godmode/groups/configure_group.php:138
-msgid "Update Group"
-msgstr "Actualizar grupo"
-
-#: ../../godmode/groups/configure_group.php:140
-msgid "Create Group"
-msgstr "Crear grupo"
-
-#: ../../godmode/groups/configure_group.php:178
-msgid "You have not access to the parent."
-msgstr "No tienes acceso al padre"
-
-#: ../../godmode/groups/configure_group.php:226
-msgid "Group Password"
-msgstr "Contraseña del grupo"
-
-#: ../../godmode/groups/configure_group.php:230
-msgid "Enable alert use in this group."
-msgstr "Habilitar el uso de alertas en este grupo."
-
-#: ../../godmode/groups/configure_group.php:234
-msgid "Propagate ACL"
-msgstr "Propagar ACL"
-
-#: ../../godmode/groups/configure_group.php:234
-msgid "Propagate the same ACL security into the child subgroups."
-msgstr ""
-"Propaga la misma seguridad ACL del padre a todos los grupos hijos que dependen "
-"de él."
-
-#: ../../godmode/groups/configure_group.php:246
-#: ../../include/functions_events.php:5127
-msgid "Contact"
-msgstr "Contacto"
-
-#: ../../godmode/groups/configure_group.php:246
-msgid "Contact information accessible through the _groupcontact_ macro"
-msgstr "Información de contacto accesible a través de  _groupcontact_ macro"
-
-#: ../../godmode/groups/configure_group.php:250
-msgid "Information accessible through the _group_other_ macro"
-msgstr "Información accesible a través de  _group_other_ macro"
-
-#: ../../godmode/groups/configure_group.php:259
-msgid "Max agents allowed"
-msgstr "Máximo de agentes permitidos"
-
-#: ../../godmode/groups/configure_group.php:259
-msgid "Set the maximum of agents allowed for this group. 0 is unlimited."
-msgstr ""
-"Establezca el máximo de agentes permitidos en este grupo. 0 es ilimitado."
-
-#: ../../godmode/groups/configure_group.php:272
-#: ../../godmode/alerts/configure_alert_action.php:395
-#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:294
-#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:390
-#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:460
-#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:729
-#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:811
-#: ../../mobile/operation/agent.php:148 ../../mobile/operation/tactical.php:102
-#: ../../mobile/operation/events.php:614 ../../mobile/operation/visualmap.php:255
-#: ../../mobile/operation/alerts.php:199 ../../mobile/operation/agents.php:209
-#: ../../mobile/operation/modules.php:241
-#: ../../mobile/operation/visualmaps.php:189 ../../mobile/operation/groups.php:82
-#: ../../mobile/operation/module_graph.php:364
-#: ../../mobile/operation/module_graph.php:377
-msgid "Back"
-msgstr "Atrás"
-
-#: ../../godmode/groups/configure_modu_group.php:31
-msgid "Module group management"
-msgstr "Gestión del grupo de módulos"
-
-#: ../../godmode/groups/group_list.php:309
-msgid "Tree Group view"
-msgstr "Vista de árbol de grupos"
-
-#: ../../godmode/groups/group_list.php:333
-msgid "Credential Store"
-msgstr "Almacén de credenciales"
-
-#: ../../godmode/groups/group_list.php:339
-#, php-format
-msgid "Groups defined in %s"
-msgstr "Grupos definidos en %s"
-
-#: ../../godmode/groups/group_list.php:349 ../../godmode/menu.php:205
-msgid "Credential store"
-msgstr "Almacén de credenciales"
-
-#: ../../godmode/groups/group_list.php:355
-#: ../../enterprise/operation/services/services.table_services.php:45
-msgid "Table view"
-msgstr "Vista de tabla"
-
-#: ../../godmode/groups/group_list.php:365
-msgid "Edit or delete groups can cause problems with synchronization"
-msgstr "Editar o borrar grupos puede causar problemas con la sincronización."
-
-#: ../../godmode/groups/group_list.php:403
-#, php-format
-msgid ""
-"This node is configured with centralized mode. All groups information is read "
-"only. Go to %s to manage it."
-msgstr ""
-"Este nodo esta configurado con el modo centralizado. Toda la información de "
-"las políticas está en modo lectura. Vaya a %s para administrarlo."
-
-#: ../../godmode/groups/group_list.php:473
-#: ../../godmode/groups/group_list.php:545
-msgid "Each group must have a different name"
-msgstr "Cada grupo debe tener un nombre diferente"
-
-#: ../../godmode/groups/group_list.php:476
-#: ../../godmode/groups/group_list.php:548
-msgid "Group must have a name"
-msgstr "El grupo debe tener un nombre"
-
-#: ../../godmode/groups/group_list.php:605
-#, php-format
-msgid "The group %s could not be deleted because it is not empty in the nodes"
-msgstr ""
-"El grupo %s no puede ser borrado porque en el nodo se está usando en este grupo"
-
-#: ../../godmode/groups/group_list.php:667
-#: ../../enterprise/meta/advanced/policymanager.sync.php:247
-#: ../../enterprise/meta/include/functions_groups_meta.php:174
-#, php-format
-msgid "Error connecting to %s"
-msgstr "Error al conectar con %s"
-
-#: ../../godmode/groups/group_list.php:679
-msgid ""
-"The group has not been deleted in the metaconsole due to an error in the node "
-"database"
-msgstr ""
-"El grupo no se ha eliminado de la Metaconsola por un error en la base de datos "
-"de los nodos"
-
-#: ../../godmode/groups/group_list.php:688
-#, php-format
-msgid "The group %s has been deleted in the nodes"
-msgstr "El grupo %s se ha borrado de los nodos"
-
-#: ../../godmode/groups/group_list.php:730
-#, php-format
-msgid "The group is not empty. It is use in %s."
-msgstr "El grupo no está vacío. Está en uso en %s."
-
-#: ../../godmode/groups/group_list.php:775
-#: ../../godmode/groups/group_list.php:969
-msgid "There are no defined groups"
-msgstr "No hay grupos definidos"
-
-#: ../../godmode/groups/group_list.php:924
-msgid "Are you sure? This group will also be deleted in all the nodes."
-msgstr "¿Está seguro? Este grupo también se borrará de todos los nodos."
-
-#: ../../godmode/groups/group_list.php:930
-msgid ""
-"The child groups will be updated to use the parent id of the deleted group"
-msgstr "Los grupos hijo se actualizarán y usarán el id padre del grupo eliminado"
-
-#: ../../godmode/groups/group_list.php:1035
-#: ../../enterprise/operation/services/services.treeview_services.php:247
-msgid "Found groups"
-msgstr "Grupos encontrados"
-
-#: ../../godmode/alerts/configure_alert_command.php:60
-msgid "Configure alert command"
-msgstr "Configurar comando de alerta"
-
-#: ../../godmode/alerts/configure_alert_command.php:196
-#: ../../godmode/alerts/alert_commands.php:643
-#, php-format
-msgid ""
-"This node is configured with centralized mode. All alert commands information "
-"is read only. Go to %s to manage it."
-msgstr ""
-"Este nodo se configura en modo centralizado. Toda la información de plantillas "
-"de alertas es solo de lectura. Vaya a %s para gestionarlo."
-
-#: ../../godmode/alerts/configure_alert_command.php:207
-msgid "Update Command"
-msgstr "Actualizar comando"
-
-#: ../../godmode/alerts/configure_alert_command.php:207
-#: ../../godmode/alerts/configure_alert_action.php:275
-msgid "Create Command"
-msgstr "Crear comando"
-
-#: ../../godmode/alerts/configure_alert_command.php:297
-#, php-format
-msgid "Field %s description"
-msgstr "Campo de descripción %s"
-
-#: ../../godmode/alerts/configure_alert_command.php:325
-#, php-format
-msgid "Field %s values"
-msgstr "Campos %s valores"
-
-#: ../../godmode/alerts/configure_alert_command.php:327
-msgid "value1,tag1;value2,tag2;value3,tag3"
-msgstr "valor1,etiqueta1;valor2,etiqueta2;valor3,etiqueta3"
-
-#: ../../godmode/alerts/configure_alert_command.php:363
-msgid "Hide"
-msgstr "Ocultar"
-
-#: ../../godmode/alerts/alert_view.php:65 ../../godmode/alerts/alert_view.php:280
-#: ../../include/functions_events.php:4628
-msgid "Alert details"
-msgstr "Detalles de alerta"
-
-#: ../../godmode/alerts/alert_view.php:83 ../../godmode/alerts/alert_view.php:84
-#: ../../godmode/alerts/alert_list.php:480
-msgid "List alerts"
-msgstr "Lista de alertas"
-
-#: ../../godmode/alerts/alert_view.php:105
-#: ../../godmode/alerts/alert_list.list.php:556
-#: ../../enterprise/operation/agentes/policy_view.php:345
-#: ../../include/functions_ui.php:1247
-#: ../../include/class/AgentsAlerts.class.php:949
-#: ../../mobile/operation/alerts.php:324
-msgid "time(s)"
-msgstr "Veces"
-
-#: ../../godmode/alerts/alert_view.php:108
-#: ../../godmode/alerts/alert_list.list.php:559
-#: ../../enterprise/operation/agentes/policy_view.php:348
-#: ../../enterprise/godmode/alerts/alert_inventory_list.php:261
-#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3184
-#: ../../include/functions_reporting.php:12334
-#: ../../include/functions_ui.php:1250
-#: ../../include/class/AgentsAlerts.class.php:952
-#: ../../mobile/operation/alerts.php:327
-msgid "Alert disabled"
-msgstr "Alerta desactivada"
-
-#: ../../godmode/alerts/alert_view.php:128 ../../mobile/operation/alerts.php:125
-#: ../../mobile/operation/alerts.php:126 ../../mobile/operation/alerts.php:256
-#: ../../mobile/operation/alerts.php:257
-msgid "Stand by"
-msgstr "En espera"
-
-#: ../../godmode/alerts/alert_view.php:166
-#: ../../godmode/alerts/configure_alert_template.php:1216
-#: ../../include/functions_ui.php:1334
-msgid "The alert would fire when the value matches <span id=\"value\"></span>"
-msgstr ""
-"La alerta se disparará cuando el valor coincida con <span id=\"value\"></span>."
-
-#: ../../godmode/alerts/alert_view.php:168 ../../include/functions_ui.php:1337
-msgid ""
-"The alert would fire when the value doesn't match <span id=\"value\"></span>"
-msgstr ""
-"La alerta se disparará cuando el valor no coincida con <span id=\"value\"></"
-"span>."
-
-#: ../../godmode/alerts/alert_view.php:175
-#: ../../godmode/alerts/configure_alert_template.php:1218
-#: ../../include/functions_ui.php:1323
-msgid "The alert would fire when the value is <span id=\"value\"></span>"
-msgstr "La alerta se disparará cuando el valor sea <span id=\"value\"></span>."
-
-#: ../../godmode/alerts/alert_view.php:180
-#: ../../godmode/alerts/configure_alert_template.php:1219
-#: ../../include/functions_ui.php:1328
-msgid "The alert would fire when the value is not <span id=\"value\"></span>"
-msgstr ""
-"La alerta se disparará cuando el valor no sea <span id=\"value\"></span>."
-
-#: ../../godmode/alerts/alert_view.php:187
-#: ../../godmode/alerts/configure_alert_template.php:1220
-#: ../../include/functions_ui.php:1346
-msgid ""
-"The alert would fire when the value is between <span id=\"min\"></span> and "
-"<span id=\"max\"></span>"
-msgstr ""
-"La alerta se disparará cuando el valor esté entre <span id=\"min\"></span> y "
-"<span id=\"max\"></span>."
-
-#: ../../godmode/alerts/alert_view.php:191 ../../include/functions_ui.php:1349
-msgid ""
-"The alert would fire when the value is not between <span id=\"min\"></span> "
-"and <span id=\"max\"></span>"
-msgstr ""
-"La alerta se disparará cuando el valor no esté entre <span id=\"min\"></span> "
-"y <span id=\"max\"></span>."
-
-#: ../../godmode/alerts/alert_view.php:200
-#: ../../godmode/alerts/configure_alert_template.php:1222
-msgid "The alert would fire when the value is below <span id=\"min\"></span>"
-msgstr ""
-"La alerta se disparará cuando el valor sea inferior a  <span id=\"min\"></"
-"span>."
-
-#: ../../godmode/alerts/alert_view.php:205
-#: ../../godmode/alerts/configure_alert_template.php:1223
-msgid "The alert would fire when the value is above <span id=\"max\"></span>"
-msgstr ""
-"La alerta se disparará cuando el valor sea superior a <span id=\"max\"></span>."
-
-#: ../../godmode/alerts/alert_view.php:211
-#: ../../godmode/alerts/configure_alert_template.php:1226
-msgid "The alert would fire when the module value changes"
-msgstr "La alerta se disparará cuando los valores de los módulos cambien."
-
-#: ../../godmode/alerts/alert_view.php:213
-#: ../../godmode/alerts/configure_alert_template.php:1227
-msgid "The alert would fire when the module value does not change"
-msgstr "La alerta se disparará cuando los valores de los módulos no cambien."
-
-#: ../../godmode/alerts/alert_view.php:218
-#: ../../godmode/alerts/configure_alert_template.php:1224
-#: ../../include/functions_ui.php:1365
-msgid "The alert would fire when the module is in warning status"
-msgstr "La alerta se disparará cuando el módulo esté en estado advertencia."
-
-#: ../../godmode/alerts/alert_view.php:222
-#: ../../godmode/alerts/configure_alert_template.php:1225
-#: ../../include/functions_ui.php:1370
-msgid "The alert would fire when the module is in critical status"
-msgstr "La alerta se disparará cuando el módulo esté en estado crítico."
-
-#: ../../godmode/alerts/alert_view.php:226
-#: ../../godmode/alerts/configure_alert_template.php:1230
-msgid "The alert would fire when the module is in not normal status"
-msgstr "La alerta se disparará cuando el módulo no esté en estado normal"
-
-#: ../../godmode/alerts/alert_view.php:230
-#: ../../godmode/alerts/configure_alert_template.php:1228
-msgid "The alert would fire when the module is in unknown status"
-msgstr "La alerta se disparará cuando el módulo esté en estado desconocido."
-
-#: ../../godmode/alerts/alert_view.php:234
-#: ../../godmode/alerts/alert_list.list.php:633
-#: ../../enterprise/godmode/policies/policy_external_alerts.php:459
-#: ../../enterprise/godmode/policies/policy_alerts.php:428
-#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2358
-#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3326
-#: ../../include/functions_alerts.php:680
-msgid "Always"
-msgstr "Siempre"
-
-#: ../../godmode/alerts/alert_view.php:258
-#: ../../godmode/alerts/configure_alert_template.php:625
-#: ../../enterprise/include/class/AlertCorrelationManager.class.php:961
-#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2197
-msgid "Use special days list"
-msgstr "Utilizar lista de días especiales"
-
-#: ../../godmode/alerts/alert_view.php:266
-#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2206
-msgid "Number of alerts"
-msgstr "Número de alertas"
-
-#: ../../godmode/alerts/alert_view.php:281
-msgid "Firing conditions"
-msgstr "Condiciones de disparo"
-
-#: ../../godmode/alerts/alert_view.php:305
-#: ../../godmode/alerts/alert_view.php:339
-msgid "Every time that the alert is fired"
-msgstr "Cada vez que la alerta es disparada"
-
-#: ../../godmode/alerts/alert_view.php:317
-#: ../../godmode/alerts/alert_list.list.php:659
-msgid ""
-"The default actions will be executed every time that the alert is fired and no "
-"other action is executed"
-msgstr ""
-"Las acciones por defecto se ejecutarán cada vez que la alerta se dispare y "
-"ninguna otra acción sea ejecutada."
-
-#: ../../godmode/alerts/alert_view.php:361
-#: ../../godmode/alerts/alert_list.builder.php:173
-#: ../../godmode/alerts/alert_list.list.php:648
-#: ../../godmode/alerts/alert_list.list.php:774
-#: ../../godmode/alerts/configure_alert_action.php:284
-#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2296
-#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2508
-#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3343
-#: ../../enterprise/meta/monitoring/wizard/wizard.manage_alert.php:290
-#: ../../include/functions_reporting_html.php:3390
-#: ../../include/functions_reporting_html.php:5157
-#: ../../include/class/AgentsAlerts.class.php:385
-#: ../../include/ajax/alert_list.ajax.php:527
-msgid "Threshold"
-msgstr "Umbral"
-
-#: ../../godmode/alerts/alert_view.php:385
-msgid ""
-"Select the desired action and mode to see the Firing/Recovery fields for this "
-"action"
-msgstr ""
-"Selecciona la acción deseada y el modo para ver los campos de Disparado/"
-"Recuperación para dicha acción."
-
-#: ../../godmode/alerts/alert_view.php:395
-#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2592
-msgid "Select the action"
-msgstr "Seleccione la acción"
-
-#: ../../godmode/alerts/alert_view.php:403
-#: ../../godmode/alerts/configure_alert_action.php:305
-#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2294
-#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2557
-msgid "Firing"
-msgstr "Disparado"
-
-#: ../../godmode/alerts/alert_view.php:404
-#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2558
-msgid "Recovering"
-msgstr "Recuperado"
-
-#: ../../godmode/alerts/alert_view.php:435
-#: ../../godmode/alerts/alert_view.php:569
-#: ../../godmode/alerts/configure_alert_template.php:918
-#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2650
-msgid "Firing fields"
-msgstr "Campos de disparado"
-
-#: ../../godmode/alerts/alert_view.php:437
-#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2652
-msgid ""
-"Fields passed to the command executed by this action when the alert is fired"
-msgstr ""
-"Campos pasados al comando ejecutado por esta acción cuando la alerta es "
-"disparada"
-
-#: ../../godmode/alerts/alert_view.php:443
-#: ../../godmode/alerts/alert_view.php:566
-#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2658
-msgid "Fields configured on the command associated to the action"
-msgstr "Campos configurados en el comando asociado a la acción"
-
-#: ../../godmode/alerts/alert_view.php:446
-msgid "Template fields"
-msgstr "Campos de la plantilla"
-
-#: ../../godmode/alerts/alert_view.php:448
-msgid "Triggering fields configured in template"
-msgstr "Campos de disparado configurados en la plantilla"
-
-#: ../../godmode/alerts/alert_view.php:451
-#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2666
-msgid "Action fields"
-msgstr "Campos de la acción"
-
-#: ../../godmode/alerts/alert_view.php:453
-#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2668
-msgid "Triggering fields configured in action"
-msgstr "Campos de disparado configurados en la acción"
-
-#: ../../godmode/alerts/alert_view.php:457
-#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2671
-msgid "Executed on firing"
-msgstr "Ejecutado en disparado"
-
-#: ../../godmode/alerts/alert_view.php:459
-#: ../../godmode/alerts/alert_view.php:571
-#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2673
-msgid "Fields used on execution when the alert is fired"
-msgstr "Campos usados en la ejecución cuando la alerta es disparada"
-
-#: ../../godmode/alerts/alert_view.php:484
-#: ../../godmode/alerts/alert_view.php:603
-#: ../../godmode/alerts/configure_alert_template.php:928
-#: ../../godmode/alerts/alert_commands.php:100
-#: ../../godmode/alerts/alert_commands.php:105
-#: ../../godmode/alerts/alert_commands.php:121
-#: ../../godmode/alerts/alert_commands.php:127
-#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2044
-#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2689
-#, php-format
-msgid "Field %s"
-msgstr "Campo %s"
-
-#: ../../godmode/alerts/alert_view.php:527
-#: ../../godmode/alerts/alert_view.php:654
-#: ../../godmode/alerts/configure_alert_action.php:310
-#: ../../godmode/servers/plugin.php:422
-msgid "Command preview"
-msgstr "Vista previa del comando"
-
-#: ../../godmode/alerts/alert_view.php:542
-msgid "The alert recovering is disabled on this template."
-msgstr "La recuperación de la alerta está desactivada en esta plantilla"
-
-#: ../../godmode/alerts/alert_view.php:558
-msgid "Recovering fields"
-msgstr "Campos de recuperación"
-
-#: ../../godmode/alerts/alert_view.php:560
-msgid ""
-"Fields passed to the command executed by this action when the alert is "
-"recovered"
-msgstr ""
-"Campos pasados al comando ejecutado por esta acción cuando la alerta es "
-"recuperada"
-
-#: ../../godmode/alerts/alert_view.php:574
-msgid "Template recovery fields"
-msgstr "Campos de recuperación de la plantilla"
-
-#: ../../godmode/alerts/alert_view.php:576
-msgid "Recovery fields configured in alert template"
-msgstr "Campos de recuperación configurados en la plantilla de la alerta"
-
-#: ../../godmode/alerts/alert_view.php:579
-msgid "Action recovery fields"
-msgstr "Acción en campos de recuperación"
-
-#: ../../godmode/alerts/alert_view.php:581
-msgid "Recovery fields configured in alert action"
-msgstr "Campos de recuperación configurados en una acción de alerta"
-
-#: ../../godmode/alerts/alert_view.php:584
-msgid "Executed on recovery"
-msgstr "Ejecutado en recuperación"
-
-#: ../../godmode/alerts/alert_view.php:586
-msgid "Fields used on execution when the alert is recovered"
-msgstr "Campos usados en la ejecución cuando la alerta es recuperada"
-
-#: ../../godmode/alerts/alert_list.builder.php:91
-msgid "Latest value"
-msgstr "Último valor"
-
-#: ../../godmode/alerts/alert_list.builder.php:117
-#: ../../godmode/alerts/configure_alert_template.php:758
-#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:461
-#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:573
-#: ../../enterprise/meta/monitoring/wizard/wizard.manage_alert.php:263
-#: ../../include/class/AgentsAlerts.class.php:304
-msgid "Default action"
-msgstr "Acción predeterminada"
-
-#: ../../godmode/alerts/alert_list.builder.php:136
-#: ../../godmode/alerts/configure_alert_action.php:169
-#: ../../include/class/AgentsAlerts.class.php:332
-msgid "Create Action"
-msgstr "Crear acción"
-
-#: ../../godmode/alerts/alert_list.builder.php:169
-#: ../../godmode/alerts/configure_alert_template.php:607
-#: ../../include/class/AgentsAlerts.class.php:379
-msgid "Create Template"
-msgstr "Crear plantilla"
-
-#: ../../godmode/alerts/alert_list.builder.php:201
-msgid "Finish and view cluster"
-msgstr "Finalizar y ver cluster"
-
-#: ../../godmode/alerts/alert_list.builder.php:204
-#: ../../enterprise/godmode/alerts/alert_inventory_builder.php:282
-#: ../../include/class/AgentsAlerts.class.php:396
-msgid "Add alert"
-msgstr "Añadir alerta"
-
-#: ../../godmode/alerts/alert_list.builder.php:293
-#: ../../godmode/alerts/configure_alert_template.php:1288
-#: ../../godmode/modules/manage_network_components_form_plugin.php:54
-#: ../../godmode/modules/manage_network_components_form_wmi.php:60
-#: ../../enterprise/operation/agentes/policy_view.php:184
-#: ../../enterprise/operation/agentes/policy_view.php:277
-#: ../../enterprise/operation/agentes/policy_view.php:570
-#: ../../enterprise/meta/monitoring/wizard/wizard.php:138
-#: ../../include/functions.php:2704
-#: ../../include/class/AgentWizard.class.php:2495
-msgid "Empty"
-msgstr "Vacío"
-
-#: ../../godmode/alerts/configure_alert_template.php:99
-#: ../../godmode/alerts/configure_alert_template.php:123
-#: ../../godmode/alerts/configure_alert_template.php:155
-#: ../../include/functions_menu.php:499
-msgid "Configure alert template"
-msgstr "Configurar plantilla de alerta"
-
-#: ../../godmode/alerts/configure_alert_template.php:191
-#: ../../godmode/modules/manage_network_components.php:196
-#: ../../enterprise/godmode/modules/local_components.php:141
-#, php-format
-msgid "Successfully created from %s"
-msgstr "Creado correctamente desde %s"
-
-#: ../../godmode/alerts/configure_alert_template.php:228
-#: ../../godmode/alerts/configure_alert_template.php:232
-#: ../../godmode/alerts/configure_alert_template.php:249
-#: ../../godmode/alerts/configure_alert_template.php:253
-#: ../../godmode/alerts/configure_alert_template.php:270
-#: ../../godmode/alerts/configure_alert_template.php:274
-#: ../../enterprise/include/class/CommandCenter.class.php:456
-#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:746
-#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1051
-#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1146
-#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1496
-#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1781
-#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2106
-#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2537
-#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2550
-#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2878
-#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3055
-#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3145
-#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3184
-#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3249
-#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:465
-#: ../../include/functions_config.php:1556
-msgid "Step"
-msgstr "Paso"
-
-#: ../../godmode/alerts/configure_alert_template.php:250
-#: ../../godmode/alerts/configure_alert_template.php:254
-msgid "Conditions"
-msgstr "Condiciones"
-
-#: ../../godmode/alerts/configure_alert_template.php:271
-#: ../../godmode/alerts/configure_alert_template.php:275
-msgid "Advanced fields"
-msgstr "Campos avanzados"
-
-#: ../../godmode/alerts/configure_alert_template.php:419
-#, php-format
-msgid ""
-"This node is configured with centralized mode. All alerts templates "
-"information is read only. Go to Go to %s to manage it."
-msgstr ""
-"Este nodo se configura en modo centralizado. Toda la información de plantillas "
-"de alertas es solo de lectura. Vaya a %s para gestionarlo."
-
-#: ../../godmode/alerts/configure_alert_template.php:531
-msgid "No template name specified"
-msgstr "Ningún nombre de plantilla especificado"
-
-#: ../../godmode/alerts/configure_alert_template.php:661
-#: ../../enterprise/include/class/AlertCorrelationManager.class.php:978
-msgid "Schedule"
-msgstr "Programar"
-
-#: ../../godmode/alerts/configure_alert_template.php:665
-#: ../../enterprise/include/class/AlertCorrelationManager.class.php:981
-msgid "No alert has been scheduled yet"
-msgstr "Aún no se ha programado ninguna alerta"
-
-#: ../../godmode/alerts/configure_alert_template.php:712
-msgid "Reset counter for non-sustained alerts"
-msgstr "Reiniciar el contador para las alertas no sostenidas"
-
-#: ../../godmode/alerts/configure_alert_template.php:714
-msgid ""
-"Enable this option if you want the counter to be reset when the alert is not "
-"being fired consecutively, even if it's within the time threshold"
-msgstr ""
-"Activa esta opción si quieres que el contador se reinicie cuando la alerta no "
-"se dispare de forma consecutiva, incluso si está dentro del umbral."
-
-#: ../../godmode/alerts/configure_alert_template.php:788
-msgid ""
-"Unless they're left blank, the fields from the action will override those set "
-"on the template."
-msgstr ""
-"A menos que estén en blanco, los campos de la acción sobrescribirán los de la "
-"plantilla."
-
-#: ../../godmode/alerts/configure_alert_template.php:792
-msgid "Condition type"
-msgstr "Tipo de condición"
-
-#: ../../godmode/alerts/configure_alert_template.php:809
-msgid "Trigger when matches the value"
-msgstr "Disparar cuando coincida con el valor"
-
-#: ../../godmode/alerts/configure_alert_template.php:832
-msgid "The regular expression is valid"
-msgstr "La expresión regular es válida."
-
-#: ../../godmode/alerts/configure_alert_template.php:842
-msgid "The regular expression is not valid"
-msgstr "La expresión regular no es válida."
-
-#: ../../godmode/alerts/configure_alert_template.php:897
-msgid "Alert recovery"
-msgstr "Recuperación de alerta"
-
-#: ../../godmode/alerts/configure_alert_template.php:919
-msgid "Recovery fields"
-msgstr "Campos de recuperación"
-
-#: ../../godmode/alerts/configure_alert_template.php:933
-#: ../../godmode/alerts/configure_alert_template.php:974
-#: ../../godmode/alerts/configure_alert_template.php:1137
-#: ../../godmode/alerts/alert_commands.php:141
-#: ../../godmode/alerts/alert_commands.php:182
-#: ../../godmode/users/configure_user.php:1210
-#: ../../godmode/modules/manage_network_components_form_common.php:52
-#: ../../enterprise/godmode/modules/configure_local_component.php:164
-#: ../../enterprise/meta/advanced/metasetup.setup.php:108
-msgid "Basic"
-msgstr "Básico"
-
-#: ../../godmode/alerts/configure_alert_template.php:1134
-#: ../../godmode/modules/manage_network_components_form_common.php:50
-#: ../../enterprise/godmode/modules/configure_local_component.php:162
-msgid "Wizard level"
-msgstr "Nivel del asistente"
-
-#: ../../godmode/alerts/configure_alert_template.php:1136
-msgid "No wizard"
-msgstr "No hay asistente"
-
-#: ../../godmode/alerts/configure_alert_template.php:1171
-#: ../../godmode/wizards/HostDevices.class.php:1569
-#: ../../enterprise/godmode/wizards/Cloud.class.php:579
-#: ../../enterprise/include/class/MySQL.app.php:908
-#: ../../enterprise/include/class/SAP.app.php:802
-#: ../../enterprise/include/class/VMware.app.php:863
-#: ../../enterprise/include/class/Omnishell.class.php:852
-#: ../../enterprise/include/class/Aws.cloud.php:1423
-#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2136
-#: ../../enterprise/include/class/DB2.app.php:840
-#: ../../enterprise/include/class/Oracle.app.php:949
-#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:793
-#: ../../enterprise/include/lib/ClusterViewer/ClusterWizard.php:1206
-#: ../../enterprise/meta/monitoring/wizard/wizard.php:133
-#: ../../include/class/CustomNetScan.class.php:725
-msgid "Finish"
-msgstr "Finalizar"
-
-#: ../../godmode/alerts/configure_alert_template.php:1181
-#: ../../godmode/alerts/configure_alert_template.php:1188
-#: ../../godmode/wizards/HostDevices.class.php:769
-#: ../../enterprise/godmode/wizards/Cloud.class.php:579
-#: ../../enterprise/include/class/MySQL.app.php:589
-#: ../../enterprise/include/class/SAP.app.php:442
-#: ../../enterprise/include/class/VMware.app.php:534
-#: ../../enterprise/include/class/Omnishell.class.php:643
-#: ../../enterprise/include/class/Aws.cloud.php:1423
-#: ../../enterprise/include/class/AlertCorrelationManager.class.php:831
-#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1093
-#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1965
-#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2062
-#: ../../enterprise/include/class/DB2.app.php:567
-#: ../../enterprise/include/class/Oracle.app.php:574
-#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:568
-#: ../../enterprise/include/lib/ClusterViewer/ClusterWizard.php:1200
-#: ../../enterprise/meta/monitoring/wizard/wizard.php:132
-#: ../../enterprise/meta/monitoring/wizard/wizard.agent.php:149
-#: ../../enterprise/meta/monitoring/wizard/wizard.module.network.php:262
-#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:732
-#: ../../enterprise/meta/monitoring/wizard/wizard.module.web.php:215
-#: ../../enterprise/meta/monitoring/wizard/wizard.module.local.php:214
-#: ../../include/class/CustomNetScan.class.php:550
-#: ../../views/dashboard/slides.php:240
-msgid "Next"
-msgstr "Siguiente"
-
-#: ../../godmode/alerts/configure_alert_template.php:1217
-#, php-format
-msgid "The alert would fire when the value doesn\\'t match %s"
-msgstr "La alerta se disparará cuando el valor no coincida con %s"
-
-#: ../../godmode/alerts/configure_alert_template.php:1221
-msgid ""
-"The alert would fire when the value is not between <span id=min></span> and "
-"<span id=max></span>"
-msgstr ""
-"La alerta se dispararía cuando el valor no esté entre <span id=min></span> y "
-"<span id=max></span>"
-
-#: ../../godmode/alerts/configure_alert_template.php:1229
-msgid "The alert template cannot have the same value for min and max thresholds."
-msgstr ""
-"La plantilla de alerta no puede tener el mismo valor para los umbrales max y "
-"min."
-
-#: ../../godmode/alerts/configure_alert_template.php:1407
-msgid ""
-"The alert would fire when the module is in unknown status. Warning: "
-"unknown_updates of pandora_server.conf must be equal to 1"
-msgstr ""
-"La alerta se disparará cuando el módulo esté en estado desconocido. "
-"Advertencia: unknown_updates de pandora_server.conf debe ser igual a 1"
-
-#: ../../godmode/alerts/configure_alert_template.php:1495
-#: ../../enterprise/include/class/AlertCorrelationManager.class.php:4266
-msgid "Simple"
-msgstr "Simple"
-
-#: ../../godmode/alerts/configure_alert_template.php:1496
-#: ../../enterprise/include/class/AlertCorrelationManager.class.php:4267
-msgid "Detailed"
-msgstr "Detalle"
-
-#: ../../godmode/alerts/configure_alert_template.php:1551
-#: ../../enterprise/include/class/AlertCorrelationManager.class.php:4322
-msgid "Drag out to remove"
-msgstr "Arrastre hacia afuera para eliminar"
-
-#: ../../godmode/alerts/alert_list.list.php:56
-#: ../../enterprise/godmode/reporting/reporting_builder.template.php:497
-#: ../../enterprise/godmode/reporting/graph_template_list.php:203
-msgid "Template name"
-msgstr "Nombre de la plantilla"
-
-#: ../../godmode/alerts/alert_list.list.php:123
-msgid "Field content"
-msgstr "Contenido del campo"
-
-#: ../../godmode/alerts/alert_list.list.php:635
-#: ../../enterprise/godmode/policies/policy_external_alerts.php:461
-#: ../../enterprise/godmode/policies/policy_alerts.php:430
-#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3328
-#: ../../include/class/Diagnostics.class.php:1181
-#: ../../include/class/Diagnostics.class.php:1185
-msgid "On"
-msgstr "Activado"
-
-#: ../../godmode/alerts/alert_list.list.php:639
-#: ../../enterprise/godmode/policies/policy_external_alerts.php:465
-#: ../../enterprise/godmode/policies/policy_alerts.php:434
-#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3332
-msgid "Until"
-msgstr "Hasta"
-
-#: ../../godmode/alerts/alert_list.list.php:670
-#: ../../enterprise/godmode/alerts/alert_inventory_list.php:319
-msgid "Delete action"
-msgstr "Eliminar acción"
-
-#: ../../godmode/alerts/alert_list.list.php:685
-#: ../../godmode/alerts/alert_list.list.php:1166
-#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:491
-msgid "Update action"
-msgstr "Actualizar acción"
-
-#: ../../godmode/alerts/alert_list.list.php:927
-msgid "View alert advanced details"
-msgstr "Ver detalles avanzados de la alerta"
-
-#: ../../godmode/alerts/alert_list.list.php:943
-#: ../../include/functions_reporting_html.php:3125
-msgid "No alerts defined"
-msgstr "No hay alertas definidas"
-
-#: ../../godmode/alerts/alert_list.list.php:1000
-#: ../../godmode/users/user_list.php:740 ../../godmode/extensions.php:259
-#: ../../enterprise/godmode/agentes/agent_autoconfiguration.php:174
-#: ../../enterprise/godmode/agentes/plugins_manager.php:195
-#: ../../enterprise/godmode/agentes/plugins_manager.php:271
-#: ../../enterprise/godmode/policies/policy_alerts.php:714
-#: ../../enterprise/include/lib/Metaconsole/Node.php:1195
-#: ../../enterprise/include/lib/Metaconsole/Node.php:1196
-#: ../../enterprise/include/functions_HA_cluster.php:58
-#: ../../include/functions.php:3349
-msgid "Disable"
-msgstr "Desactivar"
-
-#: ../../godmode/alerts/alert_list.list.php:1054
-#: ../../enterprise/godmode/policies/policy_alerts.php:731
-msgid "Set off standby"
-msgstr "Desactivar modo standby"
-
-#: ../../godmode/alerts/alert_list.list.php:1081
-#: ../../enterprise/godmode/policies/policy_alerts.php:740
-msgid "Set standby"
-msgstr "Activar modo standby"
-
-#: ../../godmode/alerts/alert_commands.php:143
-msgid ""
-"For sending emails, text must be HTML format, if you want to use plain text, "
-"type it between the following labels: <pre></pre>"
-msgstr ""
-"Para envíar emails, el texto debe estar en formato HTML, si quiere usar texto "
-"plano, escríbelo entre las etiquetas: <pre></pre>"
-
-#: ../../godmode/alerts/alert_commands.php:219
-#: ../../godmode/alerts/alert_commands.php:250
-msgid "Text/plain"
-msgstr "Texto/plano"
-
-#: ../../godmode/alerts/alert_commands.php:221
-#: ../../godmode/alerts/alert_commands.php:252
-msgid "For sending emails only text plain"
-msgstr "Para mandar emails solo en texto plano"
-
-#: ../../godmode/alerts/alert_commands.php:235
-#: ../../godmode/alerts/alert_commands.php:266
-msgid "Text/html"
-msgstr "Texto/HTML"
-
-#: ../../godmode/alerts/alert_commands.php:474
-msgid "Permissions warning"
-msgstr "Alerta de permisos"
-
-#: ../../godmode/alerts/alert_commands.php:477
-msgid ""
-"Command management is limited to administrator users or user profiles with "
-"permissions PM"
-msgstr ""
-"La gestión de comandos está limitado a los usuarios de administrador o los "
-"perfiles de usuario con permisos PM"
-
-#: ../../godmode/alerts/alert_commands.php:494
-msgid "Alert commands"
-msgstr "Comandos de alerta"
-
-#: ../../godmode/alerts/alert_commands.php:563
-#: ../../include/functions_alerts.php:2643
-msgid "No name specified"
-msgstr "Ningún nombre especificado"
-
-#: ../../godmode/alerts/alert_commands.php:567
-#: ../../include/functions_alerts.php:2638
-msgid "No command specified"
-msgstr "Ningún comando especificado"
-
-#: ../../godmode/alerts/alert_commands.php:619
-msgid " (copy)"
-msgstr " (copia)"
-
-#: ../../godmode/alerts/alert_commands.php:740
-msgid "No alert commands configured"
-msgstr "Comandos de alertas no configurados"
-
-#: ../../godmode/alerts/alert_list.php:115
-msgid "Already added"
-msgstr "Ya añadido"
-
-#: ../../godmode/alerts/alert_list.php:169
-msgid "No template specified"
-msgstr "Ninguna plantilla especificada"
-
-#: ../../godmode/alerts/alert_list.php:173
-#: ../../enterprise/godmode/policies/policy_external_alerts.php:87
-msgid "No module specified"
-msgstr "Ningún módulo especificado"
-
-#: ../../godmode/alerts/alert_list.php:484
-msgid "Builder alert"
-msgstr "Creador de alerta"
-
-#: ../../godmode/alerts/alert_list.php:494
-#: ../../godmode/alerts/alert_list.php:496
-#: ../../godmode/users/configure_profile.php:291
-#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:655
-msgid "Manage alerts"
-msgstr "Gestionar alertas"
-
-#: ../../godmode/alerts/alert_templates.php:61
-#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:92
-msgid "Everyday"
-msgstr "Cada día"
-
-#: ../../godmode/alerts/alert_templates.php:73
-#: ../../enterprise/tools/ipam/ipam_editor.php:327
-#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:104
-#: ../../include/functions_config.php:1540
-msgid "Days"
-msgstr "Días"
-
-#: ../../godmode/alerts/alert_templates.php:73
-#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:104
-msgid "Every"
-msgstr "Cada"
-
-#: ../../godmode/alerts/alert_templates.php:84
-#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:115
-msgid "and"
-msgstr "y"
-
-#: ../../godmode/alerts/alert_templates.php:268
-#, php-format
-msgid ""
-"This node is configured with centralized mode. All alert templates information "
-"is read only. Go to %s to manage it."
-msgstr ""
-"Este nodo se configura en modo centralizado. Toda la información de plantillas "
-"de alertas es solo de lectura. Vaya a %s para gestionarlo."
-
-#: ../../godmode/alerts/alert_templates.php:412
-msgid ""
-"You cannot edit this alert template, You don't have the permission to edit All "
-"group."
-msgstr ""
-"No puede edit esta plantilla de alerta. No tiene los permisos para editar el "
-"grupo All (todos)."
-
-#: ../../godmode/alerts/alert_templates.php:473
-msgid "No alert templates defined"
-msgstr "No hay plantillas de alerta definidas"
-
-#: ../../godmode/alerts/alert_actions.php:74
-#: ../../include/functions_reporting.php:2714
-msgid "Alert actions"
-msgstr "Acciones de alerta"
-
-#: ../../godmode/alerts/alert_actions.php:222
-#: ../../godmode/alerts/configure_alert_action.php:120
-#, php-format
-msgid ""
-"This node is configured with centralized mode. All alert actions information "
-"is read only. Go to %s to manage it."
-msgstr ""
-"Este nodo se configura en modo centralizado. Toda la información de plantillas "
-"de alertas es solo de lectura. Vaya a %s para gestionarlo."
-
-#: ../../godmode/alerts/alert_actions.php:396
-msgid ""
-"You cannot edit this action, You don't have the permission to edit All group."
-msgstr ""
-"No puede editar esta acción, no tiene permisos para editar el grupo All "
-"(todos)."
-
-#: ../../godmode/alerts/alert_actions.php:407
-msgid ""
-"The action and the command associated with it do not have the same group. "
-"Please contact an administrator to fix it."
-msgstr ""
-"La acción y el comando asociado no pertenecen al mismo grupo. Póngase en "
-"contacto con el administrador para solucionarlo."
-
-#: ../../godmode/alerts/alert_actions.php:465
-msgid "No alert actions configured"
-msgstr "Sin acciones de alertas configuradas"
-
-#: ../../godmode/alerts/configure_alert_action.php:74
-#: ../../godmode/alerts/configure_alert_action.php:87
-msgid "Configure alert action"
-msgstr "Configurar acción de alerta"
-
-#: ../../godmode/alerts/configure_alert_action.php:167
-msgid "Update Action"
-msgstr "Actualizar acción"
-
-#: ../../godmode/alerts/configure_alert_action.php:204
-msgid "This action may stop working, if you change its name."
-msgstr "Esta acción podría dejar de funcionar si cambia el nombre."
-
-#: ../../godmode/alerts/configure_alert_action.php:306
-msgid "Recovery"
-msgstr "Recuperación"
-
-#: ../../godmode/alerts/configure_alert_action.php:330
-msgid "Create workunit on recovery"
-msgstr "Crear unidad de trabajo en recuperación"
-
-#: ../../godmode/alerts/configure_alert_action.php:331
-msgid ""
-"If closed status is set on recovery, a workunit will be added to the ticket in "
-"Integria IMS rather that closing the ticket."
-msgstr ""
-"Si el estado cerrado está en recuperación, se añadirá una unidad de trabajo al "
-"ticket en Integria IMS en vez de cerrar el ticket."
-
-#: ../../godmode/menu.php:33
-#: ../../godmode/wizards/DiscoveryTaskList.class.php:105
-#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:514
-msgid "Task list"
-msgstr "Lista de tareas"
-
-#: ../../godmode/menu.php:41
-msgid "Network scan"
-msgstr "Escaneado de red"
-
-#: ../../godmode/menu.php:43
-msgid "Custom network scan"
-msgstr "Escaneo de red personalizado"
-
-#: ../../godmode/menu.php:47
-msgid "Manage scan scripts"
-msgstr "Gestionar guiones de escaneo"
-
-#: ../../godmode/menu.php:50 ../../godmode/wizards/HostDevices.class.php:204
-msgid "Host & devices"
-msgstr "Host & devices"
-
-#: ../../godmode/menu.php:62 ../../godmode/wizards/HostDevices.class.php:190
-#: ../../godmode/servers/discovery.php:59
-#: ../../enterprise/godmode/wizards/Applications.class.php:157
-#: ../../enterprise/godmode/wizards/Cloud.class.php:182
-#: ../../enterprise/include/class/Azure.cloud.php:190
-#: ../../enterprise/include/class/Aws.cloud.php:158
-#: ../../enterprise/include/class/DeploymentCenter.class.php:590
-#: ../../enterprise/include/class/Google.cloud.php:184
-msgid "Discovery"
-msgstr "Discovery"
-
-#: ../../godmode/menu.php:80
-#: ../../enterprise/meta/include/functions_components_meta.php:80
-#: ../../enterprise/meta/include/functions_components_meta.php:135
-msgid "Component groups"
-msgstr "Grupos de componentes"
-
-#: ../../godmode/menu.php:83
-msgid "Module categories"
-msgstr "Categorías de módulos"
-
-#: ../../godmode/menu.php:87
-msgid "Module types"
-msgstr "Tipos de módulos"
-
-#: ../../godmode/menu.php:111
-msgid "Manage agents groups"
-msgstr "Configuración de grupos de agentes"
-
-#: ../../godmode/menu.php:117
-#: ../../enterprise/extensions/disabled/check_acls.php:134
-msgid "Module tags"
-msgstr "Etiquetas de módulos"
-
-#: ../../godmode/menu.php:125
-#: ../../enterprise/extensions/disabled/check_acls.php:53
-#: ../../enterprise/extensions/disabled/check_acls.php:140
-msgid "Users management"
-msgstr "Gestión de usuarios"
-
-#: ../../godmode/menu.php:130 ../../godmode/users/profile_list.php:74
-#: ../../godmode/users/configure_user.php:234
-#: ../../godmode/users/configure_profile.php:66
-#: ../../godmode/users/user_list.php:225
-#: ../../enterprise/meta/include/functions_users_meta.php:186
-#: ../../enterprise/meta/include/functions_users_meta.php:212
-msgid "Profile management"
-msgstr "Gestionar perfiles"
-
-#: ../../godmode/menu.php:151 ../../include/class/ConfigPEN.class.php:337
-#: ../../include/class/ConfigPEN.class.php:345
-msgid "Private Enterprise Numbers"
-msgstr "Números privados de empresa"
-
-#: ../../godmode/menu.php:153 ../../enterprise/godmode/menu.php:99
-#: ../../enterprise/meta/include/functions_components_meta.php:88
-#: ../../enterprise/meta/include/functions_components_meta.php:139
-msgid "Local components"
-msgstr "Componentes locales"
-
-#: ../../godmode/menu.php:155
-msgid "Remote components"
-msgstr "Componentes remotos"
-
-#: ../../godmode/menu.php:225
-msgid "List of Alerts"
-msgstr "Lista de alertas"
-
-#: ../../godmode/menu.php:237
-#: ../../enterprise/meta/include/functions_alerts_meta.php:137
-#: ../../enterprise/meta/include/functions_alerts_meta.php:168
-msgid "Commands"
-msgstr "Comandos"
-
-#: ../../godmode/menu.php:240 ../../godmode/menu.php:241
-msgid "Special days list"
-msgstr "Lista de días especiales"
-
-#: ../../godmode/menu.php:245
-msgid "SNMP alerts"
-msgstr "Alertas SNMP"
-
-#: ../../godmode/menu.php:257
-msgid "Event filters"
-msgstr "Filtro de eventos"
-
-#: ../../godmode/menu.php:262
-msgid "Custom events"
-msgstr "Eventos personalizados"
-
-#: ../../godmode/menu.php:264 ../../godmode/events/events.php:68
-#: ../../enterprise/meta/event/custom_events.php:50
-msgid "Event responses"
-msgstr "Respuestas de evento"
-
-#: ../../godmode/menu.php:285
-msgid "Manage servers"
-msgstr "Gestionar servidores"
-
-#: ../../godmode/menu.php:293
-#: ../../enterprise/godmode/agentes/plugins_manager.php:192
-#: ../../enterprise/godmode/policies/policies.php:535
-#: ../../enterprise/godmode/policies/policy_plugins.php:167
-msgid "Plugins"
-msgstr "Plugins"
-
-#: ../../godmode/menu.php:296
-msgid "Register Plugin"
-msgstr "Registrar Plugin"
-
-#: ../../godmode/menu.php:322 ../../include/class/OrderInterpreter.class.php:141
-msgid "General Setup"
-msgstr "Configuración general"
-
-#: ../../godmode/menu.php:358
-msgid "Websocket Engine"
-msgstr "Websocket Engine"
-
-#: ../../godmode/menu.php:371 ../../enterprise/meta/general/main_header.php:369
-#: ../../enterprise/meta/general/main_menu.php:584
-msgid "License"
-msgstr "Licencia"
-
-#: ../../godmode/menu.php:380 ../../enterprise/tools/ipam/ipam.php:449
-msgid "Admin tools"
-msgstr "Herramientas administrativas"
-
-#: ../../godmode/menu.php:388 ../../enterprise/meta/general/main_menu.php:667
-msgid "System audit log"
-msgstr "Logs de auditoría del sistema"
-
-#: ../../godmode/menu.php:390 ../../godmode/menu.php:510
-#: ../../enterprise/meta/general/main_header.php:381
-#: ../../enterprise/meta/general/main_header.php:448
-#: ../../enterprise/meta/general/main_menu.php:596
-#: ../../enterprise/meta/general/main_menu.php:616
-#: ../../general/links_menu.php:17
-msgid "Links"
-msgstr "Enlaces"
-
-#: ../../godmode/menu.php:392
-msgid "Diagnostic info"
-msgstr "Información de diagnóstico"
-
-#: ../../godmode/menu.php:397
-msgid "Site news"
-msgstr "Noticias del sistema"
-
-#: ../../godmode/menu.php:403
-msgid "DB Schema Check"
-msgstr "Comprobación del esquema de la BD"
-
-#: ../../godmode/menu.php:406
-msgid "DB Interface"
-msgstr "Interfaz de la BBDD"
-
-#: ../../godmode/menu.php:433 ../../extensions/db_status.php:25
-#: ../../extensions/db_status.php:453
-msgid "DB Schema check"
-msgstr "Comprobación del esquema de la BD"
-
-#: ../../godmode/menu.php:433 ../../extensions/dbmanager.php:322
-msgid "DB interface"
-msgstr "Interfaz de la BD"
-
-#: ../../godmode/menu.php:493
-msgid "Extension manager view"
-msgstr "Vista del gestor de extensiones"
-
-#: ../../godmode/menu.php:497
-msgid "Extension manager"
-msgstr "Gestor de extensión"
-
-#: ../../godmode/menu.php:528
-msgid "Update manager"
-msgstr "Administrador de actualizaciones"
-
-#: ../../godmode/menu.php:533
-msgid "Update Manager offline"
-msgstr "Administrador de actualizaciones sin conexión"
-
-#: ../../godmode/menu.php:536
-msgid "Update Manager online"
-msgstr "Administrador de actualizaciones con conexión"
-
-#: ../../godmode/menu.php:539
-msgid "Update Manager options"
-msgstr "Opciones del Administrador de actualizaciones"
-
-#: ../../godmode/menu.php:542
-msgid "Update Manager journal"
-msgstr "Diario de Update Manager"
-
-#: ../../godmode/menu.php:550
-#: ../../godmode/module_library/module_library_view.php:81
-msgid "Module library"
-msgstr "Librería de módulos"
-
-#: ../../godmode/menu.php:557
-#: ../../godmode/module_library/module_library_view.php:54
-#: ../../godmode/module_library/module_library_view.php:68
-#: ../../godmode/module_library/module_library_view.php:104
-msgid "Categories"
-msgstr "Categorías"
-
-#: ../../godmode/users/profile_list.php:84
-#: ../../godmode/users/configure_profile.php:76
-#, php-format
-msgid "Profiles defined on %s"
-msgstr "Perfiles definidos en %s."
-
-#: ../../godmode/users/profile_list.php:115
-#, php-format
-msgid ""
-"This node is configured with centralized mode. All profiles information is "
-"read only. Go to %s to manage it."
-msgstr ""
-"Este nodo esta configurado con el modo centralizado. Toda la información de "
-"las políticas está en modo lectura. Vaya a %s para administrarlo."
-
-#: ../../godmode/users/profile_list.php:127 ../../godmode/users/user_list.php:341
-msgid "There was a problem deleting the profile"
-msgstr "Error al borrar el perfil"
-
-#: ../../godmode/users/profile_list.php:254
-msgid "There was a problem updating this profile"
-msgstr "Error al borrar el perfil"
-
-#: ../../godmode/users/profile_list.php:257
-msgid "Profile name cannot be empty"
-msgstr "El nombre de perfil no puede estar vacío."
-
-#: ../../godmode/users/profile_list.php:303
-#: ../../godmode/users/profile_list.php:306
-msgid "There was a problem creating this profile"
-msgstr "Error al crear el perfil"
-
-#: ../../godmode/users/profile_list.php:456
-msgid "There are no defined profiles"
-msgstr "No hay perfiles definidos"
-
-#: ../../godmode/users/configure_user.php:151
-#: ../../godmode/users/user_list.php:287
-#, php-format
-msgid "Deleted user %s"
-msgstr "Usuario eliminado %s"
-
-#: ../../godmode/users/configure_user.php:158
-#: ../../godmode/users/user_list.php:294 ../../godmode/users/user_list.php:332
-msgid "There was a problem deleting the user"
-msgstr "Error al borrar el usuario"
-
-#: ../../godmode/users/configure_user.php:173
-#: ../../godmode/users/user_list.php:308
-#, php-format
-msgid "Deleted user %s from metaconsole"
-msgstr "Usuario %s eliminado de la Metaconsola"
-
-#: ../../godmode/users/configure_user.php:184
-#: ../../godmode/users/user_list.php:320
-#, php-format
-msgid "Deleted user %s from %s"
-msgstr "Usuario %s eliminado de %s"
-
-#: ../../godmode/users/configure_user.php:190
-#: ../../godmode/users/user_list.php:326
-#, php-format
-msgid "Successfully deleted from %s"
-msgstr "Eliminado correctamente de %s"
-
-#: ../../godmode/users/configure_user.php:191
-#: ../../godmode/users/user_list.php:327
-#, php-format
-msgid "There was a problem deleting the user from %s"
-msgstr "Error al eliminar al usuario de %s"
-
-#: ../../godmode/users/configure_user.php:206
-msgid "Update user"
-msgstr "Actualizar usuario"
-
-#: ../../godmode/users/configure_user.php:208
-#: ../../godmode/users/user_list.php:873
-msgid "Create user"
-msgstr "Crear usuario"
-
-#: ../../godmode/users/configure_user.php:317
-#: ../../godmode/users/user_list.php:876
-#, 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:403
-msgid "User ID cannot be empty"
-msgstr "El ID de usuario no puede estar vacío."
-
-#: ../../godmode/users/configure_user.php:410
-msgid "Invalid user ID: leading or trailing blank spaces not allowed"
-msgstr ""
-"ID de usuario no válido: no están permitidos los espacios en blanco al "
-"principio o al final"
-
-#: ../../godmode/users/configure_user.php:418
-msgid "Passwords cannot be empty"
-msgstr "Las contraseñas no pueden estar vacías."
-
-#: ../../godmode/users/configure_user.php:425
-msgid "Passwords didn't match"
-msgstr "Las contraseñas no coinciden."
-
-#: ../../godmode/users/configure_user.php:484
-msgid ""
-"Strict ACL is not recommended for admin users because performance could be "
-"affected."
-msgstr ""
-"ACL estricto no está recomendado para usuarios administradores porque el "
-"rendimiento podría verse afectado."
-
-#: ../../godmode/users/configure_user.php:519
-#: ../../godmode/users/configure_user.php:806
-msgid "Profile added successfully"
-msgstr "Perfil añadido correctamente"
-
-#: ../../godmode/users/configure_user.php:520
-#: ../../godmode/users/configure_user.php:807
-msgid "Profile cannot be added"
-msgstr "El perfil no se puede añadir."
-
-#: ../../godmode/users/configure_user.php:644
-#: ../../godmode/users/configure_user.php:668
-#: ../../godmode/users/configure_user.php:738
-#: ../../godmode/users/configure_user.php:745
-#: ../../godmode/users/configure_user.php:777
-msgid "Error updating user info (no change?)"
-msgstr "Error al actualizar la información del usuario (¿no hubo cambios?)"
-
-#: ../../godmode/users/configure_user.php:673
-msgid "Password of the active user is required to perform password change"
-msgstr "Se necesita la contraseña del usuario activo para cambiar la contraseña"
-
-#: ../../godmode/users/configure_user.php:675
-msgid "Password of active user is not correct"
-msgstr "La contraseña del usuario activo no es correcta"
-
-#: ../../godmode/users/configure_user.php:691
-msgid "Passwords does not match"
-msgstr "Las contraseñas no coinciden."
-
-#: ../../godmode/users/configure_user.php:766
-msgid ""
-"Strict ACL is not recommended for this user. Performance could be affected."
-msgstr ""
-"ACL estricto no está recomendado para este usuario. El rendimiento podría "
-"verse afectado."
-
-#: ../../godmode/users/configure_user.php:845
-msgid "Update User"
-msgstr "Actualizar usuario"
-
-#: ../../godmode/users/configure_user.php:847
-msgid "Create User"
-msgstr "Crear usuario"
-
-#: ../../godmode/users/configure_user.php:968
-msgid "Own password confirmation"
-msgstr "Confirmación de contraseña propia"
-
-#: ../../godmode/users/configure_user.php:977
-msgid "Global Profile"
-msgstr "Perfil global"
-
-#: ../../godmode/users/configure_user.php:985
-msgid ""
-"This user has permissions to manage all. An admin user should not requiere "
-"additional group permissions, except for using Enterprise ACL."
-msgstr ""
-"Este usuario tiene permisos para configurar todo. Un usuario administrador no "
-"debería requerir permisos adicionales de grupo, excepto para usar ACL "
-"Enterprise."
-
-#: ../../godmode/users/configure_user.php:1000
-msgid ""
-"This user has separated permissions to view data in his group agents, create "
-"incidents belong to his groups, add notes in another incidents, create "
-"personal assignments or reviews and other tasks, on different profiles"
-msgstr ""
-"Este usuario tiene permisos diferentes para ver los datos en el grupo de "
-"agentes, crear incidentes en el grupo, añadir notas en otros incidentes, crear "
-"asignaciones personales o revisarlas y otras tareas en perfiles diferentes."
-
-#: ../../godmode/users/configure_user.php:1081
-msgid "Search custom field view"
-msgstr "Buscar vista de campo personalizado"
-
-#: ../../godmode/users/configure_user.php:1081
-msgid "Load by default the selected view in custom field view"
-msgstr ""
-"Cargar por defecto la vista seleccionada en la vista de campo personalizado"
-
-#: ../../godmode/users/configure_user.php:1098
-msgid "Use global conf"
-msgstr "Usar configuración global"
-
-#: ../../godmode/users/configure_user.php:1115
-msgid "External link"
-msgstr "Enlace externo"
-
-#: ../../godmode/users/configure_user.php:1208
-msgid "Metaconsole access"
-msgstr "Acceso a la Metaconsola"
-
-#: ../../godmode/users/configure_user.php:1226
-msgid "Not Login"
-msgstr "No se inicia la sesión"
-
-#: ../../godmode/users/configure_user.php:1228
-msgid "The user with not login set only can access to API."
-msgstr "El usuario sin permiso de acceso solo puede tener acceso a la API."
-
-#: ../../godmode/users/configure_user.php:1238
-msgid "Local user"
-msgstr "Usuario local"
-
-#: ../../godmode/users/configure_user.php:1240
-msgid ""
-"The user with local authentication enabled will always use local "
-"authentication."
-msgstr ""
-"El usuario con la autenticación local habilitada siempre utilizará la "
-"autenticación local."
-
-#: ../../godmode/users/configure_user.php:1250
-msgid "Session Time"
-msgstr "TIempo de sesión"
-
-#: ../../godmode/users/configure_user.php:1252
-msgid ""
-"This is defined in minutes, If you wish a permanent session should putting -1 "
-"in this field."
-msgstr ""
-"Esto está definido en minutos; si quieres una sesión permanente, pon -1 en "
-"este campo."
-
-#: ../../godmode/users/configure_user.php:1286
-msgid "Default event filter"
-msgstr "Filtro de evento por defecto"
-
-#: ../../godmode/users/configure_user.php:1300
-msgid "eHorus user access enabled"
-msgstr "Acceso de usuario eHorus habilitado"
-
-#: ../../godmode/users/configure_user.php:1308
-#: ../../include/functions_config.php:1640
-msgid "eHorus user"
-msgstr "Usuario de eHorus"
-
-#: ../../godmode/users/configure_user.php:1317
-#: ../../include/functions_config.php:1644
-msgid "eHorus password"
-msgstr "Contraseña de eHorus"
-
-#: ../../godmode/users/configure_user.php:1340
-msgid "User must be created before activating double authentication."
-msgstr "El usuario debe estar creado antes de activar la doble autenticación."
-
-#: ../../godmode/users/configure_user.php:1368
-msgid "Enable agents managment"
-msgstr "Habilitar gestión de agentes"
-
-#: ../../godmode/users/configure_user.php:1376
-msgid "Assigned node"
-msgstr "Nodo asignado"
-
-#: ../../godmode/users/configure_user.php:1376
-msgid "Server where the agents created of this user will be placed"
-msgstr "Servidor donde se ubicarán los agentes creados por este usuario"
-
-#: ../../godmode/users/configure_user.php:1385
-msgid "Enable node access"
-msgstr "Habilitar el acceso al nodo"
-
-#: ../../godmode/users/configure_user.php:1385
-msgid "With this option enabled, the user will can access to nodes console"
-msgstr ""
-"Con esta opción habilitada, el usuario podrá tener acceso a los nodos de la "
-"consola."
-
-#: ../../godmode/users/configure_user.php:1602
-msgid "yes"
-msgstr "sí"
-
-#: ../../godmode/users/configure_user.php:1605
-msgid "no"
-msgstr "no"
-
-#: ../../godmode/users/configure_user.php:1609
-msgid "please select profile and group"
-msgstr "Seleccione un perfil y grupo"
-
-#: ../../godmode/users/configure_user.php:1635
-msgid "Deleting last profile will delete this user"
-msgstr "Eliminar el último perfil eliminará este usuario"
-
-#: ../../godmode/users/configure_user.php:1675
-msgid ""
-"User will be created without profiles assigned and won't be able to log in, "
-"are you sure?"
-msgstr ""
-"El usuario se creará sin perfiles asignados y no podrá identificarse, ¿está "
-"seguro?"
-
-#: ../../godmode/users/configure_profile.php:142
-msgid "Create profile"
-msgstr "Crear perfil"
-
-#: ../../godmode/users/configure_profile.php:147
-msgid "There was a problem loading profile"
-msgstr "Error al cargar el perfil"
-
-#: ../../godmode/users/configure_profile.php:239
-msgid "Update profile"
-msgstr "Actualizar perfil"
-
-#: ../../godmode/users/configure_profile.php:249
-msgid "Update Profile"
-msgstr "Actualizar perfil"
-
-#: ../../godmode/users/configure_profile.php:251
-msgid "Create Profile"
-msgstr "Crear perfil"
-
-#: ../../godmode/users/configure_profile.php:272
-msgid "View agents"
-msgstr "Ver agentes"
-
-#: ../../godmode/users/configure_profile.php:276
-msgid "Disable agents"
-msgstr "Desactivar agentes"
-
-#: ../../godmode/users/configure_profile.php:280
-msgid "Edit agents"
-msgstr "Editar agentes"
-
-#: ../../godmode/users/configure_profile.php:287
-msgid "Edit alerts"
-msgstr "Editar alertas"
-
-#: ../../godmode/users/configure_profile.php:302
-msgid "Edit events"
-msgstr "Editar eventos"
-
-#: ../../godmode/users/configure_profile.php:313
-msgid "View reports"
-msgstr "Ver informes"
-
-#: ../../godmode/users/configure_profile.php:317
-msgid "Edit reports"
-msgstr "Editar informes"
-
-#: ../../godmode/users/configure_profile.php:321
-msgid "Manage reports"
-msgstr "Gestionar informes"
-
-#: ../../godmode/users/configure_profile.php:328
-msgid "View network maps"
-msgstr "Ver mapas de red"
-
-#: ../../godmode/users/configure_profile.php:332
-msgid "Edit network maps"
-msgstr "Editar mapas de red"
-
-#: ../../godmode/users/configure_profile.php:336
-msgid "Manage network maps"
-msgstr "Gestionar mapas de red"
-
-#: ../../godmode/users/configure_profile.php:343
-#: ../../include/functions_menu.php:501
-msgid "View visual console"
-msgstr "Ver consola visual"
-
-#: ../../godmode/users/configure_profile.php:347
-msgid "Edit visual console"
-msgstr "Editar consola visual"
-
-#: ../../godmode/users/configure_profile.php:351
-msgid "Manage visual console"
-msgstr "Gestionar consolas visuales"
-
-#: ../../godmode/users/configure_profile.php:363
-msgid "View NCM data"
-msgstr "Ver datos de NCM"
-
-#: ../../godmode/users/configure_profile.php:367
-msgid "Operate NCM"
-msgstr "Operar NCM"
-
-#: ../../godmode/users/configure_profile.php:371
-msgid "Manage NCM"
-msgstr "Administrar NCM"
-
-#: ../../godmode/users/configure_profile.php:378
-msgid "Manage users"
-msgstr "Gestionar usuarios"
-
-#: ../../godmode/users/configure_profile.php:385
-msgid "Manage database"
-msgstr "Gestionar la base de datos"
-
-#: ../../godmode/users/configure_profile.php:392
-#, php-format
-msgid "%s management"
-msgstr "Gestión %s."
-
-#: ../../godmode/users/user_list.php:250
-#, php-format
-msgid "Users defined on %s"
-msgstr "Usuarios definidos en %s"
-
-#: ../../godmode/users/user_list.php:367
-msgid "There was a problem disabling user"
-msgstr "Error al deshabilitar el usuario"
-
-#: ../../godmode/users/user_list.php:373
-msgid "There was a problem enabling user"
-msgstr "Error al habilitar el usuario"
-
-#: ../../godmode/users/user_list.php:402 ../../godmode/users/user_list.php:406
-#: ../../enterprise/meta/advanced/collections.php:167
-#: ../../enterprise/meta/advanced/collections.php:173
-msgid "Search by username, fullname or email"
-msgstr "Buscar por nombre de usuario, nombre completo o email"
-
-#: ../../godmode/users/user_list.php:451
-#: ../../enterprise/meta/advanced/collections.php:199
-msgid "Users control filter"
-msgstr "Filtro de control de usuarios"
-
-#: ../../godmode/users/user_list.php:484
-msgid "Profile / Group"
-msgstr "Perfil/Grupo"
-
-#: ../../godmode/users/user_list.php:714
-msgid "Other profiles are also assigned."
-msgstr "Otros perfiles también han sido asignados"
-
-#: ../../godmode/users/user_list.php:716
-msgid ""
-"Other profiles you cannot manage are also assigned. These profiles are not "
-"shown. You cannot enable/disable or delete this user."
-msgstr ""
-"Otros perfiles que no puede gestionar también han sido asignados. Estos "
-"perfiles no se muestran. No puede habilitar/deshabilitar o borrar este usuario."
-
-#: ../../godmode/db/db_main.php:74
-msgid "Current database maintenance setup"
-msgstr "Configuración actual del mantenimiento de la BD"
-
-#: ../../godmode/db/db_main.php:80
-msgid "Database setup"
-msgstr "Configuración de la base de datos"
-
-#: ../../godmode/db/db_main.php:84
-msgid "Max. time before compact data"
-msgstr "Máx. días antes de comprimir datos"
-
-#: ../../godmode/db/db_main.php:90
-msgid "Max. time before purge"
-msgstr "Máx. días antes de purga de datos"
-
-#: ../../godmode/db/db_main.php:98 ../../include/class/Diagnostics.class.php:230
-msgid "Database size stats"
-msgstr "Tamaño de estadísticas de la base de datos"
-
-#: ../../godmode/db/db_main.php:108 ../../include/functions_reporting.php:13922
-#: ../../include/class/Diagnostics.class.php:569
-msgid "Total events"
-msgstr "Total de eventos"
-
-#: ../../godmode/db/db_main.php:114
-msgid "Total data items (tagente_datos)"
-msgstr "Total de elementos de datos (tagente_datos)"
-
-#: ../../godmode/db/db_main.php:127
-msgid "Total log4x items (tagente_datos_log4x)"
-msgstr "Total elementos Log4x (tagente_datos_log4x)"
-
-#: ../../godmode/db/db_main.php:140
-msgid "Total data string items (tagente_datos_string)"
-msgstr "Total de elementos de cadenas de datos (tagente_datos_string)"
-
-#: ../../godmode/db/db_main.php:146
-msgid "Total modules configured"
-msgstr "Módulos totales configurados"
-
-#: ../../godmode/db/db_main.php:154
-msgid "Total agent access records"
-msgstr "Total de registros de acceso del agente"
-
-#: ../../godmode/db/db_main.php:166
-msgid "Database sanity"
-msgstr "Estado de la BD"
-
-#: ../../godmode/db/db_main.php:170
-msgid "Total uknown agents"
-msgstr "Total de agentes desconocidos"
-
-#: ../../godmode/db/db_main.php:176
-msgid "Total non-init modules"
-msgstr "Total de módulos no iniciados"
-
-#: ../../godmode/db/db_main.php:185
-msgid "Last time on DB maintance"
-msgstr "Última vez en mantenimiento de base de datos"
-
-#: ../../godmode/db/db_main.php:208
-#, php-format
-msgid ""
-"Please make sure your %s Server settings are correct and that the database "
-"maintenance daemon is running. It's very important to keep your database up to "
-"date in order to get the best performance and results from %s."
-msgstr ""
-"Asegúrese de que la configuración del servidor de %s es correcta y que el "
-"demonio de mantenimiento de la base de datos está en ejecución. Es muy "
-"importante tener la base de datos actualizada para que el funcionamiento y los "
-"resultados de %s sean óptimos."
-
-#: ../../godmode/module_library/module_library_view.php:68
-msgid "Main view"
-msgstr "Vista principal"
-
-#: ../../godmode/module_library/module_library_view.php:147
-msgid "View all categories"
-msgstr "Ver todas las categorías"
-
-#: ../../godmode/module_library/module_library_view.php:158
-msgid "More details"
-msgstr "Más detalles"
-
-#: ../../godmode/module_library/module_library_view.php:160
-msgid "View in Module Library"
-msgstr "Ver en Biblioteca de módulos"
-
-#: ../../godmode/module_library/module_library_view.php:161
-msgid "No module found"
-msgstr "No se ha encontrado el módulo"
-
-#: ../../godmode/module_library/module_library_view.php:162
-#: ../../enterprise/godmode/setup/setup_module_library.php:69
-msgid "Problem with authentication. Check your internet connection"
-msgstr "Problema de autenticación. Compruebe su conexión a Internet."
-
-#: ../../godmode/module_library/module_library_view.php:163
-#: ../../enterprise/godmode/setup/setup_module_library.php:68
-#: ../../enterprise/godmode/wizards/Cloud.class.php:381
-msgid "Invalid username or password"
-msgstr "Usuario o contraseña no válidos"
-
-#: ../../godmode/module_library/module_library_view.php:164
-msgid "Error loading Module Library"
-msgstr "Error al cargar la Biblioteca de módulos"
-
-#: ../../godmode/module_library/module_library_view.php:165
-msgid "Error loading category"
-msgstr "Error al cargar la categoría"
-
-#: ../../godmode/module_library/module_library_view.php:166
-msgid "Error loading categories"
-msgstr "Error al cargar las categorías"
-
-#: ../../godmode/module_library/module_library_view.php:167
-msgid "There is no such category"
-msgstr "La categoría no existe"
-
-#: ../../godmode/module_library/module_library_view.php:168
-msgid "Error loading results"
-msgstr "Error al cargar los resultados"
-
-#: ../../godmode/events/events.php:100
-#: ../../enterprise/meta/event/custom_events.php:79
-#: ../../include/ajax/events.php:1544
-msgid "Responses"
-msgstr "Respuestas"
-
-#: ../../godmode/events/event_responses.php:51
-msgid "Response added succesfully"
-msgstr "Respuesta añadida correctamente"
-
-#: ../../godmode/events/event_responses.php:53
-msgid "Response cannot be added"
-msgstr "La respuesta no se puede añadir."
-
-#: ../../godmode/events/event_responses.php:77
-msgid "Response updated succesfully"
-msgstr "Repuesta actualizada correctamente"
-
-#: ../../godmode/events/event_responses.php:79
-msgid "Response cannot be updated"
-msgstr "La respuesta no se puede actualizar."
-
-#: ../../godmode/events/event_responses.php:89
-msgid "Response deleted succesfully"
-msgstr "Respuesta eliminada correctamente"
-
-#: ../../godmode/events/event_responses.php:91
-msgid "Response cannot be deleted"
-msgstr "La respuesta no se puede eliminar."
-
-#: ../../godmode/events/custom_events.php:74
-#: ../../enterprise/meta/event/custom_events.php:207
-msgid "Show event fields"
-msgstr "Mostrar campos de eventos"
-
-#: ../../godmode/events/custom_events.php:76
-msgid "Load the fields from previous events"
-msgstr "Cargar los archivos de eventos previos"
-
-#: ../../godmode/events/custom_events.php:76
-msgid "Event fields will be loaded. Do you want to continue?"
-msgstr "Se cargarán los archivos de eventos. ¿Deseas continuar?"
-
-#: ../../godmode/events/custom_events.php:94
-#: ../../include/functions_events.php:230
-msgid "Event Id"
-msgstr "Id de evento"
-
-#: ../../godmode/events/custom_events.php:97
-msgid "Agent Name"
-msgstr "Nombre de agente"
-
-#: ../../godmode/events/custom_events.php:98
-#: ../../include/functions_events.php:312
-msgid "Agent IP"
-msgstr "IP del agente"
-
-#: ../../godmode/events/custom_events.php:110
-#: ../../include/functions_events.php:278
-msgid "Extra Id"
-msgstr "ID extra"
-
-#: ../../godmode/events/custom_events.php:114
-#: ../../include/functions_events.php:290
-msgid "Server Name"
-msgstr "Nombre del servidor"
-
-#: ../../godmode/events/custom_events.php:117
-#: ../../include/functions_events.php:308
-msgid "Severity mini"
-msgstr "Prioridad baja"
-
-#: ../../godmode/events/custom_events.php:118
-#: ../../include/functions_events.php:299 ../../include/functions_events.php:5162
-msgid "Module custom ID"
-msgstr "ID personalizada de mádulo"
-
-#: ../../godmode/events/event_responses.editor.php:73
-msgid "Edit event responses"
-msgstr "Editar respuestas de eventos"
-
-#: ../../godmode/events/event_responses.editor.php:123
-#: ../../enterprise/tools/ipam/ipam_editor.php:191
-#: ../../enterprise/tools/ipam/ipam_list.php:97
-#: ../../enterprise/tools/ipam/ipam_list.php:588
-#: ../../enterprise/include/functions_ipam.php:1365
-#: ../../enterprise/include/functions_ipam.php:1979
-msgid "Location"
-msgstr "Ubicación"
-
-#: ../../godmode/events/event_responses.editor.php:123
-msgid "For Command type Modal Window mode is enforced"
-msgstr "Para tipo comando, se aplica el modo ventana modal"
-
-#: ../../godmode/events/event_responses.editor.php:125
-msgid "Modal window"
-msgstr "Ventana modal"
-
-#: ../../godmode/events/event_responses.editor.php:126
-msgid "New window"
-msgstr "Nueva ventana"
-
-#: ../../godmode/events/event_responses.editor.php:175
-#: ../../include/functions_snmp_browser.php:766
-#: ../../include/class/AgentWizard.class.php:541
-msgid "Local console"
-msgstr "Consola local"
-
-#: ../../godmode/events/event_responses.editor.php:192
-#: ../../include/class/AgentWizard.class.php:688
-msgid "Server to execute command"
-msgstr "Servidor para ejecutar el comando"
-
-#: ../../godmode/events/event_responses.editor.php:198
-msgid "Command timeout (s)"
-msgstr "Límite(s) de tiempo del comando"
-
-#: ../../godmode/events/event_responses.editor.php:204
-msgid "Display command"
-msgstr "Mostrar comando"
-
-#: ../../godmode/events/event_responses.editor.php:204
-msgid ""
-"If enabled the command will be displayed to any user that can execute this "
-"event response"
-msgstr ""
-"Si está habilitado, el comando se mostrará a cualquier usuario que pueda "
-"ejecutar esta respuesta de evento"
-
-#: ../../godmode/events/event_edit_filter.php:249
-msgid "Update Filter"
-msgstr "Actualizar el filtro"
-
-#: ../../godmode/events/event_edit_filter.php:251
-msgid "Create Filter"
-msgstr "Crear filtro"
-
-#: ../../godmode/events/event_edit_filter.php:264
-msgid "Save in group"
-msgstr "Guardar en grupo"
-
-#: ../../godmode/events/event_edit_filter.php:264
-msgid ""
-"This group will be use to restrict the visibility of this filter with ACLs"
-msgstr ""
-"Este grupo se usará para restringir la visibilidad de este filtro con ACLs."
-
-#: ../../godmode/events/event_edit_filter.php:414
-msgid "Choose between the users who have validated an event. "
-msgstr "Escoge entre los usuarios que tienen validado un evento. "
-
-#: ../../godmode/events/event_edit_filter.php:636
-msgid "Custom data filter type"
-msgstr "Tipo de filtro de datos personalizado"
-
-#: ../../godmode/events/event_edit_filter.php:639
-msgid "Filter custom data by name field"
-msgstr "Filtrar datos personalizados por campo de nombre"
-
-#: ../../godmode/events/event_edit_filter.php:640
-msgid "Filter custom data by value field"
-msgstr "Filtrar datos personalizados por campo de valor"
-
-#: ../../godmode/events/event_edit_filter.php:654
-msgid "Id souce event"
-msgstr "Evento de origen de ID"
-
-#: ../../godmode/events/event_responses.list.php:32
-msgid "No responses found"
-msgstr "No se encontraron respuestas"
-
-#: ../../godmode/events/event_responses.list.php:92
-msgid "Create response"
-msgstr "Crear respuesta"
-
-#: ../../godmode/wizards/HostDevices.class.php:152
-msgid "Net Scan"
-msgstr "Net Scan"
-
-#: ../../godmode/wizards/HostDevices.class.php:159
-#: ../../enterprise/godmode/menu.php:159
-#: ../../enterprise/include/class/CSVImportAgents.class.php:114
-msgid "Import CSV"
-msgstr "Importar CSV"
-
-#: ../../godmode/wizards/HostDevices.class.php:165
-#: ../../godmode/wizards/DiscoveryTaskList.class.php:823
-#: ../../enterprise/godmode/menu.php:163
-#: ../../enterprise/include/class/DeploymentCenter.class.php:613
-msgid "Agent deployment"
-msgstr "Despliegue de agentes"
-
-#: ../../godmode/wizards/HostDevices.class.php:172
-msgid "Custom NetScan"
-msgstr "NetScan personalizado"
-
-#: ../../godmode/wizards/HostDevices.class.php:180
-msgid "Manage NetScan scripts"
-msgstr "Administrar guiones de NetScan"
-
-#: ../../godmode/wizards/HostDevices.class.php:196
-#: ../../enterprise/include/class/CSVImportAgents.class.php:98
-#: ../../enterprise/include/class/DeploymentCenter.class.php:594
-#: ../../include/class/ManageNetScanScripts.class.php:104
-#: ../../include/class/CustomNetScan.class.php:352
-msgid "Host & Devices"
-msgstr "Host y dispositivos"
-
-#: ../../godmode/wizards/HostDevices.class.php:325
-#, php-format
-msgid "Invalid mimetype for csv file: %s"
-msgstr "Mimetype no válido para el archivo CSV: %s"
-
-#: ../../godmode/wizards/HostDevices.class.php:348
-#, php-format
-msgid "Invalid content readed from csv file: %s"
-msgstr "Lector de contenido del archivo CSV no válido: %s"
-
-#: ../../godmode/wizards/HostDevices.class.php:391
-msgid ""
-"This network scan task has been already defined. Please edit it or create a "
-"new one."
-msgstr ""
-"Esta tarea de escaneo de red ya ha sido definida, Edítela o cree una nueva."
-
-#: ../../godmode/wizards/HostDevices.class.php:412
-#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:139
-#: ../../enterprise/include/class/MySQL.app.php:196
-#: ../../enterprise/include/class/SAP.app.php:175
-#: ../../enterprise/include/class/Azure.cloud.php:420
-#: ../../enterprise/include/class/VMware.app.php:254
-#: ../../enterprise/include/class/Aws.cloud.php:907
-#: ../../enterprise/include/class/DB2.app.php:187
-#: ../../enterprise/include/class/Oracle.app.php:194
-#: ../../enterprise/include/class/Google.cloud.php:423
-#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:193
-#: ../../include/class/CustomNetScan.class.php:158
-msgid "You have no access to edit this task."
-msgstr "No tiene permisos para editar esta tarea."
-
-#: ../../godmode/wizards/HostDevices.class.php:422
-#: ../../enterprise/include/class/MySQL.app.php:206
-#: ../../enterprise/include/class/SAP.app.php:185
-#: ../../enterprise/include/class/VMware.app.php:264
-#: ../../enterprise/include/class/Aws.cloud.php:917
-#: ../../enterprise/include/class/DB2.app.php:197
-#: ../../enterprise/include/class/Aws.S3.php:183
-#: ../../enterprise/include/class/Oracle.app.php:204
-#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:203
-#: ../../include/class/CustomNetScan.class.php:168
-msgid "You must provide a task name."
-msgstr "Añada un nombre a la tarea"
-
-#: ../../godmode/wizards/HostDevices.class.php:427
-#: ../../enterprise/include/class/MySQL.app.php:211
-#: ../../enterprise/include/class/SAP.app.php:190
-#: ../../enterprise/include/class/VMware.app.php:269
-#: ../../enterprise/include/class/Aws.cloud.php:922
-#: ../../enterprise/include/class/DB2.app.php:202
-#: ../../enterprise/include/class/Aws.S3.php:188
-#: ../../enterprise/include/class/Oracle.app.php:209
-#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:208
-#: ../../include/class/CustomNetScan.class.php:173
-msgid "You must select a Discovery Server."
-msgstr "Seleccione un servidor de Discovery"
-
-#: ../../godmode/wizards/HostDevices.class.php:433
-msgid "You must provide a valid network."
-msgstr "Añada una red válida."
-
-#: ../../godmode/wizards/HostDevices.class.php:438
-#: ../../enterprise/include/class/MySQL.app.php:226
-#: ../../enterprise/include/class/SAP.app.php:200
-#: ../../enterprise/include/class/VMware.app.php:279
-#: ../../enterprise/include/class/Aws.cloud.php:927
-#: ../../enterprise/include/class/DB2.app.php:212
-#: ../../enterprise/include/class/Aws.S3.php:193
-#: ../../enterprise/include/class/Oracle.app.php:219
-#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:218
-#: ../../include/class/CustomNetScan.class.php:178
-msgid "You must select a valid group."
-msgstr "Seleccione un grupo válido."
-
-#: ../../godmode/wizards/HostDevices.class.php:483
-#: ../../godmode/wizards/HostDevices.class.php:595
-#: ../../include/class/CustomNetScan.class.php:222
-msgid "Failed to find network scan task."
-msgstr "No se ha encontrado tarea de escaneo de red."
-
-#: ../../godmode/wizards/HostDevices.class.php:696
-#: ../../enterprise/include/class/Aws.cloud.php:471
-msgid "NetScan"
-msgstr "NetScan"
-
-#: ../../godmode/wizards/HostDevices.class.php:700
-#, php-format
-msgid "\"%s\" features"
-msgstr "Funcionalidades \"%s\""
-
-#: ../../godmode/wizards/HostDevices.class.php:728
-#: ../../include/class/CustomNetScan.class.php:403
-msgid "Internal error, please re-run this wizard."
-msgstr "Error interno, vuelva a ejecutar el asistente."
-
-#: ../../godmode/wizards/HostDevices.class.php:799
-#: ../../enterprise/include/class/MySQL.app.php:559
-#: ../../enterprise/include/class/SAP.app.php:514
-#: ../../enterprise/include/class/VMware.app.php:668
-#: ../../enterprise/include/class/Aws.cloud.php:1319
-#: ../../enterprise/include/class/DB2.app.php:537
-#: ../../enterprise/include/class/Aws.S3.php:507
-#: ../../enterprise/include/class/Oracle.app.php:544
-#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:538
-#: ../../include/class/CustomNetScan.class.php:521
-msgid "Manual interval means that it will be executed only On-demand"
-msgstr "Intervalo manual significa que será ejecutado solo bajo demanda."
-
-#: ../../godmode/wizards/HostDevices.class.php:806
-#: ../../enterprise/include/class/MySQL.app.php:566
-#: ../../enterprise/include/class/SAP.app.php:521
-#: ../../enterprise/include/class/VMware.app.php:675
-#: ../../enterprise/include/class/VMware.app.php:887
-#: ../../enterprise/include/class/Aws.cloud.php:1326
-#: ../../enterprise/include/class/DB2.app.php:544
-#: ../../enterprise/include/class/Aws.S3.php:514
-#: ../../enterprise/include/class/Oracle.app.php:551
-#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:545
-#: ../../include/functions_reporting_html.php:2309
-#: ../../include/class/CustomNetScan.class.php:528
-msgid "Defined"
-msgstr "Definido"
-
-#: ../../godmode/wizards/HostDevices.class.php:807
-#: ../../godmode/wizards/DiscoveryTaskList.class.php:712
-#: ../../enterprise/operation/services/services.list.php:275
-#: ../../enterprise/operation/services/services.table_services.php:197
-#: ../../enterprise/tools/ipam/ipam_list.php:670
-#: ../../enterprise/godmode/massive/massive_create_services.php:698
-#: ../../enterprise/godmode/services/services.service.php:650
-#: ../../enterprise/include/class/MySQL.app.php:567
-#: ../../enterprise/include/class/SAP.app.php:522
-#: ../../enterprise/include/class/VMware.app.php:676
-#: ../../enterprise/include/class/Aws.cloud.php:1327
-#: ../../enterprise/include/class/DB2.app.php:545
-#: ../../enterprise/include/class/Aws.S3.php:515
-#: ../../enterprise/include/class/Oracle.app.php:552
-#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:546
-#: ../../enterprise/include/functions_ipam.php:1352
-#: ../../include/class/CustomNetScan.class.php:529
-msgid "Manual"
-msgstr "Manual"
-
-#: ../../godmode/wizards/HostDevices.class.php:813
-#: ../../include/class/CustomNetScan.class.php:545
-msgid "The minimum recomended interval for Recon Task is 5 minutes"
-msgstr "El intervalo mínimo recomendado para Recon Task es de 5 minutos."
-
-#: ../../godmode/wizards/HostDevices.class.php:838
-#: ../../godmode/wizards/DiscoveryTaskList.class.php:588
-#: ../../enterprise/include/class/MySQL.app.php:442
-#: ../../enterprise/include/class/SAP.app.php:469
-#: ../../enterprise/include/class/Azure.cloud.php:771
-#: ../../enterprise/include/class/VMware.app.php:583
-#: ../../enterprise/include/class/Aws.cloud.php:1201
-#: ../../enterprise/include/class/DB2.app.php:437
-#: ../../enterprise/include/class/Aws.S3.php:401
-#: ../../enterprise/include/class/Oracle.app.php:444
-#: ../../enterprise/include/class/Google.cloud.php:759
-#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:439
-#: ../../include/class/CustomNetScan.class.php:446
-msgid "Task name"
-msgstr "Nombre de la tarea"
-
-#: ../../godmode/wizards/HostDevices.class.php:848
-#: ../../enterprise/tools/ipam/ipam_editor.php:163
-#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:431
-#: ../../enterprise/include/class/MySQL.app.php:453
-#: ../../enterprise/include/class/SAP.app.php:481
-#: ../../enterprise/include/class/Azure.cloud.php:781
-#: ../../enterprise/include/class/VMware.app.php:593
-#: ../../enterprise/include/class/Aws.cloud.php:522
-#: ../../enterprise/include/class/Aws.cloud.php:1212
-#: ../../enterprise/include/class/DB2.app.php:448
-#: ../../enterprise/include/class/Aws.S3.php:412
-#: ../../enterprise/include/class/Oracle.app.php:455
-#: ../../enterprise/include/class/Google.cloud.php:769
-#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:450
-#: ../../general/first_task/recon_view.php:22
-#: ../../include/functions_servers.php:595
-#: ../../include/functions_servers.php:1341
-#: ../../include/class/CustomNetScan.class.php:479
-msgid "Discovery server"
-msgstr "Servidor Discovery"
-
-#: ../../godmode/wizards/HostDevices.class.php:849
-#: ../../enterprise/include/class/MySQL.app.php:454
-#: ../../enterprise/include/class/SAP.app.php:482
-#: ../../enterprise/include/class/VMware.app.php:594
-#: ../../enterprise/include/class/Aws.cloud.php:1213
-#: ../../enterprise/include/class/DB2.app.php:449
-#: ../../enterprise/include/class/Aws.S3.php:413
-#: ../../enterprise/include/class/Oracle.app.php:456
-#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:451
-#: ../../include/class/CustomNetScan.class.php:480
-msgid ""
-"You must select a Discovery Server to run the Task, otherwise the Recon Task "
-"will never run"
-msgstr ""
-"Seleccione un servidos de Discovery para ejecutar la tarea, si no la tarea de "
-"reconocimiento no se ejecutará"
-
-#: ../../godmode/wizards/HostDevices.class.php:868
-msgid "Use CSV file definition"
-msgstr "Usar definición del archivo CSV"
-
-#: ../../godmode/wizards/HostDevices.class.php:869
-msgid "Define targets using csv o network definition."
-msgstr "Definir objetivos utilizando la definición de CSV o red."
-
-#: ../../godmode/wizards/HostDevices.class.php:887
-msgid "Networks (csv)"
-msgstr "Redes (CSV)"
-
-#: ../../godmode/wizards/HostDevices.class.php:888
-msgid ""
-"You can upload a CSV file. Each line must contain a network in IP/MASK format. "
-"For instance: 192.168.1.1/32"
-msgstr ""
-"Puede subir un archivo CSV. Cada línea debe contener una red en formato IP/"
-"MASK. Por ejemplo: 192.168.1.1/32"
-
-#: ../../godmode/wizards/HostDevices.class.php:900
-msgid "Networks (current)"
-msgstr "Redes (actual)"
-
-#: ../../godmode/wizards/HostDevices.class.php:901
-msgid "Please upload a new file to overwrite this content."
-msgstr "Sube un nuevo archivo para sobrescribir este contenido."
-
-#: ../../godmode/wizards/HostDevices.class.php:917
-msgid ""
-"You can specify several networks, separated by commas, for example: "
-"192.168.50.0/24,192.168.60.0/24"
-msgstr ""
-"Puedes especificar varias redes, separadas por comas, por ejemplo: "
-"192.168.50.0/24,192.168.60.0/24"
-
-#: ../../godmode/wizards/HostDevices.class.php:1047
-msgid "Filter by opened ports"
-msgstr "Filtrar por puertos abiertos"
-
-#: ../../godmode/wizards/HostDevices.class.php:1049
-msgid ""
-"Targets will be scanned if at least one of defined ports (comma separated) is "
-"open."
-msgstr ""
-"Los objetivos se escanearán si al menos uno de los puertos definidos "
-"(separados por comas) está abierto."
-
-#: ../../godmode/wizards/HostDevices.class.php:1062
-msgid "Auto discover known hardware"
-msgstr "Auto descubrir el hardware conocido"
-
-#: ../../godmode/wizards/HostDevices.class.php:1064
-msgid ""
-"Targets will be monitorized based on its <i>Private Enterprise Number</i>. "
-"Requires SNMP."
-msgstr ""
-"Los objetivos se monitorizarán en base a su <i>Número de empresa privado</i>. "
-"Precisa de SNMP."
-
-#: ../../godmode/wizards/HostDevices.class.php:1079
-msgid "Module <i>Host Alive</i> will be added to discovered agents by default."
-msgstr ""
-"El módulo <i>Host Alive</i> se añadirá a los agentes descubiertos por defecto."
-
-#: ../../godmode/wizards/HostDevices.class.php:1127
-#, php-format
-msgid ""
-"Configured networks could generate %d agents, your license only allows %d, "
-"'review results' is mandatory."
-msgstr ""
-"Las redes configuradas pueden generar %d agentes, su licencia solo permite %d, "
-"'revisar resultados' es obligatorio."
-
-#: ../../godmode/wizards/HostDevices.class.php:1135
-#: ../../godmode/wizards/DiscoveryTaskList.class.php:908
-msgid "Review results"
-msgstr "Revisar resultados"
-
-#: ../../godmode/wizards/HostDevices.class.php:1137
-msgid "Targets must be validated by user before create agents."
-msgstr "El usuario debe validar los objetivos antes de crear agentes"
-
-#: ../../godmode/wizards/HostDevices.class.php:1163
-msgid "Apply autoconfiguration rules"
-msgstr "Aplicar normas de autoconfiguración"
-
-#: ../../godmode/wizards/HostDevices.class.php:1165
-msgid ""
-"System is able to auto configure detected host & devices by applying your "
-"defined configuration rules."
-msgstr ""
-"El sistema puede auto configurar el host y los dispositivos detectados "
-"aplicando las normas de configuración."
-
-#: ../../godmode/wizards/HostDevices.class.php:1181
-msgid "SNMP enabled"
-msgstr "SNMP activado"
-
-#: ../../godmode/wizards/HostDevices.class.php:1223
-msgid "SNMP communities to try with"
-msgstr "Comunidades SNMP con las que probar"
-
-#: ../../godmode/wizards/HostDevices.class.php:1225
-msgid ""
-"You can specify several values, separated by commas, for example: public,"
-"mysecret,1234"
-msgstr ""
-"Puede especificar varios valores, separados por coma, por ejemplo: public,"
-"mysecret,1234"
-
-#: ../../godmode/wizards/HostDevices.class.php:1248
-#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:374
-msgid "Context"
-msgstr "Contexto"
-
-#: ../../godmode/wizards/HostDevices.class.php:1353
-msgid "OS detection"
-msgstr "Detección de SO"
-
-#: ../../godmode/wizards/HostDevices.class.php:1365
-msgid "Name resolution"
-msgstr "Resolución de nombres"
-
-#: ../../godmode/wizards/HostDevices.class.php:1376
-msgid "Parent detection"
-msgstr "Detección de padres"
-
-#: ../../godmode/wizards/HostDevices.class.php:1387
-msgid "Parent recursion"
-msgstr "Recursión del padre"
-
-#: ../../godmode/wizards/HostDevices.class.php:1398
-msgid "VLAN enabled"
-msgstr "VLAN habilitada"
-
-#: ../../godmode/wizards/HostDevices.class.php:1409
-msgid "WMI enabled"
-msgstr "WMI habilitado"
-
-#: ../../godmode/wizards/HostDevices.class.php:1434
-#: ../../godmode/wizards/HostDevices.class.php:1437
-#: ../../enterprise/include/class/SAP.app.php:604
-#: ../../enterprise/include/class/SAP.app.php:607
-#: ../../enterprise/include/class/DeploymentCenter.class.php:1135
-#: ../../enterprise/include/class/DeploymentCenter.class.php:1138
-#: ../../enterprise/include/class/DeploymentCenter.class.php:1265
-#: ../../enterprise/include/class/DeploymentCenter.class.php:1268
-msgid "No credentials available"
-msgstr "No hay credenciales disponibles"
-
-#: ../../godmode/wizards/HostDevices.class.php:1447
-#: ../../enterprise/include/class/DeploymentCenter.class.php:1178
-msgid "Credentials to try with"
-msgstr "Credenciales con los que probar"
-
-#: ../../godmode/wizards/HostDevices.class.php:1470
-#: ../../enterprise/include/class/DeploymentCenter.class.php:1189
-#: ../../enterprise/include/class/DeploymentCenter.class.php:1316
-#: ../../enterprise/include/class/DeploymentCenter.class.php:1326
-#: ../../enterprise/meta/include/functions_wizard_meta.php:969
-#: ../../enterprise/meta/include/functions_wizard_meta.php:1052
-#: ../../extensions/api_checker.php:195
-msgid "Credentials"
-msgstr "Credenciales"
-
-#: ../../godmode/wizards/HostDevices.class.php:1589
-#: ../../enterprise/include/class/MySQL.app.php:944
-#: ../../enterprise/include/class/SAP.app.php:924
-#: ../../enterprise/include/class/Azure.cloud.php:990
-#: ../../enterprise/include/class/VMware.app.php:1014
-#: ../../enterprise/include/class/Aws.cloud.php:1590
-#: ../../enterprise/include/class/DB2.app.php:868
-#: ../../enterprise/include/class/Aws.S3.php:658
-#: ../../enterprise/include/class/Oracle.app.php:977
-#: ../../enterprise/include/class/Google.cloud.php:952
-#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:821
-#: ../../include/class/CustomNetScan.class.php:758
-msgid "Task configured."
-msgstr "Tarea configurada."
-
-#: ../../godmode/wizards/HostDevices.class.php:1593
-#: ../../enterprise/include/class/MySQL.app.php:948
-#: ../../enterprise/include/class/SAP.app.php:928
-#: ../../enterprise/include/class/Azure.cloud.php:994
-#: ../../enterprise/include/class/VMware.app.php:1018
-#: ../../enterprise/include/class/DB2.app.php:872
-#: ../../enterprise/include/class/Oracle.app.php:981
-#: ../../enterprise/include/class/Google.cloud.php:956
-#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:825
-#: ../../include/class/CustomNetScan.class.php:762
-msgid "Wizard failed. Cannot configure task."
-msgstr "Error del asistente. No puede configurar la tarea."
-
-#: ../../godmode/wizards/DiscoveryTaskList.class.php:254
-msgid "Task successfully deleted"
-msgstr "Tarea eliminada"
-
-#: ../../godmode/wizards/DiscoveryTaskList.class.php:361
-#: ../../godmode/wizards/DiscoveryTaskList.class.php:488
-msgid "Task successfully enabled"
-msgstr "Tarea habilitada correctamente"
-
-#: ../../godmode/wizards/DiscoveryTaskList.class.php:361
-msgid "Task succesfully disabled"
-msgstr "Tarea deshabilitada con éxito"
-
-#: ../../godmode/wizards/DiscoveryTaskList.class.php:401
-msgid "Console Task successfully deleted"
-msgstr "Tarea de la consola eliminada"
-
-#: ../../godmode/wizards/DiscoveryTaskList.class.php:443
-msgid "Task successfully disabled"
-msgstr "Tarea deshabilitada correctamente"
-
-#: ../../godmode/wizards/DiscoveryTaskList.class.php:520
-msgid "Discovery Server is disabled"
-msgstr "El servidor discovery está deshabilitado"
-
-#: ../../godmode/wizards/DiscoveryTaskList.class.php:591
-#: ../../enterprise/godmode/setup/setup_metaconsole.php:198
-#: ../../enterprise/godmode/setup/setup_metaconsole.php:273
-#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:69
-#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:252
-#: ../../enterprise/meta/include/functions_events_meta.php:130
-#: ../../include/functions_events.php:209
-msgid "Server name"
-msgstr "Nombre del servidor"
-
-#: ../../godmode/wizards/DiscoveryTaskList.class.php:603
-msgid "Task type"
-msgstr "Tipo de tarea"
-
-#: ../../godmode/wizards/DiscoveryTaskList.class.php:606
-#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:702
-#: ../../enterprise/godmode/policies/policy_queue.php:635
-#: ../../enterprise/include/class/Omnishell.class.php:401
-#: ../../enterprise/include/functions_ipam.php:1407
-#: ../../enterprise/include/functions_ipam.php:1414
-#: ../../enterprise/include/functions_ipam.php:1419
-#: ../../enterprise/meta/advanced/policymanager.queue.php:260
-msgid "Progress"
-msgstr "Progreso"
-
-#: ../../godmode/wizards/DiscoveryTaskList.class.php:682
-msgid "This task has not been completely defined, please edit it"
-msgstr "La tarea no se ha definido por completo, edítela."
-
-#: ../../godmode/wizards/DiscoveryTaskList.class.php:732
-msgid "Discovery Cloud Azure Compute"
-msgstr "Discovery Cloud Azure Compute"
-
-#: ../../godmode/wizards/DiscoveryTaskList.class.php:736
-msgid "Cloud.Azure.Compute"
-msgstr "Cloud.Azure.Compute"
-
-#: ../../godmode/wizards/DiscoveryTaskList.class.php:745
-msgid "Discovery Cloud AWS EC2"
-msgstr "Discovery Cloud AWS EC2"
-
-#: ../../godmode/wizards/DiscoveryTaskList.class.php:749
-msgid "Cloud.AWS.EC2"
-msgstr "Cloud.AWS.EC2"
-
-#: ../../godmode/wizards/DiscoveryTaskList.class.php:758
-msgid "Discovery Cloud RDS"
-msgstr "Discovery Cloud RDS"
-
-#: ../../godmode/wizards/DiscoveryTaskList.class.php:762
-msgid "Discovery.Cloud.Aws.RDS"
-msgstr "Discovery.Cloud.Aws.RDS"
-
-#: ../../godmode/wizards/DiscoveryTaskList.class.php:771
-msgid "Discovery Cloud S3"
-msgstr "Discovery Cloud S3"
-
-#: ../../godmode/wizards/DiscoveryTaskList.class.php:775
-msgid "Discovery.Cloud.Aws.S3"
-msgstr "Discovery.Cloud.Aws.S3"
-
-#: ../../godmode/wizards/DiscoveryTaskList.class.php:784
-msgid "Discovery Applications MySQL"
-msgstr "Aplicaciones MySQL de Discovery"
-
-#: ../../godmode/wizards/DiscoveryTaskList.class.php:788
-msgid "Discovery.App.MySQL"
-msgstr "Discovery.App.MySQL"
-
-#: ../../godmode/wizards/DiscoveryTaskList.class.php:797
-msgid "Discovery Applications Oracle"
-msgstr "Aplicaciones de Discovery de Oracle"
-
-#: ../../godmode/wizards/DiscoveryTaskList.class.php:801
-msgid "Discovery.App.Oracle"
-msgstr "Discovery.App.Oracle"
-
-#: ../../godmode/wizards/DiscoveryTaskList.class.php:810
-msgid "Discovery Applications DB2"
-msgstr "Aplicaciones DB2 de discovery"
-
-#: ../../godmode/wizards/DiscoveryTaskList.class.php:814
-msgid "Discovery.App.DB2"
-msgstr "Discovery.App.DB2"
-
-#: ../../godmode/wizards/DiscoveryTaskList.class.php:825
-msgid "Discovery.Agent.Deployment"
-msgstr "Discovery.Agent.Deployment"
-
-#: ../../godmode/wizards/DiscoveryTaskList.class.php:833
-msgid "Discovery Applications Microsoft SQL Server"
-msgstr "Servidor Microsoft SQL de aplicaciones Discovery"
-
-#: ../../godmode/wizards/DiscoveryTaskList.class.php:835
-msgid "Discovery.App.Microsoft SQL Server"
-msgstr "Discovery.App.Microsoft SQL Server"
-
-#: ../../godmode/wizards/DiscoveryTaskList.class.php:846
-msgid "Discovery NetScan"
-msgstr "Discovery NetScan"
-
-#: ../../godmode/wizards/DiscoveryTaskList.class.php:850
-msgid "Discovery.NetScan"
-msgstr "Discovery.NetScan"
-
-#: ../../godmode/wizards/DiscoveryTaskList.class.php:896
-msgid "Not executed yet"
-msgstr "Aún no ejecutado"
-
-#: ../../godmode/wizards/DiscoveryTaskList.class.php:920
-msgid "View summary"
-msgstr "Ver el resumen"
-
-#: ../../godmode/wizards/DiscoveryTaskList.class.php:941
-msgid "View map"
-msgstr "Ver el mapa"
-
-#: ../../godmode/wizards/DiscoveryTaskList.class.php:965
-#: ../../godmode/wizards/DiscoveryTaskList.class.php:991
-msgid "Edit task"
-msgstr "Editar tarea"
-
-#: ../../godmode/wizards/DiscoveryTaskList.class.php:975
-#: ../../godmode/wizards/DiscoveryTaskList.class.php:1001
-msgid "Delete task"
-msgstr "Eliminar tarea"
-
-#: ../../godmode/wizards/DiscoveryTaskList.class.php:1014
-msgid "enable task"
-msgstr "habilitar tarea"
-
-#: ../../godmode/wizards/DiscoveryTaskList.class.php:1024
-#: ../../enterprise/include/functions_tasklist.php:671
-#: ../../include/functions_cron.php:943
-msgid "Disable task"
-msgstr "Deshabilitar tarea"
-
-#: ../../godmode/wizards/DiscoveryTaskList.class.php:1043
-msgid "has no discovery tasks assigned"
-msgstr "No tiene tareas de discovery asignadas"
-
-#: ../../godmode/wizards/DiscoveryTaskList.class.php:1050
-msgid "Server Tasks"
-msgstr "Tareas de servidor"
-
-#: ../../godmode/wizards/DiscoveryTaskList.class.php:1197
-msgid "Overall Progress"
-msgstr "Progreso total"
-
-#: ../../godmode/wizards/DiscoveryTaskList.class.php:1216
-msgid "Scanning network"
-msgstr "Escaneando red"
-
-#: ../../godmode/wizards/DiscoveryTaskList.class.php:1220
-msgid "Checking"
-msgstr "Comprobando"
-
-#: ../../godmode/wizards/DiscoveryTaskList.class.php:1224
-msgid "Finding AFT connectivity"
-msgstr "Buscando conexión AFT"
-
-#: ../../godmode/wizards/DiscoveryTaskList.class.php:1228
-msgid "Finding traceroute connectivity"
-msgstr "Buscando conexión traceroute"
-
-#: ../../godmode/wizards/DiscoveryTaskList.class.php:1232
-msgid "Finding gateway connectivity"
-msgstr "Buscando conexión de entrada"
-
-#: ../../godmode/wizards/DiscoveryTaskList.class.php:1236
-msgid "Searching for devices..."
-msgstr "Buscando dispositivos..."
-
-#: ../../godmode/wizards/DiscoveryTaskList.class.php:1240
-msgid "Analyzing application..."
-msgstr "Analizando aplicación..."
-
-#: ../../godmode/wizards/DiscoveryTaskList.class.php:1244
-msgid "Executing custom queries..."
-msgstr "Ejecutando consultas personalizadas..."
-
-#: ../../godmode/wizards/DiscoveryTaskList.class.php:1248
-msgid "Testing modules..."
-msgstr "Probando módulos..."
-
-#: ../../godmode/wizards/DiscoveryTaskList.class.php:1252
-msgid "Processing results..."
-msgstr "Procesando resultados..."
-
-#: ../../godmode/wizards/DiscoveryTaskList.class.php:1256
-msgid "Processing..."
-msgstr "Procesando…"
-
-#: ../../godmode/wizards/DiscoveryTaskList.class.php:1369
-msgid "Host&devices total"
-msgstr "Total Host&devices"
-
-#: ../../godmode/wizards/DiscoveryTaskList.class.php:1374
-msgid "Agents monitored"
-msgstr "Agentes monitorizados"
-
-#: ../../godmode/wizards/DiscoveryTaskList.class.php:1379
-msgid "Agents pending"
-msgstr "Agentes pendientes"
-
-#: ../../godmode/wizards/DiscoveryTaskList.class.php:1386
-msgid "Hosts discovered"
-msgstr "Hosts encontrados"
-
-#: ../../godmode/wizards/DiscoveryTaskList.class.php:1391
-#: ../../enterprise/tools/ipam/ipam_network.php:414
-#: ../../enterprise/include/functions_reporting.php:2318
-#: ../../enterprise/include/functions_ipam.php:2034
-#: ../../enterprise/include/functions_reporting_csv.php:1936
-msgid "Alive"
-msgstr "Activo"
-
-#: ../../godmode/wizards/DiscoveryTaskList.class.php:1396
-#: ../../enterprise/tools/ipam/ipam_network.php:423
-msgid "Not alive"
-msgstr "Inactivo"
-
-#: ../../godmode/wizards/DiscoveryTaskList.class.php:1402
-msgid "Responding SNMP"
-msgstr "SNMP disponible"
-
-#: ../../godmode/wizards/DiscoveryTaskList.class.php:1407
-msgid "Responding WMI"
-msgstr "WMI disponible"
-
-#: ../../godmode/wizards/DiscoveryTaskList.class.php:1452
-msgid "Task completed."
-msgstr "Tarea finalizada."
-
-#: ../../godmode/wizards/DiscoveryTaskList.class.php:1454
-msgid "This task has never executed"
-msgstr "Esta tarea nunca se ha ejecutado"
-
-#: ../../godmode/wizards/DiscoveryTaskList.class.php:1466
-msgid "Task queued, please wait."
-msgstr "Tarea encolada, espere."
-
-#: ../../godmode/wizards/DiscoveryTaskList.class.php:1510
-msgid ""
-"Please ensure instances or regions are being monitorized and 'scan and general "
-"monitoring' is enabled."
-msgstr ""
-"Asegúrese de que las instancias o las regiones están siendo monitorizadas y "
-"'escaneo y monitorización general' está habilitado."
-
-#: ../../godmode/wizards/DiscoveryTaskList.class.php:1528
-#: ../../godmode/wizards/DiscoveryTaskList.class.php:1670
-msgid "Invalid task"
-msgstr "Tarea no válida"
-
-#: ../../godmode/wizards/DiscoveryTaskList.class.php:1627
-msgid "Please select devices to be monitored"
-msgstr "Seleccione los dispositivos que desee monitorizar"
-
-#: ../../godmode/wizards/DiscoveryTaskList.class.php:1630
-msgid "select all"
-msgstr "seleccionar todo"
-
-#: ../../godmode/wizards/DiscoveryTaskList.class.php:1633
-msgid "deselect all"
-msgstr "deseleccionar todo"
-
-#: ../../godmode/wizards/DiscoveryTaskList.class.php:1636
-msgid "expand all"
-msgstr "expandir todo"
-
-#: ../../godmode/wizards/DiscoveryTaskList.class.php:1639
-msgid "collapse all"
-msgstr "plegar todo"
-
-#: ../../godmode/wizards/DiscoveryTaskList.class.php:1653
-msgid "No devices found in temporary resources, please re-launch."
-msgstr ""
-"No se han encontrado dispositivos en los recursos temporales, por favor vuelva "
-"a lanzarlo."
-
-#: ../../godmode/wizards/DiscoveryTaskList.class.php:1720
-#, php-format
-msgid "Your selection exceeds the agents available on your license. Limit %d"
-msgstr ""
-"La selección excede el número de agentes disponibles en la licencia. Límite %d"
-
-#: ../../godmode/wizards/DiscoveryTaskList.class.php:1744
-#: ../../godmode/wizards/DiscoveryTaskList.class.php:1763
-msgid "Removed"
-msgstr "Eliminado"
-
-#: ../../godmode/wizards/DiscoveryTaskList.class.php:1800
-msgid "No changes. Re-Scheduled"
-msgstr "No hay cambios. Reprogramado"
-
-#: ../../godmode/wizards/DiscoveryTaskList.class.php:1802
-msgid "Scheduled for creation"
-msgstr "Programa de creación"
-
-#: ../../godmode/wizards/DiscoveryTaskList.class.php:1829
-msgid "Cancelled"
-msgstr "Cancelado"
-
-#: ../../godmode/wizards/DiscoveryTaskList.class.php:1830
-msgid "Server has been restarted while executing this task, please retry."
-msgstr ""
-"El servidor se ha reiniciado mientras ejecutaba esta tarea, vuelva a "
-"intentarlo."
-
-#: ../../godmode/wizards/DiscoveryTaskList.class.php:1837
-#: ../../godmode/wizards/DiscoveryTaskList.class.php:1843
-#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:119
-#: ../../include/help/clippy/operation_agentes_ver_agente.php:40
-msgid "Done"
-msgstr "Hecho"
-
-#: ../../godmode/wizards/DiscoveryTaskList.class.php:1841
-#: ../../godmode/wizards/DiscoveryTaskList.class.php:1858
-msgid "Not started"
-msgstr "No iniciado"
-
-#: ../../godmode/wizards/DiscoveryTaskList.class.php:1845
-#: ../../enterprise/include/class/Omnishell.class.php:363
-#: ../../enterprise/include/class/Omnishell.class.php:1087
-#: ../../enterprise/include/class/DatabaseHA.class.php:214
-msgid "Pending"
-msgstr "Pendiente"
-
-#: ../../godmode/wizards/DiscoveryTaskList.class.php:1861
-#: ../../enterprise/include/class/DatabaseHA.class.php:217
-#: ../../enterprise/meta/monitoring/custom_fields_view.php:347
-#: ../../enterprise/meta/monitoring/custom_fields_view.php:349
-#: ../../include/functions_ui.php:3414
-msgid "Processing"
-msgstr "Procesando"
-
-#: ../../godmode/wizards/DiscoveryTaskList.class.php:1863
-msgid "Searching"
-msgstr "Buscando"
-
-#: ../../godmode/modules/manage_network_components.php:290
-#: ../../godmode/modules/manage_nc_groups.php:40
-#: ../../godmode/modules/module_list.php:29
-#: ../../godmode/modules/manage_network_templates_form.php:32
-#: ../../godmode/modules/manage_network_templates.php:39
-#: ../../enterprise/godmode/modules/local_components.php:157
-#: ../../enterprise/godmode/modules/manage_inventory_modules.php:45
-#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:37
-#: ../../enterprise/meta/general/main_header.php:327
-#: ../../enterprise/meta/general/main_header.php:423
-#: ../../enterprise/meta/general/main_menu.php:440
-#: ../../enterprise/meta/general/main_menu.php:540
-msgid "Module management"
-msgstr "Gestión de módulos"
-
-#: ../../godmode/modules/manage_network_components.php:290
-msgid "Remote component management"
-msgstr "Gestión remota de componentes"
-
-#: ../../godmode/modules/manage_network_components.php:313
-#, php-format
-msgid ""
-"This node is configured with centralized mode. All remote components are read "
-"only. Go to %s to manage them."
-msgstr ""
-"Este nodo esta configurado con el modo centralizado. Toda la información de "
-"las políticas está en modo lectura. Vaya a %s para administrarlo."
-
-#: ../../godmode/modules/manage_network_components.php:424
-msgid "Could not be created because the component exists"
-msgstr "No se ha podido crear porque el componente existe"
-
-#: ../../godmode/modules/manage_network_components.php:438
-#: ../../enterprise/godmode/modules/local_components.php:326
-#: ../../include/class/ManageNetScanScripts.class.php:228
-msgid "Created successfully"
-msgstr "Creado correctamente"
-
-#: ../../godmode/modules/manage_network_components.php:534
-#: ../../enterprise/godmode/modules/local_components.php:401
-#: ../../include/class/ManageNetScanScripts.class.php:315
-msgid "Updated successfully"
-msgstr "Actualizado correctamente"
-
-#: ../../godmode/modules/manage_network_components.php:578
-#: ../../godmode/modules/manage_nc_groups.php:194
-#: ../../godmode/modules/manage_network_templates.php:114
-#: ../../enterprise/godmode/modules/local_components.php:443
-#: ../../enterprise/godmode/modules/manage_inventory_modules.php:217
-#: ../../enterprise/godmode/modules/manage_inventory_modules.php:250
-msgid "Successfully multiple deleted"
-msgstr "Supresión múltiple correcta"
-
-#: ../../godmode/modules/manage_network_components.php:579
-#: ../../godmode/modules/manage_nc_groups.php:195
-#: ../../godmode/modules/manage_network_templates.php:115
-#: ../../enterprise/godmode/modules/local_components.php:444
-#: ../../enterprise/godmode/modules/manage_inventory_modules.php:218
-#: ../../enterprise/godmode/modules/manage_inventory_modules.php:251
-msgid "Not deleted. Error deleting multiple data"
-msgstr "No borrado. Error al borrar datos múltiples."
-
-#: ../../godmode/modules/manage_network_components.php:659
-#: ../../enterprise/godmode/modules/local_components.php:547
-#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2808
-msgid "Free Search"
-msgstr "Búsqueda libre"
-
-#: ../../godmode/modules/manage_network_components.php:660
-msgid "Search by name, description, tcp send or tcp rcv, list matches."
-msgstr ""
-"Búsqueda por nombre, descripción, envío TCP o TCP RCV, lista las coincidencias."
-
-#: ../../godmode/modules/manage_network_components.php:753
-msgid "Max/Min"
-msgstr "Máx/Mín"
-
-#: ../../godmode/modules/manage_network_components.php:804
-#: ../../include/class/ModuleTemplates.class.php:1234
-msgid "Network module"
-msgstr "Módulo de red"
-
-#: ../../godmode/modules/manage_network_components.php:815
-#: ../../include/class/ModuleTemplates.class.php:1245
-msgid "WMI module"
-msgstr "Módulo WMI"
-
-#: ../../godmode/modules/manage_network_components.php:826
-#: ../../include/class/ModuleTemplates.class.php:1256
-msgid "Plug-in module"
-msgstr "Módulo de plugin"
-
-#: ../../godmode/modules/manage_network_components.php:837
-msgid "Wizard module"
-msgstr "Módulo de wizard"
-
-#: ../../godmode/modules/manage_network_components.php:910
-msgid "There are no defined network components"
-msgstr "No hay componentes de red definidos"
-
-#: ../../godmode/modules/manage_network_components.php:921
-msgid "Create a new network component"
-msgstr "Crear un componente de red nuevo"
-
-#: ../../godmode/modules/manage_network_components.php:922
-msgid "Create a new plugin component"
-msgstr "Crear un componente de plugin nuevo"
-
-#: ../../godmode/modules/manage_network_components.php:923
-msgid "Create a new WMI component"
-msgstr "Crear un componente WMI nuevo"
-
-#: ../../godmode/modules/manage_network_components.php:924
-msgid "Create a new wizard component"
-msgstr "Crear un nuevo componente de wizard"
-
-#: ../../godmode/modules/manage_network_components_form_wizard.php:92
-msgid "Add a macro oid"
-msgstr "Añadir una oid de macro"
-
-#: ../../godmode/modules/manage_network_components_form_wizard.php:110
-msgid "Remove last macro oid"
-msgstr "Eliminar último macro de oid"
-
-#: ../../godmode/modules/manage_network_components_form_wizard.php:134
-msgid "Numeric"
-msgstr "Numérico"
-
-#: ../../godmode/modules/manage_network_components_form_wizard.php:135
-#: ../../extensions/realtime_graphs.php:217
-msgid "Incremental"
-msgstr "Incremental"
-
-#: ../../godmode/modules/manage_network_components_form_wizard.php:136
-msgid "Boolean"
-msgstr "Boleano"
-
-#: ../../godmode/modules/manage_network_components_form_wizard.php:137
-msgid "Alphanumeric"
-msgstr "Alfanumérico"
-
-#: ../../godmode/modules/manage_network_components_form_wizard.php:257
-msgid "Add by default"
-msgstr "Añadir por defecto"
-
-#: ../../godmode/modules/manage_network_components_form_wizard.php:285
-msgid "Module protocol"
-msgstr "Protocolo de módulo"
-
-#: ../../godmode/modules/manage_network_components_form_wizard.php:301
-msgid "Protocol"
-msgstr "Protocolo"
-
-#: ../../godmode/modules/manage_network_components_form_wizard.php:314
-#: ../../godmode/modules/manage_network_components_form_network.php:191
-msgid "Name OID"
-msgstr "Nombre del OID"
-
-#: ../../godmode/modules/manage_network_components_form_wizard.php:317
-msgid "Manufacturer ID"
-msgstr "ID del fabricante"
-
-#: ../../godmode/modules/manage_network_components_form_wizard.php:349
-msgid "Component Group"
-msgstr "Grupo de componente"
-
-#: ../../godmode/modules/manage_network_components_form_wizard.php:367
-msgid "Module unit"
-msgstr "Unidad de módulo"
-
-#: ../../godmode/modules/manage_network_components_form_wizard.php:392
-#: ../../godmode/modules/manage_network_components_form_wizard.php:434
-#: ../../enterprise/meta/monitoring/wizard/wizard.php:152
-#: ../../include/functions_reports.php:1080
-#: ../../include/functions_reports.php:1210
-msgid "String"
-msgstr "Cadena"
-
-#: ../../godmode/modules/manage_network_components_form_wizard.php:457
-msgid "Scan Type"
-msgstr "Tipo de escaneo"
-
-#: ../../godmode/modules/manage_network_components_form_wizard.php:491
-msgid "Value OID"
-msgstr "OID del valor"
-
-#: ../../godmode/modules/manage_network_components_form_wizard.php:508
-msgid "Macros OID"
-msgstr "OID de macros"
-
-#: ../../godmode/modules/manage_network_components_form_wizard.php:516
-#: ../../godmode/modules/manage_network_components_form_wizard.php:701
-msgid "Value operation"
-msgstr "Operación de valores"
-
-#: ../../godmode/modules/manage_network_components_form_wizard.php:533
-#: ../../godmode/modules/manage_network_components_form_wizard.php:718
-msgid "Satellite execution"
-msgstr "Ejecución de satélite"
-
-#: ../../godmode/modules/manage_network_components_form_wizard.php:550
-#: ../../godmode/modules/manage_network_components_form_wizard.php:735
-msgid "Server plugin"
-msgstr "Plugin de servidor"
-
-#: ../../godmode/modules/manage_network_components_form_wizard.php:588
-msgid "WMI class"
-msgstr "Clase WMI"
-
-#: ../../godmode/modules/manage_network_components_form_wizard.php:605
-msgid "Query key field"
-msgstr "Campo de clave de consulta"
-
-#: ../../godmode/modules/manage_network_components_form_wizard.php:622
-msgid "Query extra fields"
-msgstr "Campos extra de consulta"
-
-#: ../../godmode/modules/manage_network_components_form_wizard.php:630
-msgid "Query filters"
-msgstr "Filtros de consulta"
-
-#: ../../godmode/modules/manage_network_components_form_wizard.php:636
-#: ../../enterprise/include/class/DeploymentCenter.class.php:1752
-msgid "Scan"
-msgstr "Escanear"
-
-#: ../../godmode/modules/manage_network_components_form_wizard.php:673
-msgid "Field value"
-msgstr "Calor de campo"
-
-#: ../../godmode/modules/manage_nc_groups.php:40
-msgid "Component group management"
-msgstr "Gestión de grupos de componentes de red"
-
-#: ../../godmode/modules/manage_nc_groups.php:64
-#: ../../enterprise/tools/ipam/ipam_network_location_config.php:40
-msgid "Could not be created. Blank name"
-msgstr "No pudo ser creado. Nombre en blanco"
-
-#: ../../godmode/modules/manage_nc_groups.php:293
-#, php-format
-msgid ""
-"This node is configured with centralized mode. Component groups are read only. "
-"Go to %s to manage it."
-msgstr ""
-"Este nodo esta configurado con el modo centralizado. Toda la información de "
-"las políticas está en modo lectura. Vaya a %s para administrarlo."
-
-#: ../../godmode/modules/manage_nc_groups.php:311
-msgid "There are no defined component groups"
-msgstr "No hay grupos de componentes definidos"
-
-#: ../../godmode/modules/manage_network_components_form.php:355
-msgid "Update Network Component"
-msgstr "Actualización de componente de red"
-
-#: ../../godmode/modules/manage_network_components_form.php:357
-msgid "Create Network Component"
-msgstr "Crear componente de red"
-
-#: ../../godmode/modules/module_list.php:29
-msgid "Defined modules"
-msgstr "Módulos definidos"
-
-#: ../../godmode/modules/module_list.php:51
-msgid "Problem modifying module"
-msgstr "Problema al modificar los módulos"
-
-#: ../../godmode/modules/module_list.php:53
-msgid "Module updated successfully"
-msgstr "Actualización de módulos correcta"
-
-#: ../../godmode/modules/manage_network_templates_form.php:32
-#: ../../godmode/modules/manage_network_templates.php:39
-#: ../../include/class/ModuleTemplates.class.php:199
-#: ../../include/class/ModuleTemplates.class.php:217
-#: ../../include/class/ModuleTemplates.class.php:227
-msgid "Module template management"
-msgstr "Gestión de plantillas de módulos"
-
-#: ../../godmode/modules/manage_network_templates_form.php:59
-msgid "Successfully deleted module from profile"
-msgstr "Módulo borrado del perfil correctamente"
-
-#: ../../godmode/modules/manage_network_templates_form.php:60
-msgid "Error deleting module from profile"
-msgstr "Error al borrar el módulo del perfil"
-
-#: ../../godmode/modules/manage_network_templates_form.php:79
-msgid "Successfully added module to profile"
-msgstr "Módulo añadido correctamente al perfil"
-
-#: ../../godmode/modules/manage_network_templates_form.php:80
-msgid "Error adding module to profile"
-msgstr "Error al añadir el módulo al perfil"
-
-#: ../../godmode/modules/manage_network_templates_form.php:113
-msgid "Successfully updated network profile"
-msgstr "Perfil de red actualizado correctamente"
-
-#: ../../godmode/modules/manage_network_templates_form.php:114
-msgid "Error updating network profile"
-msgstr "Error al actualizar el perfil de red"
-
-#: ../../godmode/modules/manage_network_templates_form.php:138
-msgid "Successfully added network profile"
-msgstr "Perfil de red añadido correctamente"
-
-#: ../../godmode/modules/manage_network_templates_form.php:139
-msgid "Error adding network profile"
-msgstr "Error al añadir el perfil de red"
-
-#: ../../godmode/modules/manage_network_templates_form.php:145
-msgid "Cannot create a template without name"
-msgstr "No se puede crear una plantilla sin nombre"
-
-#: ../../godmode/modules/manage_network_templates_form.php:219
-msgid "No modules for this profile"
-msgstr "No existen módulos para este perfil"
-
-#: ../../godmode/modules/manage_network_templates_form.php:341
-#: ../../enterprise/meta/include/functions_wizard_meta.php:307
-#: ../../include/class/ModuleTemplates.class.php:804
-msgid "Components"
-msgstr "Componentes"
-
-#: ../../godmode/modules/manage_nc_groups_form.php:54
-msgid "Update Group Component"
-msgstr "Actualización de los componentes del grupo"
-
-#: ../../godmode/modules/manage_nc_groups_form.php:56
-msgid "Create Group Component"
-msgstr "Crear componentes de grupo"
-
-#: ../../godmode/modules/manage_network_components_form_common.php:157
-#: ../../enterprise/godmode/modules/configure_local_component.php:303
-msgid "Dynamic Min. "
-msgstr "Dinámico mínimo "
-
-#: ../../godmode/modules/manage_network_components_form_common.php:309
-#: ../../enterprise/godmode/modules/configure_local_component.php:461
-msgid "Any value below this number is discarted"
-msgstr "Cualquier valor por debajo de este número será descartado."
-
-#: ../../godmode/modules/manage_network_components_form_common.php:311
-#: ../../enterprise/godmode/modules/configure_local_component.php:466
-msgid "Any value over this number is discarted"
-msgstr "Cualquier valor por encima de este número será descartado."
-
-#: ../../godmode/modules/manage_network_templates.php:83
-#: ../../enterprise/include/class/NetworkConfigManager.class.php:2201
-msgid "Template successfully deleted"
-msgstr "Plantilla borrada correctamente"
-
-#: ../../godmode/modules/manage_network_templates.php:84
-msgid "Error deleting template"
-msgstr "Error al borrar la plantilla"
-
-#: ../../godmode/modules/manage_network_templates.php:124
-msgid "This template does not exist"
-msgstr "Esta plantilla no existe."
-
-#: ../../godmode/modules/manage_network_templates.php:304
-msgid "There are no defined network profiles"
-msgstr "No hay ningún perfil de red definido"
-
-#: ../../godmode/modules/manage_network_components_form_network.php:72
-msgid "SNMP Enterprise String"
-msgstr "Cadena SNMP Enterprise"
-
-#: ../../godmode/tag/tag.php:117
-msgid "Number of modules"
-msgstr "Número de módulos"
-
-#: ../../godmode/tag/tag.php:119
-msgid "Number of policy modules"
-msgstr "Número de módulos de política"
-
-#: ../../godmode/tag/tag.php:140 ../../godmode/tag/edit_tag.php:57
-#: ../../godmode/tag/edit_tag.php:75
-msgid "List tags"
-msgstr "Listar etiquetas"
-
-#: ../../godmode/tag/tag.php:152 ../../godmode/tag/edit_tag.php:85
-msgid "Tags configuration"
-msgstr "Configuración de etiquetas"
-
-#: ../../godmode/tag/tag.php:178
-msgid "Successfully deleted tag"
-msgstr "Etiqueta eliminada correctamente"
-
-#: ../../godmode/tag/tag.php:179
-msgid "Error deleting tag"
-msgstr "Error al eliminar la etiqueta"
-
-#: ../../godmode/tag/tag.php:195
-#, php-format
-msgid ""
-"This node is configured with centralized mode. All tags information is read "
-"only. Go to %s to manage it."
-msgstr ""
-"Este nodo esta configurado con el modo centralizado. Toda la información de "
-"las políticas está en modo lectura. Vaya a %s para administrarlo."
-
-#: ../../godmode/tag/tag.php:277
-msgid "Tag name"
-msgstr "Nombre de etiqueta"
-
-#: ../../godmode/tag/tag.php:279
-msgid "Detail information"
-msgstr "Información de los detalles"
-
-#: ../../godmode/tag/tag.php:280
-msgid "Number of modules affected"
-msgstr "Número de módulos afectados"
-
-#: ../../godmode/tag/tag.php:282 ../../godmode/tag/edit_tag.php:251
-msgid "Phone"
-msgstr "Teléfono"
-
-#: ../../godmode/tag/tag.php:311
-msgid "Tag details"
-msgstr "Detalles de la etiqueta"
-
-#: ../../godmode/tag/tag.php:344
-#, php-format
-msgid "Emails for the tag: %s"
-msgstr "Correos para la etiqueta: %s"
-
-#: ../../godmode/tag/tag.php:367
-#, php-format
-msgid "Phones for the tag: %s"
-msgstr "Teléfonos par la etiqueta: %s"
-
-#: ../../godmode/tag/tag.php:413
-msgid "No tags defined"
-msgstr "Etiquetas no definidas"
-
-#: ../../godmode/tag/tag.php:428
-msgid "Create tag"
-msgstr "Crear etiqueta"
-
-#: ../../godmode/tag/edit_tag.php:128
-msgid "Successfully updated tag"
-msgstr "Etiqueta actualizada correctamente"
-
-#: ../../godmode/tag/edit_tag.php:129
-msgid "Error updating tag"
-msgstr "Error al actualizar la etiqueta"
-
-#: ../../godmode/tag/edit_tag.php:169
-msgid "Successfully created tag"
-msgstr "Etiqueta creada correctamente"
-
-#: ../../godmode/tag/edit_tag.php:170
-msgid "Error creating tag"
-msgstr "Error al crear etiqueta"
-
-#: ../../godmode/tag/edit_tag.php:201
-msgid "Update Tag"
-msgstr "Actualizar etiqueta"
-
-#: ../../godmode/tag/edit_tag.php:205
-msgid "Create Tag"
-msgstr "Crear etiqueta"
-
-#: ../../godmode/tag/edit_tag.php:227
-#: ../../enterprise/meta/include/functions_wizard_meta.php:641
-#: ../../enterprise/meta/monitoring/wizard/wizard.php:151
-#: ../../include/functions_reporting.php:6785
-#: ../../include/lib/Dashboard/Widgets/url.php:216
-msgid "Url"
-msgstr "URL"
-
-#: ../../godmode/tag/edit_tag.php:229
-msgid "Hyperlink to help information that has to exist previously."
-msgstr "Hipervínculo a la información de ayuda que debe existir previamente"
-
-#: ../../godmode/tag/edit_tag.php:241
-msgid "Associated Email direction to use later in alerts associated to Tags."
-msgstr ""
-"Direccion de email asociada para utilizarla después en alertas asociadas a "
-"etiquetas"
-
-#: ../../godmode/tag/edit_tag.php:253
-msgid "Associated phone number to use later in alerts associated to Tags."
-msgstr ""
-"Número de teléfono asociado para usar posteriormente en alertas asociadas a "
-"etiquetas"
-
-#: ../../godmode/servers/plugin_registration.php:59
-#: ../../godmode/servers/plugin.php:290 ../../godmode/servers/plugin.php:617
-msgid "To manage plugin you must activate centralized management"
-msgstr "Active la gestión centralizada para gestionar el plugin"
-
-#: ../../godmode/servers/plugin_registration.php:65
-msgid "PLUGIN REGISTRATION"
-msgstr "REGISTRO DE PLUGINS"
-
-#: ../../godmode/servers/plugin_registration.php:76
-#, php-format
-msgid ""
-"This console is not manager of this environment, please manage this feature "
-"from feature from %s."
-msgstr ""
-"La consola no administra este entorno, gestione esta funcionalidad desde la "
-"funcionalidad desde %s."
-
-#: ../../godmode/servers/plugin_registration.php:95
-msgid "Plugin Registration"
-msgstr "Registro de puglins"
-
-#: ../../godmode/servers/plugin_registration.php:99
-#: ../../godmode/servers/plugin.php:295
-#: ../../enterprise/meta/include/functions_components_meta.php:124
-#: ../../enterprise/meta/include/functions_components_meta.php:164
-msgid "Plugin registration"
-msgstr "Registro de plugins"
-
-#: ../../godmode/servers/plugin_registration.php:103
-msgid "You can get more plugins in our"
-msgstr "Puedes obtener más plugins en nuestra"
-
-#: ../../godmode/servers/plugin_registration.php:105
-msgid "Public Resource Library"
-msgstr "Biblioteca de Recursos Públicos"
-
-#: ../../godmode/servers/plugin_registration.php:133
-msgid "Failed to create temporary directory"
-msgstr "Error al crear un directorio temporal"
-
-#: ../../godmode/servers/plugin_registration.php:152
-msgid "Cannot load INI file"
-msgstr "No se puede abrir el archivo .INI"
-
-#: ../../godmode/servers/plugin_registration.php:177
-msgid "Plugin exec not found. Aborting!"
-msgstr "Plugin de ejecución no encontrado. ¡Deteniendo el proceso!"
-
-#: ../../godmode/servers/plugin_registration.php:188
-msgid "Plugin already registered. Aborting!"
-msgstr "El plugin ya está registrado. ¡Deteniendo el proceso!"
-
-#: ../../godmode/servers/plugin_registration.php:355
-msgid "Plug-in Remote Registered unsuccessfull"
-msgstr "Error al registrar el plugin remoto"
-
-#: ../../godmode/servers/plugin_registration.php:358
-msgid "Please check the syntax of file \"plugin_definition.ini\""
-msgstr "Por favor, comprueba la sintaxis del archivo \"plugin_definition.ini\"."
-
-#: ../../godmode/servers/plugin_registration.php:498
-msgid "Module plugin registered"
-msgstr "Plugin de módulo registrado"
-
-#: ../../godmode/servers/plugin_registration.php:503
-msgid "Registered successfully"
-msgstr "Registrado correctamente"
-
-#: ../../godmode/servers/plugin_registration.php:516
-msgid "Unable to uncompress uploaded file"
-msgstr "No se puede descomprimir el archivo cargado"
-
-#: ../../godmode/servers/plugin_registration.php:534
-#, php-format
-msgid "Cannot move uploaded file to %s."
-msgstr "No se puede mover el archivo cargado a %s."
-
-#: ../../godmode/servers/servers.build_table.php:37
-#: ../../enterprise/meta/advanced/servers.build_table.php:34
-msgid "There are no servers configured into the database"
-msgstr "No hay ningún servidor configurado en la base de datos"
-
-#: ../../godmode/servers/servers.build_table.php:70
-#: ../../enterprise/meta/advanced/servers.build_table.php:65
-msgid "Lag"
-msgstr "Retraso"
-
-#: ../../godmode/servers/servers.build_table.php:70
-#: ../../enterprise/meta/advanced/servers.build_table.php:65
-msgid "Avg. Delay(sec)/Modules delayed"
-msgstr "Media de retraso (seg.)/Módulos retrasados"
-
-#: ../../godmode/servers/servers.build_table.php:71
-#: ../../enterprise/meta/advanced/servers.build_table.php:66
-msgid "T/Q"
-msgstr "H/C"
-
-#: ../../godmode/servers/servers.build_table.php:71
-#: ../../enterprise/meta/advanced/servers.build_table.php:66
-msgid "Threads / Queued modules currently"
-msgstr "Hilos/Cola actual de módulos"
-
-#: ../../godmode/servers/servers.build_table.php:104
-msgid "Server has crashed."
-msgstr "El servidor se ha caído."
-
-#: ../../godmode/servers/servers.build_table.php:112
-msgid "Server is stopped."
-msgstr "El servidor se ha parado."
-
-#: ../../godmode/servers/servers.build_table.php:120
-#: ../../enterprise/meta/advanced/servers.build_table.php:91
-msgid "This is a master server"
-msgstr "Este es un servidor maestro"
-
-#: ../../godmode/servers/servers.build_table.php:124
-msgid "Exec server enabled"
-msgstr "Servidor de ejecución habilitado"
-
-#: ../../godmode/servers/servers.build_table.php:139
-#: ../../godmode/servers/servers.build_table.php:145
-#: ../../enterprise/meta/advanced/servers.build_table.php:106
-#: ../../enterprise/meta/advanced/servers.build_table.php:112
-msgid "of"
-msgstr "de"
-
-#: ../../godmode/servers/servers.build_table.php:182
-msgid "Manage Discovery tasks"
-msgstr "Gestionar las tareas de Discovery"
-
-#: ../../godmode/servers/servers.build_table.php:197
-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:208
-msgid "Claim back SNMP modules"
-msgstr "Recuperar módulos SNMP"
-
-#: ../../godmode/servers/servers.build_table.php:246
-#: ../../enterprise/meta/advanced/servers.build_table.php:134
-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?"
-
-#: ../../godmode/servers/servers.build_table.php:273
-#: ../../enterprise/meta/advanced/servers.build_table.php:160
-msgid "Tactical server information"
-msgstr "Vista táctica del servidor"
-
-#: ../../godmode/servers/plugin.php:73
-msgid "Network Components"
-msgstr "Componentes de red"
-
-#: ../../godmode/servers/plugin.php:173
-#: ../../enterprise/godmode/agentes/collections.editor.php:158
-#: ../../enterprise/godmode/agentes/collections.editor.php:224
-#: ../../enterprise/meta/advanced/collections.editor.php:125
-#: ../../enterprise/meta/advanced/collections.editor.php:193
-#: ../../include/functions_filemanager.php:737
-msgid "Edit file"
-msgstr "Editar archivo"
-
-#: ../../godmode/servers/plugin.php:192
-#: ../../enterprise/godmode/agentes/collections.editor.php:248
-#: ../../enterprise/meta/advanced/collections.editor.php:217
-msgid "Compatibility mode"
-msgstr "Modo de compatibilidad"
-
-#: ../../godmode/servers/plugin.php:303
-msgid "Plugin update"
-msgstr "Actualización de plugin"
-
-#: ../../godmode/servers/plugin.php:314 ../../godmode/servers/plugin.php:636
-msgid ""
-"This console is not manager of this environment,\n"
-"        \t\tplease manage this feature from centralized manager console "
-"(Metaconsole)."
-msgstr ""
-"Esta consola no administra este entorno,\n"
-"        \t\tadministre esta funcionalidad desde el administrador centralizado "
-"de la consola (Metaconsola)."
-
-#: ../../godmode/servers/plugin.php:345
-msgid "Plugin type"
-msgstr "Tipo de plugin"
-
-#: ../../godmode/servers/plugin.php:346 ../../godmode/servers/plugin.php:845
-#: ../../godmode/servers/modificar_server.php:40
-msgid "Standard"
-msgstr "Estándar"
-
-#: ../../godmode/servers/plugin.php:347 ../../godmode/servers/plugin.php:847
-msgid "Nagios"
-msgstr "Nagios"
-
-#: ../../godmode/servers/plugin.php:352
-msgid "Max. timeout"
-msgstr "Máx. tiempo de espera"
-
-#: ../../godmode/servers/plugin.php:352
-msgid ""
-"This value only will be applied if is minor than the server general "
-"configuration plugin timeout"
-msgstr ""
-"Este valor solo se aplicará si es menor que el tiempo de espera del plugin de "
-"la configuración general del servidor."
-
-#: ../../godmode/servers/plugin.php:352
-msgid "If you set a 0 seconds timeout, the server plugin timeout will be used"
-msgstr ""
-"Si configuras en 0 segundos el tiempo de espera, se utilizará el tiempo de "
-"espera del plugin del servidor."
-
-#: ../../godmode/servers/plugin.php:401
-msgid "Plugin command"
-msgstr "Comando del plugin"
-
-#: ../../godmode/servers/plugin.php:401
-msgid ""
-"Specify interpreter and plugin path. The server needs permissions to run it."
-msgstr ""
-"Especifique el intérprete y la ruta del plugin. El servidor necesita permisos "
-"para ejecutarlo."
-
-#: ../../godmode/servers/plugin.php:413
-msgid "Plug-in parameters"
-msgstr "Parámetros del plugin"
-
-#: ../../godmode/servers/plugin.php:492
-#: ../../enterprise/godmode/modules/configure_local_component.php:639
-#: ../../include/class/ManageNetScanScripts.class.php:636
-msgid "Default value"
-msgstr "Valor por defecto"
-
-#: ../../godmode/servers/plugin.php:505
-#: ../../include/class/ManageNetScanScripts.class.php:667
-msgid "Hide value"
-msgstr "Ocultar valor"
-
-#: ../../godmode/servers/plugin.php:506
-#: ../../include/class/ManageNetScanScripts.class.php:669
-msgid "This field will show up as dots like a password"
-msgstr "En este campo aparecerán puntos como en un campo de tipo contraseña."
-
-#: ../../godmode/servers/plugin.php:526
-#: ../../enterprise/godmode/modules/configure_local_component.php:645
-#: ../../enterprise/meta/general/login_page.php:75
-#: ../../enterprise/meta/include/process_reset_pass.php:58
-#: ../../enterprise/meta/include/reset_pass.php:58
-#: ../../include/functions_ui.php:1446
-#: ../../include/class/ManageNetScanScripts.class.php:690
-msgid "Help"
-msgstr "Ayuda"
-
-#: ../../godmode/servers/plugin.php:554
-#: ../../enterprise/godmode/modules/configure_local_component.php:655
-#: ../../include/class/ManageNetScanScripts.class.php:724
-msgid "Add macro"
-msgstr "Añadir macro"
-
-#: ../../godmode/servers/plugin.php:568
-#: ../../enterprise/godmode/modules/configure_local_component.php:663
-#: ../../include/class/ManageNetScanScripts.class.php:742
-msgid "Delete macro"
-msgstr "Eliminar macro"
-
-#: ../../godmode/servers/plugin.php:581 ../../godmode/servers/plugin.php:586
-msgid "Parameters macros"
-msgstr "Macros de los parámetros"
-
-#: ../../godmode/servers/plugin.php:623
-#, php-format
-msgid "Plug-ins registered on %s"
-msgstr "Plugins registrados en %s"
-
-#: ../../godmode/servers/plugin.php:645
-msgid "You need to create your own plugins with Windows compatibility"
-msgstr "Necesitas crear tus propios plugins compatibles con Windows."
-
-#: ../../godmode/servers/plugin.php:711
-msgid "Problem updating plugin"
-msgstr "Problema al actualizar el plugin"
-
-#: ../../godmode/servers/plugin.php:713
-msgid "Plugin updated successfully"
-msgstr "Plugin actualizado correctamente"
-
-#: ../../godmode/servers/plugin.php:771
-msgid "Problem creating plugin"
-msgstr "Error al crear plugin"
-
-#: ../../godmode/servers/plugin.php:773
-msgid "Plugin created successfully"
-msgstr "Plugin creado correctamente"
-
-#: ../../godmode/servers/plugin.php:785
-msgid "Problem deleting plugin"
-msgstr "Error al borrar plugin"
-
-#: ../../godmode/servers/plugin.php:787 ../../godmode/servers/plugin.php:799
-msgid "Plugin deleted successfully"
-msgstr "Plugin borrado correctamente"
-
-#: ../../godmode/servers/plugin.php:884
-msgid "All the modules that are using this plugin will be deleted"
-msgstr "Todos los módulos que estén utilizando este plugin se borrarán."
-
-#: ../../godmode/servers/plugin.php:901
-msgid "There are no plugins in the system"
-msgstr "No hay plugins en el sistema"
-
-#: ../../godmode/servers/plugin.php:915
-#, php-format
-msgid "List of modules and components created by \"%s\" "
-msgstr "Lista de los módulos y componentes creados por '%s' "
-
-#: ../../godmode/servers/plugin.php:1021 ../../godmode/servers/plugin.php:1037
-msgid "Some modules or components are using the plugin"
-msgstr "Algunos módulos o componentes están usando el plugin."
-
-#: ../../godmode/servers/plugin.php:1022
-msgid ""
-"The modules or components should be updated manually or using the bulk "
-"operations for plugins after this change"
-msgstr ""
-"Los módulos o componentes deberían ser actualizados manualmente o usando las "
-"operaciones masivas para los plugins después de este cambio."
-
-#: ../../godmode/servers/plugin.php:1024
-msgid "Are you sure you want to perform this action?"
-msgstr "¿Estás seguro de que quieres realizar esta acción?"
-
-#: ../../godmode/servers/plugin.php:1038
-msgid "Are you sure you want to unlock this item?"
-msgstr "¿Estás seguro de que quieres desbloquear este elemento?"
-
-#: ../../godmode/servers/plugin.php:1058
-msgid ""
-"The plugin command cannot be updated because some modules or components are "
-"using the plugin."
-msgstr ""
-"No se puede actualizar el comando. Este plugin está siendo utilizado por "
-"módulos o componentes."
-
-#: ../../godmode/servers/plugin.php:1064
-msgid ""
-"The plugin macros cannot be updated because some modules or components are "
-"using the plugin"
-msgstr ""
-"Las macros del plugin no pueden ser actualizadas porque algunos módulos o "
-"componentes están usando el plugin."
-
-#: ../../godmode/servers/discovery.php:182
-msgid "You must create a task first"
-msgstr "Primero debe crear una tarea"
-
-#: ../../godmode/servers/modificar_server.php:34
-msgid "Update Server"
-msgstr "Actualizar el servidor"
-
-#: ../../godmode/servers/modificar_server.php:77
-msgid "Exec Server"
-msgstr "Ejecutar el servidor"
-
-#: ../../godmode/servers/modificar_server.php:85
-msgid "Leave blank to use SSH default port (22)"
-msgstr "Dejar en blanco para usar el puerto SSH por defecto (22)"
-
-#: ../../godmode/servers/modificar_server.php:90
-msgid "Check Exec Server"
-msgstr "Comprobar ejecución del servidor"
-
-#: ../../godmode/servers/modificar_server.php:106
-msgid "Credential boxes"
-msgstr "Recuadro de credenciales"
-
-#: ../../godmode/servers/modificar_server.php:130
-msgid "Standard editor"
-msgstr "Editor estándar"
-
-#: ../../godmode/servers/modificar_server.php:134
-msgid "Advanced editor"
-msgstr "Editor avanzado"
-
-#: ../../godmode/servers/modificar_server.php:141
-msgid "Remote Configuration"
-msgstr "Configuración remota"
-
-#: ../../godmode/servers/modificar_server.php:150
-#, php-format
-msgid "%s servers"
-msgstr "Servidores de %s"
-
-#: ../../godmode/servers/modificar_server.php:157
-#: ../../godmode/servers/modificar_server.php:168
-#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1625
-msgid "Unsuccessfull action"
-msgstr "No se pudo completar la acción"
-
-#: ../../godmode/servers/modificar_server.php:159
-#: ../../godmode/servers/modificar_server.php:170
-msgid "Successfully action"
-msgstr "Acción procesada satisfactoriamente"
-
-#: ../../godmode/servers/modificar_server.php:180
-#: ../../enterprise/meta/advanced/servers.php:39
-msgid "Server deleted successfully"
-msgstr "Servidor eliminado correctamente"
-
-#: ../../godmode/servers/modificar_server.php:182
-#: ../../enterprise/meta/advanced/servers.php:41
-msgid "There was a problem deleting the server"
-msgstr "Hubo un problema al eliminar el servidor"
-
-#: ../../godmode/servers/modificar_server.php:201
-msgid "Server updated successfully"
-msgstr "Servidor actualizado correctamente"
-
-#: ../../godmode/servers/modificar_server.php:203
-msgid "There was a problem updating the server"
-msgstr "Hubo un problema al actualizar el servidor"
-
-#: ../../godmode/extensions.php:28
-#: ../../enterprise/meta/general/main_header.php:458
-#: ../../enterprise/meta/general/main_menu.php:626
-msgid "Extensions"
-msgstr "Extensiones"
-
-#: ../../godmode/extensions.php:28
-msgid "Defined extensions"
-msgstr "Extensiones definidas"
-
-#: ../../godmode/extensions.php:33
-msgid "There are no extensions defined"
-msgstr "No hay extensiones definidas"
-
-#: ../../godmode/extensions.php:138
-#: ../../extensions/files_repo/files_repo_form.php:95
-msgid "File"
-msgstr "Archivo"
-
-#: ../../godmode/extensions.php:141
-msgid "Godmode Function"
-msgstr "Función Administrador"
-
-#: ../../godmode/extensions.php:142
-msgid "Godmode Menu"
-msgstr "Menú Administrador"
-
-#: ../../godmode/extensions.php:143
-msgid "Operation Menu"
-msgstr "Menú Operación"
-
-#: ../../godmode/extensions.php:144
-msgid "Operation Function"
-msgstr "Función Operación"
-
-#: ../../godmode/extensions.php:145
-msgid "Login Function"
-msgstr "Función Conexión"
-
-#: ../../godmode/extensions.php:146
-msgid "Agent operation tab"
-msgstr "Pestaña Operaciones de agente"
-
-#: ../../godmode/extensions.php:147
-msgid "Agent godmode tab"
-msgstr "Pestaña Administración de agente"
-
-#: ../../enterprise/load_html_extra.php:202
-msgid "Activate license"
-msgstr "Activar la licencia"
-
-#: ../../enterprise/load_html_extra.php:203
-msgid "Your <b>request key</b> is:"
-msgstr "Tu <b>clave</b> es:"
-
-#: ../../enterprise/load_html_extra.php:206
-#, php-format
-msgid ""
-"You can activate it manually <a href=\"%s\" target=\"_blank\">here</a> or "
-"automatically filling the form below:"
-msgstr ""
-"Lo puedes activar manualmente <a href=\"%s\" target= \"_blank\">aquí</a> o "
-"automáticamente rellenando el siguiente formulario:"
-
-#: ../../enterprise/load_html_extra.php:213
-msgid "Auth Key:"
-msgstr "Clave de autentificación:"
-
-#: ../../enterprise/load_html_extra.php:221
-#: ../../enterprise/load_html_extra.php:240
-msgid "Online validation"
-msgstr "Validación en línea"
-
-#: ../../enterprise/load_html_extra.php:233
-msgid "ERROR:"
-msgstr "ERROR:"
-
-#: ../../enterprise/load_html_extra.php:233
-msgid "When connecting to licence server."
-msgstr "Al conectar con el servidor de licencias."
-
-#: ../../enterprise/operation/snmpconsole/snmp_view.php:82
-#: ../../enterprise/operation/menu.php:170
-#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor_form.php:24
-#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:44
-msgid "SNMP trap editor"
-msgstr "Editor de traps SNMP"
-
-#: ../../enterprise/operation/reporting/custom_reporting.php:14
-#: ../../enterprise/godmode/reporting/reporting_builder.template.php:503
-msgid "PDF"
-msgstr "PDF"
-
-#: ../../enterprise/operation/reporting/custom_reporting.php:16
-#: ../../enterprise/godmode/reporting/reporting_builder.template.php:504
-msgid "JSON"
-msgstr "JSON"
-
-#: ../../enterprise/operation/reporting/custom_reporting.php:64
-#: ../../enterprise/godmode/reporting/reporting_builder.template.php:581
-#: ../../include/class/Diagnostics.class.php:144
-msgid "Export to PDF"
-msgstr "Exportar a PDF"
-
-#: ../../enterprise/operation/reporting/custom_reporting.php:72
-#: ../../enterprise/godmode/reporting/reporting_builder.template.php:589
-msgid "Export to JSON"
-msgstr "Exportar a JSON"
-
-#: ../../enterprise/operation/reporting/custom_reporting.php:90
-#: ../../enterprise/operation/reporting/custom_reporting.php:164
-#: ../../enterprise/include/functions_reporting.php:8211
-msgid "Send by email"
-msgstr "Enviar por correo electrónico"
-
-#: ../../enterprise/operation/reporting/custom_reporting.php:101
-#: ../../enterprise/include/functions_reporting.php:8143
-msgid "ID Report"
-msgstr "ID Informe"
-
-#: ../../enterprise/operation/reporting/custom_reporting.php:109
-#: ../../enterprise/include/functions_reporting.php:8117
-#: ../../enterprise/include/functions_reporting.php:8151
-#: ../../enterprise/include/functions_tasklist.php:253
-#: ../../enterprise/include/functions_tasklist.php:342
-#: ../../enterprise/include/functions_tasklist.php:436
-#: ../../enterprise/include/functions_reporting_csv.php:983
-#: ../../enterprise/include/functions_reporting_csv.php:1184
-#: ../../enterprise/include/functions_reporting_csv.php:1215
-#: ../../enterprise/include/functions_reporting_csv.php:1270
-#: ../../enterprise/include/functions_reporting_csv.php:1325
-#: ../../enterprise/include/functions_reporting_csv.php:1374
-#: ../../enterprise/include/functions_reporting_csv.php:1429
-#: ../../include/functions_cron.php:574 ../../include/functions_cron.php:667
-#: ../../include/functions_cron.php:791
-msgid "Report type"
-msgstr "Tipo de informe"
-
-#: ../../enterprise/operation/reporting/custom_reporting.php:124
-#: ../../enterprise/include/functions_reporting.php:8171
-#: ../../enterprise/include/functions_cron.php:186
-#: ../../enterprise/include/functions_cron.php:236
-msgid "Send to emails (separated by comma)"
-msgstr "Enviar a emails (separados por comas)"
-
-#: ../../enterprise/operation/reporting/custom_reporting.php:144
-#: ../../enterprise/operation/reporting/custom_reporting.php:158
-#: ../../enterprise/include/functions_reporting.php:8191
-#: ../../enterprise/include/functions_reporting.php:8205
-#: ../../enterprise/include/functions_cron.php:798
-#: ../../enterprise/include/functions_cron.php:831
-msgid "This is an optional field"
-msgstr "Este campo es opcional"
-
-#: ../../enterprise/operation/reporting/custom_reporting.php:200
-#: ../../enterprise/include/functions_reporting.php:8290
-msgid "Send by email "
-msgstr "Enviar por correo electrónico "
-
-#: ../../enterprise/operation/agentes/collection_view.php:60
-#: ../../enterprise/godmode/agentes/collection_manager.php:37
-msgid "This agent have not a remote configuration, please set it."
-msgstr "Este agente no se ha configurado remotamente. Por favor, configúralo."
-
-#: ../../enterprise/operation/agentes/collection_view.php:66
-msgid "No collection assigned to this agent"
-msgstr "No se ha asignado ninguna colección a este agente."
-
-#: ../../enterprise/operation/agentes/collection_view.php:76
-#: ../../enterprise/operation/agentes/policy_view.php:164
-#: ../../enterprise/godmode/agentes/collection_manager.php:207
-msgid "Dir"
-msgstr "Dir"
-
-#: ../../enterprise/operation/agentes/collection_view.php:108
-#: ../../enterprise/operation/agentes/policy_view.php:195
-#: ../../enterprise/operation/agentes/policy_view.php:196
-#: ../../enterprise/godmode/agentes/collection_manager.php:129
-#: ../../enterprise/godmode/agentes/collection_manager.php:130
-#: ../../enterprise/godmode/agentes/collection_manager.php:254
-msgid "Show files"
-msgstr "Mostrar archivos"
-
-#: ../../enterprise/operation/agentes/collection_view.php:128
-#: ../../enterprise/operation/agentes/collection_view.php:129
-#: ../../enterprise/operation/agentes/policy_view.php:217
-#: ../../enterprise/operation/agentes/policy_view.php:218
-#: ../../enterprise/godmode/policies/policy_collections.php:224
-#: ../../enterprise/godmode/policies/policy_collections.php:296
-msgid "Outdate"
-msgstr "Obsoleto"
-
-#: ../../enterprise/operation/agentes/collection_view.php:139
-#: ../../enterprise/operation/agentes/collection_view.php:140
-#: ../../enterprise/godmode/agentes/collection_manager.php:175
-#: ../../enterprise/godmode/agentes/collection_manager.php:176
-#: ../../enterprise/godmode/agentes/collection_manager.php:290
-#: ../../enterprise/godmode/agentes/collection_manager.php:291
-#: ../../enterprise/godmode/agentes/collections.php:385
-#: ../../enterprise/godmode/agentes/collections.php:386
-#: ../../enterprise/godmode/agentes/collections.data.php:477
-#: ../../enterprise/godmode/agentes/collections.data.php:478
-#: ../../enterprise/meta/advanced/collections.php:405
-#: ../../enterprise/meta/advanced/collections.php:406
-#: ../../enterprise/meta/advanced/collections.data.php:383
-#: ../../enterprise/meta/advanced/collections.data.php:384
-msgid "The collection directory does not exist."
-msgstr "El directorio donde se guardan las colecciones no existe."
-
-#: ../../enterprise/operation/agentes/transactional_map.php:61
-msgid "List of transactions"
-msgstr "Lista de transacciones"
-
-#: ../../enterprise/operation/agentes/transactional_map.php:74
-#: ../../enterprise/operation/agentes/manage_transmap_creation.php:173
-#: ../../enterprise/operation/agentes/manage_transmap_creation.php:353
-#: ../../enterprise/operation/agentes/manage_transmap_creation.php:475
-#: ../../enterprise/operation/agentes/manage_transmap.php:176
-msgid "Transactional Map"
-msgstr "Mapa transaccional"
-
-#: ../../enterprise/operation/agentes/transactional_map.php:149
-msgid "Name can't be empty"
-msgstr "El nombre no se puede quedar en blanco."
-
-#: ../../enterprise/operation/agentes/transactional_map.php:206
-msgid "Transaction name"
-msgstr "Nombre de la transacción"
-
-#: ../../enterprise/operation/agentes/transactional_map.php:209
-msgid "Running status"
-msgstr "Estado de ejecución"
-
-#: ../../enterprise/operation/agentes/transactional_map.php:211
-msgid "Time spent"
-msgstr "Tiempo utilizado"
-
-#: ../../enterprise/operation/agentes/transactional_map.php:254
-msgid "Stopped"
-msgstr "Detenido"
-
-#: ../../enterprise/operation/agentes/transactional_map.php:260
-msgid "Starting"
-msgstr "Iniciando"
-
-#: ../../enterprise/operation/agentes/transactional_map.php:260
-msgid "Stopping"
-msgstr "Deteniendo"
-
-#: ../../enterprise/operation/agentes/transactional_map.php:402
-#: ../../views/dashboard/slides.php:218
-msgid "Stop"
-msgstr "Parar"
-
-#: ../../enterprise/operation/agentes/transactional_map.php:439
-msgid "Edit phases"
-msgstr "Editar fases"
-
-#: ../../enterprise/operation/agentes/transactional_map.php:461
-msgid "Go to `Status` module"
-msgstr "Vaya al módulo 'Estado'"
-
-#: ../../enterprise/operation/agentes/transactional_map.php:492
-msgid "Error in phases section"
-msgstr "Error en la sección de fases"
-
-#: ../../enterprise/operation/agentes/transactional_map.php:512
-#: ../../enterprise/operation/agentes/manage_transmap_creation.php:340
-msgid "Create Transaction"
-msgstr "Crear transacción"
-
-#: ../../enterprise/operation/agentes/agent_inventory.php:61
-msgid "This agent has not modules inventory"
-msgstr "Este agente no tiene módulos de inventario."
-
-#: ../../enterprise/operation/agentes/agent_inventory.php:162
-#: ../../enterprise/operation/agentes/agent_inventory.php:163
-msgid "Diff view"
-msgstr "Vista de diferencia"
-
-#: ../../enterprise/operation/agentes/agent_inventory.diff_view.php:44
-msgid "Unsucessful get module inventory data."
-msgstr "No se han podido obtener datos del módulo de inventario."
-
-#: ../../enterprise/operation/agentes/manage_transmap_creation.php:63
-msgid "Please, reset the transaction"
-msgstr "Por favor, reinicia la transacción."
-
-#: ../../enterprise/operation/agentes/manage_transmap_creation.php:102
-msgid "Successfully data updated"
-msgstr "Datos actualizados correctamente"
-
-#: ../../enterprise/operation/agentes/manage_transmap_creation.php:103
-msgid "Could not be data updated"
-msgstr "Error al actualizar los datos"
-
-#: ../../enterprise/operation/agentes/manage_transmap_creation.php:115
-#: ../../enterprise/operation/agentes/manage_transmap_creation.php:332
-#: ../../enterprise/operation/agentes/manage_transmap_creation.php:417
-#: ../../enterprise/operation/agentes/manage_transmap_creation_phases_data.php:34
-#: ../../enterprise/operation/agentes/manage_transmap.php:56
-msgid "Transactions List"
-msgstr "Lista de transacciones"
-
-#: ../../enterprise/operation/agentes/manage_transmap_creation.php:127
-#: ../../enterprise/operation/agentes/manage_transmap_creation.php:429
-#: ../../enterprise/operation/agentes/manage_transmap.php:84
-msgid "Edit main data"
-msgstr "Editar datos principales"
-
-#: ../../enterprise/operation/agentes/manage_transmap_creation.php:139
-#: ../../enterprise/operation/agentes/manage_transmap_creation.php:441
-#: ../../enterprise/operation/agentes/manage_transmap_creation_phases_data.php:42
-#: ../../enterprise/operation/agentes/manage_transmap.php:96
-msgid "Edit Transaction"
-msgstr "Editar transacción"
-
-#: ../../enterprise/operation/agentes/manage_transmap_creation.php:152
-#: ../../enterprise/operation/agentes/manage_transmap_creation.php:454
-#: ../../enterprise/operation/agentes/manage_transmap.php:109
-msgid "View Transaction"
-msgstr "Ver transacción"
-
-#: ../../enterprise/operation/agentes/manage_transmap_creation.php:160
-msgid "Create Phase"
-msgstr "Fase de creación"
-
-#: ../../enterprise/operation/agentes/manage_transmap_creation.php:185
-msgid "Index"
-msgstr "Índice"
-
-#: ../../enterprise/operation/agentes/manage_transmap_creation.php:188
-msgid "Dependencies"
-msgstr "Dependencias"
-
-#: ../../enterprise/operation/agentes/manage_transmap_creation.php:189
-msgid "Enables"
-msgstr "Activa"
-
-#: ../../enterprise/operation/agentes/manage_transmap_creation.php:219
-#: ../../enterprise/include/ajax/transactional.ajax.php:174
-msgid "The phase does not have a defined script"
-msgstr "La fase no tiene un script definido."
-
-#: ../../enterprise/operation/agentes/manage_transmap_creation.php:254
-msgid "Not valid dependencies field"
-msgstr "Campo de dependencias no válido"
-
-#: ../../enterprise/operation/agentes/manage_transmap_creation.php:260
-msgid "Not valid enables field"
-msgstr "Campo de activación no válido"
-
-#: ../../enterprise/operation/agentes/manage_transmap_creation.php:275
-#: ../../enterprise/include/ajax/transactional.ajax.php:211
-msgid "Edit Data"
-msgstr "Editar datos"
-
-#: ../../enterprise/operation/agentes/manage_transmap_creation.php:367
-#: ../../enterprise/operation/agentes/manage_transmap_creation.php:493
-msgid "Loop interval"
-msgstr "Intervalo del bucle"
-
-#: ../../enterprise/operation/agentes/manage_transmap_creation.php:462
-msgid "Transactional Map - Edit Transaction"
-msgstr "Mapa transaccional - Editar transacción"
-
-#: ../../enterprise/operation/agentes/url_route_analyzer.php:39
-msgid "No agent selected"
-msgstr "No hay ningún agente seleccionado."
-
-#: ../../enterprise/operation/agentes/url_route_analyzer.php:42
-msgid "Route not found"
-msgstr "Ruta no encontrada"
-
-#: ../../enterprise/operation/agentes/manage_transmap_creation_phases_data.php:50
-msgid "Go back to phases list"
-msgstr "Volver a lista de fases"
-
-#: ../../enterprise/operation/agentes/manage_transmap_creation_phases_data.php:56
-msgid "Transactional Map - Phase - "
-msgstr "Mapa transaccional - Fase - "
-
-#: ../../enterprise/operation/agentes/manage_transmap_creation_phases_data.php:74
-#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:466
-#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:424
-msgid "Launch script"
-msgstr "Lanzar script"
-
-#: ../../enterprise/operation/agentes/manage_transmap.php:153
-msgid "Return to windowed mode"
-msgstr "Volver al modo ventana"
-
-#: ../../enterprise/operation/agentes/manage_transmap.php:182
-msgid "Transaction not found"
-msgstr "Transacción no encontrada"
-
-#: ../../enterprise/operation/agentes/manage_transmap.php:185
-msgid "Master lock file not found (No data to show)"
-msgstr "Archivo de bloqueo maestro no encontrado (no hay datos que mostrar)"
-
-#: ../../enterprise/operation/agentes/manage_transmap.php:188
-msgid "Transaction is stopped"
-msgstr "Transacción detenida"
-
-#: ../../enterprise/operation/agentes/manage_transmap.php:191
-msgid "Error, please check the transaction phases"
-msgstr "Error. Por favor, comprueba las fases de la transacción."
-
-#: ../../enterprise/operation/agentes/wux_console_view.php:75
-#: ../../include/lib/Dashboard/Widgets/wux_transaction.php:320
-msgid "No wux transaction selected."
-msgstr "Ninguna transacción WUX seleccionada"
-
-#: ../../enterprise/operation/agentes/wux_console_view.php:149
-#: ../../include/lib/Dashboard/Widgets/wux_transaction.php:398
-msgid "Phase modules not found"
-msgstr "Fase de módulo no encontrada"
-
-#: ../../enterprise/operation/agentes/wux_console_view.php:224
-msgid "Selected transaction has no stats"
-msgstr "La transacción seleccionada no tiene estadísticas."
-
-#: ../../enterprise/operation/agentes/wux_console_view.php:242
-msgid "No WUX transactions found."
-msgstr "Ninguna transacción WUX encontrada"
-
-#: ../../enterprise/operation/agentes/wux_console_view.php:261
-#: ../../enterprise/operation/agentes/ux_console_view.php:133
-msgid "Transaction"
-msgstr "Transacción"
-
-#: ../../enterprise/operation/agentes/wux_console_view.php:286
-#: ../../enterprise/operation/agentes/ux_console_view.php:142
-msgid "Show transaction"
-msgstr "Mostrar transacción"
-
-#: ../../enterprise/operation/agentes/wux_console_view.php:332
-#: ../../enterprise/operation/agentes/ux_console_view.php:266
-msgid "Global results"
-msgstr "Resultados globales"
-
-#: ../../enterprise/operation/agentes/wux_console_view.php:352
-#: ../../enterprise/operation/agentes/tag_view.php:873
-#: ../../enterprise/operation/agentes/tag_view.php:883
-#: ../../enterprise/operation/agentes/ux_console_view.php:102
-#: ../../enterprise/operation/agentes/ux_console_view.php:297
-#: ../../enterprise/operation/agentes/ux_console_view.php:377
-#: ../../enterprise/include/functions_ux_console.php:507
-#: ../../include/functions_ui.php:6223
-msgid "Snapshot view"
-msgstr "Vista de captura de pantalla"
-
-#: ../../enterprise/operation/agentes/wux_console_view.php:357
-msgid "Failed: "
-msgstr "Fallo: "
-
-#: ../../enterprise/operation/agentes/wux_console_view.php:369
-#: ../../enterprise/operation/agentes/wux_console_view.php:373
-#: ../../include/functions_alerts.php:678
-msgid "Unknown status"
-msgstr "Estado desconocido"
-
-#: ../../enterprise/operation/agentes/wux_console_view.php:378
-msgid "Success: "
-msgstr "Éxito: "
-
-#: ../../enterprise/operation/agentes/wux_console_view.php:384
-msgid "Total transaction time: "
-msgstr "Tiempo total de la transacción: "
-
-#: ../../enterprise/operation/agentes/wux_console_view.php:398
-#, php-format
-msgid "Execution results for transaction %s"
-msgstr "Resultados de ejecución de la transacción %s"
-
-#: ../../enterprise/operation/agentes/wux_console_view.php:527
-msgid "View all stats"
-msgstr "Ver todas las estadísticas"
-
-#: ../../enterprise/operation/agentes/wux_console_view.php:570
-#: ../../enterprise/operation/agentes/ux_console_view.php:332
-msgid "Transaction history"
-msgstr "Histórico de transacciones"
-
-#: ../../enterprise/operation/agentes/wux_console_view.php:593
-#: ../../enterprise/godmode/reporting/visual_console_template.php:305
-#: ../../enterprise/godmode/setup/setup_acl.php:791
-#: ../../include/functions_visual_map.php:2833
-#: ../../include/ajax/visual_console_builder.ajax.php:343
-msgid "No data to show"
-msgstr "No hay datos que mostrar"
-
-#: ../../enterprise/operation/agentes/wux_console_view.php:611
-msgid "Invalid transaction."
-msgstr "Transacción no válida"
-
-#: ../../enterprise/operation/agentes/tag_view.php:41
-#: ../../enterprise/operation/menu.php:191
-msgid "Tag view"
-msgstr "Visor de etiquetas"
-
-#: ../../enterprise/operation/agentes/tag_view.php:1075
-#: ../../include/functions_reporting.php:12370
-#: ../../include/functions_reporting.php:12379
-#, php-format
-msgid "%d Total modules"
-msgstr "%d módulos totales"
-
-#: ../../enterprise/operation/agentes/tag_view.php:1076
-#: ../../include/functions_reporting.php:12371
-#, php-format
-msgid "%d Modules in normal status"
-msgstr "%d módulos en estado normal"
-
-#: ../../enterprise/operation/agentes/tag_view.php:1077
-#: ../../include/functions_reporting.php:12372
-#, php-format
-msgid "%d Modules in critical status"
-msgstr "%d módulos en estado crítico"
-
-#: ../../enterprise/operation/agentes/tag_view.php:1078
-#: ../../include/functions_reporting.php:12373
-#, php-format
-msgid "%d Modules in warning status"
-msgstr "%d módulos en estado de advertencia"
-
-#: ../../enterprise/operation/agentes/tag_view.php:1079
-#: ../../include/functions_reporting.php:12374
-#, php-format
-msgid "%d Modules in unknown status"
-msgstr "%d módulos en estado desconocido"
-
-#: ../../enterprise/operation/agentes/tag_view.php:1080
-#: ../../include/functions_reporting.php:12375
-#, php-format
-msgid "%d Modules in not init status"
-msgstr "%d módulos en estado no iniciado"
-
-#: ../../enterprise/operation/agentes/ver_agente.php:258
-msgid "URL Route Analyzer"
-msgstr "Analizador de ruta de URL"
-
-#: ../../enterprise/operation/agentes/ver_agente.php:274
-msgid "UX Console"
-msgstr "Consola UX"
-
-#: ../../enterprise/operation/agentes/ver_agente.php:290
-msgid "WUX Console"
-msgstr "Consola WUX"
-
-#: ../../enterprise/operation/agentes/policy_view.php:38
-msgid "This agent has no policy assigned"
-msgstr "Este agente no tiene ninguna política asignada."
-
-#: ../../enterprise/operation/agentes/policy_view.php:58
-#: ../../enterprise/godmode/massive/massive_edit_tags_policy.php:40
-#: ../../enterprise/godmode/massive/massive_add_alerts_policy.php:38
-#: ../../enterprise/godmode/massive/massive_tags_edit_policy.php:40
-#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:38
-#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:38
-#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:40
-#: ../../enterprise/godmode/policies/policies.php:268
-#: ../../enterprise/godmode/policies/policy_external_alerts.php:309
-#: ../../enterprise/godmode/policies/policy_modules.php:476
-#: ../../enterprise/godmode/policies/policy_collections.php:50
-#: ../../enterprise/godmode/policies/policy_inventory_modules.php:91
-#: ../../enterprise/godmode/policies/policy_linking.php:117
-#: ../../enterprise/godmode/policies/policy_plugins.php:38
-#: ../../enterprise/godmode/policies/configure_policy.php:81
-#: ../../enterprise/godmode/policies/policy_agents.php:326
-#: ../../enterprise/godmode/policies/policy_alerts.php:64
-#: ../../enterprise/godmode/policies/policy_queue.php:218
-#, php-format
-msgid ""
-"This node is configured with centralized mode. All policies information is "
-"read only. Go to %s to manage it."
-msgstr ""
-"Este nodo esta configurado con el modo centralizado. Toda la información de "
-"las políticas está en modo lectura. Vaya a %s para administrarlo."
-
-#: ../../enterprise/operation/agentes/policy_view.php:69
-#: ../../enterprise/godmode/policies/policy_agents.php:856
-#: ../../enterprise/godmode/policies/policy_agents.php:1371
-msgid "Last application"
-msgstr "Última aplicación"
-
-#: ../../enterprise/operation/agentes/policy_view.php:70
-#: ../../include/functions_events.php:2630
-msgid "V."
-msgstr "V."
-
-#: ../../enterprise/operation/agentes/policy_view.php:83
-#: ../../enterprise/godmode/policies/policy_agents.php:1102
-#: ../../enterprise/godmode/policies/policy_agents.php:1427
-msgid "Policy applied"
-msgstr "Política aplicada"
-
-#: ../../enterprise/operation/agentes/policy_view.php:89
-msgid "Policy outdate"
-msgstr "Política obsoleta"
-
-#: ../../enterprise/operation/agentes/policy_view.php:159
-#: ../../enterprise/operation/agentes/policy_view.php:169
-msgid "Toggle the collection table"
-msgstr "Cambiar la tabla de la colección"
-
-#: ../../enterprise/operation/agentes/policy_view.php:165
-msgid "Descripttion"
-msgstr "Descripción"
-
-#: ../../enterprise/operation/agentes/policy_view.php:173
-msgid "Show Collection"
-msgstr "Mostrar colecciones"
-
-#: ../../enterprise/operation/agentes/policy_view.php:253
-#: ../../enterprise/operation/agentes/policy_view.php:265
-msgid "Toggle the alert table"
-msgstr "Cambia a la tabla de alertas"
-
-#: ../../enterprise/operation/agentes/policy_view.php:269
-msgid "Show Alert"
-msgstr "Mostrar alertas"
-
-#: ../../enterprise/operation/agentes/policy_view.php:390
-#: ../../enterprise/operation/agentes/policy_view.php:402
-msgid "Toggle the module table"
-msgstr "Cambiar a la tabla de alertas"
-
-#: ../../enterprise/operation/agentes/policy_view.php:394
-msgid "Relationship"
-msgstr "Relación"
-
-#: ../../enterprise/operation/agentes/policy_view.php:394
-#: ../../enterprise/godmode/policies/policy_agents.php:849
-msgid "R."
-msgstr "R."
-
-#: ../../enterprise/operation/agentes/policy_view.php:406
-msgid "Show Modules"
-msgstr "Mostrar módulos"
-
-#: ../../enterprise/operation/agentes/policy_view.php:425
-msgid "(Un-adopted)"
-msgstr "(Desadoptados)"
-
-#: ../../enterprise/operation/agentes/policy_view.php:428
-msgid "(Adopted)"
-msgstr "(Adoptados)"
-
-#: ../../enterprise/operation/agentes/policy_view.php:433
-msgid "(Un-adopted) (Unlinked)"
-msgstr "(Desadoptados)(Desvinculados)"
-
-#: ../../enterprise/operation/agentes/policy_view.php:436
-msgid "(Adopted) (Unlinked)"
-msgstr "(Adoptados)(Desvinculados)"
-
-#: ../../enterprise/operation/agentes/ux_console_view.php:43
-msgid "No ux transaction selected."
-msgstr "Ninguna transacción UX seleccionada"
-
-#: ../../enterprise/operation/agentes/ux_console_view.php:124
-msgid "No ux transactions found."
-msgstr "Ninguna transacción UX encontrada"
-
-#: ../../enterprise/operation/agentes/ux_console_view.php:168
-msgid "Execution results for transaction "
-msgstr "Resultados de ejecución para la transacción "
-
-#: ../../enterprise/operation/menu.php:32
-msgid "Cluster View"
-msgstr "Visor de clústers"
-
-#: ../../enterprise/operation/menu.php:45
-#: ../../enterprise/godmode/reporting/aws_view.php:106
-#: ../../enterprise/godmode/reporting/aws_view.php:139
-msgid "AWS View"
-msgstr "Vista AWS"
-
-#: ../../enterprise/operation/menu.php:143
-msgid "Transactional map"
-msgstr "Mapa transaccional"
-
-#: ../../enterprise/operation/menu.php:160
-#: ../../enterprise/godmode/reporting/mysql_builder.php:79
-#: ../../enterprise/godmode/reporting/mysql_builder.php:206
-msgid "Custom SQL"
-msgstr "SQL personalizado"
-
-#: ../../enterprise/operation/menu.php:181
-#: ../../enterprise/operation/log/log_viewer.php:377
-#: ../../enterprise/operation/log/log_viewer.php:417
-#: ../../enterprise/operation/log/elasticsearch_interface.php:31
-#: ../../enterprise/meta/advanced/metasetup.php:80
-#: ../../enterprise/meta/advanced/metasetup.php:223
-#: ../../enterprise/meta/general/main_header.php:143
-#: ../../enterprise/meta/general/main_menu.php:247
-#: ../../enterprise/meta/include/functions_meta.php:293
-msgid "Log viewer"
-msgstr "Visor de logs"
-
-#: ../../enterprise/operation/menu.php:200
-#: ../../enterprise/include/class/ManageBackups.class.php:121
-msgid "DB Backup Manager"
-msgstr "Backup Manager de la BBDD"
-
-#: ../../enterprise/operation/menu.php:211
-#: ../../enterprise/operation/log/log_viewer.php:391
-#: ../../enterprise/operation/log/elasticsearch_interface.php:39
-msgid "Elasticsearch Interface"
-msgstr "Interfaz de ElasticSearch"
-
-#: ../../enterprise/operation/inventory/inventory.php:275
-msgid "You must select at least one filter."
-msgstr "Debe seleccionar al menos un filtro."
-
-#: ../../enterprise/operation/inventory/inventory.php:424
-msgid "Order by agent"
-msgstr "Ordenar por agente"
-
-#: ../../enterprise/operation/inventory/inventory.php:466
-msgid "Export this list to CSV"
-msgstr "Exportar esta lista a CSV"
-
-#: ../../enterprise/operation/log/log_viewer.php:405
-#: ../../enterprise/operation/log/log_viewer.php:424
-#: ../../enterprise/operation/log/log_viewer.php:435
-msgid "Log sources"
-msgstr "Fuentes de log"
-
-#: ../../enterprise/operation/log/log_viewer.php:477
-#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:189
-#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:244
-#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3504
-#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3579
-#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3735
-#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3806
-#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:4240
-#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:4385
-msgid "Exact match"
-msgstr "Coincidencia exacta"
-
-#: ../../enterprise/operation/log/log_viewer.php:478
-msgid "All words"
-msgstr "Todas las palabras"
-
-#: ../../enterprise/operation/log/log_viewer.php:479
-msgid "Any word"
-msgstr "Cualquier palabra"
-
-#: ../../enterprise/operation/log/log_viewer.php:482
-msgid "Search mode"
-msgstr "Modo de búsqueda"
-
-#: ../../enterprise/operation/log/log_viewer.php:529
-msgid "Full context"
-msgstr "Contexto completo"
-
-#: ../../enterprise/operation/log/log_viewer.php:667
-#: ../../enterprise/operation/log/log_viewer.php:668
-msgid "Edit sources"
-msgstr "Editar fuentes"
-
-#: ../../enterprise/operation/log/log_viewer.php:711
-msgid "Show log entries"
-msgstr "Mostrar entradas de log"
-
-#: ../../enterprise/operation/log/log_viewer.php:712
-msgid "Graph log results"
-msgstr "Resultados de logs de gráficas"
-
-#: ../../enterprise/operation/log/log_viewer.php:714
-msgid "Display mode"
-msgstr "Modo de visualización"
-
-#: ../../enterprise/operation/log/log_viewer.php:727
-msgid "Use capture model"
-msgstr "Usar modelo de captura"
-
-#: ../../enterprise/operation/log/log_viewer.php:757
-msgid "Create new model"
-msgstr "Crear nuevo modelo"
-
-#: ../../enterprise/operation/log/log_viewer.php:764
-msgid "Graph type"
-msgstr "Tipo de gráfica"
-
-#: ../../enterprise/operation/log/log_viewer.php:779
-msgid "Advanced options "
-msgstr "Opciones avanzadas "
-
-#: ../../enterprise/operation/log/log_viewer.php:899
-msgid ""
-"The maximum limit of rows has been exceeded. Please enter an email to send the "
-"csv file"
-msgstr ""
-"El límite máximo de filas se ha superado. Añada un correo electrónico para "
-"enviar el archivo CSV"
-
-#: ../../enterprise/operation/log/log_viewer.php:901
-msgid "e-mail address"
-msgstr "dirección de correo electrónico"
-
-#: ../../enterprise/operation/log/log_viewer.php:904
-msgid ""
-"WARNING: If your email size exceeds your mail attachment size limit, the file "
-"will be saved in the local attachment folder."
-msgstr ""
-"ADVERTENCIA: Si el tamaño del correo electrónico supera el límite de tamaño de "
-"archivo adjunto, el archivo se guardará en la carpeta de adjuntos local."
-
-#: ../../enterprise/operation/log/log_viewer.php:1022
-msgid "The start date cannot be greater than the end date"
-msgstr "La fecha de inicio no puede ser posterior a la fecha de finalización."
-
-#: ../../enterprise/operation/log/log_viewer.php:1450
-msgid "Add new capture model"
-msgstr "Añadir nuevo modelo de captura"
-
-#: ../../enterprise/operation/log/log_viewer.php:1453
-msgid "Edit capture model"
-msgstr "Editar modelo de captura"
-
-#: ../../enterprise/operation/log/log_viewer.php:1536
-msgid "Error create new model"
-msgstr "Error al crear nuevo modelo"
-
-#: ../../enterprise/operation/log/log_viewer.php:1563
-msgid "Error delete model"
-msgstr "Error al borrar modelo"
-
-#: ../../enterprise/operation/log/log_viewer.php:1609
-msgid "Error update model"
-msgstr "Error al actualizar modelo"
-
-#: ../../enterprise/operation/log/elasticsearch_interface.php:49
-msgid ""
-"This is a view to interface with Elasticsearch directly from WEB console. \n"
-"Please note that you can damage your Elasticsearch if you don`t know exactly "
-"what are you are doing. \n"
-"This view is intended to be used only by users with a knowledge of "
-"Elasticsearch"
-msgstr ""
-"Esta es una vista de la interfaz de ElasticSearch directamente desde la "
-"consola WEB. \n"
-"Tenga en cuenta que puede provocar fallos en ElasticSearch si no sabe lo que "
-"está haciendo con exactitud. \n"
-"Esta vista esta destinada a aquellos usuarios que conocen bien ElasticSearch"
-
-#: ../../enterprise/operation/services/services.treeview_services.php:111
-#: ../../enterprise/operation/services/services.list.php:284
-#: ../../enterprise/operation/services/services.table_services.php:206
-msgid "Show only favourites"
-msgstr "Mostrar solo favoritos"
-
-#: ../../enterprise/operation/services/services.treeview_services.php:151
-msgid "No favourite services defined."
-msgstr "No hay servicios favoritos definidos."
-
-#: ../../enterprise/operation/services/services.treeview_services.php:153
-#: ../../enterprise/operation/services/services.list.php:447
-#: ../../enterprise/operation/services/services.list.php:456
-#: ../../enterprise/operation/services/services.table_services.php:359
-#: ../../enterprise/operation/services/services.table_services.php:365
-msgid "No services defined."
-msgstr "No hay servicios definidos"
-
-#: ../../enterprise/operation/services/services.treeview_services.php:181
-#: ../../enterprise/operation/services/services.list.php:719
-#: ../../enterprise/operation/services/services.table_services.php:450
-msgid "Create Service"
-msgstr "Crear servicio"
-
-#: ../../enterprise/operation/services/services.service.php:55
-#: ../../enterprise/operation/services/services.service_map.php:62
-#: ../../enterprise/godmode/services/services.service.php:303
-#: ../../enterprise/godmode/services/services.service.php:346
-msgid "Not found"
-msgstr "No encontrado"
-
-#: ../../enterprise/operation/services/services.service.php:63
-#: ../../enterprise/operation/services/services.service_map.php:71
-#: ../../include/lib/Dashboard/Widgets/service_map.php:192
-msgid "Service Map"
-msgstr "Mapa de servicio"
-
-#: ../../enterprise/operation/services/services.service.php:90
-msgid "No Services"
-msgstr "Sin servicios"
-
-#: ../../enterprise/operation/services/services.service.php:128
-#: ../../enterprise/operation/services/services.list.php:508
-#: ../../enterprise/include/functions_reporting_csv.php:1991
-#: ../../include/functions_reports.php:698
-#: ../../include/functions_reports.php:703
-#: ../../include/functions_reports.php:707
-#: ../../include/functions_reports.php:711
-#: ../../include/functions_reports.php:717
-msgid "SLA"
-msgstr "SLA"
-
-#: ../../enterprise/operation/services/services.service.php:203
-#: ../../enterprise/operation/services/services.list.php:586
-msgid "SLA graph"
-msgstr "Gráfico SLA"
-
-#: ../../enterprise/operation/services/services.service.php:227
-msgid "List of elements"
-msgstr "Lista de elementos"
-
-#: ../../enterprise/operation/services/services.php:90
-#: ../../enterprise/operation/services/services.php:182
-#: ../../enterprise/godmode/services/services.service.php:388
-#: ../../enterprise/godmode/services/services.elements.php:697
-msgid "Services list"
-msgstr "Lista de servicios"
-
-#: ../../enterprise/operation/services/services.php:105
-#: ../../enterprise/godmode/services/services.service.php:402
-#: ../../enterprise/godmode/services/services.elements.php:711
-msgid "Config Service"
-msgstr "Configurar servicios"
-
-#: ../../enterprise/operation/services/services.php:123
-#: ../../enterprise/godmode/services/services.service.php:419
-#: ../../enterprise/godmode/services/services.elements.php:728
-msgid "Config Elements"
-msgstr "Configurar elementos"
-
-#: ../../enterprise/operation/services/services.php:136
-#: ../../enterprise/godmode/services/services.service.php:431
-#: ../../enterprise/godmode/services/services.elements.php:740
-msgid "Bulk service elements operations"
-msgstr "Operaciones de elementos de servicio masivos"
-
-#: ../../enterprise/operation/services/services.php:152
-#: ../../enterprise/godmode/services/services.service.php:446
-#: ../../enterprise/godmode/services/services.elements.php:755
-msgid "View Service"
-msgstr "Ver servicio"
-
-#: ../../enterprise/operation/services/services.php:164
-#: ../../enterprise/godmode/services/services.service.php:457
-#: ../../enterprise/godmode/services/services.elements.php:766
-#: ../../include/lib/Dashboard/Widgets/service_map.php:449
-msgid "Service map"
-msgstr "Mapa del servicio"
-
-#: ../../enterprise/operation/services/services.php:197
-msgid "Service table view"
-msgstr "Vista de tabla de servicios"
-
-#: ../../enterprise/operation/services/services.php:212
-msgid "Service tree view"
-msgstr "Vista de árbol de servicios"
-
-#: ../../enterprise/operation/services/services.php:229
-msgid "Bulk creation"
-msgstr "Creación masiva"
-
-#: ../../enterprise/operation/services/services.list.php:62
-msgid "List of services"
-msgstr "de los Servicios"
-
-#: ../../enterprise/operation/services/services.list.php:100
-msgid "Services successfully deleted"
-msgstr "Servicios eliminados correctamente"
-
-#: ../../enterprise/operation/services/services.list.php:101
-#, php-format
-msgid "Error while deleting services: %s"
-msgstr "Error al eliminar servicios: %s"
-
-#: ../../enterprise/operation/services/services.list.php:104
-#: ../../enterprise/include/functions_visual_map.php:683
-msgid "No services selected"
-msgstr "Ningún servicio seleccionado"
-
-#: ../../enterprise/operation/services/services.list.php:118
-msgid "Service deleted successfully"
-msgstr "Servicio eliminado correctamente"
-
-#: ../../enterprise/operation/services/services.list.php:119
-#, php-format
-msgid "Error deleting service %s"
-msgstr "Error al eliminar el servicio %s"
-
-#: ../../enterprise/operation/services/services.list.php:127
-msgid "Service forced successfully"
-msgstr "Servicio forzado correctamente"
-
-#: ../../enterprise/operation/services/services.list.php:128
-msgid "Error service forced"
-msgstr "Error al forzar el servicio"
-
-#: ../../enterprise/operation/services/services.list.php:276
-#: ../../enterprise/operation/services/services.table_services.php:198
-#: ../../enterprise/godmode/massive/massive_create_services.php:699
-#: ../../enterprise/godmode/services/services.service.php:651
-msgid "Smart"
-msgstr "Inteligente"
-
-#: ../../enterprise/operation/services/services.list.php:298
-#: ../../enterprise/operation/services/services.table_services.php:220
-msgid "Show only root services"
-msgstr "Mostrar solo los servicios root"
-
-#: ../../enterprise/operation/services/services.list.php:590
-msgid "Status graph"
-msgstr "Gráfica de estados"
-
-#: ../../enterprise/tools/ipam/ipam_network_location_config.php:110
-#, php-format
-msgid "%d/%d items deleted"
-msgstr "Elementos %d/%d eliminados"
-
-#: ../../enterprise/tools/ipam/ipam_network_location_config.php:112
-msgid "Failed to delete items"
-msgstr "Error al eliminar elementos"
-
-#: ../../enterprise/tools/ipam/ipam_network_location_config.php:167
-msgid "Search filter by name or network address"
-msgstr "Filtro de búsqueda por nombre o dirección de red"
-
-#: ../../enterprise/tools/ipam/ipam_network_location_config.php:273
-msgid "No locations found"
-msgstr "No se encontraron ubicaciones"
-
-#: ../../enterprise/tools/ipam/ipam_network_location_config.php:309
-msgid "There are no defined network locations"
-msgstr "No hay ubicaciones de red definidas"
-
-#: ../../enterprise/tools/ipam/ipam.php:52 ../../extensions/files_repo.php:122
-#: ../../extensions/files_repo.php:210
-msgid "Operation view"
-msgstr "Vista de operación"
-
-#: ../../enterprise/tools/ipam/ipam.php:78
-#: ../../enterprise/tools/ipam/ipam.php:356
-msgid "Subnetworks calculator"
-msgstr "Calculadora de subredes"
-
-#: ../../enterprise/tools/ipam/ipam.php:96
-msgid "Vlan config"
-msgstr "Configuración de vlan"
-
-#: ../../enterprise/tools/ipam/ipam.php:114
-msgid "Vlan wizard"
-msgstr "Asistente de vlan"
-
-#: ../../enterprise/tools/ipam/ipam.php:133
-msgid "Supernet treeview"
-msgstr "Vísta de árbol de superredes"
-
-#: ../../enterprise/tools/ipam/ipam.php:152
-msgid "Network locations"
-msgstr "Ubicaciones de red"
-
-#: ../../enterprise/tools/ipam/ipam.php:171
-#: ../../enterprise/tools/ipam/ipam.php:411
-#: ../../enterprise/tools/ipam/ipam_editor.php:224
-msgid "Sites"
-msgstr "Sitios"
-
-#: ../../enterprise/tools/ipam/ipam.php:196
-msgid "Vlan statistics"
-msgstr "Estadísticas de vlan"
-
-#: ../../enterprise/tools/ipam/ipam.php:216
-#: ../../enterprise/tools/ipam/ipam.php:381
-msgid "Supernet config"
-msgstr "Configuración de superred"
-
-#: ../../enterprise/tools/ipam/ipam.php:237
-#: ../../enterprise/tools/ipam/ipam.php:396
-msgid "Supernet statistics"
-msgstr "Estadísticas de superred"
-
-#: ../../enterprise/tools/ipam/ipam.php:257
-msgid "Supernet map"
-msgstr "Mapa de superred"
-
-#: ../../enterprise/tools/ipam/ipam.php:280
-#: ../../enterprise/tools/ipam/ipam_list.php:685
-msgid "Manage addresses"
-msgstr "Administrar direcciones"
-
-#: ../../enterprise/tools/ipam/ipam.php:320
-#: ../../enterprise/tools/ipam/ipam_list.php:694
-msgid "Addresses view"
-msgstr "Vista de direcciones"
-
-#: ../../enterprise/tools/ipam/ipam.php:352
-msgid "/tools/ipam/ipam_network.php"
-msgstr "/tools/ipam/ipam_network.php"
-
-#: ../../enterprise/tools/ipam/ipam.php:366
-msgid "VLAN Config"
-msgstr "Configuración de VLAN"
-
-#: ../../enterprise/tools/ipam/ipam.php:371
-msgid "VLAN Wizard"
-msgstr "Asistente de VLAN"
-
-#: ../../enterprise/tools/ipam/ipam.php:376
-msgid "VLAN Statistics"
-msgstr "Estadísticas VLAN"
-
-#: ../../enterprise/tools/ipam/ipam.php:386
-msgid "Network location config"
-msgstr "Configuración de ubicación de red"
-
-#: ../../enterprise/tools/ipam/ipam.php:391
-msgid "Supernet wizard"
-msgstr "Asistente de superredes"
-
-#: ../../enterprise/tools/ipam/ipam.php:401
-msgid "Supernet Map"
-msgstr "Mapa de superred"
-
-#: ../../enterprise/tools/ipam/ipam.php:406
-msgid "Supernet Treeview"
-msgstr "Superred creada"
-
-#: ../../enterprise/tools/ipam/ipam.php:432
-msgid "Operation View"
-msgstr "Vista de operación"
-
-#: ../../enterprise/tools/ipam/ipam.php:453 ../../enterprise/godmode/menu.php:322
-#: ../../include/functions_reports.php:692
-msgid "IPAM"
-msgstr "IPAM"
-
-#: ../../enterprise/tools/ipam/ipam_supernet_treeview.php:94
-msgid "Found supernets"
-msgstr "Superredes encontradas"
-
-#: ../../enterprise/tools/ipam/ipam_action.php:121
-#: ../../enterprise/tools/ipam/ipam_action.php:240
-#: ../../enterprise/tools/ipam/ipam_list.php:383
-msgid "The location is not filled, please add a location."
-msgstr "La ubicación no está indicada. Por favor, añade una ubicación."
-
-#: ../../enterprise/tools/ipam/ipam_action.php:138
-#: ../../enterprise/tools/ipam/ipam_action.php:270
-#: ../../enterprise/tools/ipam/ipam_list.php:400
-msgid "Incorrect format in Subnet field"
-msgstr "Formato incorrecto en el campo Subred"
-
-#: ../../enterprise/tools/ipam/ipam_action.php:198
-#, php-format
-msgid "Network could not be added to supernet %s (%s)"
-msgstr "No se pudo agregar la red a la superred %s (%s)"
-
-#: ../../enterprise/tools/ipam/ipam_action.php:202
-#, php-format
-msgid "Network added to supernet %s (%s)"
-msgstr "Red agregada a la %s de superred (%s)"
-
-#: ../../enterprise/tools/ipam/ipam_action.php:207
-#, php-format
-msgid "Network name already exists in supernet %s (%s)"
-msgstr "El nombre de red ya existe en la superred %s (%s)"
-
-#: ../../enterprise/tools/ipam/ipam_action.php:219
-#: ../../enterprise/tools/ipam/ipam_list.php:425
-#, php-format
-msgid "Could not be created: %s"
-msgstr "No se ha podido crear: %s"
-
-#: ../../enterprise/tools/ipam/ipam_action.php:380
-#: ../../update_manager_client/views/offline.php:79
-#: ../../update_manager_client/views/online.php:94
-msgid "Successfully updated."
-msgstr "Actualizado correctamente"
-
-#: ../../enterprise/tools/ipam/ipam_action.php:385
-#: ../../include/functions_reporting.php:2590
-msgid "No changes found."
-msgstr "No se han encontrado cambios"
-
-#: ../../enterprise/tools/ipam/ipam_vlan_network.php:39
-#: ../../enterprise/tools/ipam/ipam_list.php:151
-#: ../../enterprise/tools/ipam/ipam_list.php:602
-#: ../../enterprise/tools/ipam/ipam_vlan_config.php:339
-#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:58
-#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:62
-#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:67
-msgid "Vlan"
-msgstr "Vlan"
-
-#: ../../enterprise/tools/ipam/ipam_supernet_config.php:52
-#: ../../enterprise/tools/ipam/ipam_supernet_config.php:100
-msgid "There is no supernet name. Please introduce a name"
-msgstr "No hay nombre de superred. Añada un nombre."
-
-#: ../../enterprise/tools/ipam/ipam_supernet_config.php:56
-#: ../../enterprise/tools/ipam/ipam_supernet_config.php:104
-msgid "There is no supernet address. Please introduce a address"
-msgstr "No hay dirección de superred. Añada una dirección."
-
-#: ../../enterprise/tools/ipam/ipam_supernet_config.php:60
-#: ../../enterprise/tools/ipam/ipam_supernet_config.php:108
-msgid "There is no supernet mask. Please introduce a mask"
-msgstr "No hay máscara de superred. Añada una máscara"
-
-#: ../../enterprise/tools/ipam/ipam_supernet_config.php:64
-msgid "There is no valid address. Please introduce a address"
-msgstr "No hay dirección válida. Añada una dirección."
-
-#: ../../enterprise/tools/ipam/ipam_supernet_config.php:68
-msgid "There is no valid mask. Please introduce a mask"
-msgstr "No hay máscara válida. Añada una máscara"
-
-#: ../../enterprise/tools/ipam/ipam_supernet_config.php:83
-msgid "Supernet created"
-msgstr "Superred creada."
-
-#: ../../enterprise/tools/ipam/ipam_supernet_config.php:85
-msgid "Supernet not created"
-msgstr "Superred no creada"
-
-#: ../../enterprise/tools/ipam/ipam_supernet_config.php:89
-#: ../../enterprise/tools/ipam/ipam_supernet_config.php:135
-msgid "Supernet name exists in bbdd, please select other name"
-msgstr ""
-"El nombre de la superred existe en la base de datos, seleccione otro nombre."
-
-#: ../../enterprise/tools/ipam/ipam_supernet_config.php:129
-msgid "Supernet updated"
-msgstr "Superred actualizada"
-
-#: ../../enterprise/tools/ipam/ipam_supernet_config.php:131
-msgid "Supernet not updated"
-msgstr "Superred no actualizada"
-
-#: ../../enterprise/tools/ipam/ipam_supernet_config.php:156
-msgid "Could not be deleted, please select supernet"
-msgstr "No se ha podido borrar, seleccione una superred"
-
-#: ../../enterprise/tools/ipam/ipam_supernet_config.php:232
-msgid "Network name cannot be repeated in this supernet"
-msgstr "El nombre de la red no puede repetirse en la superred"
-
-#: ../../enterprise/tools/ipam/ipam_supernet_config.php:239
-#: ../../enterprise/tools/ipam/ipam_vlan_config.php:170
-msgid "Successfully added networks"
-msgstr "Redes añadidas correctamente"
-
-#: ../../enterprise/tools/ipam/ipam_supernet_config.php:243
-#: ../../enterprise/tools/ipam/ipam_vlan_config.php:174
-msgid "Network could not be added"
-msgstr "No se ha podido añadir la red"
-
-#: ../../enterprise/tools/ipam/ipam_supernet_config.php:248
-#: ../../enterprise/tools/ipam/ipam_vlan_config.php:179
-msgid "Network name could not be added, please select network"
-msgstr "No se ha podido añadir el nombre de la red, seleccione una red"
-
-#: ../../enterprise/tools/ipam/ipam_supernet_config.php:253
-msgid "supernet name could not be added, please select supernet"
-msgstr "No se ha podido añadir el nombre de la superred, seleccione superred"
-
-#: ../../enterprise/tools/ipam/ipam_supernet_config.php:282
-msgid "Could not be deleted, please select supernet and network"
-msgstr "No se ha podido eliminar, seleccione una red y una superred"
-
-#: ../../enterprise/tools/ipam/ipam_supernet_config.php:289
-#, php-format
-msgid "Failed to delete %d/%d networks from supernet"
-msgstr "Error al eliminar las redes %d/%d de la superred"
-
-#: ../../enterprise/tools/ipam/ipam_supernet_config.php:293
-msgid "Successfully deleted network from supernet"
-msgstr "Red eliminada correctamente de la superred"
-
-#: ../../enterprise/tools/ipam/ipam_supernet_config.php:295
-#, php-format
-msgid "Successfully deleted %d/%d networks from supernet"
-msgstr "Redes %d/%d eliminadas correctamente de la superred"
-
-#: ../../enterprise/tools/ipam/ipam_supernet_config.php:298
-#: ../../enterprise/tools/ipam/ipam_vlan_config.php:228
-msgid "No items selected"
-msgstr "No hay elementos seleccionados"
-
-#: ../../enterprise/tools/ipam/ipam_supernet_config.php:339
-#: ../../enterprise/tools/ipam/ipam_supernet_network.php:82
-#: ../../enterprise/include/ajax/ipam.ajax.php:365
-msgid "Supernet"
-msgstr "Superred"
-
-#: ../../enterprise/tools/ipam/ipam_supernet_config.php:367
-#: ../../enterprise/tools/ipam/ipam_calculator.php:84
-#: ../../enterprise/tools/ipam/ipam_excel.php:134
-msgid "Mask"
-msgstr "Máscara"
-
-#: ../../enterprise/tools/ipam/ipam_supernet_config.php:385
-#: ../../enterprise/tools/ipam/ipam_excel.php:135
-msgid "Subneting Mask"
-msgstr "Máscara de subnetting"
-
-#: ../../enterprise/tools/ipam/ipam_supernet_config.php:408
-#: ../../enterprise/tools/ipam/ipam_supernet_config.php:580
-#: ../../enterprise/tools/ipam/ipam_supernet_config.php:867
-#: ../../enterprise/tools/ipam/ipam_list.php:129
-#: ../../enterprise/tools/ipam/ipam_list.php:595
-msgid "Site"
-msgstr "Sitio"
-
-#: ../../enterprise/tools/ipam/ipam_supernet_config.php:443
-#: ../../enterprise/tools/ipam/ipam_supernet_config.php:1111
-msgid "Update Supernet"
-msgstr "Actualizar superred"
-
-#: ../../enterprise/tools/ipam/ipam_supernet_config.php:450
-#: ../../enterprise/tools/ipam/ipam_supernet_config.php:1249
-msgid "New Supernet"
-msgstr "Nueva superred"
-
-#: ../../enterprise/tools/ipam/ipam_supernet_config.php:491
-#, php-format
-msgid "%s supernets created"
-msgstr "%s superredes creadas"
-
-#: ../../enterprise/tools/ipam/ipam_supernet_config.php:493
-msgid "supernets creation failed"
-msgstr "Error en la creación de superredes"
-
-#: ../../enterprise/tools/ipam/ipam_supernet_config.php:504
-#: ../../enterprise/tools/ipam/ipam_list.php:447
-#: ../../enterprise/tools/ipam/ipam_vlan_config.php:316
-#: ../../enterprise/extensions/csv_import_group/main.php:68
-msgid "The CSV file must have the fields in the following order: "
-msgstr "El archivo CSV debe tener los campos en el siguiente orden:"
-
-#: ../../enterprise/tools/ipam/ipam_supernet_config.php:522
-#: ../../enterprise/tools/ipam/ipam_network.php:115
-#: ../../enterprise/tools/ipam/ipam_list.php:50
-#: ../../enterprise/tools/ipam/ipam_vlan_config.php:393
-#: ../../enterprise/include/class/CSVImportAgents.class.php:144
-#: ../../enterprise/extensions/csv_import_group/main.php:84
-msgid "Upload file"
-msgstr "Subir archivo"
-
-#: ../../enterprise/tools/ipam/ipam_supernet_config.php:531
-#: ../../enterprise/tools/ipam/ipam_network.php:124
-#: ../../enterprise/tools/ipam/ipam_list.php:59
-#: ../../enterprise/tools/ipam/ipam_vlan_config.php:402
-#: ../../enterprise/include/class/CSVImportAgents.class.php:161
-#: ../../enterprise/include/class/DeploymentCenter.class.php:1400
-#: ../../enterprise/extensions/csv_import_group/main.php:87
-msgid "Separator"
-msgstr "Separador"
-
-#: ../../enterprise/tools/ipam/ipam_supernet_config.php:544
-#: ../../enterprise/tools/ipam/ipam_network.php:137
-#: ../../enterprise/tools/ipam/ipam_list.php:72
-#: ../../enterprise/tools/ipam/ipam_vlan_config.php:415
-#: ../../enterprise/extensions/csv_import_group/main.php:100
-msgid "Upload CSV file"
-msgstr "Subir archivo CSV"
-
-#: ../../enterprise/tools/ipam/ipam_supernet_config.php:566
-#: ../../enterprise/tools/ipam/ipam_list.php:93
-msgid "Search filter by name, network address or description"
-msgstr "Filtro de búsqueda por nombre, dirección de red o descripción"
-
-#: ../../enterprise/tools/ipam/ipam_supernet_config.php:593
-msgid "Min. networks range"
-msgstr "Rango mínimo de redes"
-
-#: ../../enterprise/tools/ipam/ipam_supernet_config.php:596
-msgid "Max. networks range"
-msgstr "Alcance máx. de las redes"
-
-#: ../../enterprise/tools/ipam/ipam_supernet_config.php:863
-msgid "Address / Masks"
-msgstr "Dirección / Máscaras"
-
-#: ../../enterprise/tools/ipam/ipam_supernet_config.php:865
-msgid "Subneting mask"
-msgstr "Máscara de subred"
-
-#: ../../enterprise/tools/ipam/ipam_supernet_config.php:866
-msgid "Networks range"
-msgstr "Intervalo de red IP"
-
-#: ../../enterprise/tools/ipam/ipam_supernet_config.php:874
-#: ../../enterprise/tools/ipam/ipam_vlan_config.php:688
-msgid "Networks"
-msgstr "Redes"
-
-#: ../../enterprise/tools/ipam/ipam_supernet_config.php:974
-#: ../../enterprise/tools/ipam/ipam_supernet_config.php:1104
-#: ../../enterprise/tools/ipam/ipam_vlan_config.php:702
-#: ../../enterprise/include/ajax/ipam.ajax.php:443
-#: ../../enterprise/include/ajax/ipam.ajax.php:500
-#: ../../enterprise/include/ajax/ipam.ajax.php:531
-#: ../../enterprise/include/ajax/ipam.ajax.php:578
-msgid "No assigned networks"
-msgstr "Redes no asignadas"
-
-#: ../../enterprise/tools/ipam/ipam_supernet_config.php:1035
-msgid "Delete network in supernet"
-msgstr "Eliminar red de superred"
-
-#: ../../enterprise/tools/ipam/ipam_supernet_config.php:1084
-msgid "Manage networks in supernet"
-msgstr "Administrar redes en superred"
-
-#: ../../enterprise/tools/ipam/ipam_supernet_config.php:1118
-msgid "Add network to supernet"
-msgstr "Añadir red a superred"
-
-#: ../../enterprise/tools/ipam/ipam_supernet_config.php:1121
-msgid "Next network"
-msgstr "Siguiente red"
-
-#: ../../enterprise/tools/ipam/ipam_supernet_config.php:1153
-msgid "Delete Supernet"
-msgstr "Borrar superred"
-
-#: ../../enterprise/tools/ipam/ipam_supernet_config.php:1175
-#: ../../enterprise/tools/ipam/ipam_vlan_config.php:871
-#: ../../include/functions_visual_map_editor.php:793
-#: ../../include/rest-api/models/VisualConsole/Items/Group.php:562
-msgid "Show statistics"
-msgstr "Mostrar estadísticas"
-
-#: ../../enterprise/tools/ipam/ipam_supernet_config.php:1242
-msgid "No Supernet found"
-msgstr "Superred no encontrada"
-
-#: ../../enterprise/tools/ipam/ipam_calculator.php:64
-#: ../../enterprise/tools/ipam/ipam_calculator.php:66
-#: ../../enterprise/tools/ipam/ipam_calculator.php:87
-#: ../../enterprise/tools/ipam/ipam_calculator.php:90
-#: ../../enterprise/tools/ipam/ipam_calculator.php:93
-#: ../../enterprise/tools/ipam/ipam_calculator.php:96
-msgid "Example:"
-msgstr "Ejemplo:"
-
-#: ../../enterprise/tools/ipam/ipam_calculator.php:70
-msgid "Bit mask"
-msgstr "Máscara de bit"
-
-#: ../../enterprise/tools/ipam/ipam_calculator.php:71
-msgid "Net mask"
-msgstr "Máscara de red"
-
-#: ../../enterprise/tools/ipam/ipam_calculator.php:74
-msgid "Mask format"
-msgstr "Formato de máscara"
-
-#: ../../enterprise/tools/ipam/ipam_calculator.php:105
-msgid "Calculate"
-msgstr "Calcular"
-
-#: ../../enterprise/tools/ipam/ipam_calculator.php:112
-msgid "Address field is empty"
-msgstr "El campo Dirección está vacío."
-
-#: ../../enterprise/tools/ipam/ipam_calculator.php:120
-msgid "Mask field is empty"
-msgstr "El campo Máscara está vacío."
-
-#: ../../enterprise/tools/ipam/ipam_calculator.php:139
-#: ../../enterprise/tools/ipam/ipam_calculator.php:152
-msgid "Incorrect address format"
-msgstr "Formato de dirección incorrecto"
-
-#: ../../enterprise/tools/ipam/ipam_calculator.php:144
-#: ../../enterprise/tools/ipam/ipam_calculator.php:157
-#: ../../enterprise/tools/ipam/ipam_calculator.php:162
-msgid "Incorrect mask format"
-msgstr "Formato de máscara incorrecto"
-
-#: ../../enterprise/tools/ipam/ipam_calculator.php:190
-msgid "Network mask"
-msgstr "Máscara de red"
-
-#: ../../enterprise/tools/ipam/ipam_calculator.php:211
-msgid "Network wildcard"
-msgstr "Red wildcard"
-
-#: ../../enterprise/tools/ipam/ipam_calculator.php:220
-msgid "Network address"
-msgstr "Dirección de red"
-
-#: ../../enterprise/tools/ipam/ipam_calculator.php:229
-msgid "Broadcast address"
-msgstr "Dirección de difusión"
-
-#: ../../enterprise/tools/ipam/ipam_calculator.php:238
-msgid "First valid IP"
-msgstr "Primera IP válida"
-
-#: ../../enterprise/tools/ipam/ipam_calculator.php:247
-msgid "Last valid IP"
-msgstr "Última IP válida"
-
-#: ../../enterprise/tools/ipam/ipam_calculator.php:257
-msgid "Hosts/Net"
-msgstr "Hosts/Red"
-
-#: ../../enterprise/tools/ipam/ipam_editor.php:56
-msgid "Network not found"
-msgstr "Red no encontrada"
-
-#: ../../enterprise/tools/ipam/ipam_editor.php:122
-msgid "Format: IP/Mask"
-msgstr "Formato: IP/Máscara"
-
-#: ../../enterprise/tools/ipam/ipam_editor.php:136
-msgid "Examples"
-msgstr "Ejemplos"
-
-#: ../../enterprise/tools/ipam/ipam_editor.php:192
-msgid "For example: Central Data Center"
-msgstr "Por ejemplo: Central General de Datos"
-
-#: ../../enterprise/tools/ipam/ipam_editor.php:225
-msgid "For example: Pandora"
-msgstr "Por ejemplo: Pandora"
-
-#: ../../enterprise/tools/ipam/ipam_editor.php:243
-#: ../../enterprise/tools/ipam/ipam_list.php:609
-msgid "Vrf"
-msgstr "Vrf"
-
-#: ../../enterprise/tools/ipam/ipam_editor.php:244
-msgid "Virtual Routing and Forwarding"
-msgstr "Enrutamiento y reenvío virtual"
-
-#: ../../enterprise/tools/ipam/ipam_editor.php:262
-msgid "Include statistical monitors"
-msgstr "Incluir monitores estadísticos"
-
-#: ../../enterprise/tools/ipam/ipam_editor.php:277
-msgid "Lightweight mode"
-msgstr "Modo ligero"
-
-#: ../../enterprise/tools/ipam/ipam_editor.php:278
-msgid "Use quicker network scan"
-msgstr "Usar escaneado de red rápido"
-
-#: ../../enterprise/tools/ipam/ipam_editor.php:294
-msgid "Target group for monitoring agent"
-msgstr "Grupo de destino para agente de monitorización"
-
-#: ../../enterprise/tools/ipam/ipam_editor.php:315
-msgid "Scan interval"
-msgstr "Comprobar intervalo"
-
-#: ../../enterprise/tools/ipam/ipam_editor.php:316
-msgid "0 for manually scan"
-msgstr "0 para comprobación manual"
-
-#: ../../enterprise/tools/ipam/ipam_editor.php:330
-msgid "The list of users can manage the networks in the IPAM."
-msgstr "La lista de usuarios puede administrar las redes en el IPAM."
-
-#: ../../enterprise/tools/ipam/ipam_editor.php:331
-msgid " Only the admin users can manage networks and edit the networks"
-msgstr ""
-" Solo los usuarios administradores pueden administrar redes y editar las redes"
-
-#: ../../enterprise/tools/ipam/ipam_editor.php:332
-msgid "Operator users"
-msgstr "Usuarios del operador"
-
-#: ../../enterprise/tools/ipam/ipam_editor.php:338
-msgid "All users"
-msgstr "Todos los usuarios"
-
-#: ../../enterprise/tools/ipam/ipam_network.php:163
-msgid "No addresses found on this network"
-msgstr "No se han encontrado direcciones en esta red"
-
-#: ../../enterprise/tools/ipam/ipam_network.php:314
-msgid "Edit address"
-msgstr "Modificar dirección"
-
-#: ../../enterprise/tools/ipam/ipam_network.php:327
-msgid "Disabled address"
-msgstr "Deshabilitar direción"
-
-#: ../../enterprise/tools/ipam/ipam_network.php:327
-msgid "This address will not be updated by the server"
-msgstr "Esta dirección no será actualizada por el servidor."
-
-#: ../../enterprise/tools/ipam/ipam_network.php:396
-#: ../../enterprise/tools/ipam/ipam_ajax.php:364
-#: ../../enterprise/include/functions_ipam.php:1644
-#: ../../enterprise/include/functions_ipam.php:1645
-#: ../../enterprise/include/functions_ipam.php:2033
-#: ../../include/class/Diagnostics.class.php:734
-#: ../../include/class/Diagnostics.class.php:752
-msgid "Hostname"
-msgstr "Nombre de host"
-
-#: ../../enterprise/tools/ipam/ipam_network.php:400
-#: ../../enterprise/tools/ipam/ipam_ajax.php:406
-#: ../../enterprise/tools/ipam/ipam_massive.php:103
-#: ../../enterprise/include/functions_ipam.php:1567
-#: ../../enterprise/include/functions_ipam.php:2038
-msgid "Managed"
-msgstr "Gestionado"
-
-#: ../../enterprise/tools/ipam/ipam_network.php:401
-#: ../../enterprise/tools/ipam/ipam_ajax.php:432
-#: ../../enterprise/tools/ipam/ipam_massive.php:103
-#: ../../enterprise/include/functions_ipam.php:1573
-#: ../../enterprise/include/functions_ipam.php:1730
-#: ../../enterprise/include/functions_ipam.php:2039
-msgid "Reserved"
-msgstr "Reservado"
-
-#: ../../enterprise/tools/ipam/ipam_network.php:454
-#: ../../enterprise/tools/ipam/ipam_network.php:533
-#: ../../enterprise/tools/ipam/ipam_network.php:575
-msgid "Change to automatic mode"
-msgstr "Cambiar a modo automático"
-
-#: ../../enterprise/tools/ipam/ipam_network.php:463
-#: ../../enterprise/tools/ipam/ipam_network.php:542
-#: ../../enterprise/tools/ipam/ipam_network.php:584
-msgid "Change to manual mode"
-msgstr "Cambiar a modo manual"
-
-#: ../../enterprise/tools/ipam/ipam_network.php:663
-msgid "Add comments"
-msgstr "Añadir comentarios"
-
-#: ../../enterprise/tools/ipam/ipam_network.php:691
-msgid "Update agent address"
-msgstr "Actualizar dirección de agente"
-
-#: ../../enterprise/tools/ipam/ipam_network.php:857
-msgid "Please, uncheck auto option to set manual agent."
-msgstr "Desmarcar la opción automática para establecer agente manual"
-
-#: ../../enterprise/tools/ipam/ipam_excel.php:136
-#: ../../enterprise/tools/ipam/ipam_excel.php:202
-#: ../../enterprise/include/functions_ipam.php:1555
-#: ../../enterprise/include/functions_ipam.php:1985
-msgid "Total IPs"
-msgstr "IPs totales"
-
-#: ../../enterprise/tools/ipam/ipam_excel.php:137
-#: ../../enterprise/tools/ipam/ipam_excel.php:203
-#: ../../enterprise/include/functions_ipam.php:1986
-msgid "Alive IPs"
-msgstr "IPs activas"
-
-#: ../../enterprise/tools/ipam/ipam_excel.php:138
-#: ../../enterprise/tools/ipam/ipam_excel.php:204
-#: ../../enterprise/include/functions_ipam.php:1987
-msgid "Occupied %"
-msgstr "Ocupado %"
-
-#: ../../enterprise/tools/ipam/ipam_excel.php:139
-#: ../../enterprise/tools/ipam/ipam_excel.php:205
-#: ../../enterprise/include/functions_ipam.php:1988
-msgid "Available %"
-msgstr "Disponible %"
-
-#: ../../enterprise/tools/ipam/ipam_excel.php:140
-#: ../../enterprise/tools/ipam/ipam_excel.php:206
-#: ../../enterprise/include/functions_ipam.php:1989
-msgid "Managed IPs"
-msgstr "IPs gestionadas"
-
-#: ../../enterprise/tools/ipam/ipam_excel.php:141
-#: ../../enterprise/tools/ipam/ipam_excel.php:207
-#: ../../enterprise/include/functions_ipam.php:1990
-msgid "Managed %"
-msgstr "Gestionadas %"
-
-#: ../../enterprise/tools/ipam/ipam_excel.php:142
-#: ../../enterprise/tools/ipam/ipam_excel.php:208
-#: ../../enterprise/include/functions_ipam.php:1991
-msgid "Unmanaged %"
-msgstr "No gestionadas %"
-
-#: ../../enterprise/tools/ipam/ipam_excel.php:143
-#: ../../enterprise/tools/ipam/ipam_excel.php:209
-#: ../../enterprise/include/functions_ipam.php:1992
-msgid "Reserved IPs"
-msgstr "IPs reservadas"
-
-#: ../../enterprise/tools/ipam/ipam_excel.php:144
-#: ../../enterprise/tools/ipam/ipam_excel.php:210
-#: ../../enterprise/include/functions_ipam.php:1993
-msgid "Reserved %"
-msgstr "Reservado %"
-
-#: ../../enterprise/tools/ipam/ipam_excel.php:145
-#: ../../enterprise/tools/ipam/ipam_excel.php:211
-#: ../../enterprise/include/functions_ipam.php:1994
-msgid "Not reserved %"
-msgstr "No reservadas %"
-
-#: ../../enterprise/tools/ipam/ipam_ajax.php:285
-msgid "There is not an available IP."
-msgstr "No hay una IP disponible"
-
-#: ../../enterprise/tools/ipam/ipam_ajax.php:287
-msgid "Next available IP Address is:"
-msgstr "La siguiente IP disponible es:"
-
-#: ../../enterprise/tools/ipam/ipam_ajax.php:313
-msgid "Reserve this IP now"
-msgstr "Reservar esta IP ahora"
-
-#: ../../enterprise/tools/ipam/ipam_ajax.php:329
-msgid "Manage this IP now"
-msgstr "Gestionar esta IP ahora"
-
-#: ../../enterprise/tools/ipam/ipam_ajax.php:374
-msgid "Operating system"
-msgstr "Sistema operativo"
-
-#: ../../enterprise/tools/ipam/ipam_ajax.php:384
-msgid "This agent has other IPs"
-msgstr "Este agente tiene otras IPs."
-
-#: ../../enterprise/tools/ipam/ipam_ajax.php:393
-msgid "Generate events"
-msgstr "Generar eventos"
-
-#: ../../enterprise/tools/ipam/ipam_ajax.php:445
-msgid "Leases Dhcp"
-msgstr "Periodo de concesión Dhcp"
-
-#: ../../enterprise/tools/ipam/ipam_ajax.php:455
-msgid "leased mode"
-msgstr "Modo de concesión"
-
-#: ../../enterprise/tools/ipam/ipam_ajax.php:468
-msgid "leased expiration"
-msgstr "Concesión caducada"
-
-#: ../../enterprise/tools/ipam/ipam_ajax.php:473
-#: ../../include/class/NetworkMap.class.php:2910
-msgid "MAC"
-msgstr "MAC"
-
-#: ../../enterprise/tools/ipam/ipam_ajax.php:489
-#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:424
-msgid "Created"
-msgstr "Creado"
-
-#: ../../enterprise/tools/ipam/ipam_ajax.php:499
-msgid "Edited"
-msgstr "Modificado"
-
-#: ../../enterprise/tools/ipam/ipam_ajax.php:509
-msgid "Tracking"
-msgstr "Seguimiento"
-
-#: ../../enterprise/tools/ipam/ipam_ajax.php:524
-msgid "Ping"
-msgstr "Ping"
-
-#: ../../enterprise/tools/ipam/ipam_ajax.php:540
-#: ../../include/ajax/events.php:1213
-#, php-format
-msgid "Executing command: %s"
-msgstr "Ejecutar comando: %s"
-
-#: ../../enterprise/tools/ipam/ipam_ajax.php:551
-#: ../../include/ajax/events.php:1230 ../../include/ajax/events.php:1254
-msgid "Execute again"
-msgstr "Ejecutar de nuevo"
-
-#: ../../enterprise/tools/ipam/ipam_ajax.php:565
-msgid "Ping to host"
-msgstr "Ping a un host"
-
-#: ../../enterprise/tools/ipam/ipam_list.php:434
-#, php-format
-msgid "%s networks created"
-msgstr "%s redes creadas"
-
-#: ../../enterprise/tools/ipam/ipam_list.php:436
-msgid "Networks creation failed"
-msgstr "Error en la creación de redes"
-
-#: ../../enterprise/tools/ipam/ipam_list.php:501
-msgid "No networks found"
-msgstr "No se ha encontrado ninguna red"
-
-#: ../../enterprise/tools/ipam/ipam_list.php:625
-msgid "IPs"
-msgstr "IPs"
-
-#: ../../enterprise/tools/ipam/ipam_list.php:708
-msgid "Edit network"
-msgstr "Modificar red"
-
-#: ../../enterprise/tools/ipam/ipam_list.php:719
-msgid "Delete network"
-msgstr "Eliminar red"
-
-#: ../../enterprise/tools/ipam/ipam_massive.php:82
-msgid "Addresses"
-msgstr "Direcciones"
-
-#: ../../enterprise/tools/ipam/ipam_vlan_config.php:45
-#: ../../enterprise/tools/ipam/ipam_vlan_config.php:268
-msgid "There is no VLAN name. Please introduce a name"
-msgstr "No hay nombre de vlan. Añada un nombre"
-
-#: ../../enterprise/tools/ipam/ipam_vlan_config.php:49
-#: ../../enterprise/tools/ipam/ipam_vlan_config.php:87
-#: ../../enterprise/tools/ipam/ipam_vlan_config.php:272
-msgid "Custom ID is not valid"
-msgstr "El ID personalizado no es válido"
-
-#: ../../enterprise/tools/ipam/ipam_vlan_config.php:66
-msgid "Vlan created"
-msgstr "Vlan creada"
-
-#: ../../enterprise/tools/ipam/ipam_vlan_config.php:68
-msgid "Vlan not created"
-msgstr "Vlan no creada"
-
-#: ../../enterprise/tools/ipam/ipam_vlan_config.php:72
-#: ../../enterprise/tools/ipam/ipam_vlan_config.php:296
-msgid "VLAN name exists in database, please select another name"
-msgstr ""
-"El nombre de la vlan ya existe en la base de datos, seleccione otro nombre"
-
-#: ../../enterprise/tools/ipam/ipam_vlan_config.php:83
-msgid "There is no vlan name. Please introduce a name"
-msgstr "No hay nombre de vlan. Añada un nombre"
-
-#: ../../enterprise/tools/ipam/ipam_vlan_config.php:109
-msgid "Vlan updated"
-msgstr "Vlan actualizada"
-
-#: ../../enterprise/tools/ipam/ipam_vlan_config.php:111
-msgid "Vlan not updated"
-msgstr "Vlan no actualizada"
-
-#: ../../enterprise/tools/ipam/ipam_vlan_config.php:115
-msgid "Vlan name exists in database, please select other name"
-msgstr ""
-"El nombre de la vlan ya existe en la base de datos, seleccione otro nombre"
-
-#: ../../enterprise/tools/ipam/ipam_vlan_config.php:135
-msgid "Could not be deleted, please select vlan"
-msgstr "No se ha podido borrar, seleccione vlan"
-
-#: ../../enterprise/tools/ipam/ipam_vlan_config.php:163
-msgid "Network name cannot be repeated in this Vlan"
-msgstr "El nombre de la red no se puede repetir en esta vlan"
-
-#: ../../enterprise/tools/ipam/ipam_vlan_config.php:184
-msgid "Vlan name could not be added, please select vlan"
-msgstr "No se ha podido añadir el nombre de la vlan, seleccione vlan"
-
-#: ../../enterprise/tools/ipam/ipam_vlan_config.php:212
-msgid "Could not be deleted, please select VLAN and network"
-msgstr "No se ha podido eliminar, seleccione una VLAN y una red"
-
-#: ../../enterprise/tools/ipam/ipam_vlan_config.php:219
-#, php-format
-msgid "Failed to delete %d/%d networks from VLAN"
-msgstr "Error al eliminar redes %d/%d de VLAN"
-
-#: ../../enterprise/tools/ipam/ipam_vlan_config.php:223
-msgid "Successfully deleted network from VLAN"
-msgstr "Red eliminada correctamente de VLAN"
-
-#: ../../enterprise/tools/ipam/ipam_vlan_config.php:225
-#, php-format
-msgid "Successfully deleted %d/%d networks from VLAN"
-msgstr "Redes %d/%d eliminadas correctamente de VLAN"
-
-#: ../../enterprise/tools/ipam/ipam_vlan_config.php:303
-#, php-format
-msgid "%s VLAN networks have been created"
-msgstr "%s redes VLAN creadas"
-
-#: ../../enterprise/tools/ipam/ipam_vlan_config.php:305
-msgid "Could not create VLAN networks"
-msgstr "No se pudieron crear redes VLAN"
-
-#: ../../enterprise/tools/ipam/ipam_vlan_config.php:366
-#: ../../enterprise/tools/ipam/ipam_vlan_config.php:822
-msgid "Update Vlan"
-msgstr "Actualizar vlan"
-
-#: ../../enterprise/tools/ipam/ipam_vlan_config.php:373
-#: ../../enterprise/tools/ipam/ipam_vlan_config.php:917
-msgid "New Vlan"
-msgstr "Nueva vlan"
-
-#: ../../enterprise/tools/ipam/ipam_vlan_config.php:435
-msgid "Search filter by name"
-msgstr "Filtro de búsqueda por nombre"
-
-#: ../../enterprise/tools/ipam/ipam_vlan_config.php:736
-msgid "Delete network to vlan"
-msgstr "Borrar una red de vlan"
-
-#: ../../enterprise/tools/ipam/ipam_vlan_config.php:796
-msgid "Manage networks in VLAN"
-msgstr "Administrar redes en VLAN"
-
-#: ../../enterprise/tools/ipam/ipam_vlan_config.php:816
-msgid "Not assigned networks"
-msgstr "Redes no asignadas"
-
-#: ../../enterprise/tools/ipam/ipam_vlan_config.php:829
-#: ../../enterprise/tools/ipam/ipam_vlan_config.php:848
-msgid "Add network to Vlan"
-msgstr "Añadir red a vlan"
-
-#: ../../enterprise/tools/ipam/ipam_vlan_config.php:832
-msgid "Create network"
-msgstr "Crear red"
-
-#: ../../enterprise/tools/ipam/ipam_vlan_config.php:865
-msgid "Delete Vlan"
-msgstr "Eliminar vlan"
-
-#: ../../enterprise/tools/ipam/ipam_vlan_config.php:906
-#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:459
-msgid "No vlans found"
-msgstr "No se han encontrado vlans"
-
-#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:58
-msgid "succesfully created"
-msgstr "creado correctamente"
-
-#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:62
-msgid "not created"
-msgstr "no creado"
-
-#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:67
-msgid "exists in bbdd, please select other name"
-msgstr "existe en la base de datos, seleccione otro nombre"
-
-#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:72
-msgid "please, select VLAN to be created"
-msgstr "seleccione una VLAN para crear"
-
-#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:231
-msgid "Please enter adress, for search vlans"
-msgstr "Añada una dirección para buscar vlans"
-
-#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:337
-msgid "privacy pass"
-msgstr "pase privado"
-
-#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:397
-msgid "Run"
-msgstr "Ejecutar"
-
-#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:409
-msgid "Vlan name"
-msgstr "Nombre de vlan"
-
-#: ../../enterprise/tools/ipam/ipam_sites.php:70
-msgid "Successfully saved"
-msgstr "Guardado correctamente"
-
-#: ../../enterprise/tools/ipam/ipam_sites.php:76
-#, php-format
-msgid "Failed to save site %s"
-msgstr "Error al guardar el sitio %s"
-
-#: ../../enterprise/tools/ipam/ipam_sites.php:132
-#, php-format
-msgid "Failed to delete site %s"
-msgstr "Error al eliminar el sitio %s"
-
-#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor_form.php:64
-#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:383
-msgid "Custom OID"
-msgstr "OID personalizado"
-
-#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:225
-#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:237
-msgid "Successfully added trap custom values"
-msgstr "Añadidos correctamente a los valores personalizados del trap"
-
-#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:227
-#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:239
-msgid "Error adding trap custom values"
-msgstr "Error al añadir los valores personalizados del trap"
-
-#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:242
-#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:317
-msgid "This custom OID is preexistent."
-msgstr "El OID personalizado ya existe"
-
-#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:283
-msgid "No change in data"
-msgstr "No hay cambios en los datos"
-
-#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:285
-#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:312
-msgid "Successfully updated trap custom values"
-msgstr "Los valores personalizados del trap se han añadido correctamente."
-
-#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:287
-#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:314
-msgid "Error updating trap custom values"
-msgstr "Error al actualizar los valores personalizados del trap"
-
-#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:330
-msgid "Successfully deleted trap custom values"
-msgstr "Valores personalizados del trap eliminados correctamente"
-
-#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:336
-msgid "Error deleting trap custom values"
-msgstr "Error al eliminar valores personalizados del trap"
-
-#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:342
-#, php-format
-msgid "Uploaded %s/%s traps"
-msgstr "Actualizados %s/%s traps"
-
-#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:346
-msgid "Fail uploaded file"
-msgstr "Error al subir el archivo"
-
-#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:351
-msgid ""
-"MIB files will be loaded and searched for SNMP trap definitions. They will not "
-"be installed on the system! You can use the MIB uploader for that purpose."
-msgstr ""
-"Los archivos MIB se cargarán; se buscaron las definiciones de trap SNMP. ¡No "
-"serán instalados en el sistema! Puedes usar el cargador de MIB para "
-"instalarlos."
-
-#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:360
-msgid "Load MIB"
-msgstr "Cargar MIB"
-
-#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:362
-msgid "Upload MIB"
-msgstr "Actualizar MIB"
-
-#: ../../enterprise/godmode/reporting/reporting_builder.template.php:107
-#: ../../enterprise/godmode/reporting/reporting_builder.template.php:131
-#: ../../enterprise/godmode/reporting/reporting_builder.template.php:193
-#: ../../enterprise/godmode/reporting/reporting_builder.template_editor.php:170
-msgid "Edit template"
-msgstr "Editar plantilla"
-
-#: ../../enterprise/godmode/reporting/reporting_builder.template.php:166
-#: ../../enterprise/godmode/reporting/reporting_builder.template.php:667
-#: ../../enterprise/godmode/reporting/graph_template_list.php:257
-#: ../../enterprise/godmode/reporting/visual_console_template.php:254
-msgid "Create template"
-msgstr "Crear plantilla"
-
-#: ../../enterprise/godmode/reporting/reporting_builder.template.php:181
-msgid "List templates"
-msgstr "Lista de plantillas"
-
-#: ../../enterprise/godmode/reporting/reporting_builder.template.php:661
-msgid "You haven't created templates yet."
-msgstr "Aun no has creado ninguna plantilla."
-
-#: ../../enterprise/godmode/reporting/reporting_builder.template.php:681
-msgid "Generate a dynamic report"
-msgstr "Generar un informe dinámico"
-
-#: ../../enterprise/godmode/reporting/reporting_builder.template.php:749
-#: ../../enterprise/godmode/reporting/graph_template_wizard.php:217
-#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:391
-#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:264
-#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:239
-#: ../../enterprise/godmode/policies/policy_agents.php:499
-#: ../../enterprise/godmode/policies/policy_agents.php:513
-#: ../../enterprise/include/class/Omnishell.class.php:825
-#: ../../enterprise/include/class/Omnishell.class.php:904
-msgid "Filter agent"
-msgstr "Filtrar agente"
-
-#: ../../enterprise/godmode/reporting/reporting_builder.template.php:759
-#: ../../include/functions_reports.php:1380
-msgid "Period "
-msgstr "Periodo "
-
-#: ../../enterprise/godmode/reporting/reporting_builder.template.php:765
-msgid "Set start and end date"
-msgstr "Fije la fecha de inicio y conclusión"
-
-#: ../../enterprise/godmode/reporting/reporting_builder.template.php:815
-msgid "Monthly SLA period"
-msgstr "Periodo SLA mensual"
-
-#: ../../enterprise/godmode/reporting/reporting_builder.template.php:815
-msgid "This field only applies in case of Monthly SLA item."
-msgstr "Este campo solo aplica en el caso de un elemento de SLA mensual."
-
-#: ../../enterprise/godmode/reporting/reporting_builder.template.php:832
-#: ../../enterprise/godmode/reporting/graph_template_wizard.php:228
-#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:415
-#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:281
-msgid "Agents available"
-msgstr "Agentes disponibles"
-
-#: ../../enterprise/godmode/reporting/reporting_builder.template.php:832
-#: ../../enterprise/godmode/reporting/reporting_builder.template.php:834
-#: ../../enterprise/godmode/reporting/graph_template_wizard.php:228
-#: ../../enterprise/godmode/reporting/graph_template_wizard.php:234
-#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:412
-#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:422
-#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:172
-#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:177
-#: ../../include/functions_snmp_browser.php:1511
-#: ../../include/functions_snmp_browser.php:1513
-msgid "Select all"
-msgstr "Seleccionar todo"
-
-#: ../../enterprise/godmode/reporting/reporting_builder.template.php:834
-#: ../../enterprise/godmode/reporting/graph_template_wizard.php:234
-#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:425
-#: ../../enterprise/godmode/reporting/reporting_builder.template_editor.php:208
-#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:287
-msgid "Agents to apply"
-msgstr "Agentes para aplicar"
-
-#: ../../enterprise/godmode/reporting/reporting_builder.template.php:857
-#: ../../enterprise/include/class/Omnishell.class.php:867
-msgid "Add agents"
-msgstr "Añadir agentes"
-
-#: ../../enterprise/godmode/reporting/reporting_builder.template.php:865
-msgid "Undo agents"
-msgstr "Anular agentes"
-
-#: ../../enterprise/godmode/reporting/reporting_builder.template.php:902
-msgid "RegEx agent filter"
-msgstr "Filtro de agente RegEx"
-
-#: ../../enterprise/godmode/reporting/reporting_builder.template.php:903
-#: ../../enterprise/godmode/reporting/reporting_builder.template_editor.php:209
-msgid ""
-"Case insensitive regular expression for agent alias. For example: Network.* "
-"will match with the following agent alias: network_agent1, NetworK CHECKS"
-msgstr ""
-"Expresión regular que no distingue mayúsculas ni minúsculas para el alias de "
-"agente. Por ejemplo: Network.* coincidirá con los siguientes alias de agente: "
-"network_agent1, NetworK CHECKS"
-
-#: ../../enterprise/godmode/reporting/reporting_builder.template.php:918
-msgid "Generate"
-msgstr "Generar"
-
-#: ../../enterprise/godmode/reporting/reporting_builder.template.php:1312
-#: ../../enterprise/godmode/reporting/reporting_builder.template.php:1334
-msgid "Please set agent or agent regex distinct than "
-msgstr "Establezca agente o agente regex diferente a "
-
-#: ../../enterprise/godmode/reporting/reporting_builder.template.php:1342
-msgid "It is not a regular expression "
-msgstr "No es una expresión regular "
-
-#: ../../enterprise/godmode/reporting/reporting_builder.template.php:1344
-msgid "No agent matches regular expression "
-msgstr "Ningún agente coincide con la expresión regular "
-
-#: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:81
-msgid "Advance Reporting"
-msgstr "Informes avanzados"
-
-#: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:97
-msgid "Page orientation"
-msgstr "Orientación de página"
-
-#: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:105
-#: ../../include/functions_visual_map_editor.php:843
-#: ../../include/rest-api/models/VisualConsole/Items/BarsGraph.php:483
-msgid "Vertical"
-msgstr "Vertical"
-
-#: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:114
-#: ../../include/functions_visual_map_editor.php:844
-#: ../../include/rest-api/models/VisualConsole/Items/BarsGraph.php:482
-msgid "Horizontal"
-msgstr "Horizontal"
-
-#: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:116
-#: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:127
-#: ../../enterprise/meta/include/functions_meta.php:1809
-#: ../../include/functions_config.php:1405
-msgid "Font family"
-msgstr "Tipo de letra"
-
-#: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:128
-#: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:131
-#: ../../enterprise/meta/advanced/metasetup.visual.php:1054
-msgid ""
-"The path of custom logos is 'images/custom_logo' in the console installation. "
-"You can upload more files (ONLY JPEG AND PNG) with the upload tool."
-msgstr ""
-"La ruta de los logos personalizados es \"images/custom_logo\" en la "
-"instalación de la consola. Puede añadir más archivos (SOLO JPEG Y PNG) con la "
-"herramienta de añadir."
-
-#: ../../enterprise/godmode/reporting/graph_template_editor.php:58
-msgid "Not created. Blank name"
-msgstr "No creado. Nombre vacío."
-
-#: ../../enterprise/godmode/reporting/graph_template_editor.php:94
-msgid "Graph template editor"
-msgstr "Editor de plantillas gráficas"
-
-#: ../../enterprise/godmode/reporting/graph_template_editor.php:173
-msgid "Template updated successfully"
-msgstr "Plantilla actualizada correctamente"
-
-#: ../../enterprise/godmode/reporting/graph_template_editor.php:174
-#: ../../include/class/ModuleTemplates.class.php:355
-msgid "Error updating template"
-msgstr "Error al actualizar la plantilla"
-
-#: ../../enterprise/godmode/reporting/graph_template_editor.php:219
-msgid "3 hours"
-msgstr "3 horas"
-
-#: ../../enterprise/godmode/reporting/graph_template_editor.php:220
-#: ../../include/ajax/module.php:201
-msgid "6 hours"
-msgstr "6 horas"
-
-#: ../../enterprise/godmode/reporting/graph_template_editor.php:224
-msgid "4 days"
-msgstr "4 días"
-
-#: ../../enterprise/godmode/reporting/graph_template_editor.php:228
-msgid "2 months"
-msgstr "2 meses"
-
-#: ../../enterprise/godmode/reporting/graph_template_editor.php:229
-#: ../../include/ajax/module.php:208
-msgid "6 months"
-msgstr "6 meses"
-
-#: ../../enterprise/godmode/reporting/graph_template_editor.php:230
-#: ../../include/functions.php:2700 ../../include/ajax/module.php:209
-msgid "1 year"
-msgstr "1 año"
-
-#: ../../enterprise/godmode/reporting/graph_template_editor.php:239
-msgid "Stacked"
-msgstr "Apilado"
-
-#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:275
-#: ../../enterprise/godmode/reporting/reporting_builder.global.php:106
-#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:305
-msgid "Elements to apply"
-msgstr "Elementos para aplicar"
-
-#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:298
-msgid "Order:"
-msgstr "Orden:"
-
-#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:334
-msgid ""
-"Show a resume table with max, min, average of total modules on the report "
-"bottom:"
-msgstr ""
-"Muestra una tabla de resumen con el máximo, mínimo y media del total de "
-"módulos en la parte inferior del informe:"
-
-#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:577
-#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2503
-msgid ""
-"If this option was checked, only adding in elements that type of modules "
-"support this option."
-msgstr ""
-"Si se marca esta casilla, la opción solo es posible si se añaden este tipo de "
-"módulos."
-
-#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:685
-#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2901
-msgid "By agent"
-msgstr "Por agente"
-
-#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:695
-#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2911
-msgid "By user validator"
-msgstr "Por usuario que validó"
-
-#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:705
-#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2921
-msgid "By criticity"
-msgstr "Por gravedad"
-
-#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:715
-#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2931
-msgid "Validated vs unvalidated"
-msgstr "Validados vs sin validar"
-
-#: ../../enterprise/godmode/reporting/graph_template_wizard.php:80
-#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:147
-msgid "Cleanup sucessfully"
-msgstr "Limpieza correcta"
-
-#: ../../enterprise/godmode/reporting/graph_template_wizard.php:83
-#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:150
-msgid "Cleanup error"
-msgstr "Error al borrar contenido"
-
-#: ../../enterprise/godmode/reporting/graph_template_wizard.php:135
-msgid "Wizard template"
-msgstr "Plantilla de Wizard"
-
-#: ../../enterprise/godmode/reporting/graph_template_wizard.php:197
-#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:266
-msgid "Clean up template"
-msgstr "Vaciar la plantilla"
-
-#: ../../enterprise/godmode/reporting/graph_template_wizard.php:259
-#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:466
-#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:304
-msgid "Add agents to template"
-msgstr "Añadir agentes a la plantilla"
-
-#: ../../enterprise/godmode/reporting/graph_template_wizard.php:263
-#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:478
-#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:306
-msgid "Undo agents to template"
-msgstr "Deshacer añadir agentes a la plantilla"
-
-#: ../../enterprise/godmode/reporting/graph_template_wizard.php:281
-#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:499
-#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:324
-msgid "Apply template"
-msgstr "Aplicar plantilla"
-
-#: ../../enterprise/godmode/reporting/graph_template_wizard.php:443
-#: ../../enterprise/godmode/reporting/graph_template_wizard.php:475
-#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:830
-#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:861
-#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:631
-#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:661
-msgid "Please set template distinct than "
-msgstr "Por favor, introduce una plantilla distinta a "
-
-#: ../../enterprise/godmode/reporting/graph_template_wizard.php:470
-#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:856
-#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:656
-msgid ""
-"This will be delete all reports created in previous template applications. Do "
-"you want to continue?"
-msgstr ""
-"Esta acción eliminará todos los informes creados en aplicaciones anteriores de "
-"plantillas. ¿Quieres continuar?"
-
-#: ../../enterprise/godmode/reporting/reporting_builder.global.php:46
-#: ../../include/functions_reports.php:815
-msgid "Top n"
-msgstr "Top N"
-
-#: ../../enterprise/godmode/reporting/reporting_builder.global.php:47
-#: ../../enterprise/include/functions_reporting_csv.php:900
-#: ../../include/functions_reports.php:789
-#: ../../include/functions_reporting.php:3048
-msgid "Exception"
-msgstr "Excepción"
-
-#: ../../enterprise/godmode/reporting/reporting_builder.global.php:74
-#: ../../enterprise/include/functions_reporting.php:82
-msgid "Global"
-msgstr "Global"
-
-#: ../../enterprise/godmode/reporting/reporting_builder.global.php:250
-#: ../../enterprise/include/functions_reporting_csv.php:1030
-#: ../../include/functions_reporting_html.php:4693
-msgid "Sum"
-msgstr "Suma"
-
-#: ../../enterprise/godmode/reporting/reporting_builder.global.php:262
-#: ../../enterprise/godmode/reporting/reporting_builder.global.php:392
-#: ../../include/functions_reporting.php:9748
-msgid "Rate"
-msgstr "Tasa"
-
-#: ../../enterprise/godmode/reporting/reporting_builder.global.php:424
-#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2543
-msgid ">="
-msgstr ">="
-
-#: ../../enterprise/godmode/reporting/reporting_builder.global.php:426
-#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2550
-msgid "<"
-msgstr "<"
-
-#: ../../enterprise/godmode/reporting/reporting_builder.global.php:450
-#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2690
-msgid ""
-"Show a resume table with max, min, average of total modules on the report "
-"bottom"
-msgstr ""
-"Mostrar una tabla resumen con el máximo, el mínimo y la media de los módulos "
-"totales al final del informe"
-
-#: ../../enterprise/godmode/reporting/aws_view.php:53
-msgid "Instance"
-msgstr "Instancia"
-
-#: ../../enterprise/godmode/reporting/aws_view.php:54
-#: ../../include/class/Diagnostics.class.php:722
-msgid "CPU"
-msgstr "CPU"
-
-#: ../../enterprise/godmode/reporting/aws_view.php:55
-msgid "IO read"
-msgstr "Lectura IO"
-
-#: ../../enterprise/godmode/reporting/aws_view.php:56
-msgid "IO write"
-msgstr "Escritura IO"
-
-#: ../../enterprise/godmode/reporting/aws_view.php:57
-msgid "Disk read"
-msgstr "Lectura de disco"
-
-#: ../../enterprise/godmode/reporting/aws_view.php:58
-msgid "Disk write"
-msgstr "Escritura en disco"
-
-#: ../../enterprise/godmode/reporting/aws_view.php:59
-msgid "Network in"
-msgstr "Entrada de red"
-
-#: ../../enterprise/godmode/reporting/aws_view.php:60
-msgid "Network out"
-msgstr "Salida de red"
-
-#: ../../enterprise/godmode/reporting/aws_view.php:134
-msgid "Failed to retrieve AWS information using selected account."
-msgstr ""
-"No se ha podido obtener información de AWS a través de la cuenta seleccionada."
-
-#: ../../enterprise/godmode/reporting/aws_view.php:153
-msgid "AWS credentials not validated."
-msgstr "No se han validado los credenciales de AWS."
-
-#: ../../enterprise/godmode/reporting/aws_view.php:168
-msgid "Discovery Cloud: AWS"
-msgstr "Discovery Cloud: AWS"
-
-#: ../../enterprise/godmode/reporting/aws_view.php:177
-msgid "Please, select an account: "
-msgstr "Seleccione una cuenta: "
-
-#: ../../enterprise/godmode/reporting/aws_view.php:186
-msgid "CREATE CLOUD MONITORING DISCOVERY TASK"
-msgstr "CREAR TAREA DE DISCOVERY DE MONITORIZACIÓN EN LA NUBE"
-
-#: ../../enterprise/godmode/reporting/aws_view.php:189
-msgid ""
-"Within this view you will find information collected using Discovery Cloud AWS "
-"task. You will be able to see the most relevant information about your "
-"infrastructure, such as the current cost of your contracted services, the "
-"number of instances per region or resource usage metrics. In order to collect "
-"this information you must create a Cloud Monitoring Discovery task."
-msgstr ""
-"En esta vista encontrará la información recogida mediante la tarea de "
-"Discovery Cloud AWS. Podrá ver la información más relevante sobre su "
-"infraestructura, como el coste actual de los servicios contratados, el número "
-"de instancias por región o las métricas de uso de los recursos. Para recoger "
-"esta información, cree una tarea de Cloud Monitoring Discovery."
-
-#: ../../enterprise/godmode/reporting/aws_view.php:192
-msgid "Press the create button to begin."
-msgstr "Pinche en el botón \"crear\" para comenzar."
-
-#: ../../enterprise/godmode/reporting/aws_view.php:221
-msgid "Instance table"
-msgstr "Tabla de instancias"
-
-#: ../../enterprise/godmode/reporting/graph_template_list.php:119
-msgid "Graph template management"
-msgstr "Gestión de plantillas gráficas"
-
-#: ../../enterprise/godmode/reporting/graph_template_list.php:252
-msgid "There are no defined graph templates"
-msgstr "No hay plantillas gráficas definidas"
-
-#: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:115
-msgid "Advance Options"
-msgstr "Opciones avanzadas"
-
-#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:198
-#: ../../enterprise/include/functions_reporting.php:71
-msgid "Wizard SLA"
-msgstr "Wizard SLA"
-
-#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:221
-#: ../../enterprise/godmode/services/services.service.php:804
-#: ../../enterprise/include/functions_reporting_csv.php:1481
-#: ../../include/functions_reports.php:699
-#: ../../include/functions_reporting.php:950
-msgid "S.L.A."
-msgstr "SLA"
-
-#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:222
-#: ../../enterprise/include/functions_reporting.php:2371
-#: ../../include/functions_reports.php:704
-msgid "Monthly S.L.A."
-msgstr "SLA mensual"
-
-#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:223
-#: ../../enterprise/include/functions_reporting.php:3323
-#: ../../include/functions_reports.php:708
-msgid "Weekly S.L.A."
-msgstr "SLA semanal"
-
-#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:224
-msgid "hourly S.L.A."
-msgstr "SLA por horas"
-
-#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:225
-msgid "Availability Graph S.L.A."
-msgstr "Gráfico de disponibilidad SLA"
-
-#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:226
-#: ../../enterprise/include/functions_reporting.php:5566
-#: ../../include/functions_reports.php:718
-msgid "Services S.L.A."
-msgstr "SLA de servicios"
-
-#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:354
-msgid "SLA min value"
-msgstr "Valor mínimo de SLA"
-
-#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:354
-#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:360
-#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:366
-msgid "Enter possible range of values in SLA."
-msgstr "Añada el rango de valores posibles de SLA"
-
-#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:355
-msgid "SLA min Value"
-msgstr "Valor mínimo de SLA"
-
-#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:360
-msgid "SLA max value"
-msgstr "Valor máximo SLA"
-
-#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:361
-msgid "SLA max Value"
-msgstr "Valor máximo SLA"
-
-#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:366
-msgid "SLA Limit %"
-msgstr "Límite % SLA"
-
-#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:367
-msgid "SLA Limit Value"
-msgstr "Valor límite de SLA"
-
-#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:372
-msgid "Dynamic SLA"
-msgstr "SLA dinámico"
-
-#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:379
-msgid "Inverse SLA"
-msgstr "SLA inverso"
-
-#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:520
-msgid "Please introduce a SLA max value higher than the SLA min value"
-msgstr "Añada un valor máx. de SLA mayor que el valor mín. del SLA"
-
-#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:644
-msgid "Dynamic SLA can not be Inverse"
-msgstr "El SLA dinámico no puede ser inverso"
-
-#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:649
-msgid "Check Dynamic SLA or introduce a max and min SLA value"
-msgstr "Compruebe el SLA dinámico o añada un nuevo valor SLA mín. y máx."
-
-#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:653
-msgid "SLA Limit value is needed"
-msgstr "Se necesita un valor límite de SLA."
-
-#: ../../enterprise/godmode/reporting/visual_console_template.php:141
-#: ../../enterprise/godmode/reporting/visual_console_template.php:157
-msgid "visual console has not been selected"
-msgstr "no se ha seleccionado consola visual"
-
-#: ../../enterprise/godmode/reporting/visual_console_template.php:147
-msgid "Error. Error created template"
-msgstr "Error. Error al crear la plantilla"
-
-#: ../../enterprise/godmode/reporting/visual_console_template.php:149
-msgid "Error. Template name cannot be repeated"
-msgstr "Error. El nombre de la plantilla no se puede repetir"
-
-#: ../../enterprise/godmode/reporting/visual_console_template.php:151
-msgid "Successfully created template"
-msgstr "Plantilla creada correctamente"
-
-#: ../../enterprise/godmode/reporting/visual_console_template.php:163
-msgid "Error. Error delete template"
-msgstr "Error. Error al borrar plantilla"
-
-#: ../../enterprise/godmode/reporting/visual_console_template.php:165
-msgid "Successfully delete template"
-msgstr "Plantilla borrada correctamente"
-
-#: ../../enterprise/godmode/reporting/visual_console_template.php:187
-msgid "Create From"
-msgstr "Crear desde"
-
-#: ../../enterprise/godmode/reporting/visual_console_template.php:198
-msgid "There is not any visual console created. Please, create one firstly."
-msgstr "No hay consolas visuales creadas. Cree una primero."
-
-#: ../../enterprise/godmode/reporting/visual_console_template.php:260
-msgid "Create New Template"
-msgstr "Crear nueva plantilla"
-
-#: ../../enterprise/godmode/reporting/visual_console_template.php:272
-#: ../../enterprise/godmode/massive/massive_create_services.php:809
-#: ../../enterprise/godmode/services/services.service.php:728
-#: ../../views/dashboard/formDashboard.php:122
-msgid "Favourite"
-msgstr "Favorito"
-
-#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:139
-#: ../../enterprise/include/functions_ipam.php:1563
-msgid "Available"
-msgstr "Disponible"
-
-#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:141
-#: ../../include/graphs/export_data.php:100
-msgid "Selected"
-msgstr "Seleccionado"
-
-#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:150
-#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:151
-msgid "Push the selected services into the list"
-msgstr "Añade los servicios seleccionados a la lista"
-
-#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:161
-#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:162
-msgid "Remove the services from the list"
-msgstr "Elimina los servicios de la lista"
-
-#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:229
-msgid "Icon preview"
-msgstr "Vista previa del icono"
-
-#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:295
-msgid "The services list is empty"
-msgstr "La lista de servicios esta vacía."
-
-#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:195
-msgid "No item could be applied to report."
-msgstr "No se ha podido aplicar ningún elemento al informe."
-
-#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:198
-#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:156
-msgid "Sucessfully applied"
-msgstr "Aplicado correctamente"
-
-#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:198
-msgid "reports"
-msgstr "Informes"
-
-#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:198
-msgid "items"
-msgstr "elementos"
-
-#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:200
-#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:158
-msgid "Could not be applied"
-msgstr "No se pudo aplicar."
-
-#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:221
-msgid "Create template report wizard"
-msgstr "Asistente de creación de plantillas de informes"
-
-#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:273
-msgid "Create report per agent"
-msgstr "Crear informe por agente"
-
-#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:282
-msgid ""
-"Left in blank if you want to use default name: Template name - agents (num "
-"agents) - Date"
-msgstr ""
-"Déjalo en blanco si quieres usar el nombre por defecto: Nombre plantilla - "
-"agentes (num agentes) - Fecha"
-
-#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:288
-#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:236
-msgid "Target group"
-msgstr "Grupo objetivo"
-
-#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:327
-msgid "Filter by"
-msgstr "Filtrar por"
-
-#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:398
-msgid "Filter tag"
-msgstr "Filtro por etiqueta"
-
-#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:834
-#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:635
-msgid "Please set agent distinct than "
-msgstr "Por favor, escoge un agente distinto a "
-
-#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:65
-msgid "Graph template item editor"
-msgstr "Editor de elementos de plantilla de gráfico"
-
-#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:206
-msgid "Decrease Weight"
-msgstr "Reducir el peso"
-
-#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:206
-msgid "Increase Weight"
-msgstr "Incrementar el peso"
-
-#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:108
-msgid "Template Wizard"
-msgstr "Asistente de plantillas"
-
-#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:200
-msgid "Visual console name"
-msgstr "Nombre de la consola visual"
-
-#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:200
-msgid ""
-"You can use macro _agentalias_ here. Left in blank if you want to use default "
-"name: Template name - agent alias"
-msgstr ""
-"Puede usar macro _agentalias_ aquí. En caso de estar vacío, use el nombre por "
-"defecto: Nombre de plantilla - alias de agente"
-
-#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1971
-msgid "Select server"
-msgstr "Seleccionar servidor"
-
-#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2032
-#: ../../include/lib/Dashboard/Widgets/top_n.php:207
-msgid ""
-"Case insensitive regular expression for agent name. For example: Network.* "
-"will match with the following agent names: network_agent1, NetworK CHECKS"
-msgstr ""
-"Expresión regular no sensible a mayúsculas/minúsculas, para buscar el agente. "
-"Por ejemplo: Network.* coincidiría con los siguientes nombres de agentes: "
-"network_agent1, NetworK CHECKS"
-
-#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2056
-#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3632
-#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3864
-msgid ""
-"Case insensitive regular expression or string for module name. For example: if "
-"you use this field with \"Module exact match\" enabled then this field has to "
-"be fulfilled with the literally string of the module name, if not you can use "
-"a regular expression. Example: .*usage.* will match: cpu_usage, vram usage in "
-"matchine 1."
-msgstr ""
-"Expresión regular, no sensible a mayúsculas/minúsculas, para buscar el módulo. "
-"Por ejemplo: si usas este campo con \"Coincidencia exacta de módulo\" "
-"activado, entonces este campo tiene que rellenarse con la cadena literal del "
-"nombre del módulo. Si no, usará una expresión regular, por ejemplo: .*usage.* "
-"coincidiría con : cpu_usage, vram usage in machine 1."
-
-#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2078
-msgid "Module exact match"
-msgstr "Coincidencia exacta de módulo"
-
-#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2079
-#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3564
-#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3640
-#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3788
-#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3871
-msgid "Check it if you want to match module name literally"
-msgstr ""
-"Actívala si quieres que haya una coincidencia exacta y literal en el nombre "
-"del módulo."
-
-#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2095
-msgid "Case insensitive regular expression or string for templates name."
-msgstr ""
-"Expresión regular o cadena sin sensibilidad de mayúsculas y minúsculas para el "
-"nombre de las plantillas."
-
-#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2118
-msgid "Case insensitive regular expression or string for actions name."
-msgstr ""
-"Expresión regular o cadena sin sensibilidad de mayúsculas y minúsculas para el "
-"nombre de las acciones."
-
-#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2140
-msgid "Hide items without data"
-msgstr "Ocultar elementos sin datos"
-
-#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2141
-msgid "Check it if you want not show items without data"
-msgstr "Marcar si no quieres que muestre elementos sin datos"
-
-#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3104
-msgid "Modules to match"
-msgstr "Módulos a comparar"
-
-#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3106
-msgid "Select the modules to match when create a report for agents"
-msgstr "Selecciona los módulos a comparar al crear el informe para cada agente."
-
-#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3206
-msgid "Modules to match (Free text)"
-msgstr "Módulos a comparar (texto libre)"
-
-#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3208
-msgid "Free text to filter the modules of agents when apply this template."
-msgstr ""
-"Texto libre para filtrar los módulos de los agentes cuando se usa esta "
-"plantilla."
-
-#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3225
-msgid "Create a graph for each agent"
-msgstr "Crear un gráfico por cada agente"
-
-#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3227
-msgid ""
-"If it is checked, the regexp or name of modules match only each to each to "
-"agent, instead create a big graph with all modules from all agents."
-msgstr ""
-"Si se activa, la expresión regular o el nombre de módulo hará coincidencia en "
-"cada módulo de cada agente, y creará un gráfico que contenga módulos de todos "
-"los agentes."
-
-#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3536
-msgid "Please save the SLA template for start to add items in this list."
-msgstr ""
-"Por favor, guarda la plantilla SLA para empezar a añadir elementos a la lista."
-
-#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3577
-#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3804
-#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:4249
-#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:4394
-msgid "Not literally"
-msgstr "No literal"
-
-#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3623
-#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3855
-msgid ""
-"Case insensitive regular expression for agent name. For example: Network* will "
-"match with the following agent names: network_agent1, NetworK CHECKS"
-msgstr ""
-"Expresión regular no sensible a mayúsculas. Por ejemplo: Network* hará "
-"coincidencia con los siguientes nombres de módulos: network_agent1, NetworK "
-"CHECKS"
-
-#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3639
-#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3870
-msgid "Literal module name forced"
-msgstr "Nombre de módulo literal forzado"
-
-#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3760
-msgid "Please save the template to start adding items into the list."
-msgstr ""
-"Por favor, guarda la plantilla para empezar a añadir elementos a la lista."
-
-#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:4275
-msgid "Name and SLA limit should not be empty"
-msgstr "El nombre y el límite SLA no deberían estar vacíos."
-
-#: ../../enterprise/godmode/reporting/mysql_builder.php:66
-msgid "Custom MySQL template builder"
-msgstr "Creador de plantillas MySQL personalizado"
-
-#: ../../enterprise/godmode/reporting/mysql_builder.php:117
-msgid "Create custom SQL"
-msgstr "Crear SQL personalizado"
-
-#: ../../enterprise/godmode/reporting/mysql_builder.php:128
-#: ../../enterprise/godmode/reporting/mysql_builder.php:146
-msgid "Create new custom"
-msgstr "Crear nueva consulta personalizada"
-
-#: ../../enterprise/godmode/reporting/mysql_builder.php:187
-msgid "List of custom MySQL templates"
-msgstr "Listas de plantillas MySQL personalizadas"
-
-#: ../../enterprise/godmode/reporting/mysql_builder.php:193
-msgid "Template builder"
-msgstr "Creador de plantillas"
-
-#: ../../enterprise/godmode/reporting/mysql_builder.php:212
-msgid "Successfully operation"
-msgstr "Operación realizada correctamente"
-
-#: ../../enterprise/godmode/reporting/mysql_builder.php:212
-msgid "Could not be operation"
-msgstr "La operación no pudo completarse."
-
-#: ../../enterprise/godmode/reporting/mysql_builder.php:214
-msgid "Without changes"
-msgstr "Sin cambios"
-
-#: ../../enterprise/godmode/reporting/mysql_builder.php:232
-#: ../../enterprise/include/functions_reporting_csv.php:1084
-#: ../../include/functions_reporting.php:6847
-msgid "SQL"
-msgstr "SQL"
-
-#: ../../enterprise/godmode/massive/massive_edit_tags_policy.php:92
-#: ../../enterprise/godmode/massive/massive_tags_edit_policy.php:87
-msgid "Successful update the tags"
-msgstr "Etiquetas actualizadas correctamente"
-
-#: ../../enterprise/godmode/massive/massive_edit_tags_policy.php:93
-#: ../../enterprise/godmode/massive/massive_tags_edit_policy.php:88
-msgid "Unsuccessful update the tags"
-msgstr "Error al actualizar las etiquetas"
-
-#: ../../enterprise/godmode/massive/massive_edit_tags_policy.php:143
-msgid "Tags unused"
-msgstr "Etiquetas sin usar"
-
-#: ../../enterprise/godmode/massive/massive_edit_tags_policy.php:183
-msgid "Tags used"
-msgstr "Etiquetas usadas"
-
-#: ../../enterprise/godmode/massive/massive_operations.php:28
-#: ../../enterprise/godmode/menu.php:48
-msgid "Satellite operations"
-msgstr "Operaciones Satélite"
-
-#: ../../enterprise/godmode/massive/massive_operations.php:53
-#: ../../enterprise/godmode/menu.php:60
-msgid "Services operations"
-msgstr "Operaciones de servicios"
-
-#: ../../enterprise/godmode/massive/massive_operations.php:75
-#: ../../enterprise/godmode/menu.php:36
-msgid "SNMP operations"
-msgstr "Operaciones SNMP"
-
-#: ../../enterprise/godmode/massive/massive_operations.php:99
-#: ../../enterprise/godmode/menu.php:25
-msgid "Policies operations"
-msgstr "Operaciones de las políticas"
-
-#: ../../enterprise/godmode/massive/massive_operations.php:115
-msgid "Bulk alerts policy add"
-msgstr "Añadir alertas de políticas de forma masiva"
-
-#: ../../enterprise/godmode/massive/massive_operations.php:116
-msgid "Bulk alerts policy delete"
-msgstr "Eliminar alertas de políticas de forma masiva"
-
-#: ../../enterprise/godmode/massive/massive_operations.php:117
-msgid "Bulk tags module policy edit"
-msgstr "Editar las etiquetas de módulos en políticas de forma masiva"
-
-#: ../../enterprise/godmode/massive/massive_operations.php:118
-msgid "Bulk modules policy tags edit"
-msgstr "Editar las etiquetas de módulos en políticas de forma masiva"
-
-#: ../../enterprise/godmode/massive/massive_operations.php:119
-msgid "Bulk modules policy add from agent"
-msgstr "Añadir módulos de forma masiva a la política del agente"
-
-#: ../../enterprise/godmode/massive/massive_operations.php:120
-msgid "Bulk modules policy edit"
-msgstr "Editas política masiva de módulos"
-
-#: ../../enterprise/godmode/massive/massive_operations.php:131
-msgid "Bulk alert SNMP delete"
-msgstr "Eliminar alertas SNMP de forma masiva"
-
-#: ../../enterprise/godmode/massive/massive_operations.php:132
-msgid "Bulk alert SNMP edit"
-msgstr "Editar alertas SNMP de forma masiva"
-
-#: ../../enterprise/godmode/massive/massive_operations.php:143
-msgid "Bulk Satellite modules edit"
-msgstr "Editar módulos Satélite de forma masiva"
-
-#: ../../enterprise/godmode/massive/massive_operations.php:156
-msgid "Bulk services creation"
-msgstr "Creación de servicios masivos"
-
-#: ../../enterprise/godmode/massive/massive_operations.php:157
-#: ../../enterprise/godmode/services/services.massive.elements.php:56
-msgid "Bulk service elements adition"
-msgstr "Adición de elementos de servicio masivos"
-
-#: ../../enterprise/godmode/massive/massive_operations.php:158
-#: ../../enterprise/godmode/services/services.massive.elements.php:61
-msgid "Bulk service elements edition"
-msgstr "Edición de elementos de servicio masivos"
-
-#: ../../enterprise/godmode/massive/massive_operations.php:159
-#: ../../enterprise/godmode/services/services.massive.elements.php:57
-msgid "Bulk service elements deletion"
-msgstr "Eliminación masiva de elementos de servicio"
-
-#: ../../enterprise/godmode/massive/massive_operations.php:160
-msgid "Bulk services deletion"
-msgstr "Borrado de servicios en masa"
-
-#: ../../enterprise/godmode/massive/massive_add_alerts_policy.php:87
-msgid "Success: create the alerts."
-msgstr "Alertas creadas correctamente"
-
-#: ../../enterprise/godmode/massive/massive_add_alerts_policy.php:87
-msgid "Failed: create the alerts for this modules, please check."
-msgstr "Error al crear las alertas para estos módulos. Resuelve el problema."
-
-#: ../../enterprise/godmode/massive/massive_add_alerts_policy.php:128
-#: ../../enterprise/godmode/massive/massive_add_alerts_policy.php:129
-#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:138
-#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:139
-#: ../../include/functions_alerts.php:670
-msgid "Regular expression"
-msgstr "Expresión regular"
-
-#: ../../enterprise/godmode/massive/massive_add_alerts_policy.php:131
-msgid "Modules in policy"
-msgstr "Módulos en la política"
-
-#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:242
-msgid "Filter module"
-msgstr "Filtro de módulo"
-
-#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:423
-msgid "Updated modules on database"
-msgstr "Módulos actualizados en la base de datos"
-
-#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:425
-msgid "Agent configuration files updated"
-msgstr "Archivo de configuración del agente actualizado correctamente"
-
-#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:443
-#: ../../enterprise/godmode/policies/policy_queue.php:656
-#: ../../enterprise/godmode/policies/policy_queue.php:659
-#: ../../enterprise/include/class/Omnishell.class.php:362
-#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:4081
-#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:4202
-#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:4362
-#: ../../enterprise/meta/advanced/policymanager.queue.php:261
-#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:543
-msgid "Finished"
-msgstr "Terminado"
-
-#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:691
-msgid "No changes have been made."
-msgstr "No ha habido cambios."
-
-#: ../../enterprise/godmode/massive/massive_tags_edit_policy.php:127
-msgid "Modules unused"
-msgstr "Módulos sin usar"
-
-#: ../../enterprise/godmode/massive/massive_tags_edit_policy.php:167
-msgid "Modules used"
-msgstr "Módulos usados"
-
-#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:88
-msgid "Success: remove the alerts."
-msgstr "Alertas borradas correctamente"
-
-#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:88
-msgid "Failed: remove the alerts for this modules, please check."
-msgstr "Error al borrar las alertas en estos módulos"
-
-#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:141
-msgid "Modules agents in policy"
-msgstr "Módulos de agentes en la política"
-
-#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:175
-#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:233
-msgid "You must select a SNMP alert"
-msgstr "Seleccione una alerta SNMP"
-
-#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:198
-#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:258
-msgid ""
-"Search by these fields description, OID, Custom Value, SNMP Agent (IP), Single "
-"value, each Custom OIDs/Datas."
-msgstr ""
-"Búsqueda por descripción de los campos, OIS, Valores personalizados, Agentes "
-"(IP) SNMP, Valor único, cada OIDs/Datos personalizado."
-
-#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:217
-msgid "SNMP Alerts to be deleted"
-msgstr "Alertas SNMP para añadir"
-
-#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:289
-#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:403
-msgid "No snmp alert found."
-msgstr "No se ha encontrado la alerta SNMP."
-
-#: ../../enterprise/godmode/massive/massive_delete_services.php:50
-#, php-format
-msgid "Failed to delete: %s"
-msgstr "No se ha podido eliminar: %s"
-
-#: ../../enterprise/godmode/massive/massive_edit_service_elements.php:65
-#: ../../enterprise/godmode/massive/massive_add_service_elements.php:71
-#: ../../enterprise/godmode/massive/massive_delete_service_elements.php:67
-msgid "You must select a service"
-msgstr "Debe seleccionar un servicio"
-
-#: ../../enterprise/godmode/massive/massive_edit_service_elements.php:131
-msgid "Failed to process updating elements in services: "
-msgstr "Error al procesar la actualización de elementos de los servicios: "
-
-#: ../../enterprise/godmode/massive/massive_edit_service_elements.php:153
-#: ../../enterprise/godmode/massive/massive_add_service_elements.php:251
-#: ../../enterprise/godmode/massive/massive_delete_service_elements.php:112
-#, php-format
-msgid "%d modules"
-msgstr "%d módulos"
-
-#: ../../enterprise/godmode/massive/massive_edit_service_elements.php:161
-#: ../../enterprise/godmode/massive/massive_add_service_elements.php:259
-#: ../../enterprise/godmode/massive/massive_delete_service_elements.php:120
-#, php-format
-msgid "%d agents"
-msgstr "%d agentes"
-
-#: ../../enterprise/godmode/massive/massive_edit_service_elements.php:169
-#: ../../enterprise/godmode/massive/massive_add_service_elements.php:267
-#: ../../enterprise/godmode/massive/massive_delete_service_elements.php:128
-#, php-format
-msgid "%d services"
-msgstr "%d servicios"
-
-#: ../../enterprise/godmode/massive/massive_edit_service_elements.php:172
-#: ../../include/class/ConfigPEN.class.php:564
-msgid "updated"
-msgstr "actualizado"
-
-#: ../../enterprise/godmode/massive/massive_edit_service_elements.php:176
-#: ../../enterprise/godmode/massive/massive_add_service_elements.php:274
-#: ../../enterprise/godmode/massive/massive_delete_service_elements.php:135
-msgid "No changes made"
-msgstr "No se realizaron cambios"
-
-#: ../../enterprise/godmode/massive/massive_edit_service_elements.php:230
-#: ../../enterprise/godmode/massive/massive_add_service_elements.php:329
-#: ../../enterprise/godmode/massive/massive_delete_service_elements.php:188
-#: ../../enterprise/views/ncm/snippets/edit.php:138
-#: ../../enterprise/views/ncm/agent/details.php:256
-#: ../../enterprise/views/ncm/agent/manage.php:135
-#: ../../enterprise/views/ncm/agent/manage.php:148
-#: ../../enterprise/views/ncm/agent/manage.php:181
-#: ../../enterprise/views/ncm/agent/manage.php:274
-#: ../../enterprise/views/ncm/agent/manage.php:309
-#: ../../enterprise/views/ncm/templates/edit.php:347
-#: ../../include/class/ExternalTools.class.php:537
-msgid "Please select"
-msgstr "Seleccione"
-
-#: ../../enterprise/godmode/massive/massive_edit_service_elements.php:252
-#: ../../enterprise/godmode/massive/massive_add_service_elements.php:496
-msgid "In smart services weights are automatically calculated."
-msgstr "En el modo inteligente, los pesos se calculan automáticamente."
-
-#: ../../enterprise/godmode/massive/massive_edit_service_elements.php:257
-#: ../../enterprise/godmode/massive/massive_add_service_elements.php:501
-msgid ""
-"Weights configured are common for every item added to the service, if you want "
-"to customize them, please edit each element at service element editor."
-msgstr ""
-"Los pesos configurados son comunes a todos los elementos añadidos al servicio. "
-"Si desea personalizarlos, edite el servicio."
-
-#: ../../enterprise/godmode/massive/massive_edit_service_elements.php:262
-#: ../../enterprise/godmode/massive/massive_add_service_elements.php:506
-#: ../../enterprise/godmode/massive/massive_create_services.php:1148
-msgid "Service items summary"
-msgstr "Resumen de elementos de servicio"
-
-#: ../../enterprise/godmode/massive/massive_edit_service_elements.php:265
-#: ../../enterprise/godmode/massive/massive_add_service_elements.php:509
-#: ../../enterprise/godmode/massive/massive_create_services.php:1151
-#: ../../include/functions_visual_map_editor.php:1148
-#: ../../include/rest-api/models/VisualConsole/Item.php:2522
-msgid "Critical weight"
-msgstr "Peso crítico"
-
-#: ../../enterprise/godmode/massive/massive_edit_service_elements.php:278
-#: ../../enterprise/godmode/massive/massive_add_service_elements.php:522
-#: ../../enterprise/godmode/massive/massive_create_services.php:1164
-#: ../../include/functions_visual_map_editor.php:1174
-#: ../../include/rest-api/models/VisualConsole/Item.php:2536
-msgid "Warning weight"
-msgstr "Peso de advertencia"
-
-#: ../../enterprise/godmode/massive/massive_edit_service_elements.php:291
-#: ../../enterprise/godmode/massive/massive_add_service_elements.php:535
-#: ../../enterprise/godmode/massive/massive_create_services.php:1177
-msgid "Unknown weight"
-msgstr "Peso desconocido"
-
-#: ../../enterprise/godmode/massive/massive_edit_service_elements.php:304
-#: ../../enterprise/godmode/massive/massive_add_service_elements.php:548
-#: ../../enterprise/godmode/massive/massive_create_services.php:1190
-msgid "Normal weight"
-msgstr "Peso normal"
-
-#: ../../enterprise/godmode/massive/massive_edit_service_elements.php:320
-#: ../../enterprise/godmode/massive/massive_add_service_elements.php:564
-#: ../../enterprise/godmode/massive/massive_create_services.php:1205
-#: ../../enterprise/godmode/massive/massive_delete_service_elements.php:211
-msgid "Selected services"
-msgstr "Servicios seleccionados"
-
-#: ../../enterprise/godmode/massive/massive_edit_service_elements.php:335
-#: ../../enterprise/godmode/massive/massive_add_service_elements.php:579
-#: ../../enterprise/godmode/massive/massive_create_services.php:1220
-#: ../../enterprise/godmode/massive/massive_delete_service_elements.php:226
-#: ../../enterprise/include/class/Omnishell.class.php:915
-msgid "Selected agents"
-msgstr "Agentes seleccionados"
-
-#: ../../enterprise/godmode/massive/massive_edit_service_elements.php:350
-#: ../../enterprise/godmode/massive/massive_add_service_elements.php:594
-#: ../../enterprise/godmode/massive/massive_create_services.php:1235
-#: ../../enterprise/godmode/massive/massive_delete_service_elements.php:241
-#: ../../enterprise/include/class/SAP.app.php:845
-msgid "Selected modules"
-msgstr "Módulos seleccionados"
-
-#: ../../enterprise/godmode/massive/massive_edit_service_elements.php:373
-msgid "Update selected service elements"
-msgstr "Actualizar los elementos de servicio seleccionados"
-
-#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:217
-#, php-format
-msgid "Successfully updated alerts (%s / %s)"
-msgstr "Alertas actualizadas correctamente (%s / %s)"
-
-#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:225
-#, php-format
-msgid "Unsuccessfully updated alerts (%s / %s)"
-msgstr "No se han podido actualizar las alertas (%s / %s)"
-
-#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:277
-msgid "SNMP Alerts to be edit"
-msgstr "Alertas SNMP para editar"
-
-#: ../../enterprise/godmode/massive/massive_add_service_elements.php:112
-#, php-format
-msgid "Problems while adding module element: %d, %s"
-msgstr "Problemas al agregar el elemento del módulo: %d, %s"
-
-#: ../../enterprise/godmode/massive/massive_add_service_elements.php:157
-#, php-format
-msgid "Problems while adding agent element: %d, %s"
-msgstr "Problemas al agregar el elemento agente: %d, %s"
-
-#: ../../enterprise/godmode/massive/massive_add_service_elements.php:205
-#, php-format
-msgid "%s: %d, %s"
-msgstr "%s: %d, %s"
-
-#: ../../enterprise/godmode/massive/massive_add_service_elements.php:228
-msgid "Failed to process adding elements in services: "
-msgstr "Error al procesar la adición de elementos en los servicios: "
-
-#: ../../enterprise/godmode/massive/massive_add_service_elements.php:270
-msgid "added"
-msgstr "añadido"
-
-#: ../../enterprise/godmode/massive/massive_add_service_elements.php:354
-msgid "Item type to be added"
-msgstr "Tipo de artículo que se agregará"
-
-#: ../../enterprise/godmode/massive/massive_add_service_elements.php:371
-#: ../../enterprise/godmode/massive/massive_create_services.php:974
-msgid "Add selected"
-msgstr "Añadir seleccionado"
-
-#: ../../enterprise/godmode/massive/massive_add_service_elements.php:616
-#: ../../include/functions_notifications.php:939
-msgid "Add elements"
-msgstr "Añadir elementos"
-
-#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:75
-msgid "Successfully copied "
-msgstr "Copiado correctamente "
-
-#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:82
-#: ../../include/ajax/events.php:2122 ../../include/ajax/events.php:2136
-#: ../../include/ajax/events.php:2150
-msgid "Module "
-msgstr "Módulo "
-
-#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:82
-msgid " cannot be copied to "
-msgstr " no se puede copiar a "
-
-#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:82
-msgid " policy"
-msgstr " política de"
-
-#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:223
-msgid "To policies"
-msgstr "a políticas"
-
-#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:376
-msgid "No destiny policies to copy"
-msgstr "No hay políticas de destino que copiar"
-
-#: ../../enterprise/godmode/massive/massive_create_services.php:110
-#: ../../enterprise/godmode/services/services.service.php:118
-msgid "No name specified for the service"
-msgstr "Ningún nombre especificado para el servicio"
-
-#: ../../enterprise/godmode/massive/massive_create_services.php:116
-#: ../../enterprise/godmode/services/services.service.php:129
-msgid "No description specified for the service"
-msgstr "Ninguna descripción especificada para el servicio"
-
-#: ../../enterprise/godmode/massive/massive_create_services.php:122
-#: ../../enterprise/godmode/services/services.service.php:140
-msgid "You must specify an agent to store the service"
-msgstr "Especifique un agente para guardar el servicio"
-
-#: ../../enterprise/godmode/massive/massive_create_services.php:210
-#, php-format
-msgid "Failed to create service for agent %s, %s"
-msgstr "No se ha podido crear el servicio para el agente %s, %s"
-
-#: ../../enterprise/godmode/massive/massive_create_services.php:294
-#, php-format
-msgid "Failed to create service for module %s, %s"
-msgstr "No se ha podido crear el servicio para el módulo %s, %s"
-
-#: ../../enterprise/godmode/massive/massive_create_services.php:380
-#, php-format
-msgid "Failed to create service for service %s, %s"
-msgstr "No se ha podido crear el servicio para el servicio %s, %s"
-
-#: ../../enterprise/godmode/massive/massive_create_services.php:435
-#, php-format
-msgid "Agent selected %d not found"
-msgstr "Agente seleccionado %d no encontrado"
-
-#: ../../enterprise/godmode/massive/massive_create_services.php:481
-#, php-format
-msgid "Module selected %d not found"
-msgstr "Módulo seleccionado %d no encontrado"
-
-#: ../../enterprise/godmode/massive/massive_create_services.php:528
-#, php-format
-msgid "Service selected %d not found"
-msgstr "Servicio seleccionado %d no encontrado"
-
-#: ../../enterprise/godmode/massive/massive_create_services.php:562
-#, php-format
-msgid "Failed to create service for agent %s"
-msgstr "No se ha podido crear el servicio para el agente %s"
-
-#: ../../enterprise/godmode/massive/massive_create_services.php:573
-#, php-format
-msgid "Failed to create services: %s"
-msgstr "No se han podido crear los servicios: %s"
-
-#: ../../enterprise/godmode/massive/massive_create_services.php:593
-#, php-format
-msgid "%d services created with %d items"
-msgstr "%d servicios creados con %d elementos"
-
-#: ../../enterprise/godmode/massive/massive_create_services.php:599
-msgid "No services created"
-msgstr "No hay servicios creados"
-
-#: ../../enterprise/godmode/massive/massive_create_services.php:632
-msgid "Service(s) definition"
-msgstr "Definición de servicio(s)"
-
-#: ../../enterprise/godmode/massive/massive_create_services.php:659
-#: ../../enterprise/godmode/services/services.service.php:562
-msgid ""
-"This group will be used also to control access to this service and its "
-"elements."
-msgstr ""
-"Este grupo se usará también para controlar el acceso a este servicio y a sus "
-"elementos."
-
-#: ../../enterprise/godmode/massive/massive_create_services.php:674
-#: ../../enterprise/godmode/services/services.service.php:626
-msgid "Agent to store data"
-msgstr "Agentes para almacenar datos"
-
-#: ../../enterprise/godmode/massive/massive_create_services.php:716
-#: ../../enterprise/godmode/services/services.service.php:668
-msgid "In smart mode, thresholds are percentual."
-msgstr "En modo inteligente, los umbrales son porcentuales"
-
-#: ../../enterprise/godmode/massive/massive_create_services.php:765
-msgid "Create a service per item"
-msgstr "Crear un servicio por elemento"
-
-#: ../../enterprise/godmode/massive/massive_create_services.php:766
-msgid "If enabled multiple services will be created."
-msgstr "Si se habilita, se crearán múltiples servicios."
-
-#: ../../enterprise/godmode/massive/massive_create_services.php:784
-msgid "Services header"
-msgstr "Encabezado de servicios"
-
-#: ../../enterprise/godmode/massive/massive_create_services.php:785
-msgid "All services names created will start with selected name."
-msgstr ""
-"Todos los nombres de servicios creados deben empezar con el nombre "
-"seleccionado."
-
-#: ../../enterprise/godmode/massive/massive_create_services.php:799
-#: ../../enterprise/godmode/services/services.service.php:718
-msgid "Unknown elements as critical"
-msgstr "Elementos desconocidos como críticos"
-
-#: ../../enterprise/godmode/massive/massive_create_services.php:829
-#: ../../enterprise/godmode/services/services.service.php:748
-msgid "Cascade protection enabled"
-msgstr "Protección en cascada habilitada"
-
-#: ../../enterprise/godmode/massive/massive_create_services.php:839
-msgid "SLA calculation"
-msgstr "Cálculo de SLA"
-
-#: ../../enterprise/godmode/massive/massive_create_services.php:842
-#: ../../enterprise/godmode/services/services.service.php:768
-msgid "Calculate continuous SLA"
-msgstr "Calcular SLA continuo"
-
-#: ../../enterprise/godmode/massive/massive_create_services.php:852
-#: ../../enterprise/godmode/services/services.service.php:778
-msgid "S.L.A. interval"
-msgstr "Intervalo SLA"
-
-#: ../../enterprise/godmode/massive/massive_create_services.php:866
-#: ../../enterprise/godmode/services/services.service.php:792
-msgid "S.L.A. limit"
-msgstr "Límite SLA"
-
-#: ../../enterprise/godmode/massive/massive_create_services.php:896
-#: ../../enterprise/godmode/services/services.service.php:839
-msgid "Warning service alert"
-msgstr "Alerta de servicio en advertencia"
-
-#: ../../enterprise/godmode/massive/massive_create_services.php:908
-#: ../../enterprise/godmode/services/services.service.php:851
-msgid "Critical service alert"
-msgstr "Alerta de servicio en crítico"
-
-#: ../../enterprise/godmode/massive/massive_create_services.php:920
-#: ../../enterprise/godmode/services/services.service.php:863
-msgid "Unknown service alert"
-msgstr "Alerta de servicio en desconocido"
-
-#: ../../enterprise/godmode/massive/massive_create_services.php:932
-#: ../../enterprise/godmode/services/services.service.php:875
-msgid "S.L.A. critical service alert"
-msgstr "Alerta de servicio en crítico de S.L.A"
-
-#: ../../enterprise/godmode/massive/massive_create_services.php:946
-msgid "Items selected here will be added to the lists at Service items summary."
-msgstr ""
-"Los elementos aquí seleccionados se añadirán a las listas de resumen de "
-"elementos de servicio"
-
-#: ../../enterprise/godmode/massive/massive_create_services.php:949
-msgid "Item(s) definition"
-msgstr "Definición de elemento(s)"
-
-#: ../../enterprise/godmode/massive/massive_create_services.php:957
-msgid "Item type"
-msgstr "Tipo de elemento"
-
-#: ../../enterprise/godmode/massive/massive_create_services.php:1144
-msgid ""
-"Weights configured are common for every item added to the service, if you want "
-"to customize them, please edit the service."
-msgstr ""
-"Los pesos configurados son comunes a todos los elementos añadidos al servicio. "
-"Si desea personalizarlos, edite el servicio."
-
-#: ../../enterprise/godmode/massive/massive_create_services.php:1260
-msgid "Create services"
-msgstr "Crear servicios"
-
-#: ../../enterprise/godmode/massive/massive_delete_service_elements.php:90
-msgid "Failed to process deleting services elements: "
-msgstr "Error al procesar la eliminación de elementos de servicios: "
-
-#: ../../enterprise/godmode/massive/massive_delete_service_elements.php:131
-msgid "removed"
-msgstr "borrado"
-
-#: ../../enterprise/godmode/massive/massive_delete_service_elements.php:264
-msgid "Remove selected"
-msgstr "Eliminar lo seleccionado"
-
-#: ../../enterprise/godmode/setup/setup_acl.php:46
-msgid "Enterprise ACL setup"
-msgstr "Configuración ACL Enterprise"
-
-#: ../../enterprise/godmode/setup/setup_acl.php:69
-msgid "ACL element was deleted successfully"
-msgstr "El elemento ACL se eliminó correctamente"
-
-#: ../../enterprise/godmode/setup/setup_acl.php:71
-msgid "There was a problem delete ACL element"
-msgstr "Hubo un problema al eliminar el elemento ACL"
-
-#: ../../enterprise/godmode/setup/setup_acl.php:417
-msgid "This record already exists in the database"
-msgstr "Este registro ya existe en la base de datos."
-
-#: ../../enterprise/godmode/setup/setup_acl.php:422
-msgid "ACL element is added successfully"
-msgstr "El elemento ACL se agrega correctamente"
-
-#: ../../enterprise/godmode/setup/setup_acl.php:424
-msgid "There was a problem adding ACL element"
-msgstr "Hubo un problema al agregar el elemento ACL"
-
-#: ../../enterprise/godmode/setup/setup_acl.php:464
-#: ../../enterprise/godmode/setup/setup_acl.php:539
-msgid "Add new ACL element to profile"
-msgstr "Añadir nuevo elemento ACL al perfil"
-
-#: ../../enterprise/godmode/setup/setup_acl.php:469
-#: ../../enterprise/godmode/setup/setup_acl.php:544
-#: ../../enterprise/godmode/setup/setup_acl.php:592
-msgid "Section"
-msgstr "Sección"
-
-#: ../../enterprise/godmode/setup/setup_acl.php:476
-#: ../../enterprise/godmode/setup/setup_acl.php:694
-msgid "Mobile"
-msgstr "Móvil"
-
-#: ../../enterprise/godmode/setup/setup_acl.php:480
-#: ../../enterprise/godmode/setup/setup_acl.php:690
-msgid "Head search"
-msgstr "Búsqueda de encabezado"
-
-#: ../../enterprise/godmode/setup/setup_acl.php:497
-#: ../../enterprise/godmode/setup/setup_acl.php:548
-#: ../../enterprise/godmode/setup/setup_acl.php:593
-msgid "Section 2"
-msgstr "Sección 2"
-
-#: ../../enterprise/godmode/setup/setup_acl.php:514
-#: ../../enterprise/godmode/setup/setup_acl.php:552
-#: ../../enterprise/godmode/setup/setup_acl.php:594
-msgid "Section 3"
-msgstr "Sección 3"
-
-#: ../../enterprise/godmode/setup/setup_acl.php:538
-msgid "Hidden"
-msgstr "Oculto"
-
-#: ../../enterprise/godmode/setup/setup_acl.php:570
-msgid "Filter by profile"
-msgstr "Filtrar por perfil"
-
-#: ../../enterprise/godmode/setup/setup_acl.php:749
-#: ../../enterprise/godmode/setup/setup_acl.php:759
-msgid "Invalid"
-msgstr "No válido"
-
-#: ../../enterprise/godmode/setup/setup_auth.php:34
-msgid "Active directory"
-msgstr "Directorio activo"
-
-#: ../../enterprise/godmode/setup/setup_auth.php:35
-msgid "SAML"
-msgstr "SAML"
-
-#: ../../enterprise/godmode/setup/setup_auth.php:55
-#: ../../enterprise/godmode/setup/setup_auth.php:303
-#: ../../enterprise/godmode/setup/setup_auth.php:364
-#: ../../enterprise/godmode/setup/setup_auth.php:1159
-#: ../../enterprise/meta/include/functions_meta.php:532
-#: ../../include/functions_config.php:552
-msgid "Autocreate profile"
-msgstr "Crear el perfil automáticamente"
-
-#: ../../enterprise/godmode/setup/setup_auth.php:61
-#: ../../enterprise/godmode/setup/setup_auth.php:309
-#: ../../enterprise/godmode/setup/setup_auth.php:370
-#: ../../enterprise/godmode/setup/setup_auth.php:1165
-#: ../../enterprise/meta/include/functions_meta.php:542
-#: ../../include/functions_config.php:556
-msgid "Autocreate profile group"
-msgstr "Crear perfil de grupo automáticamente"
-
-#: ../../enterprise/godmode/setup/setup_auth.php:68
-#: ../../enterprise/godmode/setup/setup_auth.php:318
-#: ../../enterprise/godmode/setup/setup_auth.php:379
-#: ../../enterprise/godmode/setup/setup_auth.php:1174
-#: ../../enterprise/meta/include/functions_meta.php:552
-#: ../../include/functions_config.php:560
-msgid "Autocreate profile tags"
-msgstr "Crear etiquetas de perfil automáticamente"
-
-#: ../../enterprise/godmode/setup/setup_auth.php:82
-#: ../../enterprise/godmode/setup/setup_auth.php:348
-#: ../../enterprise/meta/include/functions_meta.php:618
-#: ../../enterprise/meta/include/functions_meta.php:1082
-#: ../../include/functions_config.php:649 ../../include/functions_config.php:761
-msgid "Save Password"
-msgstr "Guardar contraseña"
-
-#: ../../enterprise/godmode/setup/setup_auth.php:87
-msgid "Force automatically create profile user"
-msgstr "Forzar creación automática de perfil de usuario"
-
-#: ../../enterprise/godmode/setup/setup_auth.php:92
-msgid "Local command"
-msgstr "Comando local"
-
-#: ../../enterprise/godmode/setup/setup_auth.php:94
-#: ../../enterprise/meta/include/functions_meta.php:1123
-#: ../../include/functions_config.php:644
-msgid "LDAP function"
-msgstr "Función LDAP"
-
-#: ../../enterprise/godmode/setup/setup_auth.php:95
-msgid "PHP function"
-msgstr "Función PHP"
-
-#: ../../enterprise/godmode/setup/setup_auth.php:101
-#: ../../enterprise/meta/include/functions_meta.php:1102
-#: ../../include/functions_config.php:640
-msgid "Login user attribute"
-msgstr "Identificar atributo de usuario"
-
-#: ../../enterprise/godmode/setup/setup_auth.php:106
-#: ../../enterprise/meta/include/functions_meta.php:705
-#: ../../include/functions_config.php:588
-msgid "Advanced Config LDAP"
-msgstr "Configuración LDAP avanzada"
-
-#: ../../enterprise/godmode/setup/setup_auth.php:129
-#: ../../enterprise/meta/include/functions_meta.php:695
-#: ../../include/functions_config.php:600
-msgid "Advanced Permissions LDAP"
-msgstr "Permisos LDAP avanzados"
-
-#: ../../enterprise/godmode/setup/setup_auth.php:172
-#: ../../enterprise/godmode/setup/setup_auth.php:456
-#: ../../enterprise/godmode/setup/setup_auth.php:1251
-msgid "Profiles selected"
-msgstr "Perfiles seleccionados"
-
-#: ../../enterprise/godmode/setup/setup_auth.php:173
-#: ../../enterprise/godmode/setup/setup_auth.php:457
-#: ../../enterprise/godmode/setup/setup_auth.php:1252
-msgid "Groups selected"
-msgstr "Grupos seleccionados"
-
-#: ../../enterprise/godmode/setup/setup_auth.php:175
-#: ../../enterprise/godmode/setup/setup_auth.php:232
-#: ../../include/functions_profile.php:216
-msgid "No hierarchy"
-msgstr "No hay jerarquía"
-
-#: ../../enterprise/godmode/setup/setup_auth.php:176
-#: ../../enterprise/godmode/setup/setup_auth.php:233
-msgid "LDAP Attributes"
-msgstr "Atributos LDAP"
-
-#: ../../enterprise/godmode/setup/setup_auth.php:242
-#: ../../enterprise/godmode/setup/setup_auth.php:519
-#: ../../enterprise/godmode/setup/setup_auth.php:1316
-msgid "Select profile"
-msgstr "Seleccionar perfil"
-
-#: ../../enterprise/godmode/setup/setup_auth.php:287
-#: ../../enterprise/godmode/setup/setup_auth.php:557
-#: ../../enterprise/godmode/setup/setup_auth.php:1359
-msgid "Add new permissions"
-msgstr "Agregar nuevos permisos"
-
-#: ../../enterprise/godmode/setup/setup_auth.php:324
-#: ../../enterprise/meta/include/functions_meta.php:562
-#: ../../include/functions_config.php:564
-msgid "Automatically assigned no hierarchy"
-msgstr "Jerarquía no asignada automáticamente"
-
-#: ../../enterprise/godmode/setup/setup_auth.php:337
-#: ../../enterprise/godmode/setup/setup_auth.php:385
-#: ../../enterprise/godmode/setup/setup_auth.php:1180
-#: ../../enterprise/meta/include/functions_meta.php:715
-#: ../../enterprise/meta/include/functions_meta.php:727
-msgid "Auto enable node access"
-msgstr "Auto-habilitar acceso al nodo"
-
-#: ../../enterprise/godmode/setup/setup_auth.php:353
-#: ../../enterprise/godmode/setup/setup_auth.php:1148
-#: ../../enterprise/meta/include/functions_meta.php:665
-#: ../../include/functions_config.php:584
-msgid "Advanced Config AD"
-msgstr "Configuración avanzada AD"
-
-#: ../../enterprise/godmode/setup/setup_auth.php:385
-#: ../../enterprise/godmode/setup/setup_auth.php:1180
-msgid "New users will be able to log in to the nodes."
-msgstr "Los usuarios nuevos podrán conectarse en los nodos."
-
-#: ../../enterprise/godmode/setup/setup_auth.php:413
-#: ../../enterprise/godmode/setup/setup_auth.php:1208
-#: ../../enterprise/meta/include/functions_meta.php:685
-#: ../../include/functions_config.php:596
-msgid "Advanced Permisions AD"
-msgstr "Permisos avanzados de AD"
-
-#: ../../enterprise/godmode/setup/setup_auth.php:459
-#: ../../enterprise/godmode/setup/setup_auth.php:511
-#: ../../enterprise/godmode/setup/setup_auth.php:1254
-#: ../../enterprise/godmode/setup/setup_auth.php:1308
-msgid "AD Groups"
-msgstr "Grupos AD"
-
-#: ../../enterprise/godmode/setup/setup_auth.php:569
-#: ../../enterprise/godmode/setup/setup_auth.php:1371
-#: ../../enterprise/meta/include/functions_meta.php:572
-#: ../../include/functions_config.php:568
-msgid "Autocreate blacklist"
-msgstr "Crear una lista negra automáticamente"
-
-#: ../../enterprise/godmode/setup/setup_auth.php:577
-#: ../../enterprise/godmode/setup/setup_auth.php:1379
-#: ../../enterprise/meta/include/functions_meta.php:635
-#: ../../include/functions_config.php:572
-msgid "Active directory server"
-msgstr "Servidor de directorio activo"
-
-#: ../../enterprise/godmode/setup/setup_auth.php:583
-#: ../../enterprise/godmode/setup/setup_auth.php:1385
-#: ../../enterprise/meta/include/functions_meta.php:645
-#: ../../include/functions_config.php:576
-msgid "Active directory port"
-msgstr "Puerto del directorio activo"
-
-#: ../../enterprise/godmode/setup/setup_auth.php:595
-#: ../../enterprise/godmode/setup/setup_auth.php:1397
-#: ../../enterprise/meta/include/functions_meta.php:675
-#: ../../include/functions_config.php:592
-msgid "Domain"
-msgstr "Dominio"
-
-#: ../../enterprise/godmode/setup/setup_auth.php:738
-#: ../../enterprise/godmode/setup/setup_auth.php:854
-msgid "You must select a profile from the list of profiles."
-msgstr "Selecciona un perfil de la lista de perfiles"
-
-#: ../../enterprise/godmode/setup/setup_auth.php:743
-#: ../../enterprise/godmode/setup/setup_auth.php:859
-msgid "You must select a group from the list of groups."
-msgstr "Seleccione un grupo de la lista de grupos"
-
-#: ../../enterprise/godmode/setup/setup_auth.php:1021
-#: ../../include/functions_config.php:660
-msgid "MySQL host"
-msgstr "Dirección de MySQL"
-
-#: ../../enterprise/godmode/setup/setup_auth.php:1027
-#: ../../enterprise/godmode/setup/setup_auth.php:1059
-#: ../../enterprise/meta/include/functions_meta.php:1145
-#: ../../enterprise/meta/include/functions_meta.php:1199
-#: ../../enterprise/meta/include/functions_meta.php:1253
-#: ../../include/functions_config.php:664 ../../include/functions_config.php:684
-msgid "MySQL port"
-msgstr "Puerto de MySQL"
-
-#: ../../enterprise/godmode/setup/setup_auth.php:1033
-#: ../../enterprise/godmode/setup/setup_auth.php:1065
-#: ../../enterprise/godmode/setup/setup_history.php:189
-#: ../../enterprise/meta/include/functions_meta.php:1155
-#: ../../enterprise/meta/include/functions_meta.php:1209
-#: ../../enterprise/meta/include/functions_meta.php:1263
-#: ../../include/functions_config.php:668 ../../include/functions_config.php:688
-#: ../../include/functions_config.php:1515
-msgid "Database name"
-msgstr "Nombre de la base de datos"
-
-#: ../../enterprise/godmode/setup/setup_auth.php:1053
-#: ../../enterprise/meta/include/functions_meta.php:1243
-#: ../../include/functions_config.php:680
-msgid "Integria host"
-msgstr "Servidor de Integria IMS"
-
-#: ../../enterprise/godmode/setup/setup_auth.php:1084
-msgid "SimpleSAML path"
-msgstr "Ruta de SimpleSAML"
-
-#: ../../enterprise/godmode/setup/setup_auth.php:1085
-msgid "Directory where your 'simplesamlphp' folder is located."
-msgstr "Directorio donde se encuentra la carpeta 'simplesamlphp'."
-
-#: ../../enterprise/godmode/setup/setup_auth.php:1091
-msgid "SAML source"
-msgstr "SAML de origen"
-
-#: ../../enterprise/godmode/setup/setup_auth.php:1092
-msgid "Authsource name, e.g. 'example-userpass'"
-msgstr "Nombre authsource, por ejemplo: 'example-userpass'"
-
-#: ../../enterprise/godmode/setup/setup_auth.php:1099
-msgid "SAML user id attribute"
-msgstr "Atribito de ID de usuario SAML"
-
-#: ../../enterprise/godmode/setup/setup_auth.php:1104
-msgid "SAML mail attribute"
-msgstr "Atributo de correo SAML"
-
-#: ../../enterprise/godmode/setup/setup_auth.php:1105
-msgid ""
-"SAML field where search for the user email (while autocreate remote users is "
-"enabled)"
-msgstr ""
-"Campo SAML donde buscar el correo electrónico del usuario (mientras auto crear "
-"usuarios remotos esté activado)"
-
-#: ../../enterprise/godmode/setup/setup_auth.php:1112
-msgid "SAML group name attribute"
-msgstr "Atributo de nombre de grupo SAML"
-
-#: ../../enterprise/godmode/setup/setup_auth.php:1113
-msgid ""
-"SAML field where search for the group name (while autocreate remote users is "
-"enabled)"
-msgstr ""
-"Campo SAML donde buscar el nombre del grupo (mientras auto crear usuarios "
-"remotos esté activado)"
-
-#: ../../enterprise/godmode/setup/setup_auth.php:1120
-msgid "Simple attribute / Multivalue attribute"
-msgstr "Atributo simple/atributo con valores múltiples"
-
-#: ../../enterprise/godmode/setup/setup_auth.php:1125
-msgid "SAML profiles and tag attribute"
-msgstr "Atributo de perfiles y etiquetas SAML"
-
-#: ../../enterprise/godmode/setup/setup_auth.php:1130
-msgid "Profile attribute"
-msgstr "Atributo de perfil"
-
-#: ../../enterprise/godmode/setup/setup_auth.php:1135
-msgid "Tag attribute"
-msgstr "Atributo de etiqueta"
-
-#: ../../enterprise/godmode/setup/setup_auth.php:1140
-msgid "SAML profile and tags prefix"
-msgstr "Prefijo de perfiles y etiquetas SAML"
-
-#: ../../enterprise/godmode/setup/setup_skins.php:38
-#: ../../enterprise/godmode/setup/edit_skin.php:44
-msgid "Skins configuration"
-msgstr "Configuración de apariencia"
-
-#: ../../enterprise/godmode/setup/setup_skins.php:77
-msgid "Error deleting skin"
-msgstr "Error al borrar la apariencia"
-
-#: ../../enterprise/godmode/setup/setup_skins.php:79
-msgid "Successfully deleted skin"
-msgstr "Apariencia eliminada correctamente"
-
-#: ../../enterprise/godmode/setup/setup_skins.php:125
-msgid "Skin name"
-msgstr "Nombre de la apariencia"
-
-#: ../../enterprise/godmode/setup/setup_skins.php:126
-#: ../../enterprise/godmode/setup/edit_skin.php:241
-msgid "Relative path"
-msgstr "Ruta relativa"
-
-#: ../../enterprise/godmode/setup/setup_skins.php:153
-msgid "There are no defined skins"
-msgstr "No hay apariencia definida"
-
-#: ../../enterprise/godmode/setup/setup_skins.php:159
-msgid "Create skin"
-msgstr "Crear apariencia"
-
-#: ../../enterprise/godmode/setup/setup.php:47
-#: ../../include/functions_config.php:397
-msgid "Forward SNMP traps to agent (if exist)"
-msgstr "Reenviar los traps SNMP al agente (si existe)"
-
-#: ../../enterprise/godmode/setup/setup.php:48
-msgid "Yes and change status"
-msgstr "Sí y cambiar estado"
-
-#: ../../enterprise/godmode/setup/setup.php:56
-msgid "Yes without changing status"
-msgstr "Sí, sin cambiar estado"
-
-#: ../../enterprise/godmode/setup/setup.php:77
-#: ../../include/functions_config.php:401
-msgid "Use Enterprise ACL System"
-msgstr "Utilizar el sistema ACL Enterprise"
-
-#: ../../enterprise/godmode/setup/setup.php:90
-#: ../../enterprise/meta/advanced/metasetup.setup.php:288
-#: ../../enterprise/meta/include/functions_meta.php:273
-#: ../../include/functions_config.php:409
-msgid "Size of collection"
-msgstr "Tamaño de la colección"
-
-#: ../../enterprise/godmode/setup/setup.php:98
-#: ../../enterprise/meta/advanced/metasetup.setup.php:289
-msgid " Bytes"
-msgstr " Bytes"
-
-#: ../../enterprise/godmode/setup/setup.php:104
-#: ../../include/functions_config.php:413
-msgid "Events replication"
-msgstr "Replicación de eventos"
-
-#: ../../enterprise/godmode/setup/setup.php:116
-#: ../../include/functions_config.php:418
-msgid "Replication interval"
-msgstr "Intervalo de replicación"
-
-#: ../../enterprise/godmode/setup/setup.php:124
-msgid "Seconds"
-msgstr "Segundos"
-
-#: ../../enterprise/godmode/setup/setup.php:130
-#: ../../include/functions_config.php:422
-msgid "Replication limit"
-msgstr "Límite de replicación"
-
-#: ../../enterprise/godmode/setup/setup.php:144
-msgid "Last replication at"
-msgstr "Última replicación a"
-
-#: ../../enterprise/godmode/setup/setup.php:146
-msgid "No replication yet"
-msgstr "Sin replicación todavía"
-
-#: ../../enterprise/godmode/setup/setup.php:157
-#: ../../include/functions_config.php:426
-msgid "Replication mode"
-msgstr "Modo de replicación"
-
-#: ../../enterprise/godmode/setup/setup.php:160
-msgid "Only validated events"
-msgstr "Solo eventos validados"
-
-#: ../../enterprise/godmode/setup/setup.php:175
-msgid "Metaconsole DB engine"
-msgstr "Motor BD de la Metaconsola"
-
-#: ../../enterprise/godmode/setup/setup.php:178
-#: ../../enterprise/include/class/MySQL.app.php:420
-msgid "MySQL"
-msgstr "MySQL"
-
-#: ../../enterprise/godmode/setup/setup.php:179
-#: ../../enterprise/godmode/menu.php:175
-#: ../../enterprise/include/class/Oracle.app.php:411
-msgid "Oracle"
-msgstr "Oracle"
-
-#: ../../enterprise/godmode/setup/setup.php:193
-msgid "Metaconsole DB host"
-msgstr "Host BD Metaconsola"
-
-#: ../../enterprise/godmode/setup/setup.php:207
-msgid "Metaconsole DB name"
-msgstr "Nombre BD Metaconsola"
-
-#: ../../enterprise/godmode/setup/setup.php:221
-msgid "Metaconsole DB user"
-msgstr "Usuario BD Metaconsola"
-
-#: ../../enterprise/godmode/setup/setup.php:235
-msgid "Metaconsole DB password"
-msgstr "Contraseña BD Metaconsola"
-
-#: ../../enterprise/godmode/setup/setup.php:250
-#: ../../enterprise/meta/advanced/metasetup.consoles.php:673
-msgid "Metaconsole DB port"
-msgstr "Puerto BD Metaconsola"
-
-#: ../../enterprise/godmode/setup/setup.php:264
-#: ../../include/functions_config.php:430
-msgid "Show events list in local console (read only)"
-msgstr "Mostrar lista de eventos en la consola local (solo lectura)"
-
-#: ../../enterprise/godmode/setup/setup.php:275
-msgid "Events Configuration Information"
-msgstr "Información de configuración de evntos"
-
-#: ../../enterprise/godmode/setup/setup.php:277
-msgid ""
-" If you are replicating events, events validated or deleted on the metaconsole "
-"WILL NOT be deleted or validated here. This option is just to allow local "
-"pandora users to see events, but not to operate with them. Operation, when "
-"event replication is enabled, should be done only in metaconsole"
-msgstr ""
-" Si está replicando eventos, los eventos validados o eliminados en la "
-"Metaconsola NO se eliminarán o validarán aquí. Esta opción solo permite a los "
-"usuarios locales de Pandora FMS ver los eventos, pero gestionarlos.\r\n"
-"Su gestión solo puede llevarse a cabo en la Metaconsola cuando la replicación "
-"de eventos está activa."
-
-#: ../../enterprise/godmode/setup/setup.php:282
-#: ../../include/functions_config.php:484
-msgid "Inventory changes blacklist"
-msgstr "Lista negra ante cambios de inventario"
-
-#: ../../enterprise/godmode/setup/setup.php:345
-msgid "Out of black list"
-msgstr "Fuera de la lista negra"
-
-#: ../../enterprise/godmode/setup/setup.php:347
-msgid "In black list"
-msgstr "En la lista negra"
-
-#: ../../enterprise/godmode/setup/setup.php:352
-msgid "Push selected modules into blacklist"
-msgstr "Mover los módulos seleccionados a la lista negra"
-
-#: ../../enterprise/godmode/setup/setup.php:354
-msgid "Pop selected modules out of blacklist"
-msgstr "Sacar los módulos seleccionados de la lista negra"
-
-#: ../../enterprise/godmode/setup/setup.php:366
-#: ../../include/functions_config.php:463
-msgid "Activate Log Collector"
-msgstr "Activar el colector de logs"
-
-#: ../../enterprise/godmode/setup/setup.php:378
-#: ../../enterprise/meta/advanced/metasetup.setup.php:283
-#: ../../enterprise/meta/include/functions_meta.php:248
-msgid "Enable update manager"
-msgstr "Habilitar gestor de actualizaciones"
-
-#: ../../enterprise/godmode/setup/setup.php:389
-msgid "Critical threshold for occupied addresses"
-msgstr "Umbral crítico para las direcciones ocupadas"
-
-#: ../../enterprise/godmode/setup/setup.php:401
-msgid "Warning threshold for occupied addresses"
-msgstr "Umbral de advertencia para las direcciones ocupadas"
-
-#: ../../enterprise/godmode/setup/setup.php:413
-#: ../../include/functions_config.php:479
-msgid "SAP/R3 Plugin Licence"
-msgstr "Licencia plugin SAP/R3"
-
-#: ../../enterprise/godmode/setup/setup.php:429
-msgid "Enterprise options"
-msgstr "Opciones Enterprise"
-
-#: ../../enterprise/godmode/setup/setup.php:467
-#: ../../enterprise/meta/advanced/metasetup.password.php:79
-#: ../../enterprise/meta/include/functions_meta.php:344
-#: ../../include/functions_config.php:492
-msgid "Enable password policy"
-msgstr "Habilitar política de contraseñas"
-
-#: ../../enterprise/godmode/setup/setup.php:476
-#: ../../enterprise/meta/advanced/metasetup.password.php:101
-#: ../../enterprise/meta/include/functions_meta.php:354
-#: ../../include/functions_config.php:496
-msgid "Min. size password"
-msgstr "Contraseña con tamaño mínimo"
-
-#: ../../enterprise/godmode/setup/setup.php:484
-#: ../../enterprise/meta/advanced/metasetup.password.php:102
-msgid " Caracters"
-msgstr " Caracteres"
-
-#: ../../enterprise/godmode/setup/setup.php:487
-#: ../../enterprise/meta/advanced/metasetup.password.php:138
-#: ../../enterprise/meta/include/functions_meta.php:364
-#: ../../include/functions_config.php:516
-msgid "Password must have numbers"
-msgstr "La contraseña debe contener números."
-
-#: ../../enterprise/godmode/setup/setup.php:496
-#: ../../enterprise/meta/advanced/metasetup.password.php:142
-#: ../../enterprise/meta/include/functions_meta.php:374
-#: ../../include/functions_config.php:520
-msgid "Password must have symbols"
-msgstr "La contraseña debe contener símbolos."
-
-#: ../../enterprise/godmode/setup/setup.php:505
-#: ../../enterprise/meta/advanced/metasetup.password.php:105
-#: ../../enterprise/meta/include/functions_meta.php:384
-#: ../../include/functions_config.php:500
-msgid "Password expiration"
-msgstr "Expiración de contraseña"
-
-#: ../../enterprise/godmode/setup/setup.php:513
-#: ../../enterprise/meta/advanced/metasetup.password.php:106
-msgid " Days"
-msgstr " Días"
-
-#: ../../enterprise/godmode/setup/setup.php:516
-#: ../../enterprise/meta/advanced/metasetup.password.php:132
-#: ../../enterprise/meta/include/functions_meta.php:394
-#: ../../include/functions_config.php:504
-msgid "Force change password on first login"
-msgstr "Forzar cambio de contraseña en el primer inicio de sesión"
-
-#: ../../enterprise/godmode/setup/setup.php:525
-#: ../../enterprise/meta/advanced/metasetup.password.php:109
-#: ../../enterprise/meta/include/functions_meta.php:404
-#: ../../include/functions_config.php:508
-msgid "User blocked if login fails"
-msgstr "Usuario bloqueado si la identificación falla"
-
-#: ../../enterprise/godmode/setup/setup.php:533
-#: ../../enterprise/meta/advanced/metasetup.password.php:110
-msgid " Minutes"
-msgstr " Minutos"
-
-#: ../../enterprise/godmode/setup/setup.php:536
-#: ../../enterprise/meta/advanced/metasetup.password.php:113
-#: ../../enterprise/meta/include/functions_meta.php:414
-#: ../../include/functions_config.php:512
-msgid "Number of failed login attempts"
-msgstr "Número de intentos de identificación fallidos"
-
-#: ../../enterprise/godmode/setup/setup.php:544
-#: ../../enterprise/meta/advanced/metasetup.password.php:114
-msgid " Attempts"
-msgstr " Intentos"
-
-#: ../../enterprise/godmode/setup/setup.php:547
-#: ../../enterprise/meta/advanced/metasetup.password.php:126
-#: ../../enterprise/meta/include/functions_meta.php:447
-#: ../../include/functions_config.php:524
-msgid "Apply password policy to admin users"
-msgstr "Aplicar la política de contraseñas a los usuarios administradores"
-
-#: ../../enterprise/godmode/setup/setup.php:556
-#: ../../enterprise/meta/advanced/metasetup.password.php:121
-#: ../../enterprise/meta/include/functions_meta.php:424
-#: ../../include/functions_config.php:528
-msgid "Enable password history"
-msgstr "Activar histórico de contraseñas"
-
-#: ../../enterprise/godmode/setup/setup.php:565
-#: ../../enterprise/meta/advanced/metasetup.password.php:117
-#: ../../enterprise/meta/include/functions_meta.php:436
-#: ../../include/functions_config.php:532
-msgid "Compare previous password"
-msgstr "Comparar la contraseña anterior"
-
-#: ../../enterprise/godmode/setup/setup.php:577
-#: ../../enterprise/meta/advanced/metasetup.password.php:146
-#: ../../enterprise/meta/include/functions_meta.php:458
-#: ../../include/functions_config.php:536
-msgid "Activate reset password"
-msgstr "Activar reseteo de contraseña"
-
-#: ../../enterprise/godmode/setup/setup.php:589
-#, php-format
-msgid ""
-"Password related configuration only applies when local %s authentication is "
-"selected."
-msgstr ""
-"La configuración relacionada con la contraseña solo aplica cuando la "
-"autenticación local %s está seleccionada."
-
-#: ../../enterprise/godmode/setup/setup.php:598
-msgid "Enterprise password policy"
-msgstr "Política de contraseña Enterprise"
-
-#: ../../enterprise/godmode/setup/setup_log_collector.php:37
-msgid "ElasticSearch IP"
-msgstr "IP de ElasticSearch"
-
-#: ../../enterprise/godmode/setup/setup_log_collector.php:37
-msgid "IP of ElasticSearch server"
-msgstr "IP del servidor ElasticSearch"
-
-#: ../../enterprise/godmode/setup/setup_log_collector.php:39
-msgid "ElasticSearch Port"
-msgstr "Puerto ElasticSearch"
-
-#: ../../enterprise/godmode/setup/setup_log_collector.php:39
-msgid "Port of ElasticSearch server"
-msgstr "Puerto del servidor ElasticSearch"
-
-#: ../../enterprise/godmode/setup/setup_log_collector.php:41
-#: ../../enterprise/meta/include/functions_meta.php:490
-#: ../../include/functions_config.php:1485
-msgid "Number of logs viewed"
-msgstr "Número de logs vistos"
-
-#: ../../enterprise/godmode/setup/setup_log_collector.php:44
-#: ../../include/functions_config.php:1489
-msgid "Days to purge old information"
-msgstr "Días para purgar información antigua"
-
-#: ../../enterprise/godmode/setup/setup_log_collector.php:48
-msgid "ElasticSearch Status"
-msgstr "Estado de ElasticSearch"
-
-#: ../../enterprise/godmode/setup/setup_history.php:84
-msgid "Method does not exist"
-msgstr "El método no existe"
-
-#: ../../enterprise/godmode/setup/setup_history.php:159
-#: ../../include/functions_config.php:1507
-msgid "Host"
-msgstr "Host"
-
-#: ../../enterprise/godmode/setup/setup_history.php:204
-#: ../../include/functions_config.php:1528
-msgid "Database user"
-msgstr "Usuario de la base de datos"
-
-#: ../../enterprise/godmode/setup/setup_history.php:219
-#: ../../include/functions_config.php:1532
-msgid "Database password"
-msgstr "Contraseña de la base de datos"
-
-#: ../../enterprise/godmode/setup/setup_history.php:223
-msgid "Configure connection target"
-msgstr "Configurar objetivo de la conexión"
-
-#: ../../enterprise/godmode/setup/setup_history.php:237
-msgid "Active to historical settings"
-msgstr "Ajustes de activa a histórica"
-
-#: ../../enterprise/godmode/setup/setup_history.php:241
-#, php-format
-msgid ""
-"Data will be available in active database as time as days you specify here. "
-"Older information will be sent to historical database. Note data will be "
-"purged from active database after %d days."
-msgstr ""
-"Los datos estarán activos en la base de datos activa tanto tiempo como "
-"especifique aquí. La información más antigua se enviará a la base de datos "
-"histórica. Los datos se purgarán de la base de datos activa después de %d días."
-
-#: ../../enterprise/godmode/setup/setup_history.php:247
-msgid "Data days old to keep in active database"
-msgstr "Antigüedad de los datos a mantener en la base de datos activa"
-
-#: ../../enterprise/godmode/setup/setup_history.php:262
-msgid ""
-"Number of rows to be sent to historical database each 'delay' seconds. If you "
-"experience issues running pandora_db, try decreasing this value."
-msgstr ""
-"Número de filas a enviar a la base de datos histórica cada 'retraso' en "
-"segundos. Si tiene problemas al ejecutar pandora_db, pruebe a reducir este "
-"valor."
-
-#: ../../enterprise/godmode/setup/setup_history.php:266
-msgid "Transference block size (Step)"
-msgstr "Tamaño del bloque de transferencia (Step)"
-
-#: ../../enterprise/godmode/setup/setup_history.php:271
-msgid "Delay between transferences (seconds)"
-msgstr "Retraso entre transferencias (segundos)"
-
-#: ../../enterprise/godmode/setup/setup_history.php:276
-msgid "Historical data settings"
-msgstr "Ajustes de datos de histórico"
-
-#: ../../enterprise/godmode/setup/setup_history.php:278
-msgid "Maximum historical data age (days)"
-msgstr "Antigüedad máxima de los datos de histórico (días)"
-
-#: ../../enterprise/godmode/setup/setup_history.php:283
-msgid "Maximum historical string data age (days)"
-msgstr "Antigüedad máxima de los datos de cadenas de histórico (días)"
-
-#: ../../enterprise/godmode/setup/setup_history.php:288
-msgid "Data older than 'days' is compacted in order to improve disk utilization."
-msgstr ""
-"Los datos de más antigüedad de 'días' se compactan para mejorar la utilización "
-"del disco."
-
-#: ../../enterprise/godmode/setup/setup_history.php:293
-msgid ""
-"Automatically create partitions on specific database IDB files (tagente_datos, "
-"tagente_datos_string, tevento). Monthly partitions."
-msgstr ""
-"Crear automáticamente particiones en archivos específicos de la base de datos "
-"IDB (tagent_data, tagent_data_string, tevent). Particiones mensuales."
-
-#: ../../enterprise/godmode/setup/setup_history.php:297
-msgid "Automatic partition of big tables."
-msgstr "Partición automática de grandes tablas."
-
-#: ../../enterprise/godmode/setup/setup_history.php:308
-msgid "Historical events settings"
-msgstr "Ajustes de eventos de histórico"
-
-#: ../../enterprise/godmode/setup/setup_history.php:319
-#, php-format
-msgid ""
-"Events will remain in active database a maximum of specified days, then they "
-"will be transferred to historical database. Note events will be purged from "
-"active database after %d days."
-msgstr ""
-"Los eventos permanecerán en la base de datos activa un máximo de días "
-"especificados, después se transferirán a la base de datos histórica. Los "
-"eventos se purgarán de la base de datos activa después de %d días."
-
-#: ../../enterprise/godmode/setup/setup_history.php:325
-msgid "Events days old to keep in active database"
-msgstr "Antigüedad de eventos para permanecer en la base de datos activa"
-
-#: ../../enterprise/godmode/setup/setup_history.php:340
-msgid "Events will be purged from historical database after specified days."
-msgstr ""
-"Los eventos se purgarán de la base de datos histórica después del número de "
-"días especificado."
-
-#: ../../enterprise/godmode/setup/setup_history.php:344
-msgid "Maximum historical events age (days)"
-msgstr "Antigüedad máxima de los eventos de histórico (días)"
-
-#: ../../enterprise/godmode/setup/setup_history.php:361
-msgid "Enable historical events"
-msgstr "Habilitar eventos de histórico"
-
-#: ../../enterprise/godmode/setup/setup_history.php:373
-msgid "Customize settings"
-msgstr "Personalizar configuración"
-
-#: ../../enterprise/godmode/setup/setup_history.php:385
-msgid "Enable historical database"
-msgstr "Habilitar base de datos histórica"
-
-#: ../../enterprise/godmode/setup/setup_history.php:407
-msgid "History database connection is available."
-msgstr "La conexión con la base de datos histórica está disponible."
-
-#: ../../enterprise/godmode/setup/setup_history.php:414
-#, php-format
-msgid "History database connection failed: %s"
-msgstr "No se ha podido conectar con la base de datos histórica: %s"
-
-#: ../../enterprise/godmode/setup/setup_history.php:430
-msgid "History database schema is installed."
-msgstr "Es esquema de la base de datos histórica está instalado."
-
-#: ../../enterprise/godmode/setup/setup_history.php:439
-#, php-format
-msgid "Database is not installed: %s"
-msgstr "Base de datos no instalada: %s"
-
-#: ../../enterprise/godmode/setup/setup_history.php:444
-msgid "Install database schema"
-msgstr "Instalar esquema de base de datos"
-
-#: ../../enterprise/godmode/setup/setup_history.php:445
-msgid "This action will install the schema into the target, are you sure?"
-msgstr "Esta acción instalará el esquema en el objetivo, ¿está seguro?"
-
-#: ../../enterprise/godmode/setup/setup_history.php:467
-msgid "History database schema is up to date with active database."
-msgstr ""
-"El esquema de la base de datos histórica está actualizado con la base de datos "
-"activa."
-
-#: ../../enterprise/godmode/setup/setup_history.php:476
-#, php-format
-msgid "Database is not updated: %s"
-msgstr "La base de datos no está actualizada: %s"
-
-#: ../../enterprise/godmode/setup/setup_history.php:491
-msgid "Current schema: "
-msgstr "Esquema actual: "
-
-#: ../../enterprise/godmode/setup/setup_history.php:498
-msgid "Upgrade database schema"
-msgstr "Actualizar el esquema de la base de datos"
-
-#: ../../enterprise/godmode/setup/setup_history.php:499
-msgid ""
-"This action will schedule the installation or upgrade of database schema into "
-"the target, are you sure?"
-msgstr ""
-"Esta acción programará la instalación o la actualización del esquema de la "
-"base de datos en el objetivo, ¿está seguro?"
-
-#: ../../enterprise/godmode/setup/setup_history.php:532
-msgid ""
-"By enabling historical database, target connection will be tested. If needed, "
-"database schema will be applied on your selected target, do you want to "
-"proceed?"
-msgstr ""
-"Al habilitar la base de datos histórica, se probará la conexión con el "
-"objetivo. Si lo necesita, el esquema de la base de datos se aplicará al "
-"objetivo seleccionado, ¿desea proceder?"
-
-#: ../../enterprise/godmode/setup/setup_history.php:533
-msgid ""
-"Changing historical database target, schema will be recreated in new one, but "
-"old data will remain in previous node, unlinked from this console and not "
-"maintained, do you want to proceed?"
-msgstr ""
-"Al cambiar el objetivo de la base de datos histórica, el esquema se recreará "
-"en uno nuevo, pero los datos antiguos permanecerán en el nodo anterior, sin "
-"estar enlazados con la consola y sin estar mantenidos, ¿desea proceder?"
-
-#: ../../enterprise/godmode/setup/setup_history.php:535
-#, php-format
-msgid ""
-"Disabling historical database, you will not keep any data older than %d days. "
-"Are you sure?"
-msgstr ""
-"Al deshabilitar la base de datos histórica, no tendrá datos de mayor "
-"antigüedad que %d días. ¿Está seguro?"
-
-#: ../../enterprise/godmode/setup/setup_history.php:539
-#, php-format
-msgid ""
-"Historical database allows you to keep data older than %d days. This action "
-"will produce no changes. Historical database will remain disabled."
-msgstr ""
-"La base de datos histórica le permite mantener datos de más antigüedad que %d "
-"días. Está acción no producirá cambios. La base de datos histórica permanecerá "
-"deshabilitada."
-
-#: ../../enterprise/godmode/setup/setup_history.php:544
-msgid ""
-"By changing historical database target, the new connection will be tested. If "
-"needed, database schema will be applied on your selected target. Information "
-"stored in previous configuration will be IGNORED, do you want to proceed?"
-msgstr ""
-"Al cambiar el objetivo de la base de datos histórica, se probará la nueva "
-"conexión. Si lo necesita, el esquema de la base de datos se aplicará en el "
-"objetivo seleccionado. La información almacenada en configuraciones previas "
-"será IGNORADA, ¿desea proceder?"
-
-#: ../../enterprise/godmode/setup/setup_history.php:547
-msgid "Please ensure all fields matches your needs."
-msgstr "Asegúrese de que todos los campos coinciden con sus necesidades."
-
-#: ../../enterprise/godmode/setup/setup_history.php:678
-#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:640
-#: ../../enterprise/include/functions_tasklist.php:154
-#: ../../enterprise/meta/advanced/cron_main.php:381
-#: ../../include/functions_cron.php:465
-msgid "Scheduled"
-msgstr "Programado"
-
-#: ../../enterprise/godmode/setup/setup_history.php:681
-msgid "Update scheduled."
-msgstr "Actualizar programados."
-
-#: ../../enterprise/godmode/setup/setup_metaconsole.php:31
-msgid "Metaconsole setup"
-msgstr "Configuración de la Metaconsola"
-
-#: ../../enterprise/godmode/setup/setup_metaconsole.php:85
-#: ../../enterprise/meta/advanced/metasetup.visual.php:58
-#: ../../enterprise/meta/advanced/metasetup.consoles.php:219
-#: ../../enterprise/meta/advanced/metasetup.setup.php:86
-#: ../../enterprise/meta/advanced/metasetup.performance.php:54
-#: ../../enterprise/meta/advanced/metasetup.relations.php:103
-#: ../../enterprise/meta/advanced/metasetup.log.php:48
-#: ../../enterprise/meta/advanced/metasetup.auth.php:54
-#: ../../enterprise/meta/advanced/metasetup.password.php:53
-msgid "Successfully update"
-msgstr "Actualizado correctamente"
-
-#: ../../enterprise/godmode/setup/setup_metaconsole.php:86
-#: ../../enterprise/meta/advanced/metasetup.consoles.php:220
-msgid "Could not be update"
-msgstr "No se pudo actualizar"
-
-#: ../../enterprise/godmode/setup/setup_metaconsole.php:195
-msgid "Pandora FMS Metaconsole item edition"
-msgstr "Edición de elementos de la Metaconsola de Pandora FMS"
-
-#: ../../enterprise/godmode/setup/setup_metaconsole.php:202
-#: ../../enterprise/meta/advanced/metasetup.consoles.php:519
-msgid "Auth token"
-msgstr "Hash de autentificación"
-
-#: ../../enterprise/godmode/setup/setup_metaconsole.php:202
-msgid ""
-"Token previously configured on the destination Pandora console in order to use "
-"delegated authentification."
-msgstr ""
-"Token configurado anteriormente en la consola de destino de Pandora FMS con el "
-"fin de utilizar la autentificación delegada."
-
-#: ../../enterprise/godmode/setup/setup_metaconsole.php:206
-#: ../../enterprise/meta/advanced/metasetup.consoles.php:516
-#: ../../enterprise/meta/advanced/metasetup.consoles.php:839
-msgid "Console URL"
-msgstr "URL de la consola"
-
-#: ../../enterprise/godmode/setup/setup_metaconsole.php:215
-#: ../../enterprise/godmode/setup/setup_metaconsole.php:275
-#: ../../enterprise/meta/advanced/metasetup.consoles.php:564
-#: ../../enterprise/meta/advanced/metasetup.consoles.php:840
-msgid "DB Host"
-msgstr "Host de la BD"
-
-#: ../../enterprise/godmode/setup/setup_metaconsole.php:219
-#: ../../enterprise/meta/advanced/metasetup.consoles.php:573
-msgid "DB Name"
-msgstr "Nombre de la BD"
-
-#: ../../enterprise/godmode/setup/setup_metaconsole.php:224
-#: ../../enterprise/meta/advanced/metasetup.consoles.php:582
-msgid "DB User"
-msgstr "Usuario de la BD"
-
-#: ../../enterprise/godmode/setup/setup_metaconsole.php:228
-#: ../../enterprise/meta/advanced/metasetup.consoles.php:591
-msgid "DB Password"
-msgstr "Contraseña de la BD"
-
-#: ../../enterprise/godmode/setup/setup_metaconsole.php:233
-#: ../../enterprise/meta/advanced/metasetup.consoles.php:544
-msgid "Console User"
-msgstr "Usuario de la consola"
-
-#: ../../enterprise/godmode/setup/setup_metaconsole.php:237
-#: ../../enterprise/meta/advanced/metasetup.consoles.php:553
-msgid "Console Password"
-msgstr "Contraseña de la consola"
-
-#: ../../enterprise/godmode/setup/setup_metaconsole.php:270
-#: ../../enterprise/include/class/CommandCenter.class.php:317
-#: ../../enterprise/meta/advanced/metasetup.consoles.php:830
-msgid "DB"
-msgstr "BD"
-
-#: ../../enterprise/godmode/setup/setup_metaconsole.php:271
-#: ../../enterprise/include/class/CommandCenter.class.php:318
-#: ../../enterprise/meta/advanced/metasetup.consoles.php:831
-msgid "API"
-msgstr "API"
-
-#: ../../enterprise/godmode/setup/setup_metaconsole.php:272
-#: ../../enterprise/meta/advanced/metasetup.consoles.php:832
-msgid "Compatibility"
-msgstr "Compatibilidad"
-
-#: ../../enterprise/godmode/setup/setup_metaconsole.php:274
-msgid "Console URLxxxxxx"
-msgstr "Consola URLxxxxxx"
-
-#: ../../enterprise/godmode/setup/edit_skin.php:47
-msgid "Successfully updated skin"
-msgstr "Apariencia actualizada correctamente"
-
-#: ../../enterprise/godmode/setup/edit_skin.php:49
-#: ../../enterprise/godmode/setup/edit_skin.php:67
-msgid "Error updating skin"
-msgstr "Error al actualizar la apariencia"
-
-#: ../../enterprise/godmode/setup/edit_skin.php:197
-msgid "Error creating skin"
-msgstr "Error al crear la apariencia"
-
-#: ../../enterprise/godmode/setup/edit_skin.php:201
-msgid "Successfully created skin"
-msgstr "Apariencia creada correctamente"
-
-#: ../../enterprise/godmode/setup/edit_skin.php:242
-msgid ""
-"Zip file with skin subdirectory. The name of the zip file only can have "
-"alphanumeric characters."
-msgstr ""
-"Archivo zip con subdirectorio apariencia. El nombre del archivo zip solo puede "
-"tener caracteres alfanuméricos."
-
-#: ../../enterprise/godmode/setup/edit_skin.php:267
-msgid "Group/s"
-msgstr "Grupo(s)"
-
-#: ../../enterprise/godmode/admin_access_logs.php:78
-msgid "Show extended info"
-msgstr "Mostrar más info"
-
-#: ../../enterprise/godmode/admin_access_logs.php:99
-msgid ""
-"The security check cannot be performed. There are no data in tsession_extended "
-"to check the hash."
-msgstr ""
-"La comprobación de seguridad no se puede realizar. No hay datos en "
-"tsession_extended para verificar el hash."
-
-#: ../../enterprise/godmode/admin_access_logs.php:108
-msgid "Security check is ok."
-msgstr "La comprobación de seguridad está OK."
-
-#: ../../enterprise/godmode/admin_access_logs.php:113
-msgid "Security check is fail."
-msgstr "La comprobación de seguridad ha fallado."
-
-#: ../../enterprise/godmode/admin_access_logs.php:208
-msgid "Extended info:"
-msgstr "Información extendida:"
-
-#: ../../enterprise/godmode/admin_access_logs.php:216
-msgid "Changes:"
-msgstr "Cambios:"
-
-#: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:121
-msgid "Error: The conf file of agent is not readble."
-msgstr "Error: el archivo de configuración no se puede leer."
-
-#: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:125
-msgid "Error: The conf file of agent is not writable."
-msgstr "Error: en el archivo de configuración no se puede escribir."
-
-#: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:178
-#: ../../enterprise/godmode/policies/policy_modules.php:387
-msgid "Add module"
-msgstr "Añadir módulo"
-
-#: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:213
-msgid "No module was found"
-msgstr "No se encontraron módulos."
-
-#: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:248
-msgid "Delete remote conf agent files"
-msgstr "Eliminar archivos de agente de configuración remota"
-
-#: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:249
-msgid ""
-"Delete this conf file implies that for restore you must reactive remote config "
-"in the local agent."
-msgstr ""
-"Borrar el archivo .conf implica que para restaurarlo, se debe reactivar la "
-"configuración remota en el agente local."
-
-#: ../../enterprise/godmode/agentes/collections.editor.php:71
-#: ../../enterprise/godmode/agentes/collections.agents.php:44
-#: ../../enterprise/godmode/agentes/collections.data.php:54
-#: ../../enterprise/godmode/policies/policies.php:505
-#: ../../enterprise/godmode/policies/policy_collections.php:31
-#: ../../enterprise/godmode/menu.php:70
-#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2109
-#: ../../enterprise/include/functions_policies.php:3796
-#: ../../enterprise/meta/advanced/collections.editor.php:60
-#: ../../enterprise/meta/advanced/collections.data.php:33
-#: ../../enterprise/meta/include/functions_agents_meta.php:533
-#: ../../general/first_task/collections.php:22
-msgid "Collections"
-msgstr "Colecciones"
-
-#: ../../enterprise/godmode/agentes/collections.editor.php:84
-#: ../../enterprise/godmode/agentes/collections.data.php:106
-#: ../../enterprise/godmode/agentes/collections.data.php:262
-#: ../../enterprise/godmode/agentes/collections.data.php:351
-#: ../../enterprise/godmode/agentes/collections.data.php:367
-#: ../../enterprise/godmode/agentes/collections.data.php:375
-#: ../../enterprise/meta/advanced/collections.data.php:231
-msgid "Manager configuration &gt; Edit "
-msgstr "Gestionar la configuración &gt; Editar "
-
-#: ../../enterprise/godmode/agentes/collections.editor.php:98
-msgid "Files in "
-msgstr "Archivos en "
-
-#: ../../enterprise/godmode/agentes/collections.editor.php:109
-#: ../../enterprise/godmode/agentes/collections.php:92
-#: ../../enterprise/godmode/agentes/collections.data.php:395
-#, php-format
-msgid ""
-"This console is not manager of this environment, please manage this feature "
-"from %s."
-msgstr ""
-"La consola no administra este entorno, gestione esta funcionalidad desde el "
-"administrador centralizado de %s."
-
-#: ../../enterprise/godmode/agentes/collections.editor.php:161
-#: ../../enterprise/godmode/agentes/collections.editor.php:226
-#: ../../enterprise/meta/advanced/collections.editor.php:128
-#: ../../enterprise/meta/advanced/collections.editor.php:195
-msgid "Back to file explorer"
-msgstr "Volver al explorador de archivos"
-
-#: ../../enterprise/godmode/agentes/collections.editor.php:198
-#: ../../enterprise/meta/advanced/collections.editor.php:167
-#: ../../include/functions_filemanager.php:296
-msgid "Security error."
-msgstr "Error de seguridad"
-
-#: ../../enterprise/godmode/agentes/collections.editor.php:299
-#: ../../enterprise/meta/advanced/collections.editor.php:269
-msgid "Correct update file."
-msgstr "Actualización correcta del archivo"
-
-#: ../../enterprise/godmode/agentes/collections.editor.php:300
-#: ../../enterprise/meta/advanced/collections.editor.php:270
-msgid "Incorrect update file."
-msgstr "Error al actualizar el archivo"
-
-#: ../../enterprise/godmode/agentes/collections.editor.php:447
-#: ../../enterprise/meta/advanced/collections.editor.php:403
-msgid "Please, first save a new collection before to upload files."
-msgstr "Por favor, antes de subir archivos, guarda una nueva colección."
-
-#: ../../enterprise/godmode/agentes/collections.agents.php:36
-msgid "Show Agent &gt;"
-msgstr "Mostrar agente"
-
-#: ../../enterprise/godmode/agentes/collections.agents.php:120
-#: ../../enterprise/godmode/agentes/collections.agents.php:124
-msgid "This collection has not been added to any agents"
-msgstr "Esta colección no ha sido añadida a ningún agente."
-
-#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:58
-#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:61
-msgid "The changes on this field are linked with the configuration data."
-msgstr "Los cambios en este campo están unidos con la configuración de datos."
-
-#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:67
-msgid "Using local component"
-msgstr "Usando componente local"
-
-#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:155
-msgid "Show configuration data"
-msgstr "Mostrar datos de configuración"
-
-#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:166
-msgid "Hide configuration data"
-msgstr "Ocultar datos de configuración"
-
-#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:174
-msgid "Data configuration"
-msgstr "Configuración de datos"
-
-#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:180
-#: ../../enterprise/godmode/modules/configure_local_component.php:500
-msgid "Load a basic structure on data configuration"
-msgstr "Cargar una estructura básica en la configuración de datos"
-
-#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:183
-#: ../../enterprise/godmode/modules/configure_local_component.php:503
-msgid "Check the correct structure of the data configuration"
-msgstr "Comprobar la estructura correcta de la configuración de datos"
-
-#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:196
-#: ../../enterprise/godmode/modules/configure_local_component.php:506
-msgid "First line must be \"module_begin\""
-msgstr "La primera línea tiene que ser \"module_begin\"."
-
-#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:197
-#: ../../enterprise/godmode/modules/configure_local_component.php:507
-msgid "Data configuration is empty"
-msgstr "La configuración de datos está vacía."
-
-#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:198
-#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:202
-#: ../../enterprise/godmode/modules/configure_local_component.php:508
-#: ../../enterprise/godmode/modules/configure_local_component.php:512
-msgid "Last line must be \"module_end\""
-msgstr "La última línea tiene que ser \"module_end\"."
-
-#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:199
-#: ../../enterprise/godmode/modules/configure_local_component.php:509
-msgid ""
-"Name is missed. Please add a line with \"module_name yourmodulename\" to data "
-"configuration"
-msgstr ""
-"Falta el nombre. Por favor, introduce una línea con \"module_name "
-"yourmodulename\" a la configuración de datos."
-
-#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:200
-#: ../../enterprise/godmode/modules/configure_local_component.php:510
-msgid ""
-"Type is missed. Please add a line with \"module_type yourmoduletype\" to data "
-"configuration"
-msgstr ""
-"Falta el tipo. Por favor, introduce una línea con \"module_type yourmoduletype"
-"\" a la configuración de datos."
-
-#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:201
-#: ../../enterprise/godmode/modules/configure_local_component.php:511
-msgid "Type is wrong. Please set a correct type"
-msgstr "El tipo es incorrecto. Por favor, introduce un tipo correcto."
-
-#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:204
-#: ../../enterprise/godmode/modules/configure_local_component.php:514
-msgid "Error in the syntax, please check the data configuration."
-msgstr "Error en la sintaxis; comprueba la configuración de datos."
-
-#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:205
-#: ../../enterprise/godmode/modules/configure_local_component.php:515
-msgid "Data configuration are built correctly"
-msgstr "La configuración de datos se ha efectuado correctamente."
-
-#: ../../enterprise/godmode/agentes/module_manager.php:48
-msgid "Create a new web analysis module"
-msgstr "Crear un módulo de análisis web nuevo"
-
-#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:55
-msgid "Cannot delete rule from autoconfiguration"
-msgstr "No se ha podido borrar la regla de autoconfiguración"
-
-#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:61
-msgid "Agent Autoconfiguration Information"
-msgstr "Información de la autoconfiguración de agente"
-
-#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:62
-msgid "You must click the Create or Update buttom for a correct configuration!!!"
-msgstr "Pinche en el botón de crear o actualizar para una correcta configuración"
-
-#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:70
-msgid ""
-"Cannot create autoconfiguration from read only console, please create from "
-"metaconsole (centralized management)"
-msgstr ""
-"No se ha podido crear la autoconfiguración desde la consola exclusiva de "
-"lectura, créela desde la Metaconsola (gestión centralizada)"
-
-#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:91
-msgid "Cannot create autoconfiguration in metaconsole"
-msgstr "No se ha podido crear la autoconfiguración en la metaconsola"
-
-#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:99
-msgid "Cannot create unnamed autoconfiguration"
-msgstr "No se ha podido crear una autoconfiguración sin nombre"
-
-#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:109
-msgid ""
-"Cannot udpate autoconfiguration from read only console, please create from "
-"metaconsole (centralized management)"
-msgstr ""
-"No se ha podido actualizar la autoconfiguración desde la consola exclusiva de "
-"lectura, créela desde la Metaconsola (gestión centralizada)"
-
-#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:126
-msgid "Cannot update autoconfiguration"
-msgstr "No se ha podido actualizar la autoconfiguración"
-
-#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:136
-#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:191
-msgid ""
-"Cannot modify autoconfiguration from read only console, please create from "
-"metaconsole (centralized management)"
-msgstr ""
-"No se ha podido crear la autoconfiguración desde la consola exclusiva de "
-"lectura, créela desde la Metaconsola (gestión centralizada)"
-
-#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:292
-#: ../../enterprise/godmode/agentes/agent_autoconfiguration.php:96
-msgid "Agent autoconfiguration list"
-msgstr "Lista de autoconfiguración de agentes"
-
-#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:301
-#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:422
-#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:680
-#: ../../enterprise/godmode/agentes/agent_autoconfiguration.php:103
-#: ../../enterprise/meta/include/functions_agents_meta.php:500
-#: ../../enterprise/meta/include/functions_agents_meta.php:567
-msgid "Agent autoconfiguration"
-msgstr "Autoconfiguración de agente"
-
-#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:323
-#: ../../enterprise/godmode/agentes/agent_autoconfiguration.php:129
-#: ../../enterprise/godmode/modules/manage_inventory_modules.php:63
-#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:213
-#, php-format
-msgid ""
-"This console is not manager of this environment, please manage this feature "
-"from centralized manager console. Go to %s to manage it."
-msgstr ""
-"Esta consola no es el administrador de este entorno, administre esta función "
-"desde la consola del administrador centralizado. Vaya a %s para gestionarlo."
-
-#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:335
-msgid "Autoconfiguration"
-msgstr "Autoconfiguración"
-
-#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:375
-#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:272
-#: ../../enterprise/meta/include/functions_autoprovision.php:642
-#: ../../extensions/quick_shell.php:190
-msgid "Method"
-msgstr "Método"
-
-#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:377
-#: ../../include/class/CredentialStore.class.php:959
-msgid "Extra"
-msgstr "Extra"
-
-#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:405
-msgid "Add rule"
-msgstr "Añadir regla"
-
-#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:410
-msgid "Rules"
-msgstr "Reglas"
-
-#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:432
-msgid "New group"
-msgstr "Nuevo grupo"
-
-#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:464
-#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:422
-msgid "Launch custom event"
-msgstr "Lanzar evento personalizado"
-
-#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:465
-#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:423
-msgid "Launch alert action"
-msgstr "Lanzar acción de alerta"
-
-#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:619
-#: ../../enterprise/godmode/policies/configure_policy.php:47
-msgid "Add policy"
-msgstr "Añadir política"
-
-#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:634
-#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:394
-msgid "Op"
-msgstr "Op"
-
-#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:651
-msgid "Extra configuration block"
-msgstr "Bloque de configuración extra"
-
-#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:653
-msgid ""
-"Put here any extra configuration you want to be applied to any new agent "
-"matching previously defined rules"
-msgstr ""
-"Añada cualquier configuración extra que desee que se aplique a cualquier "
-"agente nuevo que coincida con las reglas definidas"
-
-#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:686
-#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:717
-msgid "Extra actions"
-msgstr "Acciones extra"
-
-#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:707
-#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:1010
-msgid "Add extra action"
-msgstr "Añadir acción extra"
-
-#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:875
-msgid "Add new rule"
-msgstr "Añadir regla nueva"
-
-#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:877
-#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:188
-msgid "Update rule"
-msgstr "Actualizar regla"
-
-#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:1097
-msgid "Update extra action"
-msgstr "Actualizar acción extra"
-
-#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:24
-msgid "Capacity planning"
-msgstr "Planificación de la capacidad"
-
-#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:26
-msgid "Synthetic arithmetic"
-msgstr "Aritmética sintética"
-
-#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:27
-msgid "Synthetic average"
-msgstr "Media sintética"
-
-#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:28
-msgid "Trending module"
-msgstr "Módulo de tendencias"
-
-#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:114
-msgid "Fixed value"
-msgstr "Valor fijo"
-
-#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:119
-msgid "Add module to operation as add"
-msgstr "Añadir módulo a la operación como suma"
-
-#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:120
-msgid "Add module to operations as deduct"
-msgstr "Añadir módulo a la operación como resta"
-
-#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:121
-msgid "Add module to operations as multiplicate "
-msgstr "Añadir módulo a la operación como multiplicador "
-
-#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:122
-msgid "Add module to operations as divide"
-msgstr "Añadir módulo a la operación como divisor"
-
-#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:123
-msgid "Remove selected modules"
-msgstr "Eliminar los módulos seleccionados"
-
-#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:128
-msgid "Add module to average operation"
-msgstr "Añadir módulo al promedio de la operación"
-
-#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:129
-msgid "Remove selected modules from operations stack"
-msgstr "Eliminar los módulos de las operaciones de apilado"
-
-#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:144
-msgid "Move down selected modules"
-msgstr "Mover hacia abajo los módulos seleccionados"
-
-#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:145
-msgid "Move up selected modules"
-msgstr "Mover hacia arriba los módulos seleccionados"
-
-#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:175
-msgid "Select Service"
-msgstr "Seleccionar servicio"
-
-#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:188
-msgid "Netflow filter"
-msgstr "Filtro de Netflow"
-
-#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:197
-msgid "Select filter"
-msgstr "Seleccionar filtro"
-
-#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:207
-msgid "Percentual value"
-msgstr "Valor porcentual"
-
-#: ../../enterprise/godmode/agentes/inventory_manager.php:84
-#: ../../enterprise/godmode/policies/policy_inventory_modules.php:144
-msgid "Successfully added inventory module"
-msgstr "Módulo añadido al inventario correctamente"
-
-#: ../../enterprise/godmode/agentes/inventory_manager.php:86
-#: ../../enterprise/godmode/policies/policy_inventory_modules.php:153
-msgid "Error adding inventory module"
-msgstr "Error al añadir el módulo al inventario"
-
-#: ../../enterprise/godmode/agentes/inventory_manager.php:89
-#: ../../enterprise/godmode/policies/policy_inventory_modules.php:156
-msgid "The inventory of the module already exists"
-msgstr "El inventario del módulo ya existe"
-
-#: ../../enterprise/godmode/agentes/inventory_manager.php:100
-#: ../../enterprise/godmode/modules/manage_inventory_modules.php:162
-#: ../../enterprise/godmode/modules/manage_inventory_modules.php:183
-msgid "Successfully deleted inventory module"
-msgstr "Módulo del inventario eliminado correctamente"
-
-#: ../../enterprise/godmode/agentes/inventory_manager.php:102
-#: ../../enterprise/godmode/modules/manage_inventory_modules.php:163
-#: ../../enterprise/godmode/modules/manage_inventory_modules.php:184
-msgid "Error deleting inventory module"
-msgstr "Error al eliminar el módulo del inventario"
-
-#: ../../enterprise/godmode/agentes/inventory_manager.php:110
-msgid "Successfully forced inventory module"
-msgstr "Módulo del inventario forzado correctamente"
-
-#: ../../enterprise/godmode/agentes/inventory_manager.php:112
-msgid "Error forcing inventory module"
-msgstr "Error al forzar un módulo del inventario"
-
-#: ../../enterprise/godmode/agentes/inventory_manager.php:128
-#: ../../enterprise/godmode/policies/policy_inventory_modules.php:216
-#: ../../enterprise/godmode/modules/manage_inventory_modules.php:143
-msgid "Successfully updated inventory module"
-msgstr "Módulo del inventario actualizado correctamente"
-
-#: ../../enterprise/godmode/agentes/inventory_manager.php:130
-#: ../../enterprise/godmode/policies/policy_inventory_modules.php:225
-#: ../../enterprise/godmode/modules/manage_inventory_modules.php:144
-msgid "Error updating inventory module"
-msgstr "Error al actualizar el módulo del inventario"
-
-#: ../../enterprise/godmode/agentes/inventory_manager.php:165
-#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:71
-msgid "Inventory module error"
-msgstr "Error del módulo del inventario"
-
-#: ../../enterprise/godmode/agentes/inventory_manager.php:222
-#: ../../enterprise/include/functions_ui.php:92
-msgid "Target"
-msgstr "Destino"
-
-#: ../../enterprise/godmode/agentes/agent_autoconfiguration.php:51
-msgid "Cannot delete autoconfiguration"
-msgstr "No se ha podido borrar la autoconfiguración"
-
-#: ../../enterprise/godmode/agentes/agent_autoconfiguration.php:67
-msgid "enabling"
-msgstr "Habilitando"
-
-#: ../../enterprise/godmode/agentes/agent_autoconfiguration.php:70
-msgid "disabling"
-msgstr "deshabilitando"
-
-#: ../../enterprise/godmode/agentes/agent_autoconfiguration.php:75
-#, php-format
-msgid "Successfully %s"
-msgstr "%s con éxito"
-
-#: ../../enterprise/godmode/agentes/agent_autoconfiguration.php:76
-#, php-format
-msgid "Error %s"
-msgstr "Error %s"
-
-#: ../../enterprise/godmode/agentes/agent_autoconfiguration.php:158
-msgid "There are no defined autoconfigurations"
-msgstr "No hay autoconfiguraciones definidas"
-
-#: ../../enterprise/godmode/agentes/agent_autoconfiguration.php:195
-msgid "Add new configuration definition"
-msgstr "Añadir definición de nueva configuración"
-
-#: ../../enterprise/godmode/agentes/plugins_manager.php:66
-msgid "Plug-in updated succesfully"
-msgstr "Plugin actualizado correctamente"
-
-#: ../../enterprise/godmode/agentes/plugins_manager.php:66
-msgid "Plug-in cannot be updated"
-msgstr "El plugin no se pudo actualizar."
-
-#: ../../enterprise/godmode/agentes/plugins_manager.php:74
-msgid "Plug-in deleted succesfully"
-msgstr "Plugin eliminado correctamente"
-
-#: ../../enterprise/godmode/agentes/plugins_manager.php:74
-msgid "Plug-in cannot be deleted"
-msgstr "El plugin no se pudo eliminar."
-
-#: ../../enterprise/godmode/agentes/plugins_manager.php:87
-#: ../../enterprise/godmode/policies/policy_plugins.php:90
-msgid "Plug-in added succesfully"
-msgstr "Plugin añadido correctamente"
-
-#: ../../enterprise/godmode/agentes/plugins_manager.php:87
-#: ../../enterprise/godmode/policies/policy_plugins.php:91
-msgid "Plug-in cannot be added"
-msgstr "El plugin no se puede añadir."
-
-#: ../../enterprise/godmode/agentes/plugins_manager.php:97
-msgid "Plug-in enabled succesfully"
-msgstr "Plugin habilitado correctamente"
-
-#: ../../enterprise/godmode/agentes/plugins_manager.php:98
-msgid "Plug-in cannot be enabled"
-msgstr "El plugin no puede ser habilitado."
-
-#: ../../enterprise/godmode/agentes/plugins_manager.php:109
-msgid "Plug-in disabled succesfully"
-msgstr "Plugin inhabilitado correctamente"
-
-#: ../../enterprise/godmode/agentes/plugins_manager.php:110
-msgid "Plug-in cannot be disabled"
-msgstr "El plugin no puede ser inhabilitado."
-
-#: ../../enterprise/godmode/agentes/plugins_manager.php:127
-#: ../../enterprise/godmode/policies/policy_plugins.php:109
-msgid "If enabled, allows to define a complex module plugin or log."
-msgstr ""
-"Si está habilitado, permite definir un log o complemento de módulo complejo."
-
-#: ../../enterprise/godmode/agentes/plugins_manager.php:142
-#: ../../enterprise/godmode/policies/policy_plugins.php:123
-msgid "New plug-in"
-msgstr "Nuevo plugin"
-
-#: ../../enterprise/godmode/agentes/collection_manager.php:42
-#: ../../enterprise/godmode/agentes/collections.php:309
-#: ../../enterprise/godmode/policies/policies.php:326
-#: ../../enterprise/godmode/policies/policy_collections.php:248
-#: ../../enterprise/meta/advanced/metasetup.translate_string.php:187
-#: ../../enterprise/meta/advanced/metasetup.translate_string.php:188
-#: ../../enterprise/extensions/translate_string.php:313
-#: ../../enterprise/extensions/translate_string.php:314
-msgid "Free text for search (*)"
-msgstr "Texto libre para buscar (*)"
-
-#: ../../enterprise/godmode/agentes/collection_manager.php:77
-msgid "Succesful add the collection"
-msgstr "Añadido a la colección correctamente"
-
-#: ../../enterprise/godmode/agentes/collection_manager.php:78
-msgid "Unsuccesful add the collection"
-msgstr "No se ha podido añadir a la colección."
-
-#: ../../enterprise/godmode/agentes/collection_manager.php:94
-#: ../../enterprise/godmode/agentes/collections.php:188
-#: ../../enterprise/godmode/agentes/collections.php:210
-#: ../../enterprise/meta/advanced/collections.php:122
-#: ../../enterprise/meta/advanced/collections.php:138
-msgid "Successful create collection package."
-msgstr "Paquete de la colección creado correctamente"
-
-#: ../../enterprise/godmode/agentes/collection_manager.php:95
-#: ../../enterprise/godmode/agentes/collections.php:211
-#: ../../enterprise/meta/advanced/collections.php:139
-msgid "Can not create collection package."
-msgstr "No se puede crear el paquete de la colección"
-
-#: ../../enterprise/godmode/agentes/collection_manager.php:110
-#: ../../enterprise/godmode/agentes/collections.php:328
-#: ../../enterprise/godmode/policies/policy_collections.php:170
-#: ../../enterprise/godmode/policies/policy_collections.php:264
-#: ../../enterprise/meta/advanced/collections.php:312
-msgid "Short Name"
-msgstr "Nombre corto"
-
-#: ../../enterprise/godmode/agentes/collection_manager.php:166
-#: ../../enterprise/godmode/agentes/collection_manager.php:167
-#: ../../enterprise/godmode/agentes/collection_manager.php:281
-#: ../../enterprise/godmode/agentes/collection_manager.php:282
-#: ../../enterprise/godmode/agentes/collections.data.php:467
-#: ../../enterprise/godmode/agentes/collections.data.php:468
-#: ../../enterprise/meta/advanced/collections.data.php:373
-#: ../../enterprise/meta/advanced/collections.data.php:374
-msgid "Need to regenerate"
-msgstr "Necesita volver a regenerarse"
-
-#: ../../enterprise/godmode/agentes/manage_config_remote.php:42
-msgid "Data Copy"
-msgstr "Copia de datos"
-
-#: ../../enterprise/godmode/agentes/manage_config_remote.php:49
-msgid "No selected agents to copy"
-msgstr "No se han seleccionado agentes de destino para la copia"
-
-#: ../../enterprise/godmode/agentes/manage_config_remote.php:62
-msgid "No source agent selected"
-msgstr "No ha seleccionado ningún agente de origen"
-
-#: ../../enterprise/godmode/agentes/manage_config_remote.php:108
-msgid "Making copy of configuration file for"
-msgstr "Creando una copia del archivo de configuración de"
-
-#: ../../enterprise/godmode/agentes/manage_config_remote.php:117
-msgid "Error copying md5 file "
-msgstr "Error al copiar archivo MD5 "
-
-#: ../../enterprise/godmode/agentes/manage_config_remote.php:117
-#: ../../enterprise/godmode/agentes/manage_config_remote.php:119
-msgid " md5 file"
-msgstr " archivo MD5"
-
-#: ../../enterprise/godmode/agentes/manage_config_remote.php:119
-#: ../../enterprise/godmode/agentes/manage_config_remote.php:125
-msgid "Copied "
-msgstr "Copiado "
-
-#: ../../enterprise/godmode/agentes/manage_config_remote.php:123
-msgid "Error copying "
-msgstr "Error al copiar "
-
-#: ../../enterprise/godmode/agentes/manage_config_remote.php:123
-#: ../../enterprise/godmode/agentes/manage_config_remote.php:125
-msgid " config file"
-msgstr " archivo de configuración"
-
-#: ../../enterprise/godmode/agentes/manage_config_remote.php:135
-msgid "Remote configuration management"
-msgstr "Gestión de configuración remota"
-
-#: ../../enterprise/godmode/agentes/manage_config_remote.php:186
-msgid "To agent(s):"
-msgstr "Agente(s) de destino:"
-
-#: ../../enterprise/godmode/agentes/manage_config_remote.php:203
-msgid "Replicate configuration"
-msgstr "Replicar configuración"
-
-#: ../../enterprise/godmode/agentes/collections.php:65
-msgid "Success: recreate file"
-msgstr "Archivo creado de nuevo"
-
-#: ../../enterprise/godmode/agentes/collections.php:67
-msgid "Error: recreate file "
-msgstr "El archivo no se pudo volver a crear "
-
-#: ../../enterprise/godmode/agentes/collections.php:82
-#: ../../enterprise/godmode/agentes/collections.php:123
-#: ../../enterprise/godmode/agentes/collections.php:232
-msgid "Collections Management"
-msgstr "Gestión de colecciones"
-
-#: ../../enterprise/godmode/agentes/collections.php:175
-msgid "Manager collection"
-msgstr "Gestor de colecciones"
-
-#: ../../enterprise/godmode/agentes/collections.php:245
-#: ../../enterprise/meta/advanced/collections.php:208
-msgid "Error: The main directory of collections does not exist."
-msgstr "Error: el directorio principal de las colecciones no existe"
-
-#: ../../enterprise/godmode/agentes/collections.php:360
-#: ../../enterprise/meta/advanced/collections.php:373
-msgid "Are you sure to delete?"
-msgstr "¿Estás seguro de que quieres eliminarlo?"
-
-#: ../../enterprise/godmode/agentes/collections.php:361
-#: ../../enterprise/meta/advanced/collections.php:378
-#: ../../enterprise/meta/advanced/collections.php:379
-msgid "Delete collection"
-msgstr "Eliminar colección"
-
-#: ../../enterprise/godmode/agentes/collections.php:368
-#: ../../enterprise/meta/advanced/collections.php:388
-msgid "Are you sure to re-apply?"
-msgstr "¿Estás seguro de que quieres volver a aplicarlo?"
-
-#: ../../enterprise/godmode/agentes/collections.php:369
-#: ../../enterprise/meta/advanced/collections.php:389
-msgid "Re-Apply changes"
-msgstr "Volver a aplicar los cambios"
-
-#: ../../enterprise/godmode/agentes/collections.php:376
-#: ../../enterprise/meta/advanced/collections.php:396
-msgid "Are you sure to apply?"
-msgstr "¿Estás seguro de que quieres aplicarlo?"
-
-#: ../../enterprise/godmode/agentes/collections.php:377
-#: ../../enterprise/meta/advanced/collections.php:397
-msgid "Apply changes"
-msgstr "Aplicar cambios"
-
-#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:127
-msgid "Run performance tests"
-msgstr "Realizar pruebas de rendimiento"
-
-#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:138
-msgid "Target web site"
-msgstr "Sitio web de destino"
-
-#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:140
-msgid ""
-"The url specified in this field is mandatory to retrieve performance stats."
-msgstr ""
-"La URL especificada en este campo es obligatoria para recuperar las "
-"estadísticas de rendimiento."
-
-#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:154
-msgid "target web site (http://...)"
-msgstr "sitio web objetivo (http://...)"
-
-#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:161
-msgid "Execute tests from"
-msgstr "Ejecutar pruebas desde"
-
-#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:177
-msgid "Browser"
-msgstr "Explorador"
-
-#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:179
-msgid ""
-"Support for IE and Edge browsers is experimental. Tests might not work as "
-"expected."
-msgstr ""
-"El soporte para IE y navegadores Edge es experimental. Las pruebas podrían no "
-"funcionar según lo esperado."
-
-#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:221
-msgid "Accept insecure certificates"
-msgstr "Aceptar certificados no seguros"
-
-#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:223
-msgid "Only Selenium 3."
-msgstr "Solo Selenium 3."
-
-#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:349
-msgid "Paste your selenium test, exported as HTML, here"
-msgstr "Pega el test de selenium, exportado como HTML, aquí"
-
-#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:362
-msgid "Add file"
-msgstr "Añadir archivo"
-
-#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:370
-msgid "Upload your selenium test in html or side (only Selenium 3) format"
-msgstr ""
-"Actualizar la prueba de selenium en formato html o side (solo Selenium 3)"
-
-#: ../../enterprise/godmode/agentes/collections.data.php:59
-#: ../../enterprise/godmode/agentes/collections.data.php:167
-#: ../../enterprise/godmode/agentes/collections.data.php:191
-#: ../../enterprise/godmode/agentes/collections.data.php:211
-#: ../../enterprise/godmode/agentes/collections.data.php:238
-#: ../../enterprise/godmode/agentes/collections.data.php:294
-#: ../../enterprise/meta/advanced/collections.data.php:111
-msgid "Manager configuration &gt; New"
-msgstr "Gestionar la configuración &gt; Nuevo"
-
-#: ../../enterprise/godmode/agentes/collections.data.php:174
-#: ../../enterprise/meta/advanced/collections.data.php:76
-msgid ""
-"Unable to create the collection. Another collection with the same short name."
-msgstr ""
-"No se ha podido crear la colección. Hay otra colección con el mismo nombre "
-"corto."
-
-#: ../../enterprise/godmode/agentes/collections.data.php:197
-#: ../../enterprise/godmode/agentes/collections.data.php:217
-#: ../../enterprise/meta/advanced/collections.data.php:97
-#: ../../enterprise/meta/advanced/collections.data.php:117
-msgid "Unable to create the collection"
-msgstr "Error al crear la colección"
-
-#: ../../enterprise/godmode/agentes/collections.data.php:197
-#: ../../enterprise/meta/advanced/collections.data.php:97
-msgid "Invalid characters in short name"
-msgstr "Caracteres no válidos en el nombre"
-
-#: ../../enterprise/godmode/agentes/collections.data.php:217
-#: ../../enterprise/include/functions_local_components.php:174
-#: ../../enterprise/meta/advanced/collections.data.php:117
-msgid "Empty name"
-msgstr "Nombre vacío"
-
-#: ../../enterprise/godmode/agentes/collections.data.php:244
-#: ../../enterprise/godmode/agentes/collections.data.php:302
-#: ../../enterprise/meta/advanced/collections.data.php:142
-#: ../../enterprise/meta/advanced/collections.data.php:190
-msgid "Unable to create the collection."
-msgstr "Error al crear la colección"
-
-#: ../../enterprise/godmode/agentes/collections.data.php:270
-#: ../../enterprise/meta/advanced/collections.data.php:163
-#: ../../enterprise/meta/advanced/collections.data.php:309
-msgid "Correct create collection"
-msgstr "Colección de ficheros creada correctamente"
-
-#: ../../enterprise/godmode/agentes/collections.data.php:358
-#: ../../enterprise/meta/advanced/collections.data.php:287
-msgid "Unable to edit the collection, empty name."
-msgstr "Error al crear colección: nombre vacío"
-
-#: ../../enterprise/godmode/agentes/collections.data.php:373
-#: ../../enterprise/meta/advanced/collections.data.php:300
-msgid "Unable to edit the collection."
-msgstr "Error al editar la colección"
-
-#: ../../enterprise/godmode/agentes/collections.data.php:384
-msgid "Collection updated successfully"
-msgstr "Collección actualizada con éxito"
-
-#: ../../enterprise/godmode/agentes/collections.data.php:410
-msgid "Please go to the metaconsole and apply this collection"
-msgstr "Por favor, vaya a la metaconsola y aplique esta colección"
-
-#: ../../enterprise/godmode/agentes/collections.data.php:414
-msgid "Error: The collection directory does not exist."
-msgstr "Error: el directorio donde se almacenan las colecciones no existe."
-
-#: ../../enterprise/godmode/agentes/collections.data.php:438
-#: ../../enterprise/meta/advanced/collections.data.php:345
-msgid "Recreate file"
-msgstr "Volver a crear el archivo"
-
-#: ../../enterprise/godmode/agentes/collections.data.php:492
-#: ../../enterprise/meta/advanced/collections.data.php:397
-msgid "Group:"
-msgstr "Grupo:"
-
-#: ../../enterprise/godmode/agentes/collections.data.php:514
-#: ../../enterprise/meta/advanced/collections.data.php:420
-msgid "Short name:"
-msgstr "Nombre corto:"
-
-#: ../../enterprise/godmode/agentes/collections.data.php:519
-#: ../../enterprise/meta/advanced/collections.data.php:426
-msgid ""
-"The collection's short name is the name of dir in attachment dir and the "
-"package collection."
-msgstr ""
-"El nombre corto de la colección es el nombre del directorio en el directorio "
-"de adjuntos y la colección de paquetes."
-
-#: ../../enterprise/godmode/agentes/collections.data.php:519
-#: ../../enterprise/meta/advanced/collections.data.php:426
-msgid "Short name must contain only alphanumeric characters, - or _ ."
-msgstr "Los nombres cortos deben contener solo caracteres alfanuméricos, - o _."
-
-#: ../../enterprise/godmode/agentes/collections.data.php:519
-#: ../../enterprise/meta/advanced/collections.data.php:426
-msgid "Empty for default short name fc_X where X is the collection id."
-msgstr ""
-"Déjalo vacío para el nombre corto por defecto (fc_X) donde X es el ID de la "
-"colección."
-
-#: ../../enterprise/godmode/policies/policies.php:85
-msgid "Policy not found."
-msgstr "No se ha encontrado la política."
-
-#: ../../enterprise/godmode/policies/policies.php:153
-msgid "Policy name already exists"
-msgstr "El nombre de la política ya existe."
-
-#: ../../enterprise/godmode/policies/policies.php:224
-msgid "Policies Management"
-msgstr "Gestión de políticas"
-
-#: ../../enterprise/godmode/policies/policies.php:243
-msgid "All policy agents added to delete queue"
-msgstr "Todos los agentes de las políticas añadidos a la cola de eliminación"
-
-#: ../../enterprise/godmode/policies/policies.php:244
-msgid "Policy agents cannot be added to the delete queue"
-msgstr ""
-"Los agentes de las políticas no se pudieron añadir a la cola de eliminación"
-
-#: ../../enterprise/godmode/policies/policies.php:330
-msgid "a"
-msgstr "a"
-
-#: ../../enterprise/godmode/policies/policies.php:501
-#: ../../enterprise/godmode/policies/policy_linking.php:157
-#: ../../enterprise/include/functions_policies.php:3781
-msgid "Linking"
-msgstr "Enlazando"
-
-#: ../../enterprise/godmode/policies/policies.php:514
-msgid "Agent Wizard"
-msgstr "Asistente de agente"
-
-#: ../../enterprise/godmode/policies/policies.php:523
-#: ../../enterprise/godmode/policies/policy_external_alerts.php:52
-#: ../../enterprise/include/functions_policies.php:3769
-msgid "External alerts"
-msgstr "Alertas externas"
-
-#: ../../enterprise/godmode/policies/policies.php:527
-#: ../../enterprise/godmode/policies/policy.php:60
-#: ../../enterprise/include/functions_policies.php:3811
-msgid "Queue"
-msgstr "Cola"
-
-#: ../../enterprise/godmode/policies/policies.php:595
-msgid "There must be no agents to delete the policy."
-msgstr "No debe haber agentes para borrar la política."
-
-#: ../../enterprise/godmode/policies/policies.php:601
-msgid "A policy with agents cannot be deleted. Purge it first"
-msgstr "Una política con agentes no se puede eliminar. Púrgala primero."
-
-#: ../../enterprise/godmode/policies/policies.php:611
-msgid "Deleting all policy agents"
-msgstr "Eliminando todos los agentes de las políticas"
-
-#: ../../enterprise/godmode/policies/policies.php:616
-msgid "All the policy agents will be deleted"
-msgstr "Todos los agentes de las políticas serán eliminados."
-
-#: ../../enterprise/godmode/policies/policies.php:625
-msgid "Delete all agents"
-msgstr "Eliminar todos los agentes"
-
-#: ../../enterprise/godmode/policies/policy_external_alerts.php:123
-msgid "Created successfuly"
-msgstr "Creado correctamente"
-
-#: ../../enterprise/godmode/policies/policy_external_alerts.php:127
-msgid "Duplicated alert"
-msgstr "Alerta duplicada"
-
-#: ../../enterprise/godmode/policies/policy_external_alerts.php:145
-#: ../../enterprise/godmode/policies/policy_alerts.php:255
-msgid ""
-"Successfully added to delete pending alerts. Will be deleted in the next "
-"policy application."
-msgstr ""
-"Correctamente añadido a las alertas pendientes de eliminación. Será eliminado "
-"en la próxima aplicación de políticas."
-
-#: ../../enterprise/godmode/policies/policy_external_alerts.php:150
-#: ../../enterprise/godmode/policies/policy_modules.php:1303
-#: ../../enterprise/godmode/policies/policy_collections.php:103
-#: ../../enterprise/godmode/policies/policy_inventory_modules.php:169
-#: ../../enterprise/godmode/policies/policy_plugins.php:70
-#: ../../enterprise/godmode/policies/policy_agents.php:113
-#: ../../enterprise/godmode/policies/policy_agents.php:129
-#: ../../enterprise/godmode/policies/policy_alerts.php:259
-msgid "Successfully reverted deletion"
-msgstr "Eliminación revertida correctamente"
-
-#: ../../enterprise/godmode/policies/policy_external_alerts.php:151
-#: ../../enterprise/godmode/policies/policy_modules.php:1304
-#: ../../enterprise/godmode/policies/policy_collections.php:104
-#: ../../enterprise/godmode/policies/policy_inventory_modules.php:172
-#: ../../enterprise/godmode/policies/policy_plugins.php:71
-#: ../../enterprise/godmode/policies/policy_agents.php:114
-#: ../../enterprise/godmode/policies/policy_agents.php:130
-#: ../../enterprise/godmode/policies/policy_alerts.php:260
-msgid "Could not be reverted"
-msgstr "No pudo ser revertido"
-
-#: ../../enterprise/godmode/policies/policy_external_alerts.php:173
-#: ../../enterprise/godmode/policies/policy_alerts.php:302
-msgid "Deleted action successfuly"
-msgstr "Acción eliminada correctamente"
-
-#: ../../enterprise/godmode/policies/policy_external_alerts.php:200
-#: ../../enterprise/godmode/policies/policy_alerts.php:280
-msgid "Added action successfuly"
-msgstr "Acción añadida correctamente"
-
-#: ../../enterprise/godmode/policies/policy_external_alerts.php:383
-msgid "Modules in policy per agents"
-msgstr "Módulos en política por agentes"
-
-#: ../../enterprise/godmode/policies/policy_external_alerts.php:533
-#: ../../enterprise/godmode/policies/policy_modules.php:1560
-#: ../../enterprise/godmode/policies/policy_inventory_modules.php:329
-#: ../../enterprise/godmode/policies/policy_agents.php:1066
-#: ../../enterprise/godmode/policies/policy_agents.php:1535
-#: ../../enterprise/godmode/policies/policy_alerts.php:529
-msgid "Undo deletion"
-msgstr "Deshacer eliminación"
-
-#: ../../enterprise/godmode/policies/policy_external_alerts.php:566
-msgid "There is not external alerts configured in this policy"
-msgstr "No hay alertas externas configuradas en esta política"
-
-#: ../../enterprise/godmode/policies/policy_external_alerts.php:620
-msgid "Modules in policy agents"
-msgstr "Módulos en agentes de política"
-
-#: ../../enterprise/godmode/policies/policy_external_alerts.php:648
-msgid "Alert Template"
-msgstr "Plantilla de alerta"
-
-#: ../../enterprise/godmode/policies/policy.php:186
-#: ../../enterprise/godmode/policies/policy.php:241
-#: ../../enterprise/meta/advanced/policymanager.apply.php:137
-#: ../../enterprise/meta/advanced/policymanager.apply.php:141
-msgid "Operation successfully added to the queue"
-msgstr "Operación añadida correctamente a la cola"
-
-#: ../../enterprise/godmode/policies/policy.php:192
-#: ../../enterprise/godmode/policies/policy.php:242
-#: ../../enterprise/meta/advanced/policymanager.apply.php:145
-#: ../../enterprise/meta/advanced/policymanager.apply.php:149
-#: ../../enterprise/meta/advanced/policymanager.apply.php:153
-msgid "Operation cannot be added to the queue"
-msgstr "La operación no se puede añadir a la cola."
-
-#: ../../enterprise/godmode/policies/policy.php:198
-#: ../../enterprise/godmode/policies/policy.php:246
-#: ../../enterprise/meta/advanced/policymanager.apply.php:129
-msgid "Duplicated or incompatible operation in the queue"
-msgstr "Operación duplicada o incompatible en la cola"
-
-#: ../../enterprise/godmode/policies/policy_modules.php:299
-msgid ""
-"If you change this description, you must change into the text of Data "
-"configuration."
-msgstr ""
-"Si cambias esta descripción, tienes que cambiarla en el texto de la "
-"configuración de datos."
-
-#: ../../enterprise/godmode/policies/policy_modules.php:372
-msgid "Invalid module type."
-msgstr "Tipo de módulo inválido"
-
-#: ../../enterprise/godmode/policies/policy_modules.php:380
-#: ../../enterprise/meta/monitoring/wizard/wizard.module.network.php:142
-#: ../../enterprise/meta/monitoring/wizard/wizard.update_module.php:39
-#: ../../enterprise/meta/monitoring/wizard/wizard.module.web.php:117
-#: ../../enterprise/meta/monitoring/wizard/wizard.module.local.php:126
-msgid "Edit module"
-msgstr "Editar módulo"
-
-#: ../../enterprise/godmode/policies/policy_modules.php:548
-msgid "Could not be added module(s). You must select a policy"
-msgstr "El módulo no se pudo añadir. Tienes que seleccionar una política."
-
-#: ../../enterprise/godmode/policies/policy_modules.php:581
-#, php-format
-msgid "Successfully added module(s) (%s/%s) to policy %s"
-msgstr "Módulo(s) (%s/%s) añadido(s) correctamente a la política %s"
-
-#: ../../enterprise/godmode/policies/policy_modules.php:587
-#, php-format
-msgid "Could not be added module(s) (%s/%s) to policy %s"
-msgstr "El módulo (%s/%s) no se pudo añadir a la política %s"
-
-#: ../../enterprise/godmode/policies/policy_modules.php:623
-msgid "To define plugins please use plugin configuration tab."
-msgstr "Para definir plugins, use la pestaña de configuración de plugins."
-
-#: ../../enterprise/godmode/policies/policy_modules.php:906
-#: ../../enterprise/meta/include/functions_wizard_meta.php:2056
-#: ../../enterprise/meta/include/functions_wizard_meta.php:2151
-msgid "Successfully added module."
-msgstr "Módulo añadido correctamente"
-
-#: ../../enterprise/godmode/policies/policy_modules.php:907
-msgid "Could not be added module."
-msgstr "El módulo no se pudo añadir."
-
-#: ../../enterprise/godmode/policies/policy_modules.php:1252
-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:1256
-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:1286
-#: ../../enterprise/godmode/policies/policy_modules.php:1299
-#: ../../enterprise/godmode/policies/policy_inventory_modules.php:163
-msgid ""
-"Successfully added to delete pending modules. Will be deleted in the next "
-"policy application."
-msgstr ""
-"Añadido correctamente a la cola de módulos pendientes de eliminación. Será "
-"eliminado en la próxima aplicación de políticas."
-
-#: ../../enterprise/godmode/policies/policy_modules.php:1290
-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:1398
-msgid "Successfully duplicate the module."
-msgstr "Módulo duplicado correctamente"
-
-#: ../../enterprise/godmode/policies/policy_modules.php:1479
-msgid "Local component"
-msgstr "Componente local"
-
-#: ../../enterprise/godmode/policies/policy_modules.php:1496
-#: ../../enterprise/godmode/policies/policy_modules.php:1497
-msgid "Disabled module"
-msgstr "Módulo deshabilitado"
-
-#: ../../enterprise/godmode/policies/policy_modules.php:1504
-#: ../../enterprise/godmode/policies/policy_modules.php:1505
-msgid "Enabled module"
-msgstr "Módulo habilitado"
-
-#: ../../enterprise/godmode/policies/policy_modules.php:1611
-msgid "There are no defined modules"
-msgstr "No hay módulos definidos"
-
-#: ../../enterprise/godmode/policies/policy_modules.php:1631
-msgid "Copy selected modules to policy: "
-msgstr "Copiar módulos seleccionados a la política: "
-
-#: ../../enterprise/godmode/policies/policy_modules.php:1836
-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:1856
-msgid "Please select any module to copy"
-msgstr "Por favor, selecciona algún módulo para copiar."
-
-#: ../../enterprise/godmode/policies/policy_collections.php:99
-msgid ""
-"Successfully added to delete the collection. Will be deleted in the next "
-"policy application."
-msgstr ""
-"Añadido correctamente a la colección. Se eliminará en la próxima aplicación de "
-"política."
-
-#: ../../enterprise/godmode/policies/policy_collections.php:241
-msgid "Collections in policy"
-msgstr "Colecciones en la política"
-
-#: ../../enterprise/godmode/policies/policy_collections.php:245
-msgid "Collections to add"
-msgstr "Colecciones a añadir"
-
-#: ../../enterprise/godmode/policies/policy_collections.php:315
-msgid "No available collection to add"
-msgstr "No hay colecciones a añadir disponibles"
-
-#: ../../enterprise/godmode/policies/policy_inventory_modules.php:70
-#: ../../enterprise/godmode/policies/policy_inventory_modules.php:282
-#: ../../enterprise/godmode/alerts/alert_inventory_builder.php:198
-#: ../../enterprise/godmode/menu.php:90
-#: ../../enterprise/godmode/modules/manage_inventory_modules.php:45
-#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:37
-#: ../../enterprise/include/functions_policies.php:3753
-#: ../../enterprise/meta/include/functions_components_meta.php:113
-#: ../../enterprise/meta/include/functions_components_meta.php:160
-msgid "Inventory modules"
-msgstr "Módulos de inventario"
-
-#: ../../enterprise/godmode/policies/policy_inventory_modules.php:110
-msgid "Module is not selected"
-msgstr "No se ha seleccionado ningún módulo"
-
-#: ../../enterprise/godmode/policies/policy_inventory_modules.php:296
-msgid "There are no defined inventory modules"
-msgstr "No hay módulos de inventario definidos"
-
-#: ../../enterprise/godmode/policies/policy_linking.php:28
-msgid "Linking modules"
-msgstr "Módulos enlazados"
-
-#: ../../enterprise/godmode/policies/policy_linking.php:99
-msgid "Error: Update linking modules to policy"
-msgstr "Error al actualizar los módulos enlazados a la política"
-
-#: ../../enterprise/godmode/policies/policy_linking.php:101
-msgid "Success: Update linking modules to policy"
-msgstr "Módulos enlazados a la política correctamente"
-
-#: ../../enterprise/godmode/policies/policy_linking.php:127
-msgid "Free text for filter (*)"
-msgstr "Texto libre para filtro (*)"
-
-#: ../../enterprise/godmode/policies/policy_linking.php:128
-msgid "Free text for filter"
-msgstr "Texto libre para filtro"
-
-#: ../../enterprise/godmode/policies/policy_linking.php:138
-msgid "Cannot retrieve unlinked modules"
-msgstr "No se han podido obtener módulos no enlazados"
-
-#: ../../enterprise/godmode/policies/policy_linking.php:140
-msgid "There are no defined modules unlinked"
-msgstr "No hay módulos definidos desvinculados"
-
-#: ../../enterprise/godmode/policies/policy_linking.php:142
-msgid "List of modules unlinked"
-msgstr "Lista de módulos sin enlazar"
-
-#: ../../enterprise/godmode/policies/policy_plugins.php:56
-msgid ""
-"Successfully added to delete pending plugins. Will be deleted in the next "
-"policy application."
-msgstr ""
-"Correctamente añadido a los plugins pendientes de eliminar. Será eliminado en "
-"la próxima aplicación de políticas."
-
-#: ../../enterprise/godmode/policies/policy_plugins.php:57
-msgid "Cannot be added to delete pending plugins."
-msgstr "No se puede añadir a los plugins pendientes de eliminar."
-
-#: ../../enterprise/godmode/policies/policy_plugins.php:210
-msgid "There are no defined plugins"
-msgstr "No hay plugins definidos"
-
-#: ../../enterprise/godmode/policies/configure_policy.php:122
-msgid "Force Apply"
-msgstr "Forzar aplicación"
-
-#: ../../enterprise/godmode/policies/configure_policy.php:122
-msgid ""
-"Force the creation of modules even if the software agent does not have remote "
-"configuration"
-msgstr ""
-"Forzar la creación de módulos incluso si el agente software no tiene "
-"configuración remota"
-
-#: ../../enterprise/godmode/policies/policy_agents.php:62
-#: ../../enterprise/godmode/policies/policy_queue.php:78
-msgid ""
-"Starting with Pandora FMS version 760, assigning an entire group to a policy "
-"will apply it automatically to all the new agents added to that group."
-msgstr ""
-"A partir de Pandora FMS versión 760, la asignación de un grupo completo a una "
-"política la aplicará automáticamente a todos los nuevos agentes añadidos a ese "
-"grupo."
-
-#: ../../enterprise/godmode/policies/policy_agents.php:102
-msgid ""
-"Successfully added to delete pending agents. Will be deleted in the next "
-"policy application."
-msgstr ""
-"Añadido correctamente a los agentes pendientes de eliminación. Será eliminado "
-"en la próxima aplicación de políticas."
-
-#: ../../enterprise/godmode/policies/policy_agents.php:124
-msgid ""
-"Successfully added to delete pending groups. Will be deleted in the next "
-"policy application."
-msgstr ""
-"Añadido correctamente para eliminar grupos pendientes. Se eliminará en la "
-"siguiente aplicación de política."
-
-#: ../../enterprise/godmode/policies/policy_agents.php:148
-#: ../../enterprise/godmode/policies/policy_agents.php:193
-#: ../../enterprise/godmode/policies/policy_agents.php:261
-msgid "Policy with this id does not exist. "
-msgstr "La política con este id no existe. "
-
-#: ../../enterprise/godmode/policies/policy_agents.php:177
-#: ../../enterprise/godmode/policies/policy_agents.php:310
-msgid "Successfully added to delete queue"
-msgstr "Correctamente añadido a la lista de eliminación"
-
-#: ../../enterprise/godmode/policies/policy_agents.php:178
-#: ../../enterprise/godmode/policies/policy_agents.php:311
-msgid "Could not be added to delete queue"
-msgstr "No se pudo añadir a la lista de eliminación."
-
-#: ../../enterprise/godmode/policies/policy_agents.php:250
-#, php-format
-msgid "Successfully added %d"
-msgstr "Se ha agregado correctamente %d"
-
-#: ../../enterprise/godmode/policies/policy_agents.php:281
-msgid ""
-"Number of agents added to the policy concurrently is too large. This might "
-"cause the operation to fail or lead to performance issues."
-msgstr ""
-"El número de agentes añadidos a la política simultáneamente es demasiado alto. "
-"Esto podría causar fallos o problemas en el funcionamiento."
-
-#: ../../enterprise/godmode/policies/policy_agents.php:288
-msgid "Successfully added to policy"
-msgstr "Agregado correctamente a la directiva"
-
-#: ../../enterprise/godmode/policies/policy_agents.php:289
-msgid "Could not be added to policy"
-msgstr "No se pudo agregar a la directiva"
-
-#: ../../enterprise/godmode/policies/policy_agents.php:407
-msgid "Apply to"
-msgstr "Aplicar a"
-
-#: ../../enterprise/godmode/policies/policy_agents.php:538
-#: ../../enterprise/godmode/policies/policy_agents.php:670
-msgid "Agents in Policy"
-msgstr "Agentes en la política"
-
-#: ../../enterprise/godmode/policies/policy_agents.php:572
-#: ../../enterprise/godmode/policies/policy_agents.php:1217
-msgid "Groups in Policy"
-msgstr "Grupos en la política"
-
-#: ../../enterprise/godmode/policies/policy_agents.php:707
-msgid "Add agents to policy"
-msgstr "Añadir agentes a la política"
-
-#: ../../enterprise/godmode/policies/policy_agents.php:734
-msgid "Delete agents from policy"
-msgstr "Eliminar agentes de la política"
-
-#: ../../enterprise/godmode/policies/policy_agents.php:831
-msgid "Applied"
-msgstr "Aplicado"
-
-#: ../../enterprise/godmode/policies/policy_agents.php:832
-msgid "Not applied"
-msgstr "No aplicado"
-
-#: ../../enterprise/godmode/policies/policy_agents.php:853
-msgid "Unlinked modules"
-msgstr "Módulos sin enlazar"
-
-#: ../../enterprise/godmode/policies/policy_agents.php:853
-msgid "U."
-msgstr "U."
-
-#: ../../enterprise/godmode/policies/policy_agents.php:854
-#: ../../enterprise/godmode/policies/policy_agents.php:1369
-#: ../../enterprise/godmode/policies/policy_queue.php:699
-#: ../../enterprise/meta/advanced/policymanager.queue.php:311
-#: ../../enterprise/meta/advanced/policymanager.apply.php:213
-#: ../../include/functions_visual_map_editor.php:641
-msgid "Apply"
-msgstr "Aplicar"
-
-#: ../../enterprise/godmode/policies/policy_agents.php:857
-#: ../../enterprise/godmode/policies/policy_agents.php:1373
-msgid "Add to delete queue"
-msgstr "Añadir a la lista de eliminación"
-
-#: ../../enterprise/godmode/policies/policy_agents.php:857
-#: ../../enterprise/godmode/policies/policy_agents.php:1373
-msgid "D."
-msgstr "D."
-
-#: ../../enterprise/godmode/policies/policy_agents.php:953
-msgid "This agent can not be remotely configured"
-msgstr "Este agente no puede ser configurado remotamente."
-
-#: ../../enterprise/godmode/policies/policy_agents.php:1003
-#: ../../enterprise/godmode/policies/policy_agents.php:1482
-msgid "Process deletion"
-msgstr "Borrado del proceso"
-
-#: ../../enterprise/godmode/policies/policy_agents.php:1012
-#: ../../enterprise/godmode/policies/policy_agents.php:1493
-#: ../../enterprise/godmode/policies/policy_queue.php:322
-msgid "Add to apply queue"
-msgstr "Añadir a la cola para aplicarlo"
-
-#: ../../enterprise/godmode/policies/policy_agents.php:1110
-#: ../../enterprise/godmode/policies/policy_agents.php:1435
-msgid "Need apply"
-msgstr "Necesita aplicarse"
-
-#: ../../enterprise/godmode/policies/policy_agents.php:1122
-#: ../../enterprise/godmode/policies/policy_agents.php:1447
-msgid "Applying policy"
-msgstr "Aplicando política"
-
-#: ../../enterprise/godmode/policies/policy_agents.php:1135
-#: ../../enterprise/godmode/policies/policy_agents.php:1458
-msgid "Deleting from policy"
-msgstr "Eliminando de la política"
-
-#: ../../enterprise/godmode/policies/policy_agents.php:1295
-msgid "Add groups to policy"
-msgstr "Añadir grupos a política"
-
-#: ../../enterprise/godmode/policies/policy_agents.php:1317
-msgid "Delete groups from policy"
-msgstr "Eliminar grupos de política"
-
-#: ../../enterprise/godmode/policies/policy_agents.php:1370
-msgid "Total agents in policy group"
-msgstr "Total de agentes en el grupo de política"
-
-#: ../../enterprise/godmode/policies/policy_agents.php:1370
-msgid "T."
-msgstr "T."
-
-#: ../../enterprise/godmode/policies/policy_alerts.php:249
-msgid " created successfuly"
-msgstr " creado correctamente"
-
-#: ../../enterprise/godmode/policies/policy_alerts.php:249
-msgid " could not be created"
-msgstr " no se ha podido crear"
-
-#: ../../enterprise/godmode/policies/policy_alerts.php:613
-msgid "There is not alerts configured in this policy."
-msgstr "No hay alertas configuradas en esta política."
-
-#: ../../enterprise/godmode/policies/policy_alerts.php:653
-msgid "Policy module"
-msgstr "Módulo de la política"
-
-#: ../../enterprise/godmode/policies/policy_queue.php:63
-msgid "No policies with this id"
-msgstr "No hay políticas con este identificador"
-
-#: ../../enterprise/godmode/policies/policy_queue.php:96
-#: ../../enterprise/meta/advanced/policymanager.queue.php:58
-msgid "Operation successfully deleted from the queue"
-msgstr "Operación eliminada correctamente de la cola"
-
-#: ../../enterprise/godmode/policies/policy_queue.php:97
-#: ../../enterprise/meta/advanced/policymanager.queue.php:59
-msgid "Operation cannot be deleted from the queue"
-msgstr "La operación no puede ser eliminada de la cola."
-
-#: ../../enterprise/godmode/policies/policy_queue.php:146
-#, php-format
-msgid "%s: Operations successfully deleted from the queue"
-msgstr "%s: Operaciones eliminadas correctamente de la cola"
-
-#: ../../enterprise/godmode/policies/policy_queue.php:153
-msgid "Operations successfully deleted from the queue"
-msgstr "Operaciones eliminadas correctamente de la cola"
-
-#: ../../enterprise/godmode/policies/policy_queue.php:154
-msgid "Operations cannot be deleted from the queue"
-msgstr "Las operaciones no pueden ser eliminadas de la cola."
-
-#: ../../enterprise/godmode/policies/policy_queue.php:261
-#, php-format
-msgid "Some nodes (%s) are unreachebles. Some information may be missing."
-msgstr "Algunos nódulos (%s) están inaccesible. Podría faltar información."
-
-#: ../../enterprise/godmode/policies/policy_queue.php:293
-msgid "Update pending"
-msgstr "Actualización pendiente"
-
-#: ../../enterprise/godmode/policies/policy_queue.php:299
-msgid "Update pending agents"
-msgstr "Actualizar agentes pendientes"
-
-#: ../../enterprise/godmode/policies/policy_queue.php:328
-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:339
-msgid "Update pending groups"
-msgstr "Actualizar grupos pendientes"
-
-#: ../../enterprise/godmode/policies/policy_queue.php:353
-msgid "Link pending modules"
-msgstr "Enlazar módulos pendientes"
-
-#: ../../enterprise/godmode/policies/policy_queue.php:361
-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:367
-msgid "Unlink pending modules"
-msgstr "Desenlazar módulos pendientes"
-
-#: ../../enterprise/godmode/policies/policy_queue.php:373
-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:378
-msgid "Delete pending"
-msgstr "Eliminación pendiente"
-
-#: ../../enterprise/godmode/policies/policy_queue.php:384
-msgid "Delete pending agents"
-msgstr "Eliminar agentes pendientes"
-
-#: ../../enterprise/godmode/policies/policy_queue.php:392
-#: ../../enterprise/godmode/policies/policy_queue.php:407
-#: ../../enterprise/godmode/policies/policy_queue.php:422
-#: ../../enterprise/godmode/policies/policy_queue.php:437
-#: ../../enterprise/godmode/policies/policy_queue.php:452
-#: ../../enterprise/godmode/policies/policy_queue.php:467
-#: ../../enterprise/godmode/policies/policy_queue.php:482
-#: ../../enterprise/godmode/policies/policy_queue.php:497
-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:399
-msgid "Delete pending groups"
-msgstr "Eliminar grupos pendientes"
-
-#: ../../enterprise/godmode/policies/policy_queue.php:414
-msgid "Delete pending modules"
-msgstr "Eliminar módulos pendientes"
-
-#: ../../enterprise/godmode/policies/policy_queue.php:429
-msgid "Delete pending inventory modules"
-msgstr "Eliminar módulos de inventario pendientes"
-
-#: ../../enterprise/godmode/policies/policy_queue.php:444
-msgid "Delete pending alerts"
-msgstr "Eliminar alertas pendientes"
-
-#: ../../enterprise/godmode/policies/policy_queue.php:459
-msgid "Delete pending external alerts"
-msgstr "Eliminar alertas externas pendientes"
-
-#: ../../enterprise/godmode/policies/policy_queue.php:474
-msgid "Delete pending file collections"
-msgstr "Eliminar colecciones de archivos pendientes"
-
-#: ../../enterprise/godmode/policies/policy_queue.php:489
-msgid "Delete pending plugins"
-msgstr "Eliminar plugins pendientes"
-
-#: ../../enterprise/godmode/policies/policy_queue.php:503
-msgid "Advices"
-msgstr "Consejos"
-
-#: ../../enterprise/godmode/policies/policy_queue.php:508
-msgid "Queue summary"
-msgstr "Resumen de cola"
-
-#: ../../enterprise/godmode/policies/policy_queue.php:594
-#: ../../enterprise/meta/advanced/policymanager.queue.php:218
-msgid "Apply (database and files)"
-msgstr "Aplicar (base de datos y archivos)"
-
-#: ../../enterprise/godmode/policies/policy_queue.php:595
-#: ../../enterprise/godmode/policies/policy_queue.php:703
-#: ../../enterprise/meta/advanced/policymanager.queue.php:219
-#: ../../enterprise/meta/advanced/policymanager.queue.php:315
-msgid "Apply (only database)"
-msgstr "Aplicar (solo en la base de datos)"
-
-#: ../../enterprise/godmode/policies/policy_queue.php:605
-#: ../../enterprise/meta/advanced/policymanager.queue.php:229
-msgid "Complete"
-msgstr "Completo"
-
-#: ../../enterprise/godmode/policies/policy_queue.php:606
-#: ../../enterprise/meta/advanced/policymanager.queue.php:230
-msgid "Incomplete"
-msgstr "Incompleto"
-
-#: ../../enterprise/godmode/policies/policy_queue.php:621
-msgid "Queue filter"
-msgstr "Filtros de cola"
-
-#: ../../enterprise/godmode/policies/policy_queue.php:673
-#: ../../enterprise/meta/advanced/policymanager.queue.php:298
-msgid "Policy "
-msgstr "Política "
-
-#: ../../enterprise/godmode/policies/policy_queue.php:733
-#: ../../enterprise/godmode/policies/policy_queue.php:742
-#: ../../enterprise/meta/advanced/policymanager.queue.php:339
-msgid "Policy applying timeout"
-msgstr "Tiempo de espera de la aplicación de la política"
-
-#: ../../enterprise/godmode/policies/policy_queue.php:761
-#: ../../enterprise/meta/advanced/policymanager.queue.php:353
-msgid "Delete from queue"
-msgstr "Eliminar de la cola"
-
-#: ../../enterprise/godmode/policies/policy_queue.php:775
-msgid "Empty queue"
-msgstr "Vaciar cola"
-
-#: ../../enterprise/godmode/policies/policy_queue.php:789
-msgid "This operation could take a long time"
-msgstr "Esta operación podría tardar bastante tiempo."
-
-#: ../../enterprise/godmode/policies/policy_queue.php:800
-msgid "Apply all queues"
-msgstr "Aplicar todas las colas"
-
-#: ../../enterprise/godmode/policies/policy_queue.php:806
-msgid "Clear all items"
-msgstr "Borrar todos los elementos"
-
-#: ../../enterprise/godmode/alerts/alert_inventory.php:67
-msgid "Inventory alert list"
-msgstr "Lista de alertas de inventario"
-
-#: ../../enterprise/godmode/alerts/alert_inventory.php:71
-msgid "Inventory alert builder"
-msgstr "Montador de alertas de inventario"
-
-#: ../../enterprise/godmode/alerts/alert_inventory.php:78
-#: ../../enterprise/godmode/alerts/alert_inventory.php:80
-#: ../../enterprise/godmode/menu.php:339
-msgid "Inventory alerts"
-msgstr "Alertas de inventario"
-
-#: ../../enterprise/godmode/alerts/alert_inventory_list.php:174
-msgid "Inventory alert filters"
-msgstr "Filtros de alerta de inventario"
-
-#: ../../enterprise/godmode/alerts/alert_inventory_list.php:220
-msgid "Alert name"
-msgstr "Nombre de la alerta"
-
-#: ../../enterprise/godmode/alerts/alert_inventory_list.php:337
-#: ../../enterprise/meta/monitoring/wizard/wizard.manage_alert.php:73
-msgid "Edit alert"
-msgstr "Editar alerta"
-
-#: ../../enterprise/godmode/alerts/alert_inventory_list.php:404
-msgid "Disable alert"
-msgstr "Deshabilitar alerta"
-
-#: ../../enterprise/godmode/alerts/alert_inventory_list.php:407
-msgid "Enable alert"
-msgstr "Habilitar alerta"
-
-#: ../../enterprise/godmode/alerts/alert_inventory_list.php:415
-msgid "Delete alert"
-msgstr "Eliminar alerta"
-
-#: ../../enterprise/godmode/alerts/alert_inventory_list.php:427
-msgid "There are no defined inventory alerts"
-msgstr "No hay alertas de inventario definidas"
-
-#: ../../enterprise/godmode/alerts/alert_inventory_builder.php:176
-msgid "Group acl"
-msgstr "ACL de grupo"
-
-#: ../../enterprise/godmode/alerts/alert_inventory_builder.php:256
-msgid "Alert groups"
-msgstr "Grupos de alertas"
-
-#: ../../enterprise/godmode/menu.php:16
-msgid "Manage Satellite Server"
-msgstr "Gestionar servidor Satélite"
-
-#: ../../enterprise/godmode/menu.php:72 ../../enterprise/godmode/menu.php:278
-msgid "Duplicate config"
-msgstr "Duplicar configuración"
-
-#: ../../enterprise/godmode/menu.php:108
-#: ../../enterprise/include/functions_policies.php:3709
-msgid "Manage policies"
-msgstr "Gestionar políticas"
-
-#: ../../enterprise/godmode/menu.php:117
-msgid "Manage agent autoconfiguration"
-msgstr "Administrar autoconfiguración"
-
-#: ../../enterprise/godmode/menu.php:126
-#: ../../enterprise/include/class/AgentRepository.class.php:613
-msgid "Software agents repository"
-msgstr "Repositorio de agentes software"
-
-#: ../../enterprise/godmode/menu.php:173
-#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:406
-msgid "Microsoft SQL Server"
-msgstr "Servidor Microsoft SQL"
-
-#: ../../enterprise/godmode/menu.php:174
-msgid "Mysql"
-msgstr "Mysql"
-
-#: ../../enterprise/godmode/menu.php:176
-#: ../../enterprise/include/class/VMware.app.php:503
-msgid "VMware"
-msgstr "VMware"
-
-#: ../../enterprise/godmode/menu.php:177
-#: ../../enterprise/include/class/SAPView.class.php:621
-#: ../../enterprise/include/class/SAPView.class.php:624
-#: ../../include/class/CredentialStore.class.php:948
-msgid "SAP"
-msgstr "SAP"
-
-#: ../../enterprise/godmode/menu.php:178
-#: ../../enterprise/include/class/DB2.app.php:404
-msgid "DB2"
-msgstr "DB2"
-
-#: ../../enterprise/godmode/menu.php:179
-#: ../../enterprise/godmode/wizards/Applications.class.php:163
-#: ../../enterprise/godmode/wizards/Applications.class.php:171
-msgid "Applications"
-msgstr "Aplicaciones"
-
-#: ../../enterprise/godmode/menu.php:190
-msgid "Amazon Web Services"
-msgstr "Amazon Web Services"
-
-#: ../../enterprise/godmode/menu.php:191
-msgid "Microsoft Azure"
-msgstr "Microsoft Azure"
-
-#: ../../enterprise/godmode/menu.php:192
-msgid "Google Compute Platform"
-msgstr "Google Compute Platform"
-
-#: ../../enterprise/godmode/menu.php:193
-#: ../../enterprise/godmode/wizards/Cloud.class.php:186
-#: ../../enterprise/godmode/wizards/Cloud.class.php:195
-#: ../../enterprise/include/class/Azure.cloud.php:150
-#: ../../enterprise/include/class/Azure.cloud.php:194
-#: ../../enterprise/include/class/Aws.cloud.php:115
-#: ../../enterprise/include/class/Aws.cloud.php:162
-#: ../../enterprise/include/class/Google.cloud.php:144
-#: ../../enterprise/include/class/Google.cloud.php:188
-msgid "Cloud"
-msgstr "Nube"
-
-#: ../../enterprise/godmode/menu.php:208
-msgid "New console task"
-msgstr "Nueva tarea de consola"
-
-#: ../../enterprise/godmode/menu.php:218
-msgid "Enterprise ACL Setup"
-msgstr "Configuración ACL Enterprise"
-
-#: ../../enterprise/godmode/menu.php:227
-msgid "Skins"
-msgstr "Apariencia"
-
-#: ../../enterprise/godmode/menu.php:237
-msgid "Manage database HA"
-msgstr "Gestionar la base de datos de alta disponibilidad"
-
-#: ../../enterprise/godmode/menu.php:247
-#: ../../enterprise/godmode/servers/manage_export_form.php:59
-#: ../../enterprise/godmode/servers/manage_export.php:43
-msgid "Export targets"
-msgstr "Servidores de exportación"
-
-#: ../../enterprise/godmode/menu.php:257
-#: ../../enterprise/meta/general/main_menu.php:407
-msgid "Alert correlation"
-msgstr "Correlación de alertas"
-
-#: ../../enterprise/godmode/menu.php:269
-msgid "Log Collector"
-msgstr "Colector de logs"
-
-#: ../../enterprise/godmode/menu.php:287
-msgid "Password policy"
-msgstr "Política de contraseñas"
-
-#: ../../enterprise/godmode/menu.php:308
-#: ../../general/first_task/omnishell.php:31
-#: ../../general/first_task/omnishell.php:34
-msgid "Omnishell"
-msgstr "Omnishell"
-
-#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:179
-msgid "Command Mysqldump is failed."
-msgstr "Error en el comando Mysqldump."
-
-#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:213
-#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:276
-#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:371
-#: ../../enterprise/meta/advanced/cron_main.php:159
-#: ../../enterprise/meta/advanced/cron_main.php:203
-#: ../../enterprise/meta/advanced/cron_main.php:296
-#: ../../enterprise/meta/include/functions_meta.php:122
-#: ../../include/functions_config.php:219
-msgid "Path doesn't exists or is not writable"
-msgstr "La ruta no existe o no se puede escribir en ella."
-
-#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:225
-#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:238
-#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:287
-#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:306
-#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:386
-#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:403
-msgid "Failed to create task"
-msgstr "No se ha podido crear la tarea"
-
-#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:244
-#: ../../enterprise/meta/advanced/cron_main.php:173
-msgid "Only administrator users can create this type of functions"
-msgstr "Solo los usuarios administradores pueden crear este tipo de funciones."
-
-#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:293
-msgid "No template selected"
-msgstr "No se ha seleccionado ninguna plantilla"
-
-#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:356
-#: ../../enterprise/meta/advanced/cron_main.php:244
-#: ../../enterprise/meta/advanced/cron_main.php:278
-msgid "Edit job"
-msgstr "Editar tarea"
-
-#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:412
-msgid "I do not know what you want to do"
-msgstr "No sé lo que desea hacer"
-
-#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:429
-#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:611
-msgid "You have no access to manage console tasks."
-msgstr "No puede acceder a la gestión de tareas de la consola."
-
-#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:446
-#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:517
-msgid "Create new console task"
-msgstr "Crear nueva tarea de la consola"
-
-#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:489
-msgid "Updating console task"
-msgstr "Actualizar tarea de la consola"
-
-#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:519
-msgid "Update console task"
-msgstr "Actualizar tarea de la consola"
-
-#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:551
-#: ../../enterprise/meta/advanced/cron_main.php:87
-msgid "Add new job"
-msgstr "Añadir nueva tarea"
-
-#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:630
-#: ../../enterprise/include/functions_tasklist.php:153
-#: ../../enterprise/meta/advanced/cron_main.php:350
-#: ../../include/functions_cron.php:464
-msgid "Task"
-msgstr "Tarea"
-
-#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:650
-msgid "Next Execution"
-msgstr "Siguiente ejecución"
-
-#: ../../enterprise/godmode/wizards/Applications.class.php:186
-#: ../../enterprise/godmode/wizards/Cloud.class.php:210
-msgid ""
-"All company names used here are for identification purposes only. Use of these "
-"names, logos, and brands does not imply endorsement."
-msgstr ""
-"Todos los nombres de compañías aquí utilizados tienen fines identificatorios. "
-"El uso de estos nombres, logos y marcas no implica patrocinio alguno."
-
-#: ../../enterprise/godmode/wizards/Cloud.class.php:240
-#: ../../enterprise/godmode/wizards/Cloud.class.php:248
-#, php-format
-msgid "%s credentials"
-msgstr "Credenciales de %s"
-
-#: ../../enterprise/godmode/wizards/Cloud.class.php:264
-msgid ""
-"If a task with the selected credentials is already running, it will be edited. "
-"To create a new one, another account from the credential store must be "
-"selected."
-msgstr ""
-"Si una tarea con las credenciales seleccionadas ya se está ejecutando, se "
-"editará. Para crear una nueva, se debe seleccionar otra cuenta del almacén de "
-"credenciales."
-
-#: ../../enterprise/godmode/wizards/Cloud.class.php:284
-msgid "Manage accounts"
-msgstr "Administrar cuentas"
-
-#: ../../enterprise/godmode/wizards/Cloud.class.php:296
-msgid "Cloud tool full path"
-msgstr "Ruta completa de la herramienta en la nube"
-
-#: ../../enterprise/godmode/wizards/Cloud.class.php:304
-msgid "Account"
-msgstr "Cuenta"
-
-#: ../../enterprise/godmode/wizards/Cloud.class.php:365
-msgid "Select a set of credentials from the list"
-msgstr "Seleccione un conjunto de credenciales de la lista"
-
-#: ../../enterprise/godmode/wizards/Cloud.class.php:378
-#, php-format
-msgid "Path %s is not executable."
-msgstr "La ruta %s no se puede ejecutar."
-
-#: ../../enterprise/godmode/wizards/Cloud.class.php:423
-msgid "Account disconnected"
-msgstr "Cuenta desconectada"
-
-#: ../../enterprise/godmode/wizards/Cloud.class.php:425
-msgid "Failed disconnecting account"
-msgstr "Error al desconectar la cuenta"
-
-#: ../../enterprise/godmode/wizards/Cloud.class.php:503
-msgid "Credentials successfully updated"
-msgstr "Credenciales actualizados correctamente"
-
-#: ../../enterprise/godmode/wizards/Cloud.class.php:505
-msgid "Failed updating credentials process"
-msgstr "Error en el proceso de actualización de credenciales"
-
-#: ../../enterprise/godmode/modules/configure_local_component.php:141
-msgid "Update Local Component"
-msgstr "Actualizar el componente local"
-
-#: ../../enterprise/godmode/modules/configure_local_component.php:143
-msgid "Create Local Component"
-msgstr "Crear componente local"
-
-#: ../../enterprise/godmode/modules/configure_local_component.php:192
-msgid "Throw unknown events"
-msgstr "Generar eventos desconocidos"
-
-#: ../../enterprise/godmode/modules/configure_local_component.php:459
-msgid "This value can be set only in the async modules."
-msgstr "Solo debe establecerse este valor en los módulos asíncronos."
-
-#: ../../enterprise/godmode/modules/configure_local_component.php:603
-msgid "Macros"
-msgstr "Macros"
-
-#: ../../enterprise/godmode/modules/configure_local_component.php:987
-msgid "Please introduce a positicve percentage value"
-msgstr "Introduzca un valor porcentual positivo"
-
-#: ../../enterprise/godmode/modules/local_components.php:157
-msgid "Local component management"
-msgstr "Gestión de componentes locales"
-
-#: ../../enterprise/godmode/modules/local_components.php:263
-#, php-format
-msgid ""
-"This node is configured with centralized mode. All local components are read "
-"only. Go to %s to manage them."
-msgstr ""
-"Este nodo esta configurado con el modo centralizado. Toda la información de "
-"las políticas está en modo lectura. Vaya a %s para administrarlo."
-
-#: ../../enterprise/godmode/modules/local_components.php:548
-msgid "Search by name, description or data, list matches."
-msgstr "Búsqueda de lista de concidencias por nombre, descripción o datos."
-
-#: ../../enterprise/godmode/modules/manage_inventory_modules.php:40
-msgid "To manage inventory plugin you must activate centralized management"
-msgstr "Para administrar el plugin de inventario active la gestión centralizada"
-
-#: ../../enterprise/godmode/modules/manage_inventory_modules.php:117
-msgid "Successfully created inventory module"
-msgstr "Inventario de módulo creado correctamente"
-
-#: ../../enterprise/godmode/modules/manage_inventory_modules.php:118
-msgid "Error creating inventory module"
-msgstr "Error al crear módulo del inventario"
-
-#: ../../enterprise/godmode/modules/manage_inventory_modules.php:275
-#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:114
-msgid "Interpreter"
-msgstr "Intérprete"
-
-#: ../../enterprise/godmode/modules/manage_inventory_modules.php:284
-msgid "No inventory modules defined"
-msgstr "No hay módulos de inventario definidos"
-
-#: ../../enterprise/godmode/modules/manage_inventory_modules.php:305
-msgid "Local module"
-msgstr "Módulo local"
-
-#: ../../enterprise/godmode/modules/manage_inventory_modules.php:307
-msgid "Remote/Local"
-msgstr "Remoto/Local"
-
-#: ../../enterprise/godmode/modules/manage_inventory_modules.php:353
-msgid ""
-"The configurations of inventory modules from the nodes have been unified.\n"
-"\t\tFrom this point on, changes to the inventory scripts must be made through "
-"this screen."
-msgstr ""
-"Las configuraciones de los módulos de inventario de los nodos se han "
-"unificado.\n"
-"\t\tA partir de este momento, los cambios en los scripts de inventario deben "
-"realizarse a través de esta pantalla."
-
-#: ../../enterprise/godmode/modules/manage_inventory_modules.php:355
-msgid "You can find more information at:"
-msgstr "Encontrará más información en:"
-
-#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:116
-msgid "Left blank for the LOCAL inventory modules"
-msgstr "Dejar en blanco para los módulos de inventario LOCALES"
-
-#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:118
-msgid "Block Mode"
-msgstr "Modo bloqueo"
-
-#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:122
-msgid "separate fields with "
-msgstr "Separar campos con "
-
-#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:125
-#: ../../include/ajax/double_auth.ajax.php:149
-#: ../../include/ajax/double_auth.ajax.php:292
-msgid "Code"
-msgstr "Código"
-
-#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:126
-msgid ""
-"Here is placed the script for the REMOTE inventory modules Local inventory "
-"modules don't use this field"
-msgstr ""
-"Aquí se coloca el script para los módulos de inventario REMOTOS. Los módulos "
-"de inventario locales no usan este campo."
-
-#: ../../enterprise/godmode/servers/manage_credential_boxes.php:20
-msgid "Add Credential Box"
-msgstr "Añadir casilla de credenciales"
-
-#: ../../enterprise/godmode/servers/manage_credential_boxes.php:57
-#: ../../enterprise/godmode/servers/credential_boxes_satellite.php:248
-#: ../../enterprise/include/functions_ipam.php:1339
-#: ../../enterprise/include/ajax/servers.ajax.php:99
-#: ../../enterprise/include/ajax/servers.ajax.php:157
-#: ../../enterprise/include/ajax/servers.ajax.php:283
-msgid "Subnet"
-msgstr "Subred"
-
-#: ../../enterprise/godmode/servers/manage_export_form.php:79
-#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:537
-#: ../../include/functions_servers.php:647
-#: ../../include/functions_servers.php:1332
-msgid "Export server"
-msgstr "Servidor de exportación"
-
-#: ../../enterprise/godmode/servers/manage_export_form.php:91
-#: ../../enterprise/godmode/servers/manage_export.php:138
-msgid "Preffix"
-msgstr "Prefijo"
-
-#: ../../enterprise/godmode/servers/manage_export_form.php:103
-#: ../../enterprise/godmode/servers/manage_export.php:141
-msgid "Transfer mode"
-msgstr "Modo de transferencia"
-
-#: ../../enterprise/godmode/servers/manage_export_form.php:125
-msgid "Target directory"
-msgstr "Directorio objetivo"
-
-#: ../../enterprise/godmode/servers/manage_export_form.php:129
-#: ../../enterprise/include/class/Azure.cloud.php:823
-#: ../../enterprise/include/class/VMware.app.php:643
-#: ../../enterprise/include/class/Aws.cloud.php:566
-#: ../../enterprise/include/class/Aws.S3.php:584
-msgid "Extra options"
-msgstr "Opciones adicionales"
-
-#: ../../enterprise/godmode/servers/credential_boxes_satellite.php:35
-msgid "Credential Boxes List"
-msgstr "Lista de casillas de credenciales"
-
-#: ../../enterprise/godmode/servers/credential_boxes_satellite.php:42
-msgid "Credential Boxes"
-msgstr "Casillas de credenciales"
-
-#: ../../enterprise/godmode/servers/credential_boxes_satellite.php:293
-#: ../../enterprise/godmode/servers/list_satellite.php:69
-#: ../../enterprise/include/ajax/servers.ajax.php:139
-msgid "No Data"
-msgstr "No hay datos"
-
-#: ../../enterprise/godmode/servers/HA_cluster.php:59
-#: ../../enterprise/godmode/servers/HA_cluster.php:83
-msgid "View nodes"
-msgstr "Ver nodos"
-
-#: ../../enterprise/godmode/servers/HA_cluster.php:80
-msgid "Manage Pandora DB HA"
-msgstr "Gestionar la alta disponibilidad de la base de datos de Pandora FMS"
-
-#: ../../enterprise/godmode/servers/HA_cluster.php:101
-msgid "Manage Database HA"
-msgstr "Gestionar la base de datos de alta disponibilidad"
-
-#: ../../enterprise/godmode/servers/HA_cluster.php:136
-msgid ""
-"Make the cluster forget failed operations from history of\n"
-" the resource and re-detect its current state. This can be\n"
-" useful to purge knowledge of past failures that have since\n"
-" been resolved. If a resource id is not specified then all\n"
-" resources / stonith devices will be cleaned up. If a node\n"
-" is not specified then resources / stonith devices on all\n"
-" nodes will be cleaned up"
-msgstr ""
-"Hacer que el cluster olvide las operaciones fallidas del historial de\n"
-" recurso y redetectar su estado actual. Esto puede ser\n"
-" útil para purgar los datos de fallos anteriores que se han\n"
-" resuelto dede entonces. Si no se especifica ID de recurso, entonces todos "
-"los\n"
-" recursos / dispositivos stonith se limpiarán. Si no\n"
-" se especifica, entonces los recursos / dispositivos stonith de todos los\n"
-" nodos se limparán"
-
-#: ../../enterprise/godmode/servers/HA_cluster.php:162
-msgid "Node label"
-msgstr "Etiqueta de nodo"
-
-#: ../../enterprise/godmode/servers/HA_cluster.php:164
-msgid "DB Repl."
-msgstr "Replicación de la base de datos."
-
-#: ../../enterprise/godmode/servers/HA_cluster.php:165
-msgid "DB Status"
-msgstr "Estado BD"
-
-#: ../../enterprise/godmode/servers/HA_cluster.php:166
-#: ../../enterprise/include/functions_setup.php:201
-#: ../../enterprise/meta/advanced/metasetup.consoles.php:835
-#: ../../enterprise/meta/advanced/policymanager.sync.php:328
-msgid "Sync"
-msgstr "Sincronizar"
-
-#: ../../enterprise/godmode/servers/HA_cluster.php:168
-msgid "DB Role"
-msgstr "Función de la base de datos"
-
-#: ../../enterprise/godmode/servers/HA_cluster.php:169
-msgid "Cluster Role"
-msgstr "Función del clúster"
-
-#: ../../enterprise/godmode/servers/HA_cluster.php:171
-msgid "Seconds behind master"
-msgstr "Segundos después del maestro"
-
-#: ../../enterprise/godmode/servers/HA_cluster.php:172
-msgid "Virtual IP"
-msgstr "IP virtual"
-
-#: ../../enterprise/godmode/servers/HA_cluster.php:173
-msgid "SQL version"
-msgstr "Versión SQL"
-
-#: ../../enterprise/godmode/servers/HA_cluster.php:174
-msgid "DB version"
-msgstr "Versión de la base de datos"
-
-#: ../../enterprise/godmode/servers/HA_cluster.php:176
-msgid "Pending action"
-msgstr "Acción pendiente"
-
-#: ../../enterprise/godmode/servers/HA_cluster.php:301
-msgid "Show/ edit node"
-msgstr "Mostrar/editar nodo"
-
-#: ../../enterprise/godmode/servers/HA_cluster.php:317
-msgid "Put node into standby status"
-msgstr "Poner nodo en suspensión"
-
-#: ../../enterprise/godmode/servers/HA_cluster.php:332
-msgid "Force node resync"
-msgstr "Forzar re-sincronización de nodos"
-
-#: ../../enterprise/godmode/servers/HA_cluster.php:359
-msgid "Put node into online status"
-msgstr "Poner nodo en estado online"
-
-#: ../../enterprise/godmode/servers/HA_cluster.php:374
-msgid "Show cluster details"
-msgstr "Mostrar detalles del cluster"
-
-#: ../../enterprise/godmode/servers/HA_cluster.php:392
-msgid "Remove node from this list"
-msgstr "Eliminar nodo de la lista"
-
-#: ../../enterprise/godmode/servers/HA_cluster.php:428
-msgid "Register node"
-msgstr "Registrar nodo"
-
-#: ../../enterprise/godmode/servers/HA_cluster.php:466
-msgid ""
-"Target node will be erased from this list but not removed from cluster. Do you "
-"want to continue?"
-msgstr ""
-"El nodo objetivo se eliminará de la lista pero no del cluster. ¿Desea "
-"continuar?"
-
-#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:148
-msgid "Error: The conf file of server is not readble."
-msgstr "Error: el archivo de configuración del servidor no se puede leer."
-
-#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:152
-msgid "Error: The conf file of server is not writable."
-msgstr "Error: no se puede escribir en el archivo de configuración del servidor"
-
-#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:348
-msgid "Delete remote conf server files"
-msgstr "Eliminar archivos de servidor de configuración remotos"
-
-#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:349
-msgid ""
-"Delete this conf file implies that server will send back local config to "
-"console"
-msgstr ""
-"Eliminar este archivo de configuración significa que el servidor devolverá la "
-"configuración local a la consola"
-
-#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:386
-#: ../../include/functions_servers.php:556
-#: ../../include/functions_servers.php:1305
-msgid "Data server"
-msgstr "Servidor de datos"
-
-#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:401
-#: ../../include/functions_servers.php:569
-#: ../../include/functions_servers.php:1308
-#: ../../include/class/AgentWizard.class.php:1281
-msgid "Network server"
-msgstr "Servidor de red"
-
-#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:416
-#: ../../include/functions_servers.php:855
-#: ../../include/functions_servers.php:1356
-msgid "Alert server"
-msgstr "Servidor de alertas"
-
-#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:446
-#: ../../include/functions_servers.php:608
-#: ../../include/functions_servers.php:1320
-#: ../../include/class/AgentWizard.class.php:1262
-msgid "Plugin server"
-msgstr "Servidor de plugins"
-
-#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:476
-#: ../../enterprise/include/lib/ClusterViewer/ClusterWizard.php:840
-#: ../../include/functions_servers.php:621
-msgid "Prediction server"
-msgstr "Servidor de predicción"
-
-#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:491
-#: ../../include/functions_servers.php:634
-#: ../../include/functions_servers.php:1326
-#: ../../include/class/AgentWizard.class.php:1272
-msgid "WMI server"
-msgstr "Servidor WMI"
-
-#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:507
-#: ../../include/functions_servers.php:673
-#: ../../include/functions_servers.php:1329
-msgid "Web server"
-msgstr "Servidor web"
-
-#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:522
-#: ../../include/functions_servers.php:660
-#: ../../include/functions_servers.php:1335
-msgid "Inventory server"
-msgstr "Servidor de inventario"
-
-#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:552
-#: ../../include/functions_servers.php:686
-#: ../../include/functions_servers.php:1338
-msgid "Event server"
-msgstr "Servidor de eventos"
-
-#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:567
-msgid "ICMP server"
-msgstr "Servidor ICPM"
-
-#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:582
-#: ../../include/functions_servers.php:1311
-msgid "SNMP server"
-msgstr "Servidor SNMP"
-
-#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:597
-#: ../../include/functions_servers.php:1347
-msgid "WUX server"
-msgstr "Servidor WUX"
-
-#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:612
-#: ../../include/functions_servers.php:816
-#: ../../include/functions_servers.php:1359
-msgid "NCM server"
-msgstr "Servidor NCM"
-
-#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:642
-msgid "Network timeout"
-msgstr "Tiempo de espera de red"
-
-#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:650
-#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:666
-msgid " Seconds"
-msgstr " Segundos"
-
-#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:658
-msgid "Plugin timeout"
-msgstr "Tiempo de espera del plugin"
-
-#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:674
-msgid "SNMP console threads"
-msgstr "Hilos de la consola SNMP"
-
-#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:690
-msgid "Network threads"
-msgstr "Hilos de red"
-
-#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:706
-msgid "Plugin threads"
-msgstr "Hilos de plugin"
-
-#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:722
-msgid "Recon threads"
-msgstr "Hilos de recon"
-
-#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:738
-msgid "Dataserver threads"
-msgstr "Hilos del servidor de datos"
-
-#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:754
-msgid "Web threads"
-msgstr "Hilos web"
-
-#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:770
-msgid "SNMP threads"
-msgstr "Hilos SNMP"
-
-#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:786
-msgid "ICMP threads"
-msgstr "Hilos ICMP"
-
-#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:816
-msgid "Autocreate group"
-msgstr "Autocrear grupo"
-
-#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:832
-msgid "Autocreate group force"
-msgstr "Forzar auto-creación de grupo"
-
-#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:847
-msgid "Autocreate"
-msgstr "Autocrear"
-
-#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:865
-msgid "Server features"
-msgstr "funcionalidades del servidor"
-
-#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:872
-msgid "Optimization settings"
-msgstr "Ajustes de optimización"
-
-#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:879
-msgid "Other server settings"
-msgstr "Otros ajustes de servidor"
-
-#: ../../enterprise/godmode/servers/manage_export.php:69
-msgid "Error updating export target"
-msgstr "Error al actualizar el servidor de exportación"
-
-#: ../../enterprise/godmode/servers/manage_export.php:71
-msgid "Successfully updated export target"
-msgstr "Servidor de exportación actualizado correctamente"
-
-#: ../../enterprise/godmode/servers/manage_export.php:82
-msgid "Error deleting export target"
-msgstr "Error al borrar el servidor de exportación"
-
-#: ../../enterprise/godmode/servers/manage_export.php:84
-msgid ""
-"Successfully deleted export target.  All the linked modules will be "
-"automatically unattached"
-msgstr ""
-"Objetivo de exportación eliminado correctamente. Todos los módulos enlazados "
-"se desvincularán automáticamente"
-
-#: ../../enterprise/godmode/servers/manage_export.php:107
-msgid ""
-"Can't be created export target: User and password must be filled with FTP mode"
-msgstr ""
-"No pudo crearse un servidor de exportación: el usuario y la contraseña deben "
-"ser completados con el modo de FTP."
-
-#: ../../enterprise/godmode/servers/manage_export.php:126
-msgid "There are no defined export targets"
-msgstr "No hay servidores de exportación definidos"
-
-#: ../../enterprise/godmode/servers/list_satellite.php:27
-msgid "Satellite Server"
-msgstr "Servidor Satélite"
-
-#: ../../enterprise/godmode/services/services.service.php:107
-msgid "Service already exists."
-msgstr "El servicio ya existe."
-
-#: ../../enterprise/godmode/services/services.service.php:197
-msgid "Error creating service: "
-msgstr "Error al crear el servicio: "
-
-#: ../../enterprise/godmode/services/services.service.php:206
-#: ../../enterprise/godmode/services/services.service.php:310
-msgid "New Service"
-msgstr "Nuevo servicio"
-
-#: ../../enterprise/godmode/services/services.service.php:212
-msgid "Service created successfully"
-msgstr "Servicio creado correctamente"
-
-#: ../../enterprise/godmode/services/services.service.php:279
-#: ../../enterprise/include/functions_services.php:728
-msgid "Error updating service: "
-msgstr "Error al actualizar el servicio: "
-
-#: ../../enterprise/godmode/services/services.service.php:290
-msgid "Service updated successfully"
-msgstr "Servicio actualizado correctamente"
-
-#: ../../enterprise/godmode/services/services.service.php:361
-msgid "Dynamic elements are not affected by cascade protection"
-msgstr "La protección en cascada no se aplica a los elementos dinámicos"
-
-#: ../../enterprise/godmode/services/services.service.php:511
-msgid "No Services or concrete action"
-msgstr "Sin servicios o acción concreta"
-
-#: ../../enterprise/godmode/services/services.service.php:530
-msgid "Random name"
-msgstr "Nombre aleatorio"
-
-#: ../../enterprise/godmode/services/services.service.php:578
-msgid "Server assigned"
-msgstr "Servidor asignado"
-
-#: ../../enterprise/godmode/services/services.service.php:579
-msgid "Selected Prediction server will be assigned to evaluate the service."
-msgstr ""
-"Se asignará el servidor de predicción seleccionado para evaluar el servicio"
-
-#: ../../enterprise/godmode/services/services.service.php:600
-msgid "Evaluation interval"
-msgstr "Intervalo de evaluación"
-
-#: ../../enterprise/godmode/services/services.service.php:758
-msgid "General Data"
-msgstr "Datos generales"
-
-#: ../../enterprise/godmode/services/services.service.php:813
-msgid ""
-"Here are described the alert templates, which will use their default actions.\n"
-"\t\tYou can modify the default behaviour editing alerts in the agent who "
-"stores data and alert definitions about the service and the SLA status."
-msgstr ""
-"Aquí se describen las plantillas de alertas, que utilizarán sus acciones por "
-"defecto.\n"
-"\t\tPuedes modificar el comportambiento de las alertas de edición de "
-"comportamiento por defecto en el agente que almacena definiciones de datos y "
-"alerta sobre el servicio y el estado de SLA."
-
-#: ../../enterprise/godmode/services/services.service.php:970
-msgid ""
-"This change in the service configuration will delete the history of the "
-"service modules. Do you wish to continue?"
-msgstr ""
-"Este cambio en la configuración del servicio borrará el historial de módulos "
-"de servicio. ¿Desea contiinuar?"
-
-#: ../../enterprise/godmode/services/services.service.php:972
-msgid ""
-"This change in the service configuration will prevent the SLA modules from "
-"being created. Do you wish to continue?"
-msgstr ""
-"Este cambio en la configuración del servicio impedirá que se creen módulos "
-"SLA. ¿Desea continuar?"
-
-#: ../../enterprise/godmode/services/services.elements.php:72
-msgid "Invalid service"
-msgstr "Servicio no válido"
-
-#: ../../enterprise/godmode/services/services.elements.php:220
-#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:128
-msgid "Custom field name"
-msgstr "Nombre de campo personalizado"
-
-#: ../../enterprise/godmode/services/services.elements.php:232
-#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:130
-msgid "Custom field value"
-msgstr "Campo de valor personalizado"
-
-#: ../../enterprise/godmode/services/services.elements.php:250
-msgid "Add custom field match"
-msgstr "Añadir coincidencia de campo personalizado"
-
-#: ../../enterprise/godmode/services/services.elements.php:256
-msgid "Both 'name' and 'value' must be defined to filter. Ignored otherwise."
-msgstr ""
-"Tanto el 'nombre' como el 'valor' deben estar definidos para filtrar. Si no, "
-"serán ignorados."
-
-#: ../../enterprise/godmode/services/services.elements.php:261
-msgid "MySQL Regular expressions case sensitive."
-msgstr ""
-"Las expresiones regulares de MySQL diferencian entre mayúsculas y minúsculas"
-
-#: ../../enterprise/godmode/services/services.elements.php:267
-msgid "Matching objects type"
-msgstr "Tipo de elementos que coinciden"
-
-#: ../../enterprise/godmode/services/services.elements.php:282
-msgid "Filter by group"
-msgstr "Filtrar por grupo"
-
-#: ../../enterprise/godmode/services/services.elements.php:294
-msgid "Use regular expresions selectors"
-msgstr "Use selectores de expresiones regulares"
-
-#: ../../enterprise/godmode/services/services.elements.php:302
-msgid "Having agent name"
-msgstr "Con nombre de agente"
-
-#: ../../enterprise/godmode/services/services.elements.php:310
-msgid "Having module name"
-msgstr "Con nombre de módulo"
-
-#: ../../enterprise/godmode/services/services.elements.php:320
-msgid "Having custom fields"
-msgstr "Tener campos personalizados"
-
-#: ../../enterprise/godmode/services/services.elements.php:331
-msgid "Apply rules on this server"
-msgstr "Aplicar reglas a este servidor"
-
-#: ../../enterprise/godmode/services/services.elements.php:350
-msgid "Weights"
-msgstr "Pesos"
-
-#: ../../enterprise/godmode/services/services.elements.php:355
-msgid "In smart mode weights are automatically calculated."
-msgstr "En el modo inteligente, los pesos se calculan automáticamente."
-
-#: ../../enterprise/godmode/services/services.elements.php:453
-#: ../../enterprise/godmode/services/services.elements.php:461
-#: ../../enterprise/godmode/services/services.elements.php:468
-msgid "Selected agent not found."
-msgstr "Agente seleccionado no encontrado."
-
-#: ../../enterprise/godmode/services/services.elements.php:474
-#: ../../enterprise/godmode/services/services.elements.php:485
-#, php-format
-msgid "Selected module not found in %s."
-msgstr "El módulo seleccionado no se ha encontrado en %s."
-
-#: ../../enterprise/godmode/services/services.elements.php:494
-msgid "Selected service not found."
-msgstr "Servicio seleccionado no encontrado."
-
-#: ../../enterprise/godmode/services/services.elements.php:511
-msgid "Selected service could generate a loop"
-msgstr "El servicio seleccionado podría generar un bucle"
-
-#: ../../enterprise/godmode/services/services.elements.php:521
-#, php-format
-msgid "Failed adding service child: %s"
-msgstr "No se ha podido añadir el servicio hijo: %s"
-
-#: ../../enterprise/godmode/services/services.elements.php:560
-#, php-format
-msgid "Selected rules are not valid: %s."
-msgstr "Las reglas seleccionadas no son válidas: %s."
-
-#: ../../enterprise/godmode/services/services.elements.php:568
-msgid "Invalid element type."
-msgstr "Tipo de elemento no válido."
-
-#: ../../enterprise/godmode/services/services.elements.php:594
-msgid "Element registered successfully"
-msgstr "Elemento registrado correctamente."
-
-#: ../../enterprise/godmode/services/services.elements.php:640
-#, php-format
-msgid "Error deleting element: %s"
-msgstr "Error al eliminar el elemento: %s"
-
-#: ../../enterprise/godmode/services/services.elements.php:806
-#: ../../enterprise/include/functions_services.php:2015
-msgid "Edit service elements"
-msgstr "Editar elementos del servicio"
-
-#: ../../enterprise/godmode/services/services.elements.php:842
-msgid "Add element"
-msgstr "Añadir elemento"
-
-#: ../../enterprise/godmode/services/services.elements.php:853
-msgid "Edit element"
-msgstr "Editar elemento"
-
-#: ../../enterprise/include/functions_reporting.php:93
-msgid "Advance options"
-msgstr "Opciones avanzadas"
-
-#: ../../enterprise/include/functions_reporting.php:117
-msgid "Templates list"
-msgstr "Lista de plantillas"
-
-#: ../../enterprise/include/functions_reporting.php:124
-#: ../../enterprise/meta/general/main_header.php:200
-#: ../../enterprise/meta/general/main_menu.php:296
-#: ../../include/functions_menu.php:514
-msgid "Templates wizard"
-msgstr "Asistente de plantillas"
-
-#: ../../enterprise/include/functions_reporting.php:152
-msgid "Templates Wizard"
-msgstr "Asistente de plantillas"
-
-#: ../../enterprise/include/functions_reporting.php:1227
-#: ../../enterprise/include/functions_reporting_csv.php:473
-#: ../../include/functions_reports.php:830
-#: ../../include/functions_reporting.php:8122
-#: ../../include/functions_reporting.php:8514
-msgid "Availability"
-msgstr "Disponibilidad"
-
-#: ../../enterprise/include/functions_reporting.php:1232
-msgid "Availability item created from wizard."
-msgstr "Elemento disponible creado desde el asistente"
-
-#: ../../enterprise/include/functions_reporting.php:1774
-#: ../../enterprise/include/functions_reporting.php:2821
-#: ../../enterprise/include/functions_reporting.php:3823
-#: ../../views/calendar/special_days.php:245
-msgid "January"
-msgstr "Enero"
-
-#: ../../enterprise/include/functions_reporting.php:1778
-#: ../../enterprise/include/functions_reporting.php:2825
-#: ../../enterprise/include/functions_reporting.php:3827
-#: ../../views/calendar/special_days.php:249
-msgid "February"
-msgstr "Febrero"
-
-#: ../../enterprise/include/functions_reporting.php:1782
-#: ../../enterprise/include/functions_reporting.php:2829
-#: ../../enterprise/include/functions_reporting.php:3831
-#: ../../views/calendar/special_days.php:253
-msgid "March"
-msgstr "Marzo"
-
-#: ../../enterprise/include/functions_reporting.php:1786
-#: ../../enterprise/include/functions_reporting.php:2833
-#: ../../enterprise/include/functions_reporting.php:3835
-#: ../../views/calendar/special_days.php:257
-msgid "April"
-msgstr "Abril"
-
-#: ../../enterprise/include/functions_reporting.php:1790
-#: ../../enterprise/include/functions_reporting.php:2837
-#: ../../enterprise/include/functions_reporting.php:3839
-#: ../../views/calendar/special_days.php:261
-msgid "May"
-msgstr "Mayo"
-
-#: ../../enterprise/include/functions_reporting.php:1794
-#: ../../enterprise/include/functions_reporting.php:2841
-#: ../../enterprise/include/functions_reporting.php:3843
-#: ../../views/calendar/special_days.php:265
-msgid "June"
-msgstr "Junio"
-
-#: ../../enterprise/include/functions_reporting.php:1798
-#: ../../enterprise/include/functions_reporting.php:2845
-#: ../../enterprise/include/functions_reporting.php:3847
-#: ../../views/calendar/special_days.php:269
-msgid "July"
-msgstr "Julio"
-
-#: ../../enterprise/include/functions_reporting.php:1802
-#: ../../enterprise/include/functions_reporting.php:2849
-#: ../../enterprise/include/functions_reporting.php:3851
-#: ../../views/calendar/special_days.php:273
-msgid "August"
-msgstr "Agosto"
-
-#: ../../enterprise/include/functions_reporting.php:1806
-#: ../../enterprise/include/functions_reporting.php:2853
-#: ../../enterprise/include/functions_reporting.php:3855
-#: ../../views/calendar/special_days.php:277
-msgid "September"
-msgstr "Septiembre"
-
-#: ../../enterprise/include/functions_reporting.php:1810
-#: ../../enterprise/include/functions_reporting.php:2857
-#: ../../enterprise/include/functions_reporting.php:3859
-#: ../../views/calendar/special_days.php:281
-msgid "October"
-msgstr "Octubre"
-
-#: ../../enterprise/include/functions_reporting.php:1814
-#: ../../enterprise/include/functions_reporting.php:2861
-#: ../../enterprise/include/functions_reporting.php:3863
-#: ../../views/calendar/special_days.php:285
-msgid "November"
-msgstr "Noviembre"
-
-#: ../../enterprise/include/functions_reporting.php:1819
-#: ../../enterprise/include/functions_reporting.php:2866
-#: ../../enterprise/include/functions_reporting.php:3868
-#: ../../views/calendar/special_days.php:289
-msgid "December"
-msgstr "Diciembre"
-
-#: ../../enterprise/include/functions_reporting.php:1854
-#: ../../enterprise/include/functions_reporting.php:2893
-#: ../../enterprise/include/functions_reporting.php:3880
-#: ../../include/functions_reporting_html.php:544
-msgid "Max/Min Values"
-msgstr "Valores max/min"
-
-#: ../../enterprise/include/functions_reporting.php:1855
-#: ../../enterprise/include/functions_reporting.php:2894
-#: ../../enterprise/include/functions_reporting.php:3881
-#: ../../enterprise/include/functions_reporting.php:6137
-#: ../../enterprise/include/functions_reporting_csv.php:1506
-#: ../../enterprise/include/functions_reporting_csv.php:1552
-#: ../../enterprise/include/functions_reporting_csv.php:1625
-#: ../../enterprise/include/functions_reporting_csv.php:1744
-#: ../../enterprise/include/functions_reporting_csv.php:2052
-#: ../../include/functions_reporting_html.php:545
-msgid "SLA Limit"
-msgstr "Límite del SLA"
-
-#: ../../enterprise/include/functions_reporting.php:1856
-#: ../../enterprise/include/functions_reporting.php:2024
-#: ../../enterprise/include/functions_reporting.php:2895
-#: ../../enterprise/include/functions_reporting.php:3882
-#: ../../enterprise/include/functions_reporting.php:6138
-#: ../../include/functions_reporting_html.php:546
-msgid "SLA Compliance"
-msgstr "Cumplimiento del SLA"
-
-#: ../../enterprise/include/functions_reporting.php:1875
-#: ../../enterprise/include/functions_reporting.php:1916
-#: ../../enterprise/include/functions_reporting.php:2919
-#: ../../enterprise/include/functions_reporting.php:2978
-#: ../../enterprise/include/functions_reporting.php:3907
-#: ../../enterprise/include/functions_reporting.php:3966
-#: ../../enterprise/include/functions_reporting.php:6161
-#: ../../enterprise/include/functions_reporting_csv.php:1541
-#: ../../enterprise/include/functions_reporting_csv.php:1587
-#: ../../enterprise/include/functions_reporting_csv.php:1905
-#: ../../include/functions_config.php:1254
-#: ../../include/functions_config.php:3111
-#: ../../include/functions_reporting_html.php:662
-msgid "Fail"
-msgstr "Fallo"
-
-#: ../../enterprise/include/functions_reporting.php:1896
-#: ../../enterprise/include/functions_reporting.php:2949
-#: ../../enterprise/include/functions_reporting.php:3200
-#: ../../enterprise/include/functions_reporting.php:3937
-#: ../../enterprise/include/functions_reporting.php:4201
-#: ../../enterprise/include/functions_reporting.php:4852
-#: ../../enterprise/include/functions_reporting.php:6208
-#: ../../include/functions_reporting_html.php:869
-#: ../../include/functions_reporting_html.php:4566
-msgid "Not Init"
-msgstr "No iniciado"
-
-#: ../../enterprise/include/functions_reporting.php:1903
-#: ../../enterprise/include/functions_reporting.php:2959
-#: ../../enterprise/include/functions_reporting.php:3947
-msgid "Planned Downtimes"
-msgstr "Paradas planificadas"
-
-#: ../../enterprise/include/functions_reporting.php:1910
-msgid "Ignore time"
-msgstr "Tiempo ignorado"
-
-#: ../../enterprise/include/functions_reporting.php:1930
-msgid "SLA Compliance per days"
-msgstr "Cumplimiento de SLA por días"
-
-#: ../../enterprise/include/functions_reporting.php:2021
-msgid "Summary of SLA Failures"
-msgstr "Resumen de los fallos de SLA"
-
-#: ../../enterprise/include/functions_reporting.php:2023
-#: ../../enterprise/include/functions_reporting_csv.php:1660
-msgid "Day"
-msgstr "Día"
-
-#: ../../enterprise/include/functions_reporting.php:2041
-#: ../../enterprise/include/functions_reporting.php:2042
-msgid "Out of SLA limits"
-msgstr "Sin límites SLS"
-
-#: ../../enterprise/include/functions_reporting.php:2047
-#: ../../enterprise/include/functions_reporting.php:2048
-msgid "IN of SLA limits"
-msgstr "Límite del IN de SLA"
-
-#: ../../enterprise/include/functions_reporting.php:2131
-#: ../../include/functions_reports.php:926
-msgid "Log report"
-msgstr "Informe de log"
-
-#: ../../enterprise/include/functions_reporting.php:2144
-#: ../../include/functions_reports.php:925
-msgid "Log"
-msgstr "Log"
-
-#: ../../enterprise/include/functions_reporting.php:2493
-#: ../../enterprise/include/functions_reporting.php:3437
-#: ../../enterprise/include/functions_reporting.php:4412
-#: ../../include/functions_reporting.php:996
-#: ../../include/functions_reporting.php:8556
-msgid "There are no SLAs defined"
-msgstr "No hay SLA definidos"
-
-#: ../../enterprise/include/functions_reporting.php:2546
-#: ../../enterprise/include/functions_reporting.php:3490
-#: ../../enterprise/include/functions_reporting.php:4465
-#: ../../include/functions_reporting.php:1071
-#: ../../include/functions_reporting.php:8934
-msgid "Inverse"
-msgstr "Inverso"
-
-#: ../../enterprise/include/functions_reporting.php:2969
-#: ../../enterprise/include/functions_reporting.php:3210
-#: ../../enterprise/include/functions_reporting.php:3957
-msgid "Planned Downtime"
-msgstr "Tiempo de inactividad planificado"
-
-#: ../../enterprise/include/functions_reporting.php:2999
-msgid "T. Total"
-msgstr "Tiempo total"
-
-#: ../../enterprise/include/functions_reporting.php:3000
-#: ../../enterprise/include/functions_reporting.php:3984
-msgid "T. OK"
-msgstr "Tiempo OK"
-
-#: ../../enterprise/include/functions_reporting.php:3001
-#: ../../enterprise/include/functions_reporting.php:3985
-msgid "T. Error"
-msgstr "Tiempo error"
-
-#: ../../enterprise/include/functions_reporting.php:3002
-#: ../../enterprise/include/functions_reporting.php:3986
-msgid "T. Unknown"
-msgstr "Tiempo desconocido"
-
-#: ../../enterprise/include/functions_reporting.php:3003
-#: ../../enterprise/include/functions_reporting.php:3987
-msgid "T. Not_init"
-msgstr "Tiempo no iniciado"
-
-#: ../../enterprise/include/functions_reporting.php:3004
-#: ../../enterprise/include/functions_reporting.php:3988
-msgid "T. Downtime"
-msgstr "Tiempo en parada planificada"
-
-#: ../../enterprise/include/functions_reporting.php:3005
-#: ../../enterprise/include/functions_reporting.php:3989
-msgid "SLA %"
-msgstr "SLA %"
-
-#: ../../enterprise/include/functions_reporting.php:3195
-#: ../../enterprise/include/functions_reporting.php:4196
-#: ../../enterprise/include/functions_reporting.php:6203
-#: ../../enterprise/include/functions_services.php:1453
-#: ../../include/functions_reporting_html.php:864
-#: ../../include/functions_reporting_html.php:4561
-msgid "Unknow"
-msgstr "Desconocido"
-
-#: ../../enterprise/include/functions_reporting.php:3205
-#: ../../enterprise/include/functions_reporting.php:4206
-#: ../../enterprise/include/functions_reporting.php:6213
-#: ../../include/functions_reporting_html.php:874
-#: ../../include/functions_reporting_html.php:4571
-msgid "Downtimes"
-msgstr "Paradas planificadas"
-
-#: ../../enterprise/include/functions_reporting.php:4211
-msgid "Ignore Planned Downtime"
-msgstr "Ignorar parada planeada"
-
-#: ../../enterprise/include/functions_reporting.php:4301
-#: ../../include/functions_reports.php:712
-msgid "Hourly S.L.A."
-msgstr "SLA cada hora"
-
-#: ../../enterprise/include/functions_reporting.php:4904
-msgid "Max/Min Critical"
-msgstr "Máx./Mín. Crítico"
-
-#: ../../enterprise/include/functions_reporting.php:4905
-msgid "Max/Min Warning"
-msgstr "Máx./Mín. Advertencia"
-
-#: ../../enterprise/include/functions_reporting.php:4906
-msgid "Total checks ok/total"
-msgstr "Comprobaciones totales ok/total"
-
-#: ../../enterprise/include/functions_reporting.php:4907
-msgid "% time ok"
-msgstr "% tiempo ok"
-
-#: ../../enterprise/include/functions_reporting.php:4925
-#: ../../include/functions_reporting_html.php:633
-#: ../../include/functions_reporting_html.php:672
-#: ../../include/functions_reporting_html.php:743
-#: ../../include/functions_reporting_html.php:821
-#: ../../include/functions_reporting_html.php:4020
-#: ../../include/functions_reporting_html.php:4167
-msgid "24 x 7"
-msgstr "24/7"
-
-#: ../../enterprise/include/functions_reporting.php:4965
-#: ../../include/functions_reporting_html.php:578
-msgid "Global Time"
-msgstr "Tiempo global"
-
-#: ../../enterprise/include/functions_reporting.php:4966
-#: ../../enterprise/include/functions_reporting_csv.php:1980
-#: ../../include/functions_reporting_html.php:579
-msgid "Time Total"
-msgstr "Tiempo total"
-
-#: ../../enterprise/include/functions_reporting.php:4967
-msgid "Time Critical"
-msgstr "Tiempo Crítico"
-
-#: ../../enterprise/include/functions_reporting.php:4969
-#: ../../enterprise/include/functions_reporting_csv.php:1981
-#: ../../include/functions_reporting_html.php:581
-#: ../../include/functions_reporting_html.php:3844
-msgid "Time OK"
-msgstr "Tiempo OK"
-
-#: ../../enterprise/include/functions_reporting.php:4970
-#: ../../enterprise/include/functions_reporting_csv.php:1983
-#: ../../include/functions_reporting_html.php:582
-#: ../../include/functions_reporting_html.php:3856
-msgid "Time Unknown"
-msgstr "Tiempo desconocido"
-
-#: ../../enterprise/include/functions_reporting.php:4971
-#: ../../enterprise/include/functions_reporting_csv.php:1984
-#: ../../include/functions_reporting_html.php:583
-msgid "Time Not Init"
-msgstr "Tiempo no iniciado"
-
-#: ../../enterprise/include/functions_reporting.php:5060
-#: ../../include/functions_reporting_html.php:611
-msgid "Checks Time"
-msgstr "Tiempo de comprobaciones"
-
-#: ../../enterprise/include/functions_reporting.php:5061
-#: ../../enterprise/include/functions_reporting_csv.php:1986
-#: ../../include/functions_reporting_html.php:612
-msgid "Checks Total"
-msgstr "Comprobaciones totales"
-
-#: ../../enterprise/include/functions_reporting.php:5062
-msgid "Checks Critical"
-msgstr "Comprobaciones Crítico"
-
-#: ../../enterprise/include/functions_reporting.php:5063
-#: ../../include/functions_reporting_html.php:3944
-msgid "Checks Warning"
-msgstr "Comprobaciones Advertencia"
-
-#: ../../enterprise/include/functions_reporting.php:5064
-#: ../../enterprise/include/functions_reporting_csv.php:1987
-#: ../../include/functions_reporting_html.php:614
-#: ../../include/functions_reporting_html.php:3938
-msgid "Checks OK"
-msgstr "Comprobaciones OK"
-
-#: ../../enterprise/include/functions_reporting.php:5065
-#: ../../enterprise/include/functions_reporting_csv.php:1989
-#: ../../include/functions_reporting_html.php:615
-msgid "Checks Unknown"
-msgstr "Comprobaciones desconocidas"
-
-#: ../../enterprise/include/functions_reporting.php:5066
-#: ../../enterprise/include/functions_reporting_csv.php:1990
-msgid "Checks Not Init"
-msgstr "Comprobaciones en no iniciado"
-
-#: ../../enterprise/include/functions_reporting.php:5146
-#: ../../include/functions_reporting.php:1582
-#: ../../include/functions_reporting.php:3162
-#: ../../include/functions_reporting_html.php:801
-#: ../../include/functions_reporting_html.php:4209
-#: ../../include/functions_reporting_html.php:4758
-#: ../../include/functions_reporting_html.php:4761
-msgid "There are no Agent/Modules defined"
-msgstr "No hay Agentes/Módulos definidos"
-
-#: ../../enterprise/include/functions_reporting.php:5582
-msgid "There are no SLAs defined."
-msgstr "No hay SLAs definidos"
-
-#: ../../enterprise/include/functions_reporting.php:5797
-#: ../../enterprise/include/functions_services.php:1368
-#: ../../enterprise/include/functions_services.php:1370
-#: ../../enterprise/include/functions_services.php:1404
-#: ../../enterprise/include/functions_services.php:1405
-#: ../../enterprise/include/functions_services.php:1407
-#: ../../enterprise/include/functions_services.php:1458
-#: ../../enterprise/include/functions_services.php:1460
-msgid "Nonexistent"
-msgstr "No existe"
-
-#: ../../enterprise/include/functions_reporting.php:6218
-msgid "Scheduled shutdow"
-msgstr "Parada planeada"
-
-#: ../../enterprise/include/functions_reporting.php:6584
-#: ../../enterprise/include/functions_reporting.php:7467
-#, php-format
-msgid "Graph agents(%s) - %s"
-msgstr "Gráficos de agentes (%s) - %s"
-
-#: ../../enterprise/include/functions_reporting.php:7375
-#, php-format
-msgid "Graph agent(%s) - %s"
-msgstr "Gráfico de agente(%s) - %s"
-
-#: ../../enterprise/include/functions_reporting.php:7822
-msgid "There is not data for the selected conditions"
-msgstr "No hay datos para las condiciones seleccionadas"
-
-#: ../../enterprise/include/functions_reporting.php:8014
-#: ../../enterprise/include/functions_reporting.php:8080
-msgid "Template editor"
-msgstr "Editor de plantillas"
-
-#: ../../enterprise/include/functions_reporting.php:8331
-#: ../../include/functions_reports.php:643
-msgid "Simple baseline graph"
-msgstr "Gráfico simple de línea base"
-
-#: ../../enterprise/include/functions_reporting.php:8501
-msgid "Configuration changes"
-msgstr "Cambios en la configuración"
-
-#: ../../enterprise/include/functions_reporting.php:8518
-msgid "No NCM capabilities detected"
-msgstr "No se han detectado capacidades de NCM"
-
-#: ../../enterprise/include/functions_collection.php:39
-#, php-format
-msgid "Collection %d does not exist"
-msgstr "La colección %d no existe"
-
-#: ../../enterprise/include/functions_collection.php:48
-msgid "Collection dir does not exist."
-msgstr "El directorio donde se guardan las colecciones no existe."
-
-#: ../../enterprise/include/functions_collection.php:57
-#, php-format
-msgid "Failed to create collection path: %s"
-msgstr "Error al crear la colección en la ruta: %s"
-
-#: ../../enterprise/include/functions_collection.php:66
-msgid "Target collection path is not writable"
-msgstr "No se ha podido escribir en en el directorio de colecciones remotas"
-
-#: ../../enterprise/include/functions_collection.php:80
-msgid "Failed to create zip file for collection"
-msgstr "Error al crear el archivo zip para la colección"
-
-#: ../../enterprise/include/functions_collection.php:87
-#, php-format
-msgid "File of collection is bigger than the limit (%s bytes)"
-msgstr "El archivo de colección es más grande que el límite (%s bytes)"
-
-#: ../../enterprise/include/functions_log.php:279
-#: ../../enterprise/include/functions_log.php:282
-msgid "Lines"
-msgstr "Líneas"
-
-#: ../../enterprise/include/functions_hostdevices.php:45
-msgid "Remote commands enabled"
-msgstr "Comandos remotos habilitados"
-
-#: ../../enterprise/include/functions_visual_map.php:203
-#: ../../enterprise/include/functions_visual_map.php:268
-msgid "Crit:"
-msgstr "Crítico"
-
-#: ../../enterprise/include/functions_visual_map.php:207
-#: ../../enterprise/include/functions_visual_map.php:272
-msgid "Warn:"
-msgstr "Advertencia"
-
-#: ../../enterprise/include/functions_visual_map.php:211
-#: ../../enterprise/include/functions_visual_map.php:276
-msgid "Ok:"
-msgstr "OK"
-
-#: ../../enterprise/include/functions_visual_map.php:215
-#: ../../enterprise/include/functions_visual_map.php:280
-#: ../../enterprise/meta/include/functions_autoprovision.php:765
-msgid "Value:"
-msgstr "Valor:"
-
-#: ../../enterprise/include/functions_visual_map.php:672
-msgid "None of the services was added"
-msgstr "No se añadió ningún servicio"
-
-#: ../../enterprise/include/functions_visual_map.php:674
-#, php-format
-msgid "%d services couldn't be added"
-msgstr "%d servicios no se han podido añadir"
-
-#: ../../enterprise/include/functions_visual_map.php:680
-msgid "There was an error retrieving the visual map information"
-msgstr "Error al recuperar la información del mapa visual"
-
-#: ../../enterprise/include/functions_ui.php:79
-msgid "Select inventory module"
-msgstr "Seleccionar módulo de inventario"
-
-#: ../../enterprise/include/functions_ui.php:96
-msgid "Use custom fields"
-msgstr "Usar campos personalizados"
-
-#: ../../enterprise/include/functions_ui.php:179
-msgid "Field name"
-msgstr "Nombre del campo"
-
-#: ../../enterprise/include/functions_ui.php:179
-msgid "It's a password"
-msgstr "Es una contraseña"
-
-#: ../../enterprise/include/functions_ui.php:179
-msgid "Add field"
-msgstr "Añadir campo"
-
-#: ../../enterprise/include/functions_inventory.php:85
-#: ../../enterprise/include/functions_inventory.php:837
-msgid "No changes found"
-msgstr "No se han encontrado cambios"
-
-#: ../../enterprise/include/functions_inventory.php:112
-#: ../../enterprise/include/functions_inventory.php:146
-#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:123
-#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:461
-#: ../../include/functions_events.php:242
-msgid "Agent alias"
-msgstr "Alias del agente"
-
-#: ../../enterprise/include/functions_inventory.php:184
-msgid "Get CSV file"
-msgstr "Obtener archivo CSV"
-
-#: ../../enterprise/include/functions_inventory.php:854
-#: ../../enterprise/include/functions_inventory.php:917
-#: ../../include/functions_reporting_html.php:1651
-msgid "Added"
-msgstr "Añadido"
-
-#: ../../enterprise/include/functions_inventory.php:860
-#: ../../enterprise/include/functions_inventory.php:925
-#: ../../include/functions_reporting_html.php:1662
-#: ../../include/functions_filemanager.php:342
-#: ../../include/functions_filemanager.php:359
-msgid "Deleted"
-msgstr "Eliminado(s)"
-
-#: ../../enterprise/include/auth/saml.php:119
-#, php-format
-msgid "Pandora FMS SAML authentication error: %s"
-msgstr "Error de autenticación Pandora FMS SAML: %s"
-
-#: ../../enterprise/include/auth/saml.php:184
-msgid "Force log out"
-msgstr "Forzar desconexión"
-
-#: ../../enterprise/include/auth/saml.php:241 ../../include/auth/mysql.php:356
-#: ../../include/auth/mysql.php:386 ../../include/auth/mysql.php:421
-msgid "Please, login into metaconsole first"
-msgstr "Por favor, inicie sesión en la metaconsola primero"
-
-#: ../../enterprise/include/functions_backup.php:162
-msgid "Command mysqldump not found."
-msgstr "Comando Mysqldump no encontrado"
-
-#: ../../enterprise/include/functions_backup.php:177
-msgid "The mysqldump execution goes wrong."
-msgstr "La ejecución de mysqldump ha salido mal."
-
-#: ../../enterprise/include/functions_backup.php:190
-msgid ""
-"In order to make backups it is necessary to check if the configuration is "
-"correct."
-msgstr ""
-"Para poder realizar copias de seguridad es necesario comprobar si la "
-"configuración es correcta."
-
-#: ../../enterprise/include/functions_backup.php:256
-msgid "No description"
-msgstr "Sin descripción"
-
-#: ../../enterprise/include/functions_backup.php:408
-msgid "Restoring a backup"
-msgstr "Restaurar una copia de seguridad"
-
-#: ../../enterprise/include/functions_backup.php:410
-#, php-format
-msgid "Restoring a %s database backup must be done manually."
-msgstr ""
-"La restauración de la copia de seguridad de la base de datos de %s debe "
-"llevarse a cabo manualmente."
-
-#: ../../enterprise/include/functions_backup.php:412
-msgid ""
-"It's a complex operation that needs human intervation to avoid system failures "
-"and data loosing"
-msgstr ""
-"Esta operación es compleja y necesita intervención humana para evitar fallos "
-"en el sistema y pérdida de datos."
-
-#: ../../enterprise/include/functions_backup.php:414
-msgid "To restore the selected backup, please follow these steps"
-msgstr ""
-"Para restaurar la copia de seguridad seleccionada sigue los siguientes pasos."
-
-#: ../../enterprise/include/functions_backup.php:420
-msgid "Open a root shell in your system located at "
-msgstr "Abre un root shell en tu sistema localizado en "
-
-#: ../../enterprise/include/functions_backup.php:424
-msgid "Connect to MySQL database using the following command"
-msgstr "Usa el siguiente comando para conectar con la base de datos de MySQL"
-
-#: ../../enterprise/include/functions_backup.php:430
-msgid "Create a new database"
-msgstr "Crear una nueva base de datos"
-
-#: ../../enterprise/include/functions_backup.php:454
-msgid "Restore the backup"
-msgstr "Restaurar la copia de seguridad"
-
-#: ../../enterprise/include/functions_backup.php:469
-msgid "Modify console configuration to use this new database"
-msgstr ""
-"Modifica la configuración de la consola para usar esta nueva base de datos"
-
-#: ../../enterprise/include/functions_backup.php:470
-msgid "Open configuration file"
-msgstr "Abrir el archivo de configuración"
-
-#: ../../enterprise/include/functions_backup.php:473
-#: ../../enterprise/include/functions_backup.php:483
-msgid "Find"
-msgstr "Encontrar"
-
-#: ../../enterprise/include/functions_backup.php:475
-#: ../../enterprise/include/functions_backup.php:485
-msgid "and replace with"
-msgstr "y reemplazar con"
-
-#: ../../enterprise/include/functions_backup.php:480
-msgid "Modify servers configuration to use this new database"
-msgstr ""
-"Modifica la configuración de los servidores para usar esta nueva base de datos"
-
-#: ../../enterprise/include/functions_backup.php:481
-msgid "Find servers configuration file and replace the following lines"
-msgstr ""
-"Accede al archivo de configuración de los servidores y reemplázalo por las "
-"siguientes líneas"
-
-#: ../../enterprise/include/functions_backup.php:490
-msgid "Restart the servers and login again into the console"
-msgstr "Reinicia los servidores y vuelve a identificarte en la consola"
-
-#: ../../enterprise/include/functions_setup.php:79
-#: ../../enterprise/include/functions_setup.php:125
-msgid "Log collector"
-msgstr "Colector de logs"
-
-#: ../../enterprise/include/functions_setup.php:151
-msgid "Metaconsole link status"
-msgstr "Estado del link de la metaconsola"
-
-#: ../../enterprise/include/functions_setup.php:183
-msgid "DB connection"
-msgstr "Conexión a la base de datos"
-
-#: ../../enterprise/include/functions_setup.php:192
-#: ../../enterprise/meta/advanced/metasetup.consoles.php:834
-msgid "Agent cache"
-msgstr "Caché de agente"
-
-#: ../../enterprise/include/functions_setup.php:205
-msgid "This console is joining a metaconsole."
-msgstr "Esta consola se unirá a una Metaconsola"
-
-#: ../../enterprise/include/functions_setup.php:213
-msgid "This console is not joining any metaconsole."
-msgstr "Esta consola no se unirá a ninguna Metaconsola"
-
-#: ../../enterprise/include/functions_snmp.php:65
-msgid "Trap status agent recovered"
-msgstr "Estado del trap de agente recuperado"
-
-#: ../../enterprise/include/functions_cron.php:178
-#: ../../enterprise/include/functions_cron.php:256
-#: ../../enterprise/include/functions_cron.php:331
-#: ../../enterprise/include/functions_cron.php:375
-msgid "Report to build"
-msgstr "Informe a crear"
-
-#: ../../enterprise/include/functions_cron.php:199
-#: ../../enterprise/include/functions_cron.php:249
-#: ../../enterprise/include/functions_cron.php:275
-msgid "Report Type"
-msgstr "Tipo de informe"
-
-#: ../../enterprise/include/functions_cron.php:206
-#: ../../enterprise/include/functions_cron.php:353
-msgid "Template to build"
-msgstr "Plantilla a crear"
-
-#: ../../enterprise/include/functions_cron.php:224
-msgid "Regexp agent filter"
-msgstr "Filtro de agente RegEx"
-
-#: ../../enterprise/include/functions_cron.php:228
-#: ../../enterprise/include/functions_tasklist.php:339
-#: ../../include/functions_cron.php:664
-msgid "Report per agent"
-msgstr "Informe por agente"
-
-#: ../../enterprise/include/functions_cron.php:264
-#: ../../enterprise/include/functions_cron.php:286
-#: ../../enterprise/include/functions_cron.php:376
-msgid "Save to disk into path"
-msgstr "Guardar disco en la ruta"
-
-#: ../../enterprise/include/functions_cron.php:265
-msgid "The apache user should have read-write access on this folder. Ex: "
-msgstr ""
-"El usuario de Apache debería tener acceso de lectura y escritura en esta "
-"carpeta. Por ejemplo: "
-
-#: ../../enterprise/include/functions_cron.php:271
-msgid "File name prefix"
-msgstr "Prefijo del nombre del archivo"
-
-#: ../../enterprise/include/functions_cron.php:291
-msgid "Active backups"
-msgstr "Copias de seguridad activas"
-
-#: ../../enterprise/include/functions_cron.php:299
-#: ../../enterprise/include/functions_tasklist.php:383
-#: ../../include/functions_cron.php:703
-msgid "Custom script"
-msgstr "Script personalizado"
-
-#: ../../enterprise/include/functions_cron.php:306
-#: ../../enterprise/include/functions_cron.php:332
-#: ../../enterprise/include/functions_cron.php:354
-msgid "Send to email"
-msgstr "Enviar a correo electrónico"
-
-#: ../../enterprise/include/functions_cron.php:315
-msgid "Function name"
-msgstr "Nombre de la función"
-
-#: ../../enterprise/include/functions_cron.php:333
-msgid "Send custom report by email"
-msgstr "Enviar un informe personalizado por email"
-
-#: ../../enterprise/include/functions_cron.php:355
-msgid "Send custom report (from template) by email"
-msgstr "Enviar informe personalizado (desde plantilla) por email"
-
-#: ../../enterprise/include/functions_cron.php:377
-msgid "Save custom report to disk"
-msgstr "Guardar el informe personalizado en el disco"
-
-#: ../../enterprise/include/functions_cron.php:397
-msgid "Backup Pandora database"
-msgstr "Copia de seguridad de la BD de Pandora FMS"
-
-#: ../../enterprise/include/functions_cron.php:417
-msgid "Execute custom script"
-msgstr "Ejecutar script personalizado"
-
-#: ../../enterprise/include/functions_cron.php:499
-msgid "Not scheduled"
-msgstr "No programado"
-
-#: ../../enterprise/include/functions_cron.php:500
-#: ../../include/functions_netflow.php:1849
-msgid "Hourly"
-msgstr "Cada hora"
-
-#: ../../enterprise/include/functions_cron.php:504
-msgid "Yearly"
-msgstr "Anualmente"
-
-#: ../../enterprise/include/functions_cron.php:1529
-msgid "Scheduled report had an attempt to send an email without attachments."
-msgstr ""
-"El informe programado tenía un intento de enviar un correo electrónico sin "
-"archivos adjuntos."
-
-#: ../../enterprise/include/functions_cron.php:1532
-msgid "Scheduled report had an attempt to send an email with some attachments."
-msgstr ""
-"El informe programado tenía un intento de enviar un correo electrónico con "
-"algunos archivos adjuntos."
-
-#: ../../enterprise/include/functions_cron.php:1774
-#: ../../include/functions_reporting.php:15015
-msgid "Greetings"
-msgstr "Saludos"
-
-#: ../../enterprise/include/functions_cron.php:1776
-msgid "Attached to this email there's a CSV file of the logs"
-msgstr "Hay un archivo CSV de los logs adjunto a este correo electrónico"
-
-#: ../../enterprise/include/functions_cron.php:1778
-#: ../../include/functions_reporting.php:15021
-#: ../../mobile/include/functions_web.php:84
-#: ../../mobile/include/ui.class.php:327
-msgid "Generated at"
-msgstr "Generado el"
-
-#: ../../enterprise/include/functions_cron.php:1780
-#: ../../include/functions_reporting.php:15023
-msgid "Thanks for your time."
-msgstr "Gracias por tu tiempo."
-
-#: ../../enterprise/include/functions_cron.php:1782
-#: ../../include/functions_reporting.php:15025
-msgid "Best regards, Pandora FMS"
-msgstr "Saludos cordiales, Pandora FMS"
-
-#: ../../enterprise/include/functions_cron.php:1784
-#: ../../include/functions_reporting.php:15027
-msgid ""
-"This is an automatically generated email from Pandora FMS, please do not reply."
-msgstr ""
-"Este es un email generado automáticamente por Pandora FMS. Por favor, no "
-"respondas a este email."
-
-#: ../../enterprise/include/functions_cron.php:1786
-msgid "logs csv"
-msgstr "Logs en CSV"
-
-#: ../../enterprise/include/functions_cron.php:2205
-#, php-format
-msgid "Error while executing task: %s, running %s, reason %s"
-msgstr "Error al ejecutar la tarea: %s, ejecución de %s, motivo %s"
-
-#: ../../enterprise/include/functions_cron.php:2219
-#: ../../enterprise/include/functions_cron.php:2229
-msgid "Error while executing task"
-msgstr "Error al ejecutar tarea "
-
-#: ../../enterprise/include/functions_events.php:219
-msgid "Id source events"
-msgstr "Eventos fuente de ID"
-
-#: ../../enterprise/include/functions_events.php:230
-#: ../../enterprise/include/functions_reporting_csv.php:2123
-msgid "Hours"
-msgstr "Horas"
-
-#: ../../enterprise/include/functions_events.php:245
-#: ../../enterprise/include/functions_events.php:267
-msgid "More than 5 tags"
-msgstr "Más de 5 etiquetas"
-
-#: ../../enterprise/include/functions_events.php:291
-#: ../../include/functions_snmp.php:441
-msgid "Active filter"
-msgstr "Filtro activo"
-
-#: ../../enterprise/include/functions_events.php:291
-#: ../../include/functions_snmp.php:441
-msgid "Active filters"
-msgstr "Filtros activos"
-
-#: ../../enterprise/include/functions_metaconsole.php:2943
-#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:163
-msgid "Target server ip address is set"
-msgstr "Dirección IP del servidor de destino configurada"
-
-#: ../../enterprise/include/functions_metaconsole.php:2950
-#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:159
-msgid "There are differences between MR versions"
-msgstr "Hay diferencias entre las versiones de las actualizaciones menores"
-
-#: ../../enterprise/include/functions_metaconsole.php:2957
-msgid "Agent alerts action does not exist in target node"
-msgstr "La acción de alertas de agentes no existe en el nodo objetivo."
-
-#: ../../enterprise/include/functions_metaconsole.php:2964
-msgid "Agent alerts template does not exist in target node"
-msgstr "La plantilla de alertas de agente no existe en el nodo objetivo"
-
-#: ../../enterprise/include/functions_metaconsole.php:2971
-msgid "Agent inventory does not exist in target node"
-msgstr "El inventario de agente no existe en el nodo objetivo"
-
-#: ../../enterprise/include/functions_metaconsole.php:2978
-msgid "Exists agent conf please remove configuration file from target node."
-msgstr ""
-"Existe archivo de configuración de agente, elimine el fichero del nodo "
-"objetivo."
-
-#: ../../enterprise/include/functions_metaconsole.php:2985
-msgid "Agent collections does not exist in target node"
-msgstr "Las colecciones de agente no existen en el nodo objetivo"
-
-#: ../../enterprise/include/functions_metaconsole.php:2992
-msgid "Agent plugins does not exist in target node"
-msgstr "El plugin de agente no existe en el nodo objetivo"
-
-#: ../../enterprise/include/functions_metaconsole.php:2999
-msgid ""
-"Agent policies definitions does not match  with defined ones in target node"
-msgstr ""
-"Las definiciones de políticas de agentes no coinciden con las definidas en el "
-"nodo objetivo"
-
-#: ../../enterprise/include/functions_metaconsole.php:3006
-msgid "Agent group does not exist in target node"
-msgstr "El grupo de agente no existe en el nodo objetivo"
-
-#: ../../enterprise/include/functions_metaconsole.php:3013
-msgid "Agent already exists in target node"
-msgstr "El agente ya existe en el nodo objetivo"
-
-#: ../../enterprise/include/functions_metaconsole.php:3037
-msgid "The agent: has not been added due to problems in the insertion"
-msgstr "El agente: no se ha añadido por problemas en la inserción"
-
-#: ../../enterprise/include/functions_metaconsole.php:3042
-msgid "The agent: has already been added to the migration queue"
-msgstr "El agente: ya se ha añadido a la cola de migración"
-
-#: ../../enterprise/include/functions_metaconsole.php:3120
-msgid "Cannot "
-msgstr "No puede "
-
-#: ../../enterprise/include/functions_transactional.php:631
-msgid "Error in dependencies field"
-msgstr "Error en el campo de las dependencias"
-
-#: ../../enterprise/include/functions_transactional.php:640
-msgid "Error in enables field"
-msgstr "Error al activar el campo"
-
-#: ../../enterprise/include/functions_aws.php:381
-msgid "$"
-msgstr "$"
-
-#: ../../enterprise/include/functions_aws.php:491
-msgid "Current deployments"
-msgstr "Despliegues actuales"
-
-#: ../../enterprise/include/functions_aws.php:525
-msgid "Cost analysis"
-msgstr "Análisis de costes"
-
-#: ../../enterprise/include/functions_aws.php:528
-msgid "Current cost estimation"
-msgstr "Estimación actual de costes"
-
-#: ../../enterprise/include/functions_aws.php:530
-msgid "Previous period cost"
-msgstr "Coste del periodo anterior"
-
-#: ../../enterprise/include/functions_aws.php:589
-msgid "Reservation status"
-msgstr "Estado de reserva"
-
-#: ../../enterprise/include/functions_services.php:108
-msgid "There is no information about"
-msgstr "No hay información sobre"
-
-#: ../../enterprise/include/functions_services.php:113
-msgid "Service does not exist."
-msgstr "El servicio no existe."
-
-#: ../../enterprise/include/functions_services.php:125
-msgid "module that stores the service"
-msgstr "módulo que almacena el servicio"
-
-#: ../../enterprise/include/functions_services.php:137
-msgid "module that stores SLA service"
-msgstr "módulo que almacena el servicio SLA"
-
-#: ../../enterprise/include/functions_services.php:150
-msgid "agent that stores the service"
-msgstr "agente que almacena el servicio"
-
-#: ../../enterprise/include/functions_services.php:163
-msgid "agent that stores SLA service"
-msgstr "agente que almacena el servicio SLA"
-
-#: ../../enterprise/include/functions_services.php:184
-msgid "alert critical SLA service"
-msgstr "alerta crítica de servicio SLA"
-
-#: ../../enterprise/include/functions_services.php:205
-msgid "alert warning service"
-msgstr "servicio en estado de advertencia"
-
-#: ../../enterprise/include/functions_services.php:226
-msgid "alert critical service"
-msgstr "servicio en alerta crítica"
-
-#: ../../enterprise/include/functions_services.php:247
-msgid "alert unknown service"
-msgstr "servicio en estado desconocido"
-
-#: ../../enterprise/include/functions_services.php:528
-#, php-format
-msgid "Module automatic create for the service %s"
-msgstr "Módulo automático creado para el servicio %s"
-
-#: ../../enterprise/include/functions_services.php:1432
-msgid "Normal (Alert)"
-msgstr "Normal (Alerta)"
-
-#: ../../enterprise/include/functions_services.php:1436
-msgid "Critical (Alert)"
-msgstr "Crítico (Alerta)"
-
-#: ../../enterprise/include/functions_services.php:1444
-msgid "Warning (Alert)"
-msgstr "Advertencia (Alerta)"
-
-#: ../../enterprise/include/functions_services.php:1582
-msgid "There are no service elements defined"
-msgstr "No hay servicios de elementos definidos"
-
-#: ../../enterprise/include/functions_services.php:1606
-msgid "Weight Critical"
-msgstr "Peso crítico"
-
-#: ../../enterprise/include/functions_services.php:1607
-msgid "Weight Warning"
-msgstr "Peso de advertencia"
-
-#: ../../enterprise/include/functions_services.php:1608
-msgid "Weight Unknown"
-msgstr "Peso desconocido"
-
-#: ../../enterprise/include/functions_services.php:1609
-msgid "Weight Ok"
-msgstr "Peso OK"
-
-#: ../../enterprise/include/functions_services.php:1672
-#: ../../enterprise/include/functions_services.php:1717
-#: ../../enterprise/include/functions_services.php:1785
-msgid "Nonexistent. This element should be deleted"
-msgstr "Inexistente. Este elemento debería eliminarse."
-
-#: ../../enterprise/include/functions_services.php:1700
-#: ../../enterprise/include/functions_services.php:1767
-#: ../../enterprise/include/functions_services.php:1813
-msgid "This element does not affect service weigth because is disabled."
-msgstr "El elemento no afecta al peso del servicio porque está deshabilitado."
-
-#: ../../enterprise/include/functions_services.php:1828
-#, php-format
-msgid "Dynamic element (%d) '%s' does not match any target"
-msgstr "El elemento dinámico (%d) '%s' no coincide con ningún objetivo"
-
-#: ../../enterprise/include/functions_services.php:1837
-#, php-format
-msgid "Dynamic element (%d) '%s' causes an error: %s"
-msgstr "El elemento dinámico (%d) '%s' provoca un error: %s"
-
-#: ../../enterprise/include/functions_services.php:1849
-msgid "Dynamic element"
-msgstr "Elemento dinámico"
-
-#: ../../enterprise/include/functions_services.php:1855
-#, php-format
-msgid "agents like \"%s\""
-msgstr "agentes como \"%s\""
-
-#: ../../enterprise/include/functions_services.php:1860
-#, php-format
-msgid "modules like \"%s\""
-msgstr "módulos como \"%s\""
-
-#: ../../enterprise/include/functions_services.php:1989
-msgid "NOT INITIALIZED"
-msgstr "NO INICIADO"
-
-#: ../../enterprise/include/functions_services.php:2023
-msgid "Delete service element"
-msgstr "Eliminar elemento de servicio"
-
-#: ../../enterprise/include/functions_services.php:2082
-msgid "FAIL"
-msgstr "FALLO"
-
-#: ../../enterprise/include/functions_license.php:119
-msgid "Perpetual"
-msgstr "Perpetuo"
-
-#: ../../enterprise/include/functions_license.php:119
-msgid "Subscription"
-msgstr "Suscripción"
-
-#: ../../enterprise/include/functions_license.php:120
-#: ../../include/class/Diagnostics.class.php:1156
-msgid "Support expires"
-msgstr "El soporte caduca"
-
-#: ../../enterprise/include/functions_license.php:120
-msgid "Expires"
-msgstr "Caduca"
-
-#: ../../enterprise/include/functions_tasklist.php:56
-#: ../../include/class/ConsoleSupervisor.php:2376
-msgid "DiscoveryConsoleTasks is not running properly"
-msgstr "DiscoveryConsoleTasks no funciona adecuadamente"
-
-#: ../../enterprise/include/functions_tasklist.php:58
-msgid ""
-"Discovery relies on a proper setup of cron, the time-based scheduling service"
-msgstr ""
-"El Discovery se basa en la correcta configuración de cron, el servicio de "
-"programación en función del tiempo"
-
-#: ../../enterprise/include/functions_tasklist.php:59
-#: ../../include/class/ConsoleSupervisor.php:2379
-msgid "Please, add the following line to your crontab file:"
-msgstr "Añada la siguiente línea a su archivo crontab:"
-
-#: ../../enterprise/include/functions_tasklist.php:74
-#: ../../include/class/ConsoleSupervisor.php:2392
-msgid "Last execution"
-msgstr "Última ejecución"
-
-#: ../../enterprise/include/functions_tasklist.php:77
-msgid "Please check process is no locked."
-msgstr "Compruebe que el proceso no está bloqueado"
-
-#: ../../enterprise/include/functions_tasklist.php:143
-#: ../../enterprise/include/functions_tasklist.php:688
-msgid "There are no console task defined yet."
-msgstr "Aún no hay tareas de consola definidas."
-
-#: ../../enterprise/include/functions_tasklist.php:155
-#: ../../enterprise/meta/advanced/cron_main.php:394
-#: ../../include/functions_cron.php:466
-msgid "Next execution"
-msgstr "Siguiente ejecución"
-
-#: ../../enterprise/include/functions_tasklist.php:156
-#: ../../include/functions_cron.php:467
-msgid "Last run"
-msgstr "Última ejecución"
-
-#: ../../enterprise/include/functions_tasklist.php:217
-#: ../../enterprise/include/functions_tasklist.php:279
-#: ../../enterprise/include/functions_tasklist.php:365
-#: ../../enterprise/include/functions_tasklist.php:406
-#: ../../enterprise/include/functions_tasklist.php:459
-#: ../../enterprise/include/functions_tasklist.php:498
-#: ../../enterprise/include/functions_tasklist.php:535
-#: ../../include/functions_cron.php:498 ../../include/functions_cron.php:536
-#: ../../include/functions_cron.php:591 ../../include/functions_cron.php:683
-#: ../../include/functions_cron.php:719 ../../include/functions_cron.php:765
-#: ../../include/functions_cron.php:807 ../../include/functions_cron.php:841
-msgid "Force run"
-msgstr "Forzar ejecución"
-
-#: ../../enterprise/include/functions_tasklist.php:313
-#: ../../include/functions_cron.php:638
-msgid "regex"
-msgstr "expresión regular"
-
-#: ../../enterprise/include/functions_tasklist.php:433
-#: ../../include/functions_cron.php:747 ../../include/functions_cron.php:788
-#: ../../include/lib/Dashboard/Widgets/reports.php:307
-#: ../../include/lib/Dashboard/Widgets/reports.php:352
-#: ../../extensions/resource_exportation.php:433
-msgid "Report"
-msgstr "Informe"
-
-#: ../../enterprise/include/functions_tasklist.php:435
-#: ../../enterprise/include/class/ManageBackups.class.php:166
-#: ../../include/functions_cron.php:749 ../../include/functions_cron.php:790
-#: ../../include/class/Diagnostics.class.php:2175
-msgid "Path"
-msgstr "Ruta"
-
-#: ../../enterprise/include/functions_tasklist.php:569
-msgid "Task disabled"
-msgstr "Tarea deshabilitada"
-
-#: ../../enterprise/include/functions_tasklist.php:671
-#: ../../include/functions_cron.php:943
-msgid "Enable task"
-msgstr "Habilitar tarea"
-
-#: ../../enterprise/include/functions_tasklist.php:693
-msgid "Console Tasks"
-msgstr "Tareas de consola"
-
-#: ../../enterprise/include/class/MySQL.app.php:173
-msgid ""
-"This MySQL configuration has been already defined. Please edit it or create a "
-"new one."
-msgstr "Ya se ha definido esta configuración MySQL. Edítela o cree una nueva."
-
-#: ../../enterprise/include/class/MySQL.app.php:216
-msgid "You must provide a valid MySQL server IP or FQDN."
-msgstr "Añada una IP de servidor MySQL válida o FQDN."
-
-#: ../../enterprise/include/class/MySQL.app.php:221
-msgid "You must provide a valid port number."
-msgstr "Añada un número de puerto válido."
-
-#: ../../enterprise/include/class/MySQL.app.php:233
-msgid "Discovery.Application.MySQL"
-msgstr "Discovery.Application.MySQL"
-
-#: ../../enterprise/include/class/MySQL.app.php:285
-msgid "Failed to find discovery MySQL task."
-msgstr "No se ha encontrado la tarea discovery MySQL."
-
-#: ../../enterprise/include/class/MySQL.app.php:403
-#: ../../enterprise/include/class/SAP.app.php:336
-#: ../../enterprise/include/class/VMware.app.php:486
-#: ../../enterprise/include/class/DB2.app.php:386
-#: ../../enterprise/include/class/Oracle.app.php:393
-#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:388
-msgid "Application"
-msgstr "Aplicación"
-
-#: ../../enterprise/include/class/MySQL.app.php:475
-#: ../../enterprise/include/class/SAP.app.php:644
-#: ../../enterprise/include/class/VMware.app.php:763
-#: ../../enterprise/include/class/Aws.cloud.php:1234
-#: ../../enterprise/include/class/DB2.app.php:470
-#: ../../enterprise/include/class/Aws.S3.php:435
-#: ../../enterprise/include/class/Oracle.app.php:477
-#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:472
-msgid "This group will be used also to classify discovered agents"
-msgstr "Este grupo se usará para clasificar los agentes encontrados"
-
-#: ../../enterprise/include/class/MySQL.app.php:491
-msgid "MySQL server IP"
-msgstr "IP del servidor MySQL"
-
-#: ../../enterprise/include/class/MySQL.app.php:492
-msgid "Comma separated, as many targets as you need."
-msgstr "Tantos objetivos como desee, separados por comas."
-
-#: ../../enterprise/include/class/MySQL.app.php:511
-msgid "MySQL server Port"
-msgstr "Puerto del servidor MySQL"
-
-#: ../../enterprise/include/class/MySQL.app.php:583
-#: ../../enterprise/include/class/SAPView.class.php:259
-#: ../../enterprise/include/class/SAPView.class.php:296
-#: ../../enterprise/include/class/SAP.app.php:540
-#: ../../enterprise/include/class/VMware.app.php:693
-#: ../../enterprise/include/class/Aws.cloud.php:1343
-#: ../../enterprise/include/class/DB2.app.php:561
-#: ../../enterprise/include/class/Aws.S3.php:531
-#: ../../enterprise/include/class/Oracle.app.php:568
-#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:562
-msgid "The minimum recomended interval is 5 minutes"
-msgstr "El intervalo mínimo recomendado es de 5 minutos"
-
-#: ../../enterprise/include/class/MySQL.app.php:656
-#: ../../enterprise/include/class/DB2.app.php:634
-#: ../../enterprise/include/class/Oracle.app.php:641
-#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:635
-msgid "Target agent"
-msgstr "Agente objetivo"
-
-#: ../../enterprise/include/class/MySQL.app.php:657
-msgid ""
-"Defines a target agent where this task will store data detected, if you have "
-"defined multiple targets, define a comma separated list of names here or leave "
-"in blank to use server IP address/ FQDN."
-msgstr ""
-"Define un agente de destino donde la tarea almacenará los datos detectados. Si "
-"tiene varios objetivos definidos, defina una lista de nombres separados por "
-"coma aquí o déjelo en blanco para usar la dirección IP/FQDN del servidor."
-
-#: ../../enterprise/include/class/MySQL.app.php:676
-#: ../../enterprise/include/class/DB2.app.php:654
-#: ../../enterprise/include/class/Oracle.app.php:661
-#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:655
-msgid "Custom module prefix"
-msgstr "Prefijo de módulo personalizado"
-
-#: ../../enterprise/include/class/MySQL.app.php:677
-#: ../../enterprise/include/class/DB2.app.php:655
-#: ../../enterprise/include/class/Oracle.app.php:662
-#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:656
-msgid ""
-"Defines a custom prefix to be concatenated before module names generated by "
-"this task."
-msgstr ""
-"Define un prefijo personalizado para concatenar antes de los nombres de "
-"módulos generados por esta tarea."
-
-#: ../../enterprise/include/class/MySQL.app.php:698
-msgid "Scan databases"
-msgstr "Bases de datos de escaneo"
-
-#: ../../enterprise/include/class/MySQL.app.php:714
-msgid "Create agent per database"
-msgstr "Crear agente por base de datos"
-
-#: ../../enterprise/include/class/MySQL.app.php:735
-msgid "Custom database agent prefix"
-msgstr "Prefijo de agente de base de datos personalizado"
-
-#: ../../enterprise/include/class/MySQL.app.php:736
-msgid ""
-"Defines a custom prefix to be concatenated before database agent names "
-"generated by this task."
-msgstr ""
-"Define un prefijo personalizado a concatenar antes de los nombres de agentes "
-"de base de datos generados por esta tarea."
-
-#: ../../enterprise/include/class/MySQL.app.php:757
-#: ../../enterprise/include/class/Oracle.app.php:680
-#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:674
-msgid "Check engine uptime"
-msgstr "Comprobar disponibilidad del motor"
-
-#: ../../enterprise/include/class/MySQL.app.php:773
-#: ../../enterprise/include/class/Oracle.app.php:696
-#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:690
-msgid "Retrieve query statistics"
-msgstr "Obtener estadísticas de consultas"
-
-#: ../../enterprise/include/class/MySQL.app.php:789
-#: ../../enterprise/include/class/Oracle.app.php:712
-#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:706
-msgid "Analyze connections"
-msgstr "Analizar conexiones"
-
-#: ../../enterprise/include/class/MySQL.app.php:805
-msgid "Retrieve InnoDB statistics"
-msgstr "Obtener estadísticas InnoDB"
-
-#: ../../enterprise/include/class/MySQL.app.php:821
-#: ../../enterprise/include/class/DB2.app.php:737
-#: ../../enterprise/include/class/Oracle.app.php:760
-msgid "Retrieve cache statistics"
-msgstr "Obtener estadísticas de bases de datos"
-
-#: ../../enterprise/include/class/MySQL.app.php:837
-#: ../../enterprise/include/class/DB2.app.php:753
-#: ../../enterprise/include/class/Oracle.app.php:776
-#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:722
-msgid "Execute custom queries"
-msgstr "Ejecutar consultas personalizadas"
-
-#: ../../enterprise/include/class/MySQL.app.php:889
-#: ../../enterprise/include/class/DB2.app.php:821
-#: ../../enterprise/include/class/Oracle.app.php:930
-#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:774
-msgid "Custom queries"
-msgstr "Consultas personalizadas"
-
-#: ../../enterprise/include/class/MySQL.app.php:890
-#: ../../enterprise/include/class/DB2.app.php:822
-#: ../../enterprise/include/class/Oracle.app.php:931
-#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:775
-msgid "Define here your custom queries."
-msgstr "Defina aquí sus consultas personalizadas."
-
-#: ../../enterprise/include/class/SAPView.class.php:146
-#: ../../enterprise/include/class/SAPView.class.php:190
-msgid "SAP View"
-msgstr "Vista SAP"
-
-#: ../../enterprise/include/class/SAPView.class.php:164
-msgid "SAP data not found."
-msgstr "Datos SAP no encontrados."
-
-#: ../../enterprise/include/class/SAPView.class.php:258
-msgid "Refresh Every"
-msgstr "Refrescar cada"
-
-#: ../../enterprise/include/class/SAPView.class.php:295
-msgid "Graph Interval"
-msgstr "Intervalo de gráfica"
-
-#: ../../enterprise/include/class/SAPView.class.php:626
-msgid ""
-"SAP view offers you to see the most important modules Discovery Server is "
-"usually configured to retry. You have not configured a Discovery SAP R3 task "
-"yet, please visit"
-msgstr ""
-"La vista SAP le ofrece los módulos más importantes. El servidor Discovery "
-"normalmente está configurado para hacer reintentos. Si aún no ha configurado "
-"la tarea Discovery SAP R3, visite"
-
-#: ../../enterprise/include/class/SAPView.class.php:626
-#: ../../enterprise/extensions/vmware/vmware_view.php:1240
-#: ../../enterprise/extensions/vmware/vmware_view.php:1526
-msgid "this link"
-msgstr "este enlace"
-
-#: ../../enterprise/include/class/SAPView.class.php:626
-msgid "to start monitoring your SAP infrastructure."
-msgstr "para comenzar a monitorizar su infraestructura SAP"
-
-#: ../../enterprise/include/class/SAPView.class.php:633
-msgid "Discover SAP"
-msgstr "Descubrir SAP"
-
-#: ../../enterprise/include/class/NetworkConfigManager.class.php:375
-msgid "Perform action"
-msgstr "Realizar acción"
-
-#: ../../enterprise/include/class/NetworkConfigManager.class.php:1442
-msgid "NCM devices"
-msgstr "Dispositivos NCM"
-
-#: ../../enterprise/include/class/NetworkConfigManager.class.php:1456
-msgid "NCM templates"
-msgstr "Plantillas NCM"
-
-#: ../../enterprise/include/class/NetworkConfigManager.class.php:1470
-msgid "Registered vendors"
-msgstr "Fabricantes registrados"
-
-#: ../../enterprise/include/class/NetworkConfigManager.class.php:1484
-msgid "Registered models"
-msgstr "Modelos registrados"
-
-#: ../../enterprise/include/class/NetworkConfigManager.class.php:1498
-msgid "Registered snippets"
-msgstr "Snippets registrados"
-
-#: ../../enterprise/include/class/NetworkConfigManager.class.php:1512
-msgid "Registered firmwares"
-msgstr "Firmwares registrados"
-
-#: ../../enterprise/include/class/NetworkConfigManager.class.php:1548
-msgid "No agents with NCM features enabled yet"
-msgstr "Aún no hay agentes con funciones de NCM habilitadas"
-
-#: ../../enterprise/include/class/NetworkConfigManager.class.php:1679
-#: ../../enterprise/include/class/NetworkConfigManager.class.php:2189
-#: ../../enterprise/include/class/NetworkConfigManager.class.php:2240
-#, php-format
-msgid "Template not found: %s"
-msgstr "Plantilla no encontrada: %s"
-
-#: ../../enterprise/include/class/NetworkConfigManager.class.php:1704
-msgid "Template created"
-msgstr "Plantilla creada"
-
-#: ../../enterprise/include/class/NetworkConfigManager.class.php:1704
-msgid "Template updated"
-msgstr "Plantilla actualizada"
-
-#: ../../enterprise/include/class/NetworkConfigManager.class.php:1725
-#: ../../enterprise/include/class/NetworkConfigManager.class.php:1807
-#: ../../enterprise/include/class/NetworkConfigManager.class.php:1901
-#: ../../enterprise/include/class/NetworkConfigManager.class.php:1992
-#: ../../enterprise/include/class/NetworkConfigManager.class.php:2131
-#: ../../enterprise/include/class/NetworkConfigManager.class.php:2792
-#: ../../enterprise/include/lib/Metaconsole/Node.php:1514
-#: ../../include/functions_reporting.php:4743
-#: ../../include/functions_reporting.php:4771
-#: ../../include/class/CalendarManager.class.php:523
-#: ../../include/class/CalendarManager.class.php:895
-#, php-format
-msgid "Error: %s"
-msgstr "Error: %s"
-
-#: ../../enterprise/include/class/NetworkConfigManager.class.php:1770
-#: ../../enterprise/include/class/NetworkConfigManager.class.php:2314
-#, php-format
-msgid "Vendor not found: %s"
-msgstr "Fabricante no encontrado: %s"
-
-#: ../../enterprise/include/class/NetworkConfigManager.class.php:1785
-#: ../../enterprise/include/class/NetworkConfigManager.class.php:1875
-#: ../../enterprise/include/class/NetworkConfigManager.class.php:1970
-#: ../../enterprise/include/class/NetworkConfigManager.class.php:2064
-#: ../../enterprise/include/class/DatabaseHA.class.php:796
-#: ../../include/class/CalendarManager.class.php:488
-#: ../../include/class/CalendarManager.class.php:841
-msgid "Failed to update"
-msgstr "Error al actualizar"
-
-#: ../../enterprise/include/class/NetworkConfigManager.class.php:1788
-#: ../../enterprise/include/class/NetworkConfigManager.class.php:1878
-#: ../../enterprise/include/class/NetworkConfigManager.class.php:1973
-#: ../../enterprise/include/class/NetworkConfigManager.class.php:2067
-#: ../../include/class/CalendarManager.class.php:491
-#: ../../include/class/CalendarManager.class.php:844
-msgid "Failed to create"
-msgstr "Error al crear"
-
-#: ../../enterprise/include/class/NetworkConfigManager.class.php:1801
-msgid "Failed saving vendor: "
-msgstr "Fallo al guardar fabricante:"
-
-#: ../../enterprise/include/class/NetworkConfigManager.class.php:1860
-#, php-format
-msgid "model not found: %s"
-msgstr "modelo no encontrado: %s"
-
-#: ../../enterprise/include/class/NetworkConfigManager.class.php:1882
-#: ../../enterprise/include/class/NetworkConfigManager.class.php:2653
-msgid "you must select a valid vendor"
-msgstr "Debe seleccionar un fabricante válido"
-
-#: ../../enterprise/include/class/NetworkConfigManager.class.php:1895
-msgid "Failed saving model: "
-msgstr "Fallo al guardar el modelo: "
-
-#: ../../enterprise/include/class/NetworkConfigManager.class.php:1955
-#, php-format
-msgid "snippet not found: %s"
-msgstr "Snippet no encontrado: %s"
-
-#: ../../enterprise/include/class/NetworkConfigManager.class.php:1986
-msgid "Failed saving snippet: "
-msgstr "Error al guardar el snippet: "
-
-#: ../../enterprise/include/class/NetworkConfigManager.class.php:2049
-#, php-format
-msgid "firmware not found: %s"
-msgstr "firmware no encontrado: %s"
-
-#: ../../enterprise/include/class/NetworkConfigManager.class.php:2076
-msgid "Firmware file missing"
-msgstr "Falta el archivo de firmware"
-
-#: ../../enterprise/include/class/NetworkConfigManager.class.php:2089
-#: ../../enterprise/include/class/AgentRepository.class.php:440
-msgid "Cannot create target dir ["
-msgstr "No se ha podido crear el dir de destino ["
-
-#: ../../enterprise/include/class/NetworkConfigManager.class.php:2108
-#, php-format
-msgid "Failed to store file in %s"
-msgstr "Error al almacenar el archivo en %s"
-
-#: ../../enterprise/include/class/NetworkConfigManager.class.php:2125
-msgid "Failed saving firmware: "
-msgstr "Error al guardar el firmware: "
-
-#: ../../enterprise/include/class/NetworkConfigManager.class.php:2152
-msgid ""
-"Upload only official binary files from your device provide in raw format (not "
-"compressed)"
-msgstr ""
-"Cargue solo archivos binarios oficiales desde su dispositivo en formato RAW "
-"(no comprimido)"
-
-#: ../../enterprise/include/class/NetworkConfigManager.class.php:2256
-msgid "Template successfully duplicated"
-msgstr "Plantilla duplicada correctamente"
-
-#: ../../enterprise/include/class/NetworkConfigManager.class.php:2279
-#, php-format
-msgid "Model not found: %s"
-msgstr "Modelo no encontrado: %s"
-
-#: ../../enterprise/include/class/NetworkConfigManager.class.php:2291
-msgid "Model successfully deleted"
-msgstr "Modelo eliminado correctamente"
-
-#: ../../enterprise/include/class/NetworkConfigManager.class.php:2326
-msgid "Vendor successfully deleted"
-msgstr "Fabriante eliminado correctamente"
-
-#: ../../enterprise/include/class/NetworkConfigManager.class.php:2349
-#, php-format
-msgid "Snippet not found: %s"
-msgstr "Snippet no encontrado: %s"
-
-#: ../../enterprise/include/class/NetworkConfigManager.class.php:2361
-msgid "Snippet successfully deleted"
-msgstr "Snippet eliminado correctamente"
-
-#: ../../enterprise/include/class/NetworkConfigManager.class.php:2384
-#, php-format
-msgid "Firmware not found: %s"
-msgstr "Firmware no encontrado: %s"
-
-#: ../../enterprise/include/class/NetworkConfigManager.class.php:2396
-msgid "Firmware successfully deleted"
-msgstr "Firmware eliminado correctamente"
-
-#: ../../enterprise/include/class/NetworkConfigManager.class.php:2475
-msgid ""
-"Not executed yet, no content to display, define your own in following textarea."
-msgstr ""
-"Aún no se ha ejecutado, no hay contenido que mostrar, defina el suyo propio en "
-"el siguiente área de texto."
-
-#: ../../enterprise/include/class/NetworkConfigManager.class.php:2484
-msgid ""
-"Following content is already queued to be executed! You must wait until "
-"execution is finished before being able to modify this."
-msgstr ""
-"¡El siguiente contenido ya está en cola para ser ejecutado! Debe esperar hasta "
-"que finalice la ejecución antes de poder modificarla."
-
-#: ../../enterprise/include/class/NetworkConfigManager.class.php:2576
-msgid "Check progress"
-msgstr "Comprobar el progreso"
-
-#: ../../enterprise/include/class/NetworkConfigManager.class.php:2585
-#, php-format
-msgid "Script scheduled %s %s"
-msgstr "Script programado %s %s"
-
-#: ../../enterprise/include/class/NetworkConfigManager.class.php:2643
-#, php-format
-msgid "Error retrieving template: %s"
-msgstr "Error al recuperar la plantilla: %s"
-
-#: ../../enterprise/include/class/NetworkConfigManager.class.php:2649
-msgid "you must select a template"
-msgstr "Debe seleccionar una plantilla"
-
-#: ../../enterprise/include/class/NetworkConfigManager.class.php:2651
-msgid "you must select a valid model"
-msgstr "Debe seleccionar un modelo válido"
-
-#: ../../enterprise/include/class/NetworkConfigManager.class.php:2655
-msgid "you must select a valid port"
-msgstr "Debe seleccionar un puerto válido"
-
-#: ../../enterprise/include/class/NetworkConfigManager.class.php:2689
-#, php-format
-msgid "Failed to update%s"
-msgstr "No se pudo actualizar %s"
-
-#: ../../enterprise/include/class/NetworkConfigManager.class.php:2721
-msgid "No configuration registers to backup"
-msgstr "No hay registros de configuración para realizar copias de seguridad"
-
-#: ../../enterprise/include/class/NetworkConfigManager.class.php:2729
-#: ../../enterprise/include/class/NetworkConfigManager.class.php:2745
-msgid "Successfully backed up"
-msgstr "Copia de copia de ha realizada"
-
-#: ../../enterprise/include/class/NetworkConfigManager.class.php:2780
-msgid "Invalid id given"
-msgstr "ID no válido"
-
-#: ../../enterprise/include/class/NetworkConfigManager.class.php:2815
-msgid ""
-"Is highly recommendable to execute this kind of operation from agent details "
-"to preview the script content"
-msgstr ""
-"Es muy recomendable ejecutar este tipo de operación desde los detalles del "
-"agente para obtener una vista previa del contenido del script"
-
-#: ../../enterprise/include/class/NetworkConfigManager.class.php:2824
-msgid "This operation is not ready yet! Keep up to date with latest updates"
-msgstr ""
-"¡Esta operación aún no está lista! Manténgase al día con las últimas "
-"actualizaciones"
-
-#: ../../enterprise/include/class/NetworkConfigManager.class.php:2833
-msgid "Invalid action"
-msgstr "Acción no válida"
-
-#: ../../enterprise/include/class/NetworkConfigManager.class.php:2852
-#: ../../enterprise/include/class/DatabaseHA.class.php:190
-msgid "Successfully scheduled"
-msgstr "Programado correctamente"
-
-#: ../../enterprise/include/class/NetworkConfigManager.class.php:2853
-msgid "Failed to schedule action."
-msgstr "Error al programar la acción."
-
-#: ../../enterprise/include/class/SAP.app.php:154
-msgid ""
-"This SAP configuration has been already defined. Please edit it or create a "
-"new one."
-msgstr "Ya se ha definido esta configuración SAP. Edítela o cree una nueva."
-
-#: ../../enterprise/include/class/SAP.app.php:195
-msgid "You must specify at last one SAP hostname."
-msgstr "Especifique al menos un nombre de host SAP."
-
-#: ../../enterprise/include/class/SAP.app.php:206
-msgid "Discovery.Application.SAP"
-msgstr "Discovery.Application.SAP"
-
-#: ../../enterprise/include/class/SAP.app.php:262
-msgid "Failed to find discovery SAP task."
-msgstr "No se ha encontrado la tarea de discovery SAP."
-
-#: ../../enterprise/include/class/SAP.app.php:286
-msgid "Select at least a module."
-msgstr "Seleccione al menos un módulo."
-
-#: ../../enterprise/include/class/SAP.app.php:354
-msgid "SAP R3"
-msgstr "SAP R3"
-
-#: ../../enterprise/include/class/SAP.app.php:371
-#: ../../enterprise/include/class/DeploymentCenter.class.php:482
-#: ../../enterprise/include/class/DeploymentCenter.class.php:490
-#: ../../enterprise/include/class/DeploymentCenter.class.php:498
-#: ../../enterprise/include/class/DeploymentCenter.class.php:657
-#: ../../enterprise/extensions/vmware/vmware_view.php:1737
-msgid "here"
-msgstr "aquí"
-
-#: ../../enterprise/include/class/SAP.app.php:547
-msgid "SAP Hostname"
-msgstr "Nombre del host SAP"
-
-#: ../../enterprise/include/class/SAP.app.php:571
-msgid "SAP Client"
-msgstr "Cliente SAP"
-
-#: ../../enterprise/include/class/SAP.app.php:585
-msgid "SAP System Number"
-msgstr "Número del sistema SAP"
-
-#: ../../enterprise/include/class/SAP.app.php:617
-#: ../../enterprise/include/class/SAP.app.php:631
-msgid "SAP Credentials"
-msgstr "Credenciales SAP"
-
-#: ../../enterprise/include/class/SAP.app.php:617
-#: ../../enterprise/include/class/SAP.app.php:631
-msgid "Optional"
-msgstr "Opcional"
-
-#: ../../enterprise/include/class/SAP.app.php:727
-#: ../../include/functions_agents.php:3997
-msgid "SAP Login OK"
-msgstr "Inicio de sesión SAP correcto"
-
-#: ../../enterprise/include/class/SAP.app.php:728
-#: ../../include/functions_agents.php:3998
-msgid "SAP Dumps"
-msgstr "Volcados SAP"
-
-#: ../../enterprise/include/class/SAP.app.php:729
-#: ../../include/functions_agents.php:3999
-msgid "SAP lock entry list"
-msgstr "Lista de entradas de bloqueo SAP"
-
-#: ../../enterprise/include/class/SAP.app.php:730
-#: ../../include/functions_agents.php:4000
-msgid "SAP canceled Jobs"
-msgstr "Trabajos SAP cancelados"
-
-#: ../../enterprise/include/class/SAP.app.php:731
-#: ../../include/functions_agents.php:4001
-msgid "SAP Batch inputs erroneous"
-msgstr "Entradas SAP en grupo erróneas"
-
-#: ../../enterprise/include/class/SAP.app.php:732
-#: ../../include/functions_agents.php:4002
-msgid "SAP IDOC erroneous"
-msgstr "SAP IDOC erróneo"
-
-#: ../../enterprise/include/class/SAP.app.php:733
-#: ../../include/functions_agents.php:4003
-msgid "SAP IDOC OK"
-msgstr "SAP IDOC OK"
-
-#: ../../enterprise/include/class/SAP.app.php:734
-#: ../../include/functions_agents.php:4004
-msgid "SAP WP without active restart"
-msgstr "WP SAP sin reinicio activo"
-
-#: ../../enterprise/include/class/SAP.app.php:735
-#: ../../include/functions_agents.php:4005
-msgid "SAP WP stopped"
-msgstr "WP SAP parado"
-
-#: ../../enterprise/include/class/SAP.app.php:736
-#: ../../include/functions_agents.php:4006
-msgid "Average time of SAPGUI response"
-msgstr "Media de tiempo de respuesta de SAPGUI"
-
-#: ../../enterprise/include/class/SAP.app.php:737
-#: ../../include/functions_agents.php:4008
-msgid "Dialog Logged users"
-msgstr "Usuarios conectados en el diálogo"
-
-#: ../../enterprise/include/class/SAP.app.php:738
-#: ../../include/functions_agents.php:4009
-msgid "TRFC in error"
-msgstr "TRFC en error"
-
-#: ../../enterprise/include/class/SAP.app.php:739
-#: ../../include/functions_agents.php:4010
-msgid "QRFC in error SMQ2"
-msgstr "QRFC en error SMQ2"
-
-#: ../../enterprise/include/class/SAP.app.php:740
-#: ../../include/functions_agents.php:4011
-msgid "Number of Update WPs in error"
-msgstr "Número de WPs de actualización en error"
-
-#: ../../enterprise/include/class/SAP.app.php:764
-#, php-format
-msgid ""
-"Module 180 must be customized before being used, please use advanced options "
-"to define the module following the documentation:<br> %s"
-msgstr ""
-"El módulo 180 debe personalizarse antes de usarse, use las opciones avanzadas "
-"para definir el módulo siguiendo la documentación:<br> %s"
-
-#: ../../enterprise/include/class/SAP.app.php:785
-msgid "Available modules"
-msgstr "Módulos disponibles"
-
-#: ../../enterprise/include/class/SAP.app.php:821
-msgid "Add monitors"
-msgstr "Añadir monitores"
-
-#: ../../enterprise/include/class/SAP.app.php:834
-msgid "Remove monitors"
-msgstr "Eliminar monitores"
-
-#: ../../enterprise/include/class/SAP.app.php:885
-msgid "Define your custom SAP modules."
-msgstr "Defina sus módulos SAP personalizados."
-
-#: ../../enterprise/include/class/SAP.app.php:884
-msgid "Advanced module configuration"
-msgstr "Configuración de módulos avanzada"
-
-#: ../../enterprise/include/class/SAP.app.php:894
-msgid "Custom module definitions"
-msgstr "Definiciones de módulos personalizadas"
-
-#: ../../enterprise/include/class/SAP.app.php:895
-msgid ""
-"Each line is a module definition using following format: module name ; "
-"module_type ; SAP check definition."
-msgstr ""
-"Cada línea es una definición de módulo con el siguiente formato: nombre del "
-"módulo ; tipo_de_módulo ; definición de comprobación SAP."
-
-#: ../../enterprise/include/class/Azure.cloud.php:148
-#: ../../enterprise/include/class/Aws.cloud.php:113
-#: ../../enterprise/include/class/Google.cloud.php:142
-msgid "Cloud message"
-msgstr "Mensaje en la nube"
-
-#: ../../enterprise/include/class/Azure.cloud.php:153
-#: ../../include/class/CredentialStore.class.php:947
-msgid "Azure"
-msgstr "Azure"
-
-#: ../../enterprise/include/class/Azure.cloud.php:248
-#: ../../enterprise/include/class/Google.cloud.php:242
-msgid "Task details"
-msgstr "Detalles de la tarea"
-
-#: ../../enterprise/include/class/Azure.cloud.php:249
-#: ../../enterprise/include/class/Google.cloud.php:243
-msgid "Instance explorer"
-msgstr "Buscador de instancias"
-
-#: ../../enterprise/include/class/Azure.cloud.php:250
-#: ../../enterprise/include/class/Google.cloud.php:244
-msgid "Metrics"
-msgstr "Métricas"
-
-#: ../../enterprise/include/class/Azure.cloud.php:307
-msgid "Microsoft Compute"
-msgstr "Microsoft Compute"
-
-#: ../../enterprise/include/class/Azure.cloud.php:355
-#: ../../enterprise/include/class/Aws.cloud.php:1492
-#: ../../enterprise/include/class/Google.cloud.php:349
-#, php-format
-msgid "%s not found or not executable"
-msgstr "%s no encontrado o no ejecutable"
-
-#: ../../enterprise/include/class/Azure.cloud.php:468
-#: ../../enterprise/include/class/Google.cloud.php:470
-msgid "Group not found."
-msgstr "Grupo no encontrado"
-
-#: ../../enterprise/include/class/Azure.cloud.php:598
-#: ../../enterprise/include/class/Azure.cloud.php:646
-#: ../../enterprise/include/class/Google.cloud.php:597
-#: ../../enterprise/include/class/Google.cloud.php:643
-msgid "Unauthorized access"
-msgstr "Acceso no autorizado"
-
-#: ../../enterprise/include/class/Azure.cloud.php:797
-#: ../../enterprise/include/class/VMware.app.php:614
-#: ../../enterprise/include/class/Aws.cloud.php:540
-#: ../../enterprise/include/class/Aws.S3.php:559
-msgid "Tentacle options"
-msgstr "Opciones de Tentacle"
-
-#: ../../enterprise/include/class/Azure.cloud.php:872
-#: ../../enterprise/include/class/Aws.cloud.php:742
-#: ../../enterprise/include/class/Aws.cloud.php:1274
-#: ../../enterprise/include/class/Google.cloud.php:822
-msgid "No instances found."
-msgstr "No se han encontrado instancias."
-
-#: ../../enterprise/include/class/Azure.cloud.php:909
-#: ../../enterprise/include/class/Google.cloud.php:865
-msgid "Select target virtual machines"
-msgstr "Seleccionar máquinas virtuales de destino"
-
-#: ../../enterprise/include/class/Azure.cloud.php:928
-#: ../../enterprise/include/class/Aws.cloud.php:671
-msgid "Scan and general monitoring."
-msgstr "Escaneo y monitorización general."
-
-#: ../../enterprise/include/class/Azure.cloud.php:941
-#: ../../enterprise/include/class/Aws.cloud.php:688
-msgid "Cpu performance summary"
-msgstr "Resumen del rendimiento de CPU"
-
-#: ../../enterprise/include/class/Azure.cloud.php:949
-#: ../../enterprise/include/class/Aws.cloud.php:698
-#: ../../enterprise/include/class/Google.cloud.php:911
-msgid "IOPS performance summary"
-msgstr "Resumen del rendimiento de IOPS"
-
-#: ../../enterprise/include/class/Azure.cloud.php:957
-#: ../../enterprise/include/class/Aws.cloud.php:708
-#: ../../enterprise/include/class/Google.cloud.php:919
-msgid "Disk performance summary"
-msgstr "Resumen del rendimiento de disco"
-
-#: ../../enterprise/include/class/Azure.cloud.php:965
-#: ../../enterprise/include/class/Aws.cloud.php:718
-#: ../../enterprise/include/class/Google.cloud.php:927
-msgid "Network performance summary"
-msgstr "Resumen del rendimiento de la red"
-
-#: ../../enterprise/include/class/VMware.app.php:230
-msgid ""
-"This VMware configuration has been already defined. Please edit it or create a "
-"new one."
-msgstr "Ya se ha definido la configuración VMware. Edítela o cree una nueva."
-
-#: ../../enterprise/include/class/VMware.app.php:274
-msgid "You must provide a valid V-Center IP or FQDN."
-msgstr "Añada una IP V-Center o FQDN válida."
-
-#: ../../enterprise/include/class/VMware.app.php:291
-msgid "Discovery.Application.VMware"
-msgstr "Discovery.Application.VMware"
-
-#: ../../enterprise/include/class/VMware.app.php:310
-msgid "Please select a valid group"
-msgstr "Seleccione un grupo válido"
-
-#: ../../enterprise/include/class/VMware.app.php:369
-msgid "Failed to find discovery VMware task."
-msgstr "No se ha podido encontrar la tarea de discovery VMware."
-
-#: ../../enterprise/include/class/VMware.app.php:384
-msgid "Threads must be equal or greater than 1."
-msgstr "Los hilos deben ser igual o mayor que 1."
-
-#: ../../enterprise/include/class/VMware.app.php:547
-#: ../../enterprise/include/class/Aws.cloud.php:500
-#: ../../enterprise/include/class/Aws.S3.php:554
-msgid ""
-"This kind of task uses multipurpose plugins in order to generate monitoring "
-"data, configure your desired tentacle target."
-msgstr ""
-"Este tipo de tarea usa plugins multi función para generar datos de "
-"monitorización, configure el objetivo Tentacle deseado."
-
-#: ../../enterprise/include/class/VMware.app.php:656
-msgid "Datacenter user"
-msgstr "Usuario del datacenter"
-
-#: ../../enterprise/include/class/VMware.app.php:707
-msgid "V-Center IP"
-msgstr "V-Center IP"
-
-#: ../../enterprise/include/class/VMware.app.php:718
-msgid "Datacenter name"
-msgstr "Nombre del centro de datos"
-
-#: ../../enterprise/include/class/VMware.app.php:719
-msgid ""
-"This name must match with the name wich appears when you log in you VMware "
-"manager"
-msgstr ""
-"El nombre debe coincidir con el nombre que aparece al iniciar sesión en el "
-"gestor de VMware."
-
-#: ../../enterprise/include/class/VMware.app.php:749
-msgid "Encrypt passwords"
-msgstr "Cifrar contraseñas"
-
-#: ../../enterprise/include/class/VMware.app.php:870
-msgid "Max threads"
-msgstr "Máximo de hilos"
-
-#: ../../enterprise/include/class/VMware.app.php:879
-msgid "Re-scan interval"
-msgstr "Intervalo de re-escaneo"
-
-#: ../../enterprise/include/class/VMware.app.php:880
-msgid "Enables re-scan entities process every interval defined."
-msgstr ""
-"Hace posible que las entidades de re-escaneo procesen todos los intervalos "
-"definidos."
-
-#: ../../enterprise/include/class/VMware.app.php:913
-msgid "Retry send"
-msgstr "Reintentar envío"
-
-#: ../../enterprise/include/class/VMware.app.php:923
-msgid "Event mode"
-msgstr "Modo de evento"
-
-#: ../../enterprise/include/class/VMware.app.php:923
-msgid "Only for VCenter."
-msgstr "Solo para VCenter."
-
-#: ../../enterprise/include/class/VMware.app.php:933
-msgid "Virtual network monitoring"
-msgstr "Monitorización de redes virtuales"
-
-#: ../../enterprise/include/class/VMware.app.php:964
-msgid "Extra settings"
-msgstr "Ajustes adicionales"
-
-#: ../../enterprise/include/class/VMware.app.php:965
-msgid "This RAW block will be directly added to config file."
-msgstr "Este bloque RAM se añadirá directamente al archivo de configuración."
-
-#: ../../enterprise/include/class/VMware.app.php:1259
-msgid "Include datastores"
-msgstr "Incluir almacenes de datos"
-
-#: ../../enterprise/include/class/VMware.app.php:1269
-msgid "Include datacenters"
-msgstr "Incluir centros de datos"
-
-#: ../../enterprise/include/class/VMware.app.php:1279
-msgid "Include esxs"
-msgstr "Incluir esxs"
-
-#: ../../enterprise/include/class/VMware.app.php:1289
-msgid "Include vms"
-msgstr "Incluir vms"
-
-#: ../../enterprise/include/class/Omnishell.class.php:214
-#: ../../enterprise/include/class/AlertCorrelationManager.class.php:414
-msgid "Please follow the wizard."
-msgstr "Siga las instrucciones del asistente."
-
-#: ../../enterprise/include/class/Omnishell.class.php:226
-#: ../../enterprise/include/class/AlertCorrelationManager.class.php:427
-msgid "You have no acess to edit this command."
-msgstr "No tiene acceso para editar este comando."
-
-#: ../../enterprise/include/class/Omnishell.class.php:261
-msgid "Failed to save command."
-msgstr "Error al guardar comando."
-
-#: ../../enterprise/include/class/Omnishell.class.php:272
-msgid "Command not found."
-msgstr "Comando no encontrado."
-
-#: ../../enterprise/include/class/Omnishell.class.php:319
-#: ../../enterprise/include/class/AlertCorrelationManager.class.php:717
-#: ../../include/class/HelpFeedBack.class.php:99
-msgid "Page not found"
-msgstr "Página no encontrada"
-
-#: ../../enterprise/include/class/Omnishell.class.php:349
-#: ../../enterprise/include/class/Omnishell.class.php:610
-msgid "You must install php-yaml in order to use this feature."
-msgstr "Instale php-yaml para usar esta funcionalidad."
-
-#: ../../enterprise/include/class/Omnishell.class.php:364
-msgid "Not Started"
-msgstr "No iniciado"
-
-#: ../../enterprise/include/class/Omnishell.class.php:398
-#: ../../enterprise/views/ncm/firmwares/list.php:74
-#: ../../include/class/CredentialStore.class.php:803
-#: ../../include/class/CredentialStore.class.php:911
-msgid "Identifier"
-msgstr "Identificador"
-
-#: ../../enterprise/include/class/Omnishell.class.php:442
-msgid "Commands status"
-msgstr "Estado de los comandos"
-
-#: ../../enterprise/include/class/Omnishell.class.php:487
-msgid "Create command"
-msgstr "Crear comando"
-
-#: ../../enterprise/include/class/Omnishell.class.php:506
-msgid "Selected command definitions will be erased"
-msgstr "Las definiciones de los comandos seleccionadas se eliminarán."
-
-#: ../../enterprise/include/class/Omnishell.class.php:688
-msgid "Time out"
-msgstr "Tiempo fuera de servicio"
-
-#: ../../enterprise/include/class/Omnishell.class.php:697
-msgid "Retries "
-msgstr "Reintentos "
-
-#: ../../enterprise/include/class/Omnishell.class.php:708
-msgid "Preconditions "
-msgstr "Condiciones previas "
-
-#: ../../enterprise/include/class/Omnishell.class.php:709
-msgid "All commands defined line per line must success to execute main commands"
-msgstr ""
-"Todos los comandos definidos en cada línea deben ser correctos para ejecutar "
-"los comandos principales"
-
-#: ../../enterprise/include/class/Omnishell.class.php:721
-msgid "Execute commands "
-msgstr "Ejecutar comandos "
-
-#: ../../enterprise/include/class/Omnishell.class.php:722
-msgid "Define as many lines as commands you want to execute"
-msgstr "Definir tantas líneas como comandos desee ejecutar"
-
-#: ../../enterprise/include/class/Omnishell.class.php:734
-msgid "Postconditions "
-msgstr "Condiciones posteriores "
-
-#: ../../enterprise/include/class/Omnishell.class.php:735
-msgid ""
-"All commands defined line per line must success to consider command success"
-msgstr ""
-"Todos los comandos definidos en cada línea deben ser correctos para que el "
-"comando se considere correcto"
-
-#: ../../enterprise/include/class/Omnishell.class.php:880
-msgid "Remove agents"
-msgstr "Eliminar agentes"
-
-#: ../../enterprise/include/class/Omnishell.class.php:1157
-msgid "Selected command definition will be erased"
-msgstr "La definición de comando seleccionada se eliminará"
-
-#: ../../enterprise/include/class/Omnishell.class.php:1243
-msgid "Command viewer"
-msgstr "Visor de comandos"
-
-#: ../../enterprise/include/class/Omnishell.class.php:1251
-msgid "Detailed view"
-msgstr "Vista detallada"
-
-#: ../../enterprise/include/class/Omnishell.class.php:1392
-msgid "Not an array of ids"
-msgstr "No un conjunto de IDs"
-
-#: ../../enterprise/include/class/Omnishell.class.php:1450
-msgid "There are no targets for this remote command"
-msgstr "No hay objetivos para este comando remoto"
-
-#: ../../enterprise/include/class/Omnishell.class.php:1457
-msgid "Command does not exist"
-msgstr "El comando no existe"
-
-#: ../../enterprise/include/class/Omnishell.class.php:1553
-#: ../../enterprise/include/lib/Metaconsole/Node.php:141
-#: ../../enterprise/include/lib/Metaconsole/Node.php:190
-#: ../../enterprise/include/lib/Metaconsole/Node.php:241
-#: ../../enterprise/include/lib/Metaconsole/Node.php:336
-#: ../../enterprise/include/lib/Metaconsole/Node.php:389
-#: ../../enterprise/meta/advanced/metasetup.consoles.php:99
-msgid "success"
-msgstr "con éxito"
-
-#: ../../enterprise/include/class/Omnishell.class.php:1556
-msgid "timed out"
-msgstr "tiempo de espera agotado"
-
-#: ../../enterprise/include/class/Omnishell.class.php:1559
-msgid "failed"
-msgstr "error"
-
-#: ../../enterprise/include/class/Omnishell.class.php:1575
-msgid "Waiting results..."
-msgstr "Esperando resultados..."
-
-#: ../../enterprise/include/class/Omnishell.class.php:1594
-msgid "RCMD does not exist"
-msgstr "RCMD no existe"
-
-#: ../../enterprise/include/class/Aws.cloud.php:118
-#: ../../include/class/CredentialStore.class.php:946
-msgid "Aws"
-msgstr "Aws"
-
-#: ../../enterprise/include/class/Aws.cloud.php:343
-msgid "Recon"
-msgstr "Reconocimento"
-
-#: ../../enterprise/include/class/Aws.cloud.php:344
-msgid "Costs"
-msgstr "Costes"
-
-#: ../../enterprise/include/class/Aws.cloud.php:346
-msgid "Instances"
-msgstr "Instancias"
-
-#: ../../enterprise/include/class/Aws.cloud.php:441
-msgid "Amazon EC2"
-msgstr "Amazon EC2"
-
-#: ../../enterprise/include/class/Aws.cloud.php:446
-msgid "Amazon RDS"
-msgstr "Amazon RDS"
-
-#: ../../enterprise/include/class/Aws.cloud.php:451
-msgid "S3 Buckets"
-msgstr "S3 Buckets"
-
-#: ../../enterprise/include/class/Aws.cloud.php:510
-msgid "Discovery task name"
-msgstr "Nombre de la tarea de discovery"
-
-#: ../../enterprise/include/class/Aws.cloud.php:614
-msgid "Total cost"
-msgstr "Coste total"
-
-#: ../../enterprise/include/class/Aws.cloud.php:631
-msgid "Cost by region"
-msgstr "Coste por región"
-
-#: ../../enterprise/include/class/Aws.cloud.php:645
-msgid "Cost interval"
-msgstr "Intervalo de coste"
-
-#: ../../enterprise/include/class/Aws.cloud.php:773
-msgid "Select EC2 instances"
-msgstr "Seleccionar instancias EC2"
-
-#: ../../enterprise/include/class/Aws.cloud.php:789
-msgid "Storage"
-msgstr "Almacenamiento"
-
-#: ../../enterprise/include/class/Aws.cloud.php:799
-msgid "Elastic IP Adresses"
-msgstr "Direcciones IP elásticas"
-
-#: ../../enterprise/include/class/Aws.cloud.php:886
-#: ../../enterprise/include/class/Aws.S3.php:166
-#: ../../include/class/CustomNetScan.class.php:134
-msgid "This task has been already defined. Please edit it or create a new one."
-msgstr "La tarea ya se ha definido. Edite o cree una nueva."
-
-#: ../../enterprise/include/class/Aws.cloud.php:982
-msgid "You must select at least one RDS instance."
-msgstr "Debe seleccionar al menos una instancia RDS"
-
-#: ../../enterprise/include/class/Aws.cloud.php:987
-msgid ""
-"You cannot monitor RDS instances from different types. Please define several "
-"tasks for several types."
-msgstr ""
-"No puede monitorizar las instancias RDS desde diferentes tipos. Defina varias "
-"tareas para diferentes tipos."
-
-#: ../../enterprise/include/class/Aws.cloud.php:994
-msgid "Discovery.Cloud.AWS.RDS"
-msgstr "Discovery.Cloud.AWS.RDS"
-
-#: ../../enterprise/include/class/Aws.cloud.php:1160
-msgid "RDS"
-msgstr "RDS"
-
-#: ../../enterprise/include/class/Aws.cloud.php:1165
-msgid "DB monitoring"
-msgstr "Monitorización de base de datos"
-
-#: ../../enterprise/include/class/Aws.cloud.php:1175
-msgid "AWS RDS"
-msgstr "AWS RDS"
-
-#: ../../enterprise/include/class/Aws.cloud.php:1249
-msgid "Global DB User"
-msgstr "Usuario de la base de datos global"
-
-#: ../../enterprise/include/class/Aws.cloud.php:1259
-msgid "Global DB password"
-msgstr "Contraseña de la base de datos global"
-
-#: ../../enterprise/include/class/Aws.cloud.php:1349
-msgid "Select RDS instances"
-msgstr "Seleccionar instancias RDS"
-
-#: ../../enterprise/include/class/Aws.cloud.php:1652
-msgid "Invalid group"
-msgstr "Grupo no válido"
-
-#: ../../enterprise/include/class/Aws.cloud.php:1710
-msgid "Cannot update the recon database"
-msgstr "No se ha podido actualizar la base de datos de reconocimiento"
-
-#: ../../enterprise/include/class/Aws.cloud.php:1732
-msgid "Engine not supported"
-msgstr "Motor no compatible"
-
-#: ../../enterprise/include/class/DatabaseHA.class.php:137
-#: ../../enterprise/include/class/DatabaseHA.class.php:241
-#: ../../enterprise/include/class/DatabaseHA.class.php:423
-#: ../../enterprise/include/class/DatabaseHA.class.php:433
-#: ../../enterprise/include/class/DatabaseHA.class.php:525
-#: ../../enterprise/include/class/DatabaseHA.class.php:534
-#: ../../enterprise/include/class/DatabaseHA.class.php:651
-#: ../../enterprise/include/class/DatabaseHA.class.php:660
-msgid "Error, please refresh page"
-msgstr "Error, vuelva a cargar la página"
-
-#: ../../enterprise/include/class/DatabaseHA.class.php:142
-msgid "Action already scheduled"
-msgstr "Acción ya programada"
-
-#: ../../enterprise/include/class/DatabaseHA.class.php:148
-msgid "Unavailable action"
-msgstr "Acción no disponible"
-
-#: ../../enterprise/include/class/DatabaseHA.class.php:160
-msgid "A node is already being synchronized, please wait until process finish."
-msgstr "Ya se está sincronizando un nodo, espere hasta que el proceso termine."
-
-#: ../../enterprise/include/class/DatabaseHA.class.php:172
-msgid "Please verify resync configuration is set before use this feature."
-msgstr ""
-"Compruebe la configuración de resincronización antes de usar esta funcionalidad"
-
-#: ../../enterprise/include/class/DatabaseHA.class.php:220
-msgid "Uninitialized"
-msgstr "No iniciado"
-
-#: ../../enterprise/include/class/DatabaseHA.class.php:476
-#: ../../enterprise/include/class/DatabaseHA.class.php:575
-#: ../../enterprise/include/class/DatabaseHA.class.php:1251
-msgid "This is not a cluster node"
-msgstr "Este no es un nodo de cluster"
-
-#: ../../enterprise/include/class/DatabaseHA.class.php:480
-#: ../../enterprise/include/class/DatabaseHA.class.php:1255
-msgid "Failed to retrieve master position"
-msgstr "No se ha podido obtener la posición de maestro"
-
-#: ../../enterprise/include/class/DatabaseHA.class.php:494
-#: ../../enterprise/include/class/DatabaseHA.class.php:1268
-msgid "Failed to retrieve slave information"
-msgstr "No se ha podido obtener la información de esclavo"
-
-#: ../../enterprise/include/class/DatabaseHA.class.php:611
-msgid "Master"
-msgstr "Principal"
-
-#: ../../enterprise/include/class/DatabaseHA.class.php:614
-msgid "Slave"
-msgstr "Esclavo"
-
-#: ../../enterprise/include/class/DatabaseHA.class.php:823
-#: ../../enterprise/include/class/DatabaseHA.class.php:1006
-msgid "DB Replication user"
-msgstr "Usuario de replicación de la base de datos"
-
-#: ../../enterprise/include/class/DatabaseHA.class.php:824
-msgid "User configured for Master to Slaves replication"
-msgstr "Usuario configurado para replicación Maestro - Esclavo"
-
-#: ../../enterprise/include/class/DatabaseHA.class.php:834
-#: ../../enterprise/include/class/DatabaseHA.class.php:1015
-msgid "DB Replication user password"
-msgstr "Contraseña de usuario de replicación de la base de datos"
-
-#: ../../enterprise/include/class/DatabaseHA.class.php:835
-msgid "User password"
-msgstr "Contraseña de usuario"
-
-#: ../../enterprise/include/class/DatabaseHA.class.php:845
-msgid "Resync data dir"
-msgstr "Resincronizar directorio de datos"
-
-#: ../../enterprise/include/class/DatabaseHA.class.php:846
-msgid "Directory where mysql files are stored (must be common to all nodes)"
-msgstr ""
-"Directorio donde se guardan los archivos MySQL (debe ser común a todos los "
-"nodos)"
-
-#: ../../enterprise/include/class/DatabaseHA.class.php:856
-msgid "Resync tmp directory"
-msgstr "Resincronizar directorio tmp"
-
-#: ../../enterprise/include/class/DatabaseHA.class.php:857
-msgid ""
-"Temporary working directory where to store the backups that will be used to re-"
-"synchronize a slave node"
-msgstr ""
-"Directorio funcional temporal donde guardar las copias de seguridad que se "
-"utilizarán para re-sincronizar un módulo esclavo"
-
-#: ../../enterprise/include/class/DatabaseHA.class.php:867
-msgid "Resync MySQL user"
-msgstr "Resincronizar usuario MySQL"
-
-#: ../../enterprise/include/class/DatabaseHA.class.php:868
-msgid ""
-"User of the system that owns the MySQL files, necessary for the adjustment of "
-"permissions (by default mysql)"
-msgstr ""
-"Usuario del sistema que posee los archivos MySQL, necesario para el ajuste de "
-"los permisos (por defecto MySQL)"
-
-#: ../../enterprise/include/class/DatabaseHA.class.php:878
-msgid "Resync MySQL group"
-msgstr "Resincronizar grupo MySQL"
-
-#: ../../enterprise/include/class/DatabaseHA.class.php:879
-msgid ""
-"System group that owns the MySQL files, needed for permissions setting "
-"(default mysql)"
-msgstr ""
-"Grupo del sistema que posee los archivos MySQL, necesario para los ajustes de "
-"permisos (MySQL por defecto)"
-
-#: ../../enterprise/include/class/DatabaseHA.class.php:940
-msgid "IP or FQDN"
-msgstr "IP o FQDN"
-
-#: ../../enterprise/include/class/DatabaseHA.class.php:941
-msgid ""
-"This action only registers an already configured node. This action does not "
-"configure any resource."
-msgstr ""
-"Esta acción solo registra un nodo ya configurado. Esta acción no configura "
-"ninguna fuente."
-
-#: ../../enterprise/include/class/DatabaseHA.class.php:951
-msgid "Cluster node label (pcs)"
-msgstr "Etiqueta de nodo de cluster (pcs)"
-
-#: ../../enterprise/include/class/DatabaseHA.class.php:959
-#: ../../enterprise/meta/advanced/metasetup.consoles.php:602
-msgid "DB port"
-msgstr "Puerto de la BD"
-
-#: ../../enterprise/include/class/DatabaseHA.class.php:967
-msgid "SSH user"
-msgstr "Usuario SSH"
-
-#: ../../enterprise/include/class/DatabaseHA.class.php:975
-msgid "SSH port"
-msgstr "Puerto SSH"
-
-#: ../../enterprise/include/class/DatabaseHA.class.php:983
-msgid "SSH key"
-msgstr "Clave SSH"
-
-#: ../../enterprise/include/class/DatabaseHA.class.php:991
-msgid "SSH public key"
-msgstr "Clave SSH pública"
-
-#: ../../enterprise/include/class/DatabaseHA.class.php:1043
-msgid "Missed parameters"
-msgstr "Parámetros omitidos"
-
-#: ../../enterprise/include/class/DatabaseHA.class.php:1090
-msgid "You must specify a host"
-msgstr "Especifique un host"
-
-#: ../../enterprise/include/class/DatabaseHA.class.php:1092
-msgid "DB port must be a positive integer"
-msgstr "El puerto de la base de datos debe ser un valor positivo"
-
-#: ../../enterprise/include/class/DatabaseHA.class.php:1094
-msgid "SSH port must be a positive integer"
-msgstr "El puerto SSH debe ser un integrante positivo"
-
-#: ../../enterprise/include/class/DatabaseHA.class.php:1096
-msgid "You must specify a SSH user"
-msgstr "Especifique el usuario SSH"
-
-#: ../../enterprise/include/class/DatabaseHA.class.php:1098
-msgid "You must specify a replication DB user"
-msgstr "Especifique un usuario de replicación de base de datos"
-
-#: ../../enterprise/include/class/DatabaseHA.class.php:1100
-msgid "You must specify a replication DB pass"
-msgstr "Especifique una contraseña de replicación de base de datos"
-
-#: ../../enterprise/include/class/DatabaseHA.class.php:1102
-msgid "You must specify a public key path"
-msgstr "Especifique una ruta de clave pública"
-
-#: ../../enterprise/include/class/DatabaseHA.class.php:1104
-msgid "You must specify a private path"
-msgstr "Especifique una ruta privada"
-
-#: ../../enterprise/include/class/DatabaseHA.class.php:1154
-msgid "Successfully "
-msgstr "Correctamente "
-
-#: ../../enterprise/include/class/CommandCenter.class.php:146
-msgid "Command center"
-msgstr "command center"
-
-#: ../../enterprise/include/class/CommandCenter.class.php:160
-msgid "Could not be start merge process, no nodes in the metaconsole "
-msgstr ""
-"No se pudo iniciar el proceso de combinación, no hay nodos en la metaconsola "
-
-#: ../../enterprise/include/class/CommandCenter.class.php:169
-#: ../../enterprise/include/functions_groups.php:49
-msgid "Metaconsole"
-msgstr "Metaconsola"
-
-#: ../../enterprise/include/class/CommandCenter.class.php:265
-#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:903
-msgid ""
-"Memory limit is recomended to be unlimited in metaconsole, please set to -1 in "
-"php.ini."
-msgstr ""
-"Se recomienda que el límite de memoria sea ilimitado en la metaconsola, "
-"establezca en -1 en php.ini."
-
-#: ../../enterprise/include/class/CommandCenter.class.php:312
-msgid "Nodes priority order"
-msgstr "Orden de prioridad de los nodos"
-
-#: ../../enterprise/include/class/CommandCenter.class.php:329
-#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2926
-msgid "Sort elements"
-msgstr "Clasificar elementos"
-
-#: ../../enterprise/include/class/CommandCenter.class.php:366
-msgid "Unify databases"
-msgstr "Unificar bases de datos"
-
-#: ../../enterprise/include/class/CommandCenter.class.php:383
-msgid "merge process"
-msgstr "proceso de combinación"
-
-#: ../../enterprise/include/class/CommandCenter.class.php:391
-msgid "Process detail of node"
-msgstr "Detalle del proceso del nodo"
-
-#: ../../enterprise/include/class/CommandCenter.class.php:392
-msgid "Errors of node"
-msgstr "Errores de nodo"
-
-#: ../../enterprise/include/class/CommandCenter.class.php:421
-msgid "Unexpected end of process"
-msgstr "Fin inesperado del proceso"
-
-#: ../../enterprise/include/class/CommandCenter.class.php:422
-msgid "Please retry"
-msgstr "Por favor reinténtelo"
-
-#: ../../enterprise/include/class/CommandCenter.class.php:443
-msgid "Critical issues while merging"
-msgstr "Problemas críticos durante la fusión"
-
-#: ../../enterprise/include/class/CommandCenter.class.php:444
-msgid "Please restore your backups"
-msgstr "Restaure sus copias de seguridad"
-
-#: ../../enterprise/include/class/CommandCenter.class.php:452
-#: ../../include/functions_ui.php:6553
-msgid "Query"
-msgstr "Consulta"
-
-#: ../../enterprise/include/class/CommandCenter.class.php:453
-#: ../../include/lib/Dashboard/Widgets/service_view.php:247
-msgid "Table"
-msgstr "Tabla"
-
-#: ../../enterprise/include/class/CommandCenter.class.php:454
-#: ../../include/class/Heatmap.class.php:743
-msgid "Info"
-msgstr "Información"
-
-#: ../../enterprise/include/class/CommandCenter.class.php:455
-#: ../../enterprise/include/class/CommandCenter.class.php:1119
-msgid "Error message"
-msgstr "Mensaje de error"
-
-#: ../../enterprise/include/class/CommandCenter.class.php:457
-msgid "Process details"
-msgstr "Detalles del proceso"
-
-#: ../../enterprise/include/class/CommandCenter.class.php:458
-msgid ""
-"System is not unified yet, something is wrong, please troubleshoot the errors "
-"and retry the merge process. Your data have not been modified."
-msgstr ""
-"El sistema aún no está unificado, algo está mal, solucione los errores y "
-"vuelva a intentar el proceso de fusión. Sus datos no han sido modificados."
-
-#: ../../enterprise/include/class/CommandCenter.class.php:459
-msgid "Errors while merging"
-msgstr "Errores al fusionar"
-
-#: ../../enterprise/include/class/CommandCenter.class.php:460
-msgid "The process has been completed correctly"
-msgstr "El proceso se ha completado correctamente"
-
-#: ../../enterprise/include/class/CommandCenter.class.php:461
-#: ../../enterprise/include/functions_login.php:145
-#: ../../include/class/Diagnostics.class.php:1818
-msgid "Successfully"
-msgstr "Correcto"
-
-#: ../../enterprise/include/class/CommandCenter.class.php:462
-msgid "System is merging your environment, please wait"
-msgstr "El sistema está fusionando su entorno, espere"
-
-#: ../../enterprise/include/class/CommandCenter.class.php:464
-#: ../../enterprise/include/class/CommandCenter.class.php:884
-msgid "Initialice merge"
-msgstr "Inicializar fusión"
-
-#: ../../enterprise/include/class/CommandCenter.class.php:465
-#: ../../enterprise/include/class/CommandCenter.class.php:890
-msgid "Apply merge"
-msgstr "Aplicar combinación"
-
-#: ../../enterprise/include/class/CommandCenter.class.php:466
-msgid "Finished merge"
-msgstr "Fusión finalizada"
-
-#: ../../enterprise/include/class/CommandCenter.class.php:467
-#: ../../enterprise/include/class/CommandCenter.class.php:896
-msgid "Restore merge"
-msgstr "Restaurar combinación"
-
-#: ../../enterprise/include/class/CommandCenter.class.php:468
-#: ../../enterprise/views/ncm/agent/details.php:90
-#: ../../include/functions_db.php:1918
-#: ../../include/functions_reporting_html.php:3997
-#: ../../include/functions_reporting_html.php:4144
-#: ../../include/functions_reporting_html.php:4485
-#: ../../include/functions_reporting_html.php:4496
-#: ../../extensions/api_checker.php:219 ../../extensions/api_checker.php:226
-msgid "Result"
-msgstr "Resultado"
-
-#: ../../enterprise/include/class/CommandCenter.class.php:469
-msgid "Succesfully"
-msgstr "Éxito"
-
-#: ../../enterprise/include/class/CommandCenter.class.php:470
-msgid "Pending operations"
-msgstr "Operaciones pendientes"
-
-#: ../../enterprise/include/class/CommandCenter.class.php:472
-msgid "Error. Synchronization aborted. Backup restored"
-msgstr "Error. Sincronización anulada. Copia de seguridad restaurada"
-
-#: ../../enterprise/include/class/CommandCenter.class.php:542
-#: ../../enterprise/include/class/CommandCenter.class.php:548
-msgid "Update priority nodes"
-msgstr "Actualizar nodos prioritarios"
-
-#: ../../enterprise/include/class/CommandCenter.class.php:543
-msgid "Successfully updated priority order nodes"
-msgstr "Nodos de orden de prioridad actualizados correctamente"
-
-#: ../../enterprise/include/class/CommandCenter.class.php:549
-msgid "Could not be updated priority order nodes"
-msgstr "No se pudieron actualizar los nodos de orden de prioridad"
-
-#: ../../enterprise/include/class/CommandCenter.class.php:565
-msgid ""
-"By unifying databases all information across your infrastructure will be "
-"merged to gain integrity"
-msgstr ""
-"Al unificar las bases de datos, toda la información de su infraestructura se "
-"fusionará para obtener integridad."
-
-#: ../../enterprise/include/class/CommandCenter.class.php:578
-#: ../../enterprise/include/class/CommandCenter.class.php:588
-msgid "Blocked"
-msgstr "Bloqueado"
-
-#: ../../enterprise/include/class/CommandCenter.class.php:579
-msgid "This process already running"
-msgstr "Este proceso ya se está ejecutando"
-
-#: ../../enterprise/include/class/CommandCenter.class.php:589
-msgid "You cannot start a new merge because system is merging events data."
-msgstr ""
-"No puede iniciar una nueva combinación porque el sistema está combinando datos "
-"de eventos."
-
-#: ../../enterprise/include/class/CommandCenter.class.php:597
-msgid "Press OK button to start the process"
-msgstr "Presione el botón OK para iniciar el proceso"
-
-#: ../../enterprise/include/class/CommandCenter.class.php:599
-msgid ""
-"There are backups from a previous merging process, are you sure you want to "
-"overwrite those backups? Press OK button to ignore this message and start the "
-"process."
-msgstr ""
-"Hay copias de seguridad de un proceso de fusión anterior, ¿está seguro de que "
-"desea sobrescribir esas copias de seguridad? Presione el botón OK para ignorar "
-"este mensaje e iniciar el proceso."
-
-#: ../../enterprise/include/class/CommandCenter.class.php:647
-msgid "System is merging events..."
-msgstr "El sistema está fusionando eventos..."
-
-#: ../../enterprise/include/class/CommandCenter.class.php:654
-msgid "Already working..."
-msgstr "Ya funcionando..."
-
-#: ../../enterprise/include/class/CommandCenter.class.php:760
-#: ../../enterprise/include/class/CommandCenter.class.php:761
-msgid "Initilize"
-msgstr "Initilizar"
-
-#: ../../enterprise/include/class/CommandCenter.class.php:866
-#: ../../enterprise/include/class/CommandCenter.class.php:1054
-msgid "Waiting"
-msgstr "Esperando"
-
-#: ../../enterprise/include/class/CommandCenter.class.php:873
-msgid "Process detail"
-msgstr "Detalle del proceso"
-
-#: ../../enterprise/include/class/CommandCenter.class.php:878
-msgid "Display errors"
-msgstr "Mostrar errores"
-
-#: ../../enterprise/include/class/CommandCenter.class.php:909
-msgid "There are no nodes to do the merge process."
-msgstr "No hay nodos para realizar el proceso de combinación."
-
-#: ../../enterprise/include/class/CommandCenter.class.php:1017
-msgid "merge events"
-msgstr "eventos de combinación"
-
-#: ../../enterprise/include/class/CommandCenter.class.php:1060
-msgid "Retry process"
-msgstr "Reintentar proceso"
-
-#: ../../enterprise/include/class/CommandCenter.class.php:1065
-msgid "Display events errors"
-msgstr "Mostrar errores de eventos"
-
-#: ../../enterprise/include/class/CommandCenter.class.php:1078
-msgid "Events History"
-msgstr "Historial de eventos"
-
-#: ../../enterprise/include/class/CommandCenter.class.php:1140
-msgid "merge process events"
-msgstr "eventos del proceso de combinación"
-
-#: ../../enterprise/include/class/AlertCorrelationManager.class.php:473
-#: ../../enterprise/include/class/AlertCorrelationManager.class.php:532
-#: ../../enterprise/include/class/AlertCorrelationManager.class.php:591
-msgid "Alert not found."
-msgstr "Alerta no encontrada."
-
-#: ../../enterprise/include/class/AlertCorrelationManager.class.php:480
-msgid "Invalid json data"
-msgstr "Datos json no válidos"
-
-#: ../../enterprise/include/class/AlertCorrelationManager.class.php:575
-msgid "Rules updated."
-msgstr "Reglas actualizadas."
-
-#: ../../enterprise/include/class/AlertCorrelationManager.class.php:578
-msgid "JSON decoding error. Please call support."
-msgstr "Error de decodificación JSON. Póngase en contacto con soporte."
-
-#: ../../enterprise/include/class/AlertCorrelationManager.class.php:897
-msgid "Pass"
-msgstr "Pasar"
-
-#: ../../enterprise/include/class/AlertCorrelationManager.class.php:898
-msgid "Drop"
-msgstr "Soltar"
-
-#: ../../enterprise/include/class/AlertCorrelationManager.class.php:924
-msgid "Module alert"
-msgstr "Alerta de módulos"
-
-#: ../../enterprise/include/class/AlertCorrelationManager.class.php:944
-#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2018
-msgid "Load from template"
-msgstr "Cargar desde la plantilla"
-
-#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1003
-msgid "Execute alert"
-msgstr "Ejecutar alerta"
-
-#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1006
-#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3457
-msgid "from"
-msgstr "desde"
-
-#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1026
-#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3475
-msgid "times in"
-msgstr "veces en"
-
-#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1036
-msgid "threshold"
-msgstr "umbral"
-
-#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1046
-msgid "Rule evaluation mode"
-msgstr "Modo de evaluación de reglas"
-
-#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1046
-msgid "Pass - All alerts are evaluated. Drop - It stops when 1 alert matches."
-msgstr ""
-"Pass - Se analizan todas las alertas. Drop - Para cuando coincide 1 alerta."
-
-#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1063
-msgid "Grouped by"
-msgstr "Agrupados por"
-
-#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1202
-msgid ""
-"The templates shown are only for correlative alerts, event alert (legacy) will "
-"be deprecated in the future"
-msgstr ""
-"Las plantillas mostradas solo sirven para las alertas correlativas, la alerta "
-"de eventos (heredada) se despreciará en el futuro"
-
-#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1212
-msgid "Available items"
-msgstr "Elementos disponibles"
-
-#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1213
-msgid "Block"
-msgstr "Bloquear"
-
-#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1249
-#: ../../enterprise/include/ajax/log_viewer.ajax.php:75
-#: ../../enterprise/meta/event/custom_events.php:160
-msgid "Fields"
-msgstr "Campos"
-
-#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1261
-#: ../../enterprise/include/lib/AlertCorrelation.class.php:1044
-msgid "Log content"
-msgstr "Contenido de log"
-
-#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1266
-#: ../../enterprise/include/lib/AlertCorrelation.class.php:1047
-msgid "Log source"
-msgstr "Fuente de log"
-
-#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1271
-#: ../../enterprise/include/lib/AlertCorrelation.class.php:1050
-msgid "Log agent"
-msgstr "Agente de log"
-
-#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1329
-#: ../../enterprise/include/lib/AlertCorrelation.class.php:1056
-msgid "Event content"
-msgstr "Contenido de evento"
-
-#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1334
-#: ../../enterprise/include/lib/AlertCorrelation.class.php:1053
-msgid "Event user comment"
-msgstr "Comentario de usuario de evento"
-
-#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1339
-#: ../../enterprise/include/lib/AlertCorrelation.class.php:1059
-msgid "Event agent"
-msgstr "Agente de evento"
-
-#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1344
-#: ../../enterprise/include/lib/AlertCorrelation.class.php:1062
-msgid "Event module"
-msgstr "Módulo de evento"
-
-#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1349
-#: ../../enterprise/include/lib/AlertCorrelation.class.php:1065
-msgid "Event module alerts"
-msgstr "Alertas de módulos de eventos"
-
-#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1354
-#: ../../enterprise/include/lib/AlertCorrelation.class.php:1068
-msgid "Event group"
-msgstr "Grupo de eventos"
-
-#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1360
-msgid "Event group (recursive)"
-msgstr "Recursividad del grupo de eventos"
-
-#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1366
-#: ../../enterprise/include/lib/AlertCorrelation.class.php:1074
-msgid "Event severity"
-msgstr "Prioridad de evento"
-
-#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1371
-#: ../../enterprise/include/lib/AlertCorrelation.class.php:1077
-msgid "Event tag"
-msgstr "Etiqueta de evento"
-
-#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1376
-#: ../../enterprise/include/lib/AlertCorrelation.class.php:1080
-msgid "Event user"
-msgstr "Usuario de evento"
-
-#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1406
-msgid "Operators"
-msgstr "Operadores"
-
-#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1411
-#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1455
-#: ../../enterprise/include/lib/AlertCorrelation.class.php:1393
-msgid "greater than"
-msgstr "%1$s debe ser mayor que %2$d (incluido)"
-
-#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1416
-#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1459
-#: ../../enterprise/include/lib/AlertCorrelation.class.php:1397
-#: ../../enterprise/include/lib/AlertCorrelation.class.php:1405
-msgid "less than"
-msgstr "menor que"
-
-#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1421
-#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1463
-#: ../../enterprise/include/lib/AlertCorrelation.class.php:1401
-msgid "greater or equal than"
-msgstr "Mayor o igual (>=)"
-
-#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1426
-#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1467
-msgid "less or equal than"
-msgstr "menor o igual (<=)"
-
-#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1431
-#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1471
-#: ../../enterprise/include/lib/AlertCorrelation.class.php:1409
-msgid "is equal"
-msgstr "es igual"
-
-#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1436
-#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1475
-#: ../../enterprise/include/lib/AlertCorrelation.class.php:1413
-msgid "is different"
-msgstr "es diferente "
-
-#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1441
-#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1479
-#: ../../enterprise/include/lib/AlertCorrelation.class.php:1417
-msgid "is like (regex)"
-msgstr "es como (regex)"
-
-#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1446
-#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1483
-#: ../../enterprise/include/lib/AlertCorrelation.class.php:1421
-msgid "is not like (regex)"
-msgstr "no es como (regex)"
-
-#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1516
-msgid "Modifiers"
-msgstr "Modificadores"
-
-#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1521
-msgid "within an interval (seconds)"
-msgstr "dentro de un intervalo (segundos)"
-
-#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1526
-msgid "repeated at least"
-msgstr "tiene al menos"
-
-#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1566
-msgid "Matches on both true"
-msgstr "Coincidencias en ambos verdaderos"
-
-#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1572
-msgid "Matches when any is false"
-msgstr "Coincidencias cuando alguna es falsa"
-
-#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1578
-msgid "Matches on any true"
-msgstr "Coincidencias en cualquier verdadero"
-
-#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1584
-msgid "Matches when both are false"
-msgstr "Coincidencias cuando ambas son falsas"
-
-#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1590
-msgid "Matches when only one is true"
-msgstr "Coincidencias cuando solo una es verdadera"
-
-#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1596
-msgid "Matches when both are either true or false"
-msgstr "Coincidencias cuando ambas son verdaderas o falsas"
-
-#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1632
-msgid "Rule definition"
-msgstr "Definición de reglas"
-
-#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1921
-msgid "Remove rule"
-msgstr "Eliminar regla"
-
-#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1932
-msgid "Remove item"
-msgstr "Eliminar elemento"
-
-#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1943
-#: ../../enterprise/include/functions_HA_cluster.php:64
-msgid "Cleanup"
-msgstr "Limpiar"
-
-#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2111
-#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2113
-msgid "Triggering Condition"
-msgstr "Términos de disparo"
-
-#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2409
-msgid "There are no defined actions for this alert"
-msgstr "No hay acciones definidas para esta alerta"
-
-#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2480
-#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3454
-msgid "Number of alerts match"
-msgstr "Número de coincidencias de alerta"
-
-#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2575
-msgid ""
-"Select the desired action and mode to view the Triggering fields for this "
-"action"
-msgstr ""
-"Seleccione la acción y el modo deseados para ver los campos de disparo de esta "
-"acción"
-
-#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2661
-msgid "Alerts fields"
-msgstr "Campos de alertas"
-
-#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2663
-msgid "Triggering fields configured in Alerts"
-msgstr "Campos de disparo configurados en Alertas"
-
-#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2722
-msgid "Correlated alerts"
-msgstr "Alertas correladas"
-
-#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2746
-msgid "Alert succesfully deleted"
-msgstr "Alerta eliminada correctamente"
-
-#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2755
-msgid "Alerts validated"
-msgstr "Alerta validada"
-
-#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2758
-msgid "Failed to process validation"
-msgstr "No se ha podido efectuar la validación"
-
-#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2903
-msgid "Matched"
-msgstr "Coincidencias"
-
-#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2971
-#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3357
-msgid "No associated actions"
-msgstr "No hay acciones asociadas"
-
-#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3005
-#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3021
-msgid "Add Actions"
-msgstr "Añadir acciones"
-
-#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3076
-msgid "There are no defined correlated alerts"
-msgstr "No hay alertas correlacionadas definidas"
-
-#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3212
-msgid "Are you sure you want to disable the alert"
-msgstr "¿Está seguro de que quiere desactivar la alerta?"
-
-#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3219
-msgid "Are you sure you want to enable the alert"
-msgstr "¿Está seguro de que quiere activar la alerta?"
-
-#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3226
-msgid "Disabled Alert"
-msgstr "Alerta desactivada"
-
-#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3268
-msgid "Are you sure you want to standby the alert"
-msgstr "¿Está seguro de que quiere poner la alerta en suspensión?"
-
-#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3275
-msgid "Are you sure you want to activate the alert"
-msgstr "¿Está seguro de que quiere activar la alerta?"
-
-#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3283
-msgid "Standby Alert"
-msgstr "Alerta en suspensión"
-
-#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3355
-msgid "Delete Actions"
-msgstr "Eliminar acciones"
-
-#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3534
-msgid "Successfully added action"
-msgstr "Acción añadida correctamente"
-
-#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3572
-msgid "Successfully delete action"
-msgstr "Acción eliminada correctamente"
-
-#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3985
-msgid "Choosetime"
-msgstr "Elegir hora"
-
-#: ../../enterprise/include/class/AlertCorrelationManager.class.php:4208
-msgid "Drop Here"
-msgstr "Caer aquí"
-
-#: ../../enterprise/include/class/CSVImportAgents.class.php:121
-msgid "The CSV file must have the fields in the following order:"
-msgstr "El archivo CSV debe tener los campos en el siguiente orden:"
-
-#: ../../enterprise/include/class/CSVImportAgents.class.php:122
-msgid "Agent alias, IP address, OS id, Interval, Group id, Description"
-msgstr ""
-"Alias de agente, dirección IP, ID del SO, Intervalo, ID de grupo, Descripción"
-
-#: ../../enterprise/include/class/CSVImportAgents.class.php:177
-msgid "Alias as name"
-msgstr "Alias como nombre"
-
-#: ../../enterprise/include/class/CSVImportAgents.class.php:196
-#: ../../enterprise/extensions/csv_import_group/main.php:105
-#: ../../include/functions_filemanager.php:853
-msgid "Go"
-msgstr "Ir"
-
-#: ../../enterprise/include/class/CSVImportAgents.class.php:242
-msgid "No data or wrong separator"
-msgstr "No hay datos o separador incorrecto"
-
-#: ../../enterprise/include/class/CSVImportAgents.class.php:248
-#, php-format
-msgid "Agent %s duplicated."
-msgstr "Agente %s duplicado"
-
-#: ../../enterprise/include/class/CSVImportAgents.class.php:255
-#, php-format
-msgid "Id group %s doesn't exist in %s"
-msgstr "El ID de grupo %s no existe en %s"
-
-#: ../../enterprise/include/class/CSVImportAgents.class.php:263
-msgid "General failure."
-msgstr "Fallo general."
-
-#: ../../enterprise/include/class/CSVImportAgents.class.php:284
-msgid "No input file detected"
-msgstr "N se ha detectado archivo de entrada"
-
-#: ../../enterprise/include/class/CSVImportAgents.class.php:373
-msgid "Agent processed successfully"
-msgstr "Agente procesado correctamente"
-
-#: ../../enterprise/include/class/CSVImportAgents.class.php:379
-msgid "Some errors while processing CSV."
-msgstr "Algunos errores al procesar CSV."
-
-#: ../../enterprise/include/class/CSVImportAgents.class.php:382
-msgid "All agents processed correctly"
-msgstr "Todos los agentes procesados correctamente"
-
-#: ../../enterprise/include/class/CSVImportAgents.class.php:389
-#, php-format
-msgid "Line %s"
-msgstr "Línea %s"
-
-#: ../../enterprise/include/class/DB2.app.php:165
-msgid ""
-"This DB2 configuration has been already defined. Please edit it or create a "
-"new one."
-msgstr "Esta configuración DB2 ya se ha definido. Edite o cree una nueva."
-
-#: ../../enterprise/include/class/DB2.app.php:207
-msgid "You must provide a valid DB2 server IP or FQDN."
-msgstr "Debe proveer una IP de servidor DB2 válida o FQDN."
-
-#: ../../enterprise/include/class/DB2.app.php:219
-msgid "Discovery.Application.DB2"
-msgstr "Discovery.Aplicación.DB2"
-
-#: ../../enterprise/include/class/DB2.app.php:270
-msgid "Failed to find discovery DB2 task."
-msgstr "No se ha podido encontrar la tarea DB2 de discovery."
-
-#: ../../enterprise/include/class/DB2.app.php:486
-msgid "DB2 target strings"
-msgstr "Cadenas objetivo de DB2"
-
-#: ../../enterprise/include/class/DB2.app.php:487
-msgid ""
-"SERVER:PORT/DATABASE, comma separated or line by line, as many targets as you "
-"need."
-msgstr ""
-"SERVIDOR:PUERTO/BASE DE DATOS, separados por coma o línea por línea, tantos "
-"objetivos como desee."
-
-#: ../../enterprise/include/class/DB2.app.php:487
-#: ../../enterprise/include/class/Oracle.app.php:494
-#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:488
-msgid "Use # symbol to comment a line."
-msgstr "Use el símbolo # para comentar una línea."
-
-#: ../../enterprise/include/class/DB2.app.php:635
-#: ../../enterprise/include/class/Oracle.app.php:642
-#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:636
-msgid ""
-"Defines a target agent where this task will store data detected, if you have "
-"defined multiple targets, define a comma separated list of names here or leave "
-"in blank to use target as name."
-msgstr ""
-"Define un objetivo de agente donde la tarea almacenará los datos detectados. "
-"Si ha definido varios objetivos, defina una lista de nombres separados por "
-"coma o déjelo en blanco para usar el objetivo como nombre."
-
-#: ../../enterprise/include/class/DB2.app.php:673
-msgid "Get database summary"
-msgstr "Obtener resumen de base de datos"
-
-#: ../../enterprise/include/class/DB2.app.php:689
-msgid "Check transactional log utilization"
-msgstr "Comprobar uso de logs transaccionales"
-
-#: ../../enterprise/include/class/DB2.app.php:705
-msgid "Get number of connections"
-msgstr "Obtener número de conexiones"
-
-#: ../../enterprise/include/class/DB2.app.php:721
-msgid "Check DB size"
-msgstr "Comprobar tamaño de la base de datos"
-
-#: ../../enterprise/include/class/AgentRepository.class.php:262
-#: ../../enterprise/include/class/DeploymentCenter.class.php:956
-msgid "Deploying"
-msgstr "Desplegar"
-
-#: ../../enterprise/include/class/AgentRepository.class.php:336
-msgid "Time in seconds before deployment is cancelled."
-msgstr "Tiempo en segundos antes de que se cancele la implementación."
-
-#: ../../enterprise/include/class/AgentRepository.class.php:354
-#: ../../enterprise/include/class/AgentRepository.class.php:631
-#: ../../enterprise/include/class/AgentRepository.class.php:681
-#: ../../enterprise/include/class/DeploymentCenter.class.php:757
-#: ../../enterprise/include/class/DeploymentCenter.class.php:825
-#: ../../enterprise/include/class/DeploymentCenter.class.php:1301
-#: ../../enterprise/include/class/DeploymentCenter.class.php:1397
-msgid "Architecture"
-msgstr "Arquitectura"
-
-#: ../../enterprise/include/class/AgentRepository.class.php:375
-msgid "Transfer timeout"
-msgstr "Tiempo de espera de transferencia"
-
-#: ../../enterprise/include/class/AgentRepository.class.php:383
-msgid "Installation file"
-msgstr "Archivo de instalación"
-
-#: ../../enterprise/include/class/AgentRepository.class.php:423
-msgid "Agent version is required"
-msgstr "Se requiere versión de agente"
-
-#: ../../enterprise/include/class/AgentRepository.class.php:429
-#: ../../enterprise/include/class/DeploymentCenter.class.php:245
-msgid "Target OS is required"
-msgstr "Se requiere SO de destion"
-
-#: ../../enterprise/include/class/AgentRepository.class.php:431
-#: ../../enterprise/include/class/DeploymentCenter.class.php:247
-msgid "Target architecture is required"
-msgstr "Se requiere arquitectura de destino"
-
-#: ../../enterprise/include/class/AgentRepository.class.php:461
-#, php-format
-msgid "Invalid installation file for %s"
-msgstr "Archivo de instalación para %s no válido"
-
-#: ../../enterprise/include/class/AgentRepository.class.php:490
-msgid "Installation files not modified"
-msgstr "Archivos de instalación no modificados"
-
-#: ../../enterprise/include/class/AgentRepository.class.php:509
-msgid "Installation files updated"
-msgstr "Archivos de instalación actualizados"
-
-#: ../../enterprise/include/class/AgentRepository.class.php:512
-#: ../../enterprise/meta/include/functions_wizard_meta.php:2330
-msgid "Agent successfully updated"
-msgstr "Agente actualizado correctamente"
-
-#: ../../enterprise/include/class/AgentRepository.class.php:516
-msgid "You must provide installation files to create a new entry."
-msgstr "Añada archivos de instalación para crear una nueva entrada."
-
-#: ../../enterprise/include/class/AgentRepository.class.php:537
-msgid "This agent has been already defined."
-msgstr "El agente ya ha sido definido."
-
-#: ../../enterprise/include/class/AgentRepository.class.php:553
-msgid "Agent successfully registered and uploaded"
-msgstr "Agente registrado y actualizado correctamente"
-
-#: ../../enterprise/include/class/AgentRepository.class.php:591
-#: ../../enterprise/include/class/DeploymentCenter.class.php:335
-msgid "Target successfully deleted"
-msgstr "Objetivo borrado correctamente"
-
-#: ../../enterprise/include/class/AgentRepository.class.php:633
-msgid "Uploaded by"
-msgstr "Subido por"
-
-#: ../../enterprise/include/class/AgentRepository.class.php:634
-msgid "Upload date"
-msgstr "Fecha de subida"
-
-#: ../../enterprise/include/class/AgentRepository.class.php:713
-msgid "Add new software"
-msgstr "Añadir nuevo software"
-
-#: ../../enterprise/include/class/AgentRepository.class.php:900
-msgid "Add new Software agent"
-msgstr "Añadir nuevo agente software"
-
-#: ../../enterprise/include/class/AgentRepository.class.php:903
-msgid "Update Software agent"
-msgstr "Actualizar agente software"
-
-#: ../../enterprise/include/class/DeploymentCenter.class.php:235
-msgid "IP address is required"
-msgstr "Se requiere dirección IP"
-
-#: ../../enterprise/include/class/DeploymentCenter.class.php:249
-msgid "Credentials to use are required"
-msgstr "Se requieren credenciales de uso"
-
-#: ../../enterprise/include/class/DeploymentCenter.class.php:251
-msgid "Desired agent version is required"
-msgstr "Se requiere la versión de agente deseada"
-
-#: ../../enterprise/include/class/DeploymentCenter.class.php:262
-msgid "Target already defined."
-msgstr "Objetivo ya definido."
-
-#: ../../enterprise/include/class/DeploymentCenter.class.php:288
-msgid "Target successfully added"
-msgstr "Objetivo añadido correctamente"
-
-#: ../../enterprise/include/class/DeploymentCenter.class.php:309
-msgid "Target successfully updated"
-msgstr "Objetivo actualizado correctamente"
-
-#: ../../enterprise/include/class/DeploymentCenter.class.php:352
-msgid "You should specify a Discovery server"
-msgstr "Especifique un servidor Discovery"
-
-#: ../../enterprise/include/class/DeploymentCenter.class.php:354
-msgid "You must select some targets to deploy"
-msgstr "Seleccione algunos de los objetivos a desplegar"
-
-#: ../../enterprise/include/class/DeploymentCenter.class.php:384
-#: ../../enterprise/include/class/DeploymentCenter.class.php:1095
-msgid "Failed to schedule"
-msgstr "No se ha podido programar"
-
-#: ../../enterprise/include/class/DeploymentCenter.class.php:399
-msgid "Deploy scheduled"
-msgstr "Despliegue programado"
-
-#: ../../enterprise/include/class/DeploymentCenter.class.php:425
-msgid "CSV file is needed"
-msgstr "Se necesita archivo CSV"
-
-#: ../../enterprise/include/class/DeploymentCenter.class.php:480
-#, php-format
-msgid ""
-"Credential identifier %s does not exist, please, add it to your repository %s "
-msgstr ""
-"El identificador de credenciales %s no existe, añádalo a su repositorio %s "
-
-#: ../../enterprise/include/class/DeploymentCenter.class.php:488
-#, php-format
-msgid "OS %s does not math any existing, please, add it to OS list %s"
-msgstr ""
-"El sistema operativo %s no coincide con ninguno existente, añádalo a la lista "
-"de sistemas operativos %s"
-
-#: ../../enterprise/include/class/DeploymentCenter.class.php:496
-#, php-format
-msgid ""
-"Sofware agent version with id %s does not exist, please, add it to your "
-"repository %s "
-msgstr ""
-"La versión del agente software con el ID %s no existe, añádalo al repositorio "
-"%s "
-
-#: ../../enterprise/include/class/DeploymentCenter.class.php:518
-msgid "No target could be added. "
-msgstr "No se ha podido añadir ningún objetivo. "
-
-#: ../../enterprise/include/class/DeploymentCenter.class.php:621
-msgid "Deployment center"
-msgstr "Centro de despliegue"
-
-#: ../../enterprise/include/class/DeploymentCenter.class.php:637
-msgid "There are no targets defined yet, please add some."
-msgstr "Aún no hay objetivos definidos, añada alguno."
-
-#: ../../enterprise/include/class/DeploymentCenter.class.php:644
-#, php-format
-msgid "Please set %s to make software available for targets."
-msgstr "Programe %s para que el software esté disponible para los objetivos."
-
-#: ../../enterprise/include/class/DeploymentCenter.class.php:656
-#, php-format
-msgid "There are no software agents in your repository yet, please add some %s."
-msgstr "No hay agentes software en el repositorio, añada algunos %s."
-
-#: ../../enterprise/include/class/DeploymentCenter.class.php:675
-#: ../../enterprise/include/class/DeploymentCenter.class.php:1751
-msgid "Scan for targets"
-msgstr "Escaneo de objetivos"
-
-#: ../../enterprise/include/class/DeploymentCenter.class.php:684
-msgid "Add target"
-msgstr "Añadir destino"
-
-#: ../../enterprise/include/class/DeploymentCenter.class.php:693
-msgid "Load targets"
-msgstr "Cargar destinos"
-
-#: ../../enterprise/include/class/DeploymentCenter.class.php:758
-msgid "Key identifier"
-msgstr "Identificador de clave"
-
-#: ../../enterprise/include/class/DeploymentCenter.class.php:759
-#: ../../enterprise/include/class/DeploymentCenter.class.php:1222
-#: ../../enterprise/include/class/DeploymentCenter.class.php:1359
-msgid "Target server IP"
-msgstr "IP del servidor de destino"
-
-#: ../../enterprise/include/class/DeploymentCenter.class.php:760
-msgid "Agent version installed"
-msgstr "Verison de agente instalada"
-
-#: ../../enterprise/include/class/DeploymentCenter.class.php:761
-msgid "Agent version desired"
-msgstr "Versión de agente deseada"
-
-#: ../../enterprise/include/class/DeploymentCenter.class.php:762
-msgid "Installation date"
-msgstr "Fecha de instalación"
-
-#: ../../enterprise/include/class/DeploymentCenter.class.php:763
-msgid "Last error"
-msgstr "Último error"
-
-#: ../../enterprise/include/class/DeploymentCenter.class.php:811
-msgid "Server IP"
-msgstr "IP del servidor"
-
-#: ../../enterprise/include/class/DeploymentCenter.class.php:836
-msgid "State"
-msgstr "Estado"
-
-#: ../../enterprise/include/class/DeploymentCenter.class.php:868
-msgid "Deploy agent to targets"
-msgstr "Desplegar agentes a destinos"
-
-#: ../../enterprise/include/class/DeploymentCenter.class.php:1042
-msgid "You must define a network."
-msgstr "Defina una red."
-
-#: ../../enterprise/include/class/DeploymentCenter.class.php:1044
-msgid "You must select at least one credential to test."
-msgstr "Seleccione al menos un credencial a probar."
-
-#: ../../enterprise/include/class/DeploymentCenter.class.php:1046
-msgid "You must select a Discovery server."
-msgstr "Seleccione un servidor Discovery."
-
-#: ../../enterprise/include/class/DeploymentCenter.class.php:1048
-msgid "Please select a desired software agent version."
-msgstr "Seleccione la version deseada del agente software."
-
-#: ../../enterprise/include/class/DeploymentCenter.class.php:1050
-msgid "Please specify a server IP."
-msgstr "Especifique una IP de servidor."
-
-#: ../../enterprise/include/class/DeploymentCenter.class.php:1070
-#: ../../enterprise/include/class/DeploymentCenter.class.php:1103
-msgid "Discovery task list"
-msgstr "Lista de tareas Discovery"
-
-#: ../../enterprise/include/class/DeploymentCenter.class.php:1069
-#, php-format
-msgid "This network is already being scanned. See progress at %s"
-msgstr "Ya se está escaneando la red. Ver progreso en %s"
-
-#: ../../enterprise/include/class/DeploymentCenter.class.php:1102
-#, php-format
-msgid "Network scheduled to be scanned. You can see progress at %s"
-msgstr "Escaneo de red programado. Puede ver el progreso en %s."
-
-#: ../../enterprise/include/class/DeploymentCenter.class.php:1150
-msgid "Network/mask"
-msgstr "Red/Máscara"
-
-#: ../../enterprise/include/class/DeploymentCenter.class.php:1159
-msgid "Scan from"
-msgstr "Escanear desde"
-
-#: ../../enterprise/include/class/DeploymentCenter.class.php:1212
-#: ../../enterprise/include/class/DeploymentCenter.class.php:1349
-msgid "Desired agent version"
-msgstr "Versión de agente deseada"
-
-#: ../../enterprise/include/class/DeploymentCenter.class.php:1396
-msgid "CSV format"
-msgstr "Formato CVS"
-
-#: ../../enterprise/include/class/DeploymentCenter.class.php:1397
-msgid "Target agent version"
-msgstr "Version de agente objetivo"
-
-#: ../../enterprise/include/class/DeploymentCenter.class.php:1397
-msgid "Target server ip"
-msgstr "IP del servidor objetivo"
-
-#: ../../enterprise/include/class/DeploymentCenter.class.php:1416
-msgid "CSV file"
-msgstr "Archivo CSV"
-
-#: ../../enterprise/include/class/DeploymentCenter.class.php:1476
-msgid "Select desired targets to be deployed"
-msgstr "Seleccionar objetivos a desplegar"
-
-#: ../../enterprise/include/class/DeploymentCenter.class.php:1479
-msgid "Deploy from"
-msgstr "Desplegar desde"
-
-#: ../../enterprise/include/class/DeploymentCenter.class.php:1494
-msgid "Available targets"
-msgstr "Objetivos disponibles"
-
-#: ../../enterprise/include/class/DeploymentCenter.class.php:1670
-msgid "Add new target"
-msgstr "Añadir nuevo objetivo"
-
-#: ../../enterprise/include/class/DeploymentCenter.class.php:1673
-msgid "Update target"
-msgstr "Actualizar objetivo"
-
-#: ../../enterprise/include/class/DeploymentCenter.class.php:1719
-msgid "Import targets from CSV"
-msgstr "Importar objetivos desde CSV"
-
-#: ../../enterprise/include/class/DeploymentCenter.class.php:1786
-msgid "Select targets"
-msgstr "Seleccionar objetivos"
-
-#: ../../enterprise/include/class/DeploymentCenter.class.php:1787
-#: ../../enterprise/include/functions_HA_cluster.php:46
-msgid "Deploy"
-msgstr "Desplegar"
-
-#: ../../enterprise/include/class/LogSource.class.php:455
-msgid "Source is required"
-msgstr "Fuente requerida"
-
-#: ../../enterprise/include/class/LogSource.class.php:562
-msgid "id cannot be empty"
-msgstr "El Id no puede estar vacío"
-
-#: ../../enterprise/include/class/LogSource.class.php:567
-#: ../../include/class/CredentialStore.class.php:747
-msgid "Not allowed"
-msgstr "No permitido"
-
-#: ../../enterprise/include/class/LogSource.class.php:611
-#: ../../include/class/CredentialStore.class.php:786
-msgid "How to configure encryption."
-msgstr "Como configurar el cifrado."
-
-#: ../../enterprise/include/class/LogSource.class.php:610
-#, php-format
-msgid "Log monitoring is disabled. %s"
-msgstr "La monitorización de logs está desactivada. %s"
-
-#: ../../enterprise/include/class/LogSource.class.php:680
-#: ../../enterprise/include/class/LogSource.class.php:846
-msgid "Add log source"
-msgstr "Añadir fuente de logs"
-
-#: ../../enterprise/include/class/LogSource.class.php:715
-msgid "Source name"
-msgstr "Nombre de la fuente"
-
-#: ../../enterprise/include/class/LogSource.class.php:850
-msgid "Update log source"
-msgstr "Actualizar fuente del log"
-
-#: ../../enterprise/include/class/Aws.S3.php:60
-msgid "Aws S3"
-msgstr "Aws S3"
-
-#: ../../enterprise/include/class/Aws.S3.php:214
-msgid "You must select something."
-msgstr "Debe seleccionar algo."
-
-#: ../../enterprise/include/class/Aws.S3.php:236
-msgid "Discovery.Cloud.AWS.S3"
-msgstr "Discovery.Cloud.AWS.S3"
-
-#: ../../enterprise/include/class/Aws.S3.php:294
-msgid "Unknown task"
-msgstr "Tarea desconocida"
-
-#: ../../enterprise/include/class/Aws.S3.php:313
-msgid "Unknown section."
-msgstr "Sección desconocida."
-
-#: ../../enterprise/include/class/Aws.S3.php:339
-msgid "S3"
-msgstr "S3"
-
-#: ../../enterprise/include/class/Aws.S3.php:344
-msgid "Bucket monitoring"
-msgstr "Monitorización de buckets."
-
-#: ../../enterprise/include/class/Aws.S3.php:454
-msgid "No buckets found."
-msgstr "No se han encontrado buckets."
-
-#: ../../enterprise/include/class/Aws.S3.php:598
-msgid "Select Buckets to be monitored"
-msgstr "Seleccionar buckets a monitorizar"
-
-#: ../../enterprise/include/class/Aws.S3.php:633
-msgid "Monitor bucket size"
-msgstr "Monitorizar tamaño de bucket"
-
-#: ../../enterprise/include/class/Aws.S3.php:643
-msgid "Monitor bucket total items"
-msgstr "Monitorizar elementos totales de bucket"
-
-#: ../../enterprise/include/class/Oracle.app.php:172
-msgid ""
-"This Oracle configuration has been already defined. Please edit it or create a "
-"new one."
-msgstr "Esta configuración Oracle ya se ha definido. Edítela o cree una nueva."
-
-#: ../../enterprise/include/class/Oracle.app.php:214
-msgid "You must provide a valid Oracle server IP or FQDN."
-msgstr "Añada una IP de servidor o FQDN de Oracle válidos."
-
-#: ../../enterprise/include/class/Oracle.app.php:226
-msgid "Discovery.Application.Oracle"
-msgstr "Discovery.Application.Oracle"
-
-#: ../../enterprise/include/class/Oracle.app.php:277
-msgid "Failed to find discovery Oracle task."
-msgstr "No se ha podido encontrar la tarea discovery Oracle."
-
-#: ../../enterprise/include/class/Oracle.app.php:493
-msgid "Oracle target strings"
-msgstr "Cadenas objetivo de Oracle"
-
-#: ../../enterprise/include/class/Oracle.app.php:494
-msgid ""
-"SERVER:PORT/SID, comma separated or line by line, as many targets as you need."
-msgstr ""
-"SERVER:PORT/SID, separados por coma o línea por línea, tantos objetivos como "
-"precise."
-
-#: ../../enterprise/include/class/Oracle.app.php:728
-msgid "Calculate fragmentation ratio"
-msgstr "Calcular la tasa de fragmentación"
-
-#: ../../enterprise/include/class/Oracle.app.php:744
-msgid "Monitor tablespaces"
-msgstr "Espacio de tablas del monitor"
-
-#: ../../enterprise/include/class/Google.cloud.php:147
-#: ../../include/class/CredentialStore.class.php:949
-msgid "Google"
-msgstr "Google"
-
-#: ../../enterprise/include/class/Google.cloud.php:301
-msgid "Compute Engine"
-msgstr "Compute Engine"
-
-#: ../../enterprise/include/class/Google.cloud.php:877
-msgid "This options only applies to zone (region) agents."
-msgstr "Esta opción solo aplica a los agentes de la zona (región)."
-
-#: ../../enterprise/include/class/Google.cloud.php:890
-msgid "Scan and general monitoring"
-msgstr "Escanear y monitorización general"
-
-#: ../../enterprise/include/class/Google.cloud.php:903
-msgid "CPU performance summary"
-msgstr "Resumen del funcionamiento de la CPU"
-
-#: ../../enterprise/include/class/ManageBackups.class.php:106
-#, php-format
-msgid "%s database backup manager"
-msgstr "%s de copia de seguridad de la base de datos"
-
-#: ../../enterprise/include/class/ManageBackups.class.php:117
-#: ../../include/class/AuditLog.class.php:145
-msgid "Admin Tools"
-msgstr "Herramientas de administrador"
-
-#: ../../enterprise/include/class/ManageBackups.class.php:129
-#, php-format
-msgid ""
-"To schedule a periodic (or one-time) backup task you can do it through %s."
-msgstr ""
-"Para programar una tarea de copia de seguridad periódica (o única), puede "
-"hacerlo a través de %s."
-
-#: ../../enterprise/include/class/ManageBackups.class.php:189
-msgid "Path backups"
-msgstr "Ruta de la copia de seguridad"
-
-#: ../../enterprise/include/class/ManageBackups.class.php:302
-#: ../../enterprise/views/ncm/agent/details.php:372
-#: ../../extensions/files_repo/files_repo_list.php:123
-msgid "Download"
-msgstr "Descargar"
-
-#: ../../enterprise/include/class/ManageBackups.class.php:314
-msgid "Rollback to this backup"
-msgstr "Revertir a esta copia de seguridad"
-
-#: ../../enterprise/include/class/ManageBackups.class.php:323
-msgid "Lost"
-msgstr "Perdido"
-
-#: ../../enterprise/include/class/ManageBackups.class.php:330
-msgid "In Progress"
-msgstr "En Progreso"
-
-#: ../../enterprise/include/class/ManageBackups.class.php:361
-msgid "The backup was successfully deleted"
-msgstr "La copia de seguridad se ha eliminado correctamente"
-
-#: ../../enterprise/include/class/ManageBackups.class.php:367
-msgid "Missed id parameter"
-msgstr "Parámetro de identificación omitido"
-
-#: ../../enterprise/include/class/ManageBackups.class.php:386
-msgid "Something was wrong with the rollback action."
-msgstr "Algo andaba mal con la acción de reversión."
-
-#: ../../enterprise/include/class/ManageBackups.class.php:389
-msgid "Missed id parameter."
-msgstr "Parámetro id omitido."
-
-#: ../../enterprise/include/class/ManageBackups.class.php:424
-#: ../../include/class/AuditLog.class.php:376
-msgid "There is no additional information to display"
-msgstr "No hay información adicional que mostrar"
-
-#: ../../enterprise/include/class/ManageBackups.class.php:437
-msgid ""
-"Are you sure you want to delete this database backup file? Once deleted you "
-"will not be able to recover it."
-msgstr ""
-"¿Está seguro de que desea eliminar este archivo de copia de seguridad de la "
-"base de datos? Una vez eliminado no podrás recuperarlo."
-
-#: ../../enterprise/include/class/ManageBackups.class.php:439
-msgid "Do you like perform a database restoration?"
-msgstr "¿Desea realizar una restauración de base de datos?"
-
-#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:171
-msgid ""
-"This Microsoft SQL Server configuration has been already defined. Please edit "
-"it or create a new one."
-msgstr ""
-"La configuración del servidor Microsoft SQL ya se ha definido. Edite o cree "
-"una nueva."
-
-#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:213
-msgid "You must provide a valid Microsoft SQL Server server IP or FQDN."
-msgstr "Debe añadir una IP de servidor Microsoft SQL o FQDN."
-
-#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:277
-msgid "Failed to find discovery Microsoft SQL Server task."
-msgstr ""
-"No se ha podido encontrar la tarea de descubrimiento del servidor Microsoft "
-"SQL."
-
-#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:487
-msgid "Microsoft SQL Server targets"
-msgstr "Objetivos del servidor Microsoft SQL"
-
-#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:488
-msgid ""
-"SERVER:PORT\\INSTANCE, comma separated or line by line, as many targets as you "
-"need."
-msgstr ""
-"SERVIDOR:PUERTO\\INSTANCIA, separados por coma o línea por línea, tantos "
-"objetivos como necesite."
-
-#: ../../enterprise/include/lib/Metaconsole/Node.php:145
-msgid "auth error."
-msgstr "Error de autenticación."
-
-#: ../../enterprise/include/lib/Metaconsole/Node.php:149
-msgid "connection error."
-msgstr "error de conexión."
-
-#: ../../enterprise/include/lib/Metaconsole/Node.php:153
-msgid "could not resolve the host."
-msgstr "no se ha podido resolver el host."
-
-#: ../../enterprise/include/lib/Metaconsole/Node.php:157
-#: ../../enterprise/include/lib/Metaconsole/Node.php:206
-#: ../../enterprise/include/lib/Metaconsole/Node.php:253
-#: ../../enterprise/include/lib/Metaconsole/Node.php:509
-msgid "unknown error."
-msgstr "error desconocido."
-
-#: ../../enterprise/include/lib/Metaconsole/Node.php:194
-msgid "missing credentials."
-msgstr "faltan credenciales."
-
-#: ../../enterprise/include/lib/Metaconsole/Node.php:198
-msgid "cannot connect to host."
-msgstr "no se puede conectar con el host."
-
-#: ../../enterprise/include/lib/Metaconsole/Node.php:202
-msgid "database does not exist."
-msgstr "la base de datos no existe."
-
-#: ../../enterprise/include/lib/Metaconsole/Node.php:245
-msgid "failed to connect to node database."
-msgstr "no se ha podido conectar con la base de datos del nodo."
-
-#: ../../enterprise/include/lib/Metaconsole/Node.php:249
-msgid "MR version mistmatch."
-msgstr "No coincide con la versión MR."
-
-#: ../../enterprise/include/lib/Metaconsole/Node.php:288
-#, php-format
-msgid "last event replication: %s"
-msgstr "última replicación de evento: %s"
-
-#: ../../enterprise/include/lib/Metaconsole/Node.php:294
-msgid "server connection failed"
-msgstr "Error en la conexión con el servidor"
-
-#: ../../enterprise/include/lib/Metaconsole/Node.php:298
-#: ../../enterprise/include/lib/Metaconsole/Node.php:344
-#: ../../enterprise/include/lib/Metaconsole/Node.php:405
-msgid "unknown error"
-msgstr "error desconocido"
-
-#: ../../enterprise/include/lib/Metaconsole/Node.php:310
-msgid "Last event replication"
-msgstr "Replicación del último evento"
-
-#: ../../enterprise/include/lib/Metaconsole/Node.php:340
-msgid "agent cache failed"
-msgstr "error en el caché de agente"
-
-#: ../../enterprise/include/lib/Metaconsole/Node.php:393
-msgid "node is not recognized as metaconsole node."
-msgstr "el nodo no se reconoce como nodo de Metaconsola."
-
-#: ../../enterprise/include/lib/Metaconsole/Node.php:397
-msgid "node license missmatch."
-msgstr "el nodo de la licencia no coincide."
-
-#: ../../enterprise/include/lib/Metaconsole/Node.php:401
-msgid "cannot connect to node"
-msgstr "no se puede conectar con el nodo"
-
-#: ../../enterprise/include/lib/Metaconsole/Node.php:433
-msgid "Database is up to date with this Metaconsole"
-msgstr "La base de datos está actualizada con esta metaconsola"
-
-#: ../../enterprise/include/lib/Metaconsole/Node.php:443
-msgid "Node not found"
-msgstr "Nodo no encontrado"
-
-#: ../../enterprise/include/lib/Metaconsole/Node.php:448
-#, php-format
-msgid ""
-"There are %d queries pending to be applied, click in the eye to see results"
-msgstr ""
-"Hay %d consultas pendientes de aplicar, haga clic en el ojo para ver los "
-"resultados"
-
-#: ../../enterprise/include/lib/Metaconsole/Node.php:457
-msgid "Database synchronization state and pending tasks"
-msgstr "Estado de sincronización de la base de datos y tareas pendientes"
-
-#: ../../enterprise/include/lib/Metaconsole/Node.php:592
-msgid "Operation and table"
-msgstr "Funcionamiento y tabla"
-
-#: ../../enterprise/include/lib/Metaconsole/Node.php:707
-#, php-format
-msgid ""
-"Failed synchronizing %s, please check node PHP configuration issues and "
-"collection max sizes"
-msgstr ""
-"Error al sincronizar %s, verifique los problemas de configuración de PHP del "
-"nodo y los tamaños máximos de colección"
-
-#: ../../enterprise/include/lib/Metaconsole/Node.php:1232
-msgid ""
-"The elimination of this node will lead to the suppression of its agents from "
-"metaconsole and all the configuration assigned to them. "
-msgstr ""
-"La eliminación de este nodo conllevará la supresión de sus agentes de la "
-"metaconsola y de toda la configuración que se les asigne. "
-
-#: ../../enterprise/include/lib/Metaconsole/Node.php:1236
-msgid "The rules for this node may stop working. "
-msgstr "Y las reglas para este nodo podrían dejar de funcionar. "
-
-#: ../../enterprise/include/lib/Metaconsole/Node.php:1240
-msgid ""
-"The deleted node will lose its license, and you must license it manually "
-"again. "
-msgstr ""
-"El nodo eliminado perderá su licencia y debe volver a licenciarlo manualmente. "
-
-#: ../../enterprise/include/lib/Metaconsole/Node.php:1414
-#: ../../enterprise/include/lib/Metaconsole/Synchronizer.php:399
-#: ../../enterprise/include/lib/Service.php:397
-#: ../../enterprise/include/lib/Service.php:734
-#: ../../enterprise/include/lib/Service.php:879
-#: ../../enterprise/include/lib/ServiceElement.php:390
-#: ../../enterprise/include/lib/ServiceElement.php:916
-#: ../../enterprise/include/lib/ServiceElement.php:958
-#: ../../enterprise/include/lib/ServiceElement.php:1000
-#: ../../enterprise/include/lib/ServiceElement.php:1106
-#: ../../enterprise/include/lib/ServiceElement.php:1148
-#: ../../include/lib/Agent.php:349 ../../include/lib/Module.php:1165
-#: ../../include/lib/Entity.php:303
-#, php-format
-msgid "Cannot connect to node %d"
-msgstr "No se puede conectar al nodo %d"
-
-#: ../../enterprise/include/lib/Metaconsole/Node.php:1747
-#, php-format
-msgid "Failed to overwrite node data: %s"
-msgstr "Error al sobrescribir los datos del nodo: %s"
-
-#: ../../enterprise/include/lib/Metaconsole/Node.php:1765
-#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2929
-msgid "Final step"
-msgstr "Paso final"
-
-#: ../../enterprise/include/lib/Metaconsole/Node.php:1766
-#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2930
-msgid "Database merged"
-msgstr "Base de datos combinada"
-
-#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:171
-msgid "Activating node"
-msgstr "Activación del nodo"
-
-#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:205
-#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:361
-#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:673
-#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:800
-#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1071
-#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1165
-#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1517
-#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1814
-#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2183
-#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3107
-#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3388
-#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3542
-#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3617
-#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3922
-#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:4147
-msgid "Connect node"
-msgstr "Conectar nodo"
-
-#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:580
-msgid "Create table tmerge_error"
-msgstr "Creando tabla tmerge_error"
-
-#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:606
-msgid "Create table tmerge_steps"
-msgstr "Creando tabla tmerge_steps"
-
-#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:631
-msgid "Create table tmerge_queries"
-msgstr "Creando tabla tmerge_queries"
-
-#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:772
-#, php-format
-msgid "%s console"
-msgstr "%s consola"
-
-#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:777
-msgid "Check cron task"
-msgstr "Comprobar tarea cron"
-
-#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:778
-msgid "Please login into this node before using this feature"
-msgstr "Inicie sesión en este nodo antes de utilizar esta función"
-
-#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:860
-msgid "memory_limit current value"
-msgstr "valor actual de memory_limit "
-
-#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:867
-msgid ""
-"Check current packages, all nodes and metaconsole, are not in the same version"
-msgstr ""
-"Compruebe que los paquetes actuales, todos los nodos y la metaconsola, no "
-"están en la misma versión"
-
-#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:879
-msgid "Check Minor release, All nodes and metaconsole, do not have the same mr"
-msgstr ""
-"Comprobar versión menor, Todos los nodos y metaconsola, no tienen el mismo mr"
-
-#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:891
-msgid "Max size collection, all nodes and metaconsole, are not equal"
-msgstr ""
-"Colección de tamaño máximo, todos los nodos y metaconsola, no son iguales"
-
-#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:916
-#, php-format
-msgid ""
-"Post max size, nodes cannot be smaller than the size of the metaconsole %s"
-msgstr ""
-"Tamaño máximo posterior, los nodos no pueden ser más pequeños que el tamaño de "
-"la metaconsola %s"
-
-#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:931
-#, php-format
-msgid ""
-"Upload max file size, nodes cannot be smaller than the size of the metaconsole "
-"%s"
-msgstr ""
-"Upload max file size: los nodos no pueden ser más pequeños que el tamaño de la "
-"metaconsola %s"
-
-#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:993
-#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1009
-msgid "Problems with the backup directory"
-msgstr "Problemas con el directorio de copia de seguridad"
-
-#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:994
-msgid "Cannot create \"merge_backups\" folder in attachment directory"
-msgstr ""
-"No se puede crear la carpeta \"merge_backups\" en el directorio de datos "
-"adjuntos"
-
-#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1010
-msgid "The \"merge_backpus\" directory does not have the correct permissions"
-msgstr "El directorio \"merge_backpus\" no tiene los permisos correctos"
-
-#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1020
-msgid "Extension ZIP"
-msgstr "Extensión ZIP"
-
-#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1021
-msgid "The ZIP extension is not loaded, please install this dependency"
-msgstr "La extensión ZIP no está cargada, instale esta dependencia"
-
-#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1122
-msgid "Inserts backups, disable foreings keys, exceptions in tmerge_queries"
-msgstr ""
-"Inserta copias de seguridad, deshabilita claves de antecesos, excepciones en "
-"tmerge_queries"
-
-#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1148
-msgid "Resets foreing keys and exceptions and ends the merge preparation process"
-msgstr ""
-"Restablece las claves previas y las excepciones y finaliza el proceso de "
-"preparación de la combinación"
-
-#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1195
-msgid "Enable exceptions in tmerge_queries"
-msgstr "Habilitar excepciones en tmerge_queries"
-
-#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1219
-msgid "Enable foreing keys in tmerge_queries"
-msgstr "Habilitar claves de anteo en tmerge_queries"
-
-#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1498
-#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1783
-msgid "Preparation of all nodes for the table merge process"
-msgstr "Preparación de todos los nodos para el proceso de combinación de tablas"
-
-#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1574
-msgid "This table does not have the id"
-msgstr "Esta tabla no tiene el identificador"
-
-#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1575
-msgid "Prepare merge request"
-msgstr "Preparar la solicitud de combinación"
-
-#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1901
-msgid "Inserts truncate, autoincrement and inserts in tmerge_queries"
-msgstr "Inserta truncado, autoincremento e inserto en tmerge_queries"
-
-#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2071
-msgid "Inserts updates in tmerge_queries"
-msgstr "Inserta actualizaciones en tmerge_queries"
-
-#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2108
-msgid "Merging collections files"
-msgstr "Fusión de archivos de colecciones"
-
-#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2164
-#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2310
-#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2481
-#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3094
-#, php-format
-msgid "Api call: %s"
-msgstr "Llamada api: %s"
-
-#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2222
-#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2223
-msgid "Problems while backing up collections from: "
-msgstr "Problemas al realizar copias de seguridad de colecciones de: "
-
-#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2240
-#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2244
-#, php-format
-msgid "Problems downloading collections from %s"
-msgstr "Problemas para descargar colecciones de %s"
-
-#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2256
-#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2260
-#, php-format
-msgid "Problems unzipping collection file from %s"
-msgstr "Problemas al descomprimir el archivo de recopilación de %s"
-
-#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2539
-msgid "Start phase merge"
-msgstr "Combinación de fases de inicio"
-
-#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2551
-msgid "Create backups"
-msgstr "Crear copia de seguridad"
-
-#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2619
-#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2620
-msgid "Problems creating the backup conf agents"
-msgstr "Problemas al crear los agentes conf de copia de seguridad"
-
-#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2630
-#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2868
-#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3238
-msgid "Class agent"
-msgstr "Clase de agente "
-
-#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2654
-#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2666
-msgid "Disable_foreing"
-msgstr "Disable_foreing"
-
-#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2678
-msgid "Truncate table"
-msgstr "Tabla truncada"
-
-#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2696
-msgid "Autoincrement"
-msgstr "Autoincremento"
-
-#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2708
-msgid "Inserts"
-msgstr "Postizos"
-
-#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2726
-msgid "Disabling constraints"
-msgstr "Desactivación de restricciones"
-
-#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2744
-msgid "Updates"
-msgstr "Actualizaciones"
-
-#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2767
-msgid "Restoring constraints"
-msgstr "Restauración de restricciones"
-
-#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2785
-msgid "Enable exceptions"
-msgstr "Habilitar excepciones"
-
-#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2803
-msgid "Enable foreings keys"
-msgstr "Habilitar claves foreign"
-
-#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2820
-#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2821
-msgid "Update conf agent policies"
-msgstr "Actualizar directivas de agente conf"
-
-#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2857
-#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2858
-msgid "Error updating agent conf"
-msgstr "Error al actualizar el agente conf"
-
-#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2879
-msgid "Synchronizing collections"
-msgstr "Sincronización de colecciones"
-
-#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2891
-#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2892
-msgid "Error synchronizing collections"
-msgstr "Error al sincronizar las colecciones al nodo %s"
-
-#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2988
-msgid "Problems unzipping collections at: "
-msgstr "Problemas para descomprimir colecciones en: "
-
-#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2989
-#, php-format
-msgid "File is not a valid zip file \"%s\""
-msgstr "El archivo no es un archivo zip válido \"%s\""
-
-#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3147
-msgid "Restoring database backup"
-msgstr "Restaurar una copia de seguridad"
-
-#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3173
-#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:4419
-msgid "Problems creating the backup"
-msgstr "Problemas al crear la copia de seguridad"
-
-#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3186
-msgid "Restore backups conf agents"
-msgstr "Restore backups conf agents"
-
-#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3223
-msgid "Problems restoring the backup conf agents"
-msgstr "Problemas para restaurar los agentes conf de copia de seguridad"
-
-#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3225
-#, php-format
-msgid "Agent \"%s\" with md5 file \"%s\""
-msgstr "Agente \"%s\" con el archivo md5 \"%s\""
-
-#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3251
-msgid "Restore collections"
-msgstr "Restaurar colecciones"
-
-#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3266
-#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3267
-msgid "Error Synch collections"
-msgstr "Colecciones de sincronización de errores"
-
-#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3484
-#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3724
-msgid "Insert info steps"
-msgstr "Insertar pasos de información"
-
-#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3649
-msgid "Node not ready"
-msgstr "Nodo no listo"
-
-#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3650
-msgid "Pending to be unified"
-msgstr "Pendiente de ser unificado"
-
-#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3889
-#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3894
-#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3946
-#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3951
-msgid "Initialize"
-msgstr "Iniciar"
-
-#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:4093
-msgid "Backup"
-msgstr "Copia de seguridad"
-
-#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:4124
-msgid "Applying"
-msgstr "Trabajo"
-
-#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:4350
-msgid "Error updating events"
-msgstr "Error al actualizar eventos"
-
-#: ../../enterprise/include/lib/Agent.php:99
-msgid " error, invalid agent."
-msgstr " error, agente no válido."
-
-#: ../../enterprise/include/lib/Agent.php:663
-#, php-format
-msgid "Log module \"%s\" does not exist"
-msgstr "El módulo de log \"%s\" no existe"
-
-#: ../../enterprise/include/lib/Agent.php:685
-#, php-format
-msgid "Plugin \"%s\" does not exist"
-msgstr "el plugin \"%s\" no existe"
-
-#: ../../enterprise/include/lib/Agent.php:817
-#, php-format
-msgid "Log module \"%s\" does not exist, %s skipped"
-msgstr "El módulo de log \"%s\" no existe, se ha omitido %s"
-
-#: ../../enterprise/include/lib/Agent.php:852
-#, php-format
-msgid "Plugin \"%s\" does not exist, %s skipped"
-msgstr "El plugin \"%s\" no existe, se ha omitido %s"
-
-#: ../../enterprise/include/lib/Agent.php:923
-#, php-format
-msgid "Log module %s already defined"
-msgstr "El módulo de log %s ya está definido"
-
-#: ../../enterprise/include/lib/Agent.php:940
-#, php-format
-msgid "Invalid module type %s"
-msgstr "Typo de módulo %s no válido"
-
-#: ../../enterprise/include/lib/Agent.php:970
-#, php-format
-msgid "Plugin %s already defined"
-msgstr "El plugin %s ya está definido"
-
-#: ../../enterprise/include/lib/Agent.php:984
-msgid "Invalid plugin definition"
-msgstr "Definición de plugin no válida"
-
-#: ../../enterprise/include/lib/NetworkManager/NetworkAgent.php:197
-msgid "No template assigned"
-msgstr "Sin plantilla asignada"
-
-#: ../../enterprise/include/lib/NetworkManager/NetworkAgent.php:227
-msgid "NCM Agent without template assigned."
-msgstr "Agente de NCM sin plantilla asignada."
-
-#: ../../enterprise/include/lib/NetworkManager/NetworkAgent.php:233
-msgid "Current selected template does not match vendor configured."
-msgstr ""
-"La plantilla seleccionada actual no coincide con la configuración del "
-"fabricante."
-
-#: ../../enterprise/include/lib/NetworkManager/NetworkAgent.php:240
-msgid "Current selected template does not match model configured."
-msgstr "La plantilla seleccionada actual no coincide con el modelo configurado."
-
-#: ../../enterprise/include/lib/NetworkManager/NetworkAgent.php:549
-#: ../../enterprise/include/lib/NetworkManager/NetworkAgent.php:579
-#, php-format
-msgid "No %s script available for this agent, check template %s"
-msgstr "No hay %s script disponible para este agente, compruebe la plantilla %s"
-
-#: ../../enterprise/include/lib/NetworkManager/Template.php:192
-msgid "Error linking script: "
-msgstr "Error al vincular el script: "
-
-#: ../../enterprise/include/lib/ClusterViewer/ClusterWizard.php:182
-msgid "Cluster already defined, please use another name."
-msgstr "Este clúster ya ha sido definido, use otro nombre."
-
-#: ../../enterprise/include/lib/ClusterViewer/ClusterWizard.php:779
-msgid "Cluster name"
-msgstr "Nombre del clúster"
-
-#: ../../enterprise/include/lib/ClusterViewer/ClusterWizard.php:780
-msgid ""
-"An agent with the same name of the cluster will be created, as well a special "
-"service with the same name"
-msgstr ""
-"Se creará un agente con el mismo nombre que el clúster y un servicio especial "
-"con el mismo nombre."
-
-#: ../../enterprise/include/lib/ClusterViewer/ClusterWizard.php:794
-msgid "Cluster type"
-msgstr "Tipo de clúster"
-
-#: ../../enterprise/include/lib/ClusterViewer/ClusterWizard.php:795
-msgid ""
-"AA is a cluster where all members are working. In AP cluster only master "
-"member is working"
-msgstr ""
-"AA es un clúster donde funcionan todos los miembros. En un clúster AP solo "
-"trabaja el miembro maestro."
-
-#: ../../enterprise/include/lib/ClusterViewer/ClusterWizard.php:803
-msgid "Active - Active"
-msgstr "Activo - Activo"
-
-#: ../../enterprise/include/lib/ClusterViewer/ClusterWizard.php:804
-msgid "Active - Pasive"
-msgstr "Activo - Pasivo"
-
-#: ../../enterprise/include/lib/ClusterViewer/ClusterWizard.php:824
-msgid "Target cluster agent will be stored under this group"
-msgstr "El agente del clúster objetivo se guardará bajo este grupo"
-
-#: ../../enterprise/include/lib/ClusterViewer/ClusterWizard.php:841
-msgid ""
-"You must select a Prediction Server to perform all cluster status calculations"
-msgstr ""
-"Debe seleccionar un Servidor de Predicción para llevar a cabo todos los "
-"cálculos de estado de clúster"
-
-#: ../../enterprise/include/lib/ClusterViewer/ClusterWizard.php:1016
-msgid "critical if"
-msgstr "crítico si"
-
-#: ../../enterprise/include/lib/ClusterViewer/ClusterWizard.php:1025
-#: ../../enterprise/include/lib/ClusterViewer/ClusterWizard.php:1048
-#, php-format
-msgid "% of balanced modules are down (equal or greater)."
-msgstr "% de los módulos equilibrados están caídos (igual o mayor)."
-
-#: ../../enterprise/include/lib/ClusterViewer/ClusterWizard.php:1063
-msgid "Please, set threholds for all active-active modules"
-msgstr "Ponga umbrales para todos los módulos activo-activo"
-
-#: ../../enterprise/include/lib/ClusterViewer/ClusterWizard.php:1167
-msgid "Please, check all active-passive modules critical for this cluster"
-msgstr "Compruebe todos los módulos activo-pasivo críticos para este clúster"
-
-#: ../../enterprise/include/lib/ClusterViewer/ClusterWizard.php:1169
-msgid ""
-"If a critical balanced module is going to critical status, then cluster will "
-"be critical."
-msgstr ""
-"Si un módulo equilibrado crítico pasa a estado crítico, el clúster entrará en "
-"estado crítico."
-
-#: ../../enterprise/include/lib/ClusterViewer/ClusterManager.php:224
-msgid "Cluster not found: "
-msgstr "Clúster no encontrado: "
-
-#: ../../enterprise/include/lib/ClusterViewer/ClusterManager.php:233
-msgid "Cluster agent not found: "
-msgstr "Agente del clúster no encontrado: "
-
-#: ../../enterprise/include/lib/ClusterViewer/ClusterManager.php:270
-#, php-format
-msgid "Error while deleting, reason: %s"
-msgstr "Error al eliminar, motivo: %s"
-
-#: ../../enterprise/include/lib/ClusterViewer/ClusterManager.php:278
-msgid "Cluster successfully deleted."
-msgstr "Clúster eliminado con éxito."
-
-#: ../../enterprise/include/lib/ClusterViewer/ClusterManager.php:304
-#, php-format
-msgid "Error while forcing, reason: %s"
-msgstr "Error al forzar, motivo: %s"
-
-#: ../../enterprise/include/lib/ClusterViewer/ClusterManager.php:312
-msgid "Cluster successfully forced."
-msgstr "Clúster forzado con éxito."
-
-#: ../../enterprise/include/lib/ClusterViewer/ClusterManager.php:568
-msgid "Not set"
-msgstr "No configurado"
-
-#: ../../enterprise/include/lib/ClusterViewer/ClusterManager.php:578
-msgid "Active-Active"
-msgstr "Activo-Activo"
-
-#: ../../enterprise/include/lib/ClusterViewer/ClusterManager.php:580
-msgid "Active-Passive"
-msgstr "Activo-Pasivo"
-
-#: ../../enterprise/include/lib/Core/SSH.php:163
-msgid "php-ssh2 not available"
-msgstr "php-ssh2 no disponible"
-
-#: ../../enterprise/include/lib/Core/SSH.php:184
-msgid "Failed to connect"
-msgstr "No se ha podido conectar"
-
-#: ../../enterprise/include/lib/Core/SSH.php:239
-#, php-format
-msgid "Unable to open public key file %s"
-msgstr "No se ha podido abrir el archivo de clave pública %s"
-
-#: ../../enterprise/include/lib/Core/SSH.php:257
-msgid "Failed to login to target"
-msgstr "No se ha podido iniciar sesión en el objetivo"
-
-#: ../../enterprise/include/lib/Policy.php:281
-#, php-format
-msgid "Invalid operation %s"
-msgstr "Operación no válida %s"
-
-#: ../../enterprise/include/lib/Policy.php:1168
-#, php-format
-msgid "Policy already defined: \"%s\""
-msgstr "La política ya se ha definido: \"%s\""
-
-#: ../../enterprise/include/lib/Policy.php:1193
-#: ../../enterprise/include/lib/Policy/Module.php:201
-#: ../../include/lib/Module.php:798
-#, php-format
-msgid "Module already exists: \"%s\""
-msgstr "El módulo ya existe: \"%s\""
-
-#: ../../enterprise/include/lib/Service.php:152
-msgid "Service module does not match pointed one"
-msgstr "El módulo de servicio no coincide con el señalado"
-
-#: ../../enterprise/include/lib/Service.php:158
-#, php-format
-msgid "Service module not found %s <br>"
-msgstr "Módulo de servicio no encontrado %s <br>"
-
-#: ../../enterprise/include/lib/Service.php:177
-msgid "Service module SLA not found"
-msgstr "No se encontró el SLA del módulo de servicio"
-
-#: ../../enterprise/include/lib/Service.php:183
-#, php-format
-msgid "SLA service module not found %s<br>"
-msgstr "Módulo de servicio SLA no encontrado %s<br>"
-
-#: ../../enterprise/include/lib/Service.php:202
-msgid "Service module SLA does not match pointed one"
-msgstr "El SLA del módulo de servicio no corresponde con el señalado"
-
-#: ../../enterprise/include/lib/Service.php:208
-#, php-format
-msgid "SLA service value module not found %s<br>"
-msgstr "Módulo del valor del servicio SLA no encontrado %s<br>"
-
-#: ../../enterprise/include/lib/Service.php:221
-#, php-format
-msgid "Service agent not found %s<br>"
-msgstr "Agente de servicio no encontrado %s<br>"
-
-#: ../../enterprise/include/lib/Service.php:232
-#, php-format
-msgid "Service children could not be fully retrieved: %s<br>"
-msgstr "Los hijos de servicios no se han podido extraer completamente: %s<br>"
-
-#: ../../enterprise/include/lib/Service.php:313
-msgid ""
-" Cannot switch from SMART to MANUAL if there are dynamic elements attached to "
-"the service. Please erase dynamic elements before change to MANUAL"
-msgstr ""
-" No se puede cambiar de INTELIGENTE a MANUAL si hay elementos dinámicos "
-"adjuntos al servicio. Elimine los elementos dinámicos antes de cambiar a MANUAL"
-
-#: ../../enterprise/include/lib/Service.php:771
-#, php-format
-msgid "Failed to update CPS for moduleValue for service %s: "
-msgstr "Error al actualizar CPS para moduleValue para el %s de servicio: "
-
-#: ../../enterprise/include/lib/Service.php:1421
-msgid "Error: id agent must be defined."
-msgstr "Error: defina el id de agente"
-
-#: ../../enterprise/include/lib/Service.php:1498
-msgid " error: Target agent does not exist."
-msgstr " error: el agente objetivo no existe."
-
-#: ../../enterprise/include/lib/RCMDFile.class.php:203
-msgid "You do not have grants to access this feature"
-msgstr "No tiene permisos de acceso a esta funcionalidad"
-
-#: ../../enterprise/include/lib/RCMDFile.class.php:548
-msgid "There was a problem creating RCMD"
-msgstr "Ha habido un problema al crear RCMD"
-
-#: ../../enterprise/include/lib/RCMDFile.class.php:693
-#: ../../enterprise/include/lib/RCMDFile.class.php:717
-msgid "There was a problem deleting RCMD"
-msgstr "Ha habido un problema al eliminar RCMD"
-
-#: ../../enterprise/include/lib/RCMDFile.class.php:865
-msgid "No agent configuration file"
-msgstr "No hay archivo de configuración de agente"
-
-#: ../../enterprise/include/lib/RCMDFile.class.php:873
-msgid "you don't have write permissions in the configuration file"
-msgstr "no tiene permisos de escritura en el archivo de configuración"
-
-#: ../../enterprise/include/lib/RCMDFile.class.php:914
-msgid "This agent is already a target"
-msgstr "Este agente ya es un objetivo"
-
-#: ../../enterprise/include/lib/RCMDFile.class.php:945
-#, php-format
-msgid "You do not have grants to access in this agent %s"
-msgstr "No tiene permisos para acceder a este agente %s"
-
-#: ../../enterprise/include/lib/RCMDFile.class.php:1011
-msgid "There was a problem creating RCMD files"
-msgstr "Ha habido un problema al crear los archivos RCMD"
-
-#: ../../enterprise/include/lib/RCMDFile.class.php:1058
-msgid "There was a problem creating target"
-msgstr "Ha habido un problema al crear un objetivo"
-
-#: ../../enterprise/include/lib/RCMDFile.class.php:1092
-msgid "There was a problem adding items in the configuration file"
-msgstr "Ha habido un problema al añadir elementos al archivo de configuración"
-
-#: ../../enterprise/include/lib/RCMDFile.class.php:1118
-#: ../../enterprise/include/lib/RCMDFile.class.php:1285
-msgid "No agent has been selected"
-msgstr "No se han seleccionado agentes"
-
-#: ../../enterprise/include/lib/RCMDFile.class.php:1151
-msgid "Target doesn't exist"
-msgstr "El objetivo no existe"
-
-#: ../../enterprise/include/lib/RCMDFile.class.php:1223
-msgid "There was a problem deleting tokens in the configuration file"
-msgstr "Ha habido un problema al eliminar los tokes del archivo de configuración"
-
-#: ../../enterprise/include/lib/RCMDFile.class.php:1259
-msgid "There was a problem deleting target from DB"
-msgstr "Ha habido un problema al eliminar el objetivo de la base de datos"
-
-#: ../../enterprise/include/lib/RCMDFile.class.php:1417
-msgid "Yaml is empty"
-msgstr "Yaml está vacío"
-
-#: ../../enterprise/include/lib/RCMDFile.class.php:1426
-msgid "Doesn't have a valid YAML format"
-msgstr "No tiene un formato YAML válido"
-
-#: ../../enterprise/include/lib/RCMDFile.class.php:1444
-#, php-format
-msgid "%s field is not allowed"
-msgstr "El campo %s no está permitido"
-
-#: ../../enterprise/include/lib/NetworkManager.php:83
-msgid "Retrieve config"
-msgstr "Recuperar configuración"
-
-#: ../../enterprise/include/lib/NetworkManager.php:84
-msgid "Restore backed up config"
-msgstr "Restaurar configuración de copia de seguridad"
-
-#: ../../enterprise/include/lib/NetworkManager.php:85
-#: ../../enterprise/views/ncm/agent/details.php:133
-#: ../../enterprise/views/ncm/agent/details.php:325
-msgid "Retrieve firmware version"
-msgstr "Recuperar la versión del firmware"
-
-#: ../../enterprise/include/lib/NetworkManager.php:86
-msgid "Send firmware"
-msgstr "Enviar firmware"
-
-#: ../../enterprise/include/lib/NetworkManager.php:93
-msgid "Executing test"
-msgstr "Ejecución de la prueba"
-
-#: ../../enterprise/include/lib/NetworkManager.php:94
-msgid "Retrieving config"
-msgstr "Recuperación de la configuración"
-
-#: ../../enterprise/include/lib/NetworkManager.php:95
-msgid "Restoring backup"
-msgstr "Restauración de la copia de seguridad"
-
-#: ../../enterprise/include/lib/NetworkManager.php:96
-msgid "Retrieving firmware version"
-msgstr "Recuperación de la versión del firmware"
-
-#: ../../enterprise/include/lib/NetworkManager.php:97
-msgid "Sending firmware update"
-msgstr "Envío de actualización de firmware"
-
-#: ../../enterprise/include/lib/NetworkManager.php:98
-msgid "Executing custom script"
-msgstr "Ejecución de scripts personalizados"
-
-#: ../../enterprise/include/lib/NetworkManager.php:99
-msgid "Executing on demand script"
-msgstr "Ejecución de scripts bajo demanda"
-
-#: ../../enterprise/include/lib/NetworkManager.php:186
-msgid "Montly"
-msgstr "Mensualmente"
-
-#: ../../enterprise/include/lib/AlertCorrelation.class.php:798
-#: ../../enterprise/include/lib/AlertCorrelation.class.php:812
-msgid "There was a problem creating Action"
-msgstr "Ha habido un problema al crear la acción"
-
-#: ../../enterprise/include/lib/AlertCorrelation.class.php:849
-#: ../../enterprise/include/lib/AlertCorrelation.class.php:862
-msgid "There was a problem updating Action"
-msgstr "Ha habido un problema al actualizar la acción"
-
-#: ../../enterprise/include/lib/AlertCorrelation.class.php:898
-#: ../../enterprise/include/lib/AlertCorrelation.class.php:912
-msgid "There was a problem deleting Action"
-msgstr "Ha habido un problema al eliminar la acción"
-
-#: ../../enterprise/include/lib/AlertCorrelation.class.php:953
-msgid "There was a problem standby alert"
-msgstr "Ha habido un problema en la alerta en suspensión"
-
-#: ../../enterprise/include/lib/AlertCorrelation.class.php:962
-msgid "There was a problem standby off alert"
-msgstr ""
-"Ha ocurrido un problema al deshabilitar el modo suspensión de las alertas"
-
-#: ../../enterprise/include/lib/AlertCorrelation.class.php:1005
-msgid "There was a problem enabled alert"
-msgstr "Ha habido un problema en la alerta habilitada"
-
-#: ../../enterprise/include/lib/AlertCorrelation.class.php:1015
-msgid "There was a problem disabled alert"
-msgstr "Ha habido un problema en la alerta deshabilitada"
-
-#: ../../enterprise/include/lib/AlertCorrelation.class.php:1071
-msgid "Event group Recursive"
-msgstr "Recursividad del grupo de eventos"
-
-#: ../../enterprise/include/lib/AlertCorrelation.class.php:1089
-msgid "Time window"
-msgstr "Ventana de tiempo"
-
-#: ../../enterprise/include/lib/AlertCorrelation.class.php:1623
-msgid "Failed to cleanup old rules."
-msgstr "No se han podido limpiar las reglas antiguas."
-
-#: ../../enterprise/include/lib/AlertCorrelation.class.php:1631
-#, php-format
-msgid "Failed SQL: %s"
-msgstr "SQL erróneo: %s"
-
-#: ../../enterprise/include/lib/AlertCorrelation.class.php:1636
-#, php-format
-msgid "Failed to apply rule: %s."
-msgstr "Error al aplicar la regla: %s"
-
-#: ../../enterprise/include/lib/AlertCorrelation.class.php:1784
-msgid "any"
-msgstr "cualquier"
-
-#: ../../enterprise/include/lib/ServiceElement.php:606
-#, php-format
-msgid "This filters will cause slowdown on server (%s ms)"
-msgstr "Estos filtros provocarán enlentecimiento del servidor (%s ms)"
-
-#: ../../enterprise/include/lib/ServiceElement.php:620
-#, php-format
-msgid "Regular expression is not valid: %s."
-msgstr "La expresión regular no es válida: %s."
-
-#: ../../enterprise/include/lib/ServiceElement.php:859
-#, php-format
-msgid " error while decoding rules: %s"
-msgstr " error al decodificar las normas: %s"
-
-#: ../../enterprise/include/lib/ServiceElement.php:1266
-#, php-format
-msgid " error: Failed to delete element: %s"
-msgstr " error: No se ha podido eliminar el elemento: %s"
-
-#: ../../enterprise/include/lib/Policy/Inventory.php:156
-#, php-format
-msgid "inventory module already registered: \"%d\""
-msgstr "módulo de inventario ya registrado: \"%d\""
-
-#: ../../enterprise/include/lib/Policy/Inventory.php:181
-#, php-format
-msgid "Failed to update, already exists: \"%d\""
-msgstr "No se ha podido actualizar, ya existe: \"%d\""
-
-#: ../../enterprise/include/lib/Policy/Queue.php:378
-#, php-format
-msgid "Already queued in %s"
-msgstr "Ya está en cola en %s"
-
-#: ../../enterprise/include/lib/Policy/Module.php:227
-#, php-format
-msgid "Failed to update: \"%s\""
-msgstr "No se ha podido actualizar: \"%s\""
-
-#: ../../enterprise/include/functions_local_components.php:179
-msgid "Empty configuration"
-msgstr "Configuración vacía"
-
-#: ../../enterprise/include/functions_local_components.php:184
-msgid "Empty OS"
-msgstr "SO vacío"
-
-#: ../../enterprise/include/functions_local_components.php:354
-#: ../../include/functions_alerts.php:1121
-#: ../../include/functions_network_components.php:590
-msgid "Copy of"
-msgstr "Copia de"
-
-#: ../../enterprise/include/process_reset_pass.php:53
-#: ../../enterprise/include/reset_pass.php:48 ../../general/login_page.php:136
-#: ../../general/login_page.php:139 ../../general/login_page.php:155
-msgid "Docs"
-msgstr "Documentos"
-
-#: ../../enterprise/include/process_reset_pass.php:58
-#: ../../enterprise/include/reset_pass.php:53
-#: ../../enterprise/meta/general/login_page.php:64
-#: ../../enterprise/meta/include/process_reset_pass.php:47
-#: ../../enterprise/meta/include/reset_pass.php:47
-#: ../../general/login_page.php:148 ../../general/login_page.php:151
-#: ../../general/login_help_dialog.php:83 ../../general/login_help_dialog.php:88
-msgid "Support"
-msgstr "Soporte"
-
-#: ../../enterprise/include/process_reset_pass.php:118
-#: ../../enterprise/meta/include/process_reset_pass.php:114
-msgid "Repeat password"
-msgstr "Repetir contraseña"
-
-#: ../../enterprise/include/process_reset_pass.php:124
-#: ../../enterprise/meta/include/process_reset_pass.php:120
-msgid "Change password"
-msgstr "Cambiar contraseña"
-
-#: ../../enterprise/include/process_reset_pass.php:136
-#: ../../enterprise/include/reset_pass.php:123
-#: ../../enterprise/meta/include/process_reset_pass.php:132
-#: ../../enterprise/meta/include/reset_pass.php:122
-msgid "Back to login"
-msgstr "Volver a identificarse"
-
-#: ../../enterprise/include/process_reset_pass.php:159
-#: ../../enterprise/include/process_reset_pass.php:162
-#: ../../enterprise/include/reset_pass.php:146
-#: ../../enterprise/include/reset_pass.php:149
-#: ../../include/functions_config.php:2391
-msgid "ONE TOOL TO MONITOR THEM ALL"
-msgstr "UNA HERRAMIENTA PARA GOBERNARLOS A TODOS"
-
-#: ../../enterprise/include/process_reset_pass.php:183
-#: ../../enterprise/include/reset_pass.php:170
-#: ../../enterprise/meta/general/login_page.php:232
-#: ../../enterprise/meta/include/process_reset_pass.php:164
-#: ../../enterprise/meta/include/reset_pass.php:161
-#: ../../general/login_page.php:424
-msgid "Build"
-msgstr "Crear"
-
-#: ../../enterprise/include/reset_pass.php:98
-#: ../../enterprise/meta/include/reset_pass.php:93
-msgid "User to reset password"
-msgstr "Usuario de la contraseña a resetear"
-
-#: ../../enterprise/include/reset_pass.php:174
-#: ../../enterprise/include/reset_pass.php:177
-#: ../../enterprise/meta/include/reset_pass.php:165
-#: ../../enterprise/meta/include/reset_pass.php:168
-msgid "Reset password failed"
-msgstr "Error al restablecer la contraseña"
-
-#: ../../enterprise/include/reset_pass.php:181
-#: ../../enterprise/meta/general/login_page.php:259
-#: ../../enterprise/meta/general/login_page.php:301
-#: ../../enterprise/meta/include/reset_pass.php:172
-#: ../../general/login_page.php:452 ../../general/login_page.php:494
-msgid "ERROR"
-msgstr "ERROR"
-
-#: ../../enterprise/include/functions_reporting_pdf.php:72
-#: ../../include/class/Diagnostics.class.php:2130
-#: ../../include/class/Diagnostics.class.php:2248
-#, php-format
-msgid "Automated %s report for user defined report"
-msgstr "Informe de %s automatizado para informe definido por el usuario"
-
-#: ../../enterprise/include/functions_reporting_pdf.php:526
-#: ../../enterprise/include/functions_reporting_pdf.php:558
-#: ../../enterprise/include/functions_reporting_pdf.php:584
-#: ../../enterprise/include/functions_reporting_pdf.php:609
-#: ../../enterprise/include/functions_reporting_pdf.php:612
-#: ../../enterprise/include/functions_reporting_pdf.php:619
-#: ../../enterprise/include/functions_reporting_csv.php:1290
-#: ../../include/functions_reporting.php:6656
-#: ../../include/functions_reporting.php:6679
-#: ../../include/functions_reporting.php:6694
-#: ../../include/functions_reporting.php:6710
-#: ../../include/functions_reporting.php:6725
-#: ../../include/functions_reporting_html.php:3516
-#: ../../include/functions_reporting_html.php:3545
-#: ../../include/functions_reporting_html.php:3586
-#: ../../include/functions_reporting_html.php:3609
-#: ../../include/functions_reporting_html.php:3612
-#: ../../include/functions_reporting_html.php:3619
-msgid "Maximun"
-msgstr "Máximo"
-
-#: ../../enterprise/include/functions_reporting_pdf.php:534
-#: ../../enterprise/include/functions_reporting_pdf.php:591
-#: ../../include/functions_reporting_html.php:3524
-#: ../../include/functions_reporting_html.php:3593
-msgid "Minimun"
-msgstr "Mínimo"
-
-#: ../../enterprise/include/functions_reporting_pdf.php:542
-#: ../../enterprise/include/functions_reporting_pdf.php:598
-#: ../../enterprise/include/ajax/log_viewer.ajax.php:85
-#: ../../include/functions_reporting_html.php:3533
-#: ../../include/functions_reporting_html.php:3601
-msgid "Average"
-msgstr "Media"
-
-#: ../../enterprise/include/functions_reporting_pdf.php:583
-#: ../../enterprise/include/functions_reporting_pdf.php:590
-#: ../../enterprise/include/functions_reporting_pdf.php:597
-#: ../../enterprise/include/functions_reporting_pdf.php:611
-#: ../../enterprise/include/functions_reporting_pdf.php:616
-#: ../../enterprise/include/functions_reporting_csv.php:1235
-#: ../../enterprise/include/functions_reporting_csv.php:1290
-#: ../../enterprise/include/functions_reporting_csv.php:1394
-#: ../../include/functions_reporting.php:6674
-#: ../../include/functions_reporting_html.php:3585
-#: ../../include/functions_reporting_html.php:3592
-#: ../../include/functions_reporting_html.php:3600
-#: ../../include/functions_reporting_html.php:3611
-#: ../../include/functions_reporting_html.php:3616
-msgid "Lapse"
-msgstr "Tiempo transcurrido"
-
-#: ../../enterprise/include/functions_reporting_pdf.php:946
-#: ../../include/functions_reporting_html.php:1978
-#: ../../include/lib/Dashboard/Widgets/agent_module.php:536
-#, php-format
-msgid "%s in %s : NORMAL"
-msgstr "%s en %s : NORMAL"
-
-#: ../../enterprise/include/functions_reporting_pdf.php:963
-#: ../../include/functions_reporting_html.php:1890
-#: ../../include/lib/Dashboard/Widgets/agent_module.php:552
-#, php-format
-msgid "%s in %s : CRITICAL"
-msgstr "%s en %s : CRÍTICO"
-
-#: ../../enterprise/include/functions_reporting_pdf.php:980
-#: ../../include/functions_reporting_html.php:1907
-#: ../../include/lib/Dashboard/Widgets/agent_module.php:568
-#, php-format
-msgid "%s in %s : WARNING"
-msgstr "%s en %s : ADVERTENCIA"
-
-#: ../../enterprise/include/functions_reporting_pdf.php:997
-#: ../../include/functions_reporting_html.php:1924
-#: ../../include/lib/Dashboard/Widgets/agent_module.php:584
-#, php-format
-msgid "%s in %s : UNKNOWN"
-msgstr "%s en %s : DESCONOCIDO"
-
-#: ../../enterprise/include/functions_reporting_pdf.php:1014
-#: ../../include/functions_reporting_html.php:1960
-#: ../../include/lib/Dashboard/Widgets/agent_module.php:600
-#, php-format
-msgid "%s in %s : Not initialize"
-msgstr "%s en %s : No iniciado"
-
-#: ../../enterprise/include/functions_reporting_pdf.php:1031
-#: ../../include/functions_reporting_html.php:1943
-#: ../../include/lib/Dashboard/Widgets/agent_module.php:617
-#, php-format
-msgid "%s in %s : ALERTS FIRED"
-msgstr "%s en %s : ALERTA DISPARADA"
-
-#: ../../enterprise/include/functions_reporting_pdf.php:1785
-#: ../../enterprise/include/functions_reporting_csv.php:2220
-#: ../../enterprise/include/functions_reporting_csv.php:2224
-#: ../../include/functions_reporting_html.php:138
-msgid "Generated"
-msgstr "Generado"
-
-#: ../../enterprise/include/functions_reporting_pdf.php:1789
-#: ../../include/functions_reporting_html.php:141
-msgid "Report date"
-msgstr "Fecha del informe"
-
-#: ../../enterprise/include/functions_reporting_pdf.php:1838
-msgid "Contents"
-msgstr "Contenido"
-
-#: ../../enterprise/include/functions_policies.php:423
-#: ../../enterprise/include/functions_policies.php:438
-#: ../../include/functions_alerts.php:474
-msgid "copy"
-msgstr "copiar"
-
-#: ../../enterprise/include/functions_policies.php:675
-#, php-format
-msgid "%s success"
-msgstr "%s éxito"
-
-#: ../../enterprise/include/functions_policies.php:675
-#, php-format
-msgid "%s failed"
-msgstr "%s falló"
-
-#: ../../enterprise/include/functions_policies.php:680
-msgid "Policy cleaned from nodes: "
-msgstr "Directiva limpiada de nodos: "
-
-#: ../../enterprise/include/functions_policies.php:934
-#, php-format
-msgid "Failed to connect to node %s"
-msgstr "Error al conectarse al %s de nodo"
-
-#: ../../enterprise/include/functions_policies.php:3504
-msgid "Policy linkation"
-msgstr "Vinculación de políticas"
-
-#: ../../enterprise/include/functions_policies.php:3509
-msgid "Module linked"
-msgstr "Módulo enlazado"
-
-#: ../../enterprise/include/functions_policies.php:3514
-#: ../../enterprise/include/functions_policies.php:3534
-msgid "Unlink from policy"
-msgstr "Módulo desenlazado de la política"
-
-#: ../../enterprise/include/functions_policies.php:3519
-msgid "Module unlinked"
-msgstr "Módulo desenlazado"
-
-#: ../../enterprise/include/functions_policies.php:3524
-#: ../../enterprise/include/functions_policies.php:3544
-msgid "Relink to policy"
-msgstr "Volver a enlazar a la política"
-
-#: ../../enterprise/include/functions_policies.php:3529
-msgid "Module pending to link"
-msgstr "Módulo pendiente de enlazar"
-
-#: ../../enterprise/include/functions_policies.php:3539
-msgid "Module pending to unlink"
-msgstr "Módulo pendiente de desenlazar"
-
-#: ../../enterprise/include/functions_policies.php:4058
-msgid "Create a new policy map"
-msgstr "Crear un nuevo mapa de políticas"
-
-#: ../../enterprise/include/functions_policies.php:4446
-#: ../../extensions/resource_registration.php:1098
-msgid "Error, please install the PHP libXML in the system."
-msgstr "Error: por favor, instale la librería PHP LibXML en el sistema."
-
-#: ../../enterprise/include/functions_policies.php:4458
-#, php-format
-msgid ""
-"This extension makes registration of policies enterprise. <br>You can get more "
-"policies in our <a href=\"%s\">Public Resource Library</a>"
-msgstr ""
-"Esta extensión permite registrar las políticas Enterprise. <br>Puedes "
-"conseguir más políticas en nuestra <a href='%s'>Librería de recursos pública</"
-"a>."
-
-#: ../../enterprise/include/functions_policies.php:4465
-#: ../../extensions/resource_registration.php:1133
-msgid "Group filter: "
-msgstr "Filtro de grupo: "
-
-#: ../../enterprise/include/functions_policies.php:4490
-#: ../../extensions/resource_registration.php:1150
-msgid ""
-"Error uploading resource. Check if the selected file is a valid resource "
-"template in .ptr format"
-msgstr ""
-"Error al cargar el recurso. Compruebe si el archivo seleccionado es una "
-"plantilla de recursos válida en formato .ptr"
-
-#: ../../enterprise/include/functions_policies.php:4516
-msgid "Policy does not exist"
-msgstr "La política no existe"
-
-#: ../../enterprise/include/functions_policies.php:4857
-#: ../../enterprise/include/functions_enterprise_api.php:3576
-#, php-format
-msgid "Successfully applied to node %s."
-msgstr "Aplicado correctamente al nodo %s."
-
-#: ../../enterprise/include/functions_policies.php:4859
-#: ../../enterprise/include/functions_enterprise_api.php:3578
-#, php-format
-msgid "Successfully applied to nodes: %s."
-msgstr "Aplicado correctamente a los nodos: %s."
-
-#: ../../enterprise/include/functions_policies.php:4906
-msgid "This will not produce any action."
-msgstr "Esto no generará ninguna acción."
-
-#: ../../enterprise/include/functions_policies.php:4935
-#, php-format
-msgid "Error connecting with node %s."
-msgstr "Error al conectar con el nodo %s."
-
-#: ../../enterprise/include/functions_policies.php:4942
-#, php-format
-msgid "This policy is being applied on node %s."
-msgstr "Esta política se está aplicando en el nodo %s."
-
-#: ../../enterprise/include/functions_policies.php:4980
-msgid "Error syncronizing ."
-msgstr "Error de sincronización."
-
-#: ../../enterprise/include/functions_ipam.php:289
-msgid "Export to Excel"
-msgstr "Exportar a Excel"
-
-#: ../../enterprise/include/functions_ipam.php:391
-msgid "Assign next free IP"
-msgstr "Asignar la siguiente IP libre"
-
-#: ../../enterprise/include/functions_ipam.php:409
-msgid "Next available IP"
-msgstr "Siguiente IP disponible"
-
-#: ../../enterprise/include/functions_ipam.php:1561
-msgid "Occupied"
-msgstr "Ocupado"
-
-#: ../../enterprise/include/functions_ipam.php:1569
-msgid "Not managed"
-msgstr "No gestionado"
-
-#: ../../enterprise/include/functions_ipam.php:1575
-msgid "Not Reserved"
-msgstr "No reservado"
-
-#: ../../enterprise/include/functions_ipam.php:1585
-msgid "Occupancy statistics"
-msgstr "Estadísticas de ocupación"
-
-#: ../../enterprise/include/functions_ipam.php:1642
-msgid "DESC"
-msgstr "Descendiente"
-
-#: ../../enterprise/include/functions_ipam.php:1643
-msgid "ASC"
-msgstr "Ascendente"
-
-#: ../../enterprise/include/functions_ipam.php:1644
-msgid "A -> Z"
-msgstr "A -> Z"
-
-#: ../../enterprise/include/functions_ipam.php:1645
-msgid "Z -> A"
-msgstr "Z -> A"
-
-#: ../../enterprise/include/functions_ipam.php:1646
-#: ../../enterprise/include/functions_ipam.php:1647
-msgid "Last check"
-msgstr "Ultima comprobación"
-
-#: ../../enterprise/include/functions_ipam.php:1646
-msgid "Newer -> Older"
-msgstr "Más reciente -> Más antiguo"
-
-#: ../../enterprise/include/functions_ipam.php:1647
-msgid "Older -> Newer"
-msgstr "Más antiguo -> Más reciente"
-
-#: ../../enterprise/include/functions_ipam.php:1674
-msgid "Exact address match"
-msgstr "Coincide la dirección exacta"
-
-#: ../../enterprise/include/functions_ipam.php:1678
-msgid "S.O"
-msgstr "S.O"
-
-#: ../../enterprise/include/functions_ipam.php:1691
-msgid "Big"
-msgstr "Grande"
-
-#: ../../enterprise/include/functions_ipam.php:1692
-msgid "Tiny"
-msgstr "Pequeño"
-
-#: ../../enterprise/include/functions_ipam.php:1693
-msgid "Icons style"
-msgstr "Estilo de iconos"
-
-#: ../../enterprise/include/functions_ipam.php:1710
-msgid "Show not alive hosts"
-msgstr "Mostrar máquinas inactivas"
-
-#: ../../enterprise/include/functions_ipam.php:1718
-msgid "Show only managed addresses"
-msgstr "Mostrar solo direcciones administradas"
-
-#: ../../enterprise/include/functions_ipam.php:1726
-msgid "Reserved addresses"
-msgstr "Direcciones reservadas"
-
-#: ../../enterprise/include/functions_ipam.php:1731
-msgid "Unreserved"
-msgstr "No reservado"
-
-#: ../../enterprise/include/functions_ipam.php:1741
-msgid "Last Contact"
-msgstr "Último contacto"
-
-#: ../../enterprise/include/functions_ipam.php:1784
-msgid "Filter options"
-msgstr "Opciones de filtro"
-
-#: ../../enterprise/include/functions_ipam.php:1975
-msgid "id Network"
-msgstr "ID de red"
-
-#: ../../enterprise/include/functions_ipam.php:1980
-msgid "ID recon task"
-msgstr "Tarea de reconocimiento de ID"
-
-#: ../../enterprise/include/functions_ipam.php:1981
-msgid "Scan Interval"
-msgstr "Intervalo de escaneo"
-
-#: ../../enterprise/include/functions_ipam.php:1982
-msgid "Users Operator"
-msgstr "Operador de usuarios"
-
-#: ../../enterprise/include/functions_ipam.php:1983
-msgid "Total Ips"
-msgstr "IPs totales"
-
-#: ../../enterprise/include/functions_ipam.php:1984
-msgid "Last Update"
-msgstr "Última actualización"
-
-#: ../../enterprise/include/functions_ipam.php:2037
-msgid "OS Name"
-msgstr "Nombre del OS"
-
-#: ../../enterprise/include/functions_ipam.php:2041
-msgid "Last updated"
-msgstr "Última actualización"
-
-#: ../../enterprise/include/functions_ipam.php:2042
-msgid "Last modified"
-msgstr "Última modificación"
-
-#: ../../enterprise/include/functions_ipam.php:2043
-msgid "Dhcp Leased"
-msgstr "Dhcp prestado"
-
-#: ../../enterprise/include/functions_ipam.php:2044
-msgid "Dhcp Leased Mode"
-msgstr "Modo Dhcp prestado"
-
-#: ../../enterprise/include/functions_ipam.php:2045
-msgid "Dhcp Leased Expiration"
-msgstr "Caducidad de Dhcp prestado"
-
-#: ../../enterprise/include/functions_ipam.php:2046
-msgid "Mac address"
-msgstr "Dirección Mac"
-
-#: ../../enterprise/include/functions_servicemap.php:80
-msgid "Failed to retrieve service elements: "
-msgstr "Error al recuperar elementos de servicio: "
-
-#: ../../enterprise/include/functions_login.php:22
-msgid "You must change password:"
-msgstr "Tienes que cambiar la contraseña:"
-
-#: ../../enterprise/include/functions_login.php:38
-msgid "Password must be different from the 3 previous changes."
-msgstr "La contraseña debe ser diferente a los 3 cambios anteriores."
-
-#: ../../enterprise/include/functions_login.php:50
-msgid "Old pass: "
-msgstr "Contraseña antigua: "
-
-#: ../../enterprise/include/functions_login.php:53
-msgid "New pass: "
-msgstr "Contraseña nueva: "
-
-#: ../../enterprise/include/functions_login.php:57
-msgid "Confirm: "
-msgstr "Confirmar: "
-
-#: ../../enterprise/include/functions_login.php:63
-msgid "Change"
-msgstr "Cambiar"
-
-#: ../../enterprise/include/functions_login.php:97
-msgid "Login blocked"
-msgstr "Inicio de sesión bloqueado"
-
-#: ../../enterprise/include/functions_login.php:105
-msgid "User has been blocked. Try again in "
-msgstr "Tu usuario ha sido bloqueado. Vuelve a intentarlo en "
-
-#: ../../enterprise/include/functions_login.php:105
-msgid " minutes"
-msgstr " minutos"
-
-#: ../../enterprise/include/functions_login.php:138
-msgid "Login successfully"
-msgstr "Inicio de sesión correcto"
-
-#: ../../enterprise/include/functions_login.php:141
-#: ../../enterprise/meta/general/login_page.php:294
-#: ../../enterprise/meta/general/login_page.php:297
-#: ../../general/login_page.php:487 ../../general/login_page.php:490
-#: ../../general/login_page.php:644 ../../general/login_page.php:647
-msgid "Login failed"
-msgstr "Error de inicio de sesión"
-
-#: ../../enterprise/include/functions_login.php:146
-msgid "User pass successfully updated"
-msgstr "La contraseña se ha actualizado correctamente."
-
-#: ../../enterprise/include/functions_login.php:252
-msgid "Password must be different from the "
-msgstr "La contraseña debe ser diferente de "
-
-#: ../../enterprise/include/functions_login.php:252
-msgid " previous changes."
-msgstr " los cambios anteriores."
-
-#: ../../enterprise/include/functions_login.php:265
-msgid "Password must be different"
-msgstr "La contraseña no puede ser la misma."
-
-#: ../../enterprise/include/functions_login.php:276
-msgid "Password too short"
-msgstr "La contraseña es demasiado corta"
-
-#: ../../enterprise/include/functions_login.php:288
-msgid "Password must contain numbers"
-msgstr "La contraseña tiene que contener números."
-
-#: ../../enterprise/include/functions_login.php:301
-msgid "Password must contain symbols"
-msgstr "La contraseña tiene que contener símbolos."
-
-#: ../../enterprise/include/functions_login.php:324
-msgid "Invalid old password"
-msgstr "Contraseña antigua no válida"
-
-#: ../../enterprise/include/functions_login.php:361
-msgid "Password confirm does not match"
-msgstr "Las contraseñas no coinciden."
-
-#: ../../enterprise/include/functions_login.php:368
-msgid "Password empty"
-msgstr "La contraseña está vacía."
-
-#: ../../enterprise/include/functions_HA_cluster.php:49
-msgid "Recover"
-msgstr "Recuperar"
-
-#: ../../enterprise/include/functions_HA_cluster.php:52
-msgid "Promote"
-msgstr "Promover"
-
-#: ../../enterprise/include/functions_HA_cluster.php:55
-msgid "Demote"
-msgstr "Degradar"
-
-#: ../../enterprise/include/functions_HA_cluster.php:67
-msgid "Resync"
-msgstr "Volver a sincronizar"
-
-#: ../../enterprise/include/functions_HA_cluster.php:261
-msgid "Public Key Authentication Failed"
-msgstr "Error en la autenticación de clave pública"
-
-#: ../../enterprise/include/functions_HA_cluster.php:268
-msgid "Connection failed"
-msgstr "Conexion fallida"
-
-#: ../../enterprise/include/functions_HA_cluster.php:491
-msgid "Register"
-msgstr "Registrar"
-
-#: ../../enterprise/include/functions_HA_cluster.php:493
-msgid "Register new node"
-msgstr "Registrar nuevo nodo"
-
-#: ../../enterprise/include/functions_HA_cluster.php:496
-#: ../../include/class/NetworkMap.class.php:2957
-msgid "Update node"
-msgstr "Actualizar nodo"
-
-#: ../../enterprise/include/functions_reporting_csv.php:416
-msgid "Event report agent"
-msgstr "Informe de los eventos de un agente"
-
-#: ../../enterprise/include/functions_reporting_csv.php:418
-msgid "Event report group"
-msgstr "Informe de los eventos de un grupo"
-
-#: ../../enterprise/include/functions_reporting_csv.php:442
-msgid "Event report module"
-msgstr "Informe de los eventos de un módulo"
-
-#: ../../enterprise/include/functions_reporting_csv.php:521
-#: ../../enterprise/include/functions_reporting_csv.php:1429
-msgid "% OK"
-msgstr "% OK"
-
-#: ../../enterprise/include/functions_reporting_csv.php:530
-#: ../../include/functions_reporting_html.php:613
-msgid "Checks Failed"
-msgstr "Comprobaciones fallidas"
-
-#: ../../enterprise/include/functions_reporting_csv.php:662
-msgid "Maximum value"
-msgstr "Valor máximo"
-
-#: ../../enterprise/include/functions_reporting_csv.php:666
-#: ../../include/functions_reporting_html.php:4248
-msgid "Agent min value"
-msgstr "Valor mínimo del agente"
-
-#: ../../enterprise/include/functions_reporting_csv.php:667
-msgid "Minimum value"
-msgstr "Valor mínimo"
-
-#: ../../enterprise/include/functions_reporting_csv.php:670
-msgid "Average value"
-msgstr "Valor medio"
-
-#: ../../enterprise/include/functions_reporting_csv.php:696
-#: ../../include/functions_reports.php:879
-msgid "Agents inventory"
-msgstr "Inventario de agentes"
-
-#: ../../enterprise/include/functions_reporting_csv.php:718
-msgid "Sec. group"
-msgstr "Grupo sec."
-
-#: ../../enterprise/include/functions_reporting_csv.php:718
-msgid "Custom Field"
-msgstr "Campo personalizado"
-
-#: ../../enterprise/include/functions_reporting_csv.php:740
-#: ../../include/functions_reporting.php:2517
-msgid "Inventory Changes"
-msgstr "Cambios de inventario"
-
-#: ../../enterprise/include/functions_reporting_csv.php:768
-#: ../../include/functions_reports.php:725
-msgid "Prediction date"
-msgstr "Fecha de predicción"
-
-#: ../../enterprise/include/functions_reporting_csv.php:788
-#: ../../include/functions_reporting.php:6129
-msgid "Projection Graph"
-msgstr "Gráfico de proyección"
-
-#: ../../enterprise/include/functions_reporting_csv.php:817
-msgid "Serialized data "
-msgstr "Datos serializados "
-
-#: ../../enterprise/include/functions_reporting_csv.php:856
-msgid "Last Value "
-msgstr "Último valor "
-
-#: ../../enterprise/include/functions_reporting_csv.php:969
-#: ../../include/functions_reporting.php:3536
-msgid "Group Report"
-msgstr "Informe del grupo"
-
-#: ../../enterprise/include/functions_reporting_csv.php:983
-msgid "Uknown agents"
-msgstr "Agentes desconocidos"
-
-#: ../../enterprise/include/functions_reporting_csv.php:983
-#: ../../include/functions_reporting.php:11333
-msgid "Defined alerts"
-msgstr "Alertas definidas"
-
-#: ../../enterprise/include/functions_reporting_csv.php:983
-msgid "Last 8 hours events"
-msgstr "Eventos en las últimas 8 horas"
-
-#: ../../enterprise/include/functions_reporting_csv.php:986
-#: ../../include/functions_reports.php:777
-#: ../../include/functions_reports.php:783
-msgid "Group report"
-msgstr "Grupo de informes"
-
-#: ../../enterprise/include/functions_reporting_csv.php:1115
-msgid "Illegal query or any other error"
-msgstr "Consulta ilegal o cualquier otro error"
-
-#: ../../enterprise/include/functions_reporting_csv.php:1137
-#: ../../include/functions_reports.php:661
-msgid "SQL vertical bar graph"
-msgstr "Gráfico de barra vertical SQL"
-
-#: ../../enterprise/include/functions_reporting_csv.php:1139
-#: ../../include/functions_reports.php:669
-msgid "SQL horizontal bar graph"
-msgstr "Gráfica de barras horizontales SQL"
-
-#: ../../enterprise/include/functions_reporting_csv.php:1141
-#: ../../include/functions_reports.php:665
-msgid "SQL pie graph"
-msgstr "Gráfico circular de  SQL"
-
-#: ../../enterprise/include/functions_reporting_csv.php:1170
-#: ../../enterprise/include/functions_reporting_csv.php:1188
-#: ../../enterprise/include/functions_reporting_csv.php:1190
-#: ../../include/functions_reports.php:754
-#: ../../include/functions_reporting.php:6435
-#: ../../include/functions_reporting.php:9735
-msgid "Summatory"
-msgstr "Sumatorio"
-
-#: ../../enterprise/include/functions_reporting_csv.php:1220
-#: ../../enterprise/include/functions_reporting_csv.php:1222
-#: ../../enterprise/include/functions_reporting_csv.php:1228
-#: ../../enterprise/include/functions_reporting_csv.php:1230
-msgid "Minimum Value"
-msgstr "Valor mínimo"
-
-#: ../../enterprise/include/functions_reporting_csv.php:1235
-#: ../../include/functions_reporting.php:9739
-msgid "Minimum"
-msgstr "Mínimo"
-
-#: ../../enterprise/include/functions_reporting_csv.php:1275
-#: ../../enterprise/include/functions_reporting_csv.php:1277
-#: ../../enterprise/include/functions_reporting_csv.php:1283
-#: ../../enterprise/include/functions_reporting_csv.php:1285
-msgid "Maximun Value"
-msgstr "Valor máximo"
-
-#: ../../enterprise/include/functions_reporting_csv.php:1311
-#: ../../enterprise/include/functions_reporting_csv.php:1325
-#: ../../enterprise/include/functions_reporting_csv.php:1329
-#: ../../enterprise/include/functions_reporting_csv.php:1340
-#: ../../include/functions_reports.php:762
-#: ../../include/functions_reporting.php:9252
-#: ../../include/functions_reporting_html.php:3705
-msgid "Increment"
-msgstr "Incremento"
-
-#: ../../enterprise/include/functions_reporting_csv.php:1325
-#: ../../include/functions_reporting_html.php:3703
-msgid "From data"
-msgstr "Desde datos"
-
-#: ../../enterprise/include/functions_reporting_csv.php:1325
-#: ../../include/functions_reporting_html.php:3704
-msgid "To data"
-msgstr "hasta datos"
-
-#: ../../enterprise/include/functions_reporting_csv.php:1331
-#: ../../enterprise/include/functions_reporting_csv.php:1342
-#: ../../include/functions_reporting_html.php:3732
-msgid "Negative increase: "
-msgstr "Incremento negativo: "
-
-#: ../../enterprise/include/functions_reporting_csv.php:1333
-#: ../../enterprise/include/functions_reporting_csv.php:1344
-#: ../../include/functions_reporting_html.php:3734
-msgid "Positive increase: "
-msgstr "Incremento positivo: "
-
-#: ../../enterprise/include/functions_reporting_csv.php:1335
-#: ../../enterprise/include/functions_reporting_csv.php:1346
-#: ../../include/functions_reporting_html.php:3736
-msgid "Neutral increase: "
-msgstr "Incremento neutral: "
-
-#: ../../enterprise/include/functions_reporting_csv.php:1360
-#: ../../enterprise/include/functions_reporting_csv.php:1379
-#: ../../enterprise/include/functions_reporting_csv.php:1381
-#: ../../enterprise/include/functions_reporting_csv.php:1387
-#: ../../enterprise/include/functions_reporting_csv.php:1389
-#: ../../include/functions_reporting.php:6440
-msgid "AVG. Value"
-msgstr "Valor medio"
-
-#: ../../enterprise/include/functions_reporting_csv.php:1394
-msgid "AVG"
-msgstr "Media"
-
-#: ../../enterprise/include/functions_reporting_csv.php:1415
-#: ../../enterprise/include/functions_reporting_csv.php:1433
-#: ../../enterprise/include/functions_reporting_csv.php:1435
-#: ../../include/functions_reporting.php:5771
-msgid "Monitor Report"
-msgstr "Informe de monitores"
-
-#: ../../enterprise/include/functions_reporting_csv.php:1429
-msgid "% Wrong"
-msgstr "% Mal"
-
-#: ../../enterprise/include/functions_reporting_csv.php:1444
-msgid "Simple Graph"
-msgstr "Gráfico simple"
-
-#: ../../enterprise/include/functions_reporting_csv.php:1504
-#: ../../enterprise/include/functions_reporting_csv.php:1550
-#: ../../enterprise/include/functions_reporting_csv.php:1623
-#: ../../enterprise/include/functions_reporting_csv.php:1742
-#: ../../enterprise/include/functions_reporting_csv.php:2050
-msgid "SLA Max"
-msgstr "SLA máximo"
-
-#: ../../enterprise/include/functions_reporting_csv.php:1505
-#: ../../enterprise/include/functions_reporting_csv.php:1551
-#: ../../enterprise/include/functions_reporting_csv.php:1624
-#: ../../enterprise/include/functions_reporting_csv.php:1743
-#: ../../enterprise/include/functions_reporting_csv.php:2051
-msgid "SLA Min"
-msgstr "SLA mínimo"
-
-#: ../../enterprise/include/functions_reporting_csv.php:1507
-#: ../../enterprise/include/functions_reporting_csv.php:1553
-msgid "Time Total "
-msgstr "Tiempo total "
-
-#: ../../enterprise/include/functions_reporting_csv.php:1508
-#: ../../enterprise/include/functions_reporting_csv.php:1554
-msgid "Time OK "
-msgstr "Tiempo OK "
-
-#: ../../enterprise/include/functions_reporting_csv.php:1509
-#: ../../enterprise/include/functions_reporting_csv.php:1555
-msgid "Time Error "
-msgstr "Tiempo de error "
-
-#: ../../enterprise/include/functions_reporting_csv.php:1510
-#: ../../enterprise/include/functions_reporting_csv.php:1556
-msgid "Time Unknown "
-msgstr "Tiempo en desconocido "
-
-#: ../../enterprise/include/functions_reporting_csv.php:1511
-#: ../../enterprise/include/functions_reporting_csv.php:1557
-msgid "Time Not Init "
-msgstr "Tiempo no iniciado "
-
-#: ../../enterprise/include/functions_reporting_csv.php:1512
-#: ../../enterprise/include/functions_reporting_csv.php:1558
-msgid "Time Downtime "
-msgstr "Tiempo en parada planificada "
-
-#: ../../enterprise/include/functions_reporting_csv.php:1513
-#: ../../enterprise/include/functions_reporting_csv.php:1559
-msgid "Checks Total "
-msgstr "Comprobaciones totales "
-
-#: ../../enterprise/include/functions_reporting_csv.php:1514
-#: ../../enterprise/include/functions_reporting_csv.php:1560
-msgid "Checks OK "
-msgstr "Comprobaciones OK "
-
-#: ../../enterprise/include/functions_reporting_csv.php:1515
-#: ../../enterprise/include/functions_reporting_csv.php:1561
-msgid "Checks Error "
-msgstr "Comprobaciones con error "
-
-#: ../../enterprise/include/functions_reporting_csv.php:1516
-#: ../../enterprise/include/functions_reporting_csv.php:1562
-msgid "Checks Unknown "
-msgstr "Comprobaciones en desconocido "
-
-#: ../../enterprise/include/functions_reporting_csv.php:1517
-#: ../../enterprise/include/functions_reporting_csv.php:1563
-msgid "Checks Not Init "
-msgstr "Comprobaciones en no iniciado "
-
-#: ../../enterprise/include/functions_reporting_csv.php:1518
-#: ../../enterprise/include/functions_reporting_csv.php:1564
-msgid "SLA "
-msgstr "SLA "
-
-#: ../../enterprise/include/functions_reporting_csv.php:1519
-#: ../../enterprise/include/functions_reporting_csv.php:1565
-msgid "Status "
-msgstr "Estado "
-
-#: ../../enterprise/include/functions_reporting_csv.php:1611
-#: ../../enterprise/include/functions_reporting_csv.php:1727
-#: ../../enterprise/include/functions_reporting_csv.php:1967
-#: ../../enterprise/include/functions_reporting_csv.php:2035
-msgid "Subtitle"
-msgstr "Subtítulo"
-
-#: ../../enterprise/include/functions_reporting_csv.php:1626
-#: ../../enterprise/include/functions_reporting_csv.php:1758
-#: ../../enterprise/include/functions_reporting_csv.php:2066
-msgid "Time Total Month"
-msgstr "Tiempo total del mes"
-
-#: ../../enterprise/include/functions_reporting_csv.php:1627
-#: ../../enterprise/include/functions_reporting_csv.php:1759
-#: ../../enterprise/include/functions_reporting_csv.php:2067
-msgid "Time OK Month"
-msgstr "Tiempo OK del mes"
-
-#: ../../enterprise/include/functions_reporting_csv.php:1628
-#: ../../enterprise/include/functions_reporting_csv.php:1760
-#: ../../enterprise/include/functions_reporting_csv.php:2068
-msgid "Time Error Month"
-msgstr "Tiempo en error del mes"
-
-#: ../../enterprise/include/functions_reporting_csv.php:1629
-#: ../../enterprise/include/functions_reporting_csv.php:1761
-#: ../../enterprise/include/functions_reporting_csv.php:2069
-msgid "Time Unknown Month"
-msgstr "Tiempo en desconocido del mes"
-
-#: ../../enterprise/include/functions_reporting_csv.php:1630
-#: ../../enterprise/include/functions_reporting_csv.php:1762
-#: ../../enterprise/include/functions_reporting_csv.php:2070
-msgid "Time Downtime Month"
-msgstr "Tiempo en parada planificada del mes"
-
-#: ../../enterprise/include/functions_reporting_csv.php:1631
-#: ../../enterprise/include/functions_reporting_csv.php:1763
-#: ../../enterprise/include/functions_reporting_csv.php:2071
-msgid "Time Not Init Month"
-msgstr "Tiempo en no iniciado del mes"
-
-#: ../../enterprise/include/functions_reporting_csv.php:1632
-#: ../../enterprise/include/functions_reporting_csv.php:1764
-#: ../../enterprise/include/functions_reporting_csv.php:2072
-msgid "Checks Total Month"
-msgstr "Comprobaciones totales del mes"
-
-#: ../../enterprise/include/functions_reporting_csv.php:1633
-#: ../../enterprise/include/functions_reporting_csv.php:1765
-#: ../../enterprise/include/functions_reporting_csv.php:2073
-msgid "Checks OK Month"
-msgstr "Comprobaciones OK del mes"
-
-#: ../../enterprise/include/functions_reporting_csv.php:1634
-#: ../../enterprise/include/functions_reporting_csv.php:1766
-#: ../../enterprise/include/functions_reporting_csv.php:2074
-msgid "Checks Error Month"
-msgstr "Comprobaciones en error del mes"
-
-#: ../../enterprise/include/functions_reporting_csv.php:1635
-#: ../../enterprise/include/functions_reporting_csv.php:1767
-#: ../../enterprise/include/functions_reporting_csv.php:2075
-msgid "Checks Unknown Month"
-msgstr "Comprobaciones en desconocido del mes"
-
-#: ../../enterprise/include/functions_reporting_csv.php:1636
-#: ../../enterprise/include/functions_reporting_csv.php:1768
-#: ../../enterprise/include/functions_reporting_csv.php:2076
-msgid "Checks Not Init Month"
-msgstr "Comprobaciones en no iniciado del mes"
-
-#: ../../enterprise/include/functions_reporting_csv.php:1637
-#: ../../enterprise/include/functions_reporting_csv.php:1769
-#: ../../enterprise/include/functions_reporting_csv.php:2077
-msgid "SLA Month"
-msgstr "SLA mensual"
-
-#: ../../enterprise/include/functions_reporting_csv.php:1638
-#: ../../enterprise/include/functions_reporting_csv.php:1770
-#: ../../enterprise/include/functions_reporting_csv.php:2078
-msgid "Status Month"
-msgstr "Estado del mes"
-
-#: ../../enterprise/include/functions_reporting_csv.php:1661
-#: ../../enterprise/include/functions_reporting_csv.php:1816
-msgid "Time Total Day"
-msgstr "Tiempo total del día"
-
-#: ../../enterprise/include/functions_reporting_csv.php:1662
-#: ../../enterprise/include/functions_reporting_csv.php:1817
-msgid "Time OK Day"
-msgstr "Tiempo en OK del día"
-
-#: ../../enterprise/include/functions_reporting_csv.php:1663
-#: ../../enterprise/include/functions_reporting_csv.php:1818
-msgid "Time Error Day"
-msgstr "Tiempo en error del día"
-
-#: ../../enterprise/include/functions_reporting_csv.php:1664
-#: ../../enterprise/include/functions_reporting_csv.php:1819
-msgid "Time Unknown Day"
-msgstr "Tiempo en desconocido del día"
-
-#: ../../enterprise/include/functions_reporting_csv.php:1665
-#: ../../enterprise/include/functions_reporting_csv.php:1820
-msgid "Time Not Init Day"
-msgstr "Tiempo en no iniciado del día"
-
-#: ../../enterprise/include/functions_reporting_csv.php:1666
-#: ../../enterprise/include/functions_reporting_csv.php:1821
-msgid "Time Downtime Day"
-msgstr "Tiempo en parada planificada del día"
-
-#: ../../enterprise/include/functions_reporting_csv.php:1667
-#: ../../enterprise/include/functions_reporting_csv.php:1822
-msgid "Time Out Day"
-msgstr "Tiempo fuera del día"
-
-#: ../../enterprise/include/functions_reporting_csv.php:1668
-#: ../../enterprise/include/functions_reporting_csv.php:1823
-msgid "Checks Total Day"
-msgstr "Comprobaciones totales del día"
-
-#: ../../enterprise/include/functions_reporting_csv.php:1669
-#: ../../enterprise/include/functions_reporting_csv.php:1824
-msgid "Checks OK Day"
-msgstr "Comprobaciones en OK del día"
-
-#: ../../enterprise/include/functions_reporting_csv.php:1670
-#: ../../enterprise/include/functions_reporting_csv.php:1825
-msgid "Checks Error Day"
-msgstr "Comprobaciones en error del día"
-
-#: ../../enterprise/include/functions_reporting_csv.php:1671
-#: ../../enterprise/include/functions_reporting_csv.php:1826
-msgid "Checks Unknown Day"
-msgstr "Comprobaciones en desconocido del día"
-
-#: ../../enterprise/include/functions_reporting_csv.php:1672
-#: ../../enterprise/include/functions_reporting_csv.php:1827
-msgid "Checks Not Init Day"
-msgstr "Comprobaciones en no iniciado del día"
-
-#: ../../enterprise/include/functions_reporting_csv.php:1673
-#: ../../enterprise/include/functions_reporting_csv.php:1828
-msgid "SLA Day"
-msgstr "SLA diario"
-
-#: ../../enterprise/include/functions_reporting_csv.php:1674
-#: ../../enterprise/include/functions_reporting_csv.php:1829
-msgid "SLA Fixed Day"
-msgstr "SLA de día fijo"
-
-#: ../../enterprise/include/functions_reporting_csv.php:1675
-#: ../../enterprise/include/functions_reporting_csv.php:1830
-msgid "Date From Day"
-msgstr "Fecha desde día"
-
-#: ../../enterprise/include/functions_reporting_csv.php:1676
-#: ../../enterprise/include/functions_reporting_csv.php:1831
-msgid "Date To Day"
-msgstr "Fecha hasta día"
-
-#: ../../enterprise/include/functions_reporting_csv.php:1677
-#: ../../enterprise/include/functions_reporting_csv.php:1832
-msgid "Status Day"
-msgstr "Estado del día"
-
-#: ../../enterprise/include/functions_reporting_csv.php:1737
-#: ../../enterprise/include/functions_reporting_csv.php:2045
-#: ../../include/functions_html.php:2274
-msgid "Month"
-msgstr "Mes"
-
-#: ../../enterprise/include/functions_reporting_csv.php:1738
-#: ../../enterprise/include/functions_reporting_csv.php:2046
-msgid "Month Number"
-msgstr "Número de mes"
-
-#: ../../enterprise/include/functions_reporting_csv.php:1739
-#: ../../enterprise/include/functions_reporting_csv.php:2047
-msgid "Year"
-msgstr "Año"
-
-#: ../../enterprise/include/functions_reporting_csv.php:1789
-msgid "Time Total week"
-msgstr "Tiempo total de la semana"
-
-#: ../../enterprise/include/functions_reporting_csv.php:1790
-msgid "Time OK week"
-msgstr "Tiempo en OK de la semana"
-
-#: ../../enterprise/include/functions_reporting_csv.php:1791
-msgid "Time Error week"
-msgstr "Tiempo en error de la semana"
-
-#: ../../enterprise/include/functions_reporting_csv.php:1792
-msgid "Time Unknown week"
-msgstr "Tiempo en desconocido de la semana"
-
-#: ../../enterprise/include/functions_reporting_csv.php:1793
-msgid "Time Downtime week"
-msgstr "Tiempo en parada planificada de la semana"
-
-#: ../../enterprise/include/functions_reporting_csv.php:1794
-msgid "Time Not Init week"
-msgstr "Tiempo en no iniciado de la semana"
-
-#: ../../enterprise/include/functions_reporting_csv.php:1795
-msgid "Checks Total week"
-msgstr "Comprobaciones totales de la semana"
-
-#: ../../enterprise/include/functions_reporting_csv.php:1796
-msgid "Checks OK week"
-msgstr "Comprobaciones en OK de la semana"
-
-#: ../../enterprise/include/functions_reporting_csv.php:1797
-msgid "Checks Error week"
-msgstr "Comprobaciones en error de la semana"
-
-#: ../../enterprise/include/functions_reporting_csv.php:1798
-msgid "Checks Unknown week"
-msgstr "Comprobaciones en desconocido de la semana"
-
-#: ../../enterprise/include/functions_reporting_csv.php:1799
-msgid "Status week"
-msgstr "Estado de la semana"
-
-#: ../../enterprise/include/functions_reporting_csv.php:1815
-msgid "Day Week"
-msgstr "Día de la semana"
-
-#: ../../enterprise/include/functions_reporting_csv.php:1867
-msgid "S.L.A. Services"
-msgstr "Servicios S.L.A"
-
-#: ../../enterprise/include/functions_reporting_csv.php:1885
-msgid "Lost sercice "
-msgstr "Servicio perdido "
-
-#: ../../enterprise/include/functions_reporting_csv.php:1886
-msgid "Service "
-msgstr "Servicio "
-
-#: ../../enterprise/include/functions_reporting_csv.php:1887
-msgid "Limit "
-msgstr "Límite "
-
-#: ../../enterprise/include/functions_reporting_csv.php:1888
-msgid "SLA Compilance "
-msgstr "Cumplimiento SLA "
-
-#: ../../enterprise/include/functions_reporting_csv.php:1889
-msgid "Unknown "
-msgstr "Desconocido "
-
-#: ../../enterprise/include/functions_reporting_csv.php:1890
-msgid "Ok "
-msgstr "Ok "
-
-#: ../../enterprise/include/functions_reporting_csv.php:1891
-msgid "Fail "
-msgstr "Error "
-
-#: ../../enterprise/include/functions_reporting_csv.php:1892
-msgid "Result "
-msgstr "Resultado "
-
-#: ../../enterprise/include/functions_reporting_csv.php:1917
-msgid "IPAM Networks"
-msgstr "Redes IPAM"
-
-#: ../../enterprise/include/functions_reporting_csv.php:1977
-msgid "SLA max"
-msgstr "SLA máximo"
-
-#: ../../enterprise/include/functions_reporting_csv.php:1978
-msgid "SLA min"
-msgstr "SLA mínimo"
-
-#: ../../enterprise/include/functions_reporting_csv.php:1979
-msgid "SLA limit"
-msgstr "Límite de SLA"
-
-#: ../../enterprise/include/functions_reporting_csv.php:1982
-msgid "Time Error"
-msgstr "Tiempo de error"
-
-#: ../../enterprise/include/functions_reporting_csv.php:1985
-#: ../../include/functions_reporting_html.php:3868
-msgid "Time Downtime"
-msgstr "Tiempo de parada planificada"
-
-#: ../../enterprise/include/functions_reporting_csv.php:1988
-msgid "Checks Error"
-msgstr "Comprobaciones en error"
-
-#: ../../enterprise/include/functions_reporting_csv.php:1992
-msgid "SLA Fixed"
-msgstr "SLA fijo"
-
-#: ../../enterprise/include/functions_reporting_csv.php:2097
-msgid "Time Total day"
-msgstr "Tiempo total del día"
-
-#: ../../enterprise/include/functions_reporting_csv.php:2098
-msgid "Time OK day"
-msgstr "Tiempo en OK del día"
-
-#: ../../enterprise/include/functions_reporting_csv.php:2099
-msgid "Time Error day"
-msgstr "Tiempo en error del día"
-
-#: ../../enterprise/include/functions_reporting_csv.php:2100
-msgid "Time Unknown day"
-msgstr "Tiempo en desconocido del día"
-
-#: ../../enterprise/include/functions_reporting_csv.php:2101
-msgid "Time Downtime day"
-msgstr "Tiempo en parada planificada del día"
-
-#: ../../enterprise/include/functions_reporting_csv.php:2102
-msgid "Time Not Init day"
-msgstr "Tiempo en no iniciado del día"
-
-#: ../../enterprise/include/functions_reporting_csv.php:2103
-msgid "Checks Total day"
-msgstr "Comprobaciones totales del día"
-
-#: ../../enterprise/include/functions_reporting_csv.php:2104
-msgid "Checks OK day"
-msgstr "Comprobaciones en OK del día"
-
-#: ../../enterprise/include/functions_reporting_csv.php:2105
-msgid "Checks Error day"
-msgstr "Comprobaciones en error del día"
-
-#: ../../enterprise/include/functions_reporting_csv.php:2106
-msgid "Checks Unknown day"
-msgstr "Comprobaciones en desconocido del día"
-
-#: ../../enterprise/include/functions_reporting_csv.php:2107
-msgid "Status day"
-msgstr "Estado del día"
-
-#: ../../enterprise/include/functions_reporting_csv.php:2124
-msgid "Time Total hours"
-msgstr "Tiempo total en horas"
-
-#: ../../enterprise/include/functions_reporting_csv.php:2125
-msgid "Time OK hours"
-msgstr "Tiempo en OK en horas"
-
-#: ../../enterprise/include/functions_reporting_csv.php:2126
-msgid "Time Error hours"
-msgstr "Tiempo en error en horas"
-
-#: ../../enterprise/include/functions_reporting_csv.php:2127
-msgid "Time Unknown hours"
-msgstr "Tiempo en desconocido en horas"
-
-#: ../../enterprise/include/functions_reporting_csv.php:2128
-msgid "Time Not Init hours"
-msgstr "Tiempo en no iniciado en horas"
-
-#: ../../enterprise/include/functions_reporting_csv.php:2129
-msgid "Time Downtime hours"
-msgstr "Tiempo en parada planificada en horas"
-
-#: ../../enterprise/include/functions_reporting_csv.php:2130
-msgid "Time Out hours"
-msgstr "Tiempo fuera en horas"
-
-#: ../../enterprise/include/functions_reporting_csv.php:2131
-msgid "Checks Total hours"
-msgstr "Comprobaciones totales en horas"
-
-#: ../../enterprise/include/functions_reporting_csv.php:2132
-msgid "Checks OK hours"
-msgstr "Comprobaciones en OK en horas"
-
-#: ../../enterprise/include/functions_reporting_csv.php:2133
-msgid "Checks Error hours"
-msgstr "Comprobaciones en error en horas"
-
-#: ../../enterprise/include/functions_reporting_csv.php:2134
-msgid "Checks Unknown hours"
-msgstr "Comprobaciones en desconocido en horas"
-
-#: ../../enterprise/include/functions_reporting_csv.php:2135
-msgid "Checks Not Init hours"
-msgstr "Comprobaciones en no iniciado en horas"
-
-#: ../../enterprise/include/functions_reporting_csv.php:2136
-msgid "SLA hours"
-msgstr "SLA horas"
-
-#: ../../enterprise/include/functions_reporting_csv.php:2137
-msgid "SLA Fixed hours"
-msgstr "SLA horario fijo"
-
-#: ../../enterprise/include/functions_reporting_csv.php:2138
-msgid "Date From hours"
-msgstr "Desde"
-
-#: ../../enterprise/include/functions_reporting_csv.php:2139
-msgid "Date To hours"
-msgstr "Hasta"
-
-#: ../../enterprise/include/functions_reporting_csv.php:2140
-msgid "Status hours"
-msgstr "Estado horas"
-
-#: ../../enterprise/include/functions_reporting_csv.php:2267
-msgid "Simple Baseline Graph"
-msgstr "Gráfica simple base"
-
-#: ../../enterprise/include/functions_reporting_csv.php:2298
-#: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:567
-msgid "Custom Graph"
-msgstr "Gráfica personalizada"
-
-#: ../../enterprise/include/functions_reporting_csv.php:2334
-#: ../../enterprise/meta/include/functions_wizard_meta.php:309
-msgid "Agent modules"
-msgstr "Módulos de agentes"
-
-#: ../../enterprise/include/functions_reporting_csv.php:2443
-#: ../../include/functions_reporting.php:5479
-msgid "Alert Report Module"
-msgstr "Informe de alertas de módulo"
-
-#: ../../enterprise/include/functions_reporting_csv.php:2445
-#: ../../include/functions_reporting.php:5312
-msgid "Alert Report Agent"
-msgstr "Informe de alertas de agente"
-
-#: ../../enterprise/include/functions_reporting_csv.php:2447
-#: ../../include/functions_reporting.php:5132
-msgid "Alert Report Group"
-msgstr "Informe de alertas de grupo"
-
-#: ../../enterprise/include/functions_reporting_csv.php:2465
-msgid "Actions Triggered"
-msgstr "Acciones disparadas"
-
-#: ../../enterprise/include/functions_reporting_csv.php:2465
-msgid "Template Triggered"
-msgstr "Plantillas disparadas"
-
-#: ../../enterprise/include/functions_reporting_csv.php:2502
-msgid "Event Report Log"
-msgstr "Log de informes de eventos"
-
-#: ../../enterprise/include/functions_reporting_csv.php:2531
-#: ../../include/functions_reports.php:932
-#: ../../include/functions_reports.php:933
-#: ../../include/functions_reporting.php:4389
-msgid "Permissions report"
-msgstr "Informe de permisos"
-
-#: ../../enterprise/include/functions_reporting_csv.php:2549
-#: ../../enterprise/include/functions_reporting_csv.php:2559
-#: ../../include/functions_reporting_html.php:6168
-#: ../../include/functions_reporting_html.php:6191
-msgid "Full name"
-msgstr "Nombre completo"
-
-#: ../../enterprise/include/functions_reporting_csv.php:2549
-#: ../../enterprise/include/functions_reporting_csv.php:2559
-#: ../../include/functions_reporting_html.php:6169
-#: ../../include/functions_reporting_html.php:6192
-msgid "Permissions"
-msgstr "Permisos"
-
-#: ../../enterprise/include/functions_reporting_csv.php:2605
-msgid "Netflow data chart"
-msgstr "Gráfico de datos de Netflow"
-
-#: ../../enterprise/include/functions_reporting_csv.php:2607
-#: ../../include/functions_reports.php:907
-msgid "Netflow area chart"
-msgstr "Gráfico de área de Netflow"
-
-#: ../../enterprise/include/functions_reporting_csv.php:2660
-msgid "Netflow summary"
-msgstr "Resumen de Netflow"
-
-#: ../../enterprise/include/functions_reporting_csv.php:2680
-#: ../../include/functions_netflow.php:416
-msgid "Total flows"
-msgstr "Fluctuaciones totales"
-
-#: ../../enterprise/include/functions_reporting_csv.php:2680
-#: ../../include/functions_netflow.php:421
-msgid "Total bytes"
-msgstr "Bytes totales"
-
-#: ../../enterprise/include/functions_reporting_csv.php:2680
-#: ../../include/functions_netflow.php:426
-msgid "Total packets"
-msgstr "Paquetes totales"
-
-#: ../../enterprise/include/functions_reporting_csv.php:2680
-msgid "Avg. bits/sec"
-msgstr "Promedio de bits/seg."
-
-#: ../../enterprise/include/functions_reporting_csv.php:2680
-msgid "Avg. packets/sec"
-msgstr "Promedio de paquetes/seg."
-
-#: ../../enterprise/include/functions_reporting_csv.php:2680
-msgid "Avg. bytes/packet"
-msgstr "Promedio de bytes/paquete"
-
-#: ../../enterprise/include/functions_reporting_csv.php:2681
-msgid "Dst. IP"
-msgstr "IP de destino"
-
-#: ../../enterprise/include/functions_reporting_csv.php:2707
-msgid "Agent/module status"
-msgstr "Estado del agente/módulo"
-
-#: ../../enterprise/include/functions_reporting_csv.php:2742
-#: ../../include/functions_reporting_html.php:2080
-msgid "Last time"
-msgstr "Última vez"
-
-#: ../../enterprise/include/functions_reporting_csv.php:2786
-#: ../../include/functions_reports.php:919
-#: ../../include/functions_reporting.php:5926
-msgid "Netflow top-N connections"
-msgstr "Conexiones Netflow top-N"
-
-#: ../../enterprise/include/functions_reporting_csv.php:2808
-#: ../../include/functions_netflow.php:348
-msgid "Destination IP"
-msgstr "IP de destino"
-
-#: ../../enterprise/include/functions_reporting_csv.php:2808
-#: ../../include/functions_netflow.php:350
-msgid "% Traffic"
-msgstr "% Tráfico"
-
-#: ../../enterprise/include/functions_reporting_csv.php:2808
-msgid "Average Throughput (bits/sec)"
-msgstr "Rendimiento medio (bits/seg)"
-
-#: ../../enterprise/include/functions_enterprise_api.php:1119
-msgid "Is not metaconsole"
-msgstr "No es la metaconsola"
-
-#: ../../enterprise/include/functions_enterprise_api.php:2580
-msgid "Error getting alert actions."
-msgstr "Error al obtener acciones de alertas."
-
-#: ../../enterprise/include/functions_enterprise_api.php:3553
-#: ../../enterprise/include/functions_enterprise_api.php:3607
-#, php-format
-msgid "%d agents added to apply queue."
-msgstr "%d agentes añadidos a la cola de aplicar."
-
-#: ../../enterprise/include/functions_enterprise_api.php:3617
-#, php-format
-msgid "Id policy %d already pending to apply."
-msgstr "ID de política %d ya pendiente de aplicar."
-
-#: ../../enterprise/include/functions_enterprise_api.php:3619
-#, php-format
-msgid "Id policy %d already pending to apply in Id agent %d."
-msgstr "ID de política %d ya pendiente de aplicar en el ID de agente %d."
-
-#: ../../enterprise/include/functions_enterprise_api.php:4035
-#: ../../enterprise/include/functions_enterprise_api.php:4062
-msgid ""
-"Error adding web analysis module to policy. Id_module_type is not correct for "
-"web analysis modules."
-msgstr ""
-"Error al añadir el módulo de análisis web a la política. Id_module_type no es "
-"correcto para los módulos de análisis web."
-
-#: ../../enterprise/include/functions_enterprise_api.php:4044
-msgid ""
-"Network Module could not be added to policy. Id_module_type is not correct for "
-"network modules."
-msgstr ""
-"No se ha podido añadir el módulo de red a la política. Id_module_type no es "
-"correcto para módulos de red."
-
-#: ../../enterprise/include/functions_enterprise_api.php:4053
-msgid ""
-"Error adding web module to policy. Id_module_type is not correct for web "
-"modules."
-msgstr ""
-"Error al añadir módulo web a la política. Id_module_type no es correcto para "
-"módulos web."
-
-#: ../../enterprise/include/functions_enterprise_api.php:4074
-msgid "Error adding module to policy configuration_data is not a valid base64."
-msgstr ""
-"Error al añadir módulo a la configuración de la política, configuration_data "
-"no es una base64 válida."
-
-#: ../../enterprise/include/functions_enterprise_api.php:6075
-msgid "The agent could not be added to the policy."
-msgstr "No se ha podido añadir el agente a la política."
-
-#: ../../enterprise/include/functions_enterprise_api.php:6292
-#, php-format
-msgid "Failed Updated remote config files %d"
-msgstr "Error al actualizar los archivos de configuración remota %d"
-
-#: ../../enterprise/include/functions_enterprise_api.php:6302
-#, php-format
-msgid "Updated remote config files: %d => %d"
-msgstr "Archivos de configuración remota actualizados: %d => %d"
-
-#: ../../enterprise/include/functions_enterprise.php:456
-#: ../../enterprise/meta/general/main_header.php:240
-#: ../../enterprise/meta/general/main_menu.php:346
-#: ../../general/first_task/map_builder.php:31
-#: ../../include/class/OrderInterpreter.class.php:233
-#: ../../include/lib/Dashboard/Widgets/maps_made_by_user.php:174
-#: ../../include/lib/Dashboard/Widgets/maps_made_by_user.php:471
-msgid "Visual Console"
-msgstr "Consola visual"
-
-#: ../../enterprise/include/functions_enterprise.php:464
-msgid "Tree view by tags"
-msgstr "Vista de árbol por etiquetas"
-
-#: ../../enterprise/include/functions_enterprise.php:494
-msgid ""
-"If the interval of days until events data purge is shorter than the events "
-"data history storage interval, data will be lost. It is recommended that the "
-"storage frequency is higher than the purge frequency."
-msgstr ""
-"Si el intervalo de días hasta la purga de datos de eventos es inferior que el "
-"intervalo de almacenamiento de histórico de datos de eventos, se perderán los "
-"datos. Se recomienda configurar una frecuencia de almacenamiento inferior a la "
-"frecuencia de purga."
-
-#: ../../enterprise/include/functions_enterprise.php:496
-msgid ""
-"Problems with event days purge and event days that pass data to history DB."
-msgstr ""
-"Problemas con la fecha de purga de eventos y la fecha de traspaso de "
-"información a histórico."
-
-#: ../../enterprise/include/functions_enterprise.php:507
-msgid ""
-"If days purge is less than history days pass to history db, you will have a "
-"problems and you lost data. Recommended that days purge will more taller than "
-"days to history DB"
-msgstr ""
-"Si la fecha de purga es menor a la fecha de traspaso a histórico, los datos se "
-"perderán. Recomendamos poner una fecha de purga mayor a la del traspaso de "
-"datos a histórico."
-
-#: ../../enterprise/include/functions_enterprise.php:509
-msgid "Problems with days purge and days that pass data to history DB"
-msgstr ""
-"Problemas con la fecha de purga y la fecha de traspaso de información al "
-"histórico"
-
-#: ../../enterprise/include/ajax/log_viewer.ajax.php:65
-msgid "Capture regexp"
-msgstr "Regexp de captura"
-
-#: ../../enterprise/include/ajax/log_viewer.ajax.php:175
-msgid "Empty ip or port"
-msgstr "IP o puerto vacío"
-
-#: ../../enterprise/include/ajax/log_viewer.ajax.php:192
-msgid "Curl Error: "
-msgstr "Error curl: "
-
-#: ../../enterprise/include/ajax/ipam.ajax.php:245
-msgid "Current Networks"
-msgstr "Redes actuales"
-
-#: ../../enterprise/include/ajax/ipam.ajax.php:290
-msgid "Add networks in custom range"
-msgstr "Agregar redes en un rango personalizado"
-
-#: ../../enterprise/include/ajax/ipam.ajax.php:297
-msgid "Range"
-msgstr "Rango"
-
-#: ../../enterprise/include/ajax/ipam.ajax.php:297
-msgid ""
-"Add those networks from the top selector that belong to the range specified "
-"herein. (e.g.: 192.168.30.0/24)"
-msgstr ""
-"Agregue aquellas redes del selector superior que pertenezcan al rango "
-"especificado aquí. (por ejemplo: 192.168.30.0/24)"
-
-#: ../../enterprise/include/ajax/ipam.ajax.php:299
-msgid "Max. number"
-msgstr "Número máximo"
-
-#: ../../enterprise/include/ajax/ipam.ajax.php:299
-msgid ""
-"Maximum number of networks to be added within custom range (starting by first "
-"address in range)"
-msgstr ""
-"Número máximo de redes que se agregarán dentro del rango personalizado "
-"(comenzando por la primera dirección en el rango)"
-
-#: ../../enterprise/include/ajax/ipam.ajax.php:327
-msgid "Please, create networks to assign to "
-msgstr "Cree redes que asgignar a "
-
-#: ../../enterprise/include/ajax/ipam.ajax.php:330
-msgid "Please, create networks to assign to"
-msgstr "Creer redes que asignar a"
-
-#: ../../enterprise/include/ajax/ipam.ajax.php:374
-msgid "Go to supernet edition"
-msgstr "Ir a la edición de superred"
-
-#: ../../enterprise/include/ajax/ipam.ajax.php:416
-msgid "Go to network edition"
-msgstr "Ir a la edición de red"
-
-#: ../../enterprise/include/ajax/url_route_analyzer.ajax.php:33
-msgid "Global time: "
-msgstr "Hora global: "
-
-#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:94
-#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:253
-msgid "Group name"
-msgstr "Nombre del grupo"
-
-#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:118
-msgid "OS name"
-msgstr "Nombre del SO"
-
-#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:136
-msgid "IP Network range"
-msgstr "Intervalo de red IP"
-
-#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:141
-msgid "Script"
-msgstr "Script"
-
-#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:143
-msgid "Arguments"
-msgstr "Argumentos"
-
-#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:149
-msgid "Unknown option"
-msgstr "Opción desconocida"
-
-#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:190
-#: ../../enterprise/meta/advanced/agents_setup.autoprovision_rules.php:201
-msgid "Create rule"
-msgstr "Crear regla"
-
-#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:257
-msgid "IP range"
-msgstr "Intervalo IP"
-
-#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:258
-msgid "Script output (> 0)"
-msgstr "Salida del script (> 0)"
-
-#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:439
-#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:499
-#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:551
-#: ../../enterprise/meta/include/functions_events_meta.php:62
-#: ../../include/functions_events.php:192 ../../include/functions_events.php:2612
-#: ../../include/functions_events.php:4986
-#: ../../include/functions_reporting_html.php:1267
-#: ../../include/functions_reporting_html.php:1275
-#: ../../include/functions_reporting_html.php:4968
-msgid "Event name"
-msgstr "Nombre del evento"
-
-#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:475
-#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:587
-msgid "Script path"
-msgstr "Ruta del script"
-
-#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:479
-#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:591
-msgid "Script argument"
-msgstr "Argumento del script"
-
-#: ../../enterprise/include/ajax/top_n_widget.ajax.php:79
-msgid "avg"
-msgstr "media"
-
-#: ../../enterprise/meta/advanced/policymanager.php:58
-msgid "Policy Manager"
-msgstr "Gestor de políticas"
-
-#: ../../enterprise/meta/advanced/policymanager.php:75
-msgid "Apply policies"
-msgstr "Aplicar políticas"
-
-#: ../../enterprise/meta/advanced/policymanager.php:79
-#: ../../enterprise/meta/advanced/policymanager.php:97
-msgid "Policies queue"
-msgstr "Cola de políticas"
-
-#: ../../enterprise/meta/advanced/policymanager.php:93
-msgid "Policies apply"
-msgstr "Aplicar políticas"
-
-#: ../../enterprise/meta/advanced/policymanager.queue.php:371
-msgid "Empty queue."
-msgstr "Cola vacía"
-
-#: ../../enterprise/meta/advanced/metasetup.visual.php:51
-#: ../../enterprise/meta/advanced/metasetup.setup.php:79
-#: ../../enterprise/meta/advanced/metasetup.performance.php:47
-#: ../../enterprise/meta/advanced/metasetup.relations.php:96
-#: ../../enterprise/meta/advanced/metasetup.log.php:41
-#: ../../enterprise/meta/advanced/metasetup.auth.php:47
-#: ../../enterprise/meta/advanced/metasetup.password.php:46
-#, php-format
-msgid "Could not be update: Error in %s"
-msgstr "No se puede actualizar: error en %s"
-
-#: ../../enterprise/meta/advanced/metasetup.visual.php:197
-msgid "Data precision for reports and visual consoles"
-msgstr "Precisión de datos para informes y consolas visuales"
-
-#: ../../enterprise/meta/advanced/metasetup.visual.php:200
-msgid "Precision must be a integer number between 0 and 5"
-msgstr "La precisión debe ser un número entero entre 0 y 5"
-
-#: ../../enterprise/meta/advanced/metasetup.visual.php:219
-msgid "Show percentile 95 in graphs"
-msgstr "Mostrar el percentil 95 en los gráficos"
-
-#: ../../enterprise/meta/advanced/metasetup.visual.php:281
-#: ../../enterprise/meta/include/functions_meta.php:1478
-#: ../../include/functions_config.php:1199
-msgid "Disable help"
-msgstr "Deshabilitar ayuda"
-
-#: ../../enterprise/meta/advanced/metasetup.visual.php:294
-msgid "Graph TIP view"
-msgstr "Visor de gráfico TIP"
-
-#: ../../enterprise/meta/advanced/metasetup.visual.php:295
-msgid "This option may cause performance issues"
-msgstr "Esta opción puede generar problemas de rendimiento"
-
-#: ../../enterprise/meta/advanced/metasetup.visual.php:367
-#: ../../enterprise/meta/include/functions_meta.php:1548
-msgid "Metaconsole elements"
-msgstr "Elementos de la Metaconsola"
-
-#: ../../enterprise/meta/advanced/metasetup.visual.php:369
-msgid "The number of elements retrieved for each instance in some views."
-msgstr "Número de elementos recuperados para cada instancia en algunas vistas"
-
-#: ../../enterprise/meta/advanced/metasetup.visual.php:390
-msgid "Add new custom value to intervals"
-msgstr "Añadir nuevo valor personalizado para intervalos"
-
-#: ../../enterprise/meta/advanced/metasetup.visual.php:456
-#: ../../include/functions_config.php:1227
-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:505
-msgid ""
-"You can place your favicon into the folder images/custom_favicon/. This file "
-"should be in .ico format with a size of 16x16."
-msgstr ""
-"Puede poner su favicon en la carpeta images/custom_favicon/. Este archivo debe "
-"estar en formato .ico y tener un tamaño de 16x16."
-
-#: ../../enterprise/meta/advanced/metasetup.visual.php:533
-msgid "You can place your custom images into the folder images/backgrounds/"
-msgstr "Puedes poner tus propias imágenes en el directorio images/backgrounds/"
-
-#: ../../enterprise/meta/advanced/metasetup.visual.php:815
-msgid "Graphs font family"
-msgstr "Familia tipográfica de las gráficas"
-
-#: ../../enterprise/meta/advanced/metasetup.visual.php:838
-msgid "To use the old view when using the Visual Console visor"
-msgstr "Para usar la vista antigua al utilizar el visor de la Consola visual"
-
-#: ../../enterprise/meta/advanced/metasetup.visual.php:877
-msgid "This interval will affect to Visual Console pages"
-msgstr "Este intervalo afectará todas las páginas de la consola visual."
-
-#: ../../enterprise/meta/advanced/metasetup.visual.php:933
-msgid "Reports configuration"
-msgstr "Configuración de informes"
-
-#: ../../enterprise/meta/advanced/metasetup.visual.php:940
-msgid ""
-"Custom report description info. It will be applied to all reports and "
-"templates by default."
-msgstr ""
-"Descripción del informe personalizado. Será aplicado a todas las plantillas e "
-"informes por defecto."
-
-#: ../../enterprise/meta/advanced/metasetup.visual.php:952
-msgid ""
-"Custom report front page. It will be applied to all reports and templates by "
-"default."
-msgstr ""
-"Portada de informe personalizado. Se aplicará por defecto a todos los informes "
-"y plantillas."
-
-#: ../../enterprise/meta/advanced/metasetup.visual.php:971
-msgid ""
-"This is the height in pixels of the module graph or custom graph in the "
-"reports (only: HTML)"
-msgstr ""
-"Esta es la altura en pixeles de la gráfica de módulos o la gráfica "
-"personalizada en los informes (solo HTML)"
-
-#: ../../enterprise/meta/advanced/metasetup.visual.php:1038
-msgid ""
-"A long interval description is for example 10 hours, 20 minutes 33 seconds”, a "
-"short one is 10h 20m 33s"
-msgstr ""
-"Una descripción larga del intervalo dura por ejemplo 10 horas, 20 minutos 33 "
-"segundos”, una corta es 10h 20m 33s"
-
-#: ../../enterprise/meta/advanced/agents_setup.autoprovision.php:72
-#, php-format
-msgid "Provisioning custom data <b>%s</b> successfully deleted."
-msgstr ""
-"Datos personalizados de aprovisionamiento <b>%s</b> borrados correctamente."
-
-#: ../../enterprise/meta/advanced/agents_setup.autoprovision.php:79
-#, php-format
-msgid "Cannot delete custom data <b>%s</b>."
-msgstr "Error al borrar los datos personalizados <b>%s</b>"
-
-#: ../../enterprise/meta/advanced/agents_setup.autoprovision.php:92
-msgid "There was an error when moving the custom provisioning data."
-msgstr "Error al mover los datos de aprovisionamiento personalizado"
-
-#: ../../enterprise/meta/advanced/metasetup.consoles.php:105
-#, php-format
-msgid "Node %s is not recognized as metaconsole node."
-msgstr "El nodo %s no ha sido reconocido como nodo de la Metaconsola."
-
-#: ../../enterprise/meta/advanced/metasetup.consoles.php:112
-#, php-format
-msgid "Node %s license missmatch."
-msgstr "El nodo %s no coincide en la licencia."
-
-#: ../../enterprise/meta/advanced/metasetup.consoles.php:119
-#, php-format
-msgid "Cannot connect to node %s"
-msgstr "No puede conectarse al nodo %s"
-
-#: ../../enterprise/meta/advanced/metasetup.consoles.php:126
-#, php-format
-msgid "Unknown error synchronizing %s"
-msgstr "Error desconocido al sincronizar %s"
-
-#: ../../enterprise/meta/advanced/metasetup.consoles.php:136
-#, php-format
-msgid "Synchronized %d nodes, but some failed to synchronize %s"
-msgstr "Nodos %d sincronizados, pero algunos no han podido sincronizarse %s"
-
-#: ../../enterprise/meta/advanced/metasetup.consoles.php:143
-#, php-format
-msgid "Successfully synchronized all nodes (%d)"
-msgstr "Todos los nodos se han sincronizado correctamente (%d)"
-
-#: ../../enterprise/meta/advanced/metasetup.consoles.php:210
-msgid "Node synchronization process failed"
-msgstr "Error al sincronizar con el nodo"
-
-#: ../../enterprise/meta/advanced/metasetup.consoles.php:210
-#: ../../enterprise/meta/advanced/metasetup.consoles.php:324
-msgid ""
-"If you are trying to migrate this node to a new metaconsole, please use the "
-"form available at Settings > Enterprise at node console."
-msgstr ""
-"Si intenta migrar este nodo a una Metaconsola nueva, use el formulario "
-"disponible en Configuración > Enterprise en la consola de nodos."
-
-#: ../../enterprise/meta/advanced/metasetup.consoles.php:260
-msgid "Could not be created, duplicated register found."
-msgstr "No se pudo crear, se encontró un registro duplicado."
-
-#: ../../enterprise/meta/advanced/metasetup.consoles.php:322
-msgid "Node synchronization process failed: "
-msgstr "Error al sincronizar con el nodo"
-
-#: ../../enterprise/meta/advanced/metasetup.consoles.php:343
-msgid "Successfully registered"
-msgstr "Registrado con éxito"
-
-#: ../../enterprise/meta/advanced/metasetup.consoles.php:344
-#, php-format
-msgid "Could not be registered %s"
-msgstr "No se pudo registrar %s"
-
-#: ../../enterprise/meta/advanced/metasetup.consoles.php:370
-msgid "Successfully delete"
-msgstr "Borrado correctamente"
-
-#: ../../enterprise/meta/advanced/metasetup.consoles.php:371
-msgid "Could not be delete"
-msgstr "No se puede eliminar"
-
-#: ../../enterprise/meta/advanced/metasetup.consoles.php:413
-#, php-format
-msgid "Could not be disabled: %s"
-msgstr "No se pudo deshabilitar: %s"
-
-#: ../../enterprise/meta/advanced/metasetup.consoles.php:429
-#, php-format
-msgid ""
-"System is centralised, but you just modify nodes registered, please go to %s "
-"to perform a database merge process."
-msgstr ""
-"El sistema está centralizado, pero solo modifica los nodos registrados, vaya a "
-"%s para realizar un proceso de combinación de bases de datos."
-
-#: ../../enterprise/meta/advanced/metasetup.consoles.php:432
-msgid "This node will not be usable until unifying the environment"
-msgstr "Este nodo no será utilizable hasta unificar el entorno"
-
-#: ../../enterprise/meta/advanced/metasetup.consoles.php:507
-#, php-format
-msgid "%s Metaconsole item edition"
-msgstr "Edición de elemento de Metaconsola %s"
-
-#: ../../enterprise/meta/advanced/metasetup.consoles.php:513
-msgid "Custom label to identify this setup."
-msgstr "Etiqueta personalizada para identificar esta configuración."
-
-#: ../../enterprise/meta/advanced/metasetup.consoles.php:516
-#, php-format
-msgid "Full path to %s console (without index.php). Example %s"
-msgstr "Ruta completa de la consola %s (sin index.php). Ejemplo %s"
-
-#: ../../enterprise/meta/advanced/metasetup.consoles.php:520
-#, php-format
-msgid ""
-"Token previously configured on the destination %s console in order to use "
-"delegated authentification."
-msgstr ""
-"Token previamente configurado en la consola %s de destino para usar la "
-"autenticación delegada."
-
-#: ../../enterprise/meta/advanced/metasetup.consoles.php:613
-msgid "Define database connection from Pandora FMS node to this Metaconsole"
-msgstr ""
-"Definir conexión con la base de datos desde el nodo de Pandora FMs a esta "
-"Metaconsola."
-
-#: ../../enterprise/meta/advanced/metasetup.consoles.php:635
-msgid "Metaconsole DB Host"
-msgstr "Host de la base de datos de la Metaconsola"
-
-#: ../../enterprise/meta/advanced/metasetup.consoles.php:644
-msgid "Metaconsole DB Name"
-msgstr "Nombre de base de datos de la Metaconsola"
-
-#: ../../enterprise/meta/advanced/metasetup.consoles.php:653
-msgid "Metaconsole DB User"
-msgstr "Usuario de la base de datos de la Metaconsola"
-
-#: ../../enterprise/meta/advanced/metasetup.consoles.php:662
-msgid "Metaconsole DB Password"
-msgstr "Contraseña de la base de datos de la Metaconsola"
-
-#: ../../enterprise/meta/advanced/metasetup.consoles.php:726
-msgid "Register empty node"
-msgstr "Registrar nodo vacío"
-
-#: ../../enterprise/meta/advanced/metasetup.consoles.php:732
-msgid "Register node with data to merge"
-msgstr "Nodo de registro con datos para combinar"
-
-#: ../../enterprise/meta/advanced/metasetup.consoles.php:769
-msgid "Node data will be wiped out"
-msgstr "Los datos del nodo se borrarán"
-
-#: ../../enterprise/meta/advanced/metasetup.consoles.php:770
-msgid ""
-"Information contained in this node is not needed. Node information will be "
-"erased, and replaced with new data from this metaconsole automatically after "
-"register the node. Are you sure?"
-msgstr ""
-"La información contenida en este nodo no es necesaria. La información del nodo "
-"se borrará y se reemplazará con nuevos datos de esta metaconsola "
-"automáticamente después de registrar el nodo. ¿Estás seguro?"
-
-#: ../../enterprise/meta/advanced/metasetup.consoles.php:786
-msgid "Node data will be merged"
-msgstr "Los datos del nodo se fusionarán"
-
-#: ../../enterprise/meta/advanced/metasetup.consoles.php:787
-msgid ""
-"Information contained in this node is useful. After register the node, you "
-"must launch a merge process from command center, which will combine "
-"information in current environment with information contained in this new "
-"node. Are you sure?"
-msgstr ""
-"La información contenida en este nodo es útil. Después de registrar el nodo, "
-"debe iniciar un proceso de combinación desde el centro de comandos, que "
-"combinará la información del entorno actual con la información contenida en "
-"este nuevo nodo. ¿Estás seguro?"
-
-#: ../../enterprise/meta/advanced/metasetup.consoles.php:833
-msgid "Event replication"
-msgstr "Replicación de eventos"
-
-#: ../../enterprise/meta/advanced/metasetup.consoles.php:836
-msgid "Database sync"
-msgstr "Sincronización de bases de datos"
-
-#: ../../enterprise/meta/advanced/metasetup.consoles.php:903
-msgid "New node"
-msgstr "Nuevo nodo"
-
-#: ../../enterprise/meta/advanced/metasetup.consoles.php:935
-msgid "Synchronize all"
-msgstr "Sincronizar todo"
-
-#: ../../enterprise/meta/advanced/massive_operations.php:57
-#: ../../enterprise/meta/monitoring/wizard/wizard.php:53
-#: ../../general/node_deactivated.php:59
-msgid "command center"
-msgstr "command center"
-
-#: ../../enterprise/meta/advanced/massive_operations.php:54
-#: ../../enterprise/meta/monitoring/wizard/wizard.php:50
-#, php-format
-msgid ""
-"You should centralise management in order to use Wizard section. Please go to "
-"%s"
-msgstr ""
-"Debe centralizar la administración para utilizar la sección Asistente. Por "
-"favor, vaya a %s"
-
-#: ../../enterprise/meta/advanced/policymanager.apply.php:141
-#: ../../enterprise/meta/advanced/policymanager.apply.php:149
-msgid "Only database"
-msgstr "Bases de datos solamente"
-
-#: ../../enterprise/meta/advanced/policymanager.apply.php:186
-msgid "Apply Policies"
-msgstr "Aplicar políticas"
-
-#: ../../enterprise/meta/advanced/metasetup.setup.php:113
-#: ../../enterprise/meta/include/functions_meta.php:77
-#: ../../include/functions_config.php:178
-msgid "Language settings"
-msgstr "Configuración de idioma"
-
-#: ../../enterprise/meta/advanced/metasetup.setup.php:149
-#, php-format
-msgid ""
-"If SSL is not properly configured, you will lose access to the %s Console. Do "
-"you want to continue?"
-msgstr ""
-"Si el SSL no esta correctamente configurado, perderá el acceso a la consola "
-"%s. ¿Desea continuar?"
-
-#: ../../enterprise/meta/advanced/metasetup.setup.php:152
-msgid "Directory where temporary data is stored."
-msgstr "Directorio donde se almacenan los datos temporales"
-
-#: ../../enterprise/meta/advanced/metasetup.setup.php:158
-msgid "Directory where phantomjs binary file exists and has execution grants."
-msgstr ""
-"Directorio que contiene en archivo binario phantomjs con permisos de ejecución."
-
-#: ../../enterprise/meta/advanced/metasetup.setup.php:198
-#, php-format
-msgid ""
-"Set this value when you need your %s to be accessible via a public URL (for "
-"example using Apache mod_proxy settings)."
-msgstr ""
-"Ajuste este valor cuando necesite que %s esté accesible a través de una URL "
-"pública (por ejemplo usando los ajustes mod_proxy de Apache)."
-
-#: ../../enterprise/meta/advanced/metasetup.setup.php:202
-msgid "Force using defined public URL)."
-msgstr "Forzar usando la URL pública definida."
-
-#: ../../enterprise/meta/advanced/metasetup.setup.php:209
-#, php-format
-msgid ""
-"If public URL is not properly configured, you will lose access to the %s "
-"Console. Do you want to continue?"
-msgstr ""
-"Si la URL no está correctamente configurada, no tendrá acceso a la consola %s. "
-"¿Desea continuar?"
-
-#: ../../enterprise/meta/advanced/metasetup.setup.php:218
-msgid ""
-"Disable the definition of custom filters in the live view. Only existing "
-"filters can be used."
-msgstr ""
-"Desactiva la definición de filtros personalizados en la vista activa. Solo "
-"pueden usarse los filtros existentes."
-
-#: ../../enterprise/meta/advanced/metasetup.setup.php:222
-msgid "The string modules with several lines show as command output"
-msgstr ""
-"Los módulos de tipo cadena de texto con varias líneas se mostrarán como una "
-"salida de comando."
-
-#: ../../enterprise/meta/advanced/metasetup.setup.php:227
-msgid "Customize sections"
-msgstr "Personalizar secciones"
-
-#: ../../enterprise/meta/advanced/metasetup.setup.php:248
-msgid "Disabled sections"
-msgstr "Secciones desactivadas"
-
-#: ../../enterprise/meta/advanced/metasetup.setup.php:250
-msgid "Enabled sections"
-msgstr "Activar secciones"
-
-#: ../../enterprise/meta/advanced/metasetup.setup.php:255
-msgid "Push selected sections to enable it"
-msgstr "Selecciona las secciones elegidas para activarlo"
-
-#: ../../enterprise/meta/advanced/metasetup.setup.php:257
-msgid "Pop selected sections to disable it"
-msgstr "Deshacer selección de las secciones para desactivarlo"
-
-#: ../../enterprise/meta/advanced/metasetup.setup.php:267
-msgid "Please be careful if you put a password put https access."
-msgstr ""
-"Por favor, ten cuidado. Si tienes que introducir una contraseña pon acceso "
-"https."
-
-#: ../../enterprise/meta/advanced/metasetup.setup.php:291
-msgid "Max. agents to add in policy concurrently"
-msgstr "Máx. de agentes a añadir a una política simultáneamente"
-
-#: ../../enterprise/meta/advanced/metasetup.setup.php:291
-msgid ""
-"Maximum allowed number of agents to be added in policy concurrently (adding a "
-"high number of agents at a time can lead to performance issues)"
-msgstr ""
-"Número máximo de agentes permitido a añadir a una política simultáneamente "
-"(añadir un gran número de agentes de una vex puede causar problemas de "
-"funcionamiento)"
-
-#: ../../enterprise/meta/advanced/metasetup.setup.php:294
-msgid "Synchronization queue items warn detection"
-msgstr "Los elementos de la cola de sincronización advierten a la detección"
-
-#: ../../enterprise/meta/advanced/metasetup.setup.php:294
-msgid "Number of items in synchronization queue before be notified, per node"
-msgstr ""
-"Número de elementos en la cola de sincronización antes de ser notificados, por "
-"nodo"
-
-#: ../../enterprise/meta/advanced/metasetup.setup.php:298
-msgid "Enable Agent API"
-msgstr "Habilitar API del agente"
-
-#: ../../enterprise/meta/advanced/metasetup.setup.php:320
-msgid "Enable log viewer"
-msgstr "Habilitar el visor de logs"
-
-#: ../../enterprise/meta/advanced/metasetup.setup.php:324
-msgid "Log location: pandora_console/log/console.log"
-msgstr "Localización de logs:  pandora_console/log/console.log"
-
-#: ../../enterprise/meta/advanced/metasetup.setup.php:345
-msgid "Log location: pandora_console/log/audit.log"
-msgstr "Localización de logs:  pandora_console/log/audit.log"
-
-#: ../../enterprise/meta/advanced/metasetup.translate_string.php:129
-#: ../../enterprise/extensions/translate_string.php:253
-msgid "Translation added successfully"
-msgstr "Traducción añadida correctamente"
-
-#: ../../enterprise/meta/advanced/metasetup.translate_string.php:131
-#: ../../enterprise/extensions/translate_string.php:255
-msgid "Translation string could not be created"
-msgstr "No se ha podido crear la cadena de traducción"
-
-#: ../../enterprise/meta/advanced/metasetup.translate_string.php:144
-#: ../../enterprise/extensions/translate_string.php:268
-msgid "Translation updated successfully"
-msgstr "Traducción actualizada correctamente"
-
-#: ../../enterprise/meta/advanced/metasetup.translate_string.php:146
-#: ../../enterprise/extensions/translate_string.php:270
-msgid "Translation string could not be updated"
-msgstr "No se ha podido actualizar la cadena de traducción"
-
-#: ../../enterprise/meta/advanced/metasetup.translate_string.php:206
-#: ../../enterprise/extensions/translate_string.php:334
-msgid "Original string"
-msgstr "Cadena original"
-
-#: ../../enterprise/meta/advanced/metasetup.translate_string.php:207
-#: ../../enterprise/extensions/translate_string.php:335
-msgid "Translation in selected language"
-msgstr "Traducción en el idioma seleccionado"
-
-#: ../../enterprise/meta/advanced/metasetup.translate_string.php:208
-#: ../../enterprise/extensions/translate_string.php:336
-msgid "Customize translation"
-msgstr "Personalizar traducción"
-
-#: ../../enterprise/meta/advanced/collections.editor.php:79
-#: ../../enterprise/meta/advanced/collections.data.php:320
-msgid "This console is not manager of this environment."
-msgstr "Esta consola no es el administrador de este entorno."
-
-#: ../../enterprise/meta/advanced/metasetup.php:55
-msgid "Consoles Setup"
-msgstr "Configuración de consolas"
-
-#: ../../enterprise/meta/advanced/metasetup.php:63
-#: ../../enterprise/meta/advanced/metasetup.php:216
-msgid "General setup"
-msgstr "Configuración general"
-
-#: ../../enterprise/meta/advanced/metasetup.php:71
-#: ../../enterprise/meta/advanced/metasetup.php:219
-msgid "Passwords setup"
-msgstr "Configuración de contraseñas"
-
-#: ../../enterprise/meta/advanced/metasetup.php:101
-#: ../../enterprise/meta/advanced/metasetup.php:231
-msgid "Visual setup"
-msgstr "Configuración visual"
-
-#: ../../enterprise/meta/advanced/metasetup.php:109
-#: ../../enterprise/meta/advanced/metasetup.php:235
-msgid "Performance setup"
-msgstr "Configuración del rendimiento"
-
-#: ../../enterprise/meta/advanced/metasetup.php:125
-#: ../../enterprise/meta/advanced/metasetup.php:243
-msgid "Strings translation"
-msgstr "Traducción de cadenas"
-
-#: ../../enterprise/meta/advanced/metasetup.php:133
-#: ../../enterprise/meta/advanced/metasetup.php:247
-msgid "Mail"
-msgstr "Correo electrónico"
-
-#: ../../enterprise/meta/advanced/metasetup.php:153
-msgid "Relations rules"
-msgstr "Normas de relación"
-
-#: ../../enterprise/meta/advanced/metasetup.php:166
-msgid "Options Update Manager"
-msgstr "Opciones del Administrador de actualizaciones"
-
-#: ../../enterprise/meta/advanced/metasetup.php:174
-msgid "Options Update Journal"
-msgstr "Opciones del Update Journal"
-
-#: ../../enterprise/meta/advanced/metasetup.php:182
-msgid "Offline Update Manager"
-msgstr "Administrador de actualizaciones offline"
-
-#: ../../enterprise/meta/advanced/metasetup.php:190
-msgid "Online Update Manager"
-msgstr "Administrador de actualizaciones online"
-
-#: ../../enterprise/meta/advanced/metasetup.php:211
-msgid "Consoles setup"
-msgstr "Configuración de las consolas"
-
-#: ../../enterprise/meta/advanced/metasetup.php:255
-msgid "Relations Rules"
-msgstr "Normas de relación"
-
-#: ../../enterprise/meta/advanced/metasetup.php:259
-msgid "Online Update Options"
-msgstr "Opciones de actualización online"
-
-#: ../../enterprise/meta/advanced/metasetup.php:263
-msgid "Online Update Journal"
-msgstr "Update Journal en línea"
-
-#: ../../enterprise/meta/advanced/metasetup.php:268
-msgid "Online Update Offline"
-msgstr "Actualización sin conexión"
-
-#: ../../enterprise/meta/advanced/metasetup.php:275
-msgid "Online Update Online"
-msgstr "Actualización en línea"
-
-#: ../../enterprise/meta/advanced/component_management.php:52
-#: ../../include/functions_menu.php:536
-msgid "Tags management"
-msgstr "Gestión de etiquetas"
-
-#: ../../enterprise/meta/advanced/component_management.php:56
-msgid "Module groups Management"
-msgstr "Gestor de grupos de módulo"
-
-#: ../../enterprise/meta/advanced/component_management.php:60
-msgid "OS Management"
-msgstr "Administración de SO"
-
-#: ../../enterprise/meta/advanced/policymanager.sync.php:255
-#, php-format
-msgid "Error creating %s policies"
-msgstr "Error al crear las políticas %s"
-
-#: ../../enterprise/meta/advanced/policymanager.sync.php:259
-#, php-format
-msgid "Created %s policies"
-msgstr "%s políticas creadas"
-
-#: ../../enterprise/meta/advanced/policymanager.sync.php:264
-#, php-format
-msgid "Error creating/updating %s/%s policy modules"
-msgstr "Error al crear/actualizar %s/%s módulos de políticas"
-
-#: ../../enterprise/meta/advanced/policymanager.sync.php:268
-#, php-format
-msgid "Created/Updated %s/%s policy modules"
-msgstr "Creados/actualizados %s/%s módulos de políticas"
-
-#: ../../enterprise/meta/advanced/policymanager.sync.php:273
-#, php-format
-msgid "Error deleting %s policy modules"
-msgstr "Error al eliminar %s módulos de políticas"
-
-#: ../../enterprise/meta/advanced/policymanager.sync.php:277
-#, php-format
-msgid "Deleted %s policy modules"
-msgstr "Eliminados %s módulos de políticas"
-
-#: ../../enterprise/meta/advanced/policymanager.sync.php:282
-#, php-format
-msgid "Error creating %s policy alerts"
-msgstr "Error al crear %s alertas de políticas"
-
-#: ../../enterprise/meta/advanced/policymanager.sync.php:286
-#, php-format
-msgid "Created %s policy alerts"
-msgstr "Alertas de políticas %s creadas correctamente"
-
-#: ../../enterprise/meta/advanced/policymanager.sync.php:291
-#, php-format
-msgid "Error deleting %s policy alerts"
-msgstr "Error al eliminar %s alertas de políticas"
-
-#: ../../enterprise/meta/advanced/policymanager.sync.php:295
-#, php-format
-msgid "Deleted %s policy alerts"
-msgstr "%s alertas de políticas eliminadas correctamente"
-
-#: ../../enterprise/meta/advanced/policymanager.sync.php:308
-#: ../../include/lib/Dashboard/Widget.php:591 ../../extensions/dbmanager.php:204
-msgid "This metaconsole"
-msgstr "Esta Metaconsola"
-
-#: ../../enterprise/meta/advanced/metasetup.performance.php:83
-#: ../../enterprise/meta/include/functions_meta.php:1929
-msgid "Active events history"
-msgstr "Histórico de eventos activos"
-
-#: ../../enterprise/meta/advanced/metasetup.performance.php:94
-msgid "Migration block size"
-msgstr "Tamaño del bloque de migración"
-
-#: ../../enterprise/meta/advanced/metasetup.performance.php:106
-msgid "Number of events that will perform the desired action at the same time"
-msgstr "Número de eventos que llevarán a cabo la acción deseada a la vez."
-
-#: ../../enterprise/meta/advanced/agents_setup.php:64
-msgid "Propagation"
-msgstr "Propagación"
-
-#: ../../enterprise/meta/advanced/metasetup.relations.php:239
-msgid "Node Address Default"
-msgstr "Dirección del nodo por defecto"
-
-#: ../../enterprise/meta/advanced/metasetup.relations.php:271
-#: ../../enterprise/meta/advanced/metasetup.relations.php:388
-msgid "This value will be the one returned by the API"
-msgstr "Este será el valor devuelto por la API"
-
-#: ../../enterprise/meta/advanced/metasetup.relations.php:305
-msgid "Import file"
-msgstr "Importar archivo"
-
-#: ../../enterprise/meta/advanced/metasetup.relations.php:319
-msgid "Ip Gateway"
-msgstr "Puerta de enlace de la IP"
-
-#: ../../enterprise/meta/advanced/metasetup.relations.php:320
-#: ../../enterprise/meta/advanced/metasetup.relations.php:564
-msgid "Imei"
-msgstr "IMEI"
-
-#: ../../enterprise/meta/advanced/metasetup.relations.php:330
-#: ../../include/class/NetworkMap.class.php:3086
-#: ../../include/class/NetworkMap.class.php:3087
-msgid "Relations"
-msgstr "Relaciones"
-
-#: ../../enterprise/meta/advanced/metasetup.relations.php:351
-msgid "Relation"
-msgstr "Relación"
-
-#: ../../enterprise/meta/advanced/metasetup.relations.php:361
-#: ../../enterprise/meta/advanced/metasetup.relations.php:440
-msgid "Node Address"
-msgstr "Dirección del nodo"
-
-#: ../../enterprise/meta/advanced/metasetup.relations.php:398
-msgid "Insert relation"
-msgstr "Insertar relación"
-
-#: ../../enterprise/meta/advanced/metasetup.relations.php:406
-msgid "Show list relations"
-msgstr "Mostrar lista de relaciones"
-
-#: ../../enterprise/meta/advanced/metasetup.relations.php:462
-msgid "Show Filters"
-msgstr "Mostrar filtros"
-
-#: ../../enterprise/meta/advanced/metasetup.relations.php:549
-msgid "Node address"
-msgstr "Dirección del nodo"
-
-#: ../../enterprise/meta/advanced/metasetup.relations.php:562
-msgid "Gateway"
-msgstr "Puerta de enlace"
-
-#: ../../enterprise/meta/advanced/metasetup.relations.php:642
-msgid "There are no relations yet"
-msgstr "Aún no hay relaciones"
-
-#: ../../enterprise/meta/advanced/metasetup.mail.php:98
-msgid ""
-"Please notice that some providers like Gmail or Office365 need to setup/enable "
-"manually external connections using SMTP and you need to use STARTTLS on port "
-"587.\n"
-"\n"
-"If you have manual settings in your pandora_server.conf, please note these "
-"settings will ignore this console setup."
-msgstr ""
-"Tenga en cuenta que algunos proveedores como Gmail o Office 365 necesitan "
-"ajustar/habilitar conexiones externas manualmente utilizando SMTP y necesita "
-"usar STARTTLS en el puerto 587.\n"
-"\n"
-"Si tiene configuraciones manuales en su pandora_server.conf, tenga presente "
-"que dichos ajustes ignorarán los ajustes de la consola."
-
-#: ../../enterprise/meta/advanced/metasetup.mail.php:109
-#: ../../include/functions_config.php:370
-msgid "From dir"
-msgstr "Desde dir"
-
-#: ../../enterprise/meta/advanced/metasetup.mail.php:115
-#: ../../include/functions_config.php:366
-msgid "Server SMTP"
-msgstr "Servidor SMTP"
-
-#: ../../enterprise/meta/advanced/metasetup.mail.php:118
-#: ../../include/functions_config.php:378
-msgid "Port SMTP"
-msgstr "Puerto SMTP"
-
-#: ../../enterprise/meta/advanced/metasetup.auth.php:27
-msgid ""
-"Be aware that group synchronization can change the group configuration of the "
-"node"
-msgstr ""
-"Tenga en cuenta que la sincronización de grupos puede cambiar la configuración "
-"de grupo del nodo"
-
-#: ../../enterprise/meta/advanced/cron_main.php:75
-#: ../../enterprise/extensions/cron.php:156
-msgid "Cron jobs"
-msgstr "Tareas cron"
-
-#: ../../enterprise/meta/advanced/cron_main.php:329
-msgid ""
-"In order to make backups it is necessary to have mysqldump on your console."
-msgstr "Para hacer una copia de seguridad, debe tener mysquldump en la consola."
-
-#: ../../enterprise/meta/advanced/cron_main.php:403
-msgid "Date format in Pandora is year/month/day"
-msgstr "El formato de fecha de Pandora FMS es año/mes/día"
-
-#: ../../enterprise/meta/advanced/cron_main.php:414
-msgid "Time format in Pandora is hours(24h):minutes:seconds"
-msgstr "El formato de hora en Pandora FMS es horas(24h):minutos:segundos"
-
-#: ../../enterprise/meta/advanced/agents_setup.autoprovision_rules.php:64
-msgid "Cannot create an unnamed rule."
-msgstr "No se pudo crear una regla sin nombre."
-
-#: ../../enterprise/meta/advanced/agents_setup.autoprovision_rules.php:75
-#: ../../enterprise/meta/advanced/agents_setup.autoprovision_rules.php:105
-msgid "Error creating provisioning rule."
-msgstr "Error al crear la regla de aprovisionamiento"
-
-#: ../../enterprise/meta/advanced/agents_setup.autoprovision_rules.php:91
-#: ../../enterprise/meta/advanced/agents_setup.autoprovision_rules.php:119
-msgid "Error updating provisioning rule."
-msgstr "Error al actualizar la regla de aprovisionamiento"
-
-#: ../../enterprise/meta/advanced/agents_setup.autoprovision_rules.php:125
-msgid "Error deleting provisioning rule."
-msgstr "Error al borrar la regla de aprovisionamiento."
-
-#: ../../enterprise/meta/advanced/agents_setup.autoprovision_rules.php:135
-msgid "There was an error rule when moving the provisioning."
-msgstr "Error al mover la regla de aprovisionamiento."
-
-#: ../../enterprise/meta/advanced/agents_setup.autoprovision_rules.php:202
-msgid "Edit rule"
-msgstr "Editar regla"
-
-#: ../../enterprise/meta/advanced/links.php:60
-msgid "The link was not updated, the data is identical"
-msgstr "No se ha actualizado el link, los datos son idénticos"
-
-#: ../../enterprise/meta/advanced/links.php:100
-msgid "Link Name error"
-msgstr "Error en el nombre de link"
-
-#: ../../enterprise/meta/advanced/metasetup.password.php:73
-msgid "Passwords"
-msgstr "Contraseñas"
-
-#: ../../enterprise/meta/advanced/metasetup.password.php:105
-msgid "Set 0 if never expire."
-msgstr "Introduce 0 para que nunca expire."
-
-#: ../../enterprise/meta/advanced/metasetup.password.php:113
-msgid "Two attempts minimum"
-msgstr "2 intentos mínimo"
-
-#: ../../enterprise/meta/advanced/collections.php:111
-msgid "Collection has been deleted"
-msgstr "Se ha eliminado la colección"
-
-#: ../../enterprise/meta/advanced/collections.php:154
-msgid "To manage collections you must activate centralized management"
-msgstr "Para administrar colecciones, active la gestión centralizada"
-
-#: ../../enterprise/meta/advanced/collections.php:443
-#: ../../general/first_task/collections.php:18
-msgid "There are no collections defined yet."
-msgstr "No hay colecciones definidas todavía."
-
-#: ../../enterprise/meta/advanced/license_meta.php:59
-msgid "Metaconsole and all nodes license updated"
-msgstr "Licencia de la Metaconsola y todos sus módulos actualizada correctamente"
-
-#: ../../enterprise/meta/advanced/license_meta.php:61
-#, php-format
-msgid "Metaconsole license updated but %d of %d node synchronization failed"
-msgstr ""
-"Licencia de la Metaconsola actualizada pero %d de %d de los nodos no se "
-"sincronizaron correctamente"
-
-#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:124
-#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:127
-#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:131
-#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:135
-#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:139
-#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:143
-#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:147
-#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:151
-msgid "Agent: "
-msgstr "Agente: "
-
-#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:124
-msgid " already exists in target node"
-msgstr " ya existe en el nodo de destino"
-
-#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:127
-msgid " group does not exist in target node"
-msgstr " grupo no existe en el nodo de destino"
-
-#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:131
-msgid " policies definitions does not match  with defined ones in target node"
-msgstr ""
-" definiciones de políticas no concuerdan con aquellas definidas en el nodo de "
-"destino."
-
-#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:135
-msgid " plugins does not exist in target node"
-msgstr " plugins no existen en el nodo de destino."
-
-#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:139
-msgid " collections does not exist in target node"
-msgstr " colecciones no existen en el nodo de destino"
-
-#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:143
-msgid " inventory does not exist in target node"
-msgstr " inventario no existe en el nodo de destino"
-
-#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:147
-msgid " alerts template does not exist in target node"
-msgstr " modelo de alertas no existe en el nodo de destino"
-
-#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:151
-msgid " alerts action does not exist in target node"
-msgstr " acción de alertas no existe en el nodo de destino"
-
-#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:155
-msgid "Exists agent conf for agent: "
-msgstr "Existe una configuración para el agente: "
-
-#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:155
-msgid " please remove configuration file from target node."
-msgstr " por favor, borra el archivo de configuración del nodo de destino."
-
-#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:267
-#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:269
-msgid "The agent: "
-msgstr "El agente: "
-
-#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:267
-msgid " has been successfully added to the migration queue "
-msgstr " se añadió correctamente a la cola de migración "
-
-#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:269
-msgid " has not been added due to problems in the insertion"
-msgstr " no se añadió por problemas de inserción"
-
-#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:272
-#, php-format
-msgid "The agent: %d has already been added to the migration queue"
-msgstr "El agente: %d ya se ha añadido a la cola de migración"
-
-#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:292
-msgid "Problems delete queue"
-msgstr "Error al borrar la cola"
-
-#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:312
-msgid "Move Agents"
-msgstr "Mover agentes"
-
-#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:328
-msgid "Source Server"
-msgstr "Servidor de origen"
-
-#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:330
-msgid "Destination Server"
-msgstr "Servidor de destino"
-
-#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:364
-msgid "Agents to move"
-msgstr "Agentes para desplazar"
-
-#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:385
-msgid "Add agents to destination server"
-msgstr "Añadir agentes al servidor de destino"
-
-#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:394
-msgid "Remove agents to doesn't move to destination server"
-msgstr "Si eliminas los agentes, no se desplazarán al servidor de destino"
-
-#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:413
-msgid "Discard history data"
-msgstr "Descartar datos de histórico"
-
-#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:426
-msgid "Agents do not exist in target server."
-msgstr "Los agentes no existen en el servidor de destino."
-
-#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:427
-msgid "Check group is synchronized with target server."
-msgstr "Comprueba que el grupo está sincronizado con el servidor de destino."
-
-#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:428
-msgid "All policies needed are synchronized with target server."
-msgstr ""
-"Todas las políticas necesarias se sincronizaron con el servidor de destino."
-
-#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:429
-msgid "All remote plugins needed are synchronized with target server."
-msgstr ""
-"Todos los plugins necesarios se sincronizaron con el servidor de destino."
-
-#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:430
-msgid "All collections needed are syncronized with target server."
-msgstr ""
-"Todas las colecciones necesarias se sincronizaron con el servidor de destino."
-
-#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:431
-msgid ""
-"All remote inventory definitions needed are syncronized with target server."
-msgstr ""
-"Todos los inventarios necesarios se sincronizaron con el servidor de destino."
-
-#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:432
-msgid ""
-"All alert templates definitions needed are syncronized with target server."
-msgstr ""
-"Todas las definiciones de modelos de alertas necesarias se sincronizaron con "
-"el servidor de destino."
-
-#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:433
-msgid "All alert actions needed are syncronized with target server."
-msgstr ""
-"Todas las acciones de alertas necesarias se sincronizaron con el servidor de "
-"destino."
-
-#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:434
-msgid "Agents conf does not exists in target server."
-msgstr "La configuración del agente no existe en el servidor de destino."
-
-#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:435
-#, php-format
-msgid "Both %s servers must be in the same version"
-msgstr "Ambos servidores %s deben estar en la misma versión"
-
-#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:436
-msgid "Check target server ip address is set"
-msgstr "Comprueba que la IP del servidor de destino está configurada."
-
-#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:446
-msgid "Move"
-msgstr "Mover"
-
-#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:462
-msgid "Source node"
-msgstr "Nodo de origen"
-
-#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:463
-msgid "Target node"
-msgstr "Nodo de destino"
-
-#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:467
-msgid "Active db only"
-msgstr "BD activa solamente"
-
-#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:520
-msgid "Creating modules in target node"
-msgstr "Creando módulos en el nodo de destino"
-
-#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:524
-msgid "Disabling agent in source node and enabling in target one"
-msgstr ""
-"Deshabilitando el agente en el nodo de origen y habilitándolo en el nodo de "
-"destino"
-
-#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:528
-msgid "Transferring data"
-msgstr "Transfiriendo datos"
-
-#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:533
-msgid "Creating agent in target node"
-msgstr "Creando agente en el nodo de destino"
-
-#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:544
-#: ../../update_manager_client/lib/UpdateManager/Client.php:1874
-msgid "Completed"
-msgstr "Completado"
-
-#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:549
-msgid "Queued"
-msgstr "En espera"
-
-#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:679
-msgid "checking migration requirements"
-msgstr "Comprobando requisitos de migración"
-
-#: ../../enterprise/meta/index.php:848
-#, php-format
-msgid ""
-"System is not centralised, please go to %s to perform a database merge process."
-msgstr ""
-"El sistema no está centralizado, vaya a %s para realizar un proceso de fusión "
-"de bases de datos."
-
-#: ../../enterprise/meta/index.php:916
-#, php-format
-msgid "There are nodes with different MR than this (%d):"
-msgstr "Hay nodos con RM diferente a esta (%d):"
-
-#: ../../enterprise/meta/general/noaccess.php:130
-#: ../../enterprise/meta/general/noaccesssaml.php:130
-#: ../../enterprise/meta/general/metaconsole_no_activated.php:12
-#: ../../general/noaccess.php:130 ../../general/noaccesssaml.php:130
-#: ../../general/noaccess2.php:16 ../../general/noaccess2.php:18
-#: ../../mobile/operation/agent.php:117 ../../mobile/operation/tactical.php:79
-#: ../../mobile/operation/events.php:468 ../../mobile/operation/visualmap.php:185
-#: ../../mobile/operation/alerts.php:176 ../../mobile/operation/agents.php:186
-#: ../../mobile/operation/modules.php:218
-#: ../../mobile/operation/visualmaps.php:159 ../../mobile/operation/groups.php:59
-#: ../../mobile/operation/module_graph.php:255 ../../mobile/index.php:258
-msgid "You don't have access to this page"
-msgstr "No tienes permiso para acceder a esta página"
-
-#: ../../enterprise/meta/general/noaccess.php:135 ../../general/noaccess.php:135
-msgid ""
-"Access to this page is restricted to authorized users only, please contact "
-"system administrator if you need assistance."
-msgstr ""
-"El acceso a esta página está restringido a usuarios autorizados, póngase en "
-"contacto con el administrador del sistema si necesita ayuda."
-
-#: ../../enterprise/meta/general/noaccess.php:137 ../../general/noaccess.php:137
-#, php-format
-msgid ""
-"Please know that all attempts to access this page are recorded in security "
-"logs of %s System Database"
-msgstr ""
-"Todos los intentos de acceso a está página se grabarán en los logs de "
-"seguridad de la base de datos del sistema de %s"
-
-#: ../../enterprise/meta/general/noaccesssaml.php:135
-#: ../../general/noaccesssaml.php:135
-msgid ""
-"Access to this page is restricted to authorized users SAML only, please "
-"contact system administrator if you need assistance."
-msgstr ""
-"El acceso a esta página está restringido solo a los los usuarios SAML, póngase "
-"en contacto con el administrador del sistema si necesita ayuda."
-
-#: ../../enterprise/meta/general/noaccesssaml.php:137
-#: ../../general/noaccesssaml.php:137
-#, php-format
-msgid ""
-"Please make sure you have SAML authentication properly configured. For more "
-"information the error to access this page are recorded in security logs of %s "
-"System Database"
-msgstr ""
-"Asegúrese de que la autenticación SAML esta configurada correctamente. Para "
-"más información, el error de acceso a esta página está grabado en los logs de "
-"seguridad de la base de datos del sistema de %s"
-
-#: ../../enterprise/meta/general/logon_ok.php:84
-#: ../../enterprise/meta/general/main_header.php:232
-#: ../../enterprise/meta/general/main_menu.php:338
-#: ../../enterprise/meta/screens/screens.php:37
-msgid "Screens"
-msgstr "Pantallas"
-
-#: ../../enterprise/meta/general/metaconsole_no_activated.php:20
-#: ../../general/noaccess2.php:28
-msgid "No access"
-msgstr "Acceso denegado"
-
-#: ../../enterprise/meta/general/metaconsole_no_activated.php:24
-msgid ""
-"Metaconsole needs previous activation from regular console, please contact "
-"system administrator if you need assistance. <br>"
-msgstr ""
-"La Metaconsola necesita una activación previa desde una consola regular. "
-"Contacta con el administrador del sistema si necesitas asistencia. <br>"
-
-#: ../../enterprise/meta/general/main_header.php:109
-#: ../../enterprise/meta/general/main_menu.php:200
-msgid "Groups view"
-msgstr "Visor de grupos"
-
-#: ../../enterprise/meta/general/main_header.php:121
-#: ../../enterprise/meta/general/main_menu.php:212
-msgid "Monitors view"
-msgstr "Visor de monitores"
-
-#: ../../enterprise/meta/general/main_header.php:127
-#: ../../enterprise/meta/general/main_menu.php:218
-msgid "Custom fields view"
-msgstr "Vista de campos personalizados"
-
-#: ../../enterprise/meta/general/main_header.php:174
-#: ../../enterprise/meta/general/main_menu.php:276
-msgid "Create new report"
-msgstr "Crear un nuevo informe"
-
-#: ../../enterprise/meta/general/main_header.php:190
-#: ../../enterprise/meta/general/main_menu.php:286
-msgid "Report templates"
-msgstr "Plantillas de informes"
-
-#: ../../enterprise/meta/general/main_header.php:222
-#: ../../enterprise/meta/general/main_menu.php:309
-#: ../../views/dashboard/list.php:42 ../../views/dashboard/header.php:278
-msgid "Dashboards"
-msgstr "Dashboards"
-
-#: ../../enterprise/meta/general/main_header.php:255
-#: ../../enterprise/meta/general/main_menu.php:361
-msgid "Template Visual Console"
-msgstr "Consola visual de plantillas"
-
-#: ../../enterprise/meta/general/main_header.php:262
-#: ../../enterprise/meta/general/main_menu.php:368
-msgid "Wizard Visual Console"
-msgstr "Consola visual de asistente"
-
-#: ../../enterprise/meta/general/main_header.php:281
-#: ../../enterprise/meta/general/main_menu.php:389
-msgid "Live view"
-msgstr "Vista en vivo"
-
-#: ../../enterprise/meta/general/main_header.php:315
-#: ../../enterprise/meta/general/main_header.php:417
-#: ../../enterprise/meta/general/main_menu.php:434
-#: ../../enterprise/meta/general/main_menu.php:534
-msgid "Agent management"
-msgstr "Gestión de agentes"
-
-#: ../../enterprise/meta/general/main_header.php:333
-#: ../../enterprise/meta/general/main_header.php:439
-#: ../../enterprise/meta/general/main_menu.php:446
-#: ../../enterprise/meta/general/main_menu.php:563
-msgid "Alert management"
-msgstr "Gestión de alertas"
-
-#: ../../enterprise/meta/general/main_header.php:339
-#: ../../enterprise/meta/general/main_menu.php:452
-msgid "Component management"
-msgstr "Gestión de componentes"
-
-#: ../../enterprise/meta/general/main_header.php:345
-#: ../../enterprise/meta/general/main_menu.php:464
-#: ../../enterprise/meta/general/main_menu.php:554
-msgid "Policy management"
-msgstr "Gestión de políticas"
-
-#: ../../enterprise/meta/general/main_header.php:351
-#: ../../enterprise/meta/general/main_menu.php:470
-msgid "Category management"
-msgstr "Gestión de categorías"
-
-#: ../../enterprise/meta/general/main_header.php:357
-#: ../../enterprise/meta/general/main_header.php:430
-#: ../../enterprise/meta/general/main_menu.php:476
-#: ../../enterprise/meta/general/main_menu.php:547
-msgid "Server management"
-msgstr "Gestión de servidores"
-
-#: ../../enterprise/meta/general/main_header.php:363
-#: ../../enterprise/meta/general/main_menu.php:496
-msgid "Command Center"
-msgstr "command center"
-
-#: ../../enterprise/meta/general/main_header.php:375
-#: ../../enterprise/meta/general/main_menu.php:590
-msgid "Metasetup"
-msgstr "Metasetup"
-
-#: ../../enterprise/meta/general/main_header.php:492
-msgid "Audit Logs"
-msgstr "Registros de auditoría"
-
-#: ../../enterprise/meta/general/main_header.php:518
-#: ../../enterprise/meta/general/main_header.php:524
-#: ../../enterprise/meta/general/header.php:66
-#: ../../enterprise/meta/general/header.php:72 ../../general/header.php:48
-#: ../../general/header.php:54
-msgid "All systems"
-msgstr "Todos los sistemas"
-
-#: ../../enterprise/meta/general/main_header.php:518
-#: ../../enterprise/meta/general/header.php:66 ../../general/header.php:48
-msgid "Down"
-msgstr "Caído(s)"
-
-#: ../../enterprise/meta/general/main_header.php:521
-#: ../../enterprise/meta/general/header.php:69 ../../general/header.php:51
-msgid "servers down"
-msgstr "servidor(es) caído(s)"
-
-#: ../../enterprise/meta/general/main_header.php:524
-#: ../../enterprise/meta/general/header.php:72 ../../general/header.php:54
-msgid "Ready"
-msgstr "Preparado"
-
-#: ../../enterprise/meta/general/main_header.php:535
-#: ../../enterprise/meta/general/header.php:231
-#: ../../enterprise/meta/general/header.php:233 ../../general/header.php:432
-#: ../../general/header.php:434 ../../mobile/operation/home.php:148
-#: ../../mobile/include/user.class.php:440
-#: ../../mobile/include/functions_web.php:34
-#: ../../mobile/include/ui.class.php:225
-msgid "Logout"
-msgstr "Salir"
-
-#: ../../enterprise/meta/general/main_header.php:552
-#: ../../enterprise/meta/general/header.php:110 ../../general/header.php:235
-msgid "Configure autorefresh"
-msgstr "Configurar actualización automática"
-
-#: ../../enterprise/meta/general/main_header.php:569
-#: ../../enterprise/meta/general/main_header.php:581
-#: ../../enterprise/meta/general/header.php:137
-#: ../../enterprise/meta/general/header.php:149 ../../general/header.php:301
-#: ../../general/header.php:320
-msgid "Disabled autorefresh"
-msgstr "Actualización automática desactivada"
-
-#: ../../enterprise/meta/general/login_page.php:45
-#: ../../enterprise/meta/include/process_reset_pass.php:28
-#: ../../enterprise/meta/include/reset_pass.php:28
-#: ../../general/login_page.php:79
-msgid "Splash login"
-msgstr "Splash login"
-
-#: ../../enterprise/meta/general/login_page.php:58
-#: ../../enterprise/meta/include/process_reset_pass.php:41
-#: ../../enterprise/meta/include/reset_pass.php:41
-msgid "Go to Pandora FMS Support"
-msgstr "Ir a soporte de Pandora FMS"
-
-#: ../../enterprise/meta/general/login_page.php:60
-#: ../../enterprise/meta/general/login_page.php:71
-#: ../../enterprise/meta/include/process_reset_pass.php:43
-#: ../../enterprise/meta/include/process_reset_pass.php:54
-#: ../../enterprise/meta/include/reset_pass.php:43
-#: ../../enterprise/meta/include/reset_pass.php:54
-msgid "Go to "
-msgstr "Ir a "
-
-#: ../../enterprise/meta/general/login_page.php:69
-#: ../../enterprise/meta/include/process_reset_pass.php:52
-#: ../../enterprise/meta/include/reset_pass.php:52
-msgid "Go to Pandora FMS Wiki"
-msgstr "Ir a la Wiki de Pandora FMS"
-
-#: ../../enterprise/meta/general/login_page.php:109
-#: ../../general/login_page.php:307
-msgid "Authentication code"
-msgstr "Código de autentificación"
-
-#: ../../enterprise/meta/general/login_page.php:112
-#: ../../general/login_page.php:310 ../../mobile/include/user.class.php:473
-msgid "Check code"
-msgstr "Código de comprobación"
-
-#: ../../enterprise/meta/general/login_page.php:146
-#: ../../enterprise/meta/general/login_page.php:187
-#: ../../general/login_page.php:291 ../../mobile/include/user.class.php:384
-msgid "Login"
-msgstr "Iniciar sesión"
-
-#: ../../enterprise/meta/general/login_page.php:154
-#: ../../general/login_page.php:259 ../../mobile/include/user.class.php:404
-msgid "Login with SAML"
-msgstr "Entrar con SAML"
-
-#: ../../enterprise/meta/general/login_page.php:195
-#: ../../general/login_page.php:334 ../../general/login_page.php:337
-msgid "Forgot your password?"
-msgstr "¿Has olvidado tu contraseña?"
-
-#: ../../enterprise/meta/general/login_page.php:209
-#: ../../include/functions_config.php:2431
-msgid "PANDORA FMS NEXT GENERATION"
-msgstr "PANDORA FMS NEXT GENERATION"
-
-#: ../../enterprise/meta/general/login_page.php:217
-#: ../../enterprise/meta/include/process_reset_pass.php:150
-#: ../../enterprise/meta/include/reset_pass.php:147
-#: ../../include/functions_config.php:2435
-msgid "METACONSOLE"
-msgstr "METACONSOLA"
-
-#: ../../enterprise/meta/general/login_page.php:235
-#: ../../enterprise/meta/general/login_page.php:238
-#: ../../enterprise/meta/general/login_page.php:252
-#: ../../enterprise/meta/general/login_page.php:255
-#: ../../enterprise/meta/general/login_page.php:272
-#: ../../enterprise/meta/general/login_page.php:275
-#: ../../general/login_page.php:340 ../../general/login_page.php:343
-#: ../../general/login_page.php:428 ../../general/login_page.php:431
-#: ../../general/login_page.php:445 ../../general/login_page.php:448
-#: ../../general/login_page.php:465 ../../general/login_page.php:468
-msgid "Password reset"
-msgstr "Restablecer contraseña"
-
-#: ../../enterprise/meta/general/login_page.php:242
-#: ../../general/login_page.php:435
-msgid "INFO"
-msgstr "INFO"
-
-#: ../../enterprise/meta/general/login_page.php:243
-#: ../../general/login_page.php:436
-msgid "An email has been sent to your email address"
-msgstr "Se ha enviado un email a su dirección de correo electrónico"
-
-#: ../../enterprise/meta/general/login_page.php:279
-#: ../../general/login_page.php:472
-msgid "SUCCESS"
-msgstr "CORRECTO"
-
-#: ../../enterprise/meta/general/login_page.php:319
-#: ../../enterprise/meta/general/login_page.php:322
-#: ../../enterprise/meta/general/login_page.php:326
-#: ../../general/login_page.php:512 ../../general/login_page.php:515
-#: ../../general/login_page.php:519
-msgid "Logged out"
-msgstr "Desconectado"
-
-#: ../../enterprise/meta/general/login_page.php:327
-#: ../../general/login_page.php:521 ../../mobile/include/user.class.php:342
-#, php-format
-msgid ""
-"Your session has ended. Please close your browser window to close this %s "
-"session."
-msgstr "La sesión ha terminado. Cierre el navegador para cerrar la sesión de %s."
-
-#: ../../enterprise/meta/general/footer.php:28
-#, php-format
-msgid "%s %s - Build %s - MR %s"
-msgstr "%s %s - Desarrollo %s - MR %s"
-
-#: ../../enterprise/meta/general/footer.php:28
-msgid "Page generated at"
-msgstr "Página generada en"
-
-#: ../../enterprise/meta/general/main_menu.php:427
-#: ../../enterprise/meta/general/main_menu.php:508
-msgid "Centralised management"
-msgstr "Gestión centralizada"
-
-#: ../../enterprise/meta/general/main_menu.php:488
-msgid "Agent operations"
-msgstr "Operaciones del agente"
-
-#: ../../enterprise/meta/include/functions_autoprovision.php:378
-msgid "Round Robin"
-msgstr "Round Robin"
-
-#: ../../enterprise/meta/include/functions_autoprovision.php:383
-msgid "Less loaded"
-msgstr "Menos cargado"
-
-#: ../../enterprise/meta/include/functions_autoprovision.php:422
-msgid ""
-"It uses the Round-robin planning method to distribute, \n"
-"                in an equitable way and in a rational order, all the new "
-"Pandora software agents that reach the Metaconsole.\n"
-"                The distribution of the agents will be done in a circular way, "
-"assigning the corresponding server to each new agent.\n"
-"            "
-msgstr ""
-"Utiliza el método de planificación Round-robin para distribuir, \n"
-"                de forma equitativa y en un orden racional, todos los nuevos "
-"agentes de software de Pandora que llegan a la Metaconsola.\n"
-"                La distribución de los agentes se realizará de forma circular, "
-"asignando el servidor correspondiente a cada nuevo agente.\n"
-"            "
-
-#: ../../enterprise/meta/include/functions_autoprovision.php:430
-msgid ""
-"The new agents will be dynamically assigned to those servers with less load."
-msgstr ""
-"Los nuevos agentes se asignarán dinámicamente a aquellos servidores con menos "
-"carga."
-
-#: ../../enterprise/meta/include/functions_autoprovision.php:435
-msgid ""
-"In the customized classification, we will be able to define our own "
-"classification rules, \n"
-"                based on certain parameters retrieved from the information "
-"reported by the agent (name of the agent and its IP address).\n"
-"            "
-msgstr ""
-"En la clasificación personalizada, podremos definir nuestras propias reglas de "
-"clasificación, \n"
-"                basado en ciertos parámetros recuperados de la información "
-"reportada por el agente (nombre del agente y su dirección IP).\n"
-"            "
-
-#: ../../enterprise/meta/include/functions_autoprovision.php:529
-msgid ""
-"There is no custom entries defined. Click on \"Create custom entry\" to add "
-"the first."
-msgstr ""
-"Ninguna entrada personalizada definida. Haz clic en \"Crear entrada "
-"personalizada\" para añadir la primera."
-
-#: ../../enterprise/meta/include/functions_autoprovision.php:534
-msgid "Create custom entry"
-msgstr "Crear entrada personalizada"
-
-#: ../../enterprise/meta/include/functions_autoprovision.php:561
-msgid "Provisioning configuration"
-msgstr "Configuración de aprovisionamiento"
-
-#: ../../enterprise/meta/include/functions_autoprovision.php:572
-msgid "Configuration:"
-msgstr "Configuración:"
-
-#: ../../enterprise/meta/include/functions_autoprovision.php:610
-msgid ""
-"There is no rules configured for this custom entry. Click on Add button to "
-"create the first."
-msgstr ""
-"No hay reglas configuradas en esta entrada personalizada. Haz clic en el botón "
-"Añadir para crear la primera."
-
-#: ../../enterprise/meta/include/functions_autoprovision.php:723
-msgid "There was an error when editing the rule."
-msgstr "Error al editar la regla"
-
-#: ../../enterprise/meta/include/functions_autoprovision.php:737
-msgid "Operation:"
-msgstr "Operación:"
-
-#: ../../enterprise/meta/include/functions_autoprovision.php:751
-msgid "Method:"
-msgstr "Método:"
-
-#: ../../enterprise/meta/include/functions_autoprovision.php:816
-msgid "Move up"
-msgstr "Subir"
-
-#: ../../enterprise/meta/include/functions_autoprovision.php:824
-msgid "Move down"
-msgstr "Bajar"
-
-#: ../../enterprise/meta/include/functions_agents_meta.php:478
-#: ../../enterprise/meta/include/functions_agents_meta.php:542
-#: ../../enterprise/meta/include/functions_agents_meta.php:577
-msgid "Agents movement"
-msgstr "Movimiento de agentes"
-
-#: ../../enterprise/meta/include/functions_agents_meta.php:489
-#: ../../enterprise/meta/include/functions_agents_meta.php:557
-msgid "Provisioning management"
-msgstr "Gestión de aprovisionamiento"
-
-#: ../../enterprise/meta/include/functions_agents_meta.php:511
-#: ../../enterprise/meta/include/functions_agents_meta.php:547
-#: ../../enterprise/meta/include/functions_agents_meta.php:552
-msgid "Group management"
-msgstr "Gestionar grupos"
-
-#: ../../enterprise/meta/include/functions_agents_meta.php:522
-msgid "Tree group"
-msgstr "Árbol de grupos"
-
-#: ../../enterprise/meta/include/functions_agents_meta.php:562
-msgid "Provisioning rules management"
-msgstr "Gestión de reglas de aprovisionamiento"
-
-#: ../../enterprise/meta/include/functions_agents_meta.php:572
-msgid "Colecctions"
-msgstr "Colecciones"
-
-#: ../../enterprise/meta/include/functions_agents_meta.php:605
-msgid "Agents Management"
-msgstr "Gestión de agentes"
-
-#: ../../enterprise/meta/include/functions_agents_meta.php:614
-#: ../../enterprise/meta/include/functions_agents_meta.php:619
-#: ../../enterprise/extensions/disabled/check_acls.php:50
-#: ../../enterprise/extensions/disabled/check_acls.php:137
-#: ../../include/functions_menu.php:497
-msgid "Agents management"
-msgstr "Gestión de agentes"
-
-#: ../../enterprise/meta/include/functions_alerts_meta.php:141
-msgid "Calendar"
-msgstr "Calendario"
-
-#: ../../enterprise/meta/include/functions_relations.php:49
-msgid "Invalid file content"
-msgstr "Contenido del archivo no válido"
-
-#: ../../enterprise/meta/include/functions_relations.php:54
-msgid "No relations found"
-msgstr "No se han encontrado relaciones"
-
-#: ../../enterprise/meta/include/functions_relations.php:80
-#: ../../enterprise/meta/include/functions_relations.php:91
-#: ../../enterprise/meta/include/functions_relations.php:102
-#, php-format
-msgid "The relation type: %s to %s -> %s was not saved"
-msgstr "El tipo de relación: %s a %s -> %s no se ha guardado"
-
-#: ../../enterprise/meta/include/functions_relations.php:123
-#, php-format
-msgid "The relation %s -> %s was not saved"
-msgstr "La relación  %s -> %s no se ha guardado"
-
-#: ../../enterprise/meta/include/functions_relations.php:133
-msgid "File imported successfully"
-msgstr "El archivo se ha importado con éxito"
-
-#: ../../enterprise/meta/include/functions_relations.php:136
-msgid "Error inserting relations"
-msgstr "Error al insertar relaciones"
-
-#: ../../enterprise/meta/include/functions_relations.php:165
-msgid "Empty string"
-msgstr "Cadena vacía"
-
-#: ../../enterprise/meta/include/functions_relations.php:170
-msgid "Empty custom node address"
-msgstr "Dirección del nodo personalizada vacía"
-
-#: ../../enterprise/meta/include/functions_relations.php:208
-#, php-format
-msgid ""
-"The relation type: %s to %s -> %s was not saved. This relationship already "
-"exists in the database"
-msgstr ""
-"El tipo de relación: %s a %s -> %s no se ha guardado. Esta relación ya existe "
-"en la base de datos"
-
-#: ../../enterprise/meta/include/functions_relations.php:230
-#, php-format
-msgid "Error inserting the relation %s -> %s"
-msgstr "Error al insertar la relación %s -> %s"
-
-#: ../../enterprise/meta/include/functions_relations.php:238
-msgid "Relation created successfully"
-msgstr "Relación creada con éxito"
-
-#: ../../enterprise/meta/include/functions_relations.php:263
-msgid "Error deleting the relation"
-msgstr "Error al eliminar la relación"
-
-#: ../../enterprise/meta/include/functions_relations.php:269
-msgid "Relation deleted successfully"
-msgstr "Relación eliminada con éxito"
-
-#: ../../enterprise/meta/include/functions_groups_meta.php:114
-#, php-format
-msgid "Error Duplicate name (%s) "
-msgstr "Error al duplicar nombre (%s) "
-
-#: ../../enterprise/meta/include/functions_groups_meta.php:132
-#, php-format
-msgid "(Error Duplicate ID (%d) ) "
-msgstr "(Error ID Duplicado (%d) ) "
-
-#: ../../enterprise/meta/include/functions_groups_meta.php:153
-msgid "Error Duplicate name"
-msgstr "Error al duplicar nombre"
-
-#: ../../enterprise/meta/include/functions_users_meta.php:200
-msgid "User synchronization"
-msgstr "Sincronización de usuarios"
-
-#: ../../enterprise/meta/include/functions_users_meta.php:216
-msgid "Group synchronization"
-msgstr "Sincronización de grupos"
-
-#: ../../enterprise/meta/include/functions_components_meta.php:96
-#: ../../enterprise/meta/include/functions_components_meta.php:143
-msgid "Network components"
-msgstr "Componentes de red"
-
-#: ../../enterprise/meta/include/functions_components_meta.php:104
-#: ../../enterprise/meta/include/functions_components_meta.php:147
-msgid "Plugin management"
-msgstr "Gestión de plugins"
-
-#: ../../enterprise/meta/include/functions_components_meta.php:153
-msgid "Create plugin"
-msgstr "Crear plugin"
-
-#: ../../enterprise/meta/include/functions_components_meta.php:155
-msgid "Edit plugin"
-msgstr "Editar plugin"
-
-#: ../../enterprise/meta/include/functions_wizard_meta.php:362
-msgid "Add selected modules to agent"
-msgstr "Añadir los módulos seleccionados al agente"
-
-#: ../../enterprise/meta/include/functions_wizard_meta.php:400
-msgid "Undo changes"
-msgstr "Deshacer los cambios"
-
-#: ../../enterprise/meta/include/functions_wizard_meta.php:589
-msgid "Latency"
-msgstr "Latencia"
-
-#: ../../enterprise/meta/include/functions_wizard_meta.php:590
-msgid "Response"
-msgstr "Respuesta"
-
-#: ../../enterprise/meta/include/functions_wizard_meta.php:645
-msgid "String to check"
-msgstr "Cadena para comprobar"
-
-#: ../../enterprise/meta/include/functions_wizard_meta.php:651
-msgid "Add check"
-msgstr "Añadir comprobación"
-
-#: ../../enterprise/meta/include/functions_wizard_meta.php:660
-msgid "Delete check"
-msgstr "Eliminar comprobación"
-
-#: ../../enterprise/meta/include/functions_wizard_meta.php:954
-#: ../../enterprise/meta/include/functions_wizard_meta.php:1044
-#: ../../enterprise/meta/include/functions_wizard_meta.php:1254
-msgid "Various"
-msgstr "Varios"
-
-#: ../../enterprise/meta/include/functions_wizard_meta.php:962
-#: ../../enterprise/meta/include/functions_wizard_meta.php:1476
-#: ../../include/class/ExternalTools.class.php:570
-msgid "SNMP Community"
-msgstr "Comunidad SNMP"
-
-#: ../../enterprise/meta/include/functions_wizard_meta.php:994
-#: ../../enterprise/meta/include/functions_wizard_meta.php:1078
-#: ../../enterprise/meta/include/functions_wizard_meta.php:1309
-#: ../../include/ajax/module.php:981
-msgid "Thresholds"
-msgstr "Umbrales"
-
-#: ../../enterprise/meta/include/functions_wizard_meta.php:1089
-msgid "Web configuration"
-msgstr "Configuración web"
-
-#: ../../enterprise/meta/include/functions_wizard_meta.php:1281
-#: ../../enterprise/meta/include/functions_wizard_meta.php:1294
-#: ../../enterprise/meta/include/functions_wizard_meta.php:1721
-#: ../../enterprise/meta/include/functions_wizard_meta.php:1728
-msgid "Str: "
-msgstr "Cadena: "
-
-#: ../../enterprise/meta/include/functions_wizard_meta.php:1290
-#: ../../enterprise/meta/include/functions_wizard_meta.php:1303
-msgid " Inverse interval "
-msgstr " Intervalo inverso "
-
-#: ../../enterprise/meta/include/functions_wizard_meta.php:1363
-msgid "Alerts in module"
-msgstr "Alertas en el módulo"
-
-#: ../../enterprise/meta/include/functions_wizard_meta.php:1371
-#: ../../include/functions_reporting_html.php:5036
-msgid "Alert description"
-msgstr "Descripción de la alerta"
-
-#: ../../enterprise/meta/include/functions_wizard_meta.php:1534
-#: ../../enterprise/meta/include/functions_wizard_meta.php:1626
-#: ../../enterprise/meta/include/functions_wizard_meta.php:1750
-#: ../../enterprise/meta/include/functions_wizard_meta.php:1824
-#: ../../enterprise/meta/monitoring/wizard/wizard.agent.php:66
-#: ../../enterprise/meta/monitoring/wizard/wizard.module.network.php:122
-#: ../../enterprise/meta/monitoring/wizard/wizard.module.web.php:103
-#: ../../enterprise/meta/monitoring/wizard/wizard.module.local.php:110
-#: ../../enterprise/views/ncm/agent/details.php:265
-msgid "Preview"
-msgstr "Vista previa"
-
-#: ../../enterprise/meta/include/functions_wizard_meta.php:1609
-msgid "Checks"
-msgstr "Comprobaciones"
-
-#: ../../enterprise/meta/include/functions_wizard_meta.php:1818
-msgid "Deleted modules"
-msgstr "Módulos eliminados"
-
-#: ../../enterprise/meta/include/functions_wizard_meta.php:2006
-#: ../../enterprise/meta/include/functions_wizard_meta.php:2106
-#: ../../enterprise/meta/include/functions_wizard_meta.php:2661
-#: ../../enterprise/meta/include/functions_wizard_meta.php:2780
-#: ../../enterprise/meta/include/functions_wizard_meta.php:2871
-#: ../../enterprise/meta/include/functions_wizard_meta.php:3066
-msgid "Another module already exists with the same name"
-msgstr "Ya existe otro módulo con el mismo nombre."
-
-#: ../../enterprise/meta/include/functions_wizard_meta.php:2018
-#: ../../enterprise/meta/include/functions_wizard_meta.php:2113
-#: ../../enterprise/meta/include/functions_wizard_meta.php:2673
-#, php-format
-msgid "Error adding module %s"
-msgstr "Error al añadir el módulo %s"
-
-#: ../../enterprise/meta/include/functions_wizard_meta.php:2027
-#: ../../enterprise/meta/include/functions_wizard_meta.php:2122
-msgid "There was an error creating the alerts, the operation has been cancelled"
-msgstr "Error al crear las alertas; operación cancelada"
-
-#: ../../enterprise/meta/include/functions_wizard_meta.php:2211
-#, php-format
-msgid "Could not create agent %s"
-msgstr "No se pudieron crear agentes %s"
-
-#: ../../enterprise/meta/include/functions_wizard_meta.php:2224
-msgid "Agent successfully added"
-msgstr "Agentes añadidos correctamente"
-
-#: ../../enterprise/meta/include/functions_wizard_meta.php:2245
-#: ../../enterprise/meta/include/functions_wizard_meta.php:2363
-#, php-format
-msgid "%s Modules created"
-msgstr "%s módulos creados"
-
-#: ../../enterprise/meta/include/functions_wizard_meta.php:2321
-#, php-format
-msgid "Could not update agent %s"
-msgstr "No se pudo actualizar el agente %s"
-
-#: ../../enterprise/meta/include/functions_wizard_meta.php:2369
-#, php-format
-msgid "%s Modules deleted"
-msgstr "%s módulos eliminados"
-
-#: ../../enterprise/meta/include/functions_wizard_meta.php:2685
-msgid ""
-"There was an error creating the alerts, the operation has been cancelled ."
-msgstr "Error al crear las alertas; operación cancelada"
-
-#: ../../enterprise/meta/include/functions_wizard_meta.php:2715
-msgid "Module successfully added."
-msgstr "Módulo añadido correctamente"
-
-#: ../../enterprise/meta/include/functions_wizard_meta.php:2787
-#: ../../enterprise/meta/include/functions_wizard_meta.php:2878
-#: ../../enterprise/meta/include/functions_wizard_meta.php:3073
-#, php-format
-msgid "Error updating module %s"
-msgstr "Error al actualizar el módulo %s"
-
-#: ../../enterprise/meta/include/functions_wizard_meta.php:2809
-#: ../../enterprise/meta/include/functions_wizard_meta.php:2900
-#: ../../enterprise/meta/include/functions_wizard_meta.php:3095
-msgid "There was an error updating the alerts, the operation has been cancelled"
-msgstr "Error al actualizar las alertas, operación cancelada"
-
-#: ../../enterprise/meta/include/functions_wizard_meta.php:2830
-#: ../../enterprise/meta/include/functions_wizard_meta.php:2921
-#: ../../enterprise/meta/include/functions_wizard_meta.php:3116
-msgid "Successfully updated module."
-msgstr "Módulo actualizado correctamente"
-
-#: ../../enterprise/meta/include/functions_wizard_meta.php:3496
-msgid "Manage agent modules"
-msgstr "Gestionar módulos de agentes"
-
-#: ../../enterprise/meta/include/functions_ui_meta.php:53
-#, php-format
-msgid "%s - the Flexible Monitoring System"
-msgstr "%s - Flexible Monitoring System"
-
-#: ../../enterprise/meta/include/functions_events_meta.php:58
-#: ../../include/functions_events.php:191
-msgid "Event id"
-msgstr "Identificación del evento"
-
-#: ../../enterprise/meta/include/functions_events_meta.php:114
-#: ../../include/functions_events.php:205 ../../include/functions_events.php:4705
-msgid "Extra id"
-msgstr "ID extra"
-
-#: ../../enterprise/meta/include/functions_meta.php:49
-msgid "No admin user"
-msgstr "No hay usuario administrador"
-
-#: ../../enterprise/meta/include/functions_meta.php:68
-#: ../../include/functions_config.php:405
-msgid "Activate Metaconsole"
-msgstr "Activar la Metaconsola"
-
-#: ../../enterprise/meta/include/functions_meta.php:112
-msgid "Centralized management"
-msgstr "Gestión centralizada"
-
-#: ../../enterprise/meta/include/functions_meta.php:120
-#: ../../include/functions_config.php:224
-msgid "Attachment store."
-msgstr "Almacenamiento de adjuntos."
-
-#: ../../enterprise/meta/include/functions_meta.php:198
-msgid "Netflow disable custom live view filters"
-msgstr "Desactivar filtros personalizados en la vista en vivo de Netflow"
-
-#: ../../enterprise/meta/include/functions_meta.php:262
-msgid "Customizable section"
-msgstr "Sección personalizable"
-
-#: ../../enterprise/meta/include/functions_meta.php:283
-msgid "Agent API"
-msgstr "API del agente"
-
-#: ../../enterprise/meta/include/functions_meta.php:323
-msgid "Policy add max. agents"
-msgstr "Máx. de agentes a añadir en la política"
-
-#: ../../enterprise/meta/include/functions_meta.php:332
-msgid "Sync items warn detection"
-msgstr "Sincronización de elementos de advertencia de detección"
-
-#: ../../enterprise/meta/include/functions_meta.php:470
-msgid "IP ElasticSearch"
-msgstr "IP ElasticSearch"
-
-#: ../../enterprise/meta/include/functions_meta.php:480
-msgid "Port ElasticSearch"
-msgstr "Puerto ElasticSearch"
-
-#: ../../enterprise/meta/include/functions_meta.php:592
-msgid "2FA_all_users"
-msgstr "2FA_all_users"
-
-#: ../../enterprise/meta/include/functions_meta.php:604
-#: ../../enterprise/meta/include/functions_meta.php:897
-#: ../../include/functions_config.php:748 ../../include/functions_config.php:754
-msgid "Session timeout"
-msgstr "Sesión expirada"
-
-#: ../../enterprise/meta/include/functions_meta.php:754
-#: ../../include/functions_config.php:700
-msgid "Saml path"
-msgstr "Ruta de SAML"
-
-#: ../../enterprise/meta/include/functions_meta.php:767
-#: ../../include/functions_config.php:704
-msgid "Saml source"
-msgstr "Saml origen"
-
-#: ../../enterprise/meta/include/functions_meta.php:780
-#: ../../include/functions_config.php:708
-msgid "Saml user id parameter"
-msgstr "Parámetro de ID de usuario saml"
-
-#: ../../enterprise/meta/include/functions_meta.php:793
-#: ../../include/functions_config.php:712
-msgid "Saml mail parameter"
-msgstr "Parámetro de correo de saml"
-
-#: ../../enterprise/meta/include/functions_meta.php:806
-#: ../../include/functions_config.php:716
-msgid "Saml group name parameter"
-msgstr "Parámetro de nombre de grupo saml"
-
-#: ../../enterprise/meta/include/functions_meta.php:819
-#: ../../include/functions_config.php:720
-msgid "Saml attr type parameter"
-msgstr "Parámetro de tipo de attr saml"
-
-#: ../../enterprise/meta/include/functions_meta.php:832
-#: ../../include/functions_config.php:724
-msgid "Saml profiles and tags parameter"
-msgstr "Parámetro de perfiles y etiquetas saml"
-
-#: ../../enterprise/meta/include/functions_meta.php:845
-#: ../../include/functions_config.php:736
-msgid "Saml profile and tag separator"
-msgstr "Separador de perfil y etiqueta saml"
-
-#: ../../enterprise/meta/include/functions_meta.php:858
-msgid "SAML profile parameters"
-msgstr "Parámetros de perfil SAML"
-
-#: ../../enterprise/meta/include/functions_meta.php:871
-#: ../../include/functions_config.php:732
-msgid "Saml tag parameter"
-msgstr "Parámetro de etiqueta saml"
-
-#: ../../enterprise/meta/include/functions_meta.php:990
-msgid "LDAP secondary enabled"
-msgstr "LDAP secundario habilitado"
-
-#: ../../enterprise/meta/include/functions_meta.php:999
-msgid "Secondary LDAP server"
-msgstr "Servidor LDAP secundario"
-
-#: ../../enterprise/meta/include/functions_meta.php:1009
-msgid "Secondary LDAP port"
-msgstr "Puerto LDAP secundario"
-
-#: ../../enterprise/meta/include/functions_meta.php:1019
-msgid "Secondary LDAP version"
-msgstr "Versión LDAP secundaria"
-
-#: ../../enterprise/meta/include/functions_meta.php:1029
-msgid "Secondary start TLS"
-msgstr "TLS de inicio secundario"
-
-#: ../../enterprise/meta/include/functions_meta.php:1039
-msgid "Secondary base DN"
-msgstr "Base secundaria DN"
-
-#: ../../enterprise/meta/include/functions_meta.php:1049
-msgid "Secondary login attribute"
-msgstr "Atributo de inicio de sesión secundario"
-
-#: ../../enterprise/meta/include/functions_meta.php:1059
-msgid "Admin secondary LDAP login"
-msgstr "Inicio de sesión LDAP secundario del administrador"
-
-#: ../../enterprise/meta/include/functions_meta.php:1069
-msgid "Admin secondary LDAP password"
-msgstr "Contraseña LDAP secundaria del administrador"
-
-#: ../../enterprise/meta/include/functions_meta.php:1112
-#: ../../include/functions_config.php:656
-msgid "Save profile"
-msgstr "Guardar perfil"
-
-#: ../../enterprise/meta/include/functions_meta.php:1135
-#, php-format
-msgid "%s host"
-msgstr "Host %s"
-
-#: ../../enterprise/meta/include/functions_meta.php:1189
-msgid "Babel Enterprise host"
-msgstr "Servidor de Babel Enterprise"
-
-#: ../../enterprise/meta/include/functions_meta.php:1308
-#: ../../include/functions_config.php:922
-msgid "Timestamp or time comparation"
-msgstr "Marca o comparación temporal"
-
-#: ../../enterprise/meta/include/functions_meta.php:1318
-msgid "Graph color (min)"
-msgstr "Color del gráfico (mín.)"
-
-#: ../../enterprise/meta/include/functions_meta.php:1328
-msgid "Graph color (avg)"
-msgstr "Color del gráfico (med.)"
-
-#: ../../enterprise/meta/include/functions_meta.php:1338
-msgid "Graph color (max)"
-msgstr "Color del gráfico (máx.)"
-
-#: ../../enterprise/meta/include/functions_meta.php:1373
-#: ../../include/functions_config.php:970
-msgid "Data precision for reports"
-msgstr "Precisión de los datos en los informes"
-
-#: ../../enterprise/meta/include/functions_meta.php:1488
-msgid "full scale charts"
-msgstr "Gráficas a escala completa"
-
-#: ../../enterprise/meta/include/functions_meta.php:1498
-msgid "type mode type charts"
-msgstr "tipo de gráfica"
-
-#: ../../enterprise/meta/include/functions_meta.php:1518
-msgid "type mode zoom charts"
-msgstr "zoom de gráfica"
-
-#: ../../enterprise/meta/include/functions_meta.php:1538
-msgid "Type of charts"
-msgstr "Tipo de gráficos"
-
-#: ../../enterprise/meta/include/functions_meta.php:1578
-#: ../../include/functions_config.php:1019
-msgid "Custom logo collapsed"
-msgstr "El logo personalizado se ha plegado"
-
-#: ../../enterprise/meta/include/functions_meta.php:1588
-msgid "Custom logo (white background)"
-msgstr "Logo personalizado (fondo blanco)"
-
-#: ../../enterprise/meta/include/functions_meta.php:1608
-#: ../../include/functions_config.php:1027
-msgid "Custom logo login"
-msgstr "Logo personalizado en la pantalla de bienvenida"
-
-#: ../../enterprise/meta/include/functions_meta.php:1618
-#: ../../include/functions_config.php:1031
-msgid "Custom splash login"
-msgstr "Login de Splash personalizado"
-
-#: ../../enterprise/meta/include/functions_meta.php:1648
-#: ../../include/functions_config.php:1067
-msgid "Custom title1 login"
-msgstr "Título1 conexión personalizado"
-
-#: ../../enterprise/meta/include/functions_meta.php:1658
-#: ../../include/functions_config.php:1071
-msgid "Custom title2 login"
-msgstr "Título2 conexión personalizado"
-
-#: ../../enterprise/meta/include/functions_meta.php:1668
-#: ../../include/functions_config.php:1059
-msgid "Meta custom title header"
-msgstr "Encabezado de título personalizado"
-
-#: ../../enterprise/meta/include/functions_meta.php:1678
-#: ../../include/functions_config.php:1063
-msgid "Meta custom subtitle header"
-msgstr "Encabezado de subtítulos meta personalizado"
-
-#: ../../enterprise/meta/include/functions_meta.php:1708
-msgid "Custom background login"
-msgstr "Fondo personalizado del inicio de sesión"
-
-#: ../../enterprise/meta/include/functions_meta.php:1718
-msgid "Custom product name"
-msgstr "Nombre de producto personalizado"
-
-#: ../../enterprise/meta/include/functions_meta.php:1728
-msgid "Custom copyright notice"
-msgstr "Aviso de copyright personalizado"
-
-#: ../../enterprise/meta/include/functions_meta.php:1777
-#: ../../include/functions_config.php:1003
-msgid "Font path"
-msgstr "Ruta de la tipografía"
-
-#: ../../enterprise/meta/include/functions_meta.php:1787
-#: ../../include/functions_config.php:1433
-msgid "Use data multiplier"
-msgstr "Usar multiplicador de datos"
-
-#: ../../enterprise/meta/include/functions_meta.php:1799
-#: ../../include/functions_config.php:1389
-msgid "Custom report info"
-msgstr "Información del informe personalizado"
-
-#: ../../enterprise/meta/include/functions_meta.php:1884
-#: ../../include/functions_config.php:1127
-msgid "Use the legacy Visual Console"
-msgstr "Usar la consola visual heredada"
-
-#: ../../enterprise/meta/include/functions_meta.php:1895
-#: ../../include/functions_config.php:1131
-msgid "Default expiration of the Visual Console item's cache"
-msgstr "Caducidad del caché de los elementos de la consola visual por defecto"
-
-#: ../../enterprise/meta/include/functions_meta.php:1969
-msgid "Default block size migration agents"
-msgstr "Tamaño del bloque de migración de agentes por defecto"
-
-#: ../../enterprise/meta/include/functions_meta.php:1981
-msgid "Default block size execution event"
-msgstr "Evento de ejecución en bloque por defecto"
-
-#: ../../enterprise/meta/include/functions_meta.php:1992
-msgid "Default row limit in csv log"
-msgstr "Límite de líneas por defecto en el log CSV"
-
-#: ../../enterprise/meta/include/functions_meta.php:2022
-#: ../../include/functions_config.php:911
-msgid "PhantomJS cache interval"
-msgstr "Intervalo de caché de PhantomJS"
-
-#: ../../enterprise/meta/include/functions_meta.php:2038
-msgid "Node address default"
-msgstr "Dirección del nodo por defecto"
-
-#: ../../enterprise/meta/include/process_reset_pass.php:142
-#: ../../enterprise/meta/include/reset_pass.php:139
-#, php-format
-msgid "%s NEXT GENERATION"
-msgstr "%s SIGUIENTE GENERACIÓN"
-
-#: ../../enterprise/meta/include/ajax/wizard.ajax.php:56
-msgid "Agent succesfully deleted"
-msgstr "Agente eliminado correctamente"
-
-#: ../../enterprise/meta/include/ajax/wizard.ajax.php:58
-msgid "Could not delete agent"
-msgstr "No se pudo borrar el agente"
-
-#: ../../enterprise/meta/screens/screens.visualmap.php:71
-msgid "Create visualmap"
-msgstr "Crear mapa visual"
-
-#: ../../enterprise/meta/agentsearch.php:121
-msgid "Search results for"
-msgstr "Buscar resultados para"
-
-#: ../../enterprise/meta/agentsearch.php:301
-msgid "There are no agents included in this group"
-msgstr "No hay ningún agente en este grupo"
-
-#: ../../enterprise/meta/agentsearch.php:450
-msgid "There are no policies included in this group"
-msgstr "No hay políticas incluidas en este grupo"
-
-#: ../../enterprise/meta/monitoring/group_view.php:55
-msgid "Group View"
-msgstr "Vista de grupo"
-
-#: ../../enterprise/meta/monitoring/group_view.php:151
-msgid "Summary by status"
-msgstr "Resumen por estados"
-
-#: ../../enterprise/meta/monitoring/group_view.php:160
-#: ../../enterprise/meta/monitoring/group_view.php:172
-msgid "% Agents not init"
-msgstr "% agentes no iniciados"
-
-#: ../../enterprise/meta/monitoring/group_view.php:163
-msgid "% Agents Warning"
-msgstr "% Agentes en advertencia"
-
-#: ../../enterprise/meta/monitoring/group_view.php:166
-msgid "% Agents OK"
-msgstr "% Agentes OK"
-
-#: ../../enterprise/meta/monitoring/group_view.php:169
-msgid "% Agents Unknown"
-msgstr "% monitores en estado desconocido"
-
-#: ../../enterprise/meta/monitoring/group_view.php:177
-msgid "% Monitors Critical"
-msgstr "% monitores en estado crítico"
-
-#: ../../enterprise/meta/monitoring/group_view.php:180
-msgid "% Monitors Warning"
-msgstr "% monitores en estado de advertencia"
-
-#: ../../enterprise/meta/monitoring/group_view.php:183
-msgid "% Monitors OK"
-msgstr "% monitores en estado OK"
-
-#: ../../enterprise/meta/monitoring/group_view.php:186
-msgid "% Monitors Unknown"
-msgstr "% módulos en estado desconocido"
-
-#: ../../enterprise/meta/monitoring/group_view.php:189
-msgid "% Monitors Not init"
-msgstr "% módulos no iniciados"
-
-#: ../../enterprise/meta/monitoring/group_view.php:217
-#: ../../enterprise/meta/monitoring/group_view.php:223
-msgid "This data doesn't show in realtime"
-msgstr "Estos datos no se muestran en tiempo real"
-
-#: ../../enterprise/meta/monitoring/group_view.php:234
-msgid "Group or Tag"
-msgstr "Grupo o etiqueta"
-
-#: ../../enterprise/meta/monitoring/custom_fields_csv.php:136
-msgid "No init"
-msgstr "No iniciados"
-
-#: ../../enterprise/meta/monitoring/tactical.php:40
-#: ../../include/class/OrderInterpreter.class.php:105
-msgid "Tactical View"
-msgstr "Vista táctica"
-
-#: ../../enterprise/meta/monitoring/tactical.php:251
-msgid "Report of state"
-msgstr "Informe de estado"
-
-#: ../../enterprise/meta/monitoring/tactical.php:279
-msgid "Report of events"
-msgstr "Informe de eventos"
-
-#: ../../enterprise/meta/monitoring/tactical.php:284
-msgid "Info of state in events"
-msgstr "Información de estado en eventos"
-
-#: ../../enterprise/meta/monitoring/tactical.php:302
-msgid "More events"
-msgstr "Más eventos"
-
-#: ../../enterprise/meta/monitoring/wizard/wizard.update_agent.php:46
-#: ../../enterprise/meta/monitoring/wizard/wizard.php:155
-#: ../../enterprise/meta/monitoring/wizard/wizard.php:213
-#: ../../enterprise/meta/monitoring/wizard/wizard.module.network.php:195
-#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:131
-#: ../../enterprise/meta/monitoring/wizard/wizard.update_module.php:92
-#: ../../enterprise/meta/monitoring/wizard/wizard.module.web.php:147
-#: ../../enterprise/meta/monitoring/wizard/wizard.module.local.php:156
-#, php-format
-msgid "Cannot connect to %s instance."
-msgstr "No se ha podido conectar con la instancia de %s."
-
-#: ../../enterprise/meta/monitoring/wizard/wizard.php:134
-msgid "The alert you are trying to add is already in the list of alerts"
-msgstr ""
-"La alerta que estás intentando añadir ya se encuentra en la lista de alertas."
-
-#: ../../enterprise/meta/monitoring/wizard/wizard.php:139
-#: ../../include/functions_events.php:3387
-#: ../../include/functions_events.php:3675
-msgid "New"
-msgstr "Nuevo"
-
-#: ../../enterprise/meta/monitoring/wizard/wizard.php:144
-msgid ""
-"Are you sure? If the agent is on a policy, it will be removed from the policy."
-msgstr ""
-"¿Está seguro? Si el agente esta incluido en una política, se eliminará de "
-"dicha política."
-
-#: ../../enterprise/meta/monitoring/wizard/wizard.php:146
-msgid "Please, select an alert"
-msgstr "Por favor, selecciona una alerta."
-
-#: ../../enterprise/meta/monitoring/wizard/wizard.php:147
-msgid "Please, select an agent"
-msgstr "Por favor, selecciona un agente."
-
-#: ../../enterprise/meta/monitoring/wizard/wizard.php:153
-msgid "No agent name specified"
-msgstr "No se especificó el nombre del agente."
-
-#: ../../enterprise/meta/monitoring/wizard/wizard.php:154
-msgid "Another agent already exists with the same name"
-msgstr "Ya hay otro agente con ese nombre."
-
-#: ../../enterprise/meta/monitoring/wizard/wizard.agent.php:80
-msgid "Edit agent"
-msgstr "Editar agente"
-
-#: ../../enterprise/meta/monitoring/wizard/wizard.agent.php:146
-#: ../../enterprise/meta/monitoring/wizard/wizard.module.network.php:252
-#: ../../enterprise/meta/monitoring/wizard/wizard.module.web.php:212
-#: ../../enterprise/meta/monitoring/wizard/wizard.module.local.php:211
-#: ../../include/functions.php:3867 ../../views/dashboard/slides.php:203
-msgid "Previous"
-msgstr "Anterior"
-
-#: ../../enterprise/meta/monitoring/wizard/wizard.agent.php:198
-#: ../../enterprise/meta/monitoring/wizard/wizard.module.network.php:280
-msgid "Please, set a valid IP/Name address"
-msgstr "Por favor, introduce una IP/Nombre de dirección válido."
-
-#: ../../enterprise/meta/monitoring/wizard/wizard.agent.php:209
-msgid "Please, select a group first"
-msgstr "Por favor, seleccione primero un grupo"
-
-#: ../../enterprise/meta/monitoring/wizard/wizard.module.network.php:120
-#: ../../enterprise/meta/monitoring/wizard/wizard.module.web.php:101
-#: ../../enterprise/meta/monitoring/wizard/wizard.module.local.php:108
-msgid "Advanced configuration"
-msgstr "Configuración avanzada"
-
-#: ../../enterprise/meta/monitoring/wizard/wizard.module.network.php:281
-#: ../../enterprise/meta/monitoring/wizard/wizard.module.web.php:238
-#: ../../enterprise/meta/monitoring/wizard/wizard.module.local.php:229
-msgid "Invalid characters founded in module name"
-msgstr "Se han encontrado caracteres no válidos en el nombre del módulo."
-
-#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:148
-#: ../../include/functions_reporting_html.php:5076
-#: ../../include/functions_reporting_html.php:5230
-#: ../../mobile/include/functions_web.php:24
-msgid "Monitor"
-msgstr "Monitor"
-
-#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:148
-msgid "Web check"
-msgstr "Comprobación web"
-
-#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:245
-msgid "Module description"
-msgstr "Descripción del módulo"
-
-#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:267
-msgid "Step by step wizard"
-msgstr "Wizard paso a paso"
-
-#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:275
-#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:280
-msgid "Click Create to continue"
-msgstr "Haz clic en Crear para continuar"
-
-#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:285
-msgid "Select the agent to be edited or deleted"
-msgstr "Selecciona el agente que quieras editar o eliminar"
-
-#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:334
-msgid "Manage modules"
-msgstr "Gestionar módulos"
-
-#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:380
-msgid "Select the agent where the module will be created"
-msgstr "Selecciona el agente donde quieres crear el módulo"
-
-#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:393
-msgid "Create Module"
-msgstr "Crear módulo"
-
-#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:450
-msgid "Select the module to be edited or deleted"
-msgstr "Selecciona el módulo para editarlo o borrarlo"
-
-#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:505
-#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:545
-msgid "Error creating alert"
-msgstr "Error al crear una alerta"
-
-#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:509
-msgid "Alert could not be created"
-msgstr "No se pudo crear la alerta"
-
-#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:529
-msgid "Perform create alert"
-msgstr "Realizar crear alerta"
-
-#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:533
-msgid "Alert created correctly"
-msgstr "Alerta creada correctamente"
-
-#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:549
-msgid "Alert template must be setted"
-msgstr "La plantilla de alerta debe estar configurada"
-
-#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:588
-#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:621
-msgid "Error updating alert"
-msgstr "Alerta de actualización de error"
-
-#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:592
-msgid "Something gone wrong with alert update"
-msgstr "Algo salió mal con la actualización de alertas"
-
-#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:603
-msgid "Perform update alert"
-msgstr "Realizar alerta de actualización"
-
-#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:607
-msgid "Alert updated correctly"
-msgstr "Alerta actualizada correctamente"
-
-#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:625
-msgid "Template must be set."
-msgstr "Se debe establecer la plantilla."
-
-#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:718
-msgid "Select the module where the alert will be created"
-msgstr "Selecciona el módulo donde se creará la alerta"
-
-#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:800
-msgid "Select the alert to be edited or deleted"
-msgstr "Selecciona la alerta que quieres editar o eliminar"
-
-#: ../../enterprise/meta/monitoring/wizard/wizard.manage_alert.php:248
-msgid "Create new template"
-msgstr "Crear nueva plantilla"
-
-#: ../../enterprise/meta/monitoring/wizard/wizard.manage_alert.php:280
-msgid "Create new action"
-msgstr "Crear nueva acción"
-
-#: ../../enterprise/meta/monitoring/wizard/wizard.module.web.php:231
-msgid "Please, set a name"
-msgstr "Por favor, introduce un nombre."
-
-#: ../../enterprise/meta/monitoring/wizard/wizard.module.web.php:252
-msgid "Please, set an interval"
-msgstr "Por favor, introduce un intervalo."
-
-#: ../../enterprise/meta/monitoring/custom_fields_view.php:54
-msgid "Custom fields View"
-msgstr "Vista de campos personalizados"
-
-#: ../../enterprise/meta/monitoring/custom_fields_view.php:66
-msgid "Custom Fields View"
-msgstr "Vista de campos personalizados"
-
-#: ../../enterprise/meta/monitoring/custom_fields_view.php:187
-msgid "Status agents"
-msgstr "Agentes de estado"
-
-#: ../../enterprise/meta/monitoring/custom_fields_view.php:203
-msgid "Status module"
-msgstr "Módulo de estado"
-
-#: ../../enterprise/meta/monitoring/custom_fields_view.php:250
-#: ../../general/first_task/custom_fields.php:24
-msgid "Custom Fields"
-msgstr "Campos personalizados"
-
-#: ../../enterprise/meta/monitoring/custom_fields_view.php:266
-msgid "Custom Fields Data"
-msgstr "Datos de campos personalizados"
-
-#: ../../enterprise/meta/monitoring/custom_fields_view.php:374
-#: ../../include/functions_agents.php:3857
-#: ../../include/functions_reporting_html.php:5507
-#: ../../mobile/operation/groups.php:153
-msgid "Agents critical"
-msgstr "Agentes críticos"
-
-#: ../../enterprise/meta/monitoring/custom_fields_view.php:387
-#: ../../include/functions_agents.php:3867
-#: ../../include/functions_reporting_html.php:5510
-msgid "Agents warning"
-msgstr "Agentes en estado de advertencia"
-
-#: ../../enterprise/meta/monitoring/custom_fields_view.php:400
-#: ../../include/functions_agents.php:3847
-#: ../../include/functions_agents.php:3901
-#: ../../include/functions_reporting_html.php:5516
-msgid "Agents ok"
-msgstr "Agentes OK"
-
-#: ../../enterprise/meta/monitoring/custom_fields_view.php:413
-#: ../../include/functions_agents.php:3877
-#: ../../include/functions_reporting_html.php:5519
-#: ../../mobile/operation/groups.php:156
-msgid "Agents unknown"
-msgstr "Agentes desconocidos"
-
-#: ../../enterprise/meta/monitoring/custom_fields_view.php:426
-#: ../../include/functions_agents.php:3891
-#: ../../include/functions_reporting_html.php:5525
-#: ../../mobile/operation/groups.php:150
-msgid "Agents not init"
-msgstr "Agentes no iniciados"
-
-#: ../../enterprise/meta/monitoring/custom_fields_view.php:474
-#: ../../include/functions_reporting.php:11420
-msgid "Monitor normal"
-msgstr "Monitor normal"
-
-#: ../../enterprise/meta/monitoring/custom_fields_view.php:496
-#: ../../include/functions_reporting.php:11431
-msgid "Monitor not init"
-msgstr "Monitor en estado no iniciado"
-
-#: ../../enterprise/meta/monitoring/custom_fields_view.php:511
-#: ../../include/functions_reporting_html.php:5534
-#: ../../include/functions_reporting_html.php:5539
-msgid "Agents by status"
-msgstr "Agentes por estado"
-
-#: ../../enterprise/meta/monitoring/custom_fields_view.php:519
-#: ../../include/functions_reporting.php:11451
-#: ../../include/functions_reporting.php:11457
-msgid "Monitors by status"
-msgstr "Monitores por estado"
-
-#: ../../enterprise/meta/monitoring/custom_fields_view.php:672
-msgid "Total counters"
-msgstr "Contadores totales"
-
-#: ../../enterprise/meta/monitoring/custom_fields_view.php:675
-msgid "Total Agents"
-msgstr "Agentes totales"
-
-#: ../../enterprise/meta/monitoring/custom_fields_view.php:684
-msgid "Total Modules"
-msgstr "Módulos totales"
-
-#: ../../enterprise/meta/monitoring/custom_fields_view.php:705
-msgid "I.P"
-msgstr "IP"
-
-#: ../../enterprise/meta/monitoring/custom_fields_view.php:719
-#: ../../include/functions_api.php:166
-msgid "No data to show."
-msgstr "No hay datos."
-
-#: ../../enterprise/meta/monitoring/custom_fields_view.php:727
-msgid "There are no custom search defined."
-msgstr "No hay búsquedas personalizadas definidas."
-
-#: ../../enterprise/meta/event/custom_events.php:98
-msgid "The user is not in neither group with EW profile"
-msgstr "El usuario no se encuentra en ninguno de los grupos con el perfil EW."
-
-#: ../../enterprise/extensions/csv_import_group.php:50
-#, php-format
-msgid ""
-"This node is configured with centralized mode. All group information is read "
-"only. Go to %s to import the CSV."
-msgstr ""
-"Este nodo se configura con el modo centralizado. Toda la información del grupo "
-"es de solo lectura. Vaya a %s para importar el CSV."
-
-#: ../../enterprise/extensions/csv_import_group.php:69
-#: ../../enterprise/extensions/csv_import_group/main.php:23
-msgid "CSV import group"
-msgstr "Importar grupos de CSV"
-
-#: ../../enterprise/extensions/csv_import_group.php:83
-msgid "CSV group import"
-msgstr "Importación de grupo CSV"
-
-#: ../../enterprise/extensions/resource_exportation/functions.php:20
-msgid "Export agents"
-msgstr "Exportar agentes"
-
-#: ../../enterprise/extensions/vmware.php:46
-msgid "Failed to initialize VMware extension."
-msgstr "Error al inicializar la extensión VMware"
-
-#: ../../enterprise/extensions/vmware.php:89
-msgid "VMware View"
-msgstr "Vista VMware"
-
-#: ../../enterprise/extensions/translate_string.php:168
-#: ../../enterprise/extensions/translate_string.php:380
-msgid "Translate string"
-msgstr "Traducir cadena"
-
-#: ../../enterprise/extensions/disabled/check_acls.php:16
-msgid "ACL users for this agent"
-msgstr "Usuarios ACL para este agente"
-
-#: ../../enterprise/extensions/disabled/check_acls.php:49
-#: ../../enterprise/extensions/disabled/check_acls.php:136
-msgid "Agents reading"
-msgstr "Lectura de agentes"
-
-#: ../../enterprise/extensions/disabled/check_acls.php:51
-#: ../../enterprise/extensions/disabled/check_acls.php:138
-msgid "Agents disable"
-msgstr "Deshabilitar agentes"
-
-#: ../../enterprise/extensions/disabled/check_acls.php:52
-#: ../../enterprise/extensions/disabled/check_acls.php:139
-msgid "Alerts editing"
-msgstr "Edición de alertas"
-
-#: ../../enterprise/extensions/disabled/check_acls.php:54
-#: ../../enterprise/extensions/disabled/check_acls.php:141
-msgid "Database management"
-msgstr "Gestión de la BD"
-
-#: ../../enterprise/extensions/disabled/check_acls.php:55
-#: ../../enterprise/extensions/disabled/check_acls.php:142
-msgid "Alerts management"
-msgstr "Gestión de alertas"
-
-#: ../../enterprise/extensions/disabled/check_acls.php:56
-#: ../../enterprise/extensions/disabled/check_acls.php:143
-msgid "Reports reading"
-msgstr "Lectura de informes"
-
-#: ../../enterprise/extensions/disabled/check_acls.php:57
-#: ../../enterprise/extensions/disabled/check_acls.php:144
-msgid "Reports writing"
-msgstr "Escritura de informes"
-
-#: ../../enterprise/extensions/disabled/check_acls.php:58
-#: ../../enterprise/extensions/disabled/check_acls.php:145
-msgid "Reports management"
-msgstr "Gestión de informes"
-
-#: ../../enterprise/extensions/disabled/check_acls.php:59
-#: ../../enterprise/extensions/disabled/check_acls.php:146
-msgid "Events reading"
-msgstr "Lectura de eventos"
-
-#: ../../enterprise/extensions/disabled/check_acls.php:60
-#: ../../enterprise/extensions/disabled/check_acls.php:147
-msgid "Events writing"
-msgstr "Escritura de eventos"
-
-#: ../../enterprise/extensions/disabled/check_acls.php:61
-#: ../../enterprise/extensions/disabled/check_acls.php:148
-msgid "Events management"
-msgstr "Gestión de eventos"
-
-#: ../../enterprise/extensions/disabled/check_acls.php:62
-#: ../../enterprise/extensions/disabled/check_acls.php:149
-msgid "Systems management"
-msgstr "Gestión de sistemas"
-
-#: ../../enterprise/extensions/disabled/check_acls.php:112
-msgid "There are no defined users"
-msgstr "No hay usuarios definidos"
-
-#: ../../enterprise/extensions/disabled/check_acls.php:197
-msgid "ACL module tags for the modules in this agent"
-msgstr "Etiquetas del módulo de ACL para los módulos de este agente"
-
-#: ../../enterprise/extensions/disabled/check_acls.php:208
-msgid "Only admin users can see this section."
-msgstr "Solo los usuarios administradores pueden ver esta sección."
-
-#: ../../enterprise/extensions/disabled/check_acls.php:215
-msgid "Check ACL"
-msgstr "Comprobar ACL"
-
-#: ../../enterprise/extensions/resource_registration/functions.php:61
-#, php-format
-msgid "Error create '%s' policy, the name exist and there aren't free name."
-msgstr ""
-"Error al crear la política '%s', el nombre ya existe. Ese nombre no está "
-"disponible."
-
-#: ../../enterprise/extensions/resource_registration/functions.php:69
-#, php-format
-msgid "Warning create '%s' policy, the name exist, the policy have a name %s."
-msgstr ""
-"Política de advertencia '%s' creada, el nombre existe, la política tiene el "
-"nombre %s."
-
-#: ../../enterprise/extensions/resource_registration/functions.php:78
-msgid "Error the policy haven't name."
-msgstr "Error: la política no tiene nombre."
-
-#: ../../enterprise/extensions/resource_registration/functions.php:99
-#, php-format
-msgid "Success create '%s' policy."
-msgstr "Política '%s' creada correctamente"
-
-#: ../../enterprise/extensions/resource_registration/functions.php:100
-#, php-format
-msgid "Error create '%s' policy."
-msgstr "Error al crear la política '%s'"
-
-#: ../../enterprise/extensions/resource_registration/functions.php:142
-#, php-format
-msgid "Error add '%s' agent. The agent does not exist"
-msgstr "Error al añadir el agente '%s'. El agente no existe"
-
-#: ../../enterprise/extensions/resource_registration/functions.php:147
-#, php-format
-msgid "Success add '%s' agent."
-msgstr "Agente '%s' añadido correctamente"
-
-#: ../../enterprise/extensions/resource_registration/functions.php:148
-#, php-format
-msgid "Error add '%s' agent."
-msgstr "Error al añadir el agente '%s'"
-
-#: ../../enterprise/extensions/resource_registration/functions.php:167
-msgid "The collection does not exist"
-msgstr "La colección no existe"
-
-#: ../../enterprise/extensions/resource_registration/functions.php:172
-#, php-format
-msgid "Success add '%s' collection."
-msgstr "Colección '%s' añadida correctamente"
-
-#: ../../enterprise/extensions/resource_registration/functions.php:173
-#, php-format
-msgid "Error add '%s' collection."
-msgstr "Error al añadir colección '%s'"
-
-#: ../../enterprise/extensions/resource_registration/functions.php:191
-#, php-format
-msgid "Success add '%s' agent plugin."
-msgstr "Plugin de agente '%s' añadido correctamente"
-
-#: ../../enterprise/extensions/resource_registration/functions.php:192
-#, php-format
-msgid "Error add '%s' agent plugin."
-msgstr "Error al añadir el plugin de agente '%s'"
-
-#: ../../enterprise/extensions/resource_registration/functions.php:205
-msgid "Error add the module, haven't type."
-msgstr "Error al añadir el módulo. No tiene tipo."
-
-#: ../../enterprise/extensions/resource_registration/functions.php:411
-#: ../../enterprise/extensions/resource_registration/functions.php:480
-#: ../../enterprise/extensions/resource_registration/functions.php:581
-#: ../../enterprise/extensions/resource_registration/functions.php:637
-msgid "Error add the module, error in tag component."
-msgstr "Error al añadir el módulo, error en el componente etiqueta."
-
-#: ../../enterprise/extensions/resource_registration/functions.php:693
-msgid "Error add the module plugin importation, plugin is not registered"
-msgstr "Error al importar el plugin del módulo; el plugin no está registrado."
-
-#: ../../enterprise/extensions/resource_registration/functions.php:703
-#, php-format
-msgid "Success add '%s' module."
-msgstr "Módulo '%s' añadido correctamente"
-
-#: ../../enterprise/extensions/resource_registration/functions.php:704
-#, php-format
-msgid "Error add '%s' module."
-msgstr "Error al añadir el módulo '%s'"
-
-#: ../../enterprise/extensions/resource_registration/functions.php:718
-#, php-format
-msgid "Error add the alert, the template '%s' don't exist."
-msgstr "Error al añadir la alerta, la plantilla '%s' no existe."
-
-#: ../../enterprise/extensions/resource_registration/functions.php:731
-#: ../../enterprise/extensions/resource_registration/functions.php:749
-#, php-format
-msgid "Error add the alert, the module '%s' don't exist."
-msgstr "Error al añadir la alerta, el módulo  '%s' no existe."
-
-#: ../../enterprise/extensions/resource_registration/functions.php:771
-#, php-format
-msgid "Success add '%s' alert."
-msgstr "Alerta  '%s' añadida correctamente"
-
-#: ../../enterprise/extensions/resource_registration/functions.php:772
-#, php-format
-msgid "Error add '%s' alert."
-msgstr "Error al añadir alerta  '%s'"
-
-#: ../../enterprise/extensions/resource_registration/functions.php:798
-#, php-format
-msgid "Error add the alert, the action '%s' don't exist."
-msgstr "Error al añadir alerta; la acción '%s' no existe."
-
-#: ../../enterprise/extensions/resource_registration/functions.php:817
-#, php-format
-msgid "Success add '%s' action."
-msgstr "Acción '%s' añadida correctamente"
-
-#: ../../enterprise/extensions/resource_registration/functions.php:818
-#: ../../extensions/resource_registration.php:436
-#: ../../extensions/resource_registration.php:458
-#: ../../extensions/resource_registration.php:469
-#, php-format
-msgid "Error add '%s' action."
-msgstr "Error al añadir la acción '%s'"
-
-#: ../../enterprise/extensions/resource_registration/functions.php:854
-msgid "The inventory module does not exist"
-msgstr "El módulo de inventario no existe"
-
-#: ../../enterprise/extensions/resource_registration/functions.php:859
-#, php-format
-msgid "Success add '%s' inventory module."
-msgstr "Éxito agregar el módulo de inventario '%s'."
-
-#: ../../enterprise/extensions/resource_registration/functions.php:860
-#, php-format
-msgid "Error add '%s' inventory module."
-msgstr "Error al agregar el módulo de inventario '%s'."
-
-#: ../../enterprise/extensions/csv_import_group/main.php:48
-#, php-format
-msgid "Created group %s"
-msgstr "Grupo creado %s"
-
-#: ../../enterprise/extensions/csv_import_group/main.php:49
-#, php-format
-msgid "Could not create group %s"
-msgstr "No se pudo crear el grupo %s"
-
-#: ../../enterprise/extensions/csv_import_group/main.php:56
-msgid "File processed"
-msgstr "Archivo procesado"
-
-#: ../../enterprise/extensions/csv_import_group/main.php:59
-msgid "Please syncronize groups to nodes"
-msgstr "Sincronice los grupos con los nodos"
-
-#: ../../enterprise/extensions/vmware/vmware_view.php:61
-msgid "Top 5 VMs CPU Usage"
-msgstr "Top 5 VMs del uso de CPU"
-
-#: ../../enterprise/extensions/vmware/vmware_view.php:70
-msgid "Top 5 VMs Memory Usage"
-msgstr "Top 5 VMs del uso de memoria"
-
-#: ../../enterprise/extensions/vmware/vmware_view.php:82
-msgid "Top 5 VMs Provisioning Usage"
-msgstr "Top 5 VMs en uso de aprovisionamiento"
-
-#: ../../enterprise/extensions/vmware/vmware_view.php:91
-msgid "Top 5 VMs Network Usage"
-msgstr "Top 5 VMs del uso de la red"
-
-#: ../../enterprise/extensions/vmware/vmware_view.php:684
-msgid "Host ESX"
-msgstr "Host ESX"
-
-#: ../../enterprise/extensions/vmware/vmware_view.php:1036
-msgid "CPU Usage"
-msgstr "Uso de CPU"
-
-#: ../../enterprise/extensions/vmware/vmware_view.php:1046
-msgid "Memory Usage"
-msgstr "Uso de memoria"
-
-#: ../../enterprise/extensions/vmware/vmware_view.php:1056
-msgid "Disk I/O Rate"
-msgstr "Ratio lectura/escritura de disco"
-
-#: ../../enterprise/extensions/vmware/vmware_view.php:1066
-msgid "Network Usage"
-msgstr "Uso de red"
-
-#: ../../enterprise/extensions/vmware/vmware_view.php:1169
-msgid "Settings updated "
-msgstr "Ajustes actualizados "
-
-#: ../../enterprise/extensions/vmware/vmware_view.php:1171
-msgid "No changes in settings "
-msgstr "No hay cambios en los ajustes "
-
-#: ../../enterprise/extensions/vmware/vmware_view.php:1179
-msgid "CPU usage graphs"
-msgstr "Gráficas de uso de CPU"
-
-#: ../../enterprise/extensions/vmware/vmware_view.php:1180
-#: ../../enterprise/extensions/vmware/vmware_view.php:1186
-#: ../../enterprise/extensions/vmware/vmware_view.php:1192
-#: ../../enterprise/extensions/vmware/vmware_view.php:1198
-msgid "Force minimum value"
-msgstr "Forzar valor mínimo"
-
-#: ../../enterprise/extensions/vmware/vmware_view.php:1182
-#: ../../enterprise/extensions/vmware/vmware_view.php:1188
-#: ../../enterprise/extensions/vmware/vmware_view.php:1194
-#: ../../enterprise/extensions/vmware/vmware_view.php:1200
-msgid "Force maximum value"
-msgstr "Forzar valor máximo"
-
-#: ../../enterprise/extensions/vmware/vmware_view.php:1185
-msgid "Memory usage graphs"
-msgstr "Gráficos de uso de memoria"
-
-#: ../../enterprise/extensions/vmware/vmware_view.php:1191
-msgid "Provisioning Usage graphs"
-msgstr "Gráficos de uso de aprovisionamiento"
-
-#: ../../enterprise/extensions/vmware/vmware_view.php:1197
-msgid "Network usage graphs"
-msgstr "Gráficos de uso de red"
-
-#: ../../enterprise/extensions/vmware/vmware_view.php:1208
-msgid "Map items"
-msgstr "Elementos del mapa"
-
-#: ../../enterprise/extensions/vmware/vmware_view.php:1209
-msgid "Show datastores"
-msgstr "Mostrar datastores"
-
-#: ../../enterprise/extensions/vmware/vmware_view.php:1216
-msgid "Show ESXis"
-msgstr "Mostrar ESXis"
-
-#: ../../enterprise/extensions/vmware/vmware_view.php:1223
-msgid "Show VMs"
-msgstr "Mostrar VMs"
-
-#: ../../enterprise/extensions/vmware/vmware_view.php:1230
-msgid "Font size (px)"
-msgstr "Tamaño de fuente (px)"
-
-#: ../../enterprise/extensions/vmware/vmware_view.php:1232
-msgid "Node radius (px)"
-msgstr "Radio del nodo (px)"
-
-#: ../../enterprise/extensions/vmware/vmware_view.php:1234
-msgid "Node separation (rate)"
-msgstr "Separación de nodos (tasa)"
-
-#: ../../enterprise/extensions/vmware/vmware_view.php:1239
-msgid ""
-"Looking for VMware configuration? You can configure several tasks using "
-"Discovery Applications."
-msgstr ""
-"¿Está buscando la configuración VMware? Puede configurar varias tareas usando "
-"las aplicaciones de Discovery."
-
-#: ../../enterprise/extensions/vmware/vmware_view.php:1247
-msgid "Graph settings"
-msgstr "Ajustes de gráfico"
-
-#: ../../enterprise/extensions/vmware/vmware_view.php:1252
-msgid "Map settings"
-msgstr "Ajustes del mapa"
-
-#: ../../enterprise/extensions/vmware/vmware_view.php:1296
-#: ../../enterprise/extensions/vmware/vmware_view.php:1368
-msgid "Welcome"
-msgstr "Bienvenid@"
-
-#: ../../enterprise/extensions/vmware/vmware_view.php:1327
-msgid "ESX Detail"
-msgstr "Detalle de ESX"
-
-#: ../../enterprise/extensions/vmware/vmware_view.php:1358
-msgid "ESX details"
-msgstr "Detalles de ESX"
-
-#: ../../enterprise/extensions/vmware/vmware_view.php:1363
-msgid "VMware view options"
-msgstr "Opciones de la vista de VMware"
-
-#: ../../enterprise/extensions/vmware/vmware_view.php:1399
-msgid "VMWare"
-msgstr "VMware"
-
-#: ../../enterprise/extensions/vmware/vmware_view.php:1504
-msgid ""
-"Some ESX Hosts are not up to date, please check VMware plugin configuration."
-msgstr ""
-"Algunos hosts ESX no están actualizados. Compruebe la configuración del plugin "
-"VMware."
-
-#: ../../enterprise/extensions/vmware/vmware_view.php:1506
-msgid "VMware plugin is working."
-msgstr "El plugin de VMware está en funcionamiento."
-
-#: ../../enterprise/extensions/vmware/vmware_view.php:1515
-msgid "View VMware map"
-msgstr "Vista del mapa VMware"
-
-#: ../../enterprise/extensions/vmware/vmware_view.php:1516
-msgid "View VMware dashboard"
-msgstr "Vista del panel VMware"
-
-#: ../../enterprise/extensions/vmware/vmware_view.php:1517
-msgid "View ESX Host statistics from"
-msgstr "Ver estadísticas del host ESX desde"
-
-#: ../../enterprise/extensions/vmware/vmware_view.php:1524
-msgid "There are no VMware information detected in this environment."
-msgstr "No se ha detectado información VMware en este entorno."
-
-#: ../../enterprise/extensions/vmware/vmware_view.php:1525
-msgid "You can configure several tasks using Discovery Applications at "
-msgstr "Puede configurar diversas tareas usando las aplicaciones Discovery en "
-
-#: ../../enterprise/extensions/vmware/vmware_view.php:1734
-#, php-format
-msgid ""
-"This map is a quick representation of all your VMware entities detected. You "
-"can create a custom VMware map by defining a network map based on your VMware "
-"discovery task %s"
-msgstr ""
-"Este mapa es una representación rápida de todas las entidades VMWare "
-"detectadas. Puede crear un mapa VMWare personalizado definiendo un mapa de red "
-"basado en sus tareas de descubrimiento VMWare %s"
-
-#: ../../enterprise/extensions/vmware/vmware_view.php:1744
-msgid "Show Datastores"
-msgstr "Mostrar datastores"
-
-#: ../../enterprise/extensions/vmware/vmware_view.php:1747
-msgid "Show ESX"
-msgstr "Mostrar ESX"
-
-#: ../../enterprise/extensions/vmware/vmware_view.php:1750
-msgid "Show VM"
-msgstr "Mostrar VM"
-
-#: ../../enterprise/extensions/vmware/vmware_view.php:1772
-msgid "View options"
-msgstr "Ver opciones"
-
-#: ../../enterprise/extensions/vmware/vmware_manager.php:227
-msgid "Power Status: "
-msgstr "Estado: "
-
-#: ../../enterprise/extensions/vmware/vmware_manager.php:273
-msgid "Change Status"
-msgstr "Cambiar estado:"
-
-#: ../../enterprise/load_enterprise.php:560
-msgid "Failed while updating license."
-msgstr "Error al actualizar la licencia."
-
-#: ../../enterprise/load_enterprise.php:585
-#: ../../enterprise/load_enterprise.php:650
-msgid "Invalid licence."
-msgstr "Licencia no válida"
-
-#: ../../enterprise/load_enterprise.php:585
-msgid "Please contact your system administrator."
-msgstr "Por favor, contacta con el administrador del sistema."
-
-#: ../../enterprise/load_enterprise.php:650
-#, php-format
-msgid "Please contact %s for a valid licence."
-msgstr "Póngase en contacto con %s para obtener una licencia válida."
-
-#: ../../enterprise/load_enterprise.php:651
-#, php-format
-msgid "Or disable %s enterprise"
-msgstr "O desabilite %s enterprise"
-
-#: ../../enterprise/load_enterprise.php:753
-#: ../../enterprise/load_enterprise.php:1048
-msgid "Request new licence"
-msgstr "Solicitar una nueva licencia"
-
-#: ../../enterprise/load_enterprise.php:832
-msgid ""
-"<strong style=\"font-size: 11pt\">Metaconsole unreached</strong> <br><br> This "
-"node has a metaconsole license and cannot contact with the metaconsole."
-msgstr ""
-"<strong style=\"font-size: 11pt\">No se pudo conectar con la Metaconsola</"
-"strong> <br><br> Este nodo tiene una licencia de Metaconsola pero no pudo "
-"establecer contacto."
-
-#: ../../enterprise/load_enterprise.php:849
-#: ../../enterprise/load_enterprise.php:855
-#: ../../enterprise/load_enterprise.php:871
-#, php-format
-msgid ""
-"<strong style=\"font-size: 11pt\">License exceeded</strong> <br><br> This "
-"license allows %d agents and you have %d agents configured."
-msgstr ""
-"<strong style=\"font-size: 11pt\">Ha excedido los términos de la licencia</"
-"strong> <br><br> Esta licencia permite %d agentes y tiene %d agentes "
-"configurados."
-
-#: ../../enterprise/load_enterprise.php:850
-#: ../../enterprise/load_enterprise.php:857
-#: ../../enterprise/load_enterprise.php:866
-#: ../../enterprise/load_enterprise.php:873
-#: ../../enterprise/load_enterprise.php:885
-#, php-format
-msgid "Please contact %s to extend the license."
-msgstr "Póngase en contacto con %s para ampliar la licencia."
-
-#: ../../enterprise/load_enterprise.php:856
-#: ../../enterprise/load_enterprise.php:858
-#: ../../enterprise/load_enterprise.php:872
-#: ../../enterprise/load_enterprise.php:874
-#: ../../enterprise/load_enterprise.php:901
-#: ../../enterprise/load_enterprise.php:907
-msgid ""
-"This console will work in limited mode. Enterprise features will not function."
-msgstr ""
-"Esta consola funcionará en modo limitado. Las funcionalidades Enterprise no "
-"funcionarán."
-
-#: ../../enterprise/load_enterprise.php:865
-#, php-format
-msgid ""
-"<strong cstyle=\"font-size: 11pt\">License exceeded</strong> <br><br> This "
-"license allows %d agents and you have %d agents configured."
-msgstr ""
-"<strong cstyle=\"font-size: 11pt\">Licencia superada</strong> <br><br> Esta "
-"licencia permite %d agentes y tiene %d agentes configurados."
-
-#: ../../enterprise/load_enterprise.php:884
-#, php-format
-msgid ""
-"<strong style=\"font-size: 11pt\">License exceeded</strong> <br><br> This "
-"license allows %d modules and you have %d modules configured."
-msgstr ""
-"<strong style=\"font-size: 11pt\">Ha excedido los términos de la licencia</"
-"strong> <br><br> Esta licencia permite %d módulos y tiene %d módulos "
-"configurados."
-
-#: ../../enterprise/load_enterprise.php:894
-#: ../../enterprise/load_enterprise.php:900
-msgid ""
-"<strong style=\"font-size: 11pt\">This license has expired.</strong> "
-"<br><br>You can not get updates until you renew the license."
-msgstr ""
-"<strong style=\"font-size: 11pt\">Licencia caducada.</strong> <br><br>No "
-"podrás actualizar Pandora FMS hasta que no renueves la licencia."
-
-#: ../../enterprise/load_enterprise.php:895
-#: ../../enterprise/load_enterprise.php:902
-#, php-format
-msgid "Please contact %s to renew the license."
-msgstr "Póngase en contacto con %s para renovar la licencia."
-
-#: ../../enterprise/load_enterprise.php:905
-#: ../../enterprise/load_enterprise.php:1044
-msgid "Renew"
-msgstr "Renovar"
-
-#: ../../enterprise/load_enterprise.php:914
-#, php-format
-msgid ""
-"<strong style=\"font-size: 11pt\">This license is outside of support.</strong> "
-"<br><br>This %s installation will continue working normally and without "
-"limitations, but without support or updates."
-msgstr ""
-"<strong style=\"font-size: 11pt\">Esta licencia no incluye soporte.</strong> "
-"<br><br>La instalación de %s continuará funcionando con normalidad y sin "
-"límites, pero sin soporte ni actualizaciones."
-
-#: ../../enterprise/views/cluster/list.php:31
-#: ../../general/first_task/cluster_builder.php:29
-#: ../../general/first_task/cluster_builder.php:51
-#: ../../general/first_task/HA_cluster_builder.php:42
-msgid "Clusters"
-msgstr "Clústers"
-
-#: ../../enterprise/views/cluster/list.php:122
-msgid "New cluster"
-msgstr "Nuevo clúster"
-
-#: ../../enterprise/views/cluster/view.php:44
-#: ../../enterprise/views/cluster/view.php:63
-#: ../../enterprise/views/cluster/edit.php:41
-#: ../../enterprise/views/cluster/edit.php:68
-msgid "Cluster list"
-msgstr "Lista de clústers"
-
-#: ../../enterprise/views/cluster/view.php:50
-#: ../../enterprise/views/cluster/view.php:81
-msgid "Cluster details"
-msgstr "Detalles del clúster"
-
-#: ../../enterprise/views/cluster/view.php:74
-msgid "Edit this cluster"
-msgstr "Editar el clúster"
-
-#: ../../enterprise/views/cluster/view.php:223
-msgid "Force cluster status calculation"
-msgstr "Forzar cálculo del estado del clúster"
-
-#: ../../enterprise/views/cluster/view.php:314
-msgid "Cluster agent"
-msgstr "Agente del clúster"
-
-#: ../../enterprise/views/cluster/edit.php:57
-msgid "cluster "
-msgstr "clúster "
-
-#: ../../enterprise/views/cluster/edit.php:88
-msgid "View this cluster"
-msgstr "Ver clúster"
-
-#: ../../enterprise/views/ncm/snippets/list.php:32
-#: ../../enterprise/views/ncm/snippets/edit.php:42
-#: ../../enterprise/views/ncm/vendors/list.php:32
-#: ../../enterprise/views/ncm/vendors/edit.php:35
-#: ../../enterprise/views/ncm/models/list.php:32
-#: ../../enterprise/views/ncm/models/edit.php:37
-#: ../../enterprise/views/ncm/templates/list.php:32
-#: ../../enterprise/views/ncm/templates/edit.php:42
-#: ../../enterprise/views/ncm/devices/list.php:32
-#: ../../enterprise/views/ncm/devices/list.php:67
-#: ../../enterprise/views/ncm/firmwares/list.php:32
-#: ../../enterprise/views/ncm/firmwares/edit.php:41
-#: ../../include/functions.php:1238 ../../include/functions_events.php:3297
-msgid "Network configuration manager"
-msgstr "Administrador de configuración de red"
-
-#: ../../enterprise/views/ncm/snippets/list.php:32
-#: ../../enterprise/views/ncm/snippets/edit.php:42
-msgid "Snippets"
-msgstr "Snippets"
-
-#: ../../enterprise/views/ncm/snippets/edit.php:73
-#: ../../enterprise/views/ncm/templates/edit.php:73
-#: ../../enterprise/views/ncm/firmwares/edit.php:72
-msgid "Script not defined"
-msgstr "Script no definido"
-
-#: ../../enterprise/views/ncm/snippets/edit.php:91
-#: ../../enterprise/views/ncm/templates/edit.php:160
-#: ../../enterprise/views/ncm/templates/edit.php:188
-#: ../../enterprise/views/ncm/templates/edit.php:216
-#: ../../enterprise/views/ncm/templates/edit.php:244
-#: ../../enterprise/views/ncm/templates/edit.php:271
-#: ../../enterprise/views/ncm/templates/edit.php:298
-msgid "Script details"
-msgstr "Detalles del script"
-
-#: ../../enterprise/views/ncm/vendors/list.php:32
-#: ../../enterprise/views/ncm/vendors/edit.php:35
-#: ../../enterprise/views/ncm/templates/list.php:74
-#: ../../enterprise/views/ncm/templates/edit.php:107
-#: ../../enterprise/views/ncm/firmwares/edit.php:106
-msgid "Vendors"
-msgstr "Fabricantes"
-
-#: ../../enterprise/views/ncm/vendors/edit.php:89
-msgid "icon"
-msgstr "icono"
-
-#: ../../enterprise/views/ncm/agent/details.php:89
-msgid "Script type"
-msgstr "Tipo de script"
-
-#: ../../enterprise/views/ncm/agent/details.php:91
-msgid "Execution last timestamp"
-msgstr "Última marca de tiempo de ejecución"
-
-#: ../../enterprise/views/ncm/agent/details.php:107
-msgid "Retrieve running configuration"
-msgstr "Recuperar la configuración en ejecución"
-
-#: ../../enterprise/views/ncm/agent/details.php:120
-#: ../../enterprise/views/ncm/agent/details.php:383
-msgid "Restore from backup"
-msgstr "Restaurar desde la copia de seguridad"
-
-#: ../../enterprise/views/ncm/agent/details.php:172
-msgid "Running without a backup"
-msgstr "Ejecución sin copia de seguridad"
-
-#: ../../enterprise/views/ncm/agent/details.php:181
-msgid "Latest configuration retrieved is different from backed one"
-msgstr ""
-"La última configuración recuperada es diferente de la que tiene copia de "
-"seguridad"
-
-#: ../../enterprise/views/ncm/agent/details.php:184
-msgid "Backup up to date with latest configuration"
-msgstr "Copia de seguridad actualizada con la configuración más reciente"
-
-#: ../../enterprise/views/ncm/agent/details.php:208
-msgid "Configuration backup status"
-msgstr "Estado de la copia de seguridad de la configuración"
-
-#: ../../enterprise/views/ncm/agent/details.php:238
-msgid "Last on demand execution"
-msgstr "Última ejecución bajo demanda"
-
-#: ../../enterprise/views/ncm/agent/details.php:246
-#, php-format
-msgid "Customize %s"
-msgstr "Personalizar %s"
-
-#: ../../enterprise/views/ncm/agent/details.php:250
-msgid "Execute snippet"
-msgstr "Ejecutar snippet"
-
-#: ../../enterprise/views/ncm/agent/details.php:314
-#, php-format
-msgid "Current firmware version: %s"
-msgstr "Versión actual del firmware: %s"
-
-#: ../../enterprise/views/ncm/agent/details.php:339
-#, php-format
-msgid "Configuration backup present, %s"
-msgstr "Copia de seguridad de configuración presente, %s"
-
-#: ../../enterprise/views/ncm/agent/details.php:346
-msgid "There is no configuration backup"
-msgstr "No hay copia de seguridad de configuración"
-
-#: ../../enterprise/views/ncm/agent/details.php:359
-msgid "Backup latest retrieved configuration"
-msgstr "Copia de seguridad de la última configuración recuperada"
-
-#: ../../enterprise/views/ncm/agent/details.php:401
-#, php-format
-msgid "Latest operation \"%s\" was executed %s ago with result: %s %s"
-msgstr "La última operación \"%s\" se ejecutó hace %s con el resultado: %s %s"
-
-#: ../../enterprise/views/ncm/agent/details.php:414
-#, php-format
-msgid "Script executions queued: %d"
-msgstr "Ejecuciones de scripts en cola: %d"
-
-#: ../../enterprise/views/ncm/agent/details.php:424
+#: ../../views/dashboard/list.php:136
 #, php-format
-msgid "Configuration backup schedule: %s"
-msgstr "Programación de copia de seguridad de la configuración: %s"
-
-#: ../../enterprise/views/ncm/agent/details.php:441
-msgid "Device details"
-msgstr "Detalles del dispositivo"
-
-#: ../../enterprise/views/ncm/agent/details.php:483
-msgid "Configuration timestamp"
-msgstr "Marca de tiempo de configuración"
-
-#: ../../enterprise/views/ncm/agent/details.php:484
-msgid "Diff"
-msgstr "Diferencia"
-
-#: ../../enterprise/views/ncm/agent/details.php:490
-msgid "No changes with current backup"
-msgstr "Sin cambios en la copia de seguridad actual"
-
-#: ../../enterprise/views/ncm/agent/details.php:494
-msgid "This is the latest configuration retrieved"
-msgstr "Esta es la última configuración recuperada"
-
-#: ../../enterprise/views/ncm/agent/details.php:507
-#: ../../enterprise/views/ncm/agent/details.php:511
-msgid "This is the current backup."
-msgstr "Esta es la copia de seguridad actual."
-
-#: ../../enterprise/views/ncm/agent/details.php:523
-msgid "Review this configuration"
-msgstr "Revisar esta configuración"
-
-#: ../../enterprise/views/ncm/agent/details.php:534
-msgid "There is no backup to compare with"
-msgstr "No hay ninguna copia de seguridad con la que comparar"
-
-#: ../../enterprise/views/ncm/agent/details.php:545
-msgid "Backup this configuration"
-msgstr "Hacer copia de seguridad de esta configuración"
-
-#: ../../enterprise/views/ncm/agent/details.php:563
-msgid "Configurations registry"
-msgstr "Registro de configuraciones"
-
-#: ../../enterprise/views/ncm/agent/details.php:574
-msgid "Diff between: backup - selected"
-msgstr "Diferencia entre: copia de seguridad - seleccionada"
-
-#: ../../enterprise/views/ncm/agent/details.php:624
-msgid "Retrieve firmware version?"
-msgstr "¿Recuperar la versión del firmware?"
-
-#: ../../enterprise/views/ncm/agent/details.php:625
-msgid ""
-"This action will connect to the device to retrieve firmware version. Are you "
-"sure?"
-msgstr ""
-"Esta acción conectará con dispositivo para recuperar la versión del firmware. "
-"¿Está seguro?"
-
-#: ../../enterprise/views/ncm/agent/details.php:635
-msgid "Get running config?"
-msgstr "Obtener running-config"
-
-#: ../../enterprise/views/ncm/agent/details.php:636
-msgid ""
-"This action will connect to the device to retrieve latest configuration. Are "
-"you sure?"
-msgstr ""
-"Esta acción se conectará al dispositivo para recuperar la configuración más "
-"reciente. ¿Estás seguro?"
-
-#: ../../enterprise/views/ncm/agent/details.php:647
-msgid "Backup latest config?"
-msgstr "¿Copia de seguridad de la última configuración?"
-
-#: ../../enterprise/views/ncm/agent/details.php:648
-msgid ""
-"This action will overwrite current backup to use latest retrieved "
-"configuration. Are you sure?"
-msgstr ""
-"Esta acción sobrescribirá la copia de seguridad actual para utilizar la última "
-"configuración recuperada. ¿Estás seguro?"
-
-#: ../../enterprise/views/ncm/agent/details.php:656
-msgid "Backup target config?"
-msgstr "¿Configuración de destino de copia de seguridad?"
-
-#: ../../enterprise/views/ncm/agent/details.php:657
-msgid ""
-"This action will overwrite current backup to use selected configuration. Are "
-"you sure?"
-msgstr ""
-"Esta acción sobreescribirá la copia de seguridad actual para utilizar la "
-"configuración seleccionada. ¿Está seguro?"
-
-#: ../../enterprise/views/ncm/agent/details.php:668
-msgid "Restore device configuration?"
-msgstr "¿Restaurar la configuración del dispositivo?"
-
-#: ../../enterprise/views/ncm/agent/details.php:669
-msgid ""
-"This action will overwrite device configuration with latest backup. Are you "
-"sure?"
-msgstr ""
-"Esta acción sobrescribirá la configuración del dispositivo con la copia de "
-"seguridad más reciente. ¿Estás seguro?"
-
-#: ../../enterprise/views/ncm/agent/details.php:688
-msgid "Customize script execution"
-msgstr "Personalizar la ejecución del script"
-
-#: ../../enterprise/views/ncm/agent/details.php:689
-#: ../../include/functions_events.php:3837
-#: ../../include/class/ExternalTools.class.php:581
-#: ../../include/ajax/events.php:2029
-msgid "Execute"
-msgstr "Ejecutar"
-
-#: ../../enterprise/views/ncm/agent/manage.php:57
-msgid "For instance Cisco"
-msgstr "Por ejemplo, Cisco"
-
-#: ../../enterprise/views/ncm/agent/manage.php:59
-msgid "Device manufacturer"
-msgstr "Fabricante del dispositivo"
-
-#: ../../enterprise/views/ncm/agent/manage.php:87
-msgid "For instance Catalyst 9400"
-msgstr "Por ejemplo, Catalyst 9400"
-
-#: ../../enterprise/views/ncm/agent/manage.php:89
-msgid "Device model"
-msgstr "Modelo del dispositivo"
-
-#: ../../enterprise/views/ncm/agent/manage.php:107
-msgid "connect using SSH"
-msgstr "conectarse mediante SSH"
-
-#: ../../enterprise/views/ncm/agent/manage.php:108
-msgid "connect using telnet"
-msgstr "conectarse mediante telnet"
-
-#: ../../enterprise/views/ncm/agent/manage.php:131
-msgid "Credentials to access device"
-msgstr "Credenciales para acceder al dispositivo"
-
-#: ../../enterprise/views/ncm/agent/manage.php:144
-msgid "Credentials to administrate device"
-msgstr "Credenciales para administrar el dispositivo"
-
-#: ../../enterprise/views/ncm/agent/manage.php:177
-msgid "NCM template to be used"
-msgstr "Plantilla NCM que se utilizará"
-
-#: ../../enterprise/views/ncm/agent/manage.php:190
-msgid "Backup schedule (if defined)"
-msgstr "Programación de copia de seguridad (si se define)"
-
-#: ../../enterprise/views/ncm/agent/manage.php:195
-msgid "No schedule"
-msgstr "No programado"
-
-#: ../../enterprise/views/ncm/agent/manage.php:197
-msgid "Once a day"
-msgstr "Una vez al día"
-
-#: ../../enterprise/views/ncm/agent/manage.php:198
-msgid "Once a week"
-msgstr "Una vez a la semana"
-
-#: ../../enterprise/views/ncm/agent/manage.php:199
-msgid "Once a month"
-msgstr "Una vez al mes"
-
-#: ../../enterprise/views/ncm/agent/manage.php:218
-msgid "Launch event if configuration changes"
-msgstr "Iniciar evento si cambia la configuración"
-
-#: ../../enterprise/views/ncm/agent/manage.php:243
-msgid "NCM state"
-msgstr "Estado de NCM"
-
-#: ../../enterprise/views/ncm/agent/modalOnDemandScript.php:63
-msgid "Select firmware file to update to"
-msgstr "Seleccione el archivo de firmware al que desea actualizar"
-
-#: ../../enterprise/views/ncm/agent/modalOnDemandScript.php:75
-msgid "Transfer from url"
-msgstr "Transferir desde url"
-
-#: ../../enterprise/views/ncm/agent/modalOnDemandScript.php:86
-msgid "Target file name"
-msgstr "Nombre del archivo de destino"
-
-#: ../../enterprise/views/ncm/agent/modalOnDemandScript.php:105
-msgid "Customize execution"
-msgstr "Personalizar la ejecución"
-
-#: ../../enterprise/views/ncm/models/list.php:32
-#: ../../enterprise/views/ncm/templates/list.php:75
-#: ../../enterprise/views/ncm/templates/edit.php:134
-#: ../../enterprise/views/ncm/firmwares/list.php:76
-#: ../../enterprise/views/ncm/firmwares/edit.php:133
-msgid "Models"
-msgstr "Modelos"
-
-#: ../../enterprise/views/ncm/models/list.php:72
-#: ../../enterprise/views/ncm/models/edit.php:88
-#: ../../enterprise/views/ncm/devices/list.php:118
-#: ../../enterprise/views/ncm/firmwares/list.php:75
-msgid "Vendor"
-msgstr "Fabricante"
-
-#: ../../enterprise/views/ncm/models/edit.php:37
-#: ../../enterprise/views/ncm/templates/edit.php:42
-#: ../../enterprise/views/ncm/devices/list.php:32
-msgid "Devices"
-msgstr "Dispositivos"
-
-#: ../../enterprise/views/ncm/templates/list.php:76
-msgid "Scripts defined"
-msgstr "Scripts definidos"
-
-#: ../../enterprise/views/ncm/templates/edit.php:102
-msgid ""
-"Comma separated, a vendors list compatible with scripts defined within "
-"template."
-msgstr ""
-"Separado por comas, una lista de proveedores compatible con scripts definidos "
-"dentro de la plantilla."
-
-#: ../../enterprise/views/ncm/templates/edit.php:130
-msgid ""
-"Comma separated, a model list compatible with scripts defined within template."
-msgstr ""
-"Separado por comas, una lista de modelos compatibles con scripts definidos "
-"dentro de la plantilla."
-
-#: ../../enterprise/views/ncm/templates/edit.php:148
-msgid "This script will be used to test devices availability"
-msgstr ""
-"Este script se utilizará para probar la disponibilidad de los dispositivos"
-
-#: ../../enterprise/views/ncm/templates/edit.php:153
-msgid "Script: Test"
-msgstr "Script: prueba"
-
-#: ../../enterprise/views/ncm/templates/edit.php:176
-msgid "This script will be used to retrieve configuration from devices"
-msgstr ""
-"Este script se utilizará para recuperar la configuración de los dispositivos"
-
-#: ../../enterprise/views/ncm/templates/edit.php:181
-msgid "Script: Get configuration"
-msgstr "Script: obtener configuración"
-
-#: ../../enterprise/views/ncm/templates/edit.php:204
-msgid ""
-"This script will be used to apply configuration, previously backed up, to "
-"devices"
-msgstr ""
-"Este script se utilizará para aplicar la configuración, previamente "
-"respaldada, a los dispositivos"
-
-#: ../../enterprise/views/ncm/templates/edit.php:209
-msgid "Script: set configuration"
-msgstr "Script: establecer la configuración"
-
-#: ../../enterprise/views/ncm/templates/edit.php:232
-msgid "This script will be used to retrieve firmware version from devices"
-msgstr ""
-"Este script se utilizará para recuperar la versión del firmware de los "
-"dispositivos"
-
-#: ../../enterprise/views/ncm/templates/edit.php:237
-msgid "Script: get firmware"
-msgstr "Script: obtener firmware"
-
-#: ../../enterprise/views/ncm/templates/edit.php:259
-msgid "This script will be used to upgrade firmware version of the devices"
-msgstr ""
-"Este script se utilizará para actualizar la versión de firmware de los "
-"dispositivos"
-
-#: ../../enterprise/views/ncm/templates/edit.php:264
-msgid "Script: set firmware"
-msgstr "Script: establecer firmware"
-
-#: ../../enterprise/views/ncm/templates/edit.php:286
-msgid "This script will be executed on the devices when selecting CUSTOM task"
-msgstr ""
-"Este script se ejecutará en los dispositivos al seleccionar la tarea CUSTOM"
-
-#: ../../enterprise/views/ncm/templates/edit.php:291
-msgid "Script: custom task"
-msgstr "Script: tarea personalizada"
-
-#: ../../enterprise/views/ncm/devices/list.php:64
-#: ../../include/functions_reports.php:938
-msgid "NCM"
-msgstr "NCM"
-
-#: ../../enterprise/views/ncm/devices/list.php:69
-msgid ""
-"WARNING: This is a new feature and is still at an early stage. It is available "
-"with limited features, use it with caution and send us your feedback to "
-"improve these current capabilities."
-msgstr ""
-"ADVERTENCIA: Esta es una nueva característica y todavía se encuentra en una "
-"etapa temprana. Está disponible con funciones limitadas, úselo con precaución "
-"y envíenos sus comentarios para mejorar estas capacidades actuales."
-
-#: ../../enterprise/views/ncm/devices/list.php:72
-msgid ""
-"Network configuration manager is used to keep configurations and software "
-"versions of any network device in your infrastructure under your control."
-msgstr ""
-"El administrador de configuración de red se utiliza para mantener las "
-"configuraciones y versiones de software de cualquier dispositivo de red en su "
-"infraestructura bajo su control."
-
-#: ../../enterprise/views/ncm/devices/list.php:77
-msgid ""
-"To start using it, navigatenavigate to your desired agent, tab Network Config "
-"Manager, and enable the ncm features,\n"
-"        you will be asked for the vendor and model of the device."
-msgstr ""
-"Para comenzar a usarlo, navegue por el agente que desee, seleccione "
-"Administrador de configuración de red y habilite las funciones de ncm,\n"
-"        se le pedirá el proveedor y el modelo del dispositivo."
-
-#: ../../enterprise/views/ncm/devices/list.php:84
-msgid "Define a NCM template"
-msgstr "Definir una plantilla de NCM"
-
-#: ../../enterprise/views/ncm/devices/list.php:87
-msgid "Configure agents to use NCM templates"
-msgstr "Configurar agentes para usar plantillas NCM"
-
-#: ../../enterprise/views/ncm/devices/list.php:119
-msgid "Model"
-msgstr "Modelo"
-
-#: ../../enterprise/views/ncm/devices/list.php:121
-msgid "Last queued task"
-msgstr "Última tarea en cola"
-
-#: ../../enterprise/views/ncm/firmwares/list.php:32
-msgid "Firmwares"
-msgstr "Firmwares"
-
-#: ../../enterprise/views/ncm/firmwares/edit.php:41
-msgid "Firmware"
-msgstr "Firmware"
-
-#: ../../enterprise/views/ncm/firmwares/edit.php:101
-msgid ""
-"Comma separated, a vendors list compatible with scripts defined within "
-"firmware."
-msgstr ""
-"Separado por comas, una lista de proveedores compatible con scripts definidos "
-"dentro del firmware."
-
-#: ../../enterprise/views/ncm/firmwares/edit.php:129
-msgid ""
-"Comma separated, a model list compatible with scripts defined within firmware."
-msgstr ""
-"Separado por comas, una lista de modelos compatibles con scripts definidos "
-"dentro del firmware."
+msgid "Private for (%s)"
+msgstr "Privado por (%s)"
 
-#: ../../enterprise/views/ncm/firmwares/edit.php:149
-msgid "Current binary file will be overwritten, are you sure?"
-msgstr "El archivo binario actual se sobrescribirá, ¿está seguro?"
+#: ../../views/dashboard/list.php:217
+msgid "Create a new dashboard"
+msgstr "Crear un nuevo cuadro de mando"
 
-#: ../../enterprise/views/ncm/firmwares/edit.php:154
-msgid "Binary file"
-msgstr "Archivo binario"
+#: ../../views/dashboard/list.php:233
+msgid "New dashboard"
+msgstr "Nuevo dashboard"
 
 #: ../../general/maintenance.php:36
 msgid "Maintenance tasks in progress"
@@ -41409,6 +2492,266 @@ msgstr "Tareas de mantenimiento en curso"
 msgid "You will be automatically redirected when all tasks finish"
 msgstr "Se le redirigirá automáticamente cuando finalicen todas las tareas"
 
+#: ../../general/logon_failed.php:18 ../../general/register.php:154
+#: ../../operation/users/user_edit.php:1061
+#: ../../operation/users/user_edit.php:1127
+#: ../../operation/users/user_edit.php:1198
+#: ../../include/ajax/double_auth.ajax.php:252
+#: ../../include/ajax/double_auth.ajax.php:350
+#: ../../include/ajax/double_auth.ajax.php:396
+#: ../../include/ajax/double_auth.ajax.php:512
+#: ../../enterprise/include/functions_login.php:485
+#: ../../godmode/users/configure_user.php:1822
+#: ../../godmode/users/configure_user.php:1892
+#: ../../godmode/users/configure_user.php:1964
+msgid "Authentication error"
+msgstr "Error de autentificación"
+
+#: ../../general/logon_failed.php:30
+msgid ""
+"Either, your password or your login are incorrect. Please check your CAPS LOCK "
+"key, username and password are case SeNSiTiVe.<br><br>All actions, included "
+"failed login attempts are logged in Pandora FMS System logs, and these can be "
+"reviewed by each user, please report to admin any incident or malfunction."
+msgstr ""
+"La combinación usuario/contraseña es incorrecta. Comprueba que no está "
+"habilitado el bloqueo de mayúsculas, los campos distinguen entre mayúsculas y "
+"minúsculas.<br><br> Todas las acciones, incluidos los intentos fallidos de "
+"acceso son guardados en el sistema de registro de logs de Pandora FMS y pueden "
+"ser revisados por cada usuario. Contacta al administrador cualquier incidente "
+"o fallo."
+
+#: ../../general/register.php:157 ../../operation/users/user_edit.php:1064
+#: ../../operation/users/user_edit.php:1130
+#: ../../include/ajax/double_auth.ajax.php:255
+#: ../../include/ajax/double_auth.ajax.php:353
+#: ../../include/ajax/double_auth.ajax.php:399
+#: ../../include/ajax/double_auth.ajax.php:516
+#: ../../include/class/Diagnostics.class.php:1827
+#: ../../include/functions_events.php:2928
+#: ../../include/functions_events.php:3283 ../../include/functions_ui.php:290
+#: ../../include/functions.php:1236
+#: ../../enterprise/include/class/CommandCenter.class.php:473
+#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:4052
+#: ../../enterprise/include/lib/Metaconsole/Node.php:593
+#: ../../enterprise/include/functions_login.php:104
+#: ../../enterprise/include/functions_login.php:488
+#: ../../enterprise/meta/include/functions_ui_meta.php:970
+#: ../../enterprise/godmode/services/services.elements.php:841
+#: ../../enterprise/godmode/services/services.elements.php:852
+#: ../../mobile/operation/visualmap.php:182
+#: ../../godmode/massive/massive_edit_plugins.php:856
+#: ../../godmode/massive/massive_edit_plugins.php:857
+#: ../../godmode/users/configure_user.php:1825
+#: ../../godmode/users/configure_user.php:1895
+msgid "Error"
+msgstr "Error"
+
+#: ../../general/register.php:161 ../../operation/users/user_edit.php:1068
+#: ../../operation/users/user_edit.php:1134
+#: ../../include/ajax/double_auth.ajax.php:259
+#: ../../include/ajax/double_auth.ajax.php:357
+#: ../../include/ajax/double_auth.ajax.php:403
+#: ../../include/ajax/double_auth.ajax.php:520
+#: ../../enterprise/include/functions_login.php:492
+#: ../../godmode/users/configure_user.php:1829
+#: ../../godmode/users/configure_user.php:1899
+msgid "There was an error loading the data"
+msgstr "Error al cargar los datos"
+
+#: ../../general/register.php:170 ../../operation/users/user_edit.php:1142
+#: ../../operation/users/user_edit.php:1218
+#: ../../enterprise/include/functions_login.php:501
+#: ../../godmode/users/configure_user.php:1907
+#: ../../godmode/users/configure_user.php:1985
+msgid "Double autentication activation"
+msgstr "Activación de la doble autentificación"
+
+#: ../../general/noaccess.php:130 ../../general/noaccess2.php:16
+#: ../../general/noaccess2.php:18 ../../general/noaccesssaml.php:130
+#: ../../enterprise/meta/general/metaconsole_no_activated.php:12
+#: ../../enterprise/meta/general/noaccess.php:130
+#: ../../enterprise/meta/general/noaccesssaml.php:130
+#: ../../mobile/operation/agent.php:117 ../../mobile/operation/modules.php:218
+#: ../../mobile/operation/visualmaps.php:159
+#: ../../mobile/operation/visualmap.php:185
+#: ../../mobile/operation/tactical.php:79 ../../mobile/operation/alerts.php:176
+#: ../../mobile/operation/events.php:468
+#: ../../mobile/operation/module_graph.php:255
+#: ../../mobile/operation/agents.php:186 ../../mobile/operation/groups.php:59
+#: ../../mobile/index.php:258
+msgid "You don't have access to this page"
+msgstr "No tienes permiso para acceder a esta página"
+
+#: ../../general/noaccess.php:135 ../../enterprise/meta/general/noaccess.php:135
+msgid ""
+"Access to this page is restricted to authorized users only, please contact "
+"system administrator if you need assistance."
+msgstr ""
+"El acceso a esta página está restringido a usuarios autorizados, póngase en "
+"contacto con el administrador del sistema si necesita ayuda."
+
+#: ../../general/noaccess.php:137 ../../enterprise/meta/general/noaccess.php:137
+#, php-format
+msgid ""
+"Please know that all attempts to access this page are recorded in security "
+"logs of %s System Database"
+msgstr ""
+"Todos los intentos de acceso a está página se grabarán en los logs de "
+"seguridad de la base de datos del sistema de %s"
+
+#: ../../general/login_help_dialog.php:39
+#: ../../include/lib/Dashboard/Widgets/example.php:245
+#, php-format
+msgid "Welcome to %s"
+msgstr "Bienvenido a %s"
+
+#: ../../general/login_help_dialog.php:43
+#, php-format
+msgid ""
+"If this is your first time using %s, we suggest a few links that'll help you "
+"learn more about the software. Monitoring can be overwhelming, but take your "
+"time to learn how to harness the power of %s!"
+msgstr ""
+"Si esta es la primera vez que usa %s, le sugerimos algunos enlaces que le "
+"ayudarán a saber más sobre este software. La monitorización puede ser "
+"abrumadora, pero tómese su tiempo en aprender a aprovechar todo el potencial "
+"de %s!"
+
+#: ../../general/login_help_dialog.php:57 ../../general/login_help_dialog.php:62
+msgid "Online help"
+msgstr "Ayuda en línea"
+
+#: ../../general/login_help_dialog.php:70 ../../general/login_help_dialog.php:75
+msgid "Enterprise version"
+msgstr "Versión Enterprise"
+
+#: ../../general/login_help_dialog.php:83 ../../general/login_help_dialog.php:88
+#: ../../general/login_page.php:148 ../../general/login_page.php:151
+#: ../../enterprise/include/reset_pass.php:53
+#: ../../enterprise/include/process_reset_pass.php:58
+#: ../../enterprise/meta/general/login_page.php:64
+#: ../../enterprise/meta/include/reset_pass.php:47
+#: ../../enterprise/meta/include/process_reset_pass.php:47
+msgid "Support"
+msgstr "Soporte"
+
+#: ../../general/login_help_dialog.php:88
+msgid "Forums"
+msgstr "Foros"
+
+#: ../../general/login_help_dialog.php:96 ../../general/login_help_dialog.php:101
+#: ../../general/mysqlerr.php:142
+msgid "Documentation"
+msgstr "Documentación"
+
+#: ../../general/login_help_dialog.php:110
+msgid "Click here to don't show again this message"
+msgstr "Pincha aquí para no volver a ver este mensaje"
+
+#: ../../general/ui/agents_list.php:100 ../../general/ui/agents_list.php:113
+#: ../../operation/agentes/status_monitor.php:556
+#: ../../operation/agentes/alerts_status.functions.php:194
+#: ../../operation/agentes/alerts_status.functions.php:203
+#: ../../operation/agentes/estado_agente.php:267
+#: ../../operation/agentes/estado_agente.php:291
+#: ../../operation/search_results.php:192 ../../include/ajax/heatmap.ajax.php:70
+#: ../../include/class/AuditLog.class.php:180
+#: ../../include/class/AgentWizard.class.php:2617
+#: ../../include/class/CalendarManager.class.php:1020
+#: ../../include/functions_snmp.php:358
+#: ../../include/functions_snmp_browser.php:925
+#: ../../include/functions_snmp_browser.php:1501
+#: ../../enterprise/tools/ipam/ipam_vlan_config.php:432
+#: ../../enterprise/tools/ipam/ipam_vlan_config.php:439
+#: ../../enterprise/tools/ipam/ipam_network_location_config.php:164
+#: ../../enterprise/tools/ipam/ipam_network_location_config.php:173
+#: ../../enterprise/tools/ipam/ipam_supernet_config.php:760
+#: ../../enterprise/tools/ipam/ipam_supernet_config.php:797
+#: ../../enterprise/tools/ipam/ipam_list.php:90
+#: ../../enterprise/tools/ipam/ipam_list.php:164
+#: ../../enterprise/operation/log/log_viewer.php:513
+#: ../../enterprise/operation/log/log_viewer.php:796
+#: ../../enterprise/operation/services/services.treeview_services.php:128
+#: ../../enterprise/operation/services/services.list.php:225
+#: ../../enterprise/operation/services/services.list.php:318
+#: ../../enterprise/operation/services/services.table_services.php:147
+#: ../../enterprise/operation/services/services.table_services.php:238
+#: ../../enterprise/operation/agentes/tag_view.php:219
+#: ../../enterprise/operation/agentes/agent_inventory.php:109
+#: ../../enterprise/operation/agentes/agent_inventory.php:114
+#: ../../enterprise/operation/inventory/inventory.php:360
+#: ../../enterprise/operation/inventory/inventory.php:413
+#: ../../enterprise/meta/general/header.php:44
+#: ../../enterprise/meta/general/header.php:46
+#: ../../enterprise/meta/general/main_header.php:689
+#: ../../enterprise/meta/general/main_header.php:691
+#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:265
+#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:362
+#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:419
+#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:687
+#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:758
+#: ../../enterprise/meta/advanced/metasetup.relations.php:451
+#: ../../enterprise/meta/advanced/metasetup.translate_string.php:186
+#: ../../enterprise/meta/advanced/collections.php:166
+#: ../../enterprise/meta/advanced/collections.php:179
+#: ../../enterprise/meta/agentsearch.php:110
+#: ../../enterprise/extensions/translate_string.php:323
+#: ../../enterprise/godmode/modules/local_components.php:573
+#: ../../enterprise/godmode/modules/local_components.php:598
+#: ../../enterprise/godmode/agentes/collection_manager.php:48
+#: ../../enterprise/godmode/agentes/collections.php:313
+#: ../../enterprise/godmode/alerts/alert_inventory_list.php:151
+#: ../../enterprise/godmode/alerts/alert_inventory_list.php:162
+#: ../../enterprise/godmode/policies/policy_agents.php:822
+#: ../../enterprise/godmode/policies/policy_agents.php:835
+#: ../../enterprise/godmode/policies/policy_collections.php:254
+#: ../../extensions/module_groups.php:283 ../../mobile/operation/agent.php:320
+#: ../../godmode/modules/manage_network_components.php:678
+#: ../../godmode/reporting/map_builder.php:350
+#: ../../godmode/reporting/map_builder.php:372
+#: ../../godmode/reporting/graphs.php:241
+#: ../../godmode/reporting/visual_console_favorite.php:158
+#: ../../godmode/reporting/visual_console_favorite.php:188
+#: ../../godmode/reporting/reporting_builder.item_editor.php:1139
+#: ../../godmode/reporting/reporting_builder.php:795
+#: ../../godmode/agentes/module_manager.php:65
+#: ../../godmode/agentes/planned_downtime.list.php:284
+#: ../../godmode/agentes/planned_downtime.list.php:368
+#: ../../godmode/agentes/modificar_agente.php:363
+#: ../../godmode/agentes/modificar_agente.php:372
+#: ../../godmode/alerts/alert_actions.php:244
+#: ../../godmode/alerts/alert_actions.php:302
+#: ../../godmode/alerts/alert_templates.php:314
+#: ../../godmode/alerts/alert_templates.php:325
+#: ../../godmode/users/user_list.php:402 ../../godmode/users/user_list.php:412
+#: ../../godmode/module_library/module_library_view.php:102
+#: ../../godmode/module_library/module_library_view.php:112
+#: ../../godmode/groups/group_list.php:785
+#: ../../godmode/groups/group_list.php:795
+msgid "Search"
+msgstr "Buscar"
+
+#: ../../general/ui/agents_list.php:146
+#: ../../operation/reporting/graph_viewer.php:316
+#: ../../operation/reporting/reporting_viewer.php:347
+#: ../../include/functions_events.php:4379
+#: ../../enterprise/operation/log/log_viewer.php:845
+#: ../../enterprise/operation/log/log_viewer.php:867
+#: ../../enterprise/include/class/CommandCenter.class.php:463
+#: ../../enterprise/meta/monitoring/wizard/wizard.php:149
+#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:195
+#: ../../enterprise/godmode/policies/policy_modules.php:1636
+#: ../../godmode/massive/massive_copy_modules.php:235
+#: ../../godmode/massive/massive_operations.php:361
+#: ../../godmode/massive/massive_add_profiles.php:292
+msgid "Loading"
+msgstr "Cargando"
+
+#: ../../general/ui/agents_list.php:152
+msgid "No agents found"
+msgstr "No se encontró ningún agente"
+
 #: ../../general/alert_enterprise.php:107
 #, php-format
 msgid ""
@@ -41668,14 +3011,15 @@ msgstr ""
 "de alertas de eventos para simplificar el sistema de alertas y poder manejarlo "
 "de forma sencilla y aumentar el rendimiento."
 
-#: ../../general/ui/agents_list.php:152
-msgid "No agents found"
-msgstr "No se encontró ningún agente"
-
 #: ../../general/noaccess2.php:23
 msgid "Access to this page is restricted"
 msgstr "El acceso a esta página está restringido"
 
+#: ../../general/noaccess2.php:28
+#: ../../enterprise/meta/general/metaconsole_no_activated.php:20
+msgid "No access"
+msgstr "Acceso denegado"
+
 #: ../../general/noaccess2.php:35
 msgid ""
 "Access to this page is restricted to authorized users only, please contact "
@@ -41689,10 +3033,387 @@ 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/header.php:48 ../../general/header.php:54
+#: ../../enterprise/meta/general/header.php:66
+#: ../../enterprise/meta/general/header.php:72
+#: ../../enterprise/meta/general/main_header.php:518
+#: ../../enterprise/meta/general/main_header.php:524
+msgid "All systems"
+msgstr "Todos los sistemas"
+
+#: ../../general/header.php:48 ../../enterprise/meta/general/header.php:66
+#: ../../enterprise/meta/general/main_header.php:518
+msgid "Down"
+msgstr "Caído(s)"
+
+#: ../../general/header.php:51 ../../enterprise/meta/general/header.php:69
+#: ../../enterprise/meta/general/main_header.php:521
+msgid "servers down"
+msgstr "servidor(es) caído(s)"
+
+#: ../../general/header.php:54 ../../enterprise/meta/general/header.php:72
+#: ../../enterprise/meta/general/main_header.php:524
+msgid "Ready"
+msgstr "Preparado"
+
+#: ../../general/header.php:77
+msgid "Sobre actualización de revisión menor"
+msgstr "Sobre actualización de revisión menor"
+
+#: ../../general/header.php:79
+msgid "About minor release update"
+msgstr "Sobre la actualización menor"
+
+#: ../../general/header.php:112 ../../general/header.php:114
+msgid "Enter keywords to search"
+msgstr "Introduce palabras clave para buscar"
+
+#: ../../general/header.php:235 ../../enterprise/meta/general/header.php:110
+#: ../../enterprise/meta/general/main_header.php:552
+msgid "Configure autorefresh"
+msgstr "Configurar actualización automática"
+
+#: ../../general/header.php:265
+#: ../../operation/incidents/configure_integriaims_incident.php:240
+#: ../../operation/incidents/configure_integriaims_incident.php:256
+#: ../../operation/incidents/configure_integriaims_incident.php:302
+#: ../../include/functions_reports.php:1351
+#: ../../include/class/AgentsAlerts.class.php:354
+#: ../../enterprise/meta/general/header.php:121
+#: ../../enterprise/meta/general/main_header.php:558
+#: ../../enterprise/meta/include/ajax/wizard.ajax.php:742
+#: ../../enterprise/meta/monitoring/wizard/wizard.php:150
+#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:260
+#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:357
+#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:414
+#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:682
+#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:753
+#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:231
+#: ../../enterprise/meta/monitoring/wizard/wizard.manage_alert.php:231
+#: ../../enterprise/godmode/services/services.service.php:845
+#: ../../enterprise/godmode/services/services.service.php:857
+#: ../../enterprise/godmode/services/services.service.php:869
+#: ../../enterprise/godmode/services/services.service.php:881
+#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:141
+#: ../../enterprise/godmode/massive/massive_create_services.php:902
+#: ../../enterprise/godmode/massive/massive_create_services.php:914
+#: ../../enterprise/godmode/massive/massive_create_services.php:926
+#: ../../enterprise/godmode/massive/massive_create_services.php:938
+#: ../../enterprise/godmode/policies/policy_external_alerts.php:676
+#: ../../enterprise/godmode/policies/policy_alerts.php:648
+#: ../../extensions/insert_data.php:186
+#: ../../godmode/setup/setup_integria.php:367
+#: ../../godmode/setup/setup_integria.php:385
+#: ../../godmode/setup/setup_integria.php:414
+#: ../../godmode/setup/setup_integria.php:432
+#: ../../godmode/setup/setup_integria.php:489
+#: ../../godmode/setup/setup_integria.php:507
+#: ../../godmode/setup/setup_integria.php:536
+#: ../../godmode/setup/setup_integria.php:554
+#: ../../godmode/snmpconsole/snmp_trap_generator.php:159
+#: ../../godmode/massive/massive_add_alerts.php:286
+#: ../../godmode/massive/massive_delete_modules.php:334
+#: ../../godmode/massive/massive_delete_modules.php:469
+#: ../../godmode/massive/massive_copy_modules.php:138
+#: ../../godmode/massive/massive_delete_alerts.php:277
+#: ../../godmode/massive/massive_edit_modules.php:318
+#: ../../godmode/massive/massive_edit_modules.php:431
+#: ../../godmode/alerts/alert_list.builder.php:82
+#: ../../godmode/alerts/alert_list.builder.php:156
+msgid "Select"
+msgstr "Seleccionar"
+
+#: ../../general/header.php:301 ../../general/header.php:320
+#: ../../enterprise/meta/general/header.php:137
+#: ../../enterprise/meta/general/header.php:149
+#: ../../enterprise/meta/general/main_header.php:569
+#: ../../enterprise/meta/general/main_header.php:581
+msgid "Disabled autorefresh"
+msgstr "Actualización automática desactivada"
+
+#: ../../general/header.php:356 ../../general/header.php:358
+#: ../../include/class/HelpFeedBack.class.php:213
+#: ../../include/class/Diagnostics.class.php:1967
+msgid "Feedback"
+msgstr "Feedback"
+
+#: ../../general/header.php:379
+msgid "Go to support"
+msgstr "Ir a soporte"
+
+#: ../../general/header.php:393
+msgid "Go to documentation"
+msgstr "Ir a documentación"
+
+#: ../../general/header.php:407 ../../general/header.php:417
+#: ../../operation/menu.php:460 ../../enterprise/meta/general/header.php:204
+#: ../../enterprise/meta/general/header.php:214
+#: ../../enterprise/meta/general/main_header.php:624
+#: ../../enterprise/meta/general/main_header.php:630
+#: ../../enterprise/meta/include/functions_users_meta.php:193
+#: ../../enterprise/meta/include/functions_users_meta.php:208
+msgid "Edit my user"
+msgstr "Editar mi usuario"
+
+#: ../../general/header.php:432 ../../general/header.php:434
+#: ../../enterprise/meta/general/header.php:231
+#: ../../enterprise/meta/general/header.php:233
+#: ../../enterprise/meta/general/main_header.php:535
+#: ../../mobile/operation/home.php:148 ../../mobile/include/user.class.php:440
+#: ../../mobile/include/ui.class.php:225
+#: ../../mobile/include/functions_web.php:34
+msgid "Logout"
+msgstr "Salir"
+
+#: ../../general/header.php:813 ../../godmode/setup/setup_general.php:660
+msgid "Send"
+msgstr "Enviar"
+
+#: ../../general/header.php:815
+msgid "Report an issue"
+msgstr "Notificar un error"
+
+#: ../../general/first_task/map_builder.php:23
+#: ../../godmode/reporting/map_builder.php:462
+msgid "There are no visual console defined yet."
+msgstr "No hay consola visual definida todavía."
+
+#: ../../general/first_task/map_builder.php:31
+#: ../../include/class/OrderInterpreter.class.php:233
+#: ../../include/lib/Dashboard/Widgets/maps_made_by_user.php:174
+#: ../../include/lib/Dashboard/Widgets/maps_made_by_user.php:471
+#: ../../enterprise/include/functions_enterprise.php:456
+#: ../../enterprise/meta/general/main_menu.php:346
+#: ../../enterprise/meta/general/main_header.php:240
+msgid "Visual Console"
+msgstr "Consola visual"
+
+#: ../../general/first_task/map_builder.php:34
+#: ../../general/first_task/map_builder.php:45
+msgid "Create Visual Console"
+msgstr "Crear consola visual"
+
+#: ../../general/first_task/map_builder.php:37
+#, php-format
+msgid ""
+"%s allows users to create visual maps on which each user is able to create his "
+"or her own monitoring map. The new visual console editor is much more "
+"practical, although the prior visual console editor had its advantages. On the "
+"new visual console, we've been successful in imitating the sensation and touch "
+"of a drawing application like GIMP. We've also simplified the editor by "
+"dividing it into several subject-divided tabs named 'Data', 'Preview', "
+"'Wizard', 'List of Elements' and 'Editor'. The items the %s Visual Map was "
+"designed to handle are 'static images', 'percentage bars', 'module graphs' and "
+"'simple values'."
+msgstr ""
+"%s permite a los usuarios crear mapas visuales en los que cada usuario puede "
+"crear su propio mapa de monitorización. El nuevo editor de consola visual es "
+"mucho más práctico, a pesar de que el editor de consola visual anterior tenía "
+"sus ventajas. Hemos conseguido imitar la sensación y el toque de una "
+"aplicación de dibujo como GIMP en la nueva consola visual. También hemos "
+"simplificado el editor dividiéndolo en diferentes pestañas clasificadas "
+"temáticamente llamadas \"Datos\", \"Vista previa\", \"Asistente\", \"Lista de "
+"elementos\" y \"Editor\". Los elementos para los que el mapa visual de %s fue "
+"diseñado son las \"imágenes estáticas\", las \"barras de porcentajes\" y los "
+"\"valores simples\"."
+
+#: ../../general/first_task/service_list.php:19
+msgid "There are no services defined yet."
+msgstr "No hay servicios definidos todavía."
+
+#: ../../general/first_task/service_list.php:23
+#: ../../operation/agentes/ver_agente.php:1645
+#: ../../enterprise/operation/services/services.treeview_services.php:61
+#: ../../enterprise/operation/services/services.treeview_services.php:81
+#: ../../enterprise/operation/services/services.service.php:83
+#: ../../enterprise/operation/services/services.list.php:58
+#: ../../enterprise/operation/services/services.list.php:75
+#: ../../enterprise/operation/services/services.service_map.php:90
+#: ../../enterprise/operation/services/services.service_map.php:109
+#: ../../enterprise/operation/services/services.table_services.php:38
+#: ../../enterprise/operation/services/services.table_services.php:58
+#: ../../enterprise/operation/menu.php:77
+#: ../../enterprise/include/functions_groups.php:65
+#: ../../enterprise/meta/general/main_menu.php:329
+#: ../../enterprise/meta/general/main_header.php:210
+#: ../../enterprise/godmode/services/services.elements.php:778
+#: ../../enterprise/godmode/services/services.elements.php:798
+#: ../../enterprise/godmode/services/services.service.php:469
+#: ../../enterprise/godmode/services/services.service.php:489
+#: ../../enterprise/godmode/services/services.massive.meta.php:42
+#: ../../enterprise/godmode/services/services.massive.elements.php:44
+#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:300
+#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:136
+#: ../../enterprise/godmode/menu.php:137
+#: ../../enterprise/godmode/massive/massive_add_service_elements.php:363
+#: ../../enterprise/godmode/massive/massive_create_services.php:966
+msgid "Services"
+msgstr "Servicios"
+
+#: ../../general/first_task/service_list.php:26
+#: ../../general/first_task/service_list.php:40
+msgid "Create Services"
+msgstr "Crear servicios"
+
+#: ../../general/first_task/service_list.php:30
+msgid ""
+"A service is a way to group your IT resources based on their "
+"functionalities. \n"
+"\t\t\t\t\t\tA service could be e.g. your official website, your CRM system, "
+"your support application, or even your printers.\n"
+"\t\t\t\t\t\t Services are logical groups which can include hosts, routers, "
+"switches, firewalls, CRMs, ERPs, websites and numerous other services. \n"
+"\t\t\t\t\t\t By the following example, you're able to see more clearly what a "
+"service is:\n"
+"\t\t\t\t\t\t\tA chip manufacturer sells computers by its website all around "
+"the world. \n"
+"\t\t\t\t\t\t\tHis company consists of three big departments: A management, an "
+"on-line shop and support."
+msgstr ""
+"Un servicio es una forma de agrupar recursos de TI basados en tus "
+"funcionalidades.\n"
+"\t\t\t\t\t\tUn servicio puede ser por ejemplo tu página web oficial, tu "
+"sistema CRM, tu aplicación de soporte o incluso tus impresoras.\n"
+"\t\t\t\t\t\t Los servicios son grupos lógicos que pueden incluir hosts, "
+"routers, switches, firewalls, CRMs, ERPs, sitios web y muchos otros "
+"servicios. \n"
+"\t\t\t\t\t\t Mediante el siguiente ejemplo, podrá ver más claramente lo que es "
+"un servicio:\n"
+"\t\t\t\t\t\t\tUn fabricante de chips vende computadoras por su página web en "
+"todo el mundo. \n"
+"\t\t\t\t\t\t\tSu empresa se compone de tres grandes departamentos: gestión, "
+"tienda online y apoyo."
+
+#: ../../general/first_task/HA_cluster_builder.php:37
+msgid "There are no HA clusters defined yet."
+msgstr "Aún no se han definido clusters de alta disponibilidad."
+
+#: ../../general/first_task/HA_cluster_builder.php:42
+#: ../../general/first_task/cluster_builder.php:29
+#: ../../general/first_task/cluster_builder.php:51
+#: ../../enterprise/views/cluster/list.php:31
+msgid "Clusters"
+msgstr "Clústers"
+
+#: ../../general/first_task/HA_cluster_builder.php:45
+msgid "PANDORA FMS DB CLUSTER"
+msgstr "CLUSTER DE LA BASE DE DATOS DE PANDORA FMS"
+
+#: ../../general/first_task/HA_cluster_builder.php:48
+msgid ""
+"With Pandora FMS Enterprise you can add high availability to your Pandora FMS "
+"installation by adding redundant MySQL servers"
+msgstr ""
+"Con Pandora FMS Enterprise puede añadir la alta disponibilidad a su "
+"instalación de Pandora FMS añadiendo servidores MySQL redundantes"
+
+#: ../../general/first_task/HA_cluster_builder.php:50
+msgid ""
+"Click on \"add new node\" to start transforming your Pandora FMS DB Cluster "
+"into a Pandora FMS DB Cluster."
+msgstr ""
+"Pinche en \"añadir nuevo módulo\" para empezar a convertir su cluster de base "
+"de datos de Pandora FMS en un cluster de base de datos de Pandora FMS."
+
+#: ../../general/first_task/HA_cluster_builder.php:59
+msgid "Add new node"
+msgstr "Añadir nuevo nodo"
+
+#: ../../general/first_task/tags.php:18
+msgid "There are no tags defined yet."
+msgstr "No hay etiquetas definidas todavía."
+
+#: ../../general/first_task/tags.php:22 ../../operation/tree.php:66
+#: ../../operation/events/events.build_table.php:283
+#: ../../operation/agentes/status_monitor.php:559
+#: ../../operation/agentes/group_view.php:222
+#: ../../operation/agentes/alerts_status.functions.php:107
+#: ../../operation/users/user_edit.php:815
+#: ../../include/lib/Dashboard/Widgets/events_list.php:450
+#: ../../include/lib/Dashboard/Widgets/tree_view.php:329
+#: ../../include/functions_events.php:203 ../../include/functions_events.php:272
+#: ../../include/functions_events.php:5137
+#: ../../include/functions_events.php:6744
+#: ../../include/functions_treeview.php:168
+#: ../../include/functions_profile.php:215
+#: ../../include/functions_reporting_html.php:3396
+#: ../../enterprise/operation/agentes/tag_view.php:223
+#: ../../enterprise/operation/agentes/tag_view.php:225
+#: ../../enterprise/operation/agentes/tag_view.php:678
+#: ../../enterprise/meta/include/functions_events_meta.php:106
+#: ../../enterprise/godmode/setup/setup_auth.php:231
+#: ../../enterprise/godmode/setup/setup_auth.php:510
+#: ../../enterprise/godmode/setup/setup_auth.php:1307
+#: ../../enterprise/godmode/modules/configure_local_component.php:550
+#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:971
+#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:163
+#: ../../enterprise/godmode/massive/massive_tags_edit_policy.php:120
+#: ../../mobile/operation/events.php:557
+#: ../../godmode/modules/manage_network_components_form_common.php:351
+#: ../../godmode/tag/edit_tag.php:66 ../../godmode/events/custom_events.php:108
+#: ../../godmode/massive/massive_delete_modules.php:401
+#: ../../godmode/massive/massive_delete_modules.php:515
+#: ../../godmode/massive/massive_copy_modules.php:172
+#: ../../godmode/massive/massive_edit_modules.php:405
+#: ../../godmode/massive/massive_edit_modules.php:491
+#: ../../godmode/massive/massive_edit_modules.php:1047
+msgid "Tags"
+msgstr "Etiquetas"
+
+#: ../../general/first_task/tags.php:25 ../../general/first_task/tags.php:35
+msgid "Create Tags"
+msgstr "Crear etiquetas"
+
+#: ../../general/first_task/tags.php:28
+msgid ""
+"Access to modules can be configured by a tagging system.\n"
+"\t\t\t\t\t\t\t\tTags are configured on the system and are assigned to the "
+"chosen modules.\n"
+"\t\t\t\t\t\t\t\tA user's access can therefore be restricted to modules with "
+"certain tags."
+msgstr ""
+"El acceso a los módulos puede configurarse mediante etiquetas.\n"
+"\t\t\t\t\t\t\t\tLas etiquetas se configuran en el sistema y se asignan a los "
+"módulos elegidos.\n"
+"\t\t\t\t\t\t\t\tPor ello, se puede restringir el acceso de un usuario a los "
+"módulos mediante ciertas etiquetas."
+
+#: ../../general/first_task/custom_fields.php:19
+#: ../../general/first_task/fields_manager.php:18
+msgid "There are no custom fields defined yet."
+msgstr "No hay campos personalizados definidos todavía."
+
+#: ../../general/first_task/custom_fields.php:24
+#: ../../enterprise/meta/monitoring/custom_fields_view.php:250
+msgid "Custom Fields"
+msgstr "Campos personalizados"
+
+#: ../../general/first_task/custom_fields.php:27
+#: ../../general/first_task/custom_fields.php:36
+msgid "Create Custom Fields"
+msgstr "Crear campos personalizados"
+
+#: ../../general/first_task/custom_fields.php:30
+msgid ""
+"Custom fields are an easy way to personalized agent's information.\n"
+"\t\t You're able to create custom fields by klicking on 'Administration' -> "
+"'Manage monitoring' -> 'Manage custom fields'. "
+msgstr ""
+"Los campos personalizados son una manera fácil de personalizar la información "
+"del agente.\n"
+"\t \t Puedes crear campos personalizados haciendo clic en \"Administración\" -"
+"> \"Administrar monitorización\" -> \"Administrar campos personalizados\". "
+
 #: ../../general/first_task/omnishell.php:27
 msgid "There is no command defined yet."
 msgstr "Aún no hay un comando definido."
 
+#: ../../general/first_task/omnishell.php:31
+#: ../../general/first_task/omnishell.php:34
+#: ../../enterprise/godmode/menu.php:308
+msgid "Omnishell"
+msgstr "Omnishell"
+
 #: ../../general/first_task/omnishell.php:37
 #, php-format
 msgid ""
@@ -41716,105 +3437,79 @@ msgstr ""
 msgid "Define a command"
 msgstr "Definir un comando"
 
-#: ../../general/first_task/fields_manager.php:18
-#: ../../general/first_task/custom_fields.php:19
-msgid "There are no custom fields defined yet."
-msgstr "No hay campos personalizados definidos todavía."
+#: ../../general/first_task/planned_downtime.php:18
+msgid "There are no scheduled downtime defined yet."
+msgstr "No se ha definido aún un tiempo de parada planificada."
 
-#: ../../general/first_task/fields_manager.php:22
-msgid "Fields Manager"
-msgstr "Gestor de campos"
+#: ../../general/first_task/planned_downtime.php:22
+msgid "Scehduled Downtime"
+msgstr "Parada planificada"
 
-#: ../../general/first_task/fields_manager.php:25
-msgid "Create Fields Manager"
-msgstr "Gestor de creación de archivos"
+#: ../../general/first_task/planned_downtime.php:25
+#: ../../general/first_task/planned_downtime.php:37
+msgid "Create Scheduled Downtime"
+msgstr "Parada planificada"
 
-#: ../../general/first_task/fields_manager.php:28
-msgid ""
-"Custom fields are an easy way to personalized agent's information.\n"
-"\t\t\t\tYou're able to create custom fields by klicking on 'Administration' -> "
-"'Manage monitoring' -> 'Manage custom fields'. "
-msgstr ""
-"Los campos personalizados son una forma fácil de personalizar la información "
-"de los agentes.\n"
-"\t\t\t\tPuedes crear campos personalizados haciendo clic en \"Administración\" "
-"-> \"Gestionar monitorización\" -> \"Gestionar campos personalizados\". "
-
-#: ../../general/first_task/fields_manager.php:34
-msgid "Create Fields "
-msgstr "Crear campos "
-
-#: ../../general/first_task/incidents.php:21
-msgid "There are no incidents defined yet."
-msgstr "No hay incidentes definidos todavía."
-
-#: ../../general/first_task/incidents.php:31
-#: ../../general/first_task/incidents.php:46
-msgid "Create Incidents"
-msgstr "Crear incidentes"
-
-#: ../../general/first_task/incidents.php:34
+#: ../../general/first_task/planned_downtime.php:28
 #, php-format
 msgid ""
-"Besides receiving and processing data to monitor systems or applications,\n"
-"\t\t\tyou're also required to monitor possible incidents which might take "
-"place on these subsystems within the system's monitoring process.\n"
-"\t\t\tFor it, the %s team has designed an incident manager from which any user "
-"is able to open incidents,\n"
-"\t\t\tthat explain what's happened on the network, and update them with "
-"comments and files, at any time, in case there is a need to do so.\n"
-"\t\t\tThis system allows users to work as a team, along with different roles "
-"and work-flow systems which allow an incident to be\n"
-"\t\t\tmoved from one group to another, and members from different groups and "
-"different people could work on the same incident, sharing information and "
-"files.\n"
-"\t\t"
+"%s contains a scheduled downtime management system.\n"
+"\t\t\t\t\t\tThis system was designed to deactivate alerts during specific "
+"intervals whenever there is down time by deactivating the agent.\n"
+"\t\t\t\t\t\tIf an agent is deactivated, it doesn't gather information. During "
+"down time, down-time intervals aren't taken into\n"
+"\t\t\t\t\t\taccount for most metrics or report types, because agents don't "
+"contain any data within those intervals."
 msgstr ""
-"A parte recibir y procesar datos para monitorizar sistemas y aplicaciones,\n"
-"\t\t\ttambién tiene que monitorizar las posibles incidencias que puedan "
-"ocurrir en estos subsistemas en el proceso de monitorización del sistema.\n"
-"\t\t\tPara ello, el equipo de %s ha diseñado un gestor de incidencias desde el "
-"que cualquier usuario puede crear incidencias\n"
-"\t\t\tque explican qué ha sucedido en la red y actualizar su estado a través "
-"de comentarios y archivos en cualquier momento, en caso de que sea necesario "
-"hacerlo.\n"
-"\t\t\tEste sistema permite que los usuarios trabajen como un equipo, junto con "
-"diferentes tareas y sistemas de flujo de trabajo que permiten que la "
-"incidencia pase\n"
-"\t\t\t de un equipo a otro, y los diferentes miembros de los diferentes "
-"equipos puedan trabajar sobre la misma incidencia, compartiendo información y "
-"archivos.\n"
-"\t\t"
+"%s contiene un sistema de gestión de paradas planificadas.\n"
+"\t\t\t\t\t\tEste sistema fue diseñado para desactivar las alertas durante "
+"intervalos específicos siempre que haya una parada a causa de un agente "
+"desactivado.\n"
+"\t\t\t\t\t\tSi un agente está desactivado, no recoge información. Durante esta "
+"parada, los intervalos de parada no se tienen en\n"
+"\t\t\t\t\t\tcuenta en la mayoría de las métricas e informes, porque los "
+"agentes no contienen datos durante dichos intervalos."
 
-#: ../../general/first_task/transactional_list.php:21
-msgid "There are no transactions defined yet."
-msgstr "No hay transacciones definidas por el momento."
-
-#: ../../general/first_task/transactional_list.php:28
-msgid "Transactions"
-msgstr "Transacciones"
-
-#: ../../general/first_task/transactional_list.php:31
-#: ../../general/first_task/transactional_list.php:41
-msgid "Create Transactions"
-msgstr "Crear transacciones"
-
-#: ../../general/first_task/transactional_list.php:34
-msgid ""
-"The new transactional server allows you to execute tasks dependent on the "
-"others following a user-defined design. This means that it is possible to "
-"coordinate several executions to check a target at a given time.\n"
-"\n"
-"Transaction graphs represent the different processes within our infrastructure "
-"that we use to deliver our service."
-msgstr ""
-"El nuevo servidor transaccional le permite ejecutar tareas dependientes de las "
-"demás siguiendo un diseño definido por el usuario. Esto significa que es "
-"posible coordinar varias ejecuciones para comprobar un objetivo en un momento "
-"dado.\n"
-"\n"
-"Las gráficas de transacción representan los diferentes procesos dentro de "
-"nuestra infraestructura, la cual usamos para llevar a cabo nuestros servicios."
+#: ../../general/first_task/cluster_builder.php:38 ../../operation/tree.php:183
+#: ../../operation/menu.php:31 ../../operation/menu.php:154
+#: ../../operation/snmpconsole/snmp_mib_uploader.php:56
+#: ../../operation/snmpconsole/snmp_browser.php:86
+#: ../../operation/snmpconsole/snmp_statistics.php:98
+#: ../../operation/snmpconsole/snmp_view.php:693
+#: ../../operation/snmpconsole/snmp_view.php:802 ../../operation/heatmap.php:133
+#: ../../operation/agentes/status_monitor.php:104
+#: ../../operation/agentes/alerts_status.php:200
+#: ../../operation/agentes/group_view.php:98
+#: ../../operation/agentes/interface_view.php:72
+#: ../../operation/agentes/tactical.php:78
+#: ../../operation/agentes/estado_agente.php:224
+#: ../../operation/agentes/ver_agente.php:1906
+#: ../../include/class/AgentsAlerts.class.php:750
+#: ../../enterprise/tools/ipam/ipam_editor.php:261
+#: ../../enterprise/views/cluster/list.php:31
+#: ../../enterprise/operation/services/services.treeview_services.php:61
+#: ../../enterprise/operation/services/services.list.php:58
+#: ../../enterprise/operation/services/services.table_services.php:38
+#: ../../enterprise/operation/agentes/tag_view.php:50
+#: ../../enterprise/operation/inventory/inventory.php:146
+#: ../../enterprise/include/ajax/ipam.ajax.php:455
+#: ../../enterprise/include/class/SAPView.class.php:155
+#: ../../enterprise/include/class/SAPView.class.php:199
+#: ../../enterprise/meta/general/main_menu.php:181
+#: ../../enterprise/meta/general/logon_ok.php:75
+#: ../../enterprise/meta/general/main_header.php:91
+#: ../../enterprise/extensions/vmware/vmware_view.php:1394
+#: ../../enterprise/godmode/services/services.massive.meta.php:42
+#: ../../enterprise/godmode/services/services.massive.elements.php:44
+#: ../../enterprise/godmode/reporting/aws_view.php:115
+#: ../../enterprise/godmode/reporting/aws_view.php:148
+#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:53
+#: ../../extensions/realtime_graphs.php:67 ../../extensions/module_groups.php:260
+#: ../../extensions/agents_modules.php:474
+#: ../../godmode/snmpconsole/snmp_filters.php:55
+#: ../../godmode/snmpconsole/snmp_trap_generator.php:47
+msgid "Monitoring"
+msgstr "Monitorización"
 
 #: ../../general/first_task/cluster_builder.php:46
 msgid "There are no clusters defined yet."
@@ -41869,6 +3564,199 @@ msgstr ""
 "encuentra \"en línea\", para que en caso de fallo del sistema en el maestro, "
 "sea el nodo activo el que recoja esta información."
 
+#: ../../general/first_task/snmp_filters.php:18
+msgid "There are no SNMP filter defined yet."
+msgstr "No hay filtro SNMP definido todavía."
+
+#: ../../general/first_task/snmp_filters.php:22
+msgid "SNMP Filter"
+msgstr "Filtro SNMP"
+
+#: ../../general/first_task/snmp_filters.php:25
+#: ../../general/first_task/snmp_filters.php:37
+msgid "Create SNMP Filter"
+msgstr "Crear un filtro SNMP"
+
+#: ../../general/first_task/snmp_filters.php:28
+msgid ""
+"Some systems receive a high number of traps. \n"
+"\t\t\t\tWe're only interested in monitoring a tiny percentage of them. From "
+"Pandora FMS versions 3.2 and above, \n"
+"\t\t\t\tit's possible to filter the traps that the server obtains in order to "
+"avoid straining the application unnecessarily.\n"
+"\t\t\t\tIn order to define different filters, please go to 'Administration' -> "
+"'Manage SNMP Console' and 'SNMP Filters'. \n"
+"\t\t\t\tOne trap which is going to run in conjunction with any of them - just "
+"the ones for the server are going to get ruled out automatically. "
+msgstr ""
+"Algunos sistemas reciben un alto número de traps.\n"
+"\t \t \t \t Solo es interesante realizar un seguimiento de un pequeño "
+"porcentaje de ellos. En las versiones de Pandora FMS 3.2 y superiores,\n"
+"\t \t \t \t es posible filtrar los traps que el servidor obtiene con el fin de "
+"evitar forzar la aplicación innecesariamente.\n"
+"\t \t \t \t Con el fin de definir diferentes filtros, por favor ve a "
+"\"Administración\" -> \"Administrar consola SNMP\" y \"Filtros SNMP\".\n"
+"\t \t \t \t Un trap que se va a ejecutar en conjunto con cualquiera de ellos - "
+"solo los del servidor van a ser descartado automáticamente. "
+
+#: ../../general/first_task/fields_manager.php:22
+msgid "Fields Manager"
+msgstr "Gestor de campos"
+
+#: ../../general/first_task/fields_manager.php:25
+msgid "Create Fields Manager"
+msgstr "Gestor de creación de archivos"
+
+#: ../../general/first_task/fields_manager.php:28
+msgid ""
+"Custom fields are an easy way to personalized agent's information.\n"
+"\t\t\t\tYou're able to create custom fields by klicking on 'Administration' -> "
+"'Manage monitoring' -> 'Manage custom fields'. "
+msgstr ""
+"Los campos personalizados son una forma fácil de personalizar la información "
+"de los agentes.\n"
+"\t\t\t\tPuedes crear campos personalizados haciendo clic en \"Administración\" "
+"-> \"Gestionar monitorización\" -> \"Gestionar campos personalizados\". "
+
+#: ../../general/first_task/fields_manager.php:34
+msgid "Create Fields "
+msgstr "Crear campos "
+
+#: ../../general/first_task/custom_graphs.php:19
+msgid "There are no custom graphs defined yet."
+msgstr "No hay gráficos personalizados definidos todavía."
+
+#: ../../general/first_task/custom_graphs.php:24
+msgid "Custom Graphs"
+msgstr "Gráficos personalizados"
+
+#: ../../general/first_task/custom_graphs.php:27
+#: ../../general/first_task/custom_graphs.php:39
+msgid "Create Custom Graph"
+msgstr "Crear gráfico personalizado"
+
+#: ../../general/first_task/custom_graphs.php:30
+#, php-format
+msgid ""
+"Graphs are designed to show the data collected by %s in a temporary scale "
+"defined by the user.\n"
+"\t\t\t\t%s Graphs display data in real time. They are generated every time the "
+"operator requires any of them and display the up-to-date state.\n"
+"\t\t\t\tThere are two types of graphs: The agent's automated graphs and the "
+"graphs the user customizes by using one or more modules to do so."
+msgstr ""
+"Las gráficas están diseñadas para mostrar los datos recogidos por %s en una "
+"escala temporal definida por el usuario.\n"
+"\t\t\t\tLas gráficas de %s muestran datos en tiempo real. Se generan cada vez "
+"que el operador necesita cualquiera de ellas y muestran su estado "
+"actualizado.\n"
+"\t\t\t\tHay dos tipos de gráficas: Las gráficas automatizadas del agente y las "
+"gráficas personalizadas por el usuario mediante uno o más módulos."
+
+#: ../../general/first_task/recon_view.php:18
+msgid "There are no discovery tasks defined yet."
+msgstr "Aún no hay tareas de discovery definidas."
+
+#: ../../general/first_task/recon_view.php:22
+#: ../../include/class/CustomNetScan.class.php:479
+#: ../../include/functions_servers.php:595
+#: ../../include/functions_servers.php:1341
+#: ../../enterprise/tools/ipam/ipam_editor.php:163
+#: ../../enterprise/include/ajax/ipam.ajax.php:357
+#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:450
+#: ../../enterprise/include/class/Aws.cloud.php:522
+#: ../../enterprise/include/class/Aws.cloud.php:1212
+#: ../../enterprise/include/class/Aws.S3.php:412
+#: ../../enterprise/include/class/MySQL.app.php:453
+#: ../../enterprise/include/class/Oracle.app.php:455
+#: ../../enterprise/include/class/DB2.app.php:448
+#: ../../enterprise/include/class/SAP.app.php:481
+#: ../../enterprise/include/class/VMware.app.php:593
+#: ../../enterprise/include/class/Azure.cloud.php:781
+#: ../../enterprise/include/class/Google.cloud.php:769
+#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:431
+#: ../../godmode/wizards/HostDevices.class.php:848
+msgid "Discovery server"
+msgstr "Servidor Discovery"
+
+#: ../../general/first_task/recon_view.php:25
+msgid "Create Discovery Task"
+msgstr "Crear tarea de Discovery"
+
+#: ../../general/first_task/recon_view.php:28
+msgid ""
+"Discovery Task are used to find new elements in the network. \n"
+"\t\tIf it detects any item, it will add that item to the monitoring, and if "
+"that item it is already being monitored, then it will \n"
+"\t\tignore it or will update its information.There are three types of "
+"detection: Based on <strong id=\"fuerte\"> ICMP </strong>(pings), \n"
+"\t\t<strong id=\"fuerte\">SNMP</strong> (detecting the topology of networks "
+"and their interfaces), and other <strong id=\"fuerte\"> customized </strong>\n"
+"\t\ttype. You can define your own customized recon script."
+msgstr ""
+"Las tareas de Discovery sirven para encontrar nuevos elementos en la red. \n"
+"\t\tSi detecta alguno, lo añadirá a la monitorización y si ese elemento ya "
+"está siendo monitorizado lo\n"
+"\t\tignorará o actualizará la información de este. Hay tres tipos de "
+"detección: Basada en <strong id=\"fuerte\"> ICMP </strong>(pings), \n"
+"\t\t<strong id=\"fuerte\">SNMP</strong> (detecta la topología de redes y sus "
+"interfaces), y otro <strong id=\"fuerte\"> personalizado </strong>\n"
+"\t\t. Puede definir su propio guión de reconocimiento personalizado."
+
+#: ../../general/first_task/recon_view.php:37
+msgid "Discover"
+msgstr "Descubrir"
+
+#: ../../general/first_task/incidents.php:21
+msgid "There are no incidents defined yet."
+msgstr "No hay incidentes definidos todavía."
+
+#: ../../general/first_task/incidents.php:28 ../../operation/menu.php:474
+#: ../../operation/agentes/ver_agente.php:1498
+#: ../../operation/incidents/incident_statistics.php:21
+#: ../../godmode/agentes/configurar_agente.php:581
+#: ../../godmode/agentes/configurar_agente.php:749
+msgid "Incidents"
+msgstr "Incidentes"
+
+#: ../../general/first_task/incidents.php:31
+#: ../../general/first_task/incidents.php:46
+msgid "Create Incidents"
+msgstr "Crear incidentes"
+
+#: ../../general/first_task/incidents.php:34
+#, php-format
+msgid ""
+"Besides receiving and processing data to monitor systems or applications,\n"
+"\t\t\tyou're also required to monitor possible incidents which might take "
+"place on these subsystems within the system's monitoring process.\n"
+"\t\t\tFor it, the %s team has designed an incident manager from which any user "
+"is able to open incidents,\n"
+"\t\t\tthat explain what's happened on the network, and update them with "
+"comments and files, at any time, in case there is a need to do so.\n"
+"\t\t\tThis system allows users to work as a team, along with different roles "
+"and work-flow systems which allow an incident to be\n"
+"\t\t\tmoved from one group to another, and members from different groups and "
+"different people could work on the same incident, sharing information and "
+"files.\n"
+"\t\t"
+msgstr ""
+"A parte recibir y procesar datos para monitorizar sistemas y aplicaciones,\n"
+"\t\t\ttambién tiene que monitorizar las posibles incidencias que puedan "
+"ocurrir en estos subsistemas en el proceso de monitorización del sistema.\n"
+"\t\t\tPara ello, el equipo de %s ha diseñado un gestor de incidencias desde el "
+"que cualquier usuario puede crear incidencias\n"
+"\t\t\tque explican qué ha sucedido en la red y actualizar su estado a través "
+"de comentarios y archivos en cualquier momento, en caso de que sea necesario "
+"hacerlo.\n"
+"\t\t\tEste sistema permite que los usuarios trabajen como un equipo, junto con "
+"diferentes tareas y sistemas de flujo de trabajo que permiten que la "
+"incidencia pase\n"
+"\t\t\t de un equipo a otro, y los diferentes miembros de los diferentes "
+"equipos puedan trabajar sobre la misma incidencia, compartiendo información y "
+"archivos.\n"
+"\t\t"
+
 #: ../../general/first_task/network_map.php:19
 msgid "There are no network map defined yet."
 msgstr "No hay mapas de red definidos todavía."
@@ -41916,170 +3804,25 @@ msgstr "Mapa dinámico"
 msgid "Policy Map (Only Enterprise version)"
 msgstr "Mapa de políticas (solo versión Enterprise)"
 
-#: ../../general/first_task/custom_graphs.php:19
-msgid "There are no custom graphs defined yet."
-msgstr "No hay gráficos personalizados definidos todavía."
+#: ../../general/first_task/collections.php:18
+#: ../../enterprise/meta/advanced/collections.php:443
+msgid "There are no collections defined yet."
+msgstr "No hay colecciones definidas todavía."
 
-#: ../../general/first_task/custom_graphs.php:24
-msgid "Custom Graphs"
-msgstr "Gráficos personalizados"
-
-#: ../../general/first_task/custom_graphs.php:27
-#: ../../general/first_task/custom_graphs.php:39
-msgid "Create Custom Graph"
-msgstr "Crear gráfico personalizado"
-
-#: ../../general/first_task/custom_graphs.php:30
-#, php-format
-msgid ""
-"Graphs are designed to show the data collected by %s in a temporary scale "
-"defined by the user.\n"
-"\t\t\t\t%s Graphs display data in real time. They are generated every time the "
-"operator requires any of them and display the up-to-date state.\n"
-"\t\t\t\tThere are two types of graphs: The agent's automated graphs and the "
-"graphs the user customizes by using one or more modules to do so."
-msgstr ""
-"Las gráficas están diseñadas para mostrar los datos recogidos por %s en una "
-"escala temporal definida por el usuario.\n"
-"\t\t\t\tLas gráficas de %s muestran datos en tiempo real. Se generan cada vez "
-"que el operador necesita cualquiera de ellas y muestran su estado "
-"actualizado.\n"
-"\t\t\t\tHay dos tipos de gráficas: Las gráficas automatizadas del agente y las "
-"gráficas personalizadas por el usuario mediante uno o más módulos."
-
-#: ../../general/first_task/HA_cluster_builder.php:37
-msgid "There are no HA clusters defined yet."
-msgstr "Aún no se han definido clusters de alta disponibilidad."
-
-#: ../../general/first_task/HA_cluster_builder.php:45
-msgid "PANDORA FMS DB CLUSTER"
-msgstr "CLUSTER DE LA BASE DE DATOS DE PANDORA FMS"
-
-#: ../../general/first_task/HA_cluster_builder.php:48
-msgid ""
-"With Pandora FMS Enterprise you can add high availability to your Pandora FMS "
-"installation by adding redundant MySQL servers"
-msgstr ""
-"Con Pandora FMS Enterprise puede añadir la alta disponibilidad a su "
-"instalación de Pandora FMS añadiendo servidores MySQL redundantes"
-
-#: ../../general/first_task/HA_cluster_builder.php:50
-msgid ""
-"Click on \"add new node\" to start transforming your Pandora FMS DB Cluster "
-"into a Pandora FMS DB Cluster."
-msgstr ""
-"Pinche en \"añadir nuevo módulo\" para empezar a convertir su cluster de base "
-"de datos de Pandora FMS en un cluster de base de datos de Pandora FMS."
-
-#: ../../general/first_task/HA_cluster_builder.php:59
-msgid "Add new node"
-msgstr "Añadir nuevo nodo"
-
-#: ../../general/first_task/snmp_filters.php:18
-msgid "There are no SNMP filter defined yet."
-msgstr "No hay filtro SNMP definido todavía."
-
-#: ../../general/first_task/snmp_filters.php:22
-msgid "SNMP Filter"
-msgstr "Filtro SNMP"
-
-#: ../../general/first_task/snmp_filters.php:25
-#: ../../general/first_task/snmp_filters.php:37
-msgid "Create SNMP Filter"
-msgstr "Crear un filtro SNMP"
-
-#: ../../general/first_task/snmp_filters.php:28
-msgid ""
-"Some systems receive a high number of traps. \n"
-"\t\t\t\tWe're only interested in monitoring a tiny percentage of them. From "
-"Pandora FMS versions 3.2 and above, \n"
-"\t\t\t\tit's possible to filter the traps that the server obtains in order to "
-"avoid straining the application unnecessarily.\n"
-"\t\t\t\tIn order to define different filters, please go to 'Administration' -> "
-"'Manage SNMP Console' and 'SNMP Filters'. \n"
-"\t\t\t\tOne trap which is going to run in conjunction with any of them - just "
-"the ones for the server are going to get ruled out automatically. "
-msgstr ""
-"Algunos sistemas reciben un alto número de traps.\n"
-"\t \t \t \t Solo es interesante realizar un seguimiento de un pequeño "
-"porcentaje de ellos. En las versiones de Pandora FMS 3.2 y superiores,\n"
-"\t \t \t \t es posible filtrar los traps que el servidor obtiene con el fin de "
-"evitar forzar la aplicación innecesariamente.\n"
-"\t \t \t \t Con el fin de definir diferentes filtros, por favor ve a "
-"\"Administración\" -> \"Administrar consola SNMP\" y \"Filtros SNMP\".\n"
-"\t \t \t \t Un trap que se va a ejecutar en conjunto con cualquiera de ellos - "
-"solo los del servidor van a ser descartado automáticamente. "
-
-#: ../../general/first_task/tags.php:18
-msgid "There are no tags defined yet."
-msgstr "No hay etiquetas definidas todavía."
-
-#: ../../general/first_task/tags.php:25 ../../general/first_task/tags.php:35
-msgid "Create Tags"
-msgstr "Crear etiquetas"
-
-#: ../../general/first_task/tags.php:28
-msgid ""
-"Access to modules can be configured by a tagging system.\n"
-"\t\t\t\t\t\t\t\tTags are configured on the system and are assigned to the "
-"chosen modules.\n"
-"\t\t\t\t\t\t\t\tA user's access can therefore be restricted to modules with "
-"certain tags."
-msgstr ""
-"El acceso a los módulos puede configurarse mediante etiquetas.\n"
-"\t\t\t\t\t\t\t\tLas etiquetas se configuran en el sistema y se asignan a los "
-"módulos elegidos.\n"
-"\t\t\t\t\t\t\t\tPor ello, se puede restringir el acceso de un usuario a los "
-"módulos mediante ciertas etiquetas."
-
-#: ../../general/first_task/planned_downtime.php:18
-msgid "There are no scheduled downtime defined yet."
-msgstr "No se ha definido aún un tiempo de parada planificada."
-
-#: ../../general/first_task/planned_downtime.php:22
-msgid "Scehduled Downtime"
-msgstr "Parada planificada"
-
-#: ../../general/first_task/planned_downtime.php:25
-#: ../../general/first_task/planned_downtime.php:37
-msgid "Create Scheduled Downtime"
-msgstr "Parada planificada"
-
-#: ../../general/first_task/planned_downtime.php:28
-#, php-format
-msgid ""
-"%s contains a scheduled downtime management system.\n"
-"\t\t\t\t\t\tThis system was designed to deactivate alerts during specific "
-"intervals whenever there is down time by deactivating the agent.\n"
-"\t\t\t\t\t\tIf an agent is deactivated, it doesn't gather information. During "
-"down time, down-time intervals aren't taken into\n"
-"\t\t\t\t\t\taccount for most metrics or report types, because agents don't "
-"contain any data within those intervals."
-msgstr ""
-"%s contiene un sistema de gestión de paradas planificadas.\n"
-"\t\t\t\t\t\tEste sistema fue diseñado para desactivar las alertas durante "
-"intervalos específicos siempre que haya una parada a causa de un agente "
-"desactivado.\n"
-"\t\t\t\t\t\tSi un agente está desactivado, no recoge información. Durante esta "
-"parada, los intervalos de parada no se tienen en\n"
-"\t\t\t\t\t\tcuenta en la mayoría de las métricas e informes, porque los "
-"agentes no contienen datos durante dichos intervalos."
-
-#: ../../general/first_task/custom_fields.php:27
-#: ../../general/first_task/custom_fields.php:36
-msgid "Create Custom Fields"
-msgstr "Crear campos personalizados"
-
-#: ../../general/first_task/custom_fields.php:30
-msgid ""
-"Custom fields are an easy way to personalized agent's information.\n"
-"\t\t You're able to create custom fields by klicking on 'Administration' -> "
-"'Manage monitoring' -> 'Manage custom fields'. "
-msgstr ""
-"Los campos personalizados son una manera fácil de personalizar la información "
-"del agente.\n"
-"\t \t Puedes crear campos personalizados haciendo clic en \"Administración\" -"
-"> \"Administrar monitorización\" -> \"Administrar campos personalizados\". "
+#: ../../general/first_task/collections.php:22
+#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2109
+#: ../../enterprise/include/functions_policies.php:3796
+#: ../../enterprise/meta/include/functions_agents_meta.php:533
+#: ../../enterprise/meta/advanced/collections.editor.php:60
+#: ../../enterprise/meta/advanced/collections.data.php:33
+#: ../../enterprise/godmode/menu.php:70
+#: ../../enterprise/godmode/agentes/collections.editor.php:71
+#: ../../enterprise/godmode/agentes/collections.agents.php:44
+#: ../../enterprise/godmode/agentes/collections.data.php:54
+#: ../../enterprise/godmode/policies/policies.php:505
+#: ../../enterprise/godmode/policies/policy_collections.php:31
+msgid "Collections"
+msgstr "Colecciones"
 
 #: ../../general/first_task/collections.php:25
 #: ../../general/first_task/collections.php:39
@@ -42120,111 +3863,59 @@ msgstr ""
 "se puede ver en \n"
 "\t\t la imagen de abajo. "
 
-#: ../../general/first_task/recon_view.php:18
-msgid "There are no discovery tasks defined yet."
-msgstr "Aún no hay tareas de discovery definidas."
+#: ../../general/first_task/transactional_list.php:21
+msgid "There are no transactions defined yet."
+msgstr "No hay transacciones definidas por el momento."
 
-#: ../../general/first_task/recon_view.php:25
-msgid "Create Discovery Task"
-msgstr "Crear tarea de Discovery"
+#: ../../general/first_task/transactional_list.php:28
+msgid "Transactions"
+msgstr "Transacciones"
 
-#: ../../general/first_task/recon_view.php:28
+#: ../../general/first_task/transactional_list.php:31
+#: ../../general/first_task/transactional_list.php:41
+msgid "Create Transactions"
+msgstr "Crear transacciones"
+
+#: ../../general/first_task/transactional_list.php:34
 msgid ""
-"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 <strong id=\"fuerte\"> ICMP </strong>(pings), \n"
-"\t\t<strong id=\"fuerte\">SNMP</strong> (detecting the topology of networks "
-"and their interfaces), and other <strong id=\"fuerte\"> customized </strong>\n"
-"\t\ttype. You can define your own customized recon script."
+"The new transactional server allows you to execute tasks dependent on the "
+"others following a user-defined design. This means that it is possible to "
+"coordinate several executions to check a target at a given time.\n"
+"\n"
+"Transaction graphs represent the different processes within our infrastructure "
+"that we use to deliver our service."
 msgstr ""
-"Las tareas de Discovery sirven para encontrar nuevos elementos en la red. \n"
-"\t\tSi detecta alguno, lo añadirá a la monitorización y si ese elemento ya "
-"está siendo monitorizado lo\n"
-"\t\tignorará o actualizará la información de este. Hay tres tipos de "
-"detección: Basada en <strong id=\"fuerte\"> ICMP </strong>(pings), \n"
-"\t\t<strong id=\"fuerte\">SNMP</strong> (detecta la topología de redes y sus "
-"interfaces), y otro <strong id=\"fuerte\"> personalizado </strong>\n"
-"\t\t. Puede definir su propio guión de reconocimiento personalizado."
+"El nuevo servidor transaccional le permite ejecutar tareas dependientes de las "
+"demás siguiendo un diseño definido por el usuario. Esto significa que es "
+"posible coordinar varias ejecuciones para comprobar un objetivo en un momento "
+"dado.\n"
+"\n"
+"Las gráficas de transacción representan los diferentes procesos dentro de "
+"nuestra infraestructura, la cual usamos para llevar a cabo nuestros servicios."
 
-#: ../../general/first_task/recon_view.php:37
-msgid "Discover"
-msgstr "Descubrir"
-
-#: ../../general/first_task/map_builder.php:34
-#: ../../general/first_task/map_builder.php:45
-msgid "Create Visual Console"
-msgstr "Crear consola visual"
-
-#: ../../general/first_task/map_builder.php:37
-#, php-format
-msgid ""
-"%s allows users to create visual maps on which each user is able to create his "
-"or her own monitoring map. The new visual console editor is much more "
-"practical, although the prior visual console editor had its advantages. On the "
-"new visual console, we've been successful in imitating the sensation and touch "
-"of a drawing application like GIMP. We've also simplified the editor by "
-"dividing it into several subject-divided tabs named 'Data', 'Preview', "
-"'Wizard', 'List of Elements' and 'Editor'. The items the %s Visual Map was "
-"designed to handle are 'static images', 'percentage bars', 'module graphs' and "
-"'simple values'."
-msgstr ""
-"%s permite a los usuarios crear mapas visuales en los que cada usuario puede "
-"crear su propio mapa de monitorización. El nuevo editor de consola visual es "
-"mucho más práctico, a pesar de que el editor de consola visual anterior tenía "
-"sus ventajas. Hemos conseguido imitar la sensación y el toque de una "
-"aplicación de dibujo como GIMP en la nueva consola visual. También hemos "
-"simplificado el editor dividiéndolo en diferentes pestañas clasificadas "
-"temáticamente llamadas \"Datos\", \"Vista previa\", \"Asistente\", \"Lista de "
-"elementos\" y \"Editor\". Los elementos para los que el mapa visual de %s fue "
-"diseñado son las \"imágenes estáticas\", las \"barras de porcentajes\" y los "
-"\"valores simples\"."
-
-#: ../../general/first_task/service_list.php:19
-msgid "There are no services defined yet."
-msgstr "No hay servicios definidos todavía."
-
-#: ../../general/first_task/service_list.php:26
-#: ../../general/first_task/service_list.php:40
-msgid "Create Services"
-msgstr "Crear servicios"
-
-#: ../../general/first_task/service_list.php:30
-msgid ""
-"A service is a way to group your IT resources based on their "
-"functionalities. \n"
-"\t\t\t\t\t\tA service could be e.g. your official website, your CRM system, "
-"your support application, or even your printers.\n"
-"\t\t\t\t\t\t Services are logical groups which can include hosts, routers, "
-"switches, firewalls, CRMs, ERPs, websites and numerous other services. \n"
-"\t\t\t\t\t\t By the following example, you're able to see more clearly what a "
-"service is:\n"
-"\t\t\t\t\t\t\tA chip manufacturer sells computers by its website all around "
-"the world. \n"
-"\t\t\t\t\t\t\tHis company consists of three big departments: A management, an "
-"on-line shop and support."
-msgstr ""
-"Un servicio es una forma de agrupar recursos de TI basados en tus "
-"funcionalidades.\n"
-"\t\t\t\t\t\tUn servicio puede ser por ejemplo tu página web oficial, tu "
-"sistema CRM, tu aplicación de soporte o incluso tus impresoras.\n"
-"\t\t\t\t\t\t Los servicios son grupos lógicos que pueden incluir hosts, "
-"routers, switches, firewalls, CRMs, ERPs, sitios web y muchos otros "
-"servicios. \n"
-"\t\t\t\t\t\t Mediante el siguiente ejemplo, podrá ver más claramente lo que es "
-"un servicio:\n"
-"\t\t\t\t\t\t\tUn fabricante de chips vende computadoras por su página web en "
-"todo el mundo. \n"
-"\t\t\t\t\t\t\tSu empresa se compone de tres grandes departamentos: gestión, "
-"tienda online y apoyo."
+#: ../../general/links_menu.php:17
+#: ../../enterprise/meta/general/main_menu.php:596
+#: ../../enterprise/meta/general/main_menu.php:616
+#: ../../enterprise/meta/general/main_header.php:381
+#: ../../enterprise/meta/general/main_header.php:448 ../../godmode/menu.php:390
+#: ../../godmode/menu.php:510
+msgid "Links"
+msgstr "Enlaces"
 
 #: ../../general/logon_ok.php:167
 #, php-format
 msgid "%s Overview"
 msgstr "Esquema %s"
 
-#: ../../general/logon_ok.php:206 ../../include/functions_events.php:5275
+#: ../../general/logon_ok.php:191
+#: ../../enterprise/operation/agentes/wux_console_view.php:357
+#: ../../enterprise/operation/agentes/wux_console_view.php:378
+#: ../../godmode/setup/performance.php:188
+#: ../../godmode/setup/performance.php:243
+msgid "ago"
+msgstr "hace"
+
+#: ../../general/logon_ok.php:206 ../../include/functions_events.php:5273
 msgid "by"
 msgstr "por"
 
@@ -42232,10 +3923,414 @@ msgstr "por"
 msgid "News board"
 msgstr "Tablón de noticias"
 
+#: ../../general/logon_ok.php:247 ../../general/login_page.php:230
+#: ../../general/login_page.php:272 ../../operation/search_users.php:71
+#: ../../operation/events/events.build_table.php:202
+#: ../../operation/events/events.build_table.php:707
+#: ../../operation/users/user_edit.php:696
+#: ../../operation/users/user_edit.php:742
+#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:118
+#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:249
+#: ../../include/functions_cron.php:463
+#: ../../include/class/AuditLog.class.php:108
+#: ../../include/class/AuditLog.class.php:211
+#: ../../include/class/CredentialStore.class.php:805
+#: ../../include/class/CredentialStore.class.php:1134
+#: ../../include/functions_events.php:194 ../../include/functions_events.php:245
+#: ../../include/functions_events.php:6695
+#: ../../include/functions_events.php:7122 ../../include/functions_config.php:708
+#: ../../include/functions_config.php:728 ../../include/functions.php:3045
+#: ../../include/functions_reporting_html.php:5674
+#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:502
+#: ../../enterprise/include/class/MySQL.app.php:523
+#: ../../enterprise/include/class/Oracle.app.php:508
+#: ../../enterprise/include/class/DB2.app.php:501
+#: ../../enterprise/include/functions_tasklist.php:152
+#: ../../enterprise/meta/general/login_page.php:125
+#: ../../enterprise/meta/general/login_page.php:167
+#: ../../enterprise/meta/include/functions_events_meta.php:70
+#: ../../enterprise/meta/include/functions_meta.php:1165
+#: ../../enterprise/meta/include/functions_meta.php:1219
+#: ../../enterprise/meta/include/functions_meta.php:1273
+#: ../../enterprise/meta/include/functions_wizard_meta.php:519
+#: ../../enterprise/meta/include/functions_wizard_meta.php:1473
+#: ../../enterprise/extensions/disabled/check_acls.php:47
+#: ../../enterprise/extensions/disabled/check_acls.php:132
+#: ../../enterprise/godmode/setup/setup_auth.php:1039
+#: ../../enterprise/godmode/setup/setup_auth.php:1071
+#: ../../enterprise/godmode/servers/manage_export_form.php:113
+#: ../../extensions/users_connected.php:143 ../../extensions/api_checker.php:138
+#: ../../mobile/operation/tactical.php:349
+#: ../../mobile/include/user.class.php:373
+#: ../../godmode/setup/setup_integria.php:283
+#: ../../godmode/setup/setup_ehorus.php:80
+#: ../../godmode/update_manager/update_manager.history.php:43
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3311
+#: ../../godmode/events/custom_events.php:99
+msgid "User"
+msgstr "Usuario"
+
+#: ../../general/logon_ok.php:248 ../../operation/snmpconsole/snmp_view.php:891
+#: ../../operation/snmpconsole/snmp_view.php:1266
+#: ../../operation/events/events.build_table.php:369
+#: ../../operation/agentes/alerts_status.php:550
+#: ../../operation/agentes/alerts_status.php:585
+#: ../../operation/agentes/alerts_status.php:620
+#: ../../operation/agentes/alerts_status.php:652
+#: ../../operation/agentes/alerts_status.functions.php:126
+#: ../../operation/search_alerts.php:37
+#: ../../include/ajax/alert_list.ajax.php:281
+#: ../../include/ajax/alert_list.ajax.php:306
+#: ../../include/ajax/alert_list.ajax.php:482
+#: ../../include/class/ModuleTemplates.class.php:894
+#: ../../include/class/AuditLog.class.php:109
+#: ../../include/class/AuditLog.class.php:201
+#: ../../include/class/AgentsAlerts.class.php:904
+#: ../../include/functions_events.php:6786
+#: ../../include/functions_ui_renders.php:117
+#: ../../include/functions_profile.php:217 ../../include/functions.php:3045
+#: ../../include/functions_reporting_html.php:3135
+#: ../../include/functions_reporting_html.php:5676
+#: ../../enterprise/tools/ipam/ipam_network_location_config.php:258
+#: ../../enterprise/tools/ipam/ipam_list.php:639
+#: ../../enterprise/operation/agentes/policy_view.php:260
+#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:433
+#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:495
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2585
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2905
+#: ../../enterprise/include/functions_services.php:1615
+#: ../../enterprise/meta/monitoring/wizard/wizard.manage_alert.php:257
+#: ../../enterprise/meta/advanced/metasetup.relations.php:550
+#: ../../enterprise/godmode/servers/manage_export.php:142
+#: ../../enterprise/godmode/modules/manage_inventory_modules.php:278
+#: ../../enterprise/godmode/services/services.massive.elements.php:66
+#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:191
+#: ../../enterprise/godmode/reporting/graph_template_list.php:209
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3524
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3722
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3745
+#: ../../enterprise/godmode/admin_access_logs.php:54
+#: ../../enterprise/godmode/alerts/alert_inventory_list.php:379
+#: ../../enterprise/godmode/alerts/alert_inventory_builder.php:241
+#: ../../enterprise/godmode/policies/policy_modules.php:1466
+#: ../../enterprise/godmode/policies/policy_alerts.php:575
+#: ../../mobile/operation/tactical.php:348
+#: ../../godmode/modules/manage_network_components.php:755
+#: ../../godmode/modules/manage_network_templates.php:248
+#: ../../godmode/modules/manage_nc_groups.php:243
+#: ../../godmode/reporting/visual_console_builder.elements.php:118
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3808
+#: ../../godmode/reporting/reporting_builder.item_editor.php:4299
+#: ../../godmode/reporting/reporting_builder.item_editor.php:4320
+#: ../../godmode/snmpconsole/snmp_alert.php:1241
+#: ../../godmode/snmpconsole/snmp_alert.php:1365
+#: ../../godmode/snmpconsole/snmp_filters.php:291
+#: ../../godmode/events/event_filter.php:141
+#: ../../godmode/netflow/nf_edit.php:161
+#: ../../godmode/netflow/nf_item_list.php:178
+#: ../../godmode/massive/massive_operations.php:426
+#: ../../godmode/massive/massive_standby_alerts.php:250
+#: ../../godmode/massive/massive_add_action_alerts.php:248
+#: ../../godmode/massive/massive_delete_action_alerts.php:270
+#: ../../godmode/massive/massive_enable_disable_alerts.php:222
+#: ../../godmode/agentes/module_manager.php:867
+#: ../../godmode/agentes/planned_downtime.editor.php:1002
+#: ../../godmode/agentes/agent_template.php:238
+#: ../../godmode/alerts/alert_list.list.php:745
+#: ../../godmode/alerts/alert_view.php:388
+msgid "Action"
+msgstr "Acción"
+
+#: ../../general/logon_ok.php:250
+#: ../../operation/snmpconsole/snmp_statistics.php:182
+#: ../../include/class/AuditLog.class.php:111
+#: ../../include/functions_netflow.php:347 ../../include/functions.php:3045
+#: ../../include/functions_reporting_html.php:5678
+#: ../../enterprise/include/functions_reporting_csv.php:2808
+#: ../../mobile/operation/tactical.php:351
+msgid "Source IP"
+msgstr "IP origen"
+
+#: ../../general/logon_ok.php:251 ../../operation/users/user_edit.php:606
+#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:317
+#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:410
+#: ../../include/ajax/events.php:1517 ../../include/class/AuditLog.class.php:112
+#: ../../include/functions.php:3045
+#: ../../include/functions_reporting_html.php:5679
+#: ../../enterprise/tools/ipam/ipam_ajax.php:293
+#: ../../enterprise/tools/ipam/ipam_ajax.php:479
+#: ../../enterprise/tools/ipam/ipam_massive.php:83
+#: ../../enterprise/tools/ipam/ipam_network.php:403
+#: ../../enterprise/tools/ipam/ipam_network.php:672
+#: ../../enterprise/include/functions_reporting_csv.php:1935
+#: ../../enterprise/include/functions_reporting.php:2317
+#: ../../enterprise/include/functions_ipam.php:2040
+#: ../../mobile/operation/events.php:561
+#: ../../godmode/users/configure_user.php:1042
+msgid "Comments"
+msgstr "Comentarios"
+
 #: ../../general/logon_ok.php:296
 msgid "Latest activity"
 msgstr "Actividad reciente"
 
+#: ../../general/php7_message.php:30
+#: ../../include/class/ConsoleSupervisor.php:1606
+msgid ""
+"For a correct operation of PandoraFMS, PHP must be updated to version 7.0 or "
+"higher."
+msgstr ""
+"Para que Pandora FMS funcione correctamente, PHP debe estar actualizado a la "
+"versión 7.0 o superior."
+
+#: ../../general/php7_message.php:31
+#: ../../include/class/ConsoleSupervisor.php:1606
+msgid "Otherwise, functionalities will be lost."
+msgstr "Si no, ciertas funcionalidades no estarán disponibles."
+
+#: ../../general/php7_message.php:33
+#: ../../include/class/ConsoleSupervisor.php:1606
+msgid "Report download in PDF format"
+msgstr "Descarga de informes en formato PDF"
+
+#: ../../general/php7_message.php:34
+#: ../../include/class/ConsoleSupervisor.php:1606
+msgid "Emails Sending"
+msgstr "Envío de emails"
+
+#: ../../general/php7_message.php:35
+#: ../../include/class/ConsoleSupervisor.php:1606
+msgid "Metaconsole Collections"
+msgstr "Colecciones de la metaconsola"
+
+#: ../../general/php7_message.php:38
+msgid "Access Help"
+msgstr "Ayuda de acceso"
+
+#: ../../general/php7_message.php:41
+msgid "Warning php version"
+msgstr "Advertencia de la versión php"
+
+#: ../../general/subselect_data_module.php:62 ../../operation/tree.php:210
+#: ../../operation/tree.php:267 ../../operation/snmpconsole/snmp_view.php:549
+#: ../../operation/snmpconsole/snmp_view.php:578
+#: ../../operation/snmpconsole/snmp_view.php:586
+#: ../../operation/snmpconsole/snmp_view.php:902 ../../operation/heatmap.php:115
+#: ../../operation/events/events.build_table.php:626
+#: ../../operation/events/events.php:1080 ../../operation/events/events.php:1149
+#: ../../operation/events/events.php:1258 ../../operation/events/events.php:1310
+#: ../../operation/events/events.php:2315
+#: ../../operation/events/events_list.php:827
+#: ../../operation/events/events_list.php:839
+#: ../../operation/events/events_list.php:948
+#: ../../operation/events/events_list.php:960
+#: ../../operation/agentes/status_monitor.php:655
+#: ../../operation/agentes/estado_monitores.php:520
+#: ../../operation/agentes/estado_monitores.php:565
+#: ../../operation/agentes/alerts_status.functions.php:94
+#: ../../operation/agentes/alerts_status.functions.php:100
+#: ../../operation/agentes/alerts_status.functions.php:114
+#: ../../operation/agentes/alerts_status.functions.php:131
+#: ../../operation/agentes/alerts_status.functions.php:134
+#: ../../operation/agentes/estado_agente.php:281
+#: ../../operation/incidents/list_integriaims_incidents.php:326
+#: ../../operation/incidents/list_integriaims_incidents.php:337
+#: ../../operation/incidents/list_integriaims_incidents.php:354
+#: ../../operation/incidents/list_integriaims_incidents.php:365
+#: ../../include/ajax/events.php:438 ../../include/class/AuditLog.class.php:203
+#: ../../include/class/AuditLog.class.php:213
+#: ../../include/class/CredentialStore.class.php:535
+#: ../../include/lib/Dashboard/Widgets/system_group_status.php:399
+#: ../../include/lib/Dashboard/Widgets/events_list.php:401
+#: ../../include/lib/Dashboard/Widgets/tree_view.php:384
+#: ../../include/lib/Dashboard/Widgets/tree_view.php:417
+#: ../../include/functions_events.php:6435
+#: ../../include/functions_events.php:7041 ../../include/functions_groups.php:646
+#: ../../include/functions_groups.php:1940
+#: ../../include/functions_notifications.php:108
+#: ../../include/functions_reporting.php:2831
+#: ../../include/functions_reporting.php:2928
+#: ../../include/functions_modules.php:3542
+#: ../../include/functions_modules.php:3544
+#: ../../include/functions_groupview.php:95 ../../include/functions_html.php:915
+#: ../../include/functions_html.php:1566 ../../include/functions.php:1071
+#: ../../include/functions.php:1331 ../../include/functions_users.php:416
+#: ../../include/functions_users.php:674
+#: ../../enterprise/operation/log/log_viewer.php:620
+#: ../../enterprise/operation/log/log_viewer.php:638
+#: ../../enterprise/operation/log/log_viewer.php:688
+#: ../../enterprise/operation/snmpconsole/snmp_view.php:33
+#: ../../enterprise/operation/agentes/tag_view.php:145
+#: ../../enterprise/operation/agentes/tag_view.php:171
+#: ../../enterprise/operation/agentes/tag_view.php:237
+#: ../../enterprise/operation/agentes/tag_view.php:301
+#: ../../enterprise/operation/agentes/tag_view.php:304
+#: ../../enterprise/operation/agentes/tag_view.php:390
+#: ../../enterprise/operation/agentes/agent_inventory.php:74
+#: ../../enterprise/operation/inventory/inventory.php:75
+#: ../../enterprise/operation/inventory/inventory.php:76
+#: ../../enterprise/operation/inventory/inventory.php:155
+#: ../../enterprise/operation/inventory/inventory.php:156
+#: ../../enterprise/operation/inventory/inventory.php:318
+#: ../../enterprise/operation/inventory/inventory.php:346
+#: ../../enterprise/operation/inventory/inventory.php:355
+#: ../../enterprise/include/class/ManageBackups.class.php:191
+#: ../../enterprise/include/functions_metaconsole.php:960
+#: ../../enterprise/include/functions_metaconsole.php:961
+#: ../../enterprise/include/functions_metaconsole.php:1309
+#: ../../enterprise/include/functions_ipam.php:1688
+#: ../../enterprise/include/functions_ipam.php:1733
+#: ../../enterprise/meta/include/ajax/wizard.ajax.php:400
+#: ../../enterprise/meta/include/ajax/wizard.ajax.php:444
+#: ../../enterprise/meta/include/functions_html_meta.php:75
+#: ../../enterprise/meta/include/functions_users_meta.php:87
+#: ../../enterprise/meta/include/functions_users_meta.php:98
+#: ../../enterprise/meta/include/functions_wizard_meta.php:322
+#: ../../enterprise/meta/monitoring/custom_fields_view.php:193
+#: ../../enterprise/meta/monitoring/custom_fields_view.php:209
+#: ../../enterprise/meta/monitoring/custom_fields_view.php:272
+#: ../../enterprise/meta/monitoring/custom_fields_view.php:762
+#: ../../enterprise/meta/monitoring/wizard/wizard.php:148
+#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:414
+#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:218
+#: ../../enterprise/meta/advanced/policymanager.queue.php:212
+#: ../../enterprise/meta/advanced/policymanager.queue.php:217
+#: ../../enterprise/meta/advanced/policymanager.queue.php:228
+#: ../../enterprise/meta/advanced/policymanager.queue.php:304
+#: ../../enterprise/meta/advanced/metasetup.relations.php:419
+#: ../../enterprise/meta/advanced/collections.data.php:412
+#: ../../enterprise/meta/advanced/metasetup.visual.php:290
+#: ../../enterprise/godmode/setup/setup_acl.php:487
+#: ../../enterprise/godmode/setup/setup_acl.php:504
+#: ../../enterprise/godmode/setup/setup_acl.php:521
+#: ../../enterprise/godmode/setup/setup_acl.php:753
+#: ../../enterprise/godmode/setup/setup_acl.php:761
+#: ../../enterprise/godmode/setup/setup_acl.php:772
+#: ../../enterprise/godmode/setup/setup_acl.php:813
+#: ../../enterprise/godmode/setup/setup_acl.php:844
+#: ../../enterprise/godmode/modules/local_components.php:541
+#: ../../enterprise/godmode/modules/local_components.php:567
+#: ../../enterprise/godmode/modules/local_components.php:592
+#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:241
+#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:243
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2022
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2825
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2852
+#: ../../enterprise/godmode/reporting/reporting_builder.global.php:143
+#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:187
+#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:612
+#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:638
+#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:131
+#: ../../enterprise/godmode/agentes/collections.data.php:506
+#: ../../enterprise/godmode/alerts/alert_inventory_builder.php:264
+#: ../../enterprise/godmode/policies/policy_agents.php:833
+#: ../../enterprise/godmode/policies/policy_queue.php:603
+#: ../../enterprise/godmode/policies/policy_queue.php:608
+#: ../../enterprise/godmode/policies/policy_queue.php:619
+#: ../../enterprise/godmode/policies/policy_queue.php:692
+#: ../../enterprise/godmode/policies/policy_external_alerts.php:358
+#: ../../extensions/files_repo/files_repo_form.php:46
+#: ../../extensions/agents_modules.php:416 ../../mobile/operation/modules.php:68
+#: ../../mobile/operation/modules.php:289 ../../mobile/operation/modules.php:304
+#: ../../mobile/operation/alerts.php:65 ../../mobile/operation/alerts.php:72
+#: ../../mobile/operation/events.php:683 ../../mobile/operation/events.php:693
+#: ../../mobile/operation/events.php:1165 ../../mobile/operation/events.php:1194
+#: ../../mobile/operation/agents.php:56 ../../godmode/setup/gis_step_2.php:217
+#: ../../godmode/setup/setup_visuals.php:950
+#: ../../godmode/modules/manage_network_components.php:653
+#: ../../godmode/modules/manage_network_templates_form.php:303
+#: ../../godmode/reporting/reporting_builder.list_items.php:209
+#: ../../godmode/reporting/reporting_builder.list_items.php:211
+#: ../../godmode/reporting/reporting_builder.list_items.php:213
+#: ../../godmode/reporting/reporting_builder.list_items.php:235
+#: ../../godmode/reporting/reporting_builder.list_items.php:245
+#: ../../godmode/reporting/reporting_builder.list_items.php:255
+#: ../../godmode/reporting/create_container.php:546
+#: ../../godmode/reporting/reporting_builder.item_editor.php:1528
+#: ../../godmode/reporting/reporting_builder.item_editor.php:1546
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2007
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2826
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2853
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3471
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3537
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3559
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3617
+#: ../../godmode/reporting/visual_console_builder.wizard.php:340
+#: ../../godmode/reporting/visual_console_builder.wizard.php:354
+#: ../../godmode/events/event_edit_filter.php:323
+#: ../../godmode/events/event_edit_filter.php:338
+#: ../../godmode/events/event_edit_filter.php:601
+#: ../../godmode/massive/massive_delete_modules.php:327
+#: ../../godmode/massive/massive_delete_modules.php:374
+#: ../../godmode/massive/massive_delete_modules.php:429
+#: ../../godmode/massive/massive_delete_modules.php:450
+#: ../../godmode/massive/massive_copy_modules.php:127
+#: ../../godmode/massive/massive_copy_modules.php:287
+#: ../../godmode/massive/massive_edit_agents.php:543
+#: ../../godmode/massive/massive_edit_agents.php:556
+#: ../../godmode/massive/massive_delete_agents.php:221
+#: ../../godmode/massive/massive_delete_agents.php:235
+#: ../../godmode/massive/massive_edit_modules.php:311
+#: ../../godmode/massive/massive_edit_modules.php:358
+#: ../../godmode/massive/massive_edit_modules.php:396
+#: ../../godmode/massive/massive_edit_modules.php:482
+#: ../../godmode/alerts/alert_list.list.php:121
+#: ../../godmode/alerts/alert_list.list.php:127
+#: ../../godmode/alerts/alert_list.list.php:136
+#: ../../godmode/alerts/alert_list.list.php:145
+#: ../../godmode/alerts/alert_templates.php:308
+#: ../../godmode/alerts/alert_list.php:460
+#: ../../godmode/alerts/alert_list.php:509
+#: ../../godmode/alerts/alert_list.php:523
+msgid "All"
+msgstr "Todo"
+
+#: ../../general/footer.php:51
+#, php-format
+msgid "%s %s - %s - MR %s"
+msgstr "%s %s - %s - MR %s"
+
+#: ../../general/footer.php:56
+#, php-format
+msgid "Page generated on %s"
+msgstr "Página generada en %s"
+
+#: ../../general/mysqlerr.php:105
+msgid "Database error"
+msgstr "Error en la base de datos"
+
+#: ../../general/mysqlerr.php:115
+msgid ""
+"Failure to connect to historical database, please check the configuration or "
+"contact system administrator if you need assistance."
+msgstr ""
+"Error al conectar con la base de datos histórica, revise la configuración o "
+"póngase en contacto con el administrador del sistema si necesita ayuda."
+
+#: ../../general/mysqlerr.php:117
+msgid ""
+"Failure to connect to Database server, please check the configuration file "
+"config.php or contact system administrator if you need assistance."
+msgstr ""
+"Error al conectar con el servidor de la base de datos. Revise el archivo de "
+"configuración config.php o póngase en contacto con el administrador del "
+"sistema si necesita ayuda."
+
+#: ../../general/node_deactivated.php:36
+msgid "You cannot use this node until system is unified"
+msgstr "No puede utilizar este nodo hasta que el sistema esté unificado"
+
+#: ../../general/node_deactivated.php:59
+#: ../../enterprise/meta/monitoring/wizard/wizard.php:53
+#: ../../enterprise/meta/advanced/massive_operations.php:57
+msgid "command center"
+msgstr "command center"
+
+#: ../../general/node_deactivated.php:56
+#, php-format
+msgid "Please navigate to %s to unify system"
+msgstr "Navegue a %s para unificar el sistema"
+
 #: ../../general/login_page.php:54
 #, php-format
 msgid "Go to %s Website"
@@ -42245,14 +4340,113 @@ msgstr "Ir a la página web de %s"
 msgid "Go to Login"
 msgstr "Ir a la pantalla de inicio"
 
+#: ../../general/login_page.php:79
+#: ../../enterprise/meta/general/login_page.php:45
+#: ../../enterprise/meta/include/reset_pass.php:28
+#: ../../enterprise/meta/include/process_reset_pass.php:28
+msgid "Splash login"
+msgstr "Splash login"
+
+#: ../../general/login_page.php:136 ../../general/login_page.php:139
+#: ../../general/login_page.php:155 ../../enterprise/include/reset_pass.php:48
+#: ../../enterprise/include/process_reset_pass.php:53
+msgid "Docs"
+msgstr "Documentos"
+
+#: ../../general/login_page.php:244 ../../general/login_page.php:285
+#: ../../operation/users/user_edit.php:702
+#: ../../operation/users/user_edit.php:748
+#: ../../include/class/AgentWizard.class.php:672
+#: ../../include/class/CredentialStore.class.php:958
+#: ../../include/class/CredentialStore.class.php:995
+#: ../../include/class/CredentialStore.class.php:1135
+#: ../../include/class/CredentialStore.class.php:1158
+#: ../../include/functions_config.php:712 ../../include/functions_config.php:732
+#: ../../enterprise/include/ajax/servers.ajax.php:101
+#: ../../enterprise/include/ajax/servers.ajax.php:159
+#: ../../enterprise/include/ajax/servers.ajax.php:285
+#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:514
+#: ../../enterprise/include/class/MySQL.app.php:535
+#: ../../enterprise/include/class/Oracle.app.php:520
+#: ../../enterprise/include/class/DB2.app.php:513
+#: ../../enterprise/include/class/VMware.app.php:732
+#: ../../enterprise/include/functions_setup.php:55
+#: ../../enterprise/include/functions_setup.php:113
+#: ../../enterprise/include/functions_ui.php:104
+#: ../../enterprise/meta/general/login_page.php:139
+#: ../../enterprise/meta/general/login_page.php:181
+#: ../../enterprise/meta/include/functions_meta.php:1177
+#: ../../enterprise/meta/include/functions_meta.php:1231
+#: ../../enterprise/meta/include/functions_meta.php:1285
+#: ../../enterprise/meta/include/functions_wizard_meta.php:523
+#: ../../enterprise/meta/include/functions_wizard_meta.php:1477
+#: ../../enterprise/godmode/setup/setup_auth.php:1045
+#: ../../enterprise/godmode/setup/setup_auth.php:1077
+#: ../../enterprise/godmode/setup/setup_module_library.php:52
+#: ../../enterprise/godmode/servers/manage_export_form.php:117
+#: ../../enterprise/godmode/servers/credential_boxes_satellite.php:250
+#: ../../enterprise/godmode/servers/manage_credential_boxes.php:59
+#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:851
+#: ../../extensions/api_checker.php:143 ../../mobile/include/user.class.php:380
+#: ../../godmode/setup/setup_integria.php:289
+#: ../../godmode/setup/setup_ehorus.php:86
+#: ../../godmode/modules/manage_network_components_form_wmi.php:49
+#: ../../godmode/massive/massive_edit_modules.php:908
+#: ../../godmode/agentes/module_manager_editor_wmi.php:116
+#: ../../godmode/users/configure_user.php:934
+msgid "Password"
+msgstr "Contraseña"
+
 #: ../../general/login_page.php:251
 msgid "Login as admin"
 msgstr "Entrar como administrador"
 
+#: ../../general/login_page.php:259
+#: ../../enterprise/meta/general/login_page.php:154
+#: ../../mobile/include/user.class.php:404
+msgid "Login with SAML"
+msgstr "Entrar con SAML"
+
+#: ../../general/login_page.php:291
+#: ../../enterprise/meta/general/login_page.php:146
+#: ../../enterprise/meta/general/login_page.php:187
+#: ../../mobile/include/user.class.php:384
+msgid "Login"
+msgstr "Iniciar sesión"
+
+#: ../../general/login_page.php:307
+#: ../../enterprise/meta/general/login_page.php:109
+msgid "Authentication code"
+msgstr "Código de autentificación"
+
+#: ../../general/login_page.php:310
+#: ../../enterprise/meta/general/login_page.php:112
+#: ../../mobile/include/user.class.php:473
+msgid "Check code"
+msgstr "Código de comprobación"
+
 #: ../../general/login_page.php:319
 msgid "View details"
 msgstr "Ver detalles"
 
+#: ../../general/login_page.php:334 ../../general/login_page.php:337
+#: ../../enterprise/meta/general/login_page.php:195
+msgid "Forgot your password?"
+msgstr "¿Has olvidado tu contraseña?"
+
+#: ../../general/login_page.php:340 ../../general/login_page.php:343
+#: ../../general/login_page.php:428 ../../general/login_page.php:431
+#: ../../general/login_page.php:445 ../../general/login_page.php:448
+#: ../../general/login_page.php:465 ../../general/login_page.php:468
+#: ../../enterprise/meta/general/login_page.php:235
+#: ../../enterprise/meta/general/login_page.php:238
+#: ../../enterprise/meta/general/login_page.php:252
+#: ../../enterprise/meta/general/login_page.php:255
+#: ../../enterprise/meta/general/login_page.php:272
+#: ../../enterprise/meta/general/login_page.php:275
+msgid "Password reset"
+msgstr "Restablecer contraseña"
+
 #: ../../general/login_page.php:347
 msgid ""
 "This node is configured with centralized mode. Go to metaconsole to reset the "
@@ -42270,6 +4464,62 @@ msgstr "BIENVENIDO A %s"
 msgid "NEXT GENERATION"
 msgstr "NEXT GENERATION"
 
+#: ../../general/login_page.php:424 ../../enterprise/include/reset_pass.php:170
+#: ../../enterprise/include/process_reset_pass.php:183
+#: ../../enterprise/meta/general/login_page.php:232
+#: ../../enterprise/meta/include/reset_pass.php:161
+#: ../../enterprise/meta/include/process_reset_pass.php:164
+msgid "Build"
+msgstr "Crear"
+
+#: ../../general/login_page.php:435
+#: ../../enterprise/meta/general/login_page.php:242
+msgid "INFO"
+msgstr "INFO"
+
+#: ../../general/login_page.php:436
+#: ../../enterprise/meta/general/login_page.php:243
+msgid "An email has been sent to your email address"
+msgstr "Se ha enviado un email a su dirección de correo electrónico"
+
+#: ../../general/login_page.php:452 ../../general/login_page.php:494
+#: ../../enterprise/include/reset_pass.php:181
+#: ../../enterprise/meta/general/login_page.php:259
+#: ../../enterprise/meta/general/login_page.php:301
+#: ../../enterprise/meta/include/reset_pass.php:172
+msgid "ERROR"
+msgstr "ERROR"
+
+#: ../../general/login_page.php:472
+#: ../../enterprise/meta/general/login_page.php:279
+msgid "SUCCESS"
+msgstr "CORRECTO"
+
+#: ../../general/login_page.php:487 ../../general/login_page.php:490
+#: ../../general/login_page.php:644 ../../general/login_page.php:647
+#: ../../enterprise/include/functions_login.php:141
+#: ../../enterprise/meta/general/login_page.php:294
+#: ../../enterprise/meta/general/login_page.php:297
+msgid "Login failed"
+msgstr "Error de inicio de sesión"
+
+#: ../../general/login_page.php:512 ../../general/login_page.php:515
+#: ../../general/login_page.php:519
+#: ../../enterprise/meta/general/login_page.php:319
+#: ../../enterprise/meta/general/login_page.php:322
+#: ../../enterprise/meta/general/login_page.php:326
+msgid "Logged out"
+msgstr "Desconectado"
+
+#: ../../general/login_page.php:521
+#: ../../enterprise/meta/general/login_page.php:327
+#: ../../mobile/include/user.class.php:342
+#, php-format
+msgid ""
+"Your session has ended. Please close your browser window to close this %s "
+"session."
+msgstr "La sesión ha terminado. Cierre el navegador para cerrar la sesión de %s."
+
 #: ../../general/login_page.php:536
 msgid "User node access not enabled"
 msgstr "Acceso de usuario al nodo no habilitado"
@@ -42435,94 +4685,26 @@ msgstr ""
 "En el archivo config.php en la variable $config[\"homeurl\"] o "
 "$config[\"homeurl_static\"] = añade la ruta correcta"
 
-#: ../../general/logon_failed.php:30
+#: ../../general/noaccesssaml.php:135
+#: ../../enterprise/meta/general/noaccesssaml.php:135
 msgid ""
-"Either, your password or your login are incorrect. Please check your CAPS LOCK "
-"key, username and password are case SeNSiTiVe.<br><br>All actions, included "
-"failed login attempts are logged in Pandora FMS System logs, and these can be "
-"reviewed by each user, please report to admin any incident or malfunction."
-msgstr ""
-"La combinación usuario/contraseña es incorrecta. Comprueba que no está "
-"habilitado el bloqueo de mayúsculas, los campos distinguen entre mayúsculas y "
-"minúsculas.<br><br> Todas las acciones, incluidos los intentos fallidos de "
-"acceso son guardados en el sistema de registro de logs de Pandora FMS y pueden "
-"ser revisados por cada usuario. Contacta al administrador cualquier incidente "
-"o fallo."
-
-#: ../../general/mysqlerr.php:105
-msgid "Database error"
-msgstr "Error en la base de datos"
-
-#: ../../general/mysqlerr.php:115
-msgid ""
-"Failure to connect to historical database, please check the configuration or "
+"Access to this page is restricted to authorized users SAML only, please "
 "contact system administrator if you need assistance."
 msgstr ""
-"Error al conectar con la base de datos histórica, revise la configuración o "
-"póngase en contacto con el administrador del sistema si necesita ayuda."
+"El acceso a esta página está restringido solo a los los usuarios SAML, póngase "
+"en contacto con el administrador del sistema si necesita ayuda."
 
-#: ../../general/mysqlerr.php:117
+#: ../../general/noaccesssaml.php:137
+#: ../../enterprise/meta/general/noaccesssaml.php:137
+#, php-format
 msgid ""
-"Failure to connect to Database server, please check the configuration file "
-"config.php or contact system administrator if you need assistance."
+"Please make sure you have SAML authentication properly configured. For more "
+"information the error to access this page are recorded in security logs of %s "
+"System Database"
 msgstr ""
-"Error al conectar con el servidor de la base de datos. Revise el archivo de "
-"configuración config.php o póngase en contacto con el administrador del "
-"sistema si necesita ayuda."
-
-#: ../../general/mysqlerr.php:142 ../../general/login_help_dialog.php:96
-#: ../../general/login_help_dialog.php:101
-msgid "Documentation"
-msgstr "Documentación"
-
-#: ../../general/header.php:77
-msgid "Sobre actualización de revisión menor"
-msgstr "Sobre actualización de revisión menor"
-
-#: ../../general/header.php:79
-msgid "About minor release update"
-msgstr "Sobre la actualización menor"
-
-#: ../../general/header.php:112 ../../general/header.php:114
-msgid "Enter keywords to search"
-msgstr "Introduce palabras clave para buscar"
-
-#: ../../general/header.php:356 ../../general/header.php:358
-#: ../../include/class/Diagnostics.class.php:1967
-#: ../../include/class/HelpFeedBack.class.php:213
-msgid "Feedback"
-msgstr "Feedback"
-
-#: ../../general/header.php:379
-msgid "Go to support"
-msgstr "Ir a soporte"
-
-#: ../../general/header.php:393
-msgid "Go to documentation"
-msgstr "Ir a documentación"
-
-#: ../../general/header.php:815
-msgid "Report an issue"
-msgstr "Notificar un error"
-
-#: ../../general/node_deactivated.php:36
-msgid "You cannot use this node until system is unified"
-msgstr "No puede utilizar este nodo hasta que el sistema esté unificado"
-
-#: ../../general/node_deactivated.php:56
-#, php-format
-msgid "Please navigate to %s to unify system"
-msgstr "Navegue a %s para unificar el sistema"
-
-#: ../../general/footer.php:47
-#, php-format
-msgid "%s %s - %s - MR %s"
-msgstr "%s %s - %s - MR %s"
-
-#: ../../general/footer.php:52
-#, php-format
-msgid "Page generated on %s"
-msgstr "Página generada en %s"
+"Asegúrese de que la autenticación SAML esta configurada correctamente. Para "
+"más información, el error de acceso a esta página está grabado en los logs de "
+"seguridad de la base de datos del sistema de %s"
 
 #: ../../general/pandora_help.php:23
 #, php-format
@@ -42542,1620 +4724,8805 @@ msgstr ""
 "El sistema de ayuda de %s se ha solicitado con una petición de ayuda que no "
 "existe actualmente. No hay contenido de ayuda a mostrar."
 
-#: ../../general/login_help_dialog.php:39
-#: ../../include/lib/Dashboard/Widgets/example.php:245
-#, php-format
-msgid "Welcome to %s"
-msgstr "Bienvenido a %s"
+#: ../../operation/messages/message_list.php:46
+#: ../../operation/messages/message_list.php:55
+#: ../../operation/messages/message_edit.php:66
+msgid "Sent messages"
+msgstr "Mensajes enviados"
 
-#: ../../general/login_help_dialog.php:43
+#: ../../operation/messages/message_list.php:46
+#: ../../operation/messages/message_list.php:50
+#: ../../operation/messages/message_edit.php:54
+msgid "Received messages"
+msgstr "Mensajes recibidos"
+
+#: ../../operation/messages/message_list.php:64
+#: ../../operation/messages/message_list.php:304
+#: ../../operation/messages/message_edit.php:78
+msgid "Create message"
+msgstr "Crear mensaje"
+
+#: ../../operation/messages/message_list.php:86
+#: ../../operation/messages/message_edit.php:99 ../../operation/menu.php:453
+#: ../../operation/users/user_edit_header.php:127
+msgid "Workspace"
+msgstr "Área de trabajo"
+
+#: ../../operation/messages/message_list.php:90
+#: ../../operation/messages/message_edit.php:103 ../../operation/menu.php:493
+#: ../../enterprise/meta/general/main_menu.php:318
+msgid "Messages"
+msgstr "Mensajes"
+
+#: ../../operation/messages/message_list.php:136
+msgid "Not deleted. Error deleting messages"
+msgstr "No borrado. Error al suprimir mensajes."
+
+#: ../../operation/messages/message_list.php:144
+#: ../../operation/messages/message_list.php:153
+msgid "You have"
+msgstr "Tienes"
+
+#: ../../operation/messages/message_list.php:144
+msgid "sent message(s)"
+msgstr "mensaje(s) enviado(s)"
+
+#: ../../operation/messages/message_list.php:153
+msgid "unread message(s)"
+msgstr "mensaje(s) sin leer"
+
+#: ../../operation/messages/message_list.php:164
+msgid "There are no messages."
+msgstr "No hay mensajes."
+
+#: ../../operation/messages/message_list.php:192
+#: ../../operation/search_policies.php:38 ../../operation/search_modules.php:36
+#: ../../operation/snmpconsole/snmp_view.php:584
+#: ../../operation/snmpconsole/snmp_view.php:849
+#: ../../operation/snmpconsole/snmp_view.php:1226
+#: ../../operation/search_agents.php:56
+#: ../../operation/events/events.build_table.php:358
+#: ../../operation/agentes/status_monitor.php:1335
+#: ../../operation/agentes/alerts_status.php:552
+#: ../../operation/agentes/alerts_status.php:587
+#: ../../operation/agentes/alerts_status.php:622
+#: ../../operation/agentes/alerts_status.php:654
+#: ../../operation/agentes/interface_view.functions.php:497
+#: ../../operation/agentes/alerts_status.functions.php:104
+#: ../../operation/agentes/estado_agente.php:280
+#: ../../operation/agentes/estado_agente.php:763
+#: ../../operation/incidents/integriaims_export_csv.php:83
+#: ../../operation/incidents/configure_integriaims_incident.php:250
+#: ../../operation/incidents/list_integriaims_incidents.php:320
+#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:322
+#: ../../include/ajax/module.php:980 ../../include/ajax/alert_list.ajax.php:283
+#: ../../include/ajax/alert_list.ajax.php:308
+#: ../../include/ajax/custom_fields.php:416
+#: ../../include/class/AgentsAlerts.class.php:906
+#: ../../include/class/ExternalTools.class.php:795
+#: ../../include/class/NetworkMap.class.php:2907
+#: ../../include/lib/Dashboard/Widgets/system_group_status.php:318
+#: ../../include/functions_events.php:196 ../../include/functions_events.php:251
+#: ../../include/functions_events.php:2624
+#: ../../include/functions_events.php:5071
+#: ../../include/functions_events.php:6663 ../../include/functions_snmp.php:369
+#: ../../include/functions_snmp_browser.php:594
+#: ../../include/functions_reporting_html.php:547
+#: ../../include/functions_reporting_html.php:1045
+#: ../../include/functions_reporting_html.php:1054
+#: ../../include/functions_reporting_html.php:1266
+#: ../../include/functions_reporting_html.php:1274
+#: ../../include/functions_reporting_html.php:1520
+#: ../../include/functions_reporting_html.php:2078
+#: ../../include/functions_reporting_html.php:2348
+#: ../../include/functions_reporting_html.php:2693
+#: ../../include/functions_reporting_html.php:3342
+#: ../../include/functions_reporting_html.php:3395
+#: ../../include/functions_reporting_html.php:4967
+#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:412
+#: ../../enterprise/views/ncm/devices/list.php:120
+#: ../../enterprise/views/cluster/list.php:63
+#: ../../enterprise/operation/services/services.service.php:127
+#: ../../enterprise/operation/services/services.list.php:243
+#: ../../enterprise/operation/services/services.list.php:507
+#: ../../enterprise/operation/services/services.table_services.php:165
+#: ../../enterprise/operation/agentes/tag_view.php:607
+#: ../../enterprise/operation/agentes/tag_view.php:685
+#: ../../enterprise/operation/agentes/policy_view.php:66
+#: ../../enterprise/operation/agentes/policy_view.php:166
+#: ../../enterprise/operation/agentes/policy_view.php:262
+#: ../../enterprise/operation/agentes/policy_view.php:397
+#: ../../enterprise/operation/agentes/collection_view.php:78
+#: ../../enterprise/include/functions_reporting_csv.php:718
+#: ../../enterprise/include/functions_reporting_csv.php:881
+#: ../../enterprise/include/functions_reporting_csv.php:1993
+#: ../../enterprise/include/functions_reporting_csv.php:2739
+#: ../../enterprise/include/class/ManageBackups.class.php:165
+#: ../../enterprise/include/functions_services.php:1613
+#: ../../enterprise/include/functions_reporting.php:1857
+#: ../../enterprise/include/functions_reporting.php:2896
+#: ../../enterprise/include/functions_reporting.php:3883
+#: ../../enterprise/include/functions_reporting.php:6139
+#: ../../enterprise/meta/include/functions_events_meta.php:78
+#: ../../enterprise/meta/monitoring/custom_fields_view.php:707
+#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:466
+#: ../../enterprise/meta/advanced/policymanager.queue.php:225
+#: ../../enterprise/meta/advanced/servers.build_table.php:61
+#: ../../enterprise/meta/agentsearch.php:140
+#: ../../enterprise/meta/agentsearch.php:330
+#: ../../enterprise/extensions/vmware/vmware_view.php:1085
+#: ../../enterprise/godmode/servers/list_satellite.php:38
+#: ../../enterprise/godmode/servers/HA_cluster.php:170
+#: ../../enterprise/godmode/admin_access_logs.php:50
+#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:125
+#: ../../enterprise/godmode/agentes/collection_manager.php:112
+#: ../../enterprise/godmode/agentes/collection_manager.php:209
+#: ../../enterprise/godmode/policies/policy_agents.php:852
+#: ../../enterprise/godmode/policies/policy_agents.php:1368
+#: ../../enterprise/godmode/policies/policy_queue.php:616
+#: ../../enterprise/godmode/policies/policy_modules.php:1466
+#: ../../enterprise/godmode/policies/policies.php:405
+#: ../../enterprise/godmode/policies/policy_alerts.php:354
+#: ../../enterprise/godmode/policies/policy_collections.php:172
+#: ../../enterprise/godmode/policies/policy_collections.php:266
+#: ../../mobile/operation/modules.php:163 ../../mobile/operation/modules.php:164
+#: ../../mobile/operation/modules.php:275 ../../mobile/operation/modules.php:276
+#: ../../mobile/operation/modules.php:603 ../../mobile/operation/modules.php:609
+#: ../../mobile/operation/modules.php:615 ../../mobile/operation/modules.php:621
+#: ../../mobile/operation/modules.php:632 ../../mobile/operation/modules.php:640
+#: ../../mobile/operation/modules.php:648 ../../mobile/operation/modules.php:720
+#: ../../mobile/operation/modules.php:732 ../../mobile/operation/modules.php:850
+#: ../../mobile/operation/alerts.php:105 ../../mobile/operation/alerts.php:106
+#: ../../mobile/operation/alerts.php:247 ../../mobile/operation/alerts.php:248
+#: ../../mobile/operation/alerts.php:350 ../../mobile/operation/events.php:368
+#: ../../mobile/operation/events.php:369 ../../mobile/operation/events.php:536
+#: ../../mobile/operation/events.php:672 ../../mobile/operation/events.php:673
+#: ../../mobile/operation/agents.php:97 ../../mobile/operation/agents.php:144
+#: ../../mobile/operation/agents.php:243 ../../mobile/operation/agents.php:244
+#: ../../mobile/operation/agents.php:406
+#: ../../godmode/setup/setup_integria.php:426
+#: ../../godmode/setup/setup_integria.php:548
+#: ../../godmode/servers/servers.build_table.php:80
+#: ../../godmode/reporting/reporting_builder.item_editor.php:77
+#: ../../godmode/events/custom_events.php:101
+#: ../../godmode/massive/massive_delete_modules.php:415
+#: ../../godmode/massive/massive_copy_modules.php:121
+#: ../../godmode/massive/massive_copy_modules.php:281
+#: ../../godmode/massive/massive_edit_agents.php:537
+#: ../../godmode/massive/massive_edit_agents.php:905
+#: ../../godmode/massive/massive_delete_agents.php:215
+#: ../../godmode/wizards/DiscoveryTaskList.class.php:600
+#: ../../godmode/agentes/module_manager.php:863
+#: ../../godmode/agentes/status_monitor_custom_fields.php:97
+#: ../../godmode/agentes/status_monitor_custom_fields.php:148
+#: ../../godmode/agentes/agent_incidents.php:89
+#: ../../godmode/alerts/alert_list.list.php:132
+#: ../../godmode/alerts/alert_list.list.php:482
+#: ../../godmode/alerts/alert_view.php:114
+msgid "Status"
+msgstr "Estado"
+
+#: ../../operation/messages/message_list.php:194
+#: ../../operation/messages/message_edit.php:269
+msgid "Destination"
+msgstr "Destino"
+
+#: ../../operation/messages/message_list.php:196
+#: ../../operation/messages/message_edit.php:265
+msgid "Sender"
+msgstr "Remitente"
+
+#: ../../operation/messages/message_list.php:199
+#: ../../operation/messages/message_edit.php:350
+#: ../../enterprise/operation/reporting/custom_reporting.php:132
+#: ../../enterprise/include/functions_cron.php:190
+#: ../../enterprise/include/functions_cron.php:240
+#: ../../enterprise/include/functions_reporting.php:8186
+#: ../../godmode/setup/news.php:183 ../../godmode/setup/news.php:246
+msgid "Subject"
+msgstr "Asunto"
+
+#: ../../operation/messages/message_list.php:200
+#: ../../operation/search_modules.php:39
+#: ../../operation/snmpconsole/snmp_view.php:881
+#: ../../operation/events/events.build_table.php:192
+#: ../../operation/agentes/status_monitor.php:1365
+#: ../../operation/agentes/exportdata.csv.php:74
+#: ../../operation/agentes/exportdata.php:83
+#: ../../operation/agentes/exportdata.excel.php:74
+#: ../../operation/agentes/estado_generalagente.php:624
+#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:116
+#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:247
+#: ../../include/ajax/events_extended.php:90
+#: ../../include/ajax/custom_fields.php:415 ../../include/ajax/events.php:1809
+#: ../../include/functions_events.php:197 ../../include/functions_events.php:254
+#: ../../include/functions_events.php:2620
+#: ../../include/functions_events.php:4997
+#: ../../include/functions_events.php:6689
+#: ../../include/functions_netflow.php:278
+#: ../../include/functions_reporting_html.php:1052
+#: ../../include/functions_reporting_html.php:1060
+#: ../../include/functions_reporting_html.php:1271
+#: ../../include/functions_reporting_html.php:1278
+#: ../../include/functions_reporting_html.php:2357
+#: ../../include/functions_reporting_html.php:4970
+#: ../../enterprise/operation/agentes/tag_view.php:686
+#: ../../enterprise/include/functions_reporting_csv.php:802
+#: ../../enterprise/include/functions_reporting_csv.php:875
+#: ../../enterprise/include/functions_reporting_csv.php:1458
+#: ../../enterprise/include/functions_reporting_csv.php:2281
+#: ../../enterprise/include/functions_reporting_csv.php:2317
+#: ../../enterprise/include/functions_reporting_csv.php:2629
+#: ../../enterprise/include/class/LogSource.class.php:628
+#: ../../enterprise/include/class/Omnishell.class.php:400
+#: ../../enterprise/include/functions_inventory.php:113
+#: ../../enterprise/include/functions_inventory.php:147
+#: ../../enterprise/include/functions_inventory.php:349
+#: ../../enterprise/include/functions_inventory.php:369
+#: ../../enterprise/include/functions_inventory.php:555
+#: ../../enterprise/meta/include/functions_events_meta.php:82
+#: ../../mobile/operation/modules.php:661 ../../mobile/operation/modules.php:852
+#: ../../mobile/operation/events.php:516 ../../godmode/setup/news.php:249
+#: ../../godmode/update_manager/update_manager.history.php:44
+#: ../../godmode/events/custom_events.php:102
+#: ../../godmode/agentes/status_monitor_custom_fields.php:117
+#: ../../godmode/agentes/status_monitor_custom_fields.php:153
+msgid "Timestamp"
+msgstr "Marca temporal"
+
+#: ../../operation/messages/message_list.php:214
+msgid "Click to read"
+msgstr "Haz clic para leer"
+
+#: ../../operation/messages/message_list.php:218
+msgid "Mark as unread"
+msgstr "Marcar como no leído"
+
+#: ../../operation/messages/message_list.php:224
+#: ../../operation/messages/message_list.php:228
+msgid "Message unread - click to read"
+msgstr "Mensaje sin leer. Haz clic para leerlo."
+
+#: ../../operation/messages/message_list.php:256
+msgid "No Subject"
+msgstr "Sin asunto"
+
+#: ../../operation/messages/message_edit.php:90
+msgid "Compose message"
+msgstr "Componer mensaje"
+
+#: ../../operation/messages/message_edit.php:119
+msgid "This message does not exist in the system"
+msgstr "Este mensaje no existe en el sistema."
+
+#: ../../operation/messages/message_edit.php:188
+msgid "wrote"
+msgstr "escribió"
+
+#: ../../operation/messages/message_edit.php:203
+msgid "Delete conversation"
+msgstr "Eliminar conversación"
+
+#: ../../operation/messages/message_edit.php:211
+msgid "Reply"
+msgstr "Responder"
+
+#: ../../operation/messages/message_edit.php:226
+msgid "User or group must be selected."
+msgstr "Usuario o grupo no especificados."
+
+#: ../../operation/messages/message_edit.php:244
 #, php-format
+msgid "Message successfully sent to user %s"
+msgstr "Mensaje enviado correctamente al usuario %s"
+
+#: ../../operation/messages/message_edit.php:245
+#, php-format
+msgid "Error sending message to user %s"
+msgstr "Error al enviar el mensaje al usuario %s"
+
+#: ../../operation/messages/message_edit.php:324
+msgid "Select user"
+msgstr "Seleccionar usuario"
+
+#: ../../operation/messages/message_edit.php:330
+msgid "OR"
+msgstr "O"
+
+#: ../../operation/messages/message_edit.php:341
+msgid "Select group"
+msgstr "Seleccionar grupo"
+
+#: ../../operation/messages/message_edit.php:360
+#: ../../enterprise/operation/reporting/custom_reporting.php:150
+#: ../../enterprise/include/functions_cron.php:194
+#: ../../enterprise/include/functions_cron.php:244
+#: ../../enterprise/include/functions_reporting.php:8204
+msgid "Message"
+msgstr "Mensaje"
+
+#: ../../operation/messages/message_edit.php:396
+msgid "Send message"
+msgstr "Enviar mensaje"
+
+#: ../../operation/visual_console/legacy_public_view.php:57
+#: ../../operation/visual_console/public_view.php:38
+#: ../../operation/gis_maps/public_console.php:277
+#: ../../operation/events/sound_events.php:90
+#: ../../operation/agentes/stat_win.php:92 ../../index.php:1395
+#: ../../enterprise/meta/index.php:206
+msgid "Connection with server has been lost"
+msgstr "Se ha perdido la conexión con el servidor"
+
+#: ../../operation/visual_console/legacy_public_view.php:58
+#: ../../operation/visual_console/public_view.php:39
+#: ../../operation/gis_maps/public_console.php:278
+#: ../../operation/events/sound_events.php:91
+#: ../../operation/agentes/stat_win.php:93 ../../index.php:1396
+#: ../../enterprise/meta/index.php:207
 msgid ""
-"If this is your first time using %s, we suggest a few links that'll help you "
-"learn more about the software. Monitoring can be overwhelming, but take your "
-"time to learn how to harness the power of %s!"
+"Connection to the server has been lost. Please check your internet connection "
+"or contact with administrator."
 msgstr ""
-"Si esta es la primera vez que usa %s, le sugerimos algunos enlaces que le "
-"ayudarán a saber más sobre este software. La monitorización puede ser "
-"abrumadora, pero tómese su tiempo en aprender a aprovechar todo el potencial "
-"de %s!"
-
-#: ../../general/login_help_dialog.php:57 ../../general/login_help_dialog.php:62
-msgid "Online help"
-msgstr "Ayuda en línea"
-
-#: ../../general/login_help_dialog.php:70 ../../general/login_help_dialog.php:75
-msgid "Enterprise version"
-msgstr "Versión Enterprise"
-
-#: ../../general/login_help_dialog.php:88
-msgid "Forums"
-msgstr "Foros"
-
-#: ../../general/login_help_dialog.php:110
-msgid "Click here to don't show again this message"
-msgstr "Pincha aquí para no volver a ver este mensaje"
-
-#: ../../general/php7_message.php:30
-#: ../../include/class/ConsoleSupervisor.php:1606
-msgid ""
-"For a correct operation of PandoraFMS, PHP must be updated to version 7.0 or "
-"higher."
-msgstr ""
-"Para que Pandora FMS funcione correctamente, PHP debe estar actualizado a la "
-"versión 7.0 o superior."
-
-#: ../../general/php7_message.php:31
-#: ../../include/class/ConsoleSupervisor.php:1606
-msgid "Otherwise, functionalities will be lost."
-msgstr "Si no, ciertas funcionalidades no estarán disponibles."
-
-#: ../../general/php7_message.php:33
-#: ../../include/class/ConsoleSupervisor.php:1606
-msgid "Report download in PDF format"
-msgstr "Descarga de informes en formato PDF"
-
-#: ../../general/php7_message.php:34
-#: ../../include/class/ConsoleSupervisor.php:1606
-msgid "Emails Sending"
-msgstr "Envío de emails"
-
-#: ../../general/php7_message.php:35
-#: ../../include/class/ConsoleSupervisor.php:1606
-msgid "Metaconsole Collections"
-msgstr "Colecciones de la metaconsola"
-
-#: ../../general/php7_message.php:38
-msgid "Access Help"
-msgstr "Ayuda de acceso"
-
-#: ../../general/php7_message.php:41
-msgid "Warning php version"
-msgstr "Advertencia de la versión php"
-
-#: ../../include/functions.php:231
-msgid "."
-msgstr "."
-
-#: ../../include/functions.php:233
-msgid ","
-msgstr ","
-
-#: ../../include/functions.php:488 ../../include/functions.php:640
-msgid "s"
-msgstr "s"
-
-#: ../../include/functions.php:489 ../../include/functions.php:641
-msgid "d"
-msgstr "d"
-
-#: ../../include/functions.php:490 ../../include/functions.php:642
-msgid "M"
-msgstr "M"
-
-#: ../../include/functions.php:491 ../../include/functions.php:643
-#: ../../include/rest-api/models/VisualConsole/Item.php:2036
-#: ../../include/rest-api/models/VisualConsole/Items/Box.php:259
-msgid "Y"
-msgstr "Y"
-
-#: ../../include/functions.php:492 ../../include/functions.php:644
-msgid "m"
-msgstr "m"
-
-#: ../../include/functions.php:493 ../../include/functions.php:645
-msgid "h"
-msgstr "h"
-
-#: ../../include/functions.php:494 ../../include/functions.php:646
-msgid "N"
-msgstr "N"
-
-#: ../../include/functions.php:1023 ../../include/functions.php:1269
-#: ../../include/functions.php:1303 ../../include/functions_incidents.php:34
-#: ../../include/functions_incidents.php:75
-#: ../../include/functions_events.php:3329 ../../include/functions_graph.php:3533
-#: ../../include/functions_graph.php:3534 ../../include/functions_graph.php:5115
-msgid "Maintenance"
-msgstr "Mantenimiento"
-
-#: ../../include/functions.php:1027 ../../include/functions.php:1270
-#: ../../include/functions.php:1307 ../../include/functions_events.php:3333
-#: ../../include/functions_graph.php:3538 ../../include/functions_graph.php:3539
-#: ../../include/functions_graph.php:5119
-msgid "Informational"
-msgstr "Informativo"
-
-#: ../../include/functions.php:1043 ../../include/functions.php:1272
-#: ../../include/functions.php:1323 ../../include/functions_graph.php:3548
-#: ../../include/functions_graph.php:3549 ../../include/functions_graph.php:5135
-msgid "Minor"
-msgstr "Menor"
-
-#: ../../include/functions.php:1047 ../../include/functions.php:1274
-#: ../../include/functions.php:1327 ../../include/functions_graph.php:3558
-#: ../../include/functions_graph.php:3559 ../../include/functions_graph.php:5139
-msgid "Major"
-msgstr "Principal"
-
-#: ../../include/functions.php:1222 ../../include/functions_events.php:3249
-msgid "Monitor Critical"
-msgstr "Monitor en estado crítico"
-
-#: ../../include/functions.php:1223 ../../include/functions_events.php:3253
-msgid "Monitor Warning"
-msgstr "Monitor en estado de advertencia"
-
-#: ../../include/functions.php:1224 ../../include/functions_events.php:3257
-msgid "Monitor Normal"
-msgstr "Monitor en estado normal"
-
-#: ../../include/functions.php:1226
-msgid "Monitor Unknown"
-msgstr "Monitor en estado desconocido"
-
-#: ../../include/functions.php:1229 ../../include/functions_events.php:2878
-#: ../../include/functions_events.php:3265
-msgid "Alert recovered"
-msgstr "Alerta recuperada"
-
-#: ../../include/functions.php:1230 ../../include/functions_events.php:2926
-#: ../../include/functions_events.php:3269
-msgid "Alert ceased"
-msgstr "Alerta finalizada"
-
-#: ../../include/functions.php:1231 ../../include/functions_events.php:3273
-msgid "Alert manual validation"
-msgstr "Validación manual de alerta"
-
-#: ../../include/functions.php:1233
-msgid "Agent created"
-msgstr "Agente creado"
-
-#: ../../include/functions.php:1234 ../../include/functions_events.php:3277
-msgid "Recon host detected"
-msgstr "Equipo de red detectado con recon"
-
-#: ../../include/functions.php:1237 ../../include/functions_events.php:2922
-#: ../../include/functions_events.php:3289
-msgid "Configuration change"
-msgstr "Cambio de configuración"
-
-#: ../../include/functions.php:1354 ../../include/functions.php:1384
-msgid "ALERT FIRED"
-msgstr "ALERTA DISPARADA"
-
-#: ../../include/functions.php:2686
-#, php-format
-msgid "%s seconds"
-msgstr "%s segundos"
-
-#: ../../include/functions.php:2689 ../../include/functions.php:2690
-#, php-format
-msgid "%s minutes"
-msgstr "%s minutos"
-
-#: ../../include/functions.php:2698 ../../include/functions.php:2699
-#, php-format
-msgid "%s months"
-msgstr "%s meses"
-
-#: ../../include/functions.php:2701 ../../include/functions.php:2702
-#, php-format
-msgid "%s years"
-msgstr "%s años"
-
-#: ../../include/functions.php:2704
-msgid "Default values will be used"
-msgstr "Se usarán los valores por defecto"
-
-#: ../../include/functions.php:2889 ../../include/functions.php:2894
-msgid "The file exceeds the maximum size"
-msgstr "El archivo excede el tamaño máximo"
-
-#: ../../include/functions.php:2890
-msgid ""
-"Please check this PHP runtime variable values: <pre>  upload_max_filesize "
-"(currently "
-msgstr ""
-"Compruebe los valores de esta variable de tiempo de ejecución de PHP: "
-"<pre>upload_max_filesize (actualmente "
-
-#: ../../include/functions.php:2898
-msgid "The uploaded file was only partially uploaded"
-msgstr "El archivo se ha subido parcialmente."
-
-#: ../../include/functions.php:2902
-msgid "No file was uploaded"
-msgstr "No se subió ningún archivo."
-
-#: ../../include/functions.php:2906
-msgid "Missing a temporary folder"
-msgstr "El directorio temporal no existe."
-
-#: ../../include/functions.php:2910
-msgid "Failed to write file to disk"
-msgstr "No se pudo escribir el archivo al disco."
-
-#: ../../include/functions.php:2914
-msgid "File upload stopped by extension"
-msgstr "Subida de archivo cancelada por la extensión"
-
-#: ../../include/functions.php:2918
-msgid "Unknown upload error"
-msgstr "Error desconocido al subir el archivo"
-
-#: ../../include/functions.php:3029
-msgid "No data found to export"
-msgstr "Datos no encontrados para exportar"
-
-#: ../../include/functions.php:3352
-msgid "15 seconds"
-msgstr "15 segundos"
-
-#: ../../include/functions.php:3357
-msgid "15 minutes"
-msgstr "15 minutos"
-
-#: ../../include/functions.php:3358 ../../include/ajax/module.php:199
-msgid "30 minutes"
-msgstr "30 minutos"
-
-#: ../../include/functions.php:3873
-msgid "Summatory series"
-msgstr "Series sumatorias"
-
-#: ../../include/functions.php:3877
-msgid "Average series"
-msgstr "Series de media"
-
-#: ../../include/functions.php:3905 ../../include/functions.php:3924
-#: ../../include/functions.php:3938 ../../include/functions.php:3960
-#: ../../include/functions.php:4041 ../../include/functions.php:4113
-msgid "Unit "
-msgstr "Unidad "
-
-#: ../../include/functions.php:3986 ../../include/functions.php:4051
-msgid "Min:"
-msgstr "Mín.:"
-
-#: ../../include/functions.php:3993 ../../include/functions.php:4058
-msgid "Max:"
-msgstr "Máx.:"
-
-#: ../../include/functions.php:4000 ../../include/functions.php:4065
-msgid "Avg:"
-msgstr "Media:"
-
-#: ../../include/functions.php:4110 ../../include/functions.php:4118
-msgid "of module"
-msgstr "de módulo"
-
-#: ../../include/functions.php:4135
-msgid "Projection"
-msgstr "Proyección"
-
-#: ../../include/functions.php:5953
-msgid "Testing Pandora FMS email"
-msgstr "Probando el email de Pandora FMS"
-
-#: ../../include/functions.php:5966
-msgid ""
-"This is an email test sent from Pandora FMS. If you can read this, your "
-"configuration works."
-msgstr ""
-"Este es un email de prueba enviado desde Pandora FMS. Si lo ha recibido "
-"significa que la configuración funciona."
-
-#: ../../include/functions_netflow.php:351
-msgid "Avg. Throughput"
-msgstr "Rendimiento medio"
-
-#: ../../include/functions_netflow.php:431
-msgid "Average bits per second"
-msgstr "Media de bits por segundo"
-
-#: ../../include/functions_netflow.php:436
-msgid "Average packets per second"
-msgstr "Media de paquetes por segundo"
-
-#: ../../include/functions_netflow.php:441
-msgid "Average bytes per packet"
-msgstr "Media de bytes por paquete"
-
-#: ../../include/functions_netflow.php:1182
-msgid "Area graph"
-msgstr "Gráfico del área"
-
-#: ../../include/functions_netflow.php:1185
-msgid "Top-N connections"
-msgstr "Conexiones Top-N"
-
-#: ../../include/functions_netflow.php:1186
-msgid "Circular mesh"
-msgstr "Malla circular"
-
-#: ../../include/functions_netflow.php:1187
-#: ../../include/functions_netflow.php:1452
-msgid "Host detailed traffic"
-msgstr "Tráfico detallado de la máquina"
-
-#: ../../include/functions_netflow.php:1439
-msgid "Sent"
-msgstr "Enviado"
-
-#: ../../include/functions_netflow.php:1447
-msgid "Received"
-msgstr "Recibido"
-
-#: ../../include/functions_netflow.php:1628
-msgid "Dst port"
-msgstr "Puerto destino"
-
-#: ../../include/functions_netflow.php:1631
-msgid "Dst IP"
-msgstr "IP de destino"
-
-#: ../../include/functions_netflow.php:1634
-msgid "Src IP"
-msgstr "IP de origen"
-
-#: ../../include/functions_netflow.php:1637
-msgid "Src port"
-msgstr "Puerto de origen"
-
-#: ../../include/functions_netflow.php:1823
-#, php-format
-msgid "nfdump binary (%s) not found!"
-msgstr "nfdump binary (%s) no encontrado"
-
-#: ../../include/functions_netflow.php:1830
-msgid "Make sure nfdump version 1.6.8 or newer is installed!"
-msgstr ""
-"Asegúrate de que tienes instalada la versión 1.6.8 nfdump o alguna posterior."
-
-#: ../../include/functions_netflow.php:1845
-#: ../../include/functions_incidents.php:30
-#: ../../include/functions_incidents.php:59
-msgid "Low"
-msgstr "Bajo"
-
-#: ../../include/functions_netflow.php:1846
-#: ../../include/functions_incidents.php:31
-#: ../../include/functions_incidents.php:63
-msgid "Medium"
-msgstr "Medio"
-
-#: ../../include/functions_netflow.php:1847
-msgid "High"
-msgstr "Alta"
-
-#: ../../include/functions_netflow.php:1848
-msgid "Ultra High"
-msgstr "Extra alta"
-
-#: ../../include/functions_netflow.php:1881
-#, php-format
-msgid "Agregate by %s"
-msgstr "Añadir por %s"
-
-#: ../../include/functions_netflow.php:1889
-#, php-format
-msgid "Resolution %s"
-msgstr "Resolución de %s"
-
-#: ../../include/functions_reports.php:639
-#: ../../include/functions_reports.php:1083
-#: ../../include/functions_reporting.php:9919
-#: ../../include/functions_reporting.php:10079
-msgid "Simple graph"
-msgstr "Gráfico simple"
-
-#: ../../include/functions_reports.php:676
-msgid "Automatic combined Graph"
-msgstr "Gráfico automático combinado"
-
-#: ../../include/functions_reports.php:682
-msgid "Availability graph"
-msgstr "Gráfico de disponibilidad"
-
-#: ../../include/functions_reports.php:687
-msgid "Module Histogram graph"
-msgstr "Gráfico de histórico de módulo"
-
-#: ../../include/functions_reports.php:693
-msgid "IPAM networks"
-msgstr "Redes IPAM"
-
-#: ../../include/functions_reports.php:724
-#: ../../include/functions_reports.php:728
-msgid "Forecasting"
-msgstr "Predicción"
-
-#: ../../include/functions_reports.php:729
-msgid "Projection graph"
-msgstr "Gráfico de proyección"
-
-#: ../../include/functions_reports.php:734
-msgid "Avg. value"
-msgstr "Valor medio"
-
-#: ../../include/functions_reports.php:738
-msgid "Max. value"
-msgstr "Valor Max"
-
-#: ../../include/functions_reports.php:742
-msgid "Min. value"
-msgstr "Valor mínimo"
-
-#: ../../include/functions_reports.php:746
-msgid "Monitor report"
-msgstr "Informe de monitores"
-
-#: ../../include/functions_reports.php:750
-msgid "Serialize data"
-msgstr "Serializar datos"
-
-#: ../../include/functions_reports.php:758
-msgid "Historical Data"
-msgstr "Datos históricos"
-
-#: ../../include/functions_reports.php:770
-#: ../../include/functions_reports.php:776
-#: ../../include/functions_reports.php:782
-#: ../../include/functions_reports.php:788
-#: ../../include/functions_reports.php:794
-#: ../../include/functions_reports.php:801
-#: ../../include/functions_reports.php:808
-#: ../../include/functions_reports.php:814
-#: ../../include/functions_reports.php:818
-#: ../../include/functions_reports.php:823
-#: ../../include/functions_reports.php:829
-msgid "Grouped"
-msgstr "Agrupado"
-
-#: ../../include/functions_reports.php:795
-#: ../../extensions/agents_modules.php:465
-msgid "Agents/Modules"
-msgstr "Agentes/Módulos"
-
-#: ../../include/functions_reports.php:802
-msgid "Agents/Modules status"
-msgstr "Estado de los agentes/módulos"
-
-#: ../../include/functions_reports.php:819
-msgid "Network interfaces"
-msgstr "Interfaces de red"
-
-#: ../../include/functions_reports.php:824
-msgid "Custom Render"
-msgstr "Renderizado personalizado"
-
-#: ../../include/functions_reports.php:834
-#: ../../include/functions_reports.php:838
-msgid "Text/HTML "
-msgstr "Texto/HTML "
-
-#: ../../include/functions_reports.php:839
-msgid "Import text from URL"
-msgstr "Importar texto de una URL"
-
-#: ../../include/functions_reports.php:844
-msgid "Module alert report"
-msgstr "Informe de alerta de módulo"
-
-#: ../../include/functions_reports.php:848
-msgid "Agent alert report "
-msgstr "Informe de alerta de agente "
-
-#: ../../include/functions_reports.php:854
-msgid "Group alert report"
-msgstr "Informe de alerta de grupo"
-
-#: ../../include/functions_reports.php:860
-msgid "Actions alert report "
-msgstr "Informe de alerta de acciones "
-
-#: ../../include/functions_reports.php:865
-msgid "Module event report"
-msgstr "Informe de evento de módulo"
-
-#: ../../include/functions_reports.php:869
-msgid "Agent event report"
-msgstr "Informe de evento de agente"
-
-#: ../../include/functions_reports.php:873
-msgid "Group event report"
-msgstr "Informe de evento de grupo"
-
-#: ../../include/functions_reports.php:891
-msgid "Inventory changes"
-msgstr "Inventario de cambios"
-
-#: ../../include/functions_reports.php:899
-#: ../../include/functions_reporting.php:6250
-msgid "Agent configuration"
-msgstr "Configuración de agentes"
-
-#: ../../include/functions_reports.php:903
-#: ../../include/functions_reporting.php:4511
-msgid "Group configuration"
-msgstr "Configuración del grupo"
-
-#: ../../include/functions_reports.php:911
-msgid "Netflow data table"
-msgstr "Tabla de datos de Netflow"
-
-#: ../../include/functions_reports.php:915
-msgid "Netflow summary table"
-msgstr "Tabla de resumen de Netflow"
-
-#: ../../include/functions_reports.php:939
-msgid "Network configuration changes"
-msgstr "Cambios en la configuración de red"
-
-#: ../../include/functions_reports.php:1066
-msgid "Macro"
-msgstr "Macro"
-
-#: ../../include/functions_reports.php:1081
-#: ../../include/functions_reports.php:1210
-#: ../../include/functions_reports.php:1230
-msgid "Sql"
-msgstr "SQL"
-
-#: ../../include/functions_reports.php:1082
-msgid "Graph Sql"
-msgstr "Gráfico SQL"
-
-#: ../../include/functions_reporting.php:364
-msgid " agents"
-msgstr " agentes"
-
-#: ../../include/functions_reporting.php:374
-msgid " modules"
-msgstr " módulos"
-
-#: ../../include/functions_reporting.php:1510
-msgid "Top N"
-msgstr "Top N"
-
-#: ../../include/functions_reporting.php:1638
-msgid "Insuficient data"
-msgstr "Datos insuficientes"
-
-#: ../../include/functions_reporting.php:1802
-#: ../../include/functions_reporting.php:2049
-#: ../../include/functions_reporting.php:2075
-#: ../../include/functions_reporting.php:2102
-#: ../../include/functions_reporting.php:2130
-#: ../../include/functions_reporting.php:3482
-#: ../../include/functions_reporting.php:3853
-#: ../../include/functions_reporting.php:3881
-#: ../../include/functions_reporting.php:3909
-#: ../../include/functions_reporting.php:4882
-#: ../../include/functions_reporting.php:10488
-#: ../../include/functions_reporting.php:10516
-#: ../../include/functions_reporting.php:10544
-#: ../../include/functions_graph.php:2649 ../../include/functions_graph.php:2785
-#: ../../include/functions_graph.php:2883 ../../include/functions_graph.php:3344
-#: ../../include/functions_graph.php:3918
-#: ../../include/lib/Dashboard/Widgets/top_n_events_by_group.php:483
-#: ../../include/lib/Dashboard/Widgets/top_n_events_by_module.php:518
-msgid "other"
-msgstr "otro"
-
-#: ../../include/functions_reporting.php:1889
-msgid "Event Report Group"
-msgstr "Informe de eventos del grupo"
-
-#: ../../include/functions_reporting.php:1937
-msgid "Exclude "
-msgstr "Excluir "
-
-#: ../../include/functions_reporting.php:2185
-msgid "Event Report Module"
-msgstr "Informe de eventos del módulo"
-
-#: ../../include/functions_reporting.php:2823
-msgid "Agent/Modules"
-msgstr "Agentes/módulos"
-
-#: ../../include/functions_reporting.php:2864
-#: ../../extensions/agents_modules.php:750
-msgid "There are no agents with modules"
-msgstr "No hay agentes con módulos"
-
-#: ../../include/functions_reporting.php:2920
-msgid "Agent/Modules Status"
-msgstr "Estado del agente/módulos"
-
-#: ../../include/functions_reporting.php:3069
-msgid "Exception - Everything"
-msgstr "Excepción - Todo"
-
-#: ../../include/functions_reporting.php:3075
-#, 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:3078
-#, php-format
-msgid "Modules over or equal to %s"
-msgstr "Módulos por encima de o igual a %s"
-
-#: ../../include/functions_reporting.php:3083
-#, 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:3086
-#, php-format
-msgid "Modules under or equal to %s"
-msgstr "Módulos por debajo de o igual a %s"
-
-#: ../../include/functions_reporting.php:3091
-#, php-format
-msgid "Exception - Modules under %s"
-msgstr "Excepción - Módulos por debajo de %s"
-
-#: ../../include/functions_reporting.php:3094
-#, php-format
-msgid "Modules under %s"
-msgstr "Módulos por debajo de %s"
-
-#: ../../include/functions_reporting.php:3099
-#, php-format
-msgid "Exception - Modules over %s"
-msgstr "Excepción - Módulos por encima de %s"
-
-#: ../../include/functions_reporting.php:3102
-#, php-format
-msgid "Modules over %s"
-msgstr "Módulos por encima de %s"
-
-#: ../../include/functions_reporting.php:3107
-#, php-format
-msgid "Exception - Equal to %s"
-msgstr "Excepción - Igual a %s"
-
-#: ../../include/functions_reporting.php:3110
-#, php-format
-msgid "Equal to %s"
-msgstr "Igual a %s"
-
-#: ../../include/functions_reporting.php:3115
-#, php-format
-msgid "Exception - Not equal to %s"
-msgstr "Excepción - No igual a %s"
-
-#: ../../include/functions_reporting.php:3118
-#, php-format
-msgid "Not equal to %s"
-msgstr "No igual a %s"
-
-#: ../../include/functions_reporting.php:3122
-msgid "Exception - Modules at normal status"
-msgstr "Excepción - Módulos en estado normal"
-
-#: ../../include/functions_reporting.php:3123
-msgid "Modules at normal status"
-msgstr "Módulos en estado normal"
-
-#: ../../include/functions_reporting.php:3127
-msgid "Exception - Modules at critical or warning status"
-msgstr "Excepción - Módulos en estado crítico o de advertencia"
-
-#: ../../include/functions_reporting.php:3128
-msgid "Modules at critical or warning status"
-msgstr "Módulos en estado crítico o de advertencia"
-
-#: ../../include/functions_reporting.php:3347
-msgid "There are no Modules under those conditions."
-msgstr "No hay módulos bajo esas condiciones"
-
-#: ../../include/functions_reporting.php:3351
-#, 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:3355
-#, 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:3359
-#, php-format
-msgid "There are no Modules less %s."
-msgstr "No hay módulos por debajo de %s"
-
-#: ../../include/functions_reporting.php:3363
-#, php-format
-msgid "There are no Modules over %s."
-msgstr "No hay módulos por encima de %s"
-
-#: ../../include/functions_reporting.php:3367
-#, php-format
-msgid "There are no Modules equal to %s"
-msgstr "No hay módulos iguales a %s"
-
-#: ../../include/functions_reporting.php:3371
-#, php-format
-msgid "There are no Modules not equal to %s"
-msgstr "No hay módulos no iguales a %s"
-
-#: ../../include/functions_reporting.php:3375
-msgid "There are no Modules normal status"
-msgstr "No hay módulos en estado normal"
-
-#: ../../include/functions_reporting.php:3379
-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:3716
-msgid "Event Report Agent"
-msgstr "Informe de eventos de agentes"
-
-#: ../../include/functions_reporting.php:4080
-msgid "Database Serialized"
-msgstr "Base de datos serializada"
-
-#: ../../include/functions_reporting.php:4276
-msgid "Last Value"
-msgstr "Último valor"
-
-#: ../../include/functions_reporting.php:4326
-#: ../../include/functions_reporting.php:4369
-#: ../../include/functions_graph.php:1089
-msgid "No data to display within the selected interval"
-msgstr "No hay datos en el intervalo seleccionado"
-
-#: ../../include/functions_reporting.php:4600
-msgid "Network interfaces report"
-msgstr "Informe de las interfaces de red"
-
-#: ../../include/functions_reporting.php:4694
-msgid "Custom render report"
-msgstr "Informe de representación personalizado"
-
-#: ../../include/functions_reporting.php:4734
-#: ../../include/functions_reporting.php:4760
-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:4991
-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:5012
-msgid "bytes/s"
-msgstr "bytes/s"
-
-#: ../../include/functions_reporting.php:5219
-#: ../../include/functions_reporting.php:5236
-#: ../../include/functions_reporting.php:5253
-msgid "Not triggered"
-msgstr "No disparado"
-
-#: ../../include/functions_reporting.php:5679
-msgid "SQL Graph Vertical Bars"
-msgstr "Gráfico de barras verticales SQL"
-
-#: ../../include/functions_reporting.php:5683
-msgid "SQL Graph Horizontal Bars"
-msgstr "Gráfico de barras horizontales SQL"
-
-#: ../../include/functions_reporting.php:5687
-msgid "SQL Graph Pie"
-msgstr "Gráfico SQL circular"
-
-#: ../../include/functions_reporting.php:5914
-msgid "Netflow Area"
-msgstr "Área de Netflow"
-
-#: ../../include/functions_reporting.php:5918
-msgid "Netflow Summary"
-msgstr "Resumen de Netflow"
-
-#: ../../include/functions_reporting.php:5922
-msgid "Netflow Data"
-msgstr "Datos de Netflow"
-
-#: ../../include/functions_reporting.php:5930
-msgid "Unknown report"
-msgstr "Informe desconocido"
-
-#: ../../include/functions_reporting.php:6024
-msgid "Prediction Date"
-msgstr "Fecha de predicción"
-
-#: ../../include/functions_reporting.php:6925
-msgid ""
-"Illegal query: Due security restrictions, there are some tokens or words you "
-"cannot use: *, delete, drop, alter, modify, password, pass, insert or update."
-msgstr ""
-"Consulta ilegal: debido a restricciones de seguridad, hay algunos tokens o "
-"palabras que no se puede usar: *, borrar, eliminar, soltar, alterar, "
-"modificar, contraseña, pass, insertar o actualizar."
-
-#: ../../include/functions_reporting.php:8339
-#: ../../include/functions_reporting.php:9057
-msgid "No Address"
-msgstr "Sin dirección"
-
-#: ../../include/functions_reporting.php:9356
-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:9374
-msgid "The monitor type is not numeric"
-msgstr "El tipo de monitor no es numérico."
-
-#: ../../include/functions_reporting.php:9743
-msgid "Maximum"
-msgstr "Máximo"
-
-#: ../../include/functions_reporting.php:9847
-msgid "Automatic combined graph"
-msgstr "Gráfica combinada automática"
-
-#: ../../include/functions_reporting.php:10681
-msgid "Maximum of events shown"
-msgstr "Máximo número de eventos mostrados"
-
-#: ../../include/functions_reporting.php:11257
-#: ../../include/functions_reporting.php:11281
-msgid "Server health"
-msgstr "Estado del servidor"
-
-#: ../../include/functions_reporting.php:11257
-#, php-format
-msgid "%d Downed servers"
-msgstr "%d servidores caídos"
-
-#: ../../include/functions_reporting.php:11262
-#: ../../include/functions_reporting.php:11285
-msgid "Monitor health"
-msgstr "Estado del monitor"
-
-#: ../../include/functions_reporting.php:11262
-#, php-format
-msgid "%d Not Normal monitors"
-msgstr "%d monitores fuera de la normalidad"
-
-#: ../../include/functions_reporting.php:11262
-#: ../../include/functions_reporting.php:11286
-msgid "of monitors up"
-msgstr "de monitores funcionando"
-
-#: ../../include/functions_reporting.php:11267
-#: ../../include/functions_reporting.php:11289
-msgid "Module sanity"
-msgstr "Estado de los módulos"
-
-#: ../../include/functions_reporting.php:11267
-#, php-format
-msgid "%d Not inited monitors"
-msgstr "%d monitores sin iniciar"
-
-#: ../../include/functions_reporting.php:11267
-#: ../../include/functions_reporting.php:11290
-msgid "of total modules inited"
-msgstr "del total de módulos iniciados"
-
-#: ../../include/functions_reporting.php:11272
-#: ../../include/functions_reporting.php:11293
-#: ../../include/functions_reporting_html.php:4900
-msgid "Alert level"
-msgstr "Nivel de alerta"
-
-#: ../../include/functions_reporting.php:11272
-#: ../../include/functions_reporting.php:12384
-#: ../../include/functions_reporting.php:12394
-#, php-format
-msgid "%d Fired alerts"
-msgstr "%d alertas disparadas"
-
-#: ../../include/functions_reporting.php:11272
-#: ../../include/functions_reporting.php:11294
-msgid "of defined alerts not fired"
-msgstr "de alertas definidas no disparadas"
-
-#: ../../include/functions_reporting.php:11344
-#: ../../include/functions_reporting.php:11501
-#: ../../include/functions_reporting.php:11515
-#: ../../include/functions_reporting.php:13854
-#: ../../include/functions_reporting.php:13929
-#: ../../include/functions_ui.php:4660 ../../include/functions_html.php:930
-#: ../../include/functions_html.php:3297 ../../include/functions_html.php:3789
-msgid "Enterprise version not installed"
-msgstr "Versión Enterprise no instalada"
-
-#: ../../include/functions_reporting.php:11366
-msgid "Defined and fired alerts"
-msgstr "Alertas definidas y disparadas"
-
-#: ../../include/functions_reporting.php:11504
-#: ../../include/functions_reporting_html.php:5569
-msgid "Monitor checks"
-msgstr "Comprobaciones de monitores"
-
-#: ../../include/functions_reporting.php:11523
-#: ../../include/functions_reporting_html.php:5576
-msgid "Total agents and monitors"
-msgstr "Total de agentes y monitores"
-
-#: ../../include/functions_reporting.php:11545
-msgid "Defined users"
-msgstr "Usuarios definidos"
-
-#: ../../include/functions_reporting.php:12241
-msgid "Agent without data"
-msgstr "Agente sin datos"
-
-#: ../../include/functions_reporting.php:12293
-#: ../../include/functions_agents.php:2971
-#: ../../include/functions_agents.php:3026
-#: ../../include/functions_agents.php:3081
-msgid "At least one module in CRITICAL status"
-msgstr "Al menos un módulo está en estado CRÍTICO"
-
-#: ../../include/functions_reporting.php:12300
-#: ../../include/functions_agents.php:2977
-#: ../../include/functions_agents.php:3036
-#: ../../include/functions_agents.php:3089
-msgid "At least one module in WARNING status"
-msgstr "Al menos un módulo está en estado de ADVERTENCIA"
-
-#: ../../include/functions_reporting.php:12307
-#: ../../include/functions_agents.php:2983
-#: ../../include/functions_agents.php:3046
-#: ../../include/functions_agents.php:3097
-msgid "At least one module is in UKNOWN status"
-msgstr "Al menos un módulo está en estado DESCONOCIDO"
-
-#: ../../include/functions_reporting.php:12314
-#: ../../include/functions_agents.php:2989
-#: ../../include/functions_agents.php:3056
-#: ../../include/functions_agents.php:3105
-msgid "All Monitors OK"
-msgstr "Todos los monitores OK"
-
-#: ../../include/functions_reporting.php:12380
-#, php-format
-msgid "%d Normal modules"
-msgstr "%d módulos normales"
-
-#: ../../include/functions_reporting.php:12381
-#, php-format
-msgid "%d Critical modules"
-msgstr "%d módulos críticos"
-
-#: ../../include/functions_reporting.php:12382
-#, php-format
-msgid "%d Warning modules"
-msgstr "%d módulos en estado de advertencia"
-
-#: ../../include/functions_reporting.php:12383
-#, php-format
-msgid "%d Unknown modules"
-msgstr "%d módulos desconocidos"
-
-#: ../../include/functions_reporting.php:12388
-#, php-format
-msgid "%d Total agents"
-msgstr "%d del total de agentes"
-
-#: ../../include/functions_reporting.php:12389
-#, php-format
-msgid "%d Normal agents"
-msgstr "%d agentes normales"
-
-#: ../../include/functions_reporting.php:12390
-#, php-format
-msgid "%d Critical agents"
-msgstr "%d agentes en estado crítico"
-
-#: ../../include/functions_reporting.php:12391
-#, php-format
-msgid "%d Warning agents"
-msgstr "%d agentes en estado de advertencia"
-
-#: ../../include/functions_reporting.php:12392
-#, php-format
-msgid "%d Unknown agents"
-msgstr "%d agentes desconocidos"
-
-#: ../../include/functions_reporting.php:12393
-#, php-format
-msgid "%d not init agents"
-msgstr "%d agentes no iniciados"
-
-#: ../../include/functions_reporting.php:13821
-msgid "Total running modules"
-msgstr "Total de módulos en ejecución"
-
-#: ../../include/functions_reporting.php:13824
-#: ../../include/functions_reporting.php:13839
-#: ../../include/functions_reporting.php:13851
-#: ../../include/functions_reporting.php:13869
-#: ../../include/functions_reporting.php:13881
-#: ../../include/functions_reporting.php:13893
-#: ../../include/functions_reporting.php:13905
-msgid "Ratio"
-msgstr "Proporción"
-
-#: ../../include/functions_reporting.php:13824
-#: ../../include/functions_reporting.php:13839
-#: ../../include/functions_reporting.php:13851
-#: ../../include/functions_reporting.php:13869
-#: ../../include/functions_reporting.php:13881
-#: ../../include/functions_reporting.php:13893
-#: ../../include/functions_reporting.php:13905
-msgid "Modules by second"
-msgstr "Módulos por segundo"
-
-#: ../../include/functions_reporting.php:13836
-msgid "Local modules"
-msgstr "Módulos locales"
-
-#: ../../include/functions_reporting.php:13846
-msgid "Network modules"
-msgstr "Módulos de red"
-
-#: ../../include/functions_reporting.php:13865
-msgid "Plugin modules"
-msgstr "Módulos de plugin"
-
-#: ../../include/functions_reporting.php:13877
-msgid "Prediction modules"
-msgstr "Módulos de predicción"
-
-#: ../../include/functions_reporting.php:13889
-msgid "WMI modules"
-msgstr "Módulos WMI"
-
-#: ../../include/functions_reporting.php:13901
-msgid "Web modules"
-msgstr "Módulos web"
-
-#: ../../include/functions_reporting.php:13939
-#: ../../include/lib/Dashboard/Widgets/tactical.php:274
-msgid "Server performance"
-msgstr "Rendimiento del servidor"
-
-#: ../../include/functions_reporting.php:14058
-msgid "Weekly:"
-msgstr "Semanalmente:"
-
-#: ../../include/functions_reporting.php:14100
-msgid "Monthly:"
-msgstr "Mensual:"
-
-#: ../../include/functions_reporting.php:14101
-msgid "From day"
-msgstr "Desde el día"
-
-#: ../../include/functions_reporting.php:14102
-msgid "To day"
-msgstr "Hasta el día"
-
-#: ../../include/functions_reporting.php:14636
-msgid "Module Histogram Graph"
-msgstr "Gráfico de histograma del módulo"
-
-#: ../../include/functions_reporting.php:15017
-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:15018
-msgid "report"
-msgstr "informe"
-
-#: ../../include/functions_servers.php:582
-msgid "SNMP Trap server"
-msgstr "Servidor de traps SNMP"
-
-#: ../../include/functions_servers.php:699
-msgid "Correlation server"
-msgstr "Servidor de correlación"
-
-#: ../../include/functions_servers.php:712
-#: ../../include/functions_servers.php:1314
-msgid "Enterprise ICMP server"
-msgstr "Servidor ICMP Enterprise"
-
-#: ../../include/functions_servers.php:725
-#: ../../include/functions_servers.php:1317
-msgid "Enterprise SNMP server"
-msgstr "Servidor SNMP Enterprise"
-
-#: ../../include/functions_servers.php:738
-#: ../../include/class/AgentWizard.class.php:1252
-msgid "Enterprise Satellite server"
-msgstr "Servidor Enterprise Satélite"
-
-#: ../../include/functions_servers.php:751
-msgid "Enterprise Transactional server"
-msgstr "Servidor transaccional Enterprise"
-
-#: ../../include/functions_servers.php:764
-msgid "Mainframe server"
-msgstr "Servidor mainframe"
-
-#: ../../include/functions_servers.php:777
-msgid "Sync server"
-msgstr "Servidor sync"
-
-#: ../../include/functions_servers.php:790
-msgid "Wux server"
-msgstr "Servidor WUX"
-
-#: ../../include/functions_servers.php:803
-#: ../../include/functions_servers.php:1344
-msgid "Log server"
-msgstr "Servidor de registros"
-
-#: ../../include/functions_servers.php:829
-msgid "Autoprovision server"
-msgstr "Servidor de auto aprovisionamiento"
-
-#: ../../include/functions_servers.php:842
-msgid "Migration server"
-msgstr "Servidor de migración"
-
-#: ../../include/functions_servers.php:1323
-msgid "Prediction Server"
-msgstr "Servidor de predicción"
-
-#: ../../include/functions_servers.php:1350
-msgid "Satellite server"
-msgstr "Servidor Satélite"
-
-#: ../../include/functions_servers.php:1353
-msgid "Transactional server"
-msgstr "Servidor transaccional"
-
-#: ../../include/functions_api.php:116
-msgid "Not `set`, `get` or `help` operation selected."
-msgstr "No hay operación 'set', 'get' o 'help' seleccionada"
-
-#: ../../include/functions_api.php:126
-msgid "This operation does not exist."
-msgstr "Esta operación no existe."
-
-#: ../../include/functions_api.php:136
-msgid "The Id does not exist in database."
-msgstr "El ID no existe en la base de datos."
-
-#: ../../include/functions_api.php:146
-msgid "This operation can not be used in cluster elements."
-msgstr "Esta operación no es posible en elementos de un cluster."
-
-#: ../../include/functions_api.php:156
-msgid "The user has not enough permissions for perform this action."
-msgstr ""
-"El usuario no tiene los permisos suficientes para llevar a cabo esta acción."
-
-#: ../../include/functions_api.php:176
-msgid ""
-"This console is not the environment administrator. Please, manage this feature "
-"from centralized manager console (Metaconsole)."
-msgstr ""
-"Esta consola no es el administrador del entorno. Gestione esta funcionalidad "
-"desde la consola de gestión centralizada (Metaconsola)."
-
-#: ../../include/functions_api.php:186
-msgid "Auth error"
-msgstr "Error de autenticación"
-
-#: ../../include/functions_api.php:1471
-msgid ""
-"The agent could not be modified. For security reasons, use a group other than "
-"0."
-msgstr ""
-"No se ha podido modificar el agente. Por motivos de seguridad, use un grupo "
-"diferente de 0."
-
-#: ../../include/functions_api.php:1810
-#, php-format
-msgid "Updated %d/%d agents"
-msgstr "Se han actualizado  %d/%d agentes"
-
-#: ../../include/functions_api.php:1818
-msgid "Agent updated."
-msgstr "Agente actualizado."
-
-#: ../../include/functions_api.php:2035
-msgid "Could not create OS"
-msgstr "No se ha podido crear el sistema operativo."
-
-#: ../../include/functions_api.php:2074
-msgid "Could not update OS"
-msgstr "No se ha podido actualizar el sistema operativo"
-
-#: ../../include/functions_api.php:2275
-msgid "The agent was successfully deleted"
-msgstr "El agente se ha eliminado correctamente"
-
-#: ../../include/functions_api.php:3770
-msgid "Network module updated."
-msgstr "Módulo de red actualizado"
-
-#: ../../include/functions_api.php:4066
-msgid "Plugin module updated."
-msgstr "Módulo de plugin actualizado"
-
-#: ../../include/functions_api.php:4422
-#, php-format
-msgid "Synthetic module created ID: %s"
-msgstr "ID creada por el módulo sintético: %s"
-
-#: ../../include/functions_api.php:4575
-msgid "Synthetic module created ID: "
-msgstr "ID del módulo sintético creado: "
-
-#: ../../include/functions_api.php:4692
-msgid "Data module updated."
-msgstr "Datos del módulo actualizado"
-
-#: ../../include/functions_api.php:5065
-msgid "SNMP module updated."
-msgstr "Módulo SNMP actualizado"
-
-#: ../../include/functions_api.php:5672
-msgid "Error creating alert template. Id_group cannot be left blank."
-msgstr "Error al crear plantilla de alerta. Id_group no puede estar en blanco."
-
-#: ../../include/functions_api.php:5686
-msgid ""
-"Error creating alert template. Invalid id_group or the user has not enough "
-"permission to make this action."
-msgstr ""
-"Error al crear plantilla de alerta. Id_group no válido o no tiene permisos "
-"suficientes para ejecutar esta acción."
-
-#: ../../include/functions_api.php:5832
-msgid ""
-"Error updating alert template. Invalid id_group or the user has not enough "
-"permission to make this action."
-msgstr ""
-"Error al cargar la plantilla de la alerta. Id_group no válido o el usuario no "
-"tiene los permisos suficientes para ejecutar esta acción."
-
-#: ../../include/functions_api.php:5916
-msgid "Successful update of the alert template"
-msgstr "Actualización correcta de la plantilla de alerta"
-
-#: ../../include/functions_api.php:5964
-msgid "Error deleting alert template. Id_template doesn't exist."
-msgstr "Error al eliminar la plantilla de alerta. Id_template no existe."
-
-#: ../../include/functions_api.php:5993
-msgid "Successful delete of alert template."
-msgstr "Plantilla de alerta borrada correctamente."
-
-#: ../../include/functions_api.php:6413 ../../include/functions_api.php:12362
-#: ../../include/functions_api.php:12428 ../../include/functions_api.php:12709
-#: ../../include/functions_api.php:12789
-#, php-format
-msgid "%d agents affected"
-msgstr "%d agentes afectados"
-
-#: ../../include/functions_api.php:6559
-msgid "Correct deleting of module template."
-msgstr "Plantilla de módulo borrada correctamente"
-
-#: ../../include/functions_api.php:6667
-msgid "Successful delete of module template."
-msgstr "Plantilla de módulo eliminada correctamente."
-
-#: ../../include/functions_api.php:6700
-msgid "Error validating alert. Id_template cannot be left blank."
-msgstr "Error al validar la alerta. Id_template no puede estar en blanco."
-
-#: ../../include/functions_api.php:6708
-msgid "Error validating alert. Id_agent cannot be left blank."
-msgstr "Error al validar a alerta. Id_agent no puede estar vacío."
-
-#: ../../include/functions_api.php:6716
-msgid "Error validating alert. Id_module cannot be left blank."
-msgstr "Error al validar la alerta. Id_module no puede estar en blanco."
-
-#: ../../include/functions_api.php:6787
-msgid "Error validating alert. Specified alert does not exist."
-msgstr "Error al validar alerta. La alerta especificada no existe."
-
-#: ../../include/functions_api.php:6798
-msgid "Error validating alert"
-msgstr "Error al validar la alerta."
-
-#: ../../include/functions_api.php:6872
-#, php-format
-msgid "Correct validation of all alerts (total %d)."
-msgstr "Validación correcta de todas las alertas (total %d)."
-
-#: ../../include/functions_api.php:6966
-msgid "Correct validation of all policy alerts."
-msgstr "Validación correcta de las alertas de política."
-
-#: ../../include/functions_api.php:7008
-msgid ""
-"Error stopping downtime. Periodical and running scheduled downtime cannot be "
-"stopped."
-msgstr ""
-"Error al detener el tiempo de inactividad. Las paradas planificadas periódicas "
-"y en ejecución no pueden detenerse."
-
-#: ../../include/functions_api.php:7021
-msgid "Downtime stopped."
-msgstr "Tiempo de inactividad interrumpido"
-
-#: ../../include/functions_api.php:7503
-msgid "and this modules are doesn't exists or not applicable a this agents: "
-msgstr "y este módulo no existe o no es aplicable a estos agentes: "
-
-#: ../../include/functions_api.php:7507
-msgid "and this agents are generate problems: "
-msgstr "y estos agentes generan problemas: "
-
-#: ../../include/functions_api.php:7511
-msgid "and this agents with ids are doesn't exists: "
-msgstr "y estos agentes con los identificadores no existen: "
-
-#: ../../include/functions_api.php:7659
-msgid "Planned downtime updated"
-msgstr "Tiempo de parada planificado actualizado"
-
-#: ../../include/functions_api.php:7735
-msgid " Agents deleted"
-msgstr " Agentes eliminados"
-
-#: ../../include/functions_api.php:7816
-msgid " Agents added"
-msgstr " Agentes añadidos"
-
-#: ../../include/functions_api.php:7936
-msgid "Data policy module updated."
-msgstr "Política de módulo de datos actualizado"
-
-#: ../../include/functions_api.php:8169
-msgid "Network policy module updated."
-msgstr "Módulo de red de la política actualizado"
-
-#: ../../include/functions_api.php:8426
-msgid "Plugin policy module updated."
-msgstr "Módulo de plugin de la política actualizado"
-
-#: ../../include/functions_api.php:8935
-msgid "SNMP policy module updated."
-msgstr "Módulo SNMP de la política actualizado"
-
-#: ../../include/functions_api.php:9280
-msgid "Successful deletion"
-msgstr "Eliminado correctamente."
-
-#: ../../include/functions_api.php:9596
-msgid "User created."
-msgstr "Usuario creado."
-
-#: ../../include/functions_api.php:9691
-msgid "User updated."
-msgstr "Usuario actualizado."
-
-#: ../../include/functions_api.php:9770
-msgid "Enabled user."
-msgstr "Usuario habilitado"
-
-#: ../../include/functions_api.php:9778
-msgid "Disabled user."
-msgstr "Usuario deshabilitado"
-
-#: ../../include/functions_api.php:10075
-#, php-format
-msgid "Template have been inserted in %d agents."
-msgstr "Las plantillas se han insertado en %d agentes."
-
-#: ../../include/functions_api.php:10247
-msgid "XML file was generated successfully in path: "
-msgstr "El archivo XML se ha creado correctamente en la ruta: "
-
-#: ../../include/functions_api.php:10387
-#, php-format
-msgid "Module has been created in %d agents."
-msgstr "El módulo se ha cread en %d agentes."
-
-#: ../../include/functions_api.php:10517
-#, php-format
-msgid "Action has been set for %d agents."
-msgstr "La acción se ha asignado a %d agentes."
-
-#: ../../include/functions_api.php:11952
-msgid "User deleted."
-msgstr "Usuario borrado."
-
-#: ../../include/functions_api.php:12013
-msgid "User profile added."
-msgstr "Perfil de usuario añadido."
-
-#: ../../include/functions_api.php:12080
-msgid "User profile deleted."
-msgstr "Perfil de usuario eliminado."
-
-#: ../../include/functions_api.php:12369
-msgid "Module disabled successfully."
-msgstr "Módulo deshabilitado correctamente."
-
-#: ../../include/functions_api.php:12371
-msgid "The module could not be disabled."
-msgstr "No se ha podido deshabilitar el módulo."
-
-#: ../../include/functions_api.php:12435
-msgid "Module enabled successfully."
-msgstr "Módulo habilitado correctamente."
-
-#: ../../include/functions_api.php:12437
-msgid "The module could not be enabled."
-msgstr "El módulo no se ha podido habilitar."
-
-#: ../../include/functions_api.php:12485 ../../include/functions_api.php:12538
-msgid "The alert could not be disabled."
-msgstr "La alerta no se ha podido deshabilitar."
-
-#: ../../include/functions_api.php:12585 ../../include/functions_api.php:12638
-msgid "The alert could not be enabled."
-msgstr "La alerta no se ha podido habilitar."
-
-#: ../../include/functions_api.php:13910
-msgid "Enabled agent."
-msgstr "Agente habilitado"
-
-#: ../../include/functions_api.php:13918
-msgid "Disabled agent."
-msgstr "Agente deshabilitado"
-
-#: ../../include/functions_api.php:14897
-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:14899
-#, 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:14902
-msgid "This function is for metaconsole only."
-msgstr "función exclusiva de la Metaconsola."
-
-#: ../../include/functions_api.php:15287 ../../include/functions_api.php:15358
-msgid "Successfully deleted."
-msgstr "Eliminado correctamente"
-
-#: ../../include/functions_api.php:15317
-msgid "The user cannot access the cluster."
-msgstr "El usuario no puede acceder al cluster."
-
-#: ../../include/functions_api.php:16203
-msgid "Event filter successfully created."
-msgstr "Filtro de evento creado correctamente."
-
-#: ../../include/functions_api.php:16436
-msgid "Event filter successfully updated."
-msgstr "Filtro de evento creado correctamente."
-
-#: ../../include/functions_api.php:16477
-msgid "Event filter successfully deleted."
-msgstr "Filtro de evento borrado correctamente."
-
-#: ../../include/functions_api.php:16793
-msgid "Validated traps."
-msgstr "Traps validados."
-
-#: ../../include/functions_api.php:16820
-msgid "Deleted traps."
-msgstr "Traps eliminados."
-
-#: ../../include/functions_api.php:17013
-#, 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:17015
-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:17467
-#, 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:17627
-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:17635
-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:17660
-msgid "Error in discovery task enabling/disabling."
-msgstr "Error al habilitar/deshabilitar la tarea discovery."
-
-#: ../../include/functions_api.php:17668
-msgid "Enabled discovery task."
-msgstr "Tarea discovery habilitada."
-
-#: ../../include/functions_api.php:17676
-msgid "Disabled discovery task."
-msgstr "Tarea discovery deshabilitada."
-
-#: ../../include/functions_visual_map.php:1746
-#: ../../include/functions_visual_map.php:1748
-#: ../../include/rest-api/models/VisualConsole/Items/StaticGraph.php:275
-#: ../../include/rest-api/models/VisualConsole/Items/StaticGraph.php:279
-msgid "Last value: "
-msgstr "Último valor: "
-
-#: ../../include/functions_visual_map.php:2632
-msgid "Agent successfully added to layout"
-msgstr "Agente añadido correctamente al diseño"
-
-#: ../../include/functions_visual_map.php:2816
-msgid "Modules successfully added to layout"
-msgstr "Módulos añadidos correctamente al diseño"
-
-#: ../../include/functions_visual_map.php:3141
-msgid "Agents successfully added to layout"
-msgstr "Agentes añadidos correctamente al diseño"
-
-#: ../../include/functions_visual_map.php:3537
-msgid "Cannot load the visualmap"
-msgstr "No se puede cargar el mapa visual"
-
-#: ../../include/functions_visual_map.php:4189
-#: ../../include/rest-api/models/VisualConsole/Item.php:2107
-msgid "Bars graph"
+"Se ha perdido la conexión con el servidor. Compruebe su conexión a Internet o "
+"póngase en contacto con el administrador"
+
+#: ../../operation/visual_console/legacy_public_view.php:168
+#: ../../operation/visual_console/public_view.php:150
+msgid "QR code of the page"
+msgstr "Código QR de la página"
+
+#: ../../operation/visual_console/legacy_public_view.php:198
+#: ../../operation/visual_console/legacy_view.php:339
+msgid "Until refresh"
+msgstr "Hasta la actualización"
+
+#: ../../operation/visual_console/legacy_view.php:121
+#: ../../operation/visual_console/view.php:122
+#: ../../enterprise/meta/screens/screens.visualmap.php:286
+#: ../../godmode/reporting/visual_console_builder.php:801
+msgid "Visual consoles list"
+msgstr "Lista de consolas visuales"
+
+#: ../../operation/visual_console/legacy_view.php:137
+#: ../../operation/visual_console/view.php:150
+#: ../../enterprise/meta/screens/screens.visualmap.php:261
+#: ../../godmode/reporting/visual_console_builder.php:805
+msgid "Show link to public Visual Console"
+msgstr "Mostrar enlace a la Consola Visual pública"
+
+#: ../../operation/visual_console/legacy_view.php:147
+#: ../../operation/visual_console/view.php:160
+#: ../../operation/reporting/graph_viewer.php:193
+#: ../../operation/reporting/reporting_viewer.php:139
+#: ../../enterprise/meta/screens/screens.visualmap.php:241
+#: ../../godmode/reporting/reporting_builder.main.php:73
+#: ../../godmode/reporting/visual_console_builder.php:809
+#: ../../godmode/reporting/graph_builder.php:298
+#: ../../godmode/reporting/reporting_builder.php:3529
+msgid "Main data"
+msgstr "Datos principales"
+
+#: ../../operation/visual_console/legacy_view.php:155
+#: ../../operation/visual_console/view.php:168
+#: ../../enterprise/meta/screens/screens.visualmap.php:230
+#: ../../godmode/reporting/visual_console_builder.php:813
+msgid "List elements"
+msgstr "Lista de elementos"
+
+#: ../../operation/visual_console/legacy_view.php:165
+#: ../../operation/visual_console/view.php:178
+#: ../../godmode/reporting/visual_console_builder.php:819
+msgid "Services wizard"
+msgstr "Asistente de servicios"
+
+#: ../../operation/visual_console/legacy_view.php:175
+#: ../../operation/visual_console/view.php:188
+#: ../../enterprise/include/functions_reporting.php:60
+#: ../../enterprise/include/functions_reporting.php:7990
+#: ../../enterprise/include/functions_reporting.php:8016
+#: ../../enterprise/meta/screens/screens.visualmap.php:219
+#: ../../enterprise/meta/general/main_menu.php:238
+#: ../../enterprise/meta/general/logon_ok.php:48
+#: ../../enterprise/meta/general/main_header.php:134
+#: ../../enterprise/meta/monitoring/wizard/wizard.php:123
+#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:61
+#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:94
+#: ../../godmode/reporting/visual_console_builder.php:825
+#: ../../godmode/reporting/visual_console_builder.wizard.php:518
+msgid "Wizard"
+msgstr "Asistente"
+
+#: ../../operation/visual_console/legacy_view.php:183
+#: ../../enterprise/meta/screens/screens.visualmap.php:206
+#: ../../enterprise/godmode/alerts/alert_inventory.php:80
+#: ../../godmode/reporting/visual_console_builder.php:830
+msgid "Builder"
+msgstr "Creador"
+
+#: ../../operation/visual_console/legacy_view.php:193
+#: ../../operation/visual_console/view.php:198 ../../operation/tree.php:187
+#: ../../operation/agentes/status_monitor.php:75
+#: ../../operation/agentes/estado_agente.php:858
+#: ../../operation/agentes/estado_agente.php:861
+#: ../../operation/agentes/ver_agente.php:1907
+#: ../../enterprise/operation/agentes/policy_view.php:70
+#: ../../enterprise/include/lib/ClusterViewer/ClusterManager.php:601
+#: ../../enterprise/meta/screens/screens.visualmap.php:163
+#: ../../enterprise/meta/screens/screens.visualmap.php:194
+#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:106
+#: ../../godmode/setup/setup_visuals.php:163
+#: ../../godmode/setup/setup_visuals.php:227
+#: ../../godmode/setup/setup_visuals.php:281
+#: ../../godmode/setup/setup_visuals.php:286
+#: ../../godmode/setup/setup_visuals.php:325
+#: ../../godmode/setup/setup_visuals.php:362
+#: ../../godmode/setup/setup_visuals.php:384
+#: ../../godmode/setup/setup_visuals.php:409
+#: ../../godmode/setup/setup_visuals.php:428
+#: ../../godmode/setup/setup_visuals.php:447
+#: ../../godmode/setup/setup_visuals.php:466
+#: ../../godmode/setup/setup_visuals.php:608
+#: ../../godmode/reporting/visual_console_builder.php:836
+#: ../../godmode/menu.php:554 ../../godmode/agentes/configurar_agente.php:372
+#: ../../godmode/agentes/modificar_agente.php:82
+#: ../../godmode/agentes/modificar_agente.php:836
+#: ../../godmode/agentes/modificar_agente.php:841
+#: ../../godmode/module_library/module_library_view.php:59
+msgid "View"
+msgstr "Vista"
+
+#: ../../operation/visual_console/view.php:226 ../../operation/menu.php:300
+#: ../../operation/agentes/pandora_networkmap.php:665
+#: ../../operation/agentes/pandora_networkmap.editor.php:214
+#: ../../enterprise/operation/services/services.treeview_services.php:77
+#: ../../enterprise/operation/services/services.service.php:79
+#: ../../enterprise/operation/services/services.list.php:71
+#: ../../enterprise/operation/services/services.service_map.php:86
+#: ../../enterprise/operation/services/services.table_services.php:54
+#: ../../enterprise/godmode/services/services.elements.php:794
+#: ../../enterprise/godmode/services/services.service.php:485
+#: ../../enterprise/godmode/reporting/visual_console_template.php:118
+#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:117
+#: ../../enterprise/godmode/agentes/pandora_networkmap_empty.editor.php:102
+#: ../../godmode/reporting/map_builder.php:130
+#: ../../godmode/reporting/visual_console_builder.php:863
+#: ../../godmode/reporting/visual_console_favorite.php:127
+#: ../../godmode/agentes/pandora_networkmap_empty.editor.php:104
+msgid "Topology maps"
+msgstr "Mapas topológicos"
+
+#: ../../operation/visual_console/view.php:230 ../../operation/menu.php:177
+#: ../../operation/menu.php:181 ../../operation/users/user_edit.php:357
+#: ../../include/lib/Dashboard/Widgets/maps_made_by_user.php:324
+#: ../../enterprise/meta/screens/screens.visualmap.php:305
+#: ../../enterprise/meta/screens/screens.visualmap.php:310
+#: ../../enterprise/godmode/reporting/visual_console_template.php:122
+#: ../../enterprise/godmode/reporting/visual_console_template.php:128
+#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:121
+#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:127
+#: ../../extensions/resource_exportation.php:436
+#: ../../godmode/reporting/map_builder.php:134
+#: ../../godmode/reporting/map_builder.php:140
+#: ../../godmode/reporting/visual_console_builder.php:867
+#: ../../godmode/reporting/visual_console_favorite.php:131
+#: ../../godmode/reporting/visual_console_favorite.php:137
+#: ../../godmode/users/configure_user.php:1110
+msgid "Visual console"
+msgstr "Consola visual"
+
+#: ../../operation/visual_console/view.php:296
+#: ../../include/functions_visual_map_editor.php:1387
+#: ../../include/functions_visual_map.php:4214
+#: ../../godmode/setup/gis_step_2.php:233
+#: ../../godmode/reporting/visual_console_builder.elements.php:182
+msgid "Static Image"
+msgstr "Imagen estática"
+
+#: ../../operation/visual_console/view.php:301
+#: ../../include/functions_visual_map_editor.php:57
+#: ../../include/functions_visual_map_editor.php:1388
+#: ../../godmode/reporting/visual_console_builder.wizard.php:128
+msgid "Percentile Item"
+msgstr "Elemento percentil"
+
+#: ../../operation/visual_console/view.php:306
+#: ../../include/functions_visual_map_editor.php:1389
+#: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:555
+#: ../../mobile/operation/events.php:549
+#: ../../godmode/reporting/visual_console_builder.elements.php:221
+msgid "Module Graph"
+msgstr "Gráfico de módulo"
+
+#: ../../operation/visual_console/view.php:311
+#: ../../include/rest-api/models/VisualConsole/Item.php:2155
+#: ../../godmode/reporting/visual_console_builder.elements.php:351
+msgid "Basic chart"
+msgstr "Gráfico básico"
+
+#: ../../operation/visual_console/view.php:316
+#: ../../include/functions_visual_map_editor.php:1390
+msgid "Serialized pie graph"
+msgstr "Gráfico circular serializado"
+
+#: ../../operation/visual_console/view.php:321
+#: ../../include/functions_visual_map_editor.php:1391
+msgid "Bars Graph"
 msgstr "Gráfico de barras"
 
-#: ../../include/functions_visual_map.php:4199
-#: ../../include/rest-api/models/VisualConsole/Item.php:2115
-msgid "Percentile bar"
-msgstr "Barra de porcentaje"
+#: ../../operation/visual_console/view.php:326
+#: ../../include/functions_visual_map_editor.php:59
+#: ../../include/functions_visual_map_editor.php:1392
+#: ../../include/functions_visual_map.php:4194
+#: ../../godmode/reporting/visual_console_builder.elements.php:231
+msgid "Event history graph"
+msgstr "Gráfica de histórico de eventos"
 
-#: ../../include/functions_visual_map.php:4204
-#: ../../include/rest-api/models/VisualConsole/Item.php:2123
-msgid "Circular progress bar"
-msgstr "Barra de progreso circular"
+#: ../../operation/visual_console/view.php:331
+#: ../../include/functions_visual_map_editor.php:1393
+#: ../../include/functions_visual_map.php:4219
+#: ../../include/rest-api/models/VisualConsole/Item.php:2131
+#: ../../godmode/reporting/visual_console_builder.elements.php:240
+msgid "Simple Value"
+msgstr "Valor simple"
 
-#: ../../include/functions_visual_map.php:4209
-#: ../../include/functions_visual_map_editor.php:689
-#: ../../include/rest-api/models/VisualConsole/Item.php:2127
-#: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:462
-msgid "Circular progress bar (interior)"
-msgstr "Barra de progreso circular (interior)"
+#: ../../operation/visual_console/view.php:336
+#: ../../include/functions_visual_map_editor.php:67
+#: ../../include/functions_visual_map_editor.php:193
+#: ../../include/functions_visual_map_editor.php:779
+#: ../../include/functions_visual_map_editor.php:1394
+#: ../../include/lib/Dashboard/Widgets/sla_percent.php:285
+#: ../../include/lib/Dashboard/Widgets/module_value.php:278
+#: ../../include/lib/Dashboard/Widgets/module_status.php:294
+#: ../../include/lib/Dashboard/Widgets/graph_module_histogram.php:274
+#: ../../include/lib/Dashboard/Widgets/module_icon.php:304
+#: ../../include/functions_visual_map.php:4224
+#: ../../include/rest-api/models/VisualConsole/Item.php:1941
+#: ../../include/rest-api/models/VisualConsole/Item.php:2135
+#: ../../enterprise/include/functions_reporting_csv.php:1158
+#: ../../enterprise/meta/advanced/metasetup.consoles.php:513
+#: ../../enterprise/meta/advanced/metasetup.consoles.php:837
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1702
+#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:498
+#: ../../godmode/reporting/visual_console_builder.elements.php:104
+#: ../../godmode/reporting/visual_console_builder.elements.php:283
+#: ../../godmode/reporting/reporting_builder.item_editor.php:1116
+#: ../../godmode/reporting/graph_builder.graph_editor.php:214
+#: ../../godmode/reporting/visual_console_builder.wizard.php:446
+msgid "Label"
+msgstr "Etiqueta"
+
+#: ../../operation/visual_console/view.php:341
+#: ../../include/functions_visual_map_editor.php:68
+#: ../../include/functions_visual_map_editor.php:1395
+#: ../../include/lib/Dashboard/Widgets/module_status.php:374
+#: ../../include/lib/Dashboard/Widgets/module_icon.php:384
+#: ../../include/functions_visual_map.php:4239
+#: ../../include/rest-api/models/VisualConsole/Item.php:2147
+#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:103
+#: ../../godmode/setup/os.builder.php:40 ../../godmode/modules/module_list.php:60
+#: ../../godmode/reporting/visual_console_builder.elements.php:292
+#: ../../godmode/groups/configure_group.php:153
+#: ../../godmode/groups/group_list.php:844
+msgid "Icon"
+msgstr "Icono"
+
+#: ../../operation/visual_console/view.php:346
+#: ../../include/functions_visual_map_editor.php:69
+#: ../../include/functions_visual_map_editor.php:1396
+#: ../../include/lib/Dashboard/Widgets/clock.php:158
+#: ../../include/lib/Dashboard/Widgets/clock.php:310
+#: ../../include/functions_visual_map.php:4184
+#: ../../include/rest-api/models/VisualConsole/Item.php:2103
+#: ../../godmode/reporting/visual_console_builder.elements.php:367
+msgid "Clock"
+msgstr "Reloj"
+
+#: ../../operation/visual_console/view.php:356
+#: ../../include/functions_visual_map_editor.php:71
+#: ../../include/functions_visual_map_editor.php:1398
+#: ../../include/functions_visual_map.php:4174
+#: ../../godmode/reporting/visual_console_builder.elements.php:303
+msgid "Box"
+msgstr "Caja"
+
+#: ../../operation/visual_console/view.php:361
+#: ../../operation/reporting/graph_viewer.php:372
+#: ../../operation/agentes/graphs.php:238 ../../operation/agentes/graphs.php:244
+#: ../../operation/agentes/graphs.php:417 ../../operation/agentes/graphs.php:432
+#: ../../include/functions_visual_map_editor.php:72
+#: ../../include/functions_visual_map_editor.php:557
+#: ../../include/functions_visual_map_editor.php:1399
+#: ../../include/lib/Dashboard/Widgets/custom_graph.php:317
+#: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:651
+#: ../../enterprise/meta/advanced/metasetup.visual.php:357
+#: ../../enterprise/godmode/reporting/graph_template_editor.php:247
+#: ../../godmode/setup/setup_visuals.php:909
+#: ../../godmode/setup/setup_visuals.php:926
+#: ../../godmode/reporting/create_container.php:359
+#: ../../godmode/reporting/visual_console_builder.elements.php:333
+#: ../../godmode/reporting/graph_builder.main.php:216
+msgid "Line"
+msgstr "Línea"
+
+#: ../../operation/visual_console/view.php:366
+#: ../../include/functions_visual_map_editor.php:73
+#: ../../include/functions_visual_map_editor.php:1400
+#: ../../include/functions_visual_map.php:4234
+#: ../../include/rest-api/models/VisualConsole/Item.php:2143
+#: ../../godmode/reporting/visual_console_builder.elements.php:343
+msgid "Color cloud"
+msgstr "Nube de color"
+
+#: ../../operation/visual_console/view.php:371
+#: ../../include/functions_visual_map_editor.php:1405
+#: ../../godmode/reporting/visual_console_builder.elements.php:322
+msgid "Network link"
+msgstr "Link de red"
+
+#: ../../operation/visual_console/view.php:376
+#: ../../include/rest-api/models/VisualConsole/Item.php:2151
+#: ../../godmode/reporting/visual_console_builder.elements.php:359
+msgid "Odometer"
+msgstr "Odómetro #1"
+
+#: ../../operation/visual_console/view.php:387
+msgid "Delete Item"
+msgstr "Eliminar elemento"
+
+#: ../../operation/visual_console/view.php:393
+msgid "Copy Item"
+msgstr "Copiar elemento"
+
+#: ../../operation/visual_console/view.php:406
+#: ../../operation/agentes/estado_generalagente.php:326
+msgid "Force remote checks"
+msgstr "Forzar comprobación remota"
+
+#: ../../operation/visual_console/view.php:734
+msgid "Are you sure"
+msgstr "¿Está seguro?"
+
+#: ../../operation/visual_console/view.php:806
+#: ../../include/ajax/snmp_browser.ajax.php:260
+#: ../../include/class/ModuleTemplates.class.php:1417
+#: ../../include/class/HelpFeedBack.class.php:359
+#: ../../include/class/WebServerModuleDebug.class.php:359
+#: ../../include/class/AgentWizard.class.php:5802
+#: ../../include/class/Diagnostics.class.php:2087
+#: ../../include/class/ConfigPEN.class.php:737
+#: ../../include/class/CredentialStore.class.php:1185
+#: ../../include/functions_ui.php:294
+#: ../../enterprise/include/class/AgentRepository.class.php:842
+#: ../../enterprise/include/class/LogSource.class.php:788
+#: ../../enterprise/include/class/ManageBackups.class.php:473
+#: ../../enterprise/include/class/Omnishell.class.php:1083
+#: ../../enterprise/include/class/DeploymentCenter.class.php:1611
+#: ../../enterprise/include/functions_HA_cluster.php:535
+#: ../../enterprise/include/functions_visual_map.php:677
+#: ../../enterprise/godmode/services/services.elements.php:840
+#: ../../enterprise/godmode/services/services.elements.php:851
+#: ../../godmode/wizards/DiscoveryTaskList.class.php:1057
+msgid "Success"
+msgstr "Finalizado correctamente"
+
+#: ../../operation/visual_console/view.php:813
+#: ../../operation/visual_console/view.php:818
+#: ../../include/ajax/snmp_browser.ajax.php:259
+#: ../../include/class/ModuleTemplates.class.php:1424
+#: ../../include/class/ModuleTemplates.class.php:1429
+#: ../../include/class/HelpFeedBack.class.php:354
+#: ../../include/class/WebServerModuleDebug.class.php:366
+#: ../../include/class/WebServerModuleDebug.class.php:371
+#: ../../include/class/AgentWizard.class.php:5809
+#: ../../include/class/AgentWizard.class.php:5814
+#: ../../include/class/Diagnostics.class.php:2086
+#: ../../include/class/ConfigPEN.class.php:744
+#: ../../include/class/ConfigPEN.class.php:749
+#: ../../include/class/CredentialStore.class.php:1192
+#: ../../include/class/CredentialStore.class.php:1197
+#: ../../include/lib/Dashboard/Widgets/wux_transaction.php:372
+#: ../../enterprise/operation/agentes/wux_console_view.php:452
+#: ../../enterprise/operation/agentes/transactional_map.php:327
+#: ../../enterprise/operation/agentes/ux_console_view.php:210
+#: ../../enterprise/operation/agentes/ux_console_view.php:352
+#: ../../enterprise/include/class/AgentRepository.class.php:849
+#: ../../enterprise/include/class/AgentRepository.class.php:854
+#: ../../enterprise/include/class/LogSource.class.php:795
+#: ../../enterprise/include/class/LogSource.class.php:800
+#: ../../enterprise/include/class/ManageBackups.class.php:484
+#: ../../enterprise/include/class/ManageBackups.class.php:489
+#: ../../enterprise/include/class/Omnishell.class.php:1079
+#: ../../enterprise/include/class/DeploymentCenter.class.php:1618
+#: ../../enterprise/include/class/DeploymentCenter.class.php:1623
+#: ../../enterprise/include/class/DatabaseHA.class.php:208
+#: ../../enterprise/include/functions_HA_cluster.php:542
+#: ../../enterprise/include/functions_HA_cluster.php:547
+#: ../../enterprise/include/functions_ux_console.php:473
+#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:539
+#: ../../godmode/wizards/DiscoveryTaskList.class.php:1058
+msgid "Failed"
+msgstr "Fallo"
+
+#: ../../operation/search_reports.php:25 ../../operation/search_policies.php:22
+#: ../../operation/search_modules.php:23 ../../operation/search_users.php:23
+#: ../../operation/search_maps.php:19 ../../operation/search_graphs.php:21
+#: ../../operation/search_agents.php:30 ../../operation/search_alerts.php:24
+msgid "Zero results found"
+msgstr "No se encontró ningún resultado"
+
+#: ../../operation/search_reports.php:42 ../../operation/search_reports.php:58
+#: ../../operation/reporting/custom_reporting.php:34
+#: ../../include/functions_cron.php:665
+#: ../../enterprise/include/functions_cron.php:232
+#: ../../enterprise/include/functions_reporting_csv.php:2218
+#: ../../enterprise/include/functions_reporting_csv.php:2222
+#: ../../enterprise/include/functions_tasklist.php:340
+#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:282
+#: ../../godmode/reporting/reporting_builder.php:910
+msgid "Report name"
+msgstr "Nombre del informe"
+
+#: ../../operation/search_reports.php:44 ../../operation/search_reports.php:60
+#: ../../operation/reporting/custom_reporting.php:36
+#: ../../enterprise/godmode/reporting/reporting_builder.template.php:501
+#: ../../godmode/reporting/reporting_builder.php:912
+msgid "HTML"
+msgstr "HTML"
+
+#: ../../operation/search_reports.php:45 ../../operation/search_reports.php:61
+#: ../../operation/reporting/custom_reporting.php:37
+#: ../../enterprise/godmode/reporting/reporting_builder.template.php:502
+#: ../../godmode/reporting/reporting_builder.php:913
+msgid "XML"
+msgstr "XML"
+
+#: ../../operation/search_main.php:54 ../../enterprise/meta/agentsearch.php:122
+msgid "Agents found"
+msgstr "Agentes encontrados"
+
+#: ../../operation/search_main.php:55 ../../operation/search_main.php:57
+#: ../../operation/search_main.php:65 ../../operation/search_main.php:67
+#: ../../operation/search_main.php:69 ../../operation/search_main.php:71
+#: ../../operation/search_main.php:74
+#, php-format
+msgid "%s Found"
+msgstr "%s encontrados"
+
+#: ../../operation/search_main.php:56 ../../operation/tree.php:432
+#: ../../include/lib/Dashboard/Widgets/tree_view.php:617
+msgid "Modules found"
+msgstr "Módulos encontrados"
+
+#: ../../operation/search_main.php:64
+msgid "Users found"
+msgstr "Usuarios encontrados"
+
+#: ../../operation/search_main.php:66
+msgid "Graphs found"
+msgstr "Gráficos encontrados"
+
+#: ../../operation/search_main.php:68
+msgid "Reports found"
+msgstr "Informes encontrados"
+
+#: ../../operation/search_main.php:70 ../../operation/search_results.php:145
+#: ../../mobile/operation/visualmaps.php:184 ../../mobile/operation/home.php:66
+msgid "Visual consoles"
+msgstr "Consola visual"
+
+#: ../../operation/search_main.php:73 ../../operation/tree.php:127
+#: ../../operation/search_results.php:171
+#: ../../include/lib/Dashboard/Widgets/tree_view.php:333
+#: ../../include/functions_maps.php:42
+#: ../../include/functions_networkmap.php:1299
+#: ../../enterprise/operation/agentes/ver_agente.php:239
+#: ../../enterprise/include/functions_groups.php:33
+#: ../../enterprise/meta/advanced/policymanager.apply.php:198
+msgid "Policies"
+msgstr "Políticas"
+
+#: ../../operation/search_main.php:83
+#, php-format
+msgid "Show %s of %s. View all matches"
+msgstr "Mostrar %s de %s. Ver todas las coincidencias."
+
+#: ../../operation/tree.php:78 ../../operation/tree.php:146
+#: ../../operation/gis_maps/ajax.php:297 ../../operation/search_agents.php:44
+#: ../../operation/search_agents.php:50
+#: ../../operation/agentes/estado_agente.php:748
+#: ../../operation/agentes/estado_generalagente.php:196
+#: ../../include/ajax/heatmap.ajax.php:325
+#: ../../include/class/Diagnostics.class.php:748
+#: ../../include/lib/Dashboard/Widgets/tree_view.php:332
+#: ../../include/functions_events.php:4489
+#: ../../include/functions_reporting_html.php:1496
+#: ../../include/functions_reporting_html.php:3339
+#: ../../enterprise/tools/ipam/ipam_network.php:398
+#: ../../enterprise/views/cluster/view.php:253
+#: ../../enterprise/operation/agentes/tag_view.php:602
+#: ../../enterprise/include/functions_reporting_csv.php:718
+#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:254
+#: ../../enterprise/include/class/AgentRepository.class.php:342
+#: ../../enterprise/include/class/AgentRepository.class.php:630
+#: ../../enterprise/include/class/AgentRepository.class.php:673
+#: ../../enterprise/include/class/DeploymentCenter.class.php:756
+#: ../../enterprise/include/class/DeploymentCenter.class.php:817
+#: ../../enterprise/include/class/DeploymentCenter.class.php:1289
+#: ../../enterprise/include/class/DeploymentCenter.class.php:1397
+#: ../../enterprise/meta/agentsearch.php:136
+#: ../../enterprise/godmode/modules/configure_local_component.php:177
+#: ../../enterprise/godmode/modules/local_components.php:561
+#: ../../enterprise/godmode/modules/local_components.php:586
+#: ../../enterprise/godmode/modules/local_components.php:622
+#: ../../enterprise/godmode/modules/manage_inventory_modules.php:274
+#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:103
+#: ../../mobile/operation/agents.php:94 ../../mobile/operation/agents.php:404
+#: ../../godmode/reporting/reporting_builder.item_editor.php:71
+#: ../../godmode/massive/massive_edit_agents.php:719
+#: ../../godmode/agentes/agent_manager.php:389
+#: ../../godmode/agentes/planned_downtime.editor.php:916
+#: ../../godmode/agentes/modificar_agente.php:649
+msgid "OS"
+msgstr "SO"
+
+#: ../../operation/tree.php:90 ../../operation/agentes/pandora_networkmap.php:710
+#: ../../include/lib/Dashboard/Widgets/top_n_events_by_group.php:301
+#: ../../include/lib/Dashboard/Widgets/top_n_events_by_module.php:301
+#: ../../include/lib/Dashboard/Widgets/system_group_status.php:295
+#: ../../include/lib/Dashboard/Widgets/groups_status.php:216
+#: ../../include/lib/Dashboard/Widgets/events_list.php:420
+#: ../../include/lib/Dashboard/Widgets/tree_view.php:328
+#: ../../include/lib/Dashboard/Widgets/tree_view.php:337
+#: ../../include/lib/Dashboard/Widgets/tree_view.php:359
+#: ../../include/functions_maps.php:46
+#: ../../include/functions_networkmap.php:1295
+#: ../../enterprise/godmode/setup/setup_auth.php:230
+#: ../../enterprise/godmode/setup/setup_auth.php:509
+#: ../../enterprise/godmode/setup/setup_auth.php:1306
+#: ../../enterprise/godmode/policies/policy_agents.php:566
+#: ../../enterprise/godmode/policies/policy_agents.php:1215
+#: ../../extensions/files_repo/files_repo_form.php:55
+#: ../../extensions/module_groups.php:311 ../../mobile/operation/home.php:57
+#: ../../mobile/operation/groups.php:77 ../../mobile/include/functions_web.php:27
+#: ../../godmode/reporting/visual_console_builder.wizard.php:362
+msgid "Groups"
+msgstr "Grupos"
+
+#: ../../operation/tree.php:102
+#: ../../include/lib/Dashboard/Widgets/tree_view.php:330
+#: ../../extensions/module_groups.php:422 ../../godmode/menu.php:90
+msgid "Module groups"
+msgstr "Grupos de módulos"
+
+#: ../../operation/tree.php:114 ../../operation/search_agents.php:55
+#: ../../operation/agentes/group_view.php:184
+#: ../../operation/agentes/group_view.php:217
+#: ../../operation/agentes/graphs.php:188
+#: ../../operation/agentes/exportdata.php:282
+#: ../../operation/agentes/estado_agente.php:760
+#: ../../operation/search_results.php:158 ../../include/functions_reports.php:733
+#: ../../include/functions_reports.php:737
+#: ../../include/functions_reports.php:741
+#: ../../include/functions_reports.php:745
+#: ../../include/functions_reports.php:749
+#: ../../include/functions_reports.php:753
+#: ../../include/functions_reports.php:757
+#: ../../include/functions_reports.php:761
+#: ../../include/functions_reports.php:765
+#: ../../include/class/AgentsAlerts.class.php:253
+#: ../../include/lib/Dashboard/Widgets/groups_status.php:385
+#: ../../include/lib/Dashboard/Widgets/groups_status.php:391
+#: ../../include/lib/Dashboard/Widgets/agent_module.php:448
+#: ../../include/lib/Dashboard/Widgets/tree_view.php:331
+#: ../../include/functions_html.php:1708
+#: ../../include/functions_reporting_html.php:1816
+#: ../../include/functions_reporting_html.php:5326
+#: ../../enterprise/operation/services/services.service_map.php:128
+#: ../../enterprise/operation/agentes/tag_view.php:606
+#: ../../enterprise/include/functions_reporting_pdf.php:861
+#: ../../enterprise/include/functions_policies.php:3720
+#: ../../enterprise/meta/include/functions_wizard_meta.php:409
+#: ../../enterprise/meta/include/functions_wizard_meta.php:1824
+#: ../../enterprise/meta/monitoring/group_view.php:155
+#: ../../enterprise/meta/monitoring/group_view.php:221
+#: ../../enterprise/meta/monitoring/wizard/wizard.php:292
+#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:447
+#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:715
+#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:794
+#: ../../enterprise/meta/monitoring/wizard/wizard.agent.php:65
+#: ../../enterprise/meta/advanced/servers.build_table.php:64
+#: ../../enterprise/meta/agentsearch.php:139
+#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:297
+#: ../../enterprise/godmode/reporting/reporting_builder.global.php:222
+#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:229
+#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:473
+#: ../../enterprise/godmode/massive/massive_edit_tags_policy.php:128
+#: ../../enterprise/godmode/massive/massive_add_service_elements.php:362
+#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:176
+#: ../../enterprise/godmode/massive/massive_create_services.php:965
+#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:111
+#: ../../enterprise/godmode/policies/policy_modules.php:458
+#: ../../enterprise/godmode/policies/policies.php:509
+#: ../../extensions/agents_modules.php:758 ../../mobile/operation/agent.php:327
+#: ../../mobile/operation/modules.php:236 ../../mobile/operation/home.php:88
+#: ../../mobile/operation/agents.php:96 ../../mobile/operation/agents.php:409
+#: ../../godmode/servers/servers.build_table.php:83
+#: ../../godmode/reporting/reporting_builder.list_items.php:210
+#: ../../godmode/reporting/reporting_builder.list_items.php:239
+#: ../../godmode/reporting/reporting_builder.item_editor.php:1800
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2021
+#: ../../godmode/reporting/visual_console_builder.wizard.php:432
+#: ../../godmode/massive/massive_delete_modules.php:463
+#: ../../godmode/massive/massive_copy_modules.php:199
+#: ../../godmode/massive/massive_edit_plugins.php:383
+#: ../../godmode/massive/massive_edit_modules.php:425
+#: ../../godmode/agentes/configurar_agente.php:405
+#: ../../godmode/agentes/configurar_agente.php:723
+#: ../../godmode/agentes/planned_downtime.editor.php:918
+#: ../../godmode/agentes/planned_downtime.editor.php:993
+#: ../../godmode/agentes/planned_downtime.list.php:85
+#: ../../godmode/agentes/planned_downtime.list.php:115
+#: ../../godmode/agentes/modificar_agente.php:817
+msgid "Modules"
+msgstr "Módulos"
+
+#: ../../operation/tree.php:138 ../../operation/menu.php:51
+#: ../../include/lib/Dashboard/Widgets/tree_view.php:173
+#: ../../include/lib/Dashboard/Widgets/tree_view.php:714
+#: ../../enterprise/operation/services/services.treeview_services.php:61
+#: ../../enterprise/operation/services/services.treeview_services.php:68
+#: ../../enterprise/meta/general/main_menu.php:188
+#: ../../enterprise/meta/general/main_header.php:97
+#: ../../godmode/groups/group_list.php:344
+msgid "Tree view"
+msgstr "Vista de árbol"
+
+#: ../../operation/tree.php:139
+#, php-format
+msgid "Sort the agents by %s"
+msgstr "Ordenar los agentes por %s"
+
+#: ../../operation/tree.php:142
+msgid "tags"
+msgstr "Etiquetas"
+
+#: ../../operation/tree.php:150
+msgid "groups"
+msgstr "Grupos"
+
+#: ../../operation/tree.php:154
+msgid "module groups"
+msgstr "Grupos de módulos"
+
+#: ../../operation/tree.php:158 ../../godmode/setup/license.php:136
+#: ../../godmode/setup/license.php:139 ../../godmode/setup/license.php:142
+#: ../../godmode/setup/license.php:145
+msgid "modules"
+msgstr "módulos"
+
+#: ../../operation/tree.php:163
+msgid "policies"
+msgstr "Políticas"
+
+#: ../../operation/tree.php:212 ../../operation/tree.php:269
+#: ../../operation/tree.php:486 ../../operation/netflow/nf_live_view.php:384
+#: ../../operation/agentes/status_monitor.php:492
+#: ../../operation/agentes/group_view.php:226
+#: ../../operation/agentes/group_view.php:231
+#: ../../operation/agentes/estado_monitores.php:523
+#: ../../operation/agentes/tactical.php:180
+#: ../../operation/agentes/estado_agente.php:273
+#: ../../include/lib/Dashboard/Widgets/system_group_status.php:311
+#: ../../include/lib/Dashboard/Widgets/tree_view.php:385
+#: ../../include/lib/Dashboard/Widgets/tree_view.php:418
+#: ../../include/lib/Dashboard/Widgets/tree_view.php:680
+#: ../../include/functions_events.php:3335 ../../include/functions_graph.php:3543
+#: ../../include/functions_graph.php:3544 ../../include/functions_graph.php:5123
+#: ../../include/rest-api/models/VisualConsole/Items/Group.php:430
+#: ../../include/functions.php:1031 ../../include/functions.php:1271
+#: ../../include/functions.php:1278 ../../include/functions.php:1311
+#: ../../include/functions_reporting_html.php:2292
+#: ../../enterprise/operation/services/services.treeview_services.php:286
+#: ../../enterprise/operation/agentes/tag_view.php:131
+#: ../../enterprise/include/functions_services.php:1428
+#: ../../enterprise/meta/monitoring/custom_fields_csv.php:117
+#: ../../enterprise/meta/monitoring/custom_fields_csv.php:140
+#: ../../enterprise/meta/monitoring/group_view.php:238
+#: ../../enterprise/meta/monitoring/group_view.php:244
+#: ../../enterprise/meta/monitoring/custom_fields_view.php:179
+#: ../../enterprise/meta/monitoring/tactical.php:241
+#: ../../enterprise/godmode/services/services.elements.php:390
+#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:119
+#: ../../mobile/operation/modules.php:69 ../../mobile/operation/agents.php:58
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3601
+#: ../../godmode/netflow/nf_edit_form.php:236
+#: ../../godmode/massive/massive_delete_modules.php:418
+#: ../../godmode/massive/massive_delete_modules.php:439
+#: ../../godmode/massive/massive_copy_modules.php:115
+#: ../../godmode/massive/massive_copy_modules.php:275
+#: ../../godmode/massive/massive_edit_agents.php:531
+#: ../../godmode/massive/massive_delete_agents.php:209
+#: ../../godmode/massive/massive_edit_modules.php:385
+#: ../../godmode/massive/massive_edit_modules.php:471
+#: ../../godmode/groups/group_list.php:1074
+msgid "Normal"
+msgstr "Normal"
+
+#: ../../operation/tree.php:213 ../../operation/tree.php:270
+#: ../../operation/tree.php:471 ../../operation/gis_maps/render_view.php:165
+#: ../../operation/netflow/nf_live_view.php:451
+#: ../../operation/agentes/status_monitor.php:493
+#: ../../operation/agentes/group_view.php:227
+#: ../../operation/agentes/group_view.php:232
+#: ../../operation/agentes/estado_monitores.php:525
+#: ../../operation/agentes/tactical.php:179
+#: ../../operation/agentes/estado_agente.php:274
+#: ../../include/class/AgentWizard.class.php:1300
+#: ../../include/class/AgentWizard.class.php:3989
+#: ../../include/class/Diagnostics.class.php:1809
+#: ../../include/lib/Dashboard/Widgets/system_group_status.php:312
+#: ../../include/lib/Dashboard/Widgets/tree_view.php:386
+#: ../../include/lib/Dashboard/Widgets/tree_view.php:419
+#: ../../include/lib/Dashboard/Widgets/tree_view.php:665
+#: ../../include/functions_events.php:3339 ../../include/functions_graph.php:3553
+#: ../../include/functions_graph.php:3554 ../../include/functions_graph.php:5127
+#: ../../include/functions_ui.php:298 ../../include/functions_ui.php:2604
+#: ../../include/rest-api/models/VisualConsole/Items/Group.php:423
+#: ../../include/functions.php:1035 ../../include/functions.php:1273
+#: ../../include/functions.php:1276 ../../include/functions.php:1315
+#: ../../include/functions_reporting_html.php:2294
+#: ../../update_manager_client/views/offline.php:81 ../../index.php:1175
+#: ../../enterprise/views/ncm/firmwares/edit.php:149
+#: ../../enterprise/operation/services/services.treeview_services.php:271
+#: ../../enterprise/operation/services/services.service.php:123
+#: ../../enterprise/operation/services/services.service.php:174
+#: ../../enterprise/operation/services/services.list.php:238
+#: ../../enterprise/operation/services/services.list.php:505
+#: ../../enterprise/operation/services/services.list.php:564
+#: ../../enterprise/operation/services/services.service_map.php:115
+#: ../../enterprise/operation/services/services.table_services.php:160
+#: ../../enterprise/operation/agentes/tag_view.php:132
+#: ../../enterprise/operation/agentes/transactional_map.php:333
+#: ../../enterprise/include/class/CommandCenter.class.php:564
+#: ../../enterprise/include/class/CommandCenter.class.php:603
+#: ../../enterprise/include/functions_services.php:1448
+#: ../../enterprise/include/functions_login.php:23
+#: ../../enterprise/include/functions_reporting.php:4837
+#: ../../enterprise/meta/include/functions_wizard_meta.php:980
+#: ../../enterprise/meta/include/functions_wizard_meta.php:1065
+#: ../../enterprise/meta/include/functions_wizard_meta.php:1268
+#: ../../enterprise/meta/include/functions_wizard_meta.php:1288
+#: ../../enterprise/meta/include/functions_wizard_meta.php:1505
+#: ../../enterprise/meta/include/functions_wizard_meta.php:1590
+#: ../../enterprise/meta/include/functions_wizard_meta.php:1710
+#: ../../enterprise/meta/include/functions_wizard_meta.php:1730
+#: ../../enterprise/meta/monitoring/custom_fields_csv.php:127
+#: ../../enterprise/meta/monitoring/group_view.php:239
+#: ../../enterprise/meta/monitoring/group_view.php:245
+#: ../../enterprise/meta/monitoring/custom_fields_view.php:180
+#: ../../enterprise/meta/monitoring/tactical.php:240
+#: ../../enterprise/meta/advanced/metasetup.consoles.php:439
+#: ../../enterprise/meta/index.php:862 ../../enterprise/meta/index.php:931
+#: ../../enterprise/godmode/setup/setup_history.php:583
+#: ../../enterprise/godmode/services/services.elements.php:372
+#: ../../enterprise/godmode/services/services.service.php:699
+#: ../../enterprise/godmode/services/services.service.php:930
+#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:120
+#: ../../enterprise/godmode/massive/massive_create_services.php:747
+#: ../../extensions/dbmanager.php:129 ../../mobile/operation/modules.php:70
+#: ../../mobile/operation/agents.php:59 ../../godmode/setup/setup_netflow.php:71
+#: ../../godmode/modules/manage_network_components_form_wizard.php:383
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3602
+#: ../../godmode/massive/massive_delete_modules.php:419
+#: ../../godmode/massive/massive_delete_modules.php:440
+#: ../../godmode/massive/massive_copy_modules.php:116
+#: ../../godmode/massive/massive_copy_modules.php:276
+#: ../../godmode/massive/massive_edit_agents.php:532
+#: ../../godmode/massive/massive_edit_agents.php:981
+#: ../../godmode/massive/massive_delete_agents.php:210
+#: ../../godmode/massive/massive_edit_modules.php:386
+#: ../../godmode/massive/massive_edit_modules.php:472
+#: ../../godmode/users/configure_user.php:1674
+#: ../../godmode/groups/group_list.php:1059
+msgid "Warning"
+msgstr "Advertencia"
+
+#: ../../operation/tree.php:214 ../../operation/tree.php:271
+#: ../../operation/tree.php:466 ../../operation/gis_maps/render_view.php:164
+#: ../../operation/agentes/status_monitor.php:494
+#: ../../operation/agentes/group_view.php:228
+#: ../../operation/agentes/group_view.php:233
+#: ../../operation/agentes/estado_monitores.php:521
+#: ../../operation/agentes/tactical.php:178
+#: ../../operation/agentes/estado_agente.php:275
+#: ../../include/class/AgentWizard.class.php:1303
+#: ../../include/class/AgentWizard.class.php:4003
+#: ../../include/lib/Dashboard/Widgets/system_group_status.php:313
+#: ../../include/lib/Dashboard/Widgets/tree_view.php:387
+#: ../../include/lib/Dashboard/Widgets/tree_view.php:420
+#: ../../include/lib/Dashboard/Widgets/tree_view.php:660
+#: ../../include/functions_events.php:3343 ../../include/functions_graph.php:3563
+#: ../../include/functions_graph.php:3564 ../../include/functions_graph.php:5131
+#: ../../include/functions_ui.php:2604
+#: ../../include/rest-api/models/VisualConsole/Items/Group.php:416
+#: ../../include/functions.php:1039 ../../include/functions.php:1275
+#: ../../include/functions.php:1276 ../../include/functions.php:1278
+#: ../../include/functions.php:1319
+#: ../../include/functions_reporting_html.php:859
+#: ../../include/functions_reporting_html.php:2293
+#: ../../include/functions_reporting_html.php:4556
+#: ../../enterprise/operation/services/services.treeview_services.php:266
+#: ../../enterprise/operation/services/services.service.php:122
+#: ../../enterprise/operation/services/services.service.php:168
+#: ../../enterprise/operation/services/services.list.php:239
+#: ../../enterprise/operation/services/services.list.php:504
+#: ../../enterprise/operation/services/services.list.php:558
+#: ../../enterprise/operation/services/services.service_map.php:114
+#: ../../enterprise/operation/services/services.table_services.php:161
+#: ../../enterprise/operation/agentes/tag_view.php:133
+#: ../../enterprise/include/functions_services.php:1440
+#: ../../enterprise/include/functions_reporting.php:3190
+#: ../../enterprise/include/functions_reporting.php:4191
+#: ../../enterprise/include/functions_reporting.php:4842
+#: ../../enterprise/include/functions_reporting.php:6198
+#: ../../enterprise/meta/include/functions_wizard_meta.php:989
+#: ../../enterprise/meta/include/functions_wizard_meta.php:1074
+#: ../../enterprise/meta/include/functions_wizard_meta.php:1277
+#: ../../enterprise/meta/include/functions_wizard_meta.php:1301
+#: ../../enterprise/meta/include/functions_wizard_meta.php:1514
+#: ../../enterprise/meta/include/functions_wizard_meta.php:1599
+#: ../../enterprise/meta/include/functions_wizard_meta.php:1719
+#: ../../enterprise/meta/include/functions_wizard_meta.php:1737
+#: ../../enterprise/meta/monitoring/custom_fields_csv.php:122
+#: ../../enterprise/meta/monitoring/group_view.php:240
+#: ../../enterprise/meta/monitoring/group_view.php:246
+#: ../../enterprise/meta/monitoring/custom_fields_view.php:181
+#: ../../enterprise/meta/monitoring/tactical.php:239
+#: ../../enterprise/godmode/services/services.elements.php:363
+#: ../../enterprise/godmode/services/services.service.php:685
+#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:121
+#: ../../enterprise/godmode/massive/massive_create_services.php:733
+#: ../../extensions/module_groups.php:50 ../../mobile/operation/modules.php:71
+#: ../../mobile/operation/agents.php:57
+#: ../../godmode/modules/manage_network_components_form_wizard.php:411
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3603
+#: ../../godmode/massive/massive_delete_modules.php:420
+#: ../../godmode/massive/massive_delete_modules.php:441
+#: ../../godmode/massive/massive_copy_modules.php:117
+#: ../../godmode/massive/massive_copy_modules.php:277
+#: ../../godmode/massive/massive_edit_agents.php:533
+#: ../../godmode/massive/massive_delete_agents.php:211
+#: ../../godmode/massive/massive_edit_modules.php:387
+#: ../../godmode/massive/massive_edit_modules.php:473
+#: ../../godmode/groups/group_list.php:1054
+msgid "Critical"
+msgstr "Crítico"
+
+#: ../../operation/tree.php:215 ../../operation/tree.php:272
+#: ../../operation/tree.php:476 ../../operation/events/events.php:2245
+#: ../../operation/agentes/status_monitor.php:495
+#: ../../operation/agentes/group_view.php:224
+#: ../../operation/agentes/group_view.php:229
+#: ../../operation/agentes/estado_monitores.php:526
+#: ../../operation/agentes/tactical.php:181
+#: ../../operation/agentes/estado_agente.php:276
+#: ../../operation/agentes/pandora_networkmap.view.php:1728
+#: ../../include/functions_reports.php:557 ../../include/ajax/module.php:1071
+#: ../../include/lib/Dashboard/Widgets/tree_view.php:388
+#: ../../include/lib/Dashboard/Widgets/tree_view.php:421
+#: ../../include/lib/Dashboard/Widgets/tree_view.php:670
+#: ../../include/functions_events.php:3243 ../../include/functions_alerts.php:699
+#: ../../include/functions_netflow.php:1865
+#: ../../include/functions_filemanager.php:668
+#: ../../include/functions_reporting.php:6101
+#: ../../include/functions_visual_map.php:2455
+#: ../../include/functions_visual_map.php:2483
+#: ../../include/functions_visual_map.php:2501
+#: ../../include/functions_visual_map.php:2519
+#: ../../include/graphs/functions_flot.php:305
+#: ../../include/functions_maps.php:54 ../../include/functions_ui.php:549
+#: ../../include/functions_ui.php:550
+#: ../../include/rest-api/models/VisualConsole/Items/Group.php:437
+#: ../../include/functions.php:1225 ../../include/functions.php:4100
+#: ../../include/functions_reporting_html.php:2282
+#: ../../include/functions_reporting_html.php:2295
+#: ../../include/functions_reporting_html.php:3246
+#: ../../include/functions_reporting_html.php:3654
+#: ../../enterprise/views/ncm/agent/details.php:312
+#: ../../enterprise/operation/services/services.treeview_services.php:276
+#: ../../enterprise/operation/services/services.service.php:180
+#: ../../enterprise/operation/services/services.list.php:240
+#: ../../enterprise/operation/services/services.list.php:571
+#: ../../enterprise/operation/services/services.service_map.php:117
+#: ../../enterprise/operation/services/services.table_services.php:162
+#: ../../enterprise/operation/agentes/tag_view.php:134
+#: ../../enterprise/operation/agentes/transactional_map.php:339
+#: ../../enterprise/operation/agentes/transactional_map.php:385
+#: ../../enterprise/include/functions_cron.php:585
+#: ../../enterprise/include/class/DatabaseHA.class.php:223
+#: ../../enterprise/include/lib/ClusterViewer/ClusterManager.php:582
+#: ../../enterprise/include/lib/NetworkManager.php:103
+#: ../../enterprise/include/functions_HA_cluster.php:70
+#: ../../enterprise/include/functions_reporting.php:1889
+#: ../../enterprise/include/functions_reporting.php:2939
+#: ../../enterprise/include/functions_reporting.php:3927
+#: ../../enterprise/include/functions_reporting.php:4847
+#: ../../enterprise/include/functions_reporting.php:6158
+#: ../../enterprise/include/functions_reporting_pdf.php:637
+#: ../../enterprise/meta/monitoring/custom_fields_csv.php:131
+#: ../../enterprise/meta/monitoring/group_view.php:236
+#: ../../enterprise/meta/monitoring/group_view.php:242
+#: ../../enterprise/meta/monitoring/custom_fields_view.php:182
+#: ../../enterprise/meta/monitoring/tactical.php:242
+#: ../../enterprise/godmode/services/services.elements.php:381
+#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:122
+#: ../../extensions/module_groups.php:52 ../../mobile/operation/modules.php:72
+#: ../../mobile/operation/agents.php:60
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3604
+#: ../../godmode/massive/massive_delete_modules.php:421
+#: ../../godmode/massive/massive_delete_modules.php:442
+#: ../../godmode/massive/massive_copy_modules.php:118
+#: ../../godmode/massive/massive_copy_modules.php:278
+#: ../../godmode/massive/massive_edit_agents.php:534
+#: ../../godmode/massive/massive_delete_agents.php:212
+#: ../../godmode/massive/massive_edit_modules.php:388
+#: ../../godmode/massive/massive_edit_modules.php:474
+#: ../../godmode/alerts/alert_list.builder.php:290
+#: ../../godmode/groups/group_list.php:1064
+msgid "Unknown"
+msgstr "Desconocido"
+
+#: ../../operation/tree.php:216 ../../operation/tree.php:273
+#: ../../operation/tree.php:481 ../../operation/agentes/status_monitor.php:498
+#: ../../operation/agentes/group_view.php:225
+#: ../../operation/agentes/group_view.php:230
+#: ../../operation/agentes/tactical.php:182
+#: ../../operation/agentes/estado_agente.php:278
+#: ../../include/lib/Dashboard/Widgets/tree_view.php:389
+#: ../../include/lib/Dashboard/Widgets/tree_view.php:422
+#: ../../include/lib/Dashboard/Widgets/tree_view.php:675
+#: ../../include/functions_reporting_html.php:652
+#: ../../include/functions_reporting_html.php:2296
+#: ../../include/functions_reporting_html.php:4364
+#: ../../enterprise/operation/services/services.treeview_services.php:281
+#: ../../enterprise/operation/agentes/tag_view.php:137
+#: ../../enterprise/operation/agentes/transactional_map.php:345
+#: ../../enterprise/meta/monitoring/group_view.php:237
+#: ../../enterprise/meta/monitoring/group_view.php:243
+#: ../../enterprise/meta/monitoring/custom_fields_view.php:185
+#: ../../enterprise/meta/monitoring/tactical.php:243
+#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:124
+#: ../../mobile/operation/modules.php:75
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3606
+#: ../../godmode/massive/massive_delete_modules.php:423
+#: ../../godmode/massive/massive_delete_modules.php:444
+#: ../../godmode/massive/massive_copy_modules.php:120
+#: ../../godmode/massive/massive_copy_modules.php:280
+#: ../../godmode/massive/massive_edit_agents.php:536
+#: ../../godmode/massive/massive_delete_agents.php:214
+#: ../../godmode/massive/massive_edit_modules.php:390
+#: ../../godmode/massive/massive_edit_modules.php:476
+#: ../../godmode/groups/group_list.php:1069
+msgid "Not init"
+msgstr "No iniciados"
+
+#: ../../operation/tree.php:219
+msgid "Search group"
+msgstr "Buscar grupo"
+
+#: ../../operation/tree.php:223 ../../operation/tree.php:279
+msgid "Show not init modules"
+msgstr "Mostrar módulos no iniciados"
+
+#: ../../operation/tree.php:232
+msgid "Search agent"
+msgstr "Buscar agente"
+
+#: ../../operation/tree.php:235
+msgid "Show not init agents"
+msgstr "Mostrar agentes no iniciados"
+
+#: ../../operation/tree.php:243
+msgid "Show full hirearchy"
+msgstr "Mostrar jerarquía completa"
+
+#: ../../operation/tree.php:246
+#: ../../enterprise/include/functions_reporting_csv.php:2348
+#: ../../enterprise/godmode/servers/HA_cluster.php:163
+msgid "Agent status"
+msgstr "Estado de agente"
+
+#: ../../operation/tree.php:254
+msgid "Show only disabled"
+msgstr "Mostrar solo deshabilitados"
+
+#: ../../operation/tree.php:260 ../../operation/netflow/nf_live_view.php:383
+#: ../../operation/agentes/graphs.php:265
+#: ../../operation/agentes/estado_monitores.php:594
+#: ../../operation/agentes/alerts_status.functions.php:137
+#: ../../operation/agentes/alerts_status.functions.php:146
+#: ../../operation/incidents/list_integriaims_incidents.php:435
+#: ../../operation/incidents/list_integriaims_incidents.php:439
+#: ../../include/class/ModuleTemplates.class.php:765
+#: ../../include/functions_ui.php:3371 ../../include/functions_ui.php:3392
+#: ../../include/functions_ui.php:3403
+#: ../../enterprise/operation/services/services.treeview_services.php:156
+#: ../../enterprise/operation/services/services.treeview_services.php:160
+#: ../../enterprise/operation/services/services.list.php:454
+#: ../../enterprise/operation/services/services.list.php:459
+#: ../../enterprise/operation/services/services.table_services.php:363
+#: ../../enterprise/operation/services/services.table_services.php:368
+#: ../../enterprise/include/class/SAPView.class.php:409
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2824
+#: ../../enterprise/include/functions_ipam.php:1779
+#: ../../enterprise/meta/advanced/policymanager.queue.php:235
+#: ../../enterprise/godmode/setup/setup_skins.php:96
+#: ../../enterprise/godmode/setup/setup_acl.php:574
+#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:209
+#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:269
+#: ../../enterprise/godmode/agentes/manage_config_remote.php:148
+#: ../../enterprise/godmode/policies/policy_queue.php:626
+#: ../../enterprise/godmode/policies/policy_linking.php:129
+#: ../../enterprise/godmode/policies/policies.php:337
+#: ../../godmode/modules/manage_network_templates_form.php:277
+#: ../../godmode/modules/manage_network_templates_form.php:337
+#: ../../godmode/reporting/reporting_builder.list_items.php:217
+#: ../../godmode/reporting/reporting_builder.list_items.php:261
+#: ../../godmode/reporting/reporting_builder.item_editor.php:1046
+#: ../../godmode/snmpconsole/snmp_alert.php:1088
+#: ../../godmode/snmpconsole/snmp_filters.php:203
+#: ../../godmode/snmpconsole/snmp_filters.php:290 ../../godmode/tag/tag.php:233
+#: ../../godmode/netflow/nf_item_list.php:174
+#: ../../godmode/agentes/module_manager.php:83
+msgid "Filter"
+msgstr "Filtro"
+
+#: ../../operation/tree.php:276
+msgid "Search module"
+msgstr "Buscar módulo"
+
+#: ../../operation/tree.php:285
+#: ../../include/lib/Dashboard/Widgets/module_status.php:173
+#: ../../include/lib/Dashboard/Widgets/module_status.php:538
+#: ../../include/functions_events.php:211 ../../include/functions_events.php:6780
+#: ../../include/functions_reporting_html.php:4899
+#: ../../enterprise/meta/include/functions_events_meta.php:138
+msgid "Module status"
+msgstr "Estado del módulo"
+
+#: ../../operation/tree.php:304 ../../operation/events/events_list.php:1102
+#: ../../operation/agentes/alerts_status.php:484
+#: ../../enterprise/meta/monitoring/custom_fields_view.php:334
+#: ../../enterprise/meta/advanced/policymanager.queue.php:246
+#: ../../enterprise/meta/advanced/collections.php:192
+#: ../../enterprise/meta/agentsearch.php:113
+#: ../../enterprise/godmode/modules/local_components.php:584
+#: ../../godmode/modules/manage_network_components.php:690
+#: ../../godmode/reporting/reporting_builder.list_items.php:273
+#: ../../godmode/tag/tag.php:246 ../../godmode/tag/tag.php:412
+#: ../../godmode/alerts/alert_actions.php:315
+#: ../../godmode/alerts/alert_templates.php:337
+#: ../../godmode/users/user_list.php:444
+msgid "Show Options"
+msgstr "Mostrar opciones"
+
+#: ../../operation/tree.php:308
+msgid "Tree search"
+msgstr "Búsqueda de árbol"
+
+#: ../../operation/tree.php:415 ../../operation/tree.php:446
+#: ../../operation/network/network_report.php:313
+#: ../../include/class/Heatmap.class.php:684
+#: ../../include/lib/Dashboard/Widgets/tree_view.php:645
+#: ../../enterprise/tools/ipam/ipam_supernet_treeview.php:93
+#: ../../enterprise/operation/services/services.treeview_services.php:246
+#: ../../enterprise/operation/agentes/tag_view.php:578
+#: ../../enterprise/include/functions_inventory.php:271
+#: ../../godmode/groups/group_list.php:1034
+msgid "No data found"
+msgstr "No se encontraron datos"
+
+#: ../../operation/tree.php:420
+#: ../../include/lib/Dashboard/Widgets/tree_view.php:601
+#: ../../enterprise/meta/agentsearch.php:315
+msgid "Policies found"
+msgstr "Políticas encontradas"
+
+#: ../../operation/tree.php:423
+#: ../../include/lib/Dashboard/Widgets/tree_view.php:605
+msgid "Operating systems found"
+msgstr "Sistemas operativos encontrados"
+
+#: ../../operation/tree.php:426
+#: ../../include/lib/Dashboard/Widgets/tree_view.php:609
+msgid "Tags found"
+msgstr "Etiquetas encontradas"
+
+#: ../../operation/tree.php:429
+#: ../../include/lib/Dashboard/Widgets/tree_view.php:613
+msgid "Module Groups found"
+msgstr "Grupos de módulos encontrados"
+
+#: ../../operation/tree.php:436
+#: ../../include/lib/Dashboard/Widgets/tree_view.php:622
+msgid "Groups found"
+msgstr "Grupos encontrados"
+
+#: ../../operation/tree.php:454 ../../include/class/Diagnostics.class.php:549
+#: ../../include/lib/Dashboard/Widgets/tree_view.php:648
+#: ../../include/functions_reporting.php:11490
+#: ../../include/functions_reporting_html.php:5560
+#: ../../enterprise/operation/services/services.treeview_services.php:254
+#: ../../enterprise/include/functions_reporting_csv.php:983
+#: ../../mobile/operation/groups.php:147 ../../godmode/db/db_main.php:102
+#: ../../godmode/groups/group_list.php:1042
+msgid "Total agents"
+msgstr "Agentes totales"
+
+#: ../../operation/tree.php:455 ../../include/class/Diagnostics.class.php:553
+#: ../../include/lib/Dashboard/Widgets/tree_view.php:649
+#: ../../enterprise/operation/services/services.treeview_services.php:255
+#: ../../enterprise/include/functions_reporting_csv.php:983
+#: ../../godmode/module_library/module_library_view.php:159
+#: ../../godmode/groups/group_list.php:1043
+msgid "Total modules"
+msgstr "Módulos totales"
+
+#: ../../operation/tree.php:456 ../../operation/agentes/group_view.php:223
+#: ../../include/lib/Dashboard/Widgets/tree_view.php:650
+#: ../../include/functions_alerts.php:3360
+#: ../../include/functions_reporting_html.php:2281
+#: ../../include/functions_reporting_html.php:2291
+#: ../../enterprise/operation/services/services.treeview_services.php:256
+#: ../../enterprise/operation/agentes/agent_inventory.php:240
+#: ../../enterprise/include/functions_inventory.php:481
+#: ../../enterprise/include/functions_inventory.php:624
+#: ../../enterprise/meta/monitoring/group_view.php:235
+#: ../../godmode/groups/group_list.php:1044
+msgid "Total"
+msgstr "Total"
+
+#: ../../operation/tree.php:459 ../../operation/tree.php:460
+#: ../../operation/tree.php:461
+#: ../../include/lib/Dashboard/Widgets/tree_view.php:653
+#: ../../include/lib/Dashboard/Widgets/tree_view.php:654
+#: ../../include/lib/Dashboard/Widgets/tree_view.php:655
+#: ../../include/functions_graph.php:2631
+#: ../../include/functions_reporting.php:11351
+#: ../../include/functions_reporting.php:11374
+#: ../../enterprise/operation/services/services.treeview_services.php:259
+#: ../../enterprise/operation/services/services.treeview_services.php:260
+#: ../../enterprise/operation/services/services.treeview_services.php:261
+#: ../../enterprise/include/functions_reporting_csv.php:983
+#: ../../godmode/groups/group_list.php:1047
+#: ../../godmode/groups/group_list.php:1048
+#: ../../godmode/groups/group_list.php:1049
+msgid "Fired alerts"
+msgstr "Alertas disparadas"
+
+#: ../../operation/tree.php:464
+#: ../../include/lib/Dashboard/Widgets/tree_view.php:658
+#: ../../enterprise/operation/services/services.treeview_services.php:264
+#: ../../enterprise/meta/monitoring/custom_fields_view.php:533
+#: ../../godmode/groups/group_list.php:1052
+msgid "Critical agents"
+msgstr "Agentes críticos"
+
+#: ../../operation/tree.php:465
+#: ../../include/lib/Dashboard/Widgets/tree_view.php:659
+#: ../../enterprise/operation/services/services.treeview_services.php:265
+#: ../../enterprise/include/functions_reporting_csv.php:983
+#: ../../enterprise/meta/monitoring/custom_fields_view.php:602
+#: ../../mobile/operation/groups.php:171 ../../godmode/groups/group_list.php:1053
+msgid "Critical modules"
+msgstr "Módulos críticos"
+
+#: ../../operation/tree.php:469
+#: ../../include/lib/Dashboard/Widgets/tree_view.php:663
+#: ../../enterprise/operation/services/services.treeview_services.php:269
+#: ../../enterprise/meta/monitoring/custom_fields_view.php:543
+#: ../../godmode/groups/group_list.php:1057
+msgid "Warning agents"
+msgstr "Agentes en estado de advertencia"
+
+#: ../../operation/tree.php:470
+#: ../../include/lib/Dashboard/Widgets/tree_view.php:664
+#: ../../enterprise/operation/services/services.treeview_services.php:270
+#: ../../enterprise/include/functions_reporting_csv.php:983
+#: ../../enterprise/meta/monitoring/custom_fields_view.php:613
+#: ../../mobile/operation/groups.php:168 ../../godmode/groups/group_list.php:1058
+msgid "Warning modules"
+msgstr "Módulos de advertencia"
+
+#: ../../operation/tree.php:474
+#: ../../include/lib/Dashboard/Widgets/tree_view.php:668
+#: ../../enterprise/operation/services/services.treeview_services.php:274
+#: ../../enterprise/meta/monitoring/custom_fields_view.php:563
+#: ../../godmode/groups/group_list.php:1062
+msgid "Unknown agents"
+msgstr "Agentes en desconocido"
+
+#: ../../operation/tree.php:475
+#: ../../include/lib/Dashboard/Widgets/tree_view.php:669
+#: ../../enterprise/operation/services/services.treeview_services.php:275
+#: ../../enterprise/include/functions_reporting_csv.php:983
+#: ../../enterprise/meta/monitoring/custom_fields_view.php:635
+#: ../../mobile/operation/groups.php:159 ../../godmode/groups/group_list.php:1063
+msgid "Unknown modules"
+msgstr "Módulos desconocidos"
+
+#: ../../operation/tree.php:479
+#: ../../include/lib/Dashboard/Widgets/tree_view.php:673
+#: ../../enterprise/operation/services/services.treeview_services.php:279
+#: ../../enterprise/meta/monitoring/custom_fields_view.php:573
+#: ../../godmode/groups/group_list.php:1067
+msgid "Not init agents"
+msgstr "Agentes no iniciados"
+
+#: ../../operation/tree.php:480
+#: ../../include/lib/Dashboard/Widgets/tree_view.php:674
+#: ../../enterprise/operation/services/services.treeview_services.php:280
+#: ../../enterprise/include/functions_reporting_csv.php:983
+#: ../../enterprise/meta/monitoring/custom_fields_view.php:646
+#: ../../mobile/operation/groups.php:162 ../../godmode/groups/group_list.php:1068
+msgid "Not init modules"
+msgstr "Módulos no iniciados"
+
+#: ../../operation/tree.php:484
+#: ../../include/lib/Dashboard/Widgets/tree_view.php:678
+#: ../../enterprise/operation/services/services.treeview_services.php:284
+#: ../../enterprise/meta/monitoring/custom_fields_view.php:553
+#: ../../godmode/groups/group_list.php:1072
+msgid "Normal agents"
+msgstr "Agentes en normal"
+
+#: ../../operation/tree.php:485
+#: ../../include/lib/Dashboard/Widgets/tree_view.php:679
+#: ../../enterprise/operation/services/services.treeview_services.php:285
+#: ../../enterprise/include/functions_reporting_csv.php:983
+#: ../../enterprise/meta/monitoring/custom_fields_view.php:624
+#: ../../mobile/operation/groups.php:165 ../../godmode/groups/group_list.php:1073
+msgid "Normal modules"
+msgstr "Módulos normales"
+
+#: ../../operation/tree.php:539 ../../operation/agentes/status_monitor.php:2056
+#: ../../operation/agentes/estado_monitores.php:421
+#: ../../enterprise/operation/services/services.treeview_services.php:341
+msgid "Module: "
+msgstr "Módulo: "
+
+#: ../../operation/tree.php:573 ../../operation/reporting/graph_viewer.php:423
+#: ../../operation/reporting/reporting_viewer.php:367
+#: ../../operation/reporting/reporting_viewer.php:387
+#: ../../operation/network/network_report.php:336
+#: ../../operation/network/network_usage_map.php:184
+#: ../../operation/events/events.php:2806
+#: ../../operation/events/events_list.php:2031
+#: ../../operation/netflow/nf_live_view.php:740
+#: ../../operation/agentes/estado_monitores.php:455
+#: ../../operation/agentes/stat_win.php:617
+#: ../../operation/agentes/datos_agente.php:312
+#: ../../operation/agentes/interface_traffic_graph_win.php:434
+#: ../../include/lib/Dashboard/Widgets/tree_view.php:683
+#: ../../enterprise/operation/log/log_viewer.php:981
+#: ../../enterprise/operation/log/log_viewer.php:993
+#: ../../enterprise/operation/services/services.treeview_services.php:375
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:4311
+#: ../../enterprise/meta/advanced/cron_main.php:530
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3962
+#: ../../enterprise/godmode/reporting/reporting_builder.template.php:1169
+#: ../../enterprise/godmode/wizards/consoletask_js.php:41
+#: ../../extensions/insert_data.php:224 ../../godmode/setup/news.php:322
+#: ../../godmode/reporting/reporting_builder.item_editor.php:4832
+#: ../../godmode/agentes/planned_downtime.editor.php:1488
+#: ../../godmode/alerts/configure_alert_template.php:1456
+#: ../../godmode/alerts/configure_alert_template.php:1540
+msgid "Choose time"
+msgstr "Seleccionar hora"
+
+#: ../../operation/tree.php:574 ../../operation/reporting/graph_viewer.php:424
+#: ../../operation/reporting/reporting_viewer.php:368
+#: ../../operation/reporting/reporting_viewer.php:388
+#: ../../operation/network/network_report.php:337
+#: ../../operation/network/network_usage_map.php:185
+#: ../../operation/events/events.php:2807
+#: ../../operation/events/events_list.php:2032
+#: ../../operation/netflow/nf_live_view.php:741
+#: ../../operation/agentes/estado_monitores.php:456
+#: ../../operation/agentes/stat_win.php:618
+#: ../../operation/agentes/datos_agente.php:313
+#: ../../operation/agentes/interface_traffic_graph_win.php:435
+#: ../../include/lib/Dashboard/Widgets/tree_view.php:684
+#: ../../enterprise/operation/log/log_viewer.php:982
+#: ../../enterprise/operation/log/log_viewer.php:994
+#: ../../enterprise/operation/services/services.treeview_services.php:376
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3986
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:4312
+#: ../../enterprise/include/lib/Metaconsole/Node.php:591
+#: ../../enterprise/meta/advanced/cron_main.php:531
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3963
+#: ../../enterprise/godmode/reporting/reporting_builder.template.php:1170
+#: ../../enterprise/godmode/wizards/consoletask_js.php:42
+#: ../../extensions/insert_data.php:225 ../../godmode/setup/news.php:323
+#: ../../godmode/reporting/reporting_builder.item_editor.php:4833
+#: ../../godmode/agentes/planned_downtime.editor.php:1489
+#: ../../godmode/alerts/configure_alert_template.php:1457
+#: ../../godmode/alerts/configure_alert_template.php:1541
+msgid "Time"
+msgstr "Hora"
+
+#: ../../operation/tree.php:575 ../../operation/reporting/graph_viewer.php:425
+#: ../../operation/reporting/reporting_viewer.php:369
+#: ../../operation/reporting/reporting_viewer.php:389
+#: ../../operation/network/network_report.php:338
+#: ../../operation/network/network_usage_map.php:186
+#: ../../operation/events/events.php:2808
+#: ../../operation/events/events_list.php:2033
+#: ../../operation/netflow/nf_live_view.php:742
+#: ../../operation/agentes/estado_monitores.php:457
+#: ../../operation/agentes/stat_win.php:619
+#: ../../operation/agentes/datos_agente.php:314
+#: ../../operation/agentes/interface_traffic_graph_win.php:436
+#: ../../include/lib/Dashboard/Widgets/tree_view.php:685
+#: ../../include/functions_html.php:2271
+#: ../../enterprise/operation/log/log_viewer.php:983
+#: ../../enterprise/operation/log/log_viewer.php:995
+#: ../../enterprise/operation/services/services.treeview_services.php:377
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3987
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:4313
+#: ../../enterprise/meta/advanced/cron_main.php:532
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3964
+#: ../../enterprise/godmode/reporting/reporting_builder.template.php:1171
+#: ../../enterprise/godmode/wizards/consoletask_js.php:43
+#: ../../extensions/insert_data.php:226 ../../godmode/setup/news.php:324
+#: ../../godmode/reporting/reporting_builder.item_editor.php:4834
+#: ../../godmode/agentes/planned_downtime.editor.php:1490
+#: ../../godmode/alerts/configure_alert_template.php:1458
+#: ../../godmode/alerts/configure_alert_template.php:1542
+msgid "Hour"
+msgstr "Hora"
+
+#: ../../operation/tree.php:576 ../../operation/reporting/graph_viewer.php:426
+#: ../../operation/reporting/reporting_viewer.php:370
+#: ../../operation/reporting/reporting_viewer.php:390
+#: ../../operation/network/network_report.php:339
+#: ../../operation/network/network_usage_map.php:187
+#: ../../operation/events/events.php:2809
+#: ../../operation/events/events_list.php:2034
+#: ../../operation/netflow/nf_live_view.php:743
+#: ../../operation/agentes/estado_monitores.php:458
+#: ../../operation/agentes/stat_win.php:620
+#: ../../operation/agentes/datos_agente.php:315
+#: ../../operation/agentes/interface_traffic_graph_win.php:437
+#: ../../include/lib/Dashboard/Widgets/tree_view.php:686
+#: ../../include/functions_html.php:2272
+#: ../../enterprise/operation/log/log_viewer.php:984
+#: ../../enterprise/operation/log/log_viewer.php:996
+#: ../../enterprise/operation/services/services.treeview_services.php:378
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3988
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:4314
+#: ../../enterprise/meta/advanced/cron_main.php:533
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3965
+#: ../../enterprise/godmode/reporting/reporting_builder.template.php:1172
+#: ../../enterprise/godmode/wizards/consoletask_js.php:44
+#: ../../extensions/insert_data.php:227 ../../godmode/setup/news.php:325
+#: ../../godmode/reporting/reporting_builder.item_editor.php:4835
+#: ../../godmode/agentes/planned_downtime.editor.php:1491
+#: ../../godmode/alerts/configure_alert_template.php:1459
+#: ../../godmode/alerts/configure_alert_template.php:1543
+msgid "Minute"
+msgstr "Minuto"
+
+#: ../../operation/tree.php:577 ../../operation/reporting/graph_viewer.php:427
+#: ../../operation/reporting/reporting_viewer.php:371
+#: ../../operation/reporting/reporting_viewer.php:391
+#: ../../operation/network/network_report.php:340
+#: ../../operation/network/network_usage_map.php:188
+#: ../../operation/events/events.php:2810
+#: ../../operation/events/events_list.php:2035
+#: ../../operation/netflow/nf_live_view.php:744
+#: ../../operation/agentes/estado_monitores.php:459
+#: ../../operation/agentes/stat_win.php:621
+#: ../../operation/agentes/datos_agente.php:316
+#: ../../operation/agentes/interface_traffic_graph_win.php:438
+#: ../../include/lib/Dashboard/Widgets/tree_view.php:687
+#: ../../enterprise/operation/log/log_viewer.php:985
+#: ../../enterprise/operation/log/log_viewer.php:997
+#: ../../enterprise/operation/services/services.treeview_services.php:379
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3989
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:4315
+#: ../../enterprise/meta/advanced/cron_main.php:534
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3966
+#: ../../enterprise/godmode/reporting/reporting_builder.template.php:1173
+#: ../../enterprise/godmode/wizards/consoletask_js.php:45
+#: ../../extensions/insert_data.php:228 ../../godmode/setup/news.php:326
+#: ../../godmode/reporting/reporting_builder.item_editor.php:4836
+#: ../../godmode/agentes/planned_downtime.editor.php:1492
+#: ../../godmode/alerts/configure_alert_template.php:1460
+#: ../../godmode/alerts/configure_alert_template.php:1544
+msgid "Second"
+msgstr "Segundo"
+
+#: ../../operation/tree.php:578 ../../operation/reporting/graph_viewer.php:428
+#: ../../operation/reporting/reporting_viewer.php:372
+#: ../../operation/reporting/reporting_viewer.php:392
+#: ../../operation/network/network_report.php:341
+#: ../../operation/network/network_usage_map.php:189
+#: ../../operation/events/events.php:2811
+#: ../../operation/events/events_list.php:2036
+#: ../../operation/netflow/nf_live_view.php:745
+#: ../../operation/agentes/estado_monitores.php:460
+#: ../../operation/agentes/stat_win.php:622
+#: ../../operation/agentes/datos_agente.php:317
+#: ../../operation/agentes/interface_traffic_graph_win.php:439
+#: ../../include/lib/Dashboard/Widgets/tree_view.php:688
+#: ../../include/functions.php:505 ../../include/functions.php:636
+#: ../../enterprise/operation/log/log_viewer.php:986
+#: ../../enterprise/operation/log/log_viewer.php:998
+#: ../../enterprise/operation/services/services.treeview_services.php:380
+#: ../../enterprise/operation/agentes/agent_inventory.php:108
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3990
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:4316
+#: ../../enterprise/meta/advanced/cron_main.php:535
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3967
+#: ../../enterprise/godmode/reporting/reporting_builder.template.php:1174
+#: ../../enterprise/godmode/wizards/consoletask_js.php:46
+#: ../../extensions/insert_data.php:229 ../../godmode/setup/news.php:327
+#: ../../godmode/reporting/reporting_builder.item_editor.php:4837
+#: ../../godmode/agentes/planned_downtime.editor.php:1493
+#: ../../godmode/alerts/configure_alert_template.php:1461
+#: ../../godmode/alerts/configure_alert_template.php:1545
+msgid "Now"
+msgstr "Ahora"
+
+#: ../../operation/tree.php:579 ../../operation/reporting/graph_viewer.php:429
+#: ../../operation/reporting/reporting_viewer.php:373
+#: ../../operation/reporting/reporting_viewer.php:393
+#: ../../operation/network/network_report.php:342
+#: ../../operation/network/network_usage_map.php:190
+#: ../../operation/events/events.php:2812
+#: ../../operation/events/events_list.php:2037
+#: ../../operation/netflow/nf_live_view.php:746
+#: ../../operation/agentes/estado_monitores.php:461
+#: ../../operation/agentes/stat_win.php:623
+#: ../../operation/agentes/datos_agente.php:318
+#: ../../operation/agentes/interface_traffic_graph_win.php:440
+#: ../../include/class/WelcomeWindow.class.php:159
+#: ../../include/lib/Dashboard/Widgets/tree_view.php:689
+#: ../../include/functions_snmp_browser.php:600
+#: ../../enterprise/operation/log/log_viewer.php:987
+#: ../../enterprise/operation/log/log_viewer.php:999
+#: ../../enterprise/operation/services/services.treeview_services.php:381
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3991
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:4317
+#: ../../enterprise/meta/advanced/cron_main.php:536
+#: ../../enterprise/godmode/setup/setup.php:736
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3968
+#: ../../enterprise/godmode/reporting/reporting_builder.template.php:1175
+#: ../../enterprise/godmode/wizards/consoletask_js.php:47
+#: ../../extensions/insert_data.php:230 ../../mobile/include/ui.class.php:691
+#: ../../mobile/include/ui.class.php:749 ../../godmode/setup/news.php:328
+#: ../../godmode/reporting/reporting_builder.item_editor.php:4838
+#: ../../godmode/wizards/HostDevices.class.php:796
+#: ../../godmode/agentes/planned_downtime.editor.php:1494
+#: ../../godmode/alerts/configure_alert_template.php:1462
+#: ../../godmode/alerts/configure_alert_template.php:1546
+msgid "Close"
+msgstr "Cerrar"
+
+#: ../../operation/search_policies.php:37
+msgid "Id_group"
+msgstr "Id_group"
+
+#: ../../operation/search_policies.php:50
+#: ../../enterprise/meta/agentsearch.php:409
+#: ../../enterprise/godmode/policies/policies.php:471
+msgid "Policy updated"
+msgstr "Política actualizada"
+
+#: ../../operation/search_policies.php:58
+#: ../../enterprise/meta/agentsearch.php:417
+#: ../../enterprise/godmode/policies/policies.php:479
+msgid "Pending update policy only database"
+msgstr "Pendiente de actualizar la política, solo para cambios en base de datos."
+
+#: ../../operation/search_policies.php:66
+#: ../../enterprise/meta/agentsearch.php:425
+#: ../../enterprise/godmode/policies/policies.php:487
+msgid "Pending update policy"
+msgstr "Pendiente actualizar política"
+
+#: ../../operation/search_modules.php:32
+#: ../../operation/agentes/alerts_status.php:548
+#: ../../operation/agentes/alerts_status.php:583
+#: ../../operation/agentes/alerts_status.php:618
+#: ../../operation/agentes/alerts_status.php:650
+#: ../../operation/agentes/estado_monitores.php:125
+#: ../../operation/agentes/exportdata.csv.php:74
+#: ../../operation/agentes/exportdata.php:83
+#: ../../operation/agentes/exportdata.excel.php:74
+#: ../../operation/search_alerts.php:35
+#: ../../include/functions_visual_map_editor.php:497
+#: ../../include/functions_reports.php:1344
+#: ../../include/ajax/alert_list.ajax.php:279
+#: ../../include/ajax/alert_list.ajax.php:304
+#: ../../include/ajax/alert_list.ajax.php:467
+#: ../../include/class/AgentsAlerts.class.php:412
+#: ../../include/class/AgentsAlerts.class.php:903
+#: ../../include/lib/Dashboard/Widgets/sla_percent.php:315
+#: ../../include/lib/Dashboard/Widgets/module_table_value.php:283
+#: ../../include/lib/Dashboard/Widgets/module_value.php:308
+#: ../../include/lib/Dashboard/Widgets/single_graph.php:279
+#: ../../include/lib/Dashboard/Widgets/module_status.php:324
+#: ../../include/lib/Dashboard/Widgets/graph_module_histogram.php:304
+#: ../../include/lib/Dashboard/Widgets/tree_view.php:682
+#: ../../include/lib/Dashboard/Widgets/module_icon.php:334
+#: ../../include/lib/Dashboard/Widgets/top_n.php:221
+#: ../../include/functions_treeview.php:64 ../../include/functions_graph.php:5450
+#: ../../include/functions_reporting.php:6655
+#: ../../include/rest-api/models/VisualConsole/Items/BasicChart.php:299
+#: ../../include/rest-api/models/VisualConsole/Items/DonutGraph.php:242
+#: ../../include/rest-api/models/VisualConsole/Items/StaticGraph.php:380
+#: ../../include/rest-api/models/VisualConsole/Items/ColorCloud.php:411
+#: ../../include/rest-api/models/VisualConsole/Items/SimpleValue.php:349
+#: ../../include/rest-api/models/VisualConsole/Items/BarsGraph.php:529
+#: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:563
+#: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:604
+#: ../../include/rest-api/models/VisualConsole/Items/Odometer.php:385
+#: ../../include/rest-api/models/VisualConsole/Items/EventsHistory.php:252
+#: ../../include/functions_reporting_html.php:543
+#: ../../include/functions_reporting_html.php:939
+#: ../../include/functions_reporting_html.php:1748
+#: ../../include/functions_reporting_html.php:2076
+#: ../../include/functions_reporting_html.php:2178
+#: ../../include/functions_reporting_html.php:3132
+#: ../../include/functions_reporting_html.php:3515
+#: ../../include/functions_reporting_html.php:3523
+#: ../../include/functions_reporting_html.php:3532
+#: ../../include/functions_reporting_html.php:3544
+#: ../../include/functions_reporting_html.php:3700
+#: ../../include/functions_reporting_html.php:3828
+#: ../../include/functions_reporting_html.php:3922
+#: ../../include/functions_reporting_html.php:4641
+#: ../../include/functions_reporting_html.php:4689
+#: ../../enterprise/operation/agentes/policy_view.php:258
+#: ../../enterprise/operation/agentes/agent_inventory.php:69
+#: ../../enterprise/operation/inventory/inventory.php:343
+#: ../../enterprise/include/functions_reporting_csv.php:491
+#: ../../enterprise/include/functions_reporting_csv.php:776
+#: ../../enterprise/include/functions_reporting_csv.php:802
+#: ../../enterprise/include/functions_reporting_csv.php:915
+#: ../../enterprise/include/functions_reporting_csv.php:954
+#: ../../enterprise/include/functions_reporting_csv.php:1014
+#: ../../enterprise/include/functions_reporting_csv.php:1030
+#: ../../enterprise/include/functions_reporting_csv.php:1184
+#: ../../enterprise/include/functions_reporting_csv.php:1215
+#: ../../enterprise/include/functions_reporting_csv.php:1270
+#: ../../enterprise/include/functions_reporting_csv.php:1325
+#: ../../enterprise/include/functions_reporting_csv.php:1374
+#: ../../enterprise/include/functions_reporting_csv.php:1429
+#: ../../enterprise/include/functions_reporting_csv.php:1458
+#: ../../enterprise/include/functions_reporting_csv.php:1503
+#: ../../enterprise/include/functions_reporting_csv.php:1549
+#: ../../enterprise/include/functions_reporting_csv.php:1622
+#: ../../enterprise/include/functions_reporting_csv.php:1741
+#: ../../enterprise/include/functions_reporting_csv.php:1976
+#: ../../enterprise/include/functions_reporting_csv.php:2049
+#: ../../enterprise/include/functions_reporting_csv.php:2281
+#: ../../enterprise/include/functions_reporting_csv.php:2317
+#: ../../enterprise/include/functions_reporting_csv.php:2465
+#: ../../enterprise/include/functions_reporting_csv.php:2737
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:923
+#: ../../enterprise/include/functions_services.php:1779
+#: ../../enterprise/include/functions_events.php:157
+#: ../../enterprise/include/functions_inventory.php:850
+#: ../../enterprise/include/functions_inventory.php:906
+#: ../../enterprise/include/functions_reporting.php:1853
+#: ../../enterprise/include/functions_reporting.php:2892
+#: ../../enterprise/include/functions_reporting.php:3879
+#: ../../enterprise/include/functions_reporting.php:4903
+#: ../../enterprise/include/functions_reporting_pdf.php:525
+#: ../../enterprise/include/functions_reporting_pdf.php:533
+#: ../../enterprise/include/functions_reporting_pdf.php:541
+#: ../../enterprise/include/functions_reporting_pdf.php:557
+#: ../../enterprise/include/functions_ui.php:47
+#: ../../enterprise/meta/include/functions_wizard_meta.php:3512
+#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:222
+#: ../../enterprise/meta/monitoring/wizard/wizard.manage_alert.php:213
+#: ../../enterprise/extensions/disabled/check_acls.php:133
+#: ../../enterprise/godmode/services/services.elements.php:93
+#: ../../enterprise/godmode/services/services.elements.php:157
+#: ../../enterprise/godmode/services/services.elements.php:275
+#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:239
+#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:185
+#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:240
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:317
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1394
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2055
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3504
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3717
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3735
+#: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:211
+#: ../../enterprise/godmode/alerts/alert_inventory_list.php:371
+#: ../../enterprise/godmode/policies/policy_linking.php:151
+#: ../../enterprise/godmode/policies/policy_alerts.php:352
+#: ../../enterprise/godmode/policies/policy_alerts.php:567
+#: ../../extensions/agents_modules.php:444 ../../extensions/insert_data.php:175
+#: ../../mobile/operation/alerts.php:338 ../../godmode/servers/plugin.php:88
+#: ../../godmode/reporting/reporting_builder.list_items.php:410
+#: ../../godmode/reporting/create_container.php:410
+#: ../../godmode/reporting/create_container.php:560
+#: ../../godmode/reporting/create_container.php:628
+#: ../../godmode/reporting/visual_console_builder.elements.php:105
+#: ../../godmode/reporting/reporting_builder.item_editor.php:197
+#: ../../godmode/reporting/reporting_builder.item_editor.php:820
+#: ../../godmode/reporting/reporting_builder.item_editor.php:1610
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3768
+#: ../../godmode/reporting/reporting_builder.item_editor.php:4284
+#: ../../godmode/reporting/reporting_builder.item_editor.php:4308
+#: ../../godmode/reporting/graph_builder.graph_editor.php:213
+#: ../../godmode/reporting/visual_console_builder.wizard.php:449
+#: ../../godmode/reporting/visual_console_builder.wizard.php:770
+#: ../../godmode/massive/massive_standby_alerts.php:223
+#: ../../godmode/massive/massive_standby_alerts.php:258
+#: ../../godmode/massive/massive_edit_agents.php:674
+#: ../../godmode/massive/massive_edit_agents.php:1026
+#: ../../godmode/massive/massive_enable_disable_alerts.php:195
+#: ../../godmode/massive/massive_enable_disable_alerts.php:230
+#: ../../godmode/agentes/module_manager_editor_prediction.php:154
+#: ../../godmode/agentes/module_manager_editor_common.php:1260
+#: ../../godmode/agentes/module_manager_editor_common.php:1304
+#: ../../godmode/agentes/agent_manager.php:481
+#: ../../godmode/agentes/agent_manager.php:553
+#: ../../godmode/agentes/planned_downtime.editor.php:1001
+#: ../../godmode/agentes/planned_downtime.list.php:357
+#: ../../godmode/alerts/alert_list.list.php:479
+#: ../../godmode/alerts/alert_list.list.php:737
+#: ../../godmode/alerts/alert_list.builder.php:70
+#: ../../godmode/alerts/alert_view.php:91
+msgid "Module"
+msgstr "Módulo"
+
+#: ../../operation/search_modules.php:33 ../../operation/gis_maps/ajax.php:236
+#: ../../operation/gis_maps/ajax.php:269 ../../operation/search_agents.php:42
+#: ../../operation/search_agents.php:48
+#: ../../operation/events/sound_events.php:165
+#: ../../operation/events/events.build_table.php:80
+#: ../../operation/events/events.php:1953
+#: ../../operation/agentes/status_monitor.php:1308
+#: ../../operation/agentes/alerts_status.php:547
+#: ../../operation/agentes/alerts_status.php:617
+#: ../../operation/agentes/estado_monitores.php:123
+#: ../../operation/agentes/interface_view.functions.php:480
+#: ../../operation/agentes/exportdata.csv.php:74
+#: ../../operation/agentes/exportdata.php:83
+#: ../../operation/agentes/exportdata.excel.php:74
+#: ../../operation/agentes/estado_agente.php:739
+#: ../../operation/agentes/ver_agente.php:1160
+#: ../../operation/search_alerts.php:34 ../../include/functions_gis.php:229
+#: ../../include/functions_visual_map_editor.php:422
+#: ../../include/functions_visual_map_editor.php:455
+#: ../../include/functions_reports.php:1313
+#: ../../include/ajax/alert_list.ajax.php:446
+#: ../../include/ajax/heatmap.ajax.php:238
+#: ../../include/ajax/heatmap.ajax.php:277
+#: ../../include/ajax/heatmap.ajax.php:312
+#: ../../include/class/AgentsAlerts.class.php:410
+#: ../../include/class/AgentsAlerts.class.php:974
+#: ../../include/class/NetworkMap.class.php:2835
+#: ../../include/class/NetworkMap.class.php:2884
+#: ../../include/class/NetworkMap.class.php:3162
+#: ../../include/lib/Dashboard/Widgets/sla_percent.php:297
+#: ../../include/lib/Dashboard/Widgets/module_table_value.php:265
+#: ../../include/lib/Dashboard/Widgets/module_value.php:290
+#: ../../include/lib/Dashboard/Widgets/wux_transaction.php:239
+#: ../../include/lib/Dashboard/Widgets/single_graph.php:261
+#: ../../include/lib/Dashboard/Widgets/module_status.php:306
+#: ../../include/lib/Dashboard/Widgets/graph_module_histogram.php:286
+#: ../../include/lib/Dashboard/Widgets/wux_transaction_stats.php:250
+#: ../../include/lib/Dashboard/Widgets/module_icon.php:316
+#: ../../include/lib/Dashboard/Widgets/top_n.php:206
+#: ../../include/functions_graph.php:5343
+#: ../../include/functions_snmp_browser.php:1625
+#: ../../include/functions_reporting.php:6654
+#: ../../include/rest-api/models/VisualConsole/Items/BasicChart.php:281
+#: ../../include/rest-api/models/VisualConsole/Items/DonutGraph.php:224
+#: ../../include/rest-api/models/VisualConsole/Items/StaticGraph.php:363
+#: ../../include/rest-api/models/VisualConsole/Items/ColorCloud.php:394
+#: ../../include/rest-api/models/VisualConsole/Items/SimpleValue.php:332
+#: ../../include/rest-api/models/VisualConsole/Items/BarsGraph.php:511
+#: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:546
+#: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:585
+#: ../../include/rest-api/models/VisualConsole/Items/Odometer.php:368
+#: ../../include/rest-api/models/VisualConsole/Items/EventsHistory.php:235
+#: ../../include/functions_reporting_html.php:542
+#: ../../include/functions_reporting_html.php:938
+#: ../../include/functions_reporting_html.php:1049
+#: ../../include/functions_reporting_html.php:1057
+#: ../../include/functions_reporting_html.php:1747
+#: ../../include/functions_reporting_html.php:2075
+#: ../../include/functions_reporting_html.php:2177
+#: ../../include/functions_reporting_html.php:2997
+#: ../../include/functions_reporting_html.php:3131
+#: ../../include/functions_reporting_html.php:3434
+#: ../../include/functions_reporting_html.php:3514
+#: ../../include/functions_reporting_html.php:3522
+#: ../../include/functions_reporting_html.php:3531
+#: ../../include/functions_reporting_html.php:3543
+#: ../../include/functions_reporting_html.php:3699
+#: ../../include/functions_reporting_html.php:3822
+#: ../../include/functions_reporting_html.php:3916
+#: ../../include/functions_reporting_html.php:4640
+#: ../../include/functions_reporting_html.php:4688
+#: ../../include/functions_reporting_html.php:4726
+#: ../../include/functions_reporting_html.php:5035
+#: ../../include/functions_reporting_html.php:5075
+#: ../../include/functions_reporting_html.php:5325
+#: ../../enterprise/tools/ipam/ipam_ajax.php:379
+#: ../../enterprise/tools/ipam/ipam_network.php:397
+#: ../../enterprise/operation/log/log_viewer.php:632
+#: ../../enterprise/operation/agentes/tag_view.php:599
+#: ../../enterprise/operation/agentes/manage_transmap_creation.php:187
+#: ../../enterprise/operation/agentes/manage_transmap_creation.php:365
+#: ../../enterprise/operation/agentes/manage_transmap_creation.php:491
+#: ../../enterprise/operation/inventory/inventory.php:387
+#: ../../enterprise/include/functions_reporting_csv.php:490
+#: ../../enterprise/include/functions_reporting_csv.php:776
+#: ../../enterprise/include/functions_reporting_csv.php:802
+#: ../../enterprise/include/functions_reporting_csv.php:915
+#: ../../enterprise/include/functions_reporting_csv.php:954
+#: ../../enterprise/include/functions_reporting_csv.php:1014
+#: ../../enterprise/include/functions_reporting_csv.php:1030
+#: ../../enterprise/include/functions_reporting_csv.php:1054
+#: ../../enterprise/include/functions_reporting_csv.php:1184
+#: ../../enterprise/include/functions_reporting_csv.php:1215
+#: ../../enterprise/include/functions_reporting_csv.php:1270
+#: ../../enterprise/include/functions_reporting_csv.php:1325
+#: ../../enterprise/include/functions_reporting_csv.php:1374
+#: ../../enterprise/include/functions_reporting_csv.php:1429
+#: ../../enterprise/include/functions_reporting_csv.php:1458
+#: ../../enterprise/include/functions_reporting_csv.php:1502
+#: ../../enterprise/include/functions_reporting_csv.php:1548
+#: ../../enterprise/include/functions_reporting_csv.php:1621
+#: ../../enterprise/include/functions_reporting_csv.php:1740
+#: ../../enterprise/include/functions_reporting_csv.php:1975
+#: ../../enterprise/include/functions_reporting_csv.php:2048
+#: ../../enterprise/include/functions_reporting_csv.php:2281
+#: ../../enterprise/include/functions_reporting_csv.php:2317
+#: ../../enterprise/include/functions_reporting_csv.php:2348
+#: ../../enterprise/include/functions_reporting_csv.php:2465
+#: ../../enterprise/include/functions_reporting_csv.php:2518
+#: ../../enterprise/include/functions_reporting_csv.php:2736
+#: ../../enterprise/include/class/LogSource.class.php:627
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:922
+#: ../../enterprise/include/functions_services.php:1666
+#: ../../enterprise/include/functions_events.php:147
+#: ../../enterprise/include/functions_inventory.php:363
+#: ../../enterprise/include/functions_inventory.php:849
+#: ../../enterprise/include/functions_inventory.php:905
+#: ../../enterprise/include/functions_log.php:279
+#: ../../enterprise/include/functions_log.php:282
+#: ../../enterprise/include/functions_reporting.php:1852
+#: ../../enterprise/include/functions_reporting.php:2185
+#: ../../enterprise/include/functions_reporting.php:2216
+#: ../../enterprise/include/functions_reporting.php:2234
+#: ../../enterprise/include/functions_reporting.php:2891
+#: ../../enterprise/include/functions_reporting.php:3878
+#: ../../enterprise/include/functions_reporting.php:4902
+#: ../../enterprise/include/functions_reporting_pdf.php:524
+#: ../../enterprise/include/functions_reporting_pdf.php:532
+#: ../../enterprise/include/functions_reporting_pdf.php:540
+#: ../../enterprise/include/functions_reporting_pdf.php:556
+#: ../../enterprise/include/functions_reporting_pdf.php:714
+#: ../../enterprise/meta/include/functions_wizard_meta.php:3505
+#: ../../enterprise/meta/monitoring/custom_fields_csv.php:99
+#: ../../enterprise/meta/monitoring/custom_fields_view.php:704
+#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:282
+#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:377
+#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:444
+#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:712
+#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:791
+#: ../../enterprise/meta/monitoring/wizard/wizard.manage_alert.php:205
+#: ../../enterprise/meta/agentsearch.php:134
+#: ../../enterprise/godmode/modules/manage_inventory_modules.php:299
+#: ../../enterprise/godmode/services/services.elements.php:94
+#: ../../enterprise/godmode/services/services.elements.php:133
+#: ../../enterprise/godmode/services/services.elements.php:274
+#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:220
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:316
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1393
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2031
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3501
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3712
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3730
+#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:136
+#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:85
+#: ../../enterprise/godmode/agentes/collections.agents.php:94
+#: ../../enterprise/godmode/policies/policy_linking.php:150
+#: ../../extensions/insert_data.php:158 ../../mobile/operation/modules.php:597
+#: ../../mobile/operation/home.php:96 ../../mobile/operation/alerts.php:335
+#: ../../mobile/operation/events.php:553 ../../mobile/operation/agents.php:93
+#: ../../mobile/operation/agents.php:403 ../../godmode/servers/plugin.php:87
+#: ../../godmode/gis_maps/configure_gis_map.php:581
+#: ../../godmode/reporting/reporting_builder.list_items.php:391
+#: ../../godmode/reporting/create_container.php:387
+#: ../../godmode/reporting/create_container.php:554
+#: ../../godmode/reporting/create_container.php:627
+#: ../../godmode/reporting/visual_console_builder.elements.php:104
+#: ../../godmode/reporting/reporting_builder.item_editor.php:196
+#: ../../godmode/reporting/reporting_builder.item_editor.php:819
+#: ../../godmode/reporting/reporting_builder.item_editor.php:1553
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3763
+#: ../../godmode/reporting/reporting_builder.item_editor.php:4281
+#: ../../godmode/reporting/reporting_builder.item_editor.php:4305
+#: ../../godmode/reporting/graph_builder.graph_editor.php:212
+#: ../../godmode/reporting/visual_console_builder.wizard.php:450
+#: ../../godmode/reporting/visual_console_builder.wizard.php:738
+#: ../../godmode/reporting/visual_console_builder.wizard.php:761
+#: ../../godmode/massive/massive_copy_modules.php:131
+#: ../../godmode/massive/massive_copy_modules.php:295
+#: ../../godmode/massive/massive_standby_alerts.php:223
+#: ../../godmode/massive/massive_standby_alerts.php:258
+#: ../../godmode/massive/massive_enable_disable_alerts.php:195
+#: ../../godmode/massive/massive_enable_disable_alerts.php:230
+#: ../../godmode/agentes/module_manager_editor_prediction.php:126
+#: ../../godmode/agentes/module_manager_editor_common.php:1250
+#: ../../godmode/agentes/module_manager_editor_common.php:1303
+#: ../../godmode/agentes/status_monitor_custom_fields.php:77
+#: ../../godmode/agentes/status_monitor_custom_fields.php:143
+#: ../../godmode/agentes/planned_downtime.list.php:353
+#: ../../godmode/alerts/alert_list.list.php:477
+#: ../../godmode/alerts/alert_list.list.php:727
+#: ../../godmode/alerts/alert_list.builder.php:56
+#: ../../godmode/alerts/alert_view.php:87
+msgid "Agent"
+msgstr "Agente"
+
+#: ../../operation/search_modules.php:34
+#: ../../operation/events/sound_events.php:127
+#: ../../operation/netflow/nf_live_view.php:311
+#: ../../operation/agentes/estado_agente.php:757
+#: ../../operation/agentes/ver_agente.php:1144
+#: ../../operation/incidents/configure_integriaims_incident.php:234
+#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:326
+#: ../../include/functions_visual_map_editor.php:702
+#: ../../include/functions_visual_map_editor.php:720
+#: ../../include/functions_visual_map_editor.php:848
+#: ../../include/functions_reports.php:1067 ../../include/ajax/module.php:977
+#: ../../include/ajax/heatmap.ajax.php:75
+#: ../../include/class/ModuleTemplates.class.php:1209
+#: ../../include/class/AgentWizard.class.php:1182
+#: ../../include/class/AgentWizard.class.php:4022
+#: ../../include/class/CalendarManager.class.php:977
+#: ../../include/class/CalendarManager.class.php:1011
+#: ../../include/lib/Dashboard/Widgets/custom_graph.php:327
+#: ../../include/lib/Dashboard/Widgets/clock.php:221
+#: ../../include/lib/Dashboard/Widgets/service_view.php:251
+#: ../../include/functions_events.php:2606
+#: ../../include/functions_events.php:5026
+#: ../../include/functions_snmp_browser.php:564
+#: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:467
+#: ../../include/functions_reporting_html.php:1048
+#: ../../include/functions_reporting_html.php:1056
+#: ../../include/functions_reporting_html.php:1268
+#: ../../include/functions_reporting_html.php:1276
+#: ../../include/functions_reporting_html.php:2354
+#: ../../include/functions_reporting_html.php:3388
+#: ../../include/functions_reporting_html.php:5154
+#: ../../enterprise/views/cluster/list.php:61
+#: ../../enterprise/operation/agentes/tag_view.php:605
+#: ../../enterprise/operation/agentes/policy_view.php:396
+#: ../../enterprise/operation/agentes/ver_agente.php:32
+#: ../../enterprise/include/functions_reporting_csv.php:1605
+#: ../../enterprise/include/functions_reporting_csv.php:1721
+#: ../../enterprise/include/functions_reporting_csv.php:1961
+#: ../../enterprise/include/functions_reporting_csv.php:2029
+#: ../../enterprise/include/functions_services.php:1602
+#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:68
+#: ../../enterprise/meta/advanced/metasetup.relations.php:335
+#: ../../enterprise/meta/advanced/metasetup.relations.php:413
+#: ../../enterprise/meta/advanced/metasetup.relations.php:548
+#: ../../enterprise/meta/advanced/servers.build_table.php:62
+#: ../../enterprise/godmode/modules/configure_local_component.php:212
+#: ../../enterprise/godmode/services/services.elements.php:113
+#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:201
+#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:207
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1651
+#: ../../enterprise/godmode/reporting/reporting_builder.global.php:83
+#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:103
+#: ../../enterprise/godmode/policies/policy_modules.php:1465
+#: ../../mobile/operation/visualmaps.php:125
+#: ../../mobile/operation/visualmaps.php:126
+#: ../../mobile/operation/events.php:377 ../../mobile/operation/events.php:378
+#: ../../mobile/operation/events.php:524 ../../mobile/operation/events.php:681
+#: ../../mobile/operation/events.php:682
+#: ../../godmode/setup/setup_integria.php:408
+#: ../../godmode/setup/setup_integria.php:530
+#: ../../godmode/setup/gis_step_2.php:235 ../../godmode/setup/news.php:247
+#: ../../godmode/servers/plugin.php:816
+#: ../../godmode/servers/modificar_server.php:72
+#: ../../godmode/servers/servers.build_table.php:81
+#: ../../godmode/update_manager/update_manager.history.php:41
+#: ../../godmode/modules/manage_network_components.php:750
+#: ../../godmode/modules/manage_network_templates_form.php:232
+#: ../../godmode/modules/manage_network_components_form_common.php:64
+#: ../../godmode/reporting/reporting_builder.list_items.php:212
+#: ../../godmode/reporting/reporting_builder.list_items.php:249
+#: ../../godmode/reporting/reporting_builder.list_items.php:372
+#: ../../godmode/reporting/reporting_builder.item_editor.php:981
+#: ../../godmode/reporting/visual_console_builder.wizard.php:135
+#: ../../godmode/reporting/visual_console_builder.wizard.php:283
+#: ../../godmode/events/event_responses.editor.php:159
+#: ../../godmode/agentes/module_manager.php:850
+#: ../../godmode/agentes/module_manager_editor_common.php:288
+#: ../../godmode/agentes/module_manager_editor_common.php:401
+#: ../../godmode/agentes/module_manager_editor_common.php:1305
+#: ../../godmode/agentes/planned_downtime.editor.php:582
+#: ../../godmode/agentes/planned_downtime.list.php:613
+#: ../../godmode/agentes/agent_template.php:236
+#: ../../godmode/agentes/modificar_agente.php:650
+#: ../../godmode/alerts/alert_templates.php:37
+#: ../../godmode/alerts/alert_templates.php:302
+#: ../../godmode/alerts/alert_templates.php:386
+msgid "Type"
+msgstr "Tipo"
+
+#: ../../operation/search_modules.php:35 ../../operation/search_agents.php:45
+#: ../../operation/search_agents.php:51
+#: ../../operation/netflow/nf_live_view.php:262
+#: ../../operation/agentes/status_monitor.php:1329
+#: ../../operation/agentes/estado_agente.php:751
+#: ../../operation/agentes/estado_generalagente.php:338
+#: ../../include/class/CustomNetScan.class.php:520
+#: ../../include/lib/Dashboard/Widgets/sla_percent.php:331
+#: ../../include/lib/Dashboard/Widgets/custom_graph.php:350
+#: ../../include/lib/Dashboard/Widgets/single_graph.php:306
+#: ../../include/lib/Dashboard/Widgets/graph_module_histogram.php:321
+#: ../../include/lib/Dashboard/Widgets/top_n.php:236
+#: ../../include/functions_treeview.php:84
+#: ../../include/functions_treeview.php:646
+#: ../../include/functions_reporting_html.php:3393
+#: ../../enterprise/tools/ipam/ipam_list.php:617
+#: ../../enterprise/operation/agentes/tag_view.php:603
+#: ../../enterprise/operation/agentes/tag_view.php:681
+#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:537
+#: ../../enterprise/include/class/Aws.cloud.php:591
+#: ../../enterprise/include/class/Aws.cloud.php:1318
+#: ../../enterprise/include/class/Aws.S3.php:506
+#: ../../enterprise/include/class/MySQL.app.php:558
+#: ../../enterprise/include/class/Oracle.app.php:543
+#: ../../enterprise/include/class/DB2.app.php:536
+#: ../../enterprise/include/class/SAP.app.php:513
+#: ../../enterprise/include/class/VMware.app.php:667
+#: ../../enterprise/include/class/Azure.cloud.php:847
+#: ../../enterprise/include/class/Google.cloud.php:797
+#: ../../enterprise/include/functions_ipam.php:1354
+#: ../../enterprise/include/functions_ui.php:84
+#: ../../enterprise/meta/include/functions_wizard_meta.php:921
+#: ../../enterprise/meta/include/functions_wizard_meta.php:1038
+#: ../../enterprise/meta/include/functions_wizard_meta.php:1205
+#: ../../enterprise/meta/include/functions_wizard_meta.php:1523
+#: ../../enterprise/meta/include/functions_wizard_meta.php:1608
+#: ../../enterprise/meta/include/functions_wizard_meta.php:1745
+#: ../../enterprise/meta/agentsearch.php:137
+#: ../../enterprise/godmode/servers/manage_export_form.php:95
+#: ../../enterprise/godmode/servers/manage_export.php:139
+#: ../../enterprise/godmode/modules/configure_local_component.php:289
+#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:690
+#: ../../enterprise/godmode/agentes/inventory_manager.php:223
+#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:421
+#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:463
+#: ../../enterprise/godmode/policies/policy_inventory_modules.php:304
+#: ../../mobile/operation/modules.php:657 ../../mobile/operation/modules.php:659
+#: ../../mobile/operation/modules.php:851
+#: ../../godmode/modules/manage_network_components_form_common.php:143
+#: ../../godmode/massive/massive_edit_agents.php:705
+#: ../../godmode/massive/massive_edit_modules.php:754
+#: ../../godmode/wizards/HostDevices.class.php:798
+#: ../../godmode/wizards/DiscoveryTaskList.class.php:594
+#: ../../godmode/agentes/module_manager.php:856
+#: ../../godmode/agentes/module_manager_editor_common.php:617
+#: ../../godmode/agentes/module_manager_editor_common.php:642
+#: ../../godmode/agentes/status_monitor_custom_fields.php:93
+#: ../../godmode/agentes/status_monitor_custom_fields.php:147
+#: ../../godmode/agentes/agent_manager.php:366
+msgid "Interval"
+msgstr "Intervalo"
+
+#: ../../operation/search_modules.php:37
+#: ../../operation/agentes/status_monitor.php:1347
+#: ../../include/functions_visual_map_editor.php:58
+#: ../../include/ajax/module.php:983
+#: ../../include/class/NetworkMap.class.php:2908
+#: ../../include/lib/Dashboard/Widgets/custom_graph.php:303
+#: ../../include/functions_events.php:4583
+#: ../../enterprise/operation/services/services.service.php:130
+#: ../../enterprise/operation/services/services.list.php:509
+#: ../../enterprise/operation/agentes/tag_view.php:682
+#: ../../extensions/realtime_graphs.php:161
+#: ../../godmode/agentes/status_monitor_custom_fields.php:105
+#: ../../godmode/agentes/status_monitor_custom_fields.php:150
+msgid "Graph"
+msgstr "Gráfico"
+
+#: ../../operation/search_modules.php:38
+#: ../../operation/events/events.build_table.php:330
+#: ../../operation/agentes/status_monitor.php:1357
+#: ../../operation/agentes/exportdata.csv.php:74
+#: ../../operation/agentes/exportdata.php:83
+#: ../../operation/agentes/exportdata.excel.php:74
+#: ../../include/ajax/module.php:982 ../../include/ajax/custom_fields.php:412
+#: ../../include/functions_events.php:210 ../../include/functions_events.php:293
+#: ../../include/functions_events.php:6774
+#: ../../include/functions_netflow.php:301 ../../include/functions_graph.php:3769
+#: ../../include/functions_reporting.php:4010
+#: ../../include/functions_reporting.php:4051
+#: ../../include/functions_reporting.php:4802
+#: ../../include/functions_reporting_html.php:2079
+#: ../../include/functions_reporting_html.php:2535
+#: ../../include/functions_reporting_html.php:2539
+#: ../../include/functions_reporting_html.php:2540
+#: ../../include/functions_reporting_html.php:2544
+#: ../../include/functions_reporting_html.php:2549
+#: ../../include/functions_reporting_html.php:2554
+#: ../../include/functions_reporting_html.php:2558
+#: ../../include/functions_reporting_html.php:2563
+#: ../../include/functions_reporting_html.php:2570
+#: ../../include/functions_reporting_html.php:2619
+#: ../../include/functions_reporting_html.php:2692
+#: ../../enterprise/operation/agentes/tag_view.php:684
+#: ../../enterprise/operation/agentes/policy_view.php:398
+#: ../../enterprise/include/functions_reporting_csv.php:802
+#: ../../enterprise/include/functions_reporting_csv.php:832
+#: ../../enterprise/include/functions_reporting_csv.php:879
+#: ../../enterprise/include/functions_reporting_csv.php:915
+#: ../../enterprise/include/functions_reporting_csv.php:954
+#: ../../enterprise/include/functions_reporting_csv.php:1014
+#: ../../enterprise/include/functions_reporting_csv.php:1458
+#: ../../enterprise/include/functions_reporting_csv.php:2281
+#: ../../enterprise/include/functions_reporting_csv.php:2317
+#: ../../enterprise/include/functions_reporting_csv.php:2423
+#: ../../enterprise/include/functions_reporting_csv.php:2518
+#: ../../enterprise/include/functions_reporting_csv.php:2740
+#: ../../enterprise/include/functions_services.php:1612
+#: ../../enterprise/include/functions_reporting.php:2184
+#: ../../enterprise/include/functions_reporting.php:2217
+#: ../../enterprise/include/functions_reporting.php:2221
+#: ../../enterprise/include/functions_reporting_pdf.php:702
+#: ../../enterprise/meta/include/functions_events_meta.php:134
+#: ../../enterprise/meta/advanced/collections.editor.php:54
+#: ../../enterprise/meta/advanced/collections.data.php:46
+#: ../../enterprise/meta/advanced/collections.data.php:86
+#: ../../enterprise/meta/advanced/collections.data.php:104
+#: ../../enterprise/meta/advanced/collections.data.php:124
+#: ../../enterprise/meta/advanced/collections.data.php:149
+#: ../../enterprise/meta/advanced/collections.data.php:172
+#: ../../enterprise/meta/advanced/collections.data.php:197
+#: ../../enterprise/meta/advanced/collections.data.php:238
+#: ../../enterprise/meta/advanced/collections.data.php:263
+#: ../../enterprise/godmode/agentes/collections.editor.php:56
+#: ../../enterprise/godmode/agentes/collections.agents.php:47
+#: ../../enterprise/godmode/agentes/collections.agents.php:56
+#: ../../enterprise/godmode/agentes/collections.data.php:74
+#: ../../enterprise/godmode/agentes/collections.data.php:117
+#: ../../enterprise/godmode/agentes/collections.data.php:184
+#: ../../enterprise/godmode/agentes/collections.data.php:204
+#: ../../enterprise/godmode/agentes/collections.data.php:224
+#: ../../enterprise/godmode/agentes/collections.data.php:251
+#: ../../enterprise/godmode/agentes/collections.data.php:279
+#: ../../enterprise/godmode/agentes/collections.data.php:309
+#: ../../enterprise/godmode/agentes/collections.data.php:332
+#: ../../extensions/insert_data.php:194 ../../extensions/insert_data.php:195
+#: ../../mobile/operation/modules.php:715 ../../mobile/operation/modules.php:718
+#: ../../mobile/operation/modules.php:719 ../../mobile/operation/modules.php:720
+#: ../../mobile/operation/modules.php:721 ../../mobile/operation/modules.php:722
+#: ../../mobile/operation/modules.php:723 ../../mobile/operation/modules.php:724
+#: ../../mobile/operation/modules.php:725 ../../mobile/operation/modules.php:727
+#: ../../mobile/operation/modules.php:730 ../../mobile/operation/modules.php:731
+#: ../../mobile/operation/modules.php:732 ../../mobile/operation/modules.php:733
+#: ../../mobile/operation/modules.php:734 ../../mobile/operation/modules.php:735
+#: ../../mobile/operation/modules.php:736 ../../mobile/operation/modules.php:737
+#: ../../mobile/operation/modules.php:853
+#: ../../godmode/events/custom_events.php:115
+#: ../../godmode/agentes/status_monitor_custom_fields.php:113
+#: ../../godmode/agentes/status_monitor_custom_fields.php:152
+msgid "Data"
+msgstr "Datos"
+
+#: ../../operation/search_modules.php:108 ../../operation/events/events.php:2164
+#: ../../operation/agentes/status_monitor.php:1573
+#: ../../include/functions_events.php:62 ../../include/functions_modules.php:2840
+#: ../../include/functions_modules.php:4076
+#: ../../enterprise/operation/agentes/tag_view.php:935
+#: ../../mobile/operation/modules.php:542 ../../mobile/operation/modules.php:605
+msgid "NOT INIT"
+msgstr "No iniciado"
+
+#: ../../operation/search_modules.php:114 ../../operation/search_modules.php:141
+#: ../../operation/events/events.php:2060 ../../operation/events/events.php:2127
+#: ../../operation/events/events.php:2154
+#: ../../operation/agentes/status_monitor.php:1580
+#: ../../operation/agentes/status_monitor.php:1586
+#: ../../operation/agentes/status_monitor.php:1663
+#: ../../operation/agentes/status_monitor.php:1669
+#: ../../operation/agentes/pandora_networkmap.view.php:1772
+#: ../../operation/agentes/pandora_networkmap.view.php:1780
+#: ../../include/class/Tree.class.php:655 ../../include/lib/Module.php:570
+#: ../../include/functions_events.php:56 ../../include/functions_events.php:108
+#: ../../include/functions_events.php:171
+#: ../../include/functions_modules.php:2849
+#: ../../include/functions_modules.php:2855
+#: ../../include/functions_modules.php:4060
+#: ../../include/functions_modules.php:4092 ../../include/functions_ui.php:3763
+#: ../../include/functions_ui.php:3829 ../../include/functions.php:1360
+#: ../../include/functions.php:1399
+#: ../../enterprise/operation/agentes/tag_view.php:942
+#: ../../enterprise/operation/agentes/tag_view.php:948
+#: ../../enterprise/operation/agentes/tag_view.php:989
+#: ../../enterprise/operation/agentes/tag_view.php:995
+#: ../../enterprise/operation/agentes/policy_view.php:479
+#: ../../enterprise/operation/agentes/policy_view.php:485
+#: ../../enterprise/include/functions_services.php:1968
+#: ../../enterprise/extensions/vmware/vmware_view.php:1009
+#: ../../mobile/operation/modules.php:548 ../../mobile/operation/modules.php:571
+#: ../../mobile/operation/modules.php:611 ../../mobile/operation/modules.php:634
+msgid "NORMAL"
+msgstr "NORMAL"
+
+#: ../../operation/search_modules.php:120 ../../operation/search_modules.php:149
+#: ../../operation/events/events.php:2035 ../../operation/events/events.php:2133
+#: ../../operation/events/events.php:2159
+#: ../../operation/agentes/status_monitor.php:1594
+#: ../../operation/agentes/status_monitor.php:1602
+#: ../../operation/agentes/status_monitor.php:1679
+#: ../../operation/agentes/status_monitor.php:1685
+#: ../../operation/agentes/pandora_networkmap.view.php:1766
+#: ../../operation/agentes/pandora_networkmap.view.php:1785
+#: ../../include/class/Tree.class.php:625 ../../include/lib/Module.php:554
+#: ../../include/functions_events.php:59 ../../include/functions_events.php:112
+#: ../../include/functions_events.php:156
+#: ../../include/functions_modules.php:2843
+#: ../../include/functions_modules.php:2859
+#: ../../include/functions_modules.php:4064
+#: ../../include/functions_modules.php:4084 ../../include/functions_ui.php:3769
+#: ../../include/functions_ui.php:3839 ../../include/functions.php:1348
+#: ../../include/functions.php:1380
+#: ../../enterprise/operation/agentes/tag_view.php:956
+#: ../../enterprise/operation/agentes/tag_view.php:962
+#: ../../enterprise/operation/agentes/tag_view.php:1005
+#: ../../enterprise/operation/agentes/tag_view.php:1011
+#: ../../enterprise/operation/agentes/policy_view.php:473
+#: ../../enterprise/operation/agentes/policy_view.php:490
+#: ../../enterprise/include/functions_services.php:1976
+#: ../../enterprise/extensions/vmware/vmware_view.php:1014
+#: ../../mobile/operation/modules.php:554 ../../mobile/operation/modules.php:579
+#: ../../mobile/operation/modules.php:617 ../../mobile/operation/modules.php:642
+msgid "CRITICAL"
+msgstr "CRÍTICO"
+
+#: ../../operation/search_modules.php:126 ../../operation/search_modules.php:157
+#: ../../operation/events/events.php:2065 ../../operation/events/events.php:2121
+#: ../../operation/events/events.php:2176
+#: ../../operation/agentes/status_monitor.php:1610
+#: ../../operation/agentes/status_monitor.php:1618
+#: ../../operation/agentes/status_monitor.php:1695
+#: ../../operation/agentes/status_monitor.php:1701
+#: ../../operation/agentes/pandora_networkmap.view.php:1769
+#: ../../operation/agentes/pandora_networkmap.view.php:1790
+#: ../../include/class/Tree.class.php:633
+#: ../../include/class/NetworkMap.class.php:2805 ../../include/lib/Module.php:558
+#: ../../include/functions_events.php:70 ../../include/functions_events.php:104
+#: ../../include/functions_events.php:174
+#: ../../include/functions_modules.php:2846
+#: ../../include/functions_modules.php:2863
+#: ../../include/functions_modules.php:4068
+#: ../../include/functions_modules.php:4100 ../../include/functions_ui.php:3757
+#: ../../include/functions_ui.php:3834 ../../include/functions.php:1351
+#: ../../include/functions.php:1387
+#: ../../enterprise/operation/agentes/tag_view.php:970
+#: ../../enterprise/operation/agentes/tag_view.php:976
+#: ../../enterprise/operation/agentes/tag_view.php:1021
+#: ../../enterprise/operation/agentes/tag_view.php:1027
+#: ../../enterprise/operation/agentes/policy_view.php:476
+#: ../../enterprise/operation/agentes/policy_view.php:495
+#: ../../enterprise/include/functions_services.php:1984
+#: ../../enterprise/include/functions_login.php:34
+#: ../../enterprise/extensions/vmware/vmware_view.php:1019
+#: ../../mobile/operation/modules.php:560 ../../mobile/operation/modules.php:587
+#: ../../mobile/operation/modules.php:623 ../../mobile/operation/modules.php:650
+msgid "WARNING"
+msgstr "ADVERTENCIA"
+
+#: ../../operation/search_modules.php:132 ../../operation/search_modules.php:141
+#: ../../operation/search_modules.php:149 ../../operation/search_modules.php:157
+#: ../../operation/events/events.php:2032 ../../operation/events/events.php:2140
+#: ../../operation/events/events.php:2151
+#: ../../operation/agentes/status_monitor.php:1626
+#: ../../operation/agentes/status_monitor.php:1634
+#: ../../operation/agentes/status_monitor.php:1663
+#: ../../operation/agentes/status_monitor.php:1669
+#: ../../operation/agentes/status_monitor.php:1679
+#: ../../operation/agentes/status_monitor.php:1685
+#: ../../operation/agentes/status_monitor.php:1695
+#: ../../operation/agentes/status_monitor.php:1701
+#: ../../operation/agentes/pandora_networkmap.view.php:1780
+#: ../../operation/agentes/pandora_networkmap.view.php:1785
+#: ../../operation/agentes/pandora_networkmap.view.php:1790
+#: ../../include/class/Tree.class.php:639 ../../include/lib/Module.php:561
+#: ../../include/functions_events.php:73 ../../include/functions_events.php:117
+#: ../../include/functions_events.php:177
+#: ../../include/functions_modules.php:2855
+#: ../../include/functions_modules.php:2859
+#: ../../include/functions_modules.php:2863
+#: ../../include/functions_modules.php:4072 ../../include/functions_ui.php:3776
+#: ../../include/functions_ui.php:3854 ../../include/functions.php:1364
+#: ../../include/functions.php:1390
+#: ../../enterprise/operation/agentes/tag_view.php:989
+#: ../../enterprise/operation/agentes/tag_view.php:995
+#: ../../enterprise/operation/agentes/tag_view.php:1005
+#: ../../enterprise/operation/agentes/tag_view.php:1011
+#: ../../enterprise/operation/agentes/tag_view.php:1021
+#: ../../enterprise/operation/agentes/tag_view.php:1027
+#: ../../enterprise/operation/agentes/policy_view.php:485
+#: ../../enterprise/operation/agentes/policy_view.php:490
+#: ../../enterprise/operation/agentes/policy_view.php:495
+#: ../../enterprise/include/functions_services.php:1999
+#: ../../enterprise/extensions/vmware/vmware_view.php:1024
+#: ../../mobile/operation/modules.php:571 ../../mobile/operation/modules.php:579
+#: ../../mobile/operation/modules.php:587 ../../mobile/operation/modules.php:634
+#: ../../mobile/operation/modules.php:642 ../../mobile/operation/modules.php:650
+msgid "UNKNOWN"
+msgstr "DESCONOCIDO"
+
+#: ../../operation/search_modules.php:141 ../../operation/search_modules.php:149
+#: ../../operation/search_modules.php:157
+#: ../../operation/agentes/status_monitor.php:1663
+#: ../../operation/agentes/status_monitor.php:1669
+#: ../../operation/agentes/status_monitor.php:1679
+#: ../../operation/agentes/status_monitor.php:1685
+#: ../../operation/agentes/status_monitor.php:1695
+#: ../../operation/agentes/status_monitor.php:1701
+#: ../../operation/agentes/pandora_networkmap.view.php:1780
+#: ../../operation/agentes/pandora_networkmap.view.php:1785
+#: ../../operation/agentes/pandora_networkmap.view.php:1790
+#: ../../include/functions_modules.php:2855
+#: ../../include/functions_modules.php:2859
+#: ../../include/functions_modules.php:2863
+#: ../../enterprise/operation/agentes/tag_view.php:989
+#: ../../enterprise/operation/agentes/tag_view.php:995
+#: ../../enterprise/operation/agentes/tag_view.php:1005
+#: ../../enterprise/operation/agentes/tag_view.php:1011
+#: ../../enterprise/operation/agentes/tag_view.php:1021
+#: ../../enterprise/operation/agentes/tag_view.php:1027
+#: ../../enterprise/operation/agentes/policy_view.php:485
+#: ../../enterprise/operation/agentes/policy_view.php:490
+#: ../../enterprise/operation/agentes/policy_view.php:495
+#: ../../enterprise/operation/agentes/transactional_map.php:210
+#: ../../mobile/operation/modules.php:571 ../../mobile/operation/modules.php:579
+#: ../../mobile/operation/modules.php:587 ../../mobile/operation/modules.php:634
+#: ../../mobile/operation/modules.php:642 ../../mobile/operation/modules.php:650
+msgid "Last status"
+msgstr "Último estado"
+
+#: ../../operation/gis_maps/ajax.php:237 ../../operation/gis_maps/ajax.php:275
+#: ../../operation/gis_maps/ajax.php:444
+msgid "Position (Lat, Long, Alt)"
+msgstr "Posición (Lat, Long, Alt)"
+
+#: ../../operation/gis_maps/ajax.php:238
+msgid "Start contact"
+msgstr "Inicio de contacto"
+
+#: ../../operation/gis_maps/ajax.php:239 ../../operation/gis_maps/ajax.php:349
+#: ../../operation/gis_maps/ajax.php:466 ../../operation/search_users.php:46
+#: ../../operation/search_agents.php:58
+#: ../../operation/agentes/log_sources_status.php:58
+#: ../../operation/agentes/estado_agente.php:769
+#: ../../operation/agentes/estado_generalagente.php:343
+#: ../../operation/agentes/ver_agente.php:1019 ../../include/ajax/module.php:984
+#: ../../include/functions_events.php:4498
+#: ../../include/functions_treeview.php:668
+#: ../../enterprise/operation/agentes/tag_view.php:609
+#: ../../enterprise/operation/agentes/policy_view.php:399
+#: ../../enterprise/operation/agentes/ver_agente.php:77
+#: ../../enterprise/meta/agentsearch.php:142
+#: ../../enterprise/godmode/reporting/aws_view.php:61
+#: ../../extensions/users_connected.php:146 ../../mobile/operation/agent.php:193
+#: ../../mobile/operation/agents.php:99 ../../mobile/operation/agents.php:417
+#: ../../mobile/operation/agents.php:419 ../../mobile/operation/agents.php:422
+#: ../../godmode/agentes/planned_downtime.editor.php:917
+#: ../../godmode/users/user_list.php:481
+msgid "Last contact"
+msgstr "Último contacto"
+
+#: ../../operation/gis_maps/ajax.php:240
+msgid "Num reports"
+msgstr "Informes numéricos"
+
+#: ../../operation/gis_maps/ajax.php:242 ../../operation/agentes/gis_view.php:225
+msgid "Manual placement"
+msgstr "Colocación manual"
+
+#: ../../operation/gis_maps/ajax.php:279 ../../operation/gis_maps/ajax.php:448
+msgid "Default position of map."
+msgstr "Posición por defecto del mapa"
+
+#: ../../operation/gis_maps/ajax.php:290 ../../include/functions_events.php:4484
+#: ../../include/functions_treeview.php:640
+#: ../../include/functions_reporting_html.php:1492
+#: ../../include/functions_reporting_html.php:3826
+#: ../../include/functions_reporting_html.php:3920
+#: ../../enterprise/include/functions_reporting_csv.php:718
+#: ../../enterprise/meta/include/functions_wizard_meta.php:210
+#: ../../enterprise/meta/include/functions_wizard_meta.php:214
+#: ../../enterprise/meta/include/functions_wizard_meta.php:482
+#: ../../enterprise/meta/include/functions_wizard_meta.php:1468
+#: ../../enterprise/meta/include/functions_wizard_meta.php:1816
+#: ../../godmode/servers/modificar_server.php:62
+#: ../../godmode/agentes/agent_manager.php:298
+msgid "IP Address"
+msgstr "Dirección IP"
+
+#: ../../operation/gis_maps/ajax.php:316
+#: ../../include/functions_reporting_html.php:1512
+#: ../../enterprise/include/functions_reporting_csv.php:718
+#: ../../enterprise/include/functions_reporting_csv.php:2409
+#: ../../enterprise/include/functions_reporting_csv.php:2423
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2266
+#: ../../extensions/api_checker.php:220
+#: ../../godmode/reporting/reporting_builder.item_editor.php:75
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2269
+#: ../../godmode/events/event_responses.editor.php:156
+#: ../../godmode/events/event_responses.editor.php:164
+msgid "URL"
+msgstr "URL"
+
+#: ../../operation/gis_maps/ajax.php:339
+msgid "Satellite Version"
+msgstr "Versión satélite"
+
+#: ../../operation/gis_maps/ajax.php:341
+#: ../../operation/agentes/estado_generalagente.php:227
+#: ../../include/functions_treeview.php:731
+#: ../../enterprise/views/cluster/view.php:309
+msgid "Agent Version"
+msgstr "Versión del agente"
+
+#: ../../operation/gis_maps/ajax.php:351 ../../operation/gis_maps/ajax.php:362
+#: ../../operation/gis_maps/ajax.php:468 ../../operation/gis_maps/ajax.php:479
+#: ../../operation/agentes/estado_generalagente.php:348
+#: ../../include/functions_cron.php:869 ../../include/functions_treeview.php:660
+#: ../../include/functions_ui.php:549
+#: ../../enterprise/tools/ipam/ipam_ajax.php:502
+#: ../../enterprise/tools/ipam/ipam_list.php:675
+#: ../../enterprise/include/functions_tasklist.php:572
+#: ../../enterprise/include/functions_ipam.php:2076
+#: ../../enterprise/include/functions_ipam.php:2077
+#: ../../enterprise/include/functions_ipam.php:2078
+#: ../../godmode/snmpconsole/snmp_alert.php:1295 ../../godmode/db/db_main.php:189
+msgid "Never"
+msgstr "Nunca"
+
+#: ../../operation/gis_maps/ajax.php:360 ../../operation/gis_maps/ajax.php:477
+#: ../../operation/agentes/estado_agente.php:745
+#: ../../operation/agentes/estado_generalagente.php:343
+#: ../../include/functions_treeview.php:668
+#: ../../enterprise/operation/agentes/tag_view.php:601
+#: ../../enterprise/include/functions_reporting_csv.php:718
+msgid "Remote"
+msgstr "Remoto"
+
+#: ../../operation/gis_maps/ajax.php:385 ../../operation/gis_maps/ajax.php:502
+msgid "Number of non-validated critical events"
+msgstr "Numero de eventos críticos no validados"
+
+#: ../../operation/gis_maps/ajax.php:395 ../../operation/gis_maps/ajax.php:512
+msgid "Alert(s) fired"
+msgstr "Alertas disparadas"
+
+#: ../../operation/gis_maps/gis_map.php:30
+#: ../../operation/gis_maps/render_view.php:130
+#: ../../godmode/gis_maps/configure_gis_map.php:86
+msgid "GIS Maps list"
+msgstr "Lista de mapas GIS"
+
+#: ../../operation/gis_maps/gis_map.php:35 ../../operation/menu.php:260
+msgid "GIS Maps"
+msgstr "Mapas GIS"
+
+#: ../../operation/gis_maps/gis_map.php:109
+#: ../../include/functions_container.php:157
+#: ../../enterprise/meta/include/functions_autoprovision.php:644
+#: ../../enterprise/meta/advanced/servers.build_table.php:72
+#: ../../enterprise/godmode/modules/local_components.php:625
+#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:261
+#: ../../enterprise/godmode/alerts/alert_inventory_list.php:224
+#: ../../enterprise/godmode/policies/policies.php:409
+#: ../../enterprise/godmode/policies/policy_alerts.php:354
+#: ../../godmode/servers/plugin.php:819
+#: ../../godmode/servers/servers.build_table.php:91
+#: ../../godmode/reporting/graphs.php:323
+#: ../../godmode/reporting/reporting_builder.list_items.php:427
+#: ../../godmode/reporting/reporting_builder.php:957
+#: ../../godmode/reporting/reporting_builder.php:1156
+#: ../../godmode/alerts/alert_list.list.php:485
+#: ../../godmode/alerts/alert_templates.php:387
+#: ../../godmode/users/user_list.php:487 ../../godmode/users/profile_list.php:349
+msgid "Op."
+msgstr "Op."
+
+#: ../../operation/gis_maps/gis_map.php:200
+msgid "No maps found"
+msgstr "No se encontraron mapas"
+
+#: ../../operation/gis_maps/gis_map.php:219
+msgid "Caution: Do you want delete the map?"
+msgstr "Cuidado: ¿Quieres borrar el mapa?"
+
+#: ../../operation/gis_maps/gis_map.php:226
+msgid "Do you want to set default the map?"
+msgstr "¿Quieres configurar por defecto el mapa?"
+
+#: ../../operation/gis_maps/gis_map.php:234
+msgid "There was error on setup the default map."
+msgstr "Error al configurar el mapa por defecto"
+
+#: ../../operation/gis_maps/render_view.php:145
+msgid "Show link to public GIS map"
+msgstr "Mostrar enlace al mapa SIG público"
+
+#: ../../operation/gis_maps/render_view.php:149 ../../include/functions.php:3350
+msgid "5 seconds"
+msgstr "5 segundos"
+
+#: ../../operation/gis_maps/render_view.php:150 ../../include/functions.php:3351
+msgid "10 seconds"
+msgstr "10 segundos"
+
+#: ../../operation/gis_maps/render_view.php:151 ../../operation/heatmap.php:171
+#: ../../include/ajax/heatmap.ajax.php:50
+#: ../../include/class/AgentsAlerts.class.php:816
+#: ../../include/functions.php:3353
+msgid "30 seconds"
+msgstr "30 segundos"
+
+#: ../../operation/gis_maps/render_view.php:152 ../../operation/heatmap.php:172
+#: ../../include/ajax/heatmap.ajax.php:51
+#: ../../include/class/AgentsAlerts.class.php:817
+#: ../../include/functions.php:3354
+msgid "1 minute"
+msgstr "1 minuto"
+
+#: ../../operation/gis_maps/render_view.php:153
+#: ../../include/class/AgentsAlerts.class.php:818
+#: ../../include/functions.php:3355
+msgid "2 minutes"
+msgstr "2 minutos"
+
+#: ../../operation/gis_maps/render_view.php:154 ../../operation/heatmap.php:174
+#: ../../include/ajax/module.php:198 ../../include/ajax/heatmap.ajax.php:53
+#: ../../include/class/AgentsAlerts.class.php:819
+#: ../../include/functions.php:3356
+msgid "5 minutes"
+msgstr "5 minutos"
+
+#: ../../operation/gis_maps/render_view.php:155
+#: ../../include/class/AgentsAlerts.class.php:820
+msgid "10 minutes"
+msgstr "10 minutos"
+
+#: ../../operation/gis_maps/render_view.php:156 ../../include/ajax/module.php:200
+#: ../../include/ajax/graph.ajax.php:146 ../../include/functions.php:2691
+#: ../../include/functions.php:3359
+#: ../../enterprise/godmode/reporting/graph_template_editor.php:217
+#: ../../godmode/setup/performance.php:529
+#: ../../godmode/reporting/create_container.php:346
+msgid "1 hour"
+msgstr "1 hora"
+
+#: ../../operation/gis_maps/render_view.php:157
+#: ../../enterprise/godmode/reporting/graph_template_editor.php:218
+msgid "2 hours"
+msgstr "2 horas"
+
+#: ../../operation/gis_maps/render_view.php:163
+#: ../../operation/snmpconsole/snmp_browser.php:389
+#: ../../operation/snmpconsole/snmp_browser.php:404
+#: ../../operation/snmpconsole/snmp_browser.php:414
+#: ../../operation/snmpconsole/snmp_browser.php:533
+#: ../../operation/snmpconsole/snmp_view.php:630
+#: ../../operation/snmpconsole/snmp_view.php:1114
+#: ../../operation/snmpconsole/snmp_view.php:1125
+#: ../../operation/events/events.php:1912
+#: ../../operation/events/events_list.php:530
+#: ../../operation/events/events_list.php:1283
+#: ../../operation/agentes/pandora_networkmap.editor.php:349
+#: ../../operation/agentes/pandora_networkmap.view.php:174
+#: ../../operation/agentes/ver_agente.php:1155
+#: ../../operation/agentes/ver_agente.php:1211
+#: ../../operation/agentes/ver_agente.php:1226
+#: ../../operation/users/user_edit.php:402
+#: ../../operation/users/user_edit.php:414
+#: ../../operation/users/user_edit.php:455
+#: ../../operation/users/user_edit.php:491
+#: ../../operation/users/user_edit.php:505
+#: ../../operation/users/user_edit.php:898
+#: ../../operation/users/user_edit.php:905
+#: ../../operation/users/user_edit.php:914
+#: ../../operation/users/user_edit.php:921
+#: ../../operation/incidents/list_integriaims_incidents.php:530
+#: ../../operation/incidents/list_integriaims_incidents.php:534
+#: ../../include/functions_cron.php:642
+#: ../../include/functions_visual_map_editor.php:404
+#: ../../include/functions_visual_map_editor.php:406
+#: ../../include/functions_visual_map_editor.php:622
+#: ../../include/functions_visual_map_editor.php:957
+#: ../../include/functions_visual_map_editor.php:1010
+#: ../../include/functions_visual_map_editor.php:1072
+#: ../../include/ajax/planned_downtime.ajax.php:85
+#: ../../include/ajax/custom_fields.php:668 ../../include/ajax/events.php:509
+#: ../../include/class/NetworkMap.class.php:2789
+#: ../../include/class/NetworkMap.class.php:3024
+#: ../../include/class/NetworkMap.class.php:3047
+#: ../../include/class/NetworkMap.class.php:3119
+#: ../../include/class/NetworkMap.class.php:3129
+#: ../../include/class/NetworkMap.class.php:3214
+#: ../../include/class/NetworkMap.class.php:3230
+#: ../../include/lib/Dashboard/Widgets/sla_percent.php:336
+#: ../../include/lib/Dashboard/Widgets/reports.php:490
+#: ../../include/lib/Dashboard/Widgets/custom_graph.php:355
+#: ../../include/lib/Dashboard/Widgets/maps_made_by_user.php:521
+#: ../../include/lib/Dashboard/Widgets/single_graph.php:311
+#: ../../include/lib/Dashboard/Widgets/graph_module_histogram.php:326
+#: ../../include/lib/Dashboard/Widgets/service_map.php:266
+#: ../../include/lib/Dashboard/Widgets/service_map.php:294
+#: ../../include/lib/Dashboard/Widgets/events_list.php:301
+#: ../../include/lib/Dashboard/Widgets/events_list.php:459
+#: ../../include/lib/Dashboard/Widgets/top_n.php:241
+#: ../../include/functions_events.php:3619
+#: ../../include/functions_events.php:3635
+#: ../../include/functions_profile.php:297
+#: ../../include/functions_profile.php:315
+#: ../../include/functions_profile.php:330
+#: ../../include/functions_integriaims.php:135
+#: ../../include/rest-api/models/VisualConsole/Item.php:2087
+#: ../../include/rest-api/models/VisualConsole/Item.php:2206
+#: ../../include/rest-api/models/VisualConsole/Item.php:2319
+#: ../../include/rest-api/models/VisualConsole/Item.php:2441
+#: ../../include/rest-api/models/VisualConsole/Items/BasicChart.php:318
+#: ../../include/rest-api/models/VisualConsole/Items/SimpleValue.php:364
+#: ../../include/rest-api/models/VisualConsole/Items/SimpleValue.php:399
+#: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:632
+#: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:644
+#: ../../include/functions_html.php:376 ../../include/functions_html.php:816
+#: ../../include/functions_html.php:1229 ../../include/functions_html.php:1281
+#: ../../include/functions_html.php:1328 ../../include/functions_html.php:1329
+#: ../../include/functions_html.php:1382 ../../include/functions_html.php:1432
+#: ../../include/functions_html.php:4572 ../../include/functions_html.php:5861
+#: ../../include/functions_networkmap.php:1519 ../../include/functions.php:1073
+#: ../../enterprise/tools/ipam/ipam_network.php:594
+#: ../../enterprise/tools/ipam/ipam_supernet_config.php:611
+#: ../../enterprise/tools/ipam/ipam_supernet_config.php:783
+#: ../../enterprise/tools/ipam/ipam_list.php:112
+#: ../../enterprise/tools/ipam/ipam_list.php:135
+#: ../../enterprise/tools/ipam/ipam_list.php:157
+#: ../../enterprise/tools/ipam/ipam_editor.php:206
+#: ../../enterprise/tools/ipam/ipam_editor.php:234
+#: ../../enterprise/views/ipam/sites/edit.php:71
+#: ../../enterprise/operation/log/log_viewer.php:735
+#: ../../enterprise/operation/agentes/ver_agente.php:38
+#: ../../enterprise/include/ajax/ipam.ajax.php:400
+#: ../../enterprise/include/ajax/ipam.ajax.php:428
+#: ../../enterprise/include/class/SAP.app.php:615
+#: ../../enterprise/include/class/SAP.app.php:810
+#: ../../enterprise/include/class/SAP.app.php:811
+#: ../../enterprise/include/class/Omnishell.class.php:858
+#: ../../enterprise/include/class/Omnishell.class.php:859
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:894
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:921
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1031
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1184
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1194
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2001
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2467
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2512
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3479
+#: ../../enterprise/include/functions_tasklist.php:317
+#: ../../enterprise/meta/event/custom_events.php:227
+#: ../../enterprise/meta/event/custom_events.php:273
+#: ../../enterprise/meta/monitoring/custom_fields_view.php:256
+#: ../../enterprise/meta/monitoring/wizard/wizard.php:142
+#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:269
+#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:366
+#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:423
+#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:691
+#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:762
+#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:833
+#: ../../enterprise/meta/advanced/metasetup.relations.php:245
+#: ../../enterprise/meta/advanced/metasetup.setup.php:394
+#: ../../enterprise/meta/advanced/metasetup.setup.php:400
+#: ../../enterprise/meta/advanced/metasetup.setup.php:410
+#: ../../enterprise/meta/advanced/metasetup.setup.php:416
+#: ../../enterprise/meta/advanced/metasetup.visual.php:289
+#: ../../enterprise/godmode/setup/setup.php:675
+#: ../../enterprise/godmode/setup/setup.php:692
+#: ../../enterprise/godmode/setup/setup.php:701
+#: ../../enterprise/godmode/setup/setup.php:718
+#: ../../enterprise/godmode/servers/manage_export_form.php:85
+#: ../../enterprise/godmode/modules/configure_local_component.php:543
+#: ../../enterprise/godmode/modules/configure_local_component.php:698
+#: ../../enterprise/godmode/modules/configure_local_component.php:704
+#: ../../enterprise/godmode/modules/configure_local_component.php:712
+#: ../../enterprise/godmode/modules/configure_local_component.php:718
+#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:194
+#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:578
+#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:597
+#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:611
+#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:621
+#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:631
+#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:635
+#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:661
+#: ../../enterprise/godmode/reporting/graph_template_wizard.php:193
+#: ../../enterprise/godmode/reporting/graph_template_wizard.php:398
+#: ../../enterprise/godmode/reporting/graph_template_wizard.php:417
+#: ../../enterprise/godmode/reporting/graph_template_wizard.php:428
+#: ../../enterprise/godmode/reporting/graph_template_wizard.php:443
+#: ../../enterprise/godmode/reporting/graph_template_wizard.php:475
+#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:262
+#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:774
+#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:795
+#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:810
+#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:820
+#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:830
+#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:834
+#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:861
+#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:184
+#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:437
+#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:581
+#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:589
+#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:599
+#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:621
+#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:674
+#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:707
+#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:727
+#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:737
+#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:758
+#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:778
+#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:803
+#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:826
+#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:847
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:314
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2977
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3194
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3278
+#: ../../enterprise/godmode/reporting/reporting_builder.global.php:60
+#: ../../enterprise/godmode/reporting/reporting_builder.global.php:518
+#: ../../enterprise/godmode/reporting/reporting_builder.global.php:535
+#: ../../enterprise/godmode/reporting/reporting_builder.global.php:551
+#: ../../enterprise/godmode/reporting/reporting_builder.global.php:567
+#: ../../enterprise/godmode/reporting/reporting_builder.global.php:591
+#: ../../enterprise/godmode/reporting/reporting_builder.global.php:607
+#: ../../enterprise/godmode/reporting/reporting_builder.global.php:649
+#: ../../enterprise/godmode/reporting/reporting_builder.global.php:682
+#: ../../enterprise/godmode/reporting/reporting_builder.global.php:691
+#: ../../enterprise/godmode/reporting/reporting_builder.global.php:710
+#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:215
+#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:247
+#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:253
+#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:265
+#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:275
+#: ../../enterprise/godmode/reporting/reporting_builder.template.php:1148
+#: ../../enterprise/godmode/reporting/reporting_builder.template.php:1272
+#: ../../enterprise/godmode/reporting/reporting_builder.template.php:1287
+#: ../../enterprise/godmode/reporting/reporting_builder.template.php:1297
+#: ../../enterprise/godmode/reporting/reporting_builder.template.php:1312
+#: ../../enterprise/godmode/reporting/reporting_builder.template.php:1334
+#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:80
+#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:386
+#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:409
+#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:906
+#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:922
+#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:943
+#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:952
+#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:1308
+#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:1336
+#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:1355
+#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:1382
+#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:471
+#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:862
+#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:977
+#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1091
+#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1126
+#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1173
+#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:121
+#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:142
+#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:154
+#: ../../enterprise/godmode/massive/massive_edit_tags_policy.php:125
+#: ../../enterprise/godmode/massive/massive_edit_tags_policy.php:211
+#: ../../enterprise/godmode/massive/massive_add_alerts_policy.php:111
+#: ../../enterprise/godmode/massive/massive_add_alerts_policy.php:132
+#: ../../enterprise/godmode/massive/massive_add_alerts_policy.php:144
+#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:28
+#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:205
+#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:244
+#: ../../enterprise/godmode/massive/massive_tags_edit_policy.php:117
+#: ../../enterprise/godmode/massive/massive_tags_edit_policy.php:197
+#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:29
+#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:265
+#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:396
+#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:473
+#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:549
+#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:550
+#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:551
+#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:552
+#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:601
+#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:473
+#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:604
+#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:700
+#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:857
+#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:167
+#: ../../enterprise/godmode/policies/policy_agents.php:391
+#: ../../enterprise/godmode/policies/policy_agents.php:1694
+#: ../../enterprise/godmode/policies/policy_external_alerts.php:579
+#: ../../enterprise/godmode/policies/policy_external_alerts.php:688
+#: ../../enterprise/godmode/policies/policy_alerts.php:583
+#: ../../mobile/operation/events.php:639
+#: ../../godmode/setup/setup_visuals.php:400
+#: ../../godmode/setup/setup_visuals.php:419
+#: ../../godmode/setup/setup_visuals.php:949
+#: ../../godmode/setup/os.builder.php:41
+#: ../../godmode/modules/manage_network_components_form.php:642
+#: ../../godmode/modules/manage_network_components_form.php:648
+#: ../../godmode/modules/manage_network_components_form.php:657
+#: ../../godmode/modules/manage_network_components_form.php:663
+#: ../../godmode/modules/manage_network_components_form_plugin.php:41
+#: ../../godmode/modules/manage_network_components_form_common.php:343
+#: ../../godmode/modules/manage_network_components_form_network.php:248
+#: ../../godmode/modules/manage_nc_groups_form.php:77
+#: ../../godmode/reporting/create_container.php:489
+#: ../../godmode/reporting/visual_console_builder.elements.php:482
+#: ../../godmode/reporting/visual_console_builder.elements.php:633
+#: ../../godmode/reporting/visual_console_builder.elements.php:643
+#: ../../godmode/reporting/reporting_builder.item_editor.php:194
+#: ../../godmode/reporting/reporting_builder.item_editor.php:906
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2029
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2102
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2123
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2155
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3034
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3195
+#: ../../godmode/reporting/graph_builder.graph_editor.php:329
+#: ../../godmode/reporting/visual_console_builder.wizard.php:266
+#: ../../godmode/reporting/visual_console_builder.wizard.php:438
+#: ../../godmode/reporting/visual_console_builder.wizard.php:451
+#: ../../godmode/reporting/visual_console_builder.wizard.php:485
+#: ../../godmode/reporting/visual_console_builder.wizard.php:498
+#: ../../godmode/reporting/visual_console_builder.wizard.php:536
+#: ../../godmode/reporting/visual_console_builder.wizard.php:537
+#: ../../godmode/reporting/visual_console_builder.wizard.php:732
+#: ../../godmode/reporting/visual_console_builder.wizard.php:742
+#: ../../godmode/reporting/visual_console_builder.wizard.php:774
+#: ../../godmode/snmpconsole/snmp_alert.php:27
+#: ../../godmode/snmpconsole/snmp_alert.php:1081
+#: ../../godmode/events/event_edit_filter.php:694
+#: ../../godmode/events/custom_events.php:181
+#: ../../godmode/events/custom_events.php:229
+#: ../../godmode/massive/massive_add_alerts.php:304
+#: ../../godmode/massive/massive_delete_modules.php:502
+#: ../../godmode/massive/massive_delete_modules.php:594
+#: ../../godmode/massive/massive_delete_modules.php:679
+#: ../../godmode/massive/massive_delete_modules.php:728
+#: ../../godmode/massive/massive_delete_modules.php:736
+#: ../../godmode/massive/massive_delete_modules.php:737
+#: ../../godmode/massive/massive_delete_modules.php:738
+#: ../../godmode/massive/massive_delete_modules.php:739
+#: ../../godmode/massive/massive_delete_modules.php:805
+#: ../../godmode/massive/massive_delete_modules.php:835
+#: ../../godmode/massive/massive_copy_modules.php:374
+#: ../../godmode/massive/massive_copy_modules.php:508
+#: ../../godmode/massive/massive_add_action_alerts.php:341
+#: ../../godmode/massive/massive_edit_agents.php:740
+#: ../../godmode/massive/massive_delete_alerts.php:359
+#: ../../godmode/massive/massive_edit_plugins.php:338
+#: ../../godmode/massive/massive_edit_modules.php:458
+#: ../../godmode/massive/massive_edit_modules.php:919
+#: ../../godmode/massive/massive_edit_modules.php:1053
+#: ../../godmode/massive/massive_edit_modules.php:1169
+#: ../../godmode/massive/massive_edit_modules.php:1204
+#: ../../godmode/massive/massive_edit_modules.php:1259
+#: ../../godmode/massive/massive_edit_modules.php:1345
+#: ../../godmode/massive/massive_edit_modules.php:1418
+#: ../../godmode/massive/massive_edit_modules.php:1527
+#: ../../godmode/massive/massive_edit_modules.php:1528
+#: ../../godmode/massive/massive_edit_modules.php:1529
+#: ../../godmode/massive/massive_edit_modules.php:1530
+#: ../../godmode/massive/massive_edit_modules.php:1769
+#: ../../godmode/massive/massive_edit_modules.php:1829
+#: ../../godmode/wizards/HostDevices.class.php:1098
+#: ../../godmode/agentes/module_manager_editor_plugin.php:55
+#: ../../godmode/agentes/module_manager_editor_common.php:733
+#: ../../godmode/agentes/module_manager_editor_common.php:1149
+#: ../../godmode/agentes/module_manager_editor_common.php:1405
+#: ../../godmode/agentes/module_manager_editor_common.php:1412
+#: ../../godmode/agentes/module_manager_editor_common.php:1423
+#: ../../godmode/agentes/module_manager_editor_common.php:1431
+#: ../../godmode/agentes/status_monitor_custom_fields.php:218
+#: ../../godmode/agentes/status_monitor_custom_fields.php:266
+#: ../../godmode/agentes/agent_manager.php:425
+#: ../../godmode/agentes/agent_manager.php:679
+#: ../../godmode/agentes/agent_manager.php:845
+#: ../../godmode/agentes/module_manager_editor_network.php:465
+#: ../../godmode/alerts/configure_alert_template.php:650
+#: ../../godmode/alerts/configure_alert_template.php:777
+#: ../../godmode/alerts/configure_alert_template.php:798
+#: ../../godmode/alerts/alert_list.list.php:748
+#: ../../godmode/alerts/alert_actions.php:291
+#: ../../godmode/alerts/alert_commands.php:302
+#: ../../godmode/alerts/alert_commands.php:316
+#: ../../godmode/alerts/alert_commands.php:376
+#: ../../godmode/alerts/alert_commands.php:389
+#: ../../godmode/alerts/configure_alert_action.php:264
+#: ../../godmode/users/configure_user.php:1073
+#: ../../godmode/users/configure_user.php:1087
+#: ../../godmode/users/configure_user.php:1281
+#: ../../godmode/users/configure_user.php:1293
+#: ../../godmode/groups/configure_group.php:188
+#: ../../godmode/groups/configure_group.php:210
+msgid "None"
+msgstr "Ninguno"
+
+#: ../../operation/gis_maps/render_view.php:167
+#: ../../operation/snmpconsole/snmp_statistics.php:218
+#: ../../operation/snmpconsole/snmp_statistics.php:275
+#: ../../operation/snmpconsole/snmp_view.php:636
+#: ../../operation/snmpconsole/snmp_view.php:1120
+#: ../../operation/snmpconsole/snmp_view.php:1149
+#: ../../operation/users/user_edit.php:362 ../../include/functions_graph.php:3060
+#: ../../include/functions_graph.php:3105 ../../include/functions_graph.php:3146
+#: ../../include/functions_graph.php:3188 ../../include/functions_graph.php:3265
+#: ../../include/functions_graph.php:3474 ../../include/functions_graph.php:3582
+#: ../../include/functions_graph.php:3647 ../../include/functions_graph.php:3814
+#: ../../include/functions_graph.php:3826 ../../include/functions_graph.php:3827
+#: ../../include/functions_graph.php:3830 ../../include/functions_graph.php:3835
+#: ../../include/functions_graph.php:3836 ../../include/functions_graph.php:3839
+#: ../../include/functions_graph.php:4837
+#: ../../include/functions_reporting.php:4847
+#: ../../include/functions_reporting.php:4859
+#: ../../include/functions_reporting.php:4860
+#: ../../include/functions_reporting.php:4863
+#: ../../include/functions_reporting.php:4868
+#: ../../include/functions_reporting.php:4869
+#: ../../include/functions_reporting.php:4872
+#: ../../enterprise/include/class/Aws.cloud.php:347
+#: ../../enterprise/include/functions_ipam.php:1597
+#: ../../enterprise/godmode/setup/setup_acl.php:475
+#: ../../enterprise/godmode/setup/setup_acl.php:479
+#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:34
+#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:35
+#: ../../extensions/api_checker.php:176
+#: ../../godmode/snmpconsole/snmp_alert.php:33
+#: ../../godmode/users/configure_user.php:1116
+#: ../../godmode/groups/configure_group.php:250
+msgid "Other"
+msgstr "Otros"
+
+#: ../../operation/gis_maps/render_view.php:170
+msgid "Filter by status"
+msgstr "Filtro por estado"
+
+#: ../../operation/gis_maps/render_view.php:173
+#: ../../operation/agentes/estado_agente.php:201
+#: ../../enterprise/include/functions_policies.php:3712
+#: ../../enterprise/meta/general/main_menu.php:577
+#: ../../enterprise/meta/general/main_menu.php:607
+#: ../../enterprise/meta/general/logon_ok.php:99
+#: ../../enterprise/godmode/servers/HA_cluster.php:70
+#: ../../enterprise/godmode/policies/configure_policy.php:38
+#: ../../godmode/menu.php:309 ../../godmode/menu.php:316
+#: ../../godmode/agentes/configurar_agente.php:390
+#: ../../godmode/agentes/configurar_agente.php:695
+#: ../../godmode/module_library/module_library_view.php:48
+msgid "Setup"
+msgstr "Configuración"
+
+#: ../../operation/gis_maps/render_view.php:178
+#: ../../include/lib/Dashboard/Widgets/network_map.php:323
+#: ../../enterprise/extensions/vmware/vmware_view.php:1306
+#: ../../enterprise/extensions/vmware/vmware_view.php:1348
+msgid "Map"
+msgstr "Mapa"
+
+#: ../../operation/search_users.php:43
+#: ../../operation/snmpconsole/snmp_view.php:876
+#: ../../operation/users/user_edit.php:258
+#: ../../include/functions_reporting_html.php:4969
+#: ../../include/functions_reporting_html.php:6167
+#: ../../include/functions_reporting_html.php:6190
+#: ../../enterprise/include/functions_reporting_csv.php:2549
+#: ../../enterprise/include/functions_reporting_csv.php:2559
+#: ../../godmode/users/user_list.php:479
+#: ../../godmode/users/configure_user.php:852
+#: ../../godmode/users/configure_user.php:868
+msgid "User ID"
+msgstr "ID usuario"
+
+#: ../../operation/search_users.php:45 ../../include/functions_cron.php:575
+#: ../../include/functions_cron.php:666
+#: ../../enterprise/operation/reporting/custom_reporting.php:20
+#: ../../enterprise/include/functions_tasklist.php:254
+#: ../../enterprise/include/functions_tasklist.php:341
+#: ../../enterprise/godmode/setup/setup_auth.php:99
+#: ../../godmode/tag/edit_tag.php:239 ../../godmode/tag/tag.php:281
+msgid "Email"
+msgstr "Correo electrónico"
+
+#: ../../operation/search_users.php:47
+msgid "Profile"
+msgstr "Perfil"
+
+#: ../../operation/search_users.php:62
+#: ../../enterprise/extensions/disabled/check_acls.php:63
+#: ../../enterprise/extensions/disabled/check_acls.php:150
+#: ../../enterprise/godmode/setup/setup_metaconsole.php:276
+#: ../../enterprise/godmode/servers/HA_cluster.php:177
+#: ../../godmode/users/user_list.php:483 ../../godmode/users/user_list.php:664
+msgid "Admin"
+msgstr "Administrador"
+
+#: ../../operation/search_users.php:63 ../../godmode/users/user_list.php:665
+#: ../../godmode/users/configure_user.php:984
+msgid "Administrator"
+msgstr "Administrador"
+
+#: ../../operation/search_users.php:72 ../../godmode/users/configure_user.php:999
+msgid "Standard User"
+msgstr "Usuario estándar"
+
+#: ../../operation/search_users.php:87 ../../include/functions_reporting.php:4421
+#: ../../include/functions_reporting.php:4468
+#: ../../godmode/users/user_list.php:723
+msgid "The user doesn't have any assigned profile/group"
+msgstr "El usuario no tiene ningún perfil asignado."
+
+#: ../../operation/reporting/graph_viewer.php:59
+#: ../../operation/reporting/graph_viewer.php:67
+#: ../../enterprise/tools/ipam/ipam_network_location_config.php:88
+#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:289
+#: ../../enterprise/meta/advanced/metasetup.relations.php:87
+#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:130
+#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:158
+#: ../../enterprise/godmode/reporting/graph_template_list.php:156
+#: ../../enterprise/godmode/reporting/graph_template_list.php:183
+#: ../../godmode/modules/manage_nc_groups.php:153
+#: ../../godmode/reporting/map_builder.php:210
+#: ../../godmode/reporting/graphs.php:152 ../../godmode/reporting/graphs.php:163
+#: ../../godmode/reporting/graphs.php:214
+#: ../../godmode/events/event_filter.php:70
+#: ../../godmode/events/event_filter.php:97 ../../godmode/netflow/nf_edit.php:105
+#: ../../godmode/netflow/nf_edit.php:138
+#: ../../godmode/netflow/nf_item_list.php:121
+#: ../../godmode/netflow/nf_item_list.php:149
+#: ../../godmode/agentes/planned_downtime.list.php:243
+msgid "Not deleted. Error deleting data"
+msgstr "No se pudo borrar. Error al borrar los datos."
+
+#: ../../operation/reporting/graph_viewer.php:182
+#: ../../operation/reporting/graph_viewer.php:214
+#: ../../enterprise/godmode/reporting/graph_template_wizard.php:99
+#: ../../enterprise/godmode/reporting/graph_template_wizard.php:113
+#: ../../enterprise/godmode/reporting/graph_template_list.php:54
+#: ../../enterprise/godmode/reporting/graph_template_list.php:73
+#: ../../enterprise/godmode/reporting/graph_template_list.php:87
+#: ../../godmode/reporting/graphs.php:67 ../../godmode/reporting/graphs.php:81
+#: ../../godmode/reporting/graph_container.php:77
+#: ../../godmode/reporting/graph_builder.php:287
+msgid "Graph list"
+msgstr "Lista de la gráfica"
+
+#: ../../operation/reporting/graph_viewer.php:204
+#: ../../godmode/reporting/graph_builder.php:309
+msgid "Graph editor"
+msgstr "Editor de gráficas"
+
+#: ../../operation/reporting/graph_viewer.php:223
+#: ../../godmode/reporting/graph_builder.php:320
+msgid "View graph"
+msgstr "Ver gráfica"
+
+#: ../../operation/reporting/graph_viewer.php:267
+#: ../../operation/reporting/graph_viewer.php:513
+#: ../../operation/reporting/custom_reporting.php:23
+#: ../../operation/reporting/reporting_viewer.php:211
+#: ../../operation/reporting/reporting_viewer.php:216
+#: ../../operation/reporting/reporting_viewer.php:229
+#: ../../operation/menu.php:311
+#: ../../enterprise/operation/agentes/transactional_map.php:70
+#: ../../enterprise/operation/agentes/manage_transmap_creation.php:169
+#: ../../enterprise/operation/agentes/manage_transmap_creation.php:349
+#: ../../enterprise/operation/agentes/manage_transmap_creation.php:471
+#: ../../enterprise/operation/agentes/manage_transmap.php:172
+#: ../../enterprise/meta/general/logon_ok.php:66
+#: ../../enterprise/godmode/reporting/graph_template_wizard.php:144
+#: ../../enterprise/godmode/reporting/mysql_builder.php:75
+#: ../../enterprise/godmode/reporting/mysql_builder.php:202
+#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:74
+#: ../../enterprise/godmode/reporting/graph_template_editor.php:103
+#: ../../enterprise/godmode/reporting/graph_template_list.php:128
+#: ../../enterprise/godmode/reporting/reporting_builder.template.php:272
+#: ../../enterprise/godmode/reporting/reporting_builder.template.php:285
+#: ../../enterprise/godmode/reporting/reporting_builder.template.php:306
+#: ../../enterprise/godmode/reporting/reporting_builder.template.php:319
+#: ../../enterprise/godmode/reporting/reporting_builder.template.php:340
+#: ../../enterprise/godmode/reporting/reporting_builder.template.php:353
+#: ../../enterprise/godmode/reporting/reporting_builder.template.php:374
+#: ../../enterprise/godmode/reporting/reporting_builder.template.php:387
+#: ../../godmode/reporting/graphs.php:129
+#: ../../godmode/reporting/graph_container.php:118
+#: ../../godmode/reporting/graph_builder.php:366
+#: ../../godmode/reporting/reporting_builder.php:572
+#: ../../godmode/reporting/reporting_builder.php:579
+#: ../../godmode/reporting/reporting_builder.php:592
+#: ../../godmode/reporting/reporting_builder.php:3471
+#: ../../godmode/reporting/reporting_builder.php:3478
+#: ../../godmode/reporting/reporting_builder.php:3491
+#: ../../godmode/reporting/reporting_builder.php:3582
+#: ../../godmode/reporting/reporting_builder.php:3589
+#: ../../godmode/reporting/reporting_builder.php:3605
+#: ../../godmode/reporting/reporting_builder.php:3634
+msgid "Reporting"
+msgstr "Informes"
+
+#: ../../operation/reporting/graph_viewer.php:271 ../../operation/menu.php:327
+#: ../../enterprise/godmode/reporting/graph_template_wizard.php:148
+#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:78
+#: ../../enterprise/godmode/reporting/graph_template_editor.php:107
+#: ../../enterprise/godmode/reporting/graph_template_list.php:132
+#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:373
+#: ../../godmode/reporting/graphs.php:133
+#: ../../godmode/reporting/graph_container.php:122
+#: ../../godmode/reporting/graph_builder.php:370
+msgid "Custom graphs"
+msgstr "Gráficos personalizados"
+
+#: ../../operation/reporting/graph_viewer.php:335
+msgid "No data."
+msgstr "Sin datos"
+
+#: ../../operation/reporting/graph_viewer.php:360
+#: ../../operation/agentes/graphs.php:218
+#: ../../operation/agentes/stat_win.php:338
+#: ../../operation/agentes/stat_win.php:441
+#: ../../operation/agentes/interface_traffic_graph_win.php:213
+msgid "Time range"
+msgstr "Rango de tiempo"
+
+#: ../../operation/reporting/graph_viewer.php:369
+#: ../../operation/reporting/graph_viewer.php:391
+msgid "Graph defined"
+msgstr "Gráfico definido"
+
+#: ../../operation/reporting/graph_viewer.php:370
+#: ../../operation/agentes/graphs.php:236 ../../operation/agentes/graphs.php:243
+#: ../../operation/agentes/graphs.php:409 ../../operation/agentes/graphs.php:428
+#: ../../include/functions_visual_map_editor.php:558
+#: ../../include/lib/Dashboard/Widgets/custom_graph.php:315
+#: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:652
+#: ../../enterprise/meta/advanced/metasetup.visual.php:348
+#: ../../enterprise/godmode/reporting/graph_template_editor.php:245
+#: ../../godmode/setup/setup_visuals.php:902
+#: ../../godmode/setup/setup_visuals.php:919
+#: ../../godmode/reporting/create_container.php:358
+#: ../../godmode/reporting/graph_builder.main.php:214
+msgid "Area"
+msgstr "Área"
+
+#: ../../operation/reporting/graph_viewer.php:371
+#: ../../include/lib/Dashboard/Widgets/custom_graph.php:316
+#: ../../enterprise/godmode/reporting/graph_template_editor.php:246
+#: ../../godmode/reporting/graph_builder.main.php:215
+msgid "Stacked area"
+msgstr "Área apilada"
+
+#: ../../operation/reporting/graph_viewer.php:373
+#: ../../include/lib/Dashboard/Widgets/custom_graph.php:318
+#: ../../enterprise/godmode/reporting/graph_template_editor.php:248
+#: ../../godmode/reporting/graph_builder.main.php:217
+msgid "Stacked line"
+msgstr "Línea apilada"
+
+#: ../../operation/reporting/graph_viewer.php:374
+#: ../../include/lib/Dashboard/Widgets/custom_graph.php:319
+#: ../../godmode/reporting/graph_builder.main.php:218
+msgid "Bullet chart"
+msgstr "Gráfico de puntos"
+
+#: ../../operation/reporting/graph_viewer.php:375
+#: ../../include/lib/Dashboard/Widgets/custom_graph.php:320
+#: ../../godmode/reporting/graph_builder.main.php:219
+msgid "Gauge"
+msgstr "Calibrador"
+
+#: ../../operation/reporting/graph_viewer.php:376
+#: ../../include/lib/Dashboard/Widgets/custom_graph.php:321
+msgid "Horizontal Bars"
+msgstr "Barras horizontales"
+
+#: ../../operation/reporting/graph_viewer.php:377
+#: ../../include/lib/Dashboard/Widgets/custom_graph.php:322
+msgid "Vertical Bars"
+msgstr "Barras verticales"
+
+#: ../../operation/reporting/graph_viewer.php:378
+#: ../../include/lib/Dashboard/Widgets/custom_graph.php:323
+#: ../../godmode/reporting/graph_builder.main.php:222
+msgid "Pie"
+msgstr "Gráfico circular"
+
+#: ../../operation/reporting/graph_viewer.php:383
+msgid "Equalize maxiddmum thresholds"
+msgstr "Equalizar umbrales maxiddmum"
+
+#: ../../operation/reporting/graph_viewer.php:383
+msgid ""
+"If an option is selected, all graphs will have the highest value from all "
+"modules included in the graph as a maximum threshold"
+msgstr ""
+"Si se selecciona una opción, todos los gráficos tendrán el valor más alto de "
+"todos los módulos incluidos en el gráfico como umbral máximo."
+
+#: ../../operation/reporting/graph_viewer.php:392
+msgid "Zoom x1"
+msgstr "Zoom x1"
+
+#: ../../operation/reporting/graph_viewer.php:393
+msgid "Zoom x2"
+msgstr "Ampliación x2"
+
+#: ../../operation/reporting/graph_viewer.php:394
+msgid "Zoom x3"
+msgstr "Zoom x3"
+
+#: ../../operation/reporting/graph_viewer.php:505
+#: ../../operation/reporting/reporting_viewer.php:426
+msgid "Invalid date selected"
+msgstr "Fecha seleccionada no válida"
+
+#: ../../operation/reporting/graph_viewer.php:513
+msgid "Custom graph viewer"
+msgstr "Visor de imágenes personalizadas"
+
+#: ../../operation/reporting/graph_viewer.php:524
+#: ../../operation/search_graphs.php:30 ../../include/functions_container.php:146
+#: ../../godmode/reporting/graphs.php:310
+msgid "Graph name"
+msgstr "Nombre del gráfico"
+
+#: ../../operation/reporting/graph_viewer.php:539
+#: ../../operation/reporting/custom_reporting.php:28
+msgid "There are no defined reportings"
+msgstr "No hay informes definidos"
+
+#: ../../operation/reporting/custom_reporting.php:23 ../../operation/menu.php:318
+#: ../../godmode/reporting/reporting_builder.php:551
+#: ../../godmode/reporting/reporting_builder.php:3450
+msgid "Custom reporting"
+msgstr "Informes personalizados"
+
+#: ../../operation/reporting/reporting_viewer.php:101
+#: ../../godmode/reporting/reporting_builder.php:210
+msgid "Your report has been planned, and the system will email you a "
+msgstr "Se ha planificado su informe, el sistema le enviará un email a "
+
+#: ../../operation/reporting/reporting_viewer.php:102
+#: ../../godmode/reporting/reporting_builder.php:211
+msgid "An error has ocurred"
+msgstr "Ha ocurrido un error"
+
+#: ../../operation/reporting/reporting_viewer.php:119
+#: ../../godmode/netflow/nf_item_list.php:27
+msgid "Report list"
+msgstr "Lista de informes"
+
+#: ../../operation/reporting/reporting_viewer.php:148
+#: ../../enterprise/godmode/reporting/reporting_builder.template.php:162
+#: ../../enterprise/godmode/reporting/reporting_builder.template.php:205
+#: ../../godmode/reporting/reporting_builder.php:3533
+msgid "List items"
+msgstr "Listado de elementos"
+
+#: ../../operation/reporting/reporting_viewer.php:157
+#: ../../enterprise/include/functions_reporting.php:8026
+#: ../../enterprise/include/functions_reporting.php:8092
+#: ../../enterprise/godmode/reporting/reporting_builder.template.php:151
+#: ../../enterprise/godmode/reporting/reporting_builder.template.php:218
+#: ../../godmode/reporting/reporting_builder.php:3537
+msgid "Item editor"
+msgstr "Editor de elementos"
+
+#: ../../operation/reporting/reporting_viewer.php:173
+#: ../../godmode/reporting/reporting_builder.php:3554
+msgid "View report"
+msgstr "Ver informe"
+
+#: ../../operation/reporting/reporting_viewer.php:233
+#: ../../enterprise/godmode/reporting/reporting_builder.template.php:289
+#: ../../enterprise/godmode/reporting/reporting_builder.template.php:323
+#: ../../enterprise/godmode/reporting/reporting_builder.template.php:357
+#: ../../enterprise/godmode/reporting/reporting_builder.template.php:391
+#: ../../godmode/reporting/reporting_builder.php:596
+#: ../../godmode/reporting/reporting_builder.php:3495
+#: ../../godmode/reporting/reporting_builder.php:3609
+#: ../../godmode/reporting/reporting_builder.php:3638
+msgid "Custom reports"
+msgstr "Reportes personalizados"
+
+#: ../../operation/reporting/reporting_viewer.php:249
+msgid "View Report"
+msgstr "Ver informe"
+
+#: ../../operation/reporting/reporting_viewer.php:291
+msgid "Set initial date"
+msgstr "Fijar fecha de inicio"
+
+#: ../../operation/reporting/reporting_viewer.php:304
+#: ../../operation/agentes/gis_view.php:220 ../../include/rest-api/index.php:359
+#: ../../include/rest-api/models/VisualConsole/Items/ColorCloud.php:449
+#: ../../include/rest-api/models/VisualConsole/Items/ColorCloud.php:510
+#: ../../include/functions_reporting_html.php:147
+#: ../../include/functions_reporting_html.php:2896
+#: ../../include/functions_reporting_html.php:3701
+#: ../../enterprise/include/functions_reporting_csv.php:715
+#: ../../enterprise/include/functions_reporting_csv.php:951
+#: ../../enterprise/include/functions_reporting_csv.php:1325
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2331
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2335
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3335
+#: ../../enterprise/include/functions_reporting_pdf.php:1794
+#: ../../enterprise/include/functions_reporting_pdf.php:1867
+#: ../../enterprise/include/functions_reporting_pdf.php:1982
+#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:127
+#: ../../enterprise/godmode/policies/policy_external_alerts.php:467
+#: ../../enterprise/godmode/policies/policy_alerts.php:436
+#: ../../godmode/agentes/planned_downtime.list.php:293
+#: ../../godmode/alerts/alert_list.list.php:644
+#: ../../godmode/alerts/alert_list.list.php:647
+#: ../../godmode/alerts/alert_templates.php:96
+msgid "From"
+msgstr "De"
+
+#: ../../operation/reporting/reporting_viewer.php:307
+#: ../../include/functions_reporting_html.php:150
+#: ../../enterprise/include/functions_reporting_pdf.php:1808
+msgid "Items period before"
+msgstr "Período de elementos antes de"
+
+#: ../../operation/reporting/reporting_viewer.php:308
+#: ../../include/ajax/alert_list.ajax.php:514
+#: ../../include/class/AgentsAlerts.class.php:316
+#: ../../include/functions_reporting.php:14048
+#: ../../include/functions_reporting_html.php:148
+#: ../../include/functions_reporting_html.php:2901
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1016
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2331
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2335
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2492
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3337
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3466
+#: ../../enterprise/include/functions_reporting_pdf.php:1800
+#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:129
+#: ../../enterprise/godmode/agentes/manage_config_remote.php:108
+#: ../../enterprise/godmode/policies/policy_external_alerts.php:467
+#: ../../enterprise/godmode/policies/policy_external_alerts.php:602
+#: ../../enterprise/godmode/policies/policy_alerts.php:436
+#: ../../enterprise/godmode/policies/policy_alerts.php:600
+#: ../../godmode/massive/massive_add_action_alerts.php:254
+#: ../../godmode/alerts/alert_list.list.php:644
+#: ../../godmode/alerts/alert_list.list.php:764
+#: ../../godmode/alerts/alert_list.builder.php:129
+#: ../../godmode/alerts/alert_templates.php:98
+msgid "to"
+msgstr "a"
+
+#: ../../operation/reporting/reporting_viewer.php:321
+msgid "Invalid date selected. Initial date must be before end date."
+msgstr ""
+"Fecha seleccionada no válida. La fecha inicial debe ser anterior a la fecha de "
+"finalización."
+
+#: ../../operation/menu.php:37 ../../operation/heatmap.php:137
+#: ../../operation/agentes/status_monitor.php:108
+#: ../../operation/agentes/alerts_status.php:204
+#: ../../operation/agentes/group_view.php:102
+#: ../../operation/agentes/interface_view.php:76
+#: ../../operation/agentes/tactical.php:82
+#: ../../operation/agentes/estado_agente.php:228
+#: ../../include/class/AgentsAlerts.class.php:754
+#: ../../enterprise/operation/agentes/tag_view.php:54
+#: ../../extensions/realtime_graphs.php:71 ../../extensions/module_groups.php:264
+#: ../../extensions/agents_modules.php:478
+msgid "Views"
+msgstr "Vistas"
+
+#: ../../operation/menu.php:45 ../../operation/agentes/tactical.php:69
+#: ../../operation/users/user_edit.php:360
+#: ../../include/lib/Dashboard/Widgets/tactical.php:176
+#: ../../include/lib/Dashboard/Widgets/tactical.php:482
+#: ../../enterprise/meta/general/main_menu.php:194
+#: ../../enterprise/meta/general/main_header.php:103
+#: ../../enterprise/meta/monitoring/tactical.php:63
+#: ../../mobile/operation/home.php:45 ../../mobile/operation/tactical.php:97
+#: ../../godmode/users/configure_user.php:1113
+msgid "Tactical view"
+msgstr "Vista táctica"
+
+#: ../../operation/menu.php:48 ../../operation/agentes/group_view.php:89
+#: ../../operation/users/user_edit.php:359
+#: ../../enterprise/meta/monitoring/group_view.php:72
+#: ../../godmode/users/configure_user.php:1112
+#: ../../godmode/groups/group_list.php:321
+msgid "Group view"
+msgstr "Vista de grupo"
+
+#: ../../operation/menu.php:54 ../../operation/agentes/estado_agente.php:215
+#: ../../godmode/agentes/agent_manager.php:226
+msgid "Agent detail"
+msgstr "Detalle de agente"
+
+#: ../../operation/menu.php:58 ../../operation/agentes/status_monitor.php:95
+msgid "Monitor detail"
+msgstr "Detalle del monitor"
+
+#: ../../operation/menu.php:61 ../../operation/agentes/interface_view.php:63
+msgid "Interface view"
+msgstr "Vista de interfaz"
+
+#: ../../operation/menu.php:66 ../../operation/agentes/alerts_status.php:191
+#: ../../operation/users/user_edit.php:361
+#: ../../godmode/users/configure_user.php:1114
+msgid "Alert detail"
+msgstr "Detalle de alertas"
+
+#: ../../operation/menu.php:69 ../../operation/heatmap.php:92
+msgid "Heatmap view"
+msgstr "Vista de mapa de calor"
+
+#: ../../operation/menu.php:78 ../../include/functions_ui.php:870
+#: ../../enterprise/tools/ipam/ipam_supernet_network.php:58
+#: ../../enterprise/tools/ipam/ipam_supernet_network.php:83
+#: ../../enterprise/tools/ipam/ipam_vlan_network.php:63
+#: ../../enterprise/tools/ipam/ipam_calculator.php:185
+#: ../../enterprise/tools/ipam/ipam_list.php:570
+#: ../../enterprise/tools/ipam/ipam_editor.php:122
+#: ../../enterprise/include/ajax/ipam.ajax.php:614
+#: ../../enterprise/include/ajax/ipam.ajax.php:644
+#: ../../enterprise/include/functions_ipam.php:1980
+#: ../../godmode/wizards/HostDevices.class.php:916
+#: ../../godmode/wizards/DiscoveryTaskList.class.php:597
+msgid "Network"
+msgstr "Red"
+
+#: ../../operation/menu.php:92 ../../operation/netflow/netflow_explorer.php:37
+msgid "Netflow explorer"
+msgstr "Explorador Netflow"
+
+#: ../../operation/menu.php:96
+msgid "Netflow Live View"
+msgstr "Netflow en tiempo real"
+
+#: ../../operation/menu.php:106 ../../operation/network/network_usage_map.php:29
+msgid "Network usage map"
+msgstr "Mapa de uso de red"
+
+#: ../../operation/menu.php:125 ../../include/functions_menu.php:531
+#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:461
+msgid "SNMP console"
+msgstr "Consola SNMP"
+
+#: ../../operation/menu.php:126
+msgid "SNMP browser"
+msgstr "Navegador SNMP"
+
+#: ../../operation/menu.php:131
+#: ../../operation/snmpconsole/snmp_mib_uploader.php:47
+msgid "MIB uploader"
+msgstr "Cargador MIB"
+
+#: ../../operation/menu.php:135
+msgid "SNMP filters"
+msgstr "Filtros SNMP"
+
+#: ../../operation/menu.php:136 ../../include/functions_menu.php:530
+msgid "SNMP trap generator"
+msgstr "Generador de traps SNMP"
+
+#: ../../operation/menu.php:141
+#: ../../operation/snmpconsole/snmp_statistics.php:102
+#: ../../operation/snmpconsole/snmp_view.php:697
+#: ../../operation/snmpconsole/snmp_view.php:806
+msgid "SNMP"
+msgstr "SNMP"
+
+#: ../../operation/menu.php:165
+#: ../../include/lib/Dashboard/Widgets/network_map.php:172
+#: ../../include/lib/Dashboard/Widgets/network_map.php:478
+msgid "Network map"
+msgstr "Mapa de red"
+
+#: ../../operation/menu.php:239 ../../operation/menu.php:241
+#: ../../operation/snmpconsole/snmp_view.php:1061
+#: ../../operation/snmpconsole/snmp_view.php:1062
+#: ../../operation/events/events.build_table.php:843
+#: ../../operation/events/events.php:2022 ../../operation/events/events.php:2188
+#: ../../include/functions_events.php:7280
+#: ../../enterprise/operation/agentes/wux_console_view.php:595
+msgid "Show more"
+msgstr "Mostrar más"
+
+#: ../../operation/menu.php:265
+msgid "List of Gis maps"
+msgstr "Lista de mapas GIS"
+
+#: ../../operation/menu.php:339 ../../operation/users/user_edit.php:363
+#: ../../include/class/OrderInterpreter.class.php:219
+#: ../../enterprise/extensions/vmware/vmware_view.php:1316
+#: ../../enterprise/extensions/vmware/vmware_view.php:1353
+#: ../../mobile/include/functions_web.php:22
+#: ../../godmode/users/configure_user.php:1119
+msgid "Dashboard"
+msgstr "Dashboard"
+
+#: ../../operation/menu.php:373 ../../operation/events/events.php:946
+#: ../../operation/events/events.php:959 ../../include/functions_reports.php:864
+#: ../../include/functions_reports.php:868
+#: ../../include/functions_reports.php:872 ../../include/functions.php:4086
+#: ../../enterprise/tools/ipam/ipam_massive.php:103
+#: ../../enterprise/tools/ipam/ipam_network.php:399
+#: ../../enterprise/include/class/CommandCenter.class.php:1071
+#: ../../enterprise/meta/general/main_menu.php:257
+#: ../../enterprise/meta/general/logon_ok.php:57
+#: ../../enterprise/meta/general/main_header.php:154
+#: ../../enterprise/meta/monitoring/tactical.php:272
+#: ../../mobile/operation/home.php:51 ../../mobile/operation/events.php:609
+#: ../../mobile/include/functions_web.php:25 ../../godmode/menu.php:269
+msgid "Events"
+msgstr "Eventos"
+
+#: ../../operation/menu.php:379 ../../enterprise/meta/event/custom_events.php:38
+#: ../../enterprise/godmode/reporting/graph_template_editor.php:255
+#: ../../godmode/users/configure_profile.php:298
+msgid "View events"
+msgstr "Ver eventos"
+
+#: ../../operation/menu.php:416
+msgid "RSS"
+msgstr "RSS"
+
+#: ../../operation/menu.php:425 ../../operation/events/sound_events.php:64
+msgid "Sound Events"
+msgstr "Eventos sonoros"
+
+#: ../../operation/menu.php:443 ../../operation/events/events.php:968
+msgid "Sound Alerts"
+msgstr "Alertas sonoras"
+
+#: ../../operation/menu.php:465
+msgid "Configure user notifications"
+msgstr "Configurar notificaciones de usuario"
+
+#: ../../operation/menu.php:485
+msgid "Integria IMS statistics"
+msgstr "Estadísticas de Integria IMS"
+
+#: ../../operation/menu.php:486
+msgid "Integria IMS ticket list"
+msgstr "Lista de tickets de Integria IMS"
+
+#: ../../operation/menu.php:499
+msgid "Messages List"
+msgstr "Lista de mensajes"
+
+#: ../../operation/menu.php:500
+msgid "New message"
+msgstr "Mensaje nuevo"
+
+#: ../../operation/menu.php:515 ../../operation/agentes/exportdata.php:34
+msgid "Export data"
+msgstr "Exportar datos"
+
+#: ../../operation/menu.php:521
+msgid "Scheduled downtime"
+msgstr "Desconexión programada"
+
+#: ../../operation/menu.php:595
+msgid "Tools"
+msgstr "Herramientas"
+
+#: ../../operation/search_maps.php:30
+#: ../../enterprise/godmode/services/services.elements.php:778
+msgid "Elements"
+msgstr "Elementos"
+
+#: ../../operation/network/network_report.php:67
+#: ../../operation/network/network_usage_map.php:124
+msgid "Data to show"
+msgstr "Datos a mostrar"
+
+#: ../../operation/network/network_report.php:78
+#: ../../operation/network/network_usage_map.php:104
+msgid "Number of result to show"
+msgstr "Número de resultados a mostrar"
+
+#: ../../operation/network/network_report.php:102
+#: ../../operation/network/network_usage_map.php:75
+#: ../../operation/netflow/nf_live_view.php:263
+#: ../../enterprise/operation/log/log_viewer.php:552
+msgid "Start date"
+msgstr "Fecha de inicio"
+
+#: ../../operation/network/network_report.php:109
+#: ../../operation/network/network_usage_map.php:82
+msgid "Time Period"
+msgstr "Período de tiempo"
+
+#: ../../operation/network/network_report.php:121
+#: ../../operation/network/network_usage_map.php:94
+#: ../../operation/netflow/nf_live_view.php:284
+msgid "Select this checkbox to write interval instead a date."
+msgstr "Seleccione esta casilla para escribir un intervalo en vex de una fecha."
+
+#: ../../operation/network/network_report.php:126
+#: ../../operation/network/network_usage_map.php:99
+#: ../../operation/netflow/nf_live_view.php:287
+#: ../../operation/agentes/exportdata.php:347
+#: ../../enterprise/operation/log/log_viewer.php:579
+msgid "End date"
+msgstr "Fecha final"
+
+#: ../../operation/network/network_report.php:140
+#: ../../operation/incidents/list_integriaims_incidents.php:428
+#: ../../include/class/ModuleTemplates.class.php:934
+#: ../../include/graphs/functions_flot.php:377
+#: ../../enterprise/operation/log/log_viewer.php:805
+#: ../../enterprise/operation/reporting/custom_reporting.php:80
+#: ../../enterprise/include/functions_ipam.php:339
+#: ../../enterprise/meta/monitoring/custom_fields_view.php:319
+#: ../../enterprise/godmode/reporting/reporting_builder.template.php:597
+#: ../../godmode/modules/manage_network_templates.php:288
+#: ../../godmode/agentes/planned_downtime.list.php:860
+msgid "Export to CSV"
+msgstr "Exportar a CSV"
+
+#: ../../operation/network/network_report.php:184
+#: ../../include/functions_visual_map_editor.php:1460
+#: ../../include/ajax/heatmap.ajax.php:319
+#: ../../include/class/AuditLog.class.php:194
+#: ../../include/functions_reporting_html.php:3014
+#: ../../include/functions_reporting_html.php:3340
+#: ../../enterprise/include/functions_reporting_csv.php:1933
+#: ../../enterprise/include/class/Aws.cloud.php:546
+#: ../../enterprise/include/class/Aws.S3.php:564
+#: ../../enterprise/include/class/VMware.app.php:621
+#: ../../enterprise/include/class/Azure.cloud.php:803
+#: ../../enterprise/include/class/DeploymentCenter.class.php:755
+#: ../../enterprise/include/class/DeploymentCenter.class.php:805
+#: ../../enterprise/include/class/DeploymentCenter.class.php:1280
+#: ../../enterprise/include/class/DeploymentCenter.class.php:1397
+#: ../../enterprise/include/functions_reporting.php:2315
+#: ../../enterprise/include/functions_ipam.php:1646
+#: ../../enterprise/include/functions_ipam.php:1647
+#: ../../enterprise/meta/monitoring/custom_fields_csv.php:100
+#: ../../enterprise/godmode/servers/HA_cluster.php:161
+#: ../../extensions/users_connected.php:144 ../../extensions/api_checker.php:123
+#: ../../godmode/reporting/visual_console_builder.elements.php:790
+#: ../../godmode/reporting/reporting_builder.item_editor.php:70
+msgid "IP"
+msgstr "IP"
+
+#: ../../operation/network/network_report.php:186
+#: ../../operation/network/network_report.php:233
+msgid "Flows"
+msgstr "Flujo"
+
+#: ../../operation/network/network_report.php:197
+#: ../../operation/network/network_report.php:235
+msgid "Packets"
+msgstr "Paquetes"
+
+#: ../../operation/network/network_report.php:206
+#: ../../operation/network/network_report.php:236
+#: ../../include/functions_config.php:1001
+#: ../../include/functions_config.php:3098
+#: ../../include/functions_netflow.php:349
+#: ../../enterprise/include/functions_reporting_csv.php:2808
+msgid "Bytes"
+msgstr "Bytes"
+
+#: ../../operation/network/network_report.php:256
+#, php-format
+msgid "Filtered by port %s. Click here to remove the filter."
+msgstr "Filtrado por puerto %s. Pinche aquí para eliminar el filtro."
+
+#: ../../operation/network/network_report.php:256
+#, php-format
+msgid "Filtered by IP %s. Click here to remove the filter."
+msgstr "Filtrado por IP %s. Pinche aquí para eliminar el filtro."
+
+#: ../../operation/network/network_report.php:324
+#: ../../include/functions_netflow.php:2078
+#: ../../include/functions_visual_map.php:2866
+#: ../../godmode/setup/performance.php:701
+msgid "Others"
+msgstr "Otros"
+
+#: ../../operation/network/network_usage_map.php:139
+msgid "Show netflow map"
+msgstr "Mostrar mapa de flujo de red"
+
+#: ../../operation/network/network_usage_map.php:175
+msgid "No data retrieved"
+msgstr "No se han obtenido datos"
+
+#: ../../operation/snmpconsole/snmp_mib_uploader.php:60
+#: ../../operation/snmpconsole/snmp_browser.php:90
+#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:57
+#: ../../godmode/snmpconsole/snmp_filters.php:59
+#: ../../godmode/snmpconsole/snmp_trap_generator.php:51
+msgid "SMNP"
+msgstr "SMNP"
+
+#: ../../operation/snmpconsole/snmp_mib_uploader.php:86
+msgid ""
+"MIB files will be installed on the system. Please note that a MIB may depend "
+"on other MIB. To customize trap definitions use the SNMP trap editor."
+msgstr ""
+"Los archivos MIB se instalarán en el sistema. Por favor, ten en cuenta que un "
+"MIB puede depender de otro MIB. Para personalizar las definiciones de trap, se "
+"debe usar el editor de trap SNMP."
+
+#: ../../operation/snmpconsole/snmp_browser.php:56
+#: ../../operation/snmpconsole/snmp_statistics.php:45
+#: ../../operation/snmpconsole/snmp_view.php:118
+#: ../../operation/agentes/networkmap.dinamic.php:102
+#: ../../operation/agentes/pandora_networkmap.view.php:2266
+msgid "Normal screen"
+msgstr "Pantalla normal"
+
+#: ../../operation/snmpconsole/snmp_browser.php:77
+msgid "SNMP Browser"
+msgstr "Navegador SNMP"
+
+#: ../../operation/snmpconsole/snmp_browser.php:155
+#: ../../operation/snmpconsole/snmp_browser.php:175
+#: ../../godmode/modules/manage_network_templates_form.php:260
+msgid "Add modules"
+msgstr "Añadir módulos"
+
+#: ../../operation/snmpconsole/snmp_browser.php:218
+msgid "Adding modules in progress"
+msgstr "Añadiendo módulos"
+
+#: ../../operation/snmpconsole/snmp_browser.php:225
+#: ../../godmode/reporting/visual_console_builder.editor.php:167
+#: ../../godmode/reporting/visual_console_builder.editor.php:169
+#: ../../godmode/reporting/visual_console_builder.editor.php:171
+msgid "Action in progress"
+msgstr "Acción en curso"
+
+#: ../../operation/snmpconsole/snmp_browser.php:541
+#: ../../include/functions_snmp_browser.php:1534
+msgid "Create new policy"
+msgstr "Crear nueva política"
+
+#: ../../operation/snmpconsole/snmp_browser.php:552
+msgid "Create policy"
+msgstr "Crear política"
+
+#: ../../operation/snmpconsole/snmp_browser.php:639
+#: ../../enterprise/meta/monitoring/wizard/wizard.module.web.php:113
+#: ../../enterprise/meta/monitoring/wizard/wizard.module.local.php:122
+#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:330
+#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:42
+#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:119
+#: ../../enterprise/meta/monitoring/wizard/wizard.create_agent.php:40
+#: ../../enterprise/meta/monitoring/wizard/wizard.module.network.php:135
+msgid "Create module"
+msgstr "Crear módulo"
+
+#: ../../operation/snmpconsole/snmp_browser.php:644
+msgid "Are you sure you want add module?"
+msgstr "¿Está seguro de que quiere añadir el módulo?"
+
+#: ../../operation/snmpconsole/snmp_browser.php:645
+#: ../../operation/agentes/pandora_networkmap.editor.php:602
+#: ../../include/class/ModuleTemplates.class.php:1381
+#: ../../include/class/HelpFeedBack.class.php:369
+#: ../../include/class/AgentWizard.class.php:6008
+#: ../../include/class/WelcomeWindow.class.php:173
+#: ../../include/class/ConfigPEN.class.php:668
+#: ../../include/class/ConfigPEN.class.php:692
+#: ../../include/class/CredentialStore.class.php:1241
+#: ../../include/lib/Dashboard/Widgets/maps_status.php:351
+#: ../../include/functions_db.php:1933
+#: ../../include/functions_reporting_html.php:659
+#: ../../include/functions_reporting_html.php:854
+#: ../../include/functions_reporting_html.php:3252
+#: ../../include/functions_reporting_html.php:4551
+#: ../../enterprise/operation/agentes/wux_console_view.php:424
+#: ../../enterprise/operation/agentes/ux_console_view.php:186
+#: ../../enterprise/operation/agentes/ux_console_view.php:384
+#: ../../enterprise/include/functions_reporting_csv.php:1539
+#: ../../enterprise/include/functions_reporting_csv.php:1585
+#: ../../enterprise/include/functions_reporting_csv.php:1903
+#: ../../enterprise/include/class/AgentRepository.class.php:898
+#: ../../enterprise/include/class/LogSource.class.php:844
+#: ../../enterprise/include/class/ManageBackups.class.php:292
+#: ../../enterprise/include/class/ManageBackups.class.php:445
+#: ../../enterprise/include/class/DeploymentCenter.class.php:1668
+#: ../../enterprise/include/class/DeploymentCenter.class.php:1720
+#: ../../enterprise/include/class/DatabaseHA.class.php:390
+#: ../../enterprise/include/class/DatabaseHA.class.php:625
+#: ../../enterprise/include/class/DatabaseHA.class.php:727
+#: ../../enterprise/include/functions_services.php:2080
+#: ../../enterprise/include/functions_reporting.php:1882
+#: ../../enterprise/include/functions_reporting.php:2929
+#: ../../enterprise/include/functions_reporting.php:3185
+#: ../../enterprise/include/functions_reporting.php:3917
+#: ../../enterprise/include/functions_reporting.php:4186
+#: ../../enterprise/include/functions_reporting.php:4832
+#: ../../enterprise/include/functions_reporting.php:6155
+#: ../../enterprise/include/functions_reporting.php:6193
+#: ../../enterprise/include/functions_ux_console.php:473
+#: ../../enterprise/godmode/services/services.service.php:967
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2557
+#: ../../enterprise/godmode/reporting/reporting_builder.global.php:428
+#: ../../extensions/module_groups.php:53
+#: ../../godmode/setup/setup_general.php:778
+#: ../../godmode/setup/setup_general.php:796
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2553
+#: ../../godmode/massive/massive_operations.php:392
+msgid "OK"
+msgstr "Aceptar"
+
+#: ../../operation/snmpconsole/snmp_statistics.php:78
+#: ../../operation/snmpconsole/snmp_view.php:99
+#: ../../operation/incidents/incident_statistics.php:21
+#: ../../enterprise/include/functions_ipam.php:1557
+msgid "Statistics"
+msgstr "Estadísticas"
+
+#: ../../operation/snmpconsole/snmp_statistics.php:85
+msgid "SNMP Statistics"
+msgstr "Estadísticas SNMP"
+
+#: ../../operation/snmpconsole/snmp_statistics.php:156
+#: ../../operation/snmpconsole/snmp_view.php:720
+msgid "There are no SNMP traps in database"
+msgstr "No hay ningún trap SNMP definido"
+
+#: ../../operation/snmpconsole/snmp_statistics.php:169
+msgid "Traps received by source"
+msgstr "Traps recibidos por el origen"
+
+#: ../../operation/snmpconsole/snmp_statistics.php:169
+#: ../../operation/snmpconsole/snmp_statistics.php:237
+#: ../../include/functions_reporting.php:1534
+#: ../../enterprise/include/functions_reporting_csv.php:932
+#, php-format
+msgid "Top %d"
+msgstr "Primeros %d"
+
+#: ../../operation/snmpconsole/snmp_statistics.php:183
+#: ../../operation/snmpconsole/snmp_statistics.php:251
+msgid "Number"
+msgstr "Número"
+
+#: ../../operation/snmpconsole/snmp_statistics.php:193
+#: ../../operation/snmpconsole/snmp_view.php:956
+#: ../../operation/agentes/estado_agente.php:968
+#: ../../operation/agentes/estado_agente.php:978
+#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:232
+#: ../../enterprise/meta/monitoring/wizard/wizard.agent.php:76
+#: ../../godmode/agentes/configurar_agente.php:841
+#: ../../godmode/agentes/modificar_agente.php:952
+msgid "Create agent"
+msgstr "Crear agente"
+
+#: ../../operation/snmpconsole/snmp_statistics.php:197
+#: ../../operation/snmpconsole/snmp_view.php:962
+msgid "View agent details"
+msgstr "Ver detalles del agente"
+
+#: ../../operation/snmpconsole/snmp_statistics.php:237
+msgid "Traps received by Enterprise String"
+msgstr "Traps recibidos por cadena Enterprise"
+
+#: ../../operation/snmpconsole/snmp_statistics.php:250
+msgid "Trap Enterprise String"
+msgstr "Traps Enterprise de cadena"
+
+#: ../../operation/snmpconsole/snmp_view.php:174
+#: ../../include/class/CalendarManager.class.php:487
+#: ../../include/class/CalendarManager.class.php:840
+#: ../../include/functions_alerts.php:2744
+#: ../../include/functions_planned_downtimes.php:124
+#: ../../enterprise/tools/ipam/ipam_network_location_config.php:71
+#: ../../enterprise/tools/ipam/ipam_massive.php:47
+#: ../../enterprise/tools/ipam/ipam_action.php:255
+#: ../../enterprise/operation/agentes/transactional_map.php:166
+#: ../../enterprise/include/class/NetworkConfigManager.class.php:1784
+#: ../../enterprise/include/class/NetworkConfigManager.class.php:1874
+#: ../../enterprise/include/class/NetworkConfigManager.class.php:1969
+#: ../../enterprise/include/class/NetworkConfigManager.class.php:2063
+#: ../../enterprise/include/class/NetworkConfigManager.class.php:2688
+#: ../../enterprise/meta/advanced/links.php:70
+#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:329
+#: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:69
+#: ../../enterprise/godmode/reporting/reporting_builder.template_editor.php:82
+#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:398
+#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:122
+#: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:111
+#: ../../enterprise/godmode/alerts/alert_inventory_builder.php:132
+#: ../../enterprise/godmode/policies/policy_modules.php:1249
+#: ../../godmode/setup/news.php:107 ../../godmode/setup/gis.php:39
+#: ../../godmode/setup/links.php:63
+#: ../../godmode/modules/manage_nc_groups.php:118
+#: ../../godmode/snmpconsole/snmp_alert.php:419
+#: ../../godmode/snmpconsole/snmp_filters.php:110
+#: ../../godmode/events/event_edit_filter.php:215
+#: ../../godmode/netflow/nf_edit_form.php:139
+#: ../../godmode/massive/massive_edit_modules.php:184
+#: ../../godmode/agentes/status_monitor_custom_fields.php:57
+#: ../../godmode/agentes/configurar_agente.php:1170
+#: ../../godmode/agentes/planned_downtime.editor.php:418
+#: ../../godmode/alerts/configure_alert_template.php:554
+#: ../../godmode/alerts/alert_templates.php:156
+#: ../../godmode/alerts/alert_list.php:94 ../../godmode/alerts/alert_list.php:312
+#: ../../godmode/alerts/configure_alert_command.php:144
+#: ../../godmode/users/profile_list.php:252
+msgid "Successfully updated"
+msgstr "Actualizado correctamente"
+
+#: ../../operation/snmpconsole/snmp_view.php:175
+#: ../../operation/agentes/pandora_networkmap.php:216
+#: ../../operation/agentes/pandora_networkmap.php:508
+#: ../../include/functions_alerts.php:2745
+#: ../../include/functions_planned_downtimes.php:122
+#: ../../enterprise/tools/ipam/ipam_massive.php:48
+#: ../../enterprise/tools/ipam/ipam_action.php:253
+#: ../../enterprise/operation/agentes/transactional_map.php:160
+#: ../../enterprise/include/ajax/servers.ajax.php:331
+#: ../../enterprise/godmode/servers/credential_boxes_satellite.php:112
+#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:330
+#: ../../enterprise/godmode/modules/local_components.php:393
+#: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:70
+#: ../../enterprise/godmode/reporting/reporting_builder.template_editor.php:83
+#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:123
+#: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:112
+#: ../../enterprise/godmode/alerts/alert_inventory_builder.php:133
+#: ../../enterprise/godmode/policies/policy_modules.php:1250
+#: ../../enterprise/godmode/policies/policies.php:212
+#: ../../godmode/setup/gis.php:41
+#: ../../godmode/modules/manage_network_components.php:525
+#: ../../godmode/agentes/status_monitor_custom_fields.php:57
+#: ../../godmode/agentes/planned_downtime.editor.php:408
+#: ../../godmode/alerts/configure_alert_template.php:555
+#: ../../godmode/alerts/alert_templates.php:157
+#: ../../godmode/alerts/alert_list.php:95 ../../godmode/alerts/alert_list.php:313
+#: ../../godmode/alerts/configure_alert_command.php:145
+msgid "Could not be updated"
+msgstr "No se pudo actualizar"
+
+#: ../../operation/snmpconsole/snmp_view.php:228
+#: ../../operation/snmpconsole/snmp_view.php:1263
+#: ../../operation/agentes/alerts_status.functions.php:96
+#: ../../mobile/operation/alerts.php:67
+#: ../../godmode/alerts/alert_list.list.php:138
+msgid "Not fired"
+msgstr "No disparadas"
+
+#: ../../operation/snmpconsole/snmp_view.php:229
+#: ../../operation/snmpconsole/snmp_view.php:1254
+#: ../../operation/agentes/alerts_status.functions.php:95
+#: ../../include/functions_reporting_html.php:2310
+#: ../../include/functions_reporting_html.php:3135
+#: ../../include/functions_reporting_html.php:3136
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2904
+#: ../../mobile/operation/alerts.php:66
+#: ../../godmode/alerts/alert_list.list.php:137
+msgid "Fired"
+msgstr "Disparada"
+
+#: ../../operation/snmpconsole/snmp_view.php:543
+#: ../../operation/snmpconsole/snmp_view.php:886
+#: ../../operation/snmpconsole/snmp_view.php:1246
+#: ../../operation/events/events.build_table.php:253
+#: ../../operation/agentes/estado_monitores.php:522
+#: ../../include/functions_events.php:200 ../../include/functions_events.php:263
+#: ../../include/functions_events.php:2693
+#: ../../include/functions_events.php:6726 ../../include/functions_snmp.php:324
+#: ../../include/functions.php:4093
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:4323
+#: ../../enterprise/meta/include/functions_events_meta.php:94
+#: ../../enterprise/godmode/alerts/alert_inventory_list.php:362
+#: ../../enterprise/godmode/policies/policy_external_alerts.php:382
+#: ../../godmode/events/custom_events.php:105
+#: ../../godmode/agentes/configurar_agente.php:733
+#: ../../godmode/alerts/configure_alert_template.php:1552
+msgid "Alert"
+msgstr "Alerta"
+
+#: ../../operation/snmpconsole/snmp_view.php:555
+#: ../../operation/events/events_list.php:852
+#: ../../operation/users/user_edit.php:308
+#: ../../include/functions_config.php:1019
+#: ../../enterprise/meta/include/functions_meta.php:1446
+#: ../../enterprise/meta/advanced/metasetup.visual.php:242
+#: ../../godmode/setup/setup_visuals.php:66
+#: ../../godmode/events/event_edit_filter.php:393
+#: ../../godmode/users/configure_user.php:1183
+msgid "Block size for pagination"
+msgstr "Tamaño de bloque para la paginación"
+
+#: ../../operation/snmpconsole/snmp_view.php:572
+#: ../../operation/events/events.build_table.php:263
+#: ../../operation/events/events.php:1157
+#: ../../operation/events/events_list.php:953
+#: ../../include/lib/Dashboard/Widgets/events_list.php:393
+#: ../../include/functions_events.php:201 ../../include/functions_events.php:266
+#: ../../include/functions_events.php:2602
+#: ../../include/functions_events.php:5050
+#: ../../include/functions_events.php:6732 ../../include/functions_snmp.php:335
+#: ../../include/functions_reporting_html.php:1050
+#: ../../include/functions_reporting_html.php:1058
+#: ../../include/functions_reporting_html.php:1269
+#: ../../include/functions_reporting_html.php:1277
+#: ../../include/functions_reporting_html.php:2355
+#: ../../enterprise/include/functions_events.php:137
+#: ../../enterprise/include/functions_reporting.php:2025
+#: ../../enterprise/meta/include/functions_events_meta.php:98
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2816
+#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:603
+#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor_form.php:72
+#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:384
+#: ../../mobile/operation/events.php:397 ../../mobile/operation/events.php:398
+#: ../../mobile/operation/events.php:532 ../../mobile/operation/events.php:691
+#: ../../mobile/operation/events.php:692
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2817
+#: ../../godmode/events/event_edit_filter.php:332
+#: ../../godmode/events/custom_events.php:106
+#: ../../godmode/events/event_filter.php:140
+msgid "Severity"
+msgstr "Gravedad"
+
+#: ../../operation/snmpconsole/snmp_view.php:587
+#: ../../operation/snmpconsole/snmp_view.php:931
+#: ../../operation/snmpconsole/snmp_view.php:1243
+#: ../../include/functions_events.php:6194
+#: ../../include/functions_events.php:6201
+msgid "Not validated"
+msgstr "Sin validar"
+
+#: ../../operation/snmpconsole/snmp_view.php:588
+#: ../../operation/snmpconsole/snmp_view.php:941
+#: ../../operation/snmpconsole/snmp_view.php:1234
+#: ../../include/functions_events.php:2628
+#: ../../include/functions_events.php:3386
+#: ../../include/functions_events.php:3675
+#: ../../include/functions_events.php:3684
+#: ../../include/functions_events.php:3691
+#: ../../include/functions_events.php:3698
+#: ../../include/functions_events.php:6192
+#: ../../include/functions_events.php:6200 ../../include/functions_graph.php:3326
+msgid "Validated"
+msgstr "Validado"
+
+#: ../../operation/snmpconsole/snmp_view.php:602
+msgid ""
+"Search by any alphanumeric field in the trap.\n"
+"\t\tREMEMBER trap sources need to be searched by IP Address"
+msgstr ""
+"Búsqueda según campos alfanuméricos en el trap.\n"
+"\t \tRECUERDA que las fuentes de trap tienen que buscarse según una dirección "
+"IP."
+
+#: ../../operation/snmpconsole/snmp_view.php:616
+#: ../../operation/events/events.php:1111 ../../operation/events/events.php:1700
+#: ../../operation/events/events_list.php:973
+#: ../../include/class/AuditLog.class.php:187
+#: ../../include/lib/Dashboard/Widgets/top_n_events_by_group.php:270
+#: ../../include/lib/Dashboard/Widgets/top_n_events_by_module.php:270
+#: ../../include/lib/Dashboard/Widgets/events_list.php:336
+#: ../../include/functions_snmp.php:401
+#: ../../enterprise/include/functions_events.php:229
+#: ../../mobile/operation/events.php:706
+#: ../../godmode/events/event_edit_filter.php:404
+msgid "Max. hours old"
+msgstr "Máx. horas de antiguedad"
+
+#: ../../operation/snmpconsole/snmp_view.php:628
+#: ../../include/functions_snmp.php:433
+#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:202
+#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:262
+#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:305
+#: ../../godmode/snmpconsole/snmp_alert.php:780
+#: ../../godmode/snmpconsole/snmp_alert.php:1078
+msgid "Trap type"
+msgstr "Clase de trap"
+
+#: ../../operation/snmpconsole/snmp_view.php:628
+msgid "Search by trap type"
+msgstr "Búsqueda por tipo de trap"
+
+#: ../../operation/snmpconsole/snmp_view.php:631
+#: ../../operation/snmpconsole/snmp_view.php:1115
+#: ../../operation/snmpconsole/snmp_view.php:1129
+#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:29
+#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:30
+#: ../../godmode/snmpconsole/snmp_alert.php:28
+msgid "Cold start (0)"
+msgstr "Inicio cero (0)"
+
+#: ../../operation/snmpconsole/snmp_view.php:632
+#: ../../operation/snmpconsole/snmp_view.php:1116
+#: ../../operation/snmpconsole/snmp_view.php:1133
+#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:30
+#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:31
+#: ../../godmode/snmpconsole/snmp_alert.php:29
+msgid "Warm start (1)"
+msgstr "Comienzo de inicio (1)"
+
+#: ../../operation/snmpconsole/snmp_view.php:633
+#: ../../operation/snmpconsole/snmp_view.php:1117
+#: ../../operation/snmpconsole/snmp_view.php:1137
+#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:31
+#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:32
+#: ../../godmode/snmpconsole/snmp_alert.php:30
+msgid "Link down (2)"
+msgstr "Enlace interrumpido (2)"
+
+#: ../../operation/snmpconsole/snmp_view.php:634
+#: ../../operation/snmpconsole/snmp_view.php:1118
+#: ../../operation/snmpconsole/snmp_view.php:1141
+#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:32
+#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:33
+#: ../../godmode/snmpconsole/snmp_alert.php:31
+msgid "Link up (3)"
+msgstr "Enlace activo  (3)"
+
+#: ../../operation/snmpconsole/snmp_view.php:635
+#: ../../operation/snmpconsole/snmp_view.php:1119
+#: ../../operation/snmpconsole/snmp_view.php:1145
+#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:33
+#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:34
+#: ../../godmode/snmpconsole/snmp_alert.php:32
+msgid "Authentication failure (4)"
+msgstr "Fallo de autentificación (4)"
+
+#: ../../operation/snmpconsole/snmp_view.php:652
+msgid "Group by Enterprise String/IP"
+msgstr "Agrupado por cadena Enterprise/IP"
+
+#: ../../operation/snmpconsole/snmp_view.php:653
+#: ../../operation/netflow/nf_live_view.php:452
+#: ../../operation/users/user_edit.php:321 ../../include/functions_cron.php:648
+#: ../../include/functions_snmp.php:390 ../../include/functions_profile.php:276
+#: ../../include/functions_reporting_html.php:1560
+#: ../../enterprise/include/functions_cron.php:757
+#: ../../enterprise/include/functions_reporting_csv.php:1940
+#: ../../enterprise/include/functions_tasklist.php:323
+#: ../../enterprise/include/functions_reporting.php:2337
+#: ../../enterprise/meta/monitoring/wizard/wizard.php:136
+#: ../../enterprise/meta/advanced/metasetup.performance.php:85
+#: ../../enterprise/meta/advanced/metasetup.setup.php:149
+#: ../../enterprise/meta/advanced/metasetup.setup.php:203
+#: ../../enterprise/meta/advanced/metasetup.setup.php:219
+#: ../../enterprise/meta/advanced/metasetup.setup.php:223
+#: ../../enterprise/meta/advanced/metasetup.setup.php:285
+#: ../../enterprise/meta/advanced/metasetup.setup.php:299
+#: ../../enterprise/meta/advanced/metasetup.setup.php:321
+#: ../../enterprise/meta/advanced/metasetup.setup.php:325
+#: ../../enterprise/meta/advanced/metasetup.setup.php:347
+#: ../../enterprise/meta/advanced/metasetup.password.php:80
+#: ../../enterprise/meta/advanced/metasetup.password.php:122
+#: ../../enterprise/meta/advanced/metasetup.password.php:127
+#: ../../enterprise/meta/advanced/metasetup.password.php:133
+#: ../../enterprise/meta/advanced/metasetup.password.php:139
+#: ../../enterprise/meta/advanced/metasetup.password.php:143
+#: ../../enterprise/meta/advanced/metasetup.password.php:147
+#: ../../enterprise/godmode/setup/setup_auth.php:208
+#: ../../enterprise/godmode/setup/setup_auth.php:338
+#: ../../enterprise/godmode/setup/setup_auth.php:386
+#: ../../enterprise/godmode/setup/setup_auth.php:1181
+#: ../../enterprise/godmode/reporting/visual_console_template.php:286
+#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:209
+#: ../../enterprise/godmode/reporting/reporting_builder.template.php:553
+#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:553
+#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:574
+#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:644
+#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:665
+#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:705
+#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:967
+#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1005
+#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1033
+#: ../../godmode/servers/modificar_server.php:47
+#: ../../godmode/update_manager/update_manager.setup.php:371
+#: ../../godmode/reporting/reporting_builder.main.php:194
+#: ../../godmode/reporting/reporting_builder.php:1092
+#: ../../godmode/reporting/visual_console_builder.wizard.php:380
+#: ../../godmode/reporting/visual_console_builder.wizard.php:467
+#: ../../godmode/massive/massive_edit_agents.php:663
+#: ../../godmode/massive/massive_edit_agents.php:986
+#: ../../godmode/massive/massive_edit_agents.php:995
+#: ../../godmode/massive/massive_edit_modules.php:616
+#: ../../godmode/massive/massive_edit_modules.php:638
+#: ../../godmode/massive/massive_edit_modules.php:707
+#: ../../godmode/massive/massive_edit_modules.php:729
+#: ../../godmode/massive/massive_edit_modules.php:769
+#: ../../godmode/massive/massive_edit_modules.php:1043
+#: ../../godmode/massive/massive_edit_modules.php:1081
+#: ../../godmode/massive/massive_edit_modules.php:1109
+#: ../../godmode/agentes/agent_conf_gis.php:125
+#: ../../godmode/alerts/alert_view.php:129
+#: ../../godmode/alerts/alert_view.php:259
+#: ../../godmode/users/configure_user.php:1099
+msgid "Yes"
+msgstr "Sí"
+
+#: ../../operation/snmpconsole/snmp_view.php:654
+#: ../../operation/netflow/nf_live_view.php:462
+#: ../../operation/users/user_edit.php:322 ../../include/functions_cron.php:648
+#: ../../include/functions_events.php:5039
+#: ../../include/functions_events.php:5044 ../../include/functions_snmp.php:382
+#: ../../include/functions_profile.php:276
+#: ../../include/functions_reporting_html.php:1560
+#: ../../enterprise/include/functions_cron.php:756
+#: ../../enterprise/include/functions_reporting_csv.php:1940
+#: ../../enterprise/include/functions_tasklist.php:323
+#: ../../enterprise/include/functions_reporting.php:2337
+#: ../../enterprise/meta/monitoring/wizard/wizard.php:137
+#: ../../enterprise/meta/advanced/metasetup.performance.php:86
+#: ../../enterprise/meta/advanced/metasetup.setup.php:150
+#: ../../enterprise/meta/advanced/metasetup.setup.php:213
+#: ../../enterprise/meta/advanced/metasetup.setup.php:220
+#: ../../enterprise/meta/advanced/metasetup.setup.php:224
+#: ../../enterprise/meta/advanced/metasetup.setup.php:286
+#: ../../enterprise/meta/advanced/metasetup.setup.php:309
+#: ../../enterprise/meta/advanced/metasetup.setup.php:322
+#: ../../enterprise/meta/advanced/metasetup.setup.php:335
+#: ../../enterprise/meta/advanced/metasetup.setup.php:357
+#: ../../enterprise/meta/advanced/metasetup.password.php:81
+#: ../../enterprise/meta/advanced/metasetup.password.php:123
+#: ../../enterprise/meta/advanced/metasetup.password.php:128
+#: ../../enterprise/meta/advanced/metasetup.password.php:134
+#: ../../enterprise/meta/advanced/metasetup.password.php:140
+#: ../../enterprise/meta/advanced/metasetup.password.php:144
+#: ../../enterprise/meta/advanced/metasetup.password.php:148
+#: ../../enterprise/godmode/setup/setup.php:64
+#: ../../enterprise/godmode/setup/setup_auth.php:208
+#: ../../enterprise/godmode/setup/setup_auth.php:341
+#: ../../enterprise/godmode/setup/setup_auth.php:389
+#: ../../enterprise/godmode/setup/setup_auth.php:1184
+#: ../../enterprise/godmode/reporting/visual_console_template.php:286
+#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:211
+#: ../../enterprise/godmode/reporting/reporting_builder.template.php:555
+#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:554
+#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:575
+#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:645
+#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:666
+#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:706
+#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:967
+#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1006
+#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1034
+#: ../../mobile/operation/events.php:195 ../../mobile/operation/events.php:200
+#: ../../godmode/setup/news.php:287 ../../godmode/servers/modificar_server.php:45
+#: ../../godmode/update_manager/update_manager.setup.php:372
+#: ../../godmode/reporting/reporting_builder.main.php:204
+#: ../../godmode/reporting/reporting_builder.php:1094
+#: ../../godmode/reporting/visual_console_builder.wizard.php:390
+#: ../../godmode/reporting/visual_console_builder.wizard.php:468
+#: ../../godmode/massive/massive_edit_agents.php:664
+#: ../../godmode/massive/massive_edit_agents.php:987
+#: ../../godmode/massive/massive_edit_agents.php:996
+#: ../../godmode/massive/massive_edit_modules.php:617
+#: ../../godmode/massive/massive_edit_modules.php:639
+#: ../../godmode/massive/massive_edit_modules.php:708
+#: ../../godmode/massive/massive_edit_modules.php:730
+#: ../../godmode/massive/massive_edit_modules.php:770
+#: ../../godmode/massive/massive_edit_modules.php:1043
+#: ../../godmode/massive/massive_edit_modules.php:1082
+#: ../../godmode/massive/massive_edit_modules.php:1110
+#: ../../godmode/agentes/agent_conf_gis.php:126
+#: ../../godmode/alerts/alert_view.php:129
+#: ../../godmode/alerts/alert_view.php:259
+#: ../../godmode/alerts/alert_view.php:352
+#: ../../godmode/users/configure_user.php:1100
+msgid "No"
+msgstr "No"
+
+#: ../../operation/snmpconsole/snmp_view.php:681
+#: ../../operation/snmpconsole/snmp_view.php:789
+#: ../../godmode/snmpconsole/snmp_alert.php:83
+#: ../../godmode/snmpconsole/snmp_alert.php:91
+#: ../../godmode/snmpconsole/snmp_alert.php:99
+#: ../../godmode/snmpconsole/snmp_filters.php:46
+msgid "SNMP Console"
+msgstr "Consola SNMP"
+
+#: ../../operation/snmpconsole/snmp_view.php:714
+#: ../../operation/snmpconsole/snmp_view.php:813
+#: ../../operation/agentes/alerts_status.php:501
+#: ../../operation/agentes/graphs.php:269
+#: ../../enterprise/meta/advanced/collections.php:200
+#: ../../enterprise/godmode/alerts/alert_inventory_list.php:174
+#: ../../enterprise/godmode/policies/policy_queue.php:524
+#: ../../enterprise/godmode/policies/policy_queue.php:636
+#: ../../enterprise/godmode/policies/policy_external_alerts.php:373
+#: ../../godmode/snmpconsole/snmp_alert.php:1093
+#: ../../godmode/alerts/alert_list.list.php:178
+#: ../../godmode/users/user_list.php:452
+msgid "Toggle filter(s)"
+msgstr "Conmutar filtro(s)"
+
+#: ../../operation/snmpconsole/snmp_view.php:718
+msgid "There are no SNMP traps in database that contains this filter"
+msgstr "No hay traps SNMP  en la base de datos que contengan este filtro"
+
+#: ../../operation/snmpconsole/snmp_view.php:758
+msgid "Refresh every"
+msgstr "Actualizar cada"
+
+#: ../../operation/snmpconsole/snmp_view.php:770
+msgid "SNMP Traps"
+msgstr "Traps SNMP"
+
+#: ../../operation/snmpconsole/snmp_view.php:854
+#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:303
+#: ../../godmode/snmpconsole/snmp_alert.php:743
+#: ../../godmode/snmpconsole/snmp_alert.php:1222
+#: ../../godmode/snmpconsole/snmp_trap_generator.php:125
+msgid "SNMP Agent"
+msgstr "Agente SNMP"
+
+#: ../../operation/snmpconsole/snmp_view.php:859
+#: ../../godmode/snmpconsole/snmp_alert.php:730
+#: ../../godmode/snmpconsole/snmp_alert.php:1226
+#: ../../godmode/snmpconsole/snmp_trap_generator.php:105
+msgid "Enterprise String"
+msgstr "Cadena Enterprise"
+
+#: ../../operation/snmpconsole/snmp_view.php:865
+#: ../../include/functions_reporting_html.php:1046
+#: ../../include/functions_reporting_html.php:1270
+#: ../../include/functions_reporting_html.php:2350
+#: ../../enterprise/include/lib/AlertCorrelation.class.php:1086
+msgid "Count"
+msgstr "Número"
+
+#: ../../operation/snmpconsole/snmp_view.php:871
+msgid "Trap subtype"
+msgstr "Subtipo trap"
+
+#: ../../operation/snmpconsole/snmp_view.php:974
+#: ../../operation/snmpconsole/snmp_view.php:994
+#: ../../operation/agentes/status_monitor.php:1711
+#: ../../operation/agentes/interface_view.functions.php:682
+#: ../../operation/agentes/interface_view.functions.php:683
+#: ../../operation/agentes/interface_view.functions.php:684
+#: ../../operation/agentes/interface_view.functions.php:685
+#: ../../operation/agentes/interface_view.functions.php:686
+#: ../../operation/agentes/estado_generalagente.php:219
+#: ../../operation/agentes/estado_generalagente.php:232
+#: ../../operation/agentes/estado_generalagente.php:244
+#: ../../operation/agentes/estado_generalagente.php:392
+#: ../../operation/agentes/estado_generalagente.php:408
+#: ../../operation/agentes/estado_generalagente.php:419
+#: ../../include/ajax/module.php:1168 ../../include/functions_events.php:3809
+#: ../../include/functions_events.php:3959
+#: ../../include/functions_events.php:3980
+#: ../../include/functions_events.php:3985
+#: ../../include/functions_events.php:3998
+#: ../../include/functions_events.php:3999
+#: ../../include/functions_events.php:4011
+#: ../../include/functions_events.php:4062
+#: ../../include/functions_events.php:4089
+#: ../../include/functions_events.php:4145
+#: ../../include/functions_events.php:4162
+#: ../../include/functions_events.php:4169
+#: ../../include/functions_events.php:4235
+#: ../../include/functions_events.php:4307
+#: ../../include/functions_events.php:4446
+#: ../../include/functions_events.php:4485
+#: ../../include/functions_events.php:4499
+#: ../../include/functions_events.php:4504
+#: ../../include/functions_events.php:4534
+#: ../../include/functions_events.php:4627
+#: ../../include/functions_events.php:4707
+#: ../../include/functions_events.php:4717
+#: ../../include/functions_events.php:4934
+#: ../../include/functions_events.php:5011
+#: ../../include/functions_events.php:5100
+#: ../../include/functions_events.php:5129
+#: ../../include/functions_events.php:5144
+#: ../../include/functions_events.php:5154
+#: ../../include/functions_events.php:5164
+#: ../../include/functions_events.php:7442
+#: ../../include/functions_events.php:7461
+#: ../../include/functions_events.php:7466
+#: ../../include/functions_events.php:7473
+#: ../../include/functions_events.php:7486
+#: ../../include/functions_events.php:7499
+#: ../../include/functions_events.php:7511
+#: ../../include/functions_events.php:7564
+#: ../../include/functions_events.php:7591
+#: ../../include/functions_events.php:7616
+#: ../../include/functions_events.php:7660 ../../include/functions_db.php:241
+#: ../../include/functions_servers.php:1362
+#: ../../include/functions_treeview.php:162
+#: ../../include/functions_treeview.php:327
+#: ../../include/functions_treeview.php:423 ../../include/functions_ui.php:2609
+#: ../../include/functions_ui.php:2617 ../../include/functions.php:1124
+#: ../../include/functions.php:1130 ../../include/functions.php:1134
+#: ../../include/functions_reporting_html.php:651
+#: ../../include/functions_reporting_html.php:654
+#: ../../include/functions_reporting_html.php:5228
+#: ../../include/functions_reporting_html.php:5281
+#: ../../enterprise/tools/ipam/ipam_ajax.php:366
+#: ../../enterprise/tools/ipam/ipam_ajax.php:387
+#: ../../enterprise/tools/ipam/ipam_network.php:435
+#: ../../enterprise/tools/ipam/ipam_network.php:515
+#: ../../enterprise/views/cluster/view.php:278
+#: ../../enterprise/views/cluster/view.php:293
+#: ../../enterprise/include/lib/Metaconsole/Node.php:505
+#: ../../enterprise/include/lib/Metaconsole/Node.php:1185
+#: ../../enterprise/include/functions_services.php:1190
+#: ../../enterprise/include/functions_services.php:1371
+#: ../../enterprise/include/functions_services.php:2077
+#: ../../enterprise/include/functions_aws.php:507
+#: ../../enterprise/include/functions_aws.php:508
+#: ../../enterprise/include/functions_reporting.php:6157
+#: ../../enterprise/include/functions_visual_map.php:320
+#: ../../enterprise/include/functions_servicemap.php:471
+#: ../../enterprise/meta/advanced/servers.build_table.php:100
+#: ../../enterprise/meta/advanced/servers.build_table.php:101
+#: ../../enterprise/meta/advanced/servers.build_table.php:107
+#: ../../enterprise/meta/advanced/metasetup.visual.php:895
+#: ../../mobile/operation/agent.php:192 ../../mobile/operation/agent.php:200
+#: ../../mobile/operation/events.php:161 ../../mobile/operation/events.php:167
+#: ../../mobile/operation/events.php:175 ../../mobile/operation/events.php:260
+#: ../../mobile/operation/events.php:290 ../../mobile/operation/events.php:298
+#: ../../godmode/servers/servers.build_table.php:147
+#: ../../godmode/servers/servers.build_table.php:148
+#: ../../godmode/servers/servers.build_table.php:154
+#: ../../godmode/modules/manage_network_components.php:776
+#: ../../godmode/modules/manage_network_components.php:777
+#: ../../godmode/extensions.php:186 ../../godmode/extensions.php:201
+#: ../../godmode/agentes/planned_downtime.list.php:812
+#: ../../godmode/alerts/alert_view.php:135
+msgid "N/A"
+msgstr "N/A"
+
+#: ../../operation/snmpconsole/snmp_view.php:1018
+#: ../../operation/events/sound_events.php:136
+#: ../../operation/agentes/group_view.php:234
+#: ../../include/class/AgentsAlerts.class.php:949
+#: ../../include/functions_events.php:2904
+#: ../../include/functions_events.php:3259
+#: ../../include/functions_agents.php:2939
+#: ../../include/functions_agents.php:2950
+#: ../../include/functions_reporting.php:12325
+#: ../../include/functions_ui.php:1247 ../../include/functions.php:1228
+#: ../../enterprise/operation/agentes/policy_view.php:345
+#: ../../enterprise/meta/monitoring/group_view.php:247
+#: ../../mobile/operation/alerts.php:324
+#: ../../godmode/alerts/alert_list.list.php:559
+#: ../../godmode/alerts/alert_view.php:105
+msgid "Alert fired"
+msgstr "Alerta disparada"
+
+#: ../../operation/snmpconsole/snmp_view.php:1020
+#: ../../include/class/AgentsAlerts.class.php:955
+#: ../../include/functions_agents.php:2941
+#: ../../include/functions_agents.php:2952
+#: ../../include/functions_reporting.php:12248
+#: ../../include/functions_ui.php:1253
+#: ../../enterprise/operation/agentes/policy_view.php:351
+#: ../../mobile/operation/alerts.php:330
+#: ../../godmode/alerts/alert_list.list.php:565
+#: ../../godmode/alerts/alert_view.php:111
+msgid "Alert not fired"
+msgstr "Alerta no disparada"
+
+#: ../../operation/snmpconsole/snmp_view.php:1027
+#: ../../operation/snmpconsole/snmp_view.php:1217
+#: ../../operation/snmpconsole/snmp_view.php:1267
+#: ../../operation/agentes/alerts_status.php:567
+#: ../../operation/agentes/alerts_status.php:604
+#: ../../operation/agentes/alerts_status.php:637
+#: ../../operation/agentes/alerts_status.php:723
+#: ../../include/ajax/alert_list.ajax.php:267
+#: ../../include/ajax/alert_list.ajax.php:293
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3130
+#: ../../enterprise/load_enterprise.php:749
+#: ../../enterprise/godmode/reporting/aws_view.php:181
+#: ../../enterprise/godmode/wizards/Cloud.class.php:325
+#: ../../mobile/operation/events.php:570 ../../godmode/setup/license.php:165
+msgid "Validate"
+msgstr "Validar"
+
+#: ../../operation/snmpconsole/snmp_view.php:1076
+msgid "Variable bindings:"
+msgstr "Enlaces variables"
+
+#: ../../operation/snmpconsole/snmp_view.php:1089
+msgid "See more details"
+msgstr "Ver más detalles"
+
+#: ../../operation/snmpconsole/snmp_view.php:1101
+msgid "Enterprise String:"
+msgstr "Cadena Enterprise:"
+
+#: ../../operation/snmpconsole/snmp_view.php:1107
+#: ../../enterprise/meta/include/functions_autoprovision.php:569
+#: ../../enterprise/meta/advanced/collections.data.php:432
+#: ../../enterprise/godmode/agentes/collections.data.php:523
+msgid "Description:"
+msgstr "Descripción:"
+
+#: ../../operation/snmpconsole/snmp_view.php:1153
+msgid "Trap type:"
+msgstr "Tipo trap:"
+
+#: ../../operation/snmpconsole/snmp_view.php:1179
+msgid "Count:"
+msgstr "Contar:"
+
+#: ../../operation/snmpconsole/snmp_view.php:1183
+msgid "First trap:"
+msgstr "Primer trap:"
+
+#: ../../operation/snmpconsole/snmp_view.php:1187
+msgid "Last trap:"
+msgstr "Último trap:"
+
+#: ../../operation/snmpconsole/snmp_view.php:1208
+msgid "No matching traps found"
+msgstr "No se encontraron traps coincidentes."
+
+#: ../../operation/snmpconsole/snmp_view.php:1272
+#: ../../include/functions_reporting_html.php:2003
+#: ../../enterprise/operation/services/services.service_map.php:104
+#: ../../extensions/module_groups.php:391 ../../extensions/agents_modules.php:947
+#: ../../godmode/snmpconsole/snmp_alert.php:1469
+msgid "Legend"
+msgstr "Leyenda"
+
+#: ../../operation/heatmap.php:70 ../../operation/heatmap.php:279
+#: ../../operation/agentes/pandora_networkmap.php:800
+#: ../../enterprise/operation/services/services.list.php:625
+msgid "Config"
+msgstr "Configuración"
+
+#: ../../operation/heatmap.php:96 ../../operation/heatmap.php:98
+#: ../../operation/agentes/status_monitor.php:517
+#: ../../operation/agentes/estado_monitores.php:552
+#: ../../operation/agentes/ver_agente.php:1148
+#: ../../include/ajax/heatmap.ajax.php:190
+#: ../../include/ajax/heatmap.ajax.php:249
+#: ../../include/ajax/heatmap.ajax.php:288
+#: ../../include/functions_events.php:4546
+#: ../../include/functions_treeview.php:122
+#: ../../include/functions_graph.php:5366 ../../include/functions_html.php:1560
+#: ../../enterprise/operation/agentes/tag_view.php:156
+#: ../../enterprise/operation/agentes/ver_agente.php:35
+#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:155
+#: ../../enterprise/godmode/modules/configure_local_component.php:259
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2014
+#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:832
+#: ../../extensions/agents_modules.php:410 ../../mobile/operation/modules.php:183
+#: ../../mobile/operation/modules.php:184 ../../mobile/operation/modules.php:293
+#: ../../mobile/operation/modules.php:294
+#: ../../godmode/modules/manage_network_components_form_common.php:111
+#: ../../godmode/reporting/create_container.php:540
+#: ../../godmode/reporting/reporting_builder.item_editor.php:1538
+#: ../../godmode/massive/massive_edit_modules.php:889
+#: ../../godmode/agentes/module_manager_editor_common.php:265
+msgid "Module group"
+msgstr "Grupo del módulo"
+
+#: ../../operation/heatmap.php:96 ../../operation/agentes/status_monitor.php:518
+#: ../../include/ajax/heatmap.ajax.php:196
+#: ../../include/functions_treeview.php:116
+#: ../../include/functions_graph.php:5316
+#: ../../enterprise/operation/agentes/tag_view.php:157
+#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:835
+#: ../../godmode/massive/massive_edit_modules.php:892
+#: ../../godmode/agentes/module_manager_editor_common.php:271
+#: ../../godmode/agentes/module_manager_editor_common.php:1188
+msgid "Not assigned"
+msgstr "Sin asignar"
+
+#: ../../operation/heatmap.php:109 ../../operation/agentes/group_view.php:320
+#: ../../include/ajax/heatmap.ajax.php:126
+#: ../../include/ajax/heatmap.ajax.php:296
+#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:330
+#: ../../mobile/operation/modules.php:194 ../../mobile/operation/modules.php:195
+#: ../../mobile/operation/modules.php:308 ../../mobile/operation/modules.php:309
+#: ../../godmode/reporting/create_container.php:566
+#: ../../godmode/reporting/create_container.php:629
+msgid "Tag"
+msgstr "Etiqueta"
+
+#: ../../operation/heatmap.php:173 ../../include/ajax/heatmap.ajax.php:52
+msgid "3 minutes"
+msgstr "3 minutos"
+
+#: ../../operation/heatmap.php:291 ../../operation/agentes/status_monitor.php:538
+#: ../../operation/agentes/interface_view.functions.php:120
+#: ../../operation/agentes/interface_view.functions.php:158
+#: ../../include/class/ConfigPEN.class.php:252
+#: ../../include/class/CredentialStore.class.php:1098
+#: ../../enterprise/operation/agentes/tag_view.php:175
+#: ../../enterprise/include/class/AgentRepository.class.php:771
+#: ../../enterprise/include/class/LogSource.class.php:766
+#: ../../enterprise/include/class/Omnishell.class.php:1124
+#: ../../enterprise/include/class/DeploymentCenter.class.php:1533
+#: ../../enterprise/meta/monitoring/custom_fields_view.php:304
+#: ../../enterprise/extensions/vmware/vmware_view.php:1519
+#: ../../godmode/users/user_list.php:693
+msgid "Show"
+msgstr "Mostrar"
+
+#: ../../operation/search_agents.php:93
+#: ../../operation/agentes/alerts_status.functions.php:97
+#: ../../operation/agentes/estado_generalagente.php:101
+#: ../../operation/agentes/estado_generalagente.php:103
+#: ../../include/functions_visual_map_editor.php:826
+#: ../../include/functions_treeview.php:72
+#: ../../include/functions_treeview.php:613
+#: ../../include/functions_reporting.php:6321
+#: ../../include/rest-api/models/VisualConsole/Items/StaticGraph.php:397
+#: ../../include/functions_reporting_html.php:3354
+#: ../../enterprise/views/cluster/view.php:162
+#: ../../enterprise/views/cluster/view.php:164
+#: ../../enterprise/include/class/VMware.app.php:888
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3211
+#: ../../enterprise/include/class/DatabaseHA.class.php:211
+#: ../../enterprise/include/lib/NetworkManager.php:190
+#: ../../enterprise/include/functions_policies.php:4780
+#: ../../enterprise/meta/include/functions_wizard_meta.php:243
+#: ../../enterprise/meta/include/functions_wizard_meta.php:528
+#: ../../enterprise/meta/include/functions_wizard_meta.php:600
+#: ../../enterprise/meta/include/functions_wizard_meta.php:1148
+#: ../../enterprise/meta/include/functions_wizard_meta.php:1533
+#: ../../enterprise/meta/include/functions_wizard_meta.php:1626
+#: ../../enterprise/meta/include/functions_wizard_meta.php:1820
+#: ../../enterprise/meta/agentsearch.php:251
+#: ../../enterprise/meta/agentsearch.php:258
+#: ../../enterprise/godmode/setup/edit_skin.php:276
+#: ../../enterprise/godmode/modules/configure_local_component.php:459
+#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:701
+#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:118
+#: ../../enterprise/godmode/policies/policy_agents.php:1736
+#: ../../enterprise/godmode/policies/policy_agents.php:1751
+#: ../../mobile/operation/agent.php:167 ../../mobile/operation/alerts.php:68
+#: ../../godmode/massive/massive_edit_agents.php:917
+#: ../../godmode/massive/massive_edit_agents.php:1017
+#: ../../godmode/massive/massive_edit_modules.php:765
+#: ../../godmode/agentes/module_manager_editor_common.php:257
+#: ../../godmode/agentes/module_manager_editor_common.php:897
+#: ../../godmode/agentes/module_manager_editor_common.php:1059
+#: ../../godmode/agentes/modificar_agente.php:761
+#: ../../godmode/alerts/configure_alert_template.php:899
+#: ../../godmode/alerts/alert_list.list.php:139
+#: ../../godmode/alerts/alert_view.php:541
+#: ../../godmode/groups/group_list.php:908
+msgid "Disabled"
+msgstr "Deshabilitado"
+
+#: ../../operation/search_agents.php:100
+#: ../../operation/agentes/estado_agente.php:831
+#: ../../operation/agentes/estado_generalagente.php:112
+#: ../../operation/agentes/estado_generalagente.php:122
+#: ../../include/ajax/module.php:1128 ../../include/class/Tree.class.php:907
+#: ../../enterprise/views/cluster/view.php:168
+#: ../../enterprise/views/cluster/view.php:170
+#: ../../enterprise/godmode/services/services.service.php:738
+#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1028
+#: ../../enterprise/godmode/massive/massive_create_services.php:819
+#: ../../mobile/operation/agent.php:174
+#: ../../godmode/massive/massive_edit_agents.php:990
+#: ../../godmode/massive/massive_edit_modules.php:1104
+#: ../../godmode/agentes/module_manager.php:985
+#: ../../godmode/agentes/module_manager_editor_common.php:1056
+#: ../../godmode/agentes/agent_manager.php:644
+#: ../../godmode/agentes/planned_downtime.editor.php:588
+#: ../../godmode/agentes/planned_downtime.list.php:655
+#: ../../godmode/agentes/modificar_agente.php:775
+msgid "Quiet"
+msgstr "Modo silencioso"
+
+#: ../../operation/search_agents.php:111
+#: ../../operation/agentes/estado_agente.php:839
+#: ../../operation/agentes/estado_generalagente.php:133
+#: ../../operation/agentes/estado_generalagente.php:141
+#: ../../enterprise/views/cluster/view.php:178
+#: ../../enterprise/views/cluster/view.php:186
+#: ../../godmode/agentes/modificar_agente.php:783
+msgid "Agent in scheduled downtime"
+msgstr "Agente en parada programada"
+
+#: ../../operation/search_agents.php:132 ../../operation/search_agents.php:133
+#: ../../operation/agentes/ver_agente.php:1348
+#: ../../enterprise/tools/ipam/ipam.php:426
+#: ../../enterprise/meta/advanced/metasetup.consoles.php:841
+#: ../../enterprise/godmode/agentes/agent_autoconfiguration.php:103
+#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:301
+msgid "Manage"
+msgstr "Gestionar"
+
+#: ../../operation/events/events_rss.php:195
+msgid "Your IP is not into the IP list with API access."
+msgstr "Tu IP no se encuentra en el listado de IPs con acceso a la API."
+
+#: ../../operation/events/events_rss.php:214
+msgid "The URL of your feed has bad hash."
+msgstr "La URL de tu feed tiene mal el hash."
+
+#: ../../operation/events/sound_events.php:86
+msgid "Sound console"
+msgstr "Consola sonora"
+
+#: ../../operation/events/sound_events.php:145
+#: ../../include/functions_reporting.php:11409
+#: ../../enterprise/meta/monitoring/custom_fields_view.php:452
+msgid "Monitor critical"
+msgstr "Monitor crítico"
+
+#: ../../operation/events/sound_events.php:154
+#: ../../include/functions_reporting.php:11424
+#: ../../enterprise/meta/monitoring/custom_fields_view.php:485
+msgid "Monitor unknown"
+msgstr "Monitor en estado desconocido"
+
+#: ../../operation/events/sound_events.php:163
+#: ../../include/functions_reporting.php:11413
+#: ../../enterprise/meta/monitoring/custom_fields_view.php:463
+msgid "Monitor warning"
+msgstr "Monitor en estado de advertencia"
+
+#: ../../operation/events/sound_events.php:186
+msgid "Event"
+msgstr "Evento"
+
+#: ../../operation/events/events.build_table.php:81
+msgid "More detail"
+msgstr "Más detalles"
+
+#: ../../operation/events/events.build_table.php:105
+#: ../../operation/events/events.build_table.php:107
+msgid "The Agent: "
+msgstr "El agente: "
+
+#: ../../operation/events/events.build_table.php:105
+#: ../../operation/events/events.build_table.php:107
+msgid " has "
+msgstr " tiene "
+
+#: ../../operation/events/events.build_table.php:105
+#: ../../operation/events/events.build_table.php:107
+msgid " events."
+msgstr " eventos."
+
+#: ../../operation/events/events.build_table.php:134
+#: ../../operation/events/events.build_table.php:1164
+#: ../../include/functions_events.php:2575
+#: ../../include/functions_events.php:2578
+#: ../../include/functions_reporting.php:2000
+#: ../../include/functions_reporting.php:2299
+#: ../../include/functions_reporting_html.php:5881
+#: ../../include/functions_reporting_html.php:6066
+#: ../../mobile/operation/events.php:865
+msgid "No events"
+msgstr "No hay eventos"
+
+#: ../../operation/events/events.build_table.php:156
+#: ../../operation/events/events.php:1252
+#: ../../operation/events/events_list.php:821
+#: ../../include/class/AgentWizard.class.php:1181
+#: ../../include/functions_events.php:6657
+#: ../../include/functions_reporting_html.php:2072
+#: ../../enterprise/operation/log/log_viewer.php:613
+#: ../../enterprise/operation/inventory/inventory.php:317
+#: ../../enterprise/include/functions_reporting_csv.php:2733
+#: ../../enterprise/include/class/SAPView.class.php:226
+#: ../../enterprise/include/class/CSVImportAgents.class.php:152
+#: ../../enterprise/include/functions_events.php:283
+#: ../../enterprise/meta/include/functions_wizard_meta.php:174
+#: ../../enterprise/meta/include/functions_wizard_meta.php:1799
+#: ../../enterprise/meta/monitoring/custom_fields_csv.php:101
+#: ../../enterprise/meta/monitoring/custom_fields_view.php:706
+#: ../../enterprise/meta/monitoring/wizard/wizard.manage_alert.php:197
+#: ../../enterprise/meta/advanced/policymanager.queue.php:256
+#: ../../enterprise/meta/agentsearch.php:133
+#: ../../enterprise/meta/agentsearch.php:326
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1962
+#: ../../godmode/modules/manage_network_components.php:749
+#: ../../godmode/reporting/reporting_builder.item_editor.php:1095
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3481
+#: ../../godmode/massive/massive_edit_agents.php:743
+#: ../../godmode/wizards/DiscoveryTaskList.class.php:1043
+#: ../../godmode/agentes/module_manager.php:844
+#: ../../godmode/agentes/agent_manager.php:411
+msgid "Server"
+msgstr "Servidor"
+
+#: ../../operation/events/events.build_table.php:162
+#: ../../include/functions_events.php:4978
+#: ../../include/functions_events.php:6669 ../../mobile/operation/events.php:512
+msgid "Event ID"
+msgstr "ID del evento"
+
+#: ../../operation/events/events.build_table.php:172
+#: ../../include/functions_events.php:233 ../../include/functions_events.php:6675
+#: ../../mobile/operation/events.php:124
+#: ../../godmode/events/custom_events.php:95
+msgid "Event Name"
+msgstr "Nombre del evento"
+
+#: ../../operation/events/events.build_table.php:182
+#: ../../operation/events/events.php:1934 ../../include/functions_events.php:193
+#: ../../include/functions_events.php:239 ../../include/functions_events.php:2615
+#: ../../include/functions_events.php:6682
+#: ../../include/functions_treeview.php:617
+#: ../../include/functions_reporting_html.php:3337
+#: ../../enterprise/include/functions_reporting_csv.php:871
+#: ../../enterprise/include/functions_ipam.php:2039
+#: ../../enterprise/meta/include/functions_events_meta.php:66
+#: ../../mobile/operation/modules.php:597 ../../mobile/operation/modules.php:849
+#: ../../godmode/agentes/agent_manager.php:213
+#: ../../godmode/agentes/modificar_agente.php:647
+msgid "Agent name"
+msgstr "Nombre del agente"
+
+#: ../../operation/events/events.build_table.php:212
+#: ../../operation/incidents/integriaims_export_csv.php:89
+#: ../../operation/incidents/configure_integriaims_incident.php:312
+#: ../../operation/incidents/list_integriaims_incidents.php:342
+#: ../../operation/incidents/list_integriaims_incidents.php:522
+#: ../../include/functions_events.php:206 ../../include/functions_events.php:281
+#: ../../include/functions_events.php:5009
+#: ../../include/functions_events.php:6701
+#: ../../enterprise/meta/include/functions_events_meta.php:118
+#: ../../mobile/operation/events.php:520
+#: ../../godmode/setup/setup_integria.php:397
+#: ../../godmode/setup/setup_integria.php:519
+#: ../../godmode/events/custom_events.php:111
+msgid "Owner"
+msgstr "Propietario"
+
+#: ../../operation/events/events.build_table.php:232
+#: ../../include/functions_events.php:257
+#: ../../godmode/events/custom_events.php:103
+msgid "Event Type"
+msgstr "Tipo de evento"
+
+#: ../../operation/events/events.build_table.php:243
+#: ../../include/class/ModuleTemplates.class.php:1207
+#: ../../include/class/AgentWizard.class.php:1180
+#: ../../include/class/AgentWizard.class.php:4015
+#: ../../include/functions_events.php:260
+#: ../../godmode/events/custom_events.php:104
+msgid "Module Name"
+msgstr "Nombre del módulo"
+
+#: ../../operation/events/events.build_table.php:273
+#: ../../operation/events/events.build_table.php:709
+#: ../../operation/events/events.php:1208
+#: ../../operation/events/events_list.php:1003
+#: ../../include/class/CustomNetScan.class.php:468
+#: ../../include/functions_events.php:202 ../../include/functions_events.php:269
+#: ../../include/functions_events.php:3752
+#: ../../include/functions_events.php:6738
+#: ../../include/functions_events.php:7124
+#: ../../enterprise/meta/include/functions_events_meta.php:102
+#: ../../godmode/events/event_edit_filter.php:633
+#: ../../godmode/events/custom_events.php:107
+#: ../../godmode/wizards/HostDevices.class.php:958
+msgid "Comment"
+msgstr "Comentar"
+
+#: ../../operation/events/events.build_table.php:293
+#: ../../operation/events/events.php:1188
+#: ../../operation/events/events_list.php:999
+#: ../../operation/agentes/log_sources_status.php:56
+#: ../../operation/agentes/pandora_networkmap.editor.php:336
+#: ../../operation/agentes/pandora_networkmap.view.php:136
+#: ../../include/functions_events.php:204 ../../include/functions_events.php:275
+#: ../../include/functions_events.php:4632
+#: ../../include/functions_events.php:4713
+#: ../../include/functions_events.php:6750
+#: ../../enterprise/operation/log/log_viewer.php:654
+#: ../../enterprise/include/class/LogSource.class.php:626
+#: ../../enterprise/include/functions_log.php:279
+#: ../../enterprise/include/functions_log.php:282
+#: ../../enterprise/meta/include/functions_events_meta.php:110
+#: ../../enterprise/meta/advanced/policymanager.sync.php:307
+#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:147
+#: ../../godmode/reporting/reporting_builder.item_editor.php:1495
+#: ../../godmode/events/event_edit_filter.php:627
+#: ../../godmode/events/custom_events.php:109
+#: ../../godmode/massive/massive_copy_modules.php:144
+msgid "Source"
+msgstr "Origen"
+
+#: ../../operation/events/events.build_table.php:303
+#: ../../operation/events/events.php:1195
+#: ../../operation/events/events_list.php:1001
+#: ../../include/functions_events.php:6756
+#: ../../godmode/events/event_edit_filter.php:630
+msgid "Extra ID"
+msgstr "ID extra"
+
+#: ../../operation/events/events.build_table.php:313
+#: ../../include/functions_events.php:207 ../../include/functions_events.php:284
+#: ../../include/functions_events.php:6762
+#: ../../enterprise/meta/include/functions_events_meta.php:122
+#: ../../godmode/events/custom_events.php:112
+msgid "ACK Timestamp"
+msgstr "ACK Marca temporal"
+
+#: ../../operation/events/events.build_table.php:323
+#: ../../operation/events/events.php:2822 ../../include/functions_events.php:208
+#: ../../include/functions_events.php:287 ../../include/functions_events.php:4691
+#: ../../include/functions_events.php:6768
+#: ../../enterprise/meta/include/functions_events_meta.php:126
+#: ../../godmode/events/custom_events.php:113
+msgid "Instructions"
+msgstr "Instrucciones"
+
+#: ../../operation/events/events.build_table.php:340
+#: ../../include/functions_events.php:296
+#: ../../godmode/events/custom_events.php:116
+#: ../../godmode/massive/massive_delete_modules.php:436
+#: ../../godmode/massive/massive_edit_modules.php:382
+msgid "Module Status"
+msgstr "Estado de módulo"
+
+#: ../../operation/events/events.build_table.php:350
+#: ../../include/ajax/events.php:1552 ../../include/functions_events.php:213
+#: ../../include/functions_events.php:315
+#: ../../godmode/events/event_edit_filter.php:650
+#: ../../godmode/events/custom_events.php:119
+msgid "Custom data"
+msgstr "Datos personalizados"
+
+#: ../../operation/events/events.build_table.php:420
+#: ../../operation/events/events.php:2249 ../../include/ajax/events.php:1784
+#: ../../include/functions_events.php:2651
+#: ../../include/functions_events.php:4819
+#: ../../include/functions_events.php:6829
+#: ../../include/functions_reporting.php:10694
+#: ../../include/functions_reporting_html.php:1077
+#: ../../include/functions_reporting_html.php:1300
+#: ../../include/functions_reporting_html.php:2372
+#: ../../mobile/operation/events.php:267
+msgid "New event"
+msgstr "Nuevo evento"
+
+#: ../../operation/events/events.build_table.php:425
+#: ../../operation/events/events.php:2255 ../../include/ajax/events.php:1789
+#: ../../include/functions_events.php:2656
+#: ../../include/functions_events.php:4825
+#: ../../include/functions_events.php:6834
+#: ../../include/functions_reporting.php:10699
+#: ../../include/functions_reporting_html.php:1082
+#: ../../include/functions_reporting_html.php:1305
+#: ../../include/functions_reporting_html.php:2377
+#: ../../mobile/operation/events.php:272
+msgid "Event validated"
+msgstr "Evento validado"
+
+#: ../../operation/events/events.build_table.php:430
+#: ../../operation/events/events.php:2261 ../../include/ajax/events.php:1794
+#: ../../include/functions_events.php:2661
+#: ../../include/functions_events.php:4831
+#: ../../include/functions_events.php:6839
+#: ../../include/functions_reporting.php:10704
+#: ../../include/functions_reporting_html.php:1087
+#: ../../include/functions_reporting_html.php:1310
+#: ../../include/functions_reporting_html.php:2382
+#: ../../mobile/operation/events.php:277
+msgid "Event in process"
+msgstr "Evento en proceso"
+
+#: ../../operation/events/events.build_table.php:856
+#: ../../operation/events/events.php:2203 ../../include/functions_events.php:7246
+msgid "Validate event"
+msgstr "Validar evento"
+
+#: ../../operation/events/events.build_table.php:867
+#: ../../operation/events/events.php:2215
+msgid "Change to in progress status"
+msgstr "Cambiar a estado en proceso"
+
+#: ../../operation/events/events.build_table.php:884
+#: ../../operation/events/events.php:2227 ../../include/functions_events.php:3776
+#: ../../include/functions_events.php:3780
+#: ../../include/functions_events.php:7260
+msgid "Delete event"
+msgstr "Eliminar evento"
+
+#: ../../operation/events/events.build_table.php:894
+#: ../../include/functions_events.php:7269
+msgid "Is not allowed delete events in process"
+msgstr "No puede borrar eventos en proceso"
+
+#: ../../operation/events/events.build_table.php:1008
+#: ../../operation/events/events.php:1847
+msgid "Execute event response"
+msgstr "Ejecutar respuesta de eventos"
+
+#: ../../operation/events/events.build_table.php:1016
+#: ../../operation/events/events.php:1860
+#, php-format
+msgid "A maximum of %s event custom responses can be selected"
+msgstr ""
+"De puede seleccionar un máximo se %s respuestas personalizadas de eventos"
+
+#: ../../operation/events/events.build_table.php:1021
+#: ../../operation/events/events.php:1865
+msgid "Please, select an event"
+msgstr "Seleccione un evento"
+
+#: ../../operation/events/events.php:625 ../../operation/events/events.php:701
+#: ../../operation/events/events_list.php:613
+#: ../../operation/events/events_list.php:689
+#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:271
+#: ../../include/class/ManageNetScanScripts.class.php:471
+#: ../../include/functions_notifications.php:974
+#: ../../include/functions_snmp_browser.php:1558
+#: ../../enterprise/tools/ipam/ipam_vlan_config.php:830
+#: ../../enterprise/tools/ipam/ipam_supernet_config.php:1321
+#: ../../enterprise/operation/agentes/manage_transmap_creation.php:308
+#: ../../enterprise/include/ajax/log_viewer.ajax.php:93
+#: ../../enterprise/include/ajax/servers.ajax.php:144
+#: ../../enterprise/include/ajax/servers.ajax.php:177
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2240
+#: ../../enterprise/meta/include/functions_autoprovision.php:703
+#: ../../enterprise/meta/include/functions_wizard_meta.php:1368
+#: ../../enterprise/meta/advanced/metasetup.consoles.php:739
+#: ../../enterprise/meta/advanced/metasetup.visual.php:411
+#: ../../enterprise/meta/advanced/links.php:189
+#: ../../enterprise/godmode/setup/setup_metaconsole.php:247
+#: ../../enterprise/godmode/setup/setup_metaconsole.php:357
+#: ../../enterprise/godmode/setup/setup_acl.php:532
+#: ../../enterprise/godmode/setup/setup_acl.php:558
+#: ../../enterprise/godmode/servers/manage_export_form.php:138
+#: ../../enterprise/godmode/servers/credential_boxes_satellite.php:298
+#: ../../enterprise/godmode/servers/manage_credential_boxes.php:82
+#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:251
+#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:340
+#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:498
+#: ../../enterprise/godmode/reporting/reporting_builder.global.php:237
+#: ../../enterprise/godmode/reporting/reporting_builder.global.php:498
+#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:190
+#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:254
+#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:833
+#: ../../enterprise/godmode/massive/massive_edit_tags_policy.php:168
+#: ../../enterprise/godmode/massive/massive_add_alerts_policy.php:138
+#: ../../enterprise/godmode/massive/massive_tags_edit_policy.php:152
+#: ../../enterprise/godmode/agentes/inventory_manager.php:185
+#: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:230
+#: ../../enterprise/godmode/agentes/collection_manager.php:113
+#: ../../enterprise/godmode/agentes/collection_manager.php:142
+#: ../../enterprise/godmode/agentes/plugins_manager.php:163
+#: ../../enterprise/godmode/alerts/alert_inventory_list.php:398
+#: ../../enterprise/godmode/policies/policy_external_alerts.php:607
+#: ../../enterprise/godmode/policies/policy_external_alerts.php:703
+#: ../../enterprise/godmode/policies/policy_inventory_modules.php:263
+#: ../../enterprise/godmode/policies/policy_alerts.php:605
+#: ../../enterprise/godmode/policies/policy_alerts.php:670
+#: ../../enterprise/godmode/policies/policy_collections.php:267
+#: ../../enterprise/godmode/policies/policy_plugins.php:144
+#: ../../extensions/files_repo/files_repo_form.php:105
+#: ../../godmode/setup/setup_visuals.php:1297
+#: ../../godmode/setup/setup_visuals.php:1352
+#: ../../godmode/setup/setup_visuals.php:1372 ../../godmode/setup/news.php:299
+#: ../../godmode/setup/links.php:173 ../../godmode/servers/plugin.php:909
+#: ../../godmode/modules/manage_network_templates_form.php:347
+#: ../../godmode/gis_maps/configure_gis_map.php:631
+#: ../../godmode/reporting/graph_builder.graph_editor.php:352
+#: ../../godmode/reporting/visual_console_builder.wizard.php:531
+#: ../../godmode/snmpconsole/snmp_alert.php:1445
+#: ../../godmode/events/event_edit_filter.php:509
+#: ../../godmode/events/event_edit_filter.php:562
+#: ../../godmode/agentes/planned_downtime.editor.php:875
+#: ../../godmode/agentes/planned_downtime.editor.php:1049
+#: ../../godmode/alerts/alert_list.list.php:801
+#: ../../godmode/users/configure_profile.php:403
+msgid "Add"
+msgstr "Añadir"
+
+#: ../../operation/events/events.php:801
+msgid "Event viewer"
+msgstr "Visor de eventos"
+
+#: ../../operation/events/events.php:837 ../../operation/users/user_edit.php:358
+#: ../../godmode/events/events.php:41 ../../godmode/users/configure_user.php:1111
+msgid "Event list"
+msgstr "Lista de eventos"
+
+#: ../../operation/events/events.php:848
+msgid "History event list"
+msgstr "Lista histórica de eventos"
+
+#: ../../operation/events/events.php:859
+msgid "RSS Events"
+msgstr "Eventos RSS"
+
+#: ../../operation/events/events.php:870
+msgid "Export to CSV file"
+msgstr "Exportar a un archivo CSV"
+
+#: ../../operation/events/events.php:881 ../../operation/events/events.php:929
+msgid "Sound events"
+msgstr "Eventos sonoros"
+
+#: ../../operation/events/events.php:894 ../../godmode/events/events.php:116
+#: ../../godmode/events/events.php:124
+#: ../../godmode/users/configure_profile.php:306
+msgid "Manage events"
+msgstr "Gestionar eventos"
+
+#: ../../operation/events/events.php:934
+msgid "History"
+msgstr "Histórico"
+
+#: ../../operation/events/events.php:997
+msgid "Errors"
+msgstr "Errores"
+
+#: ../../operation/events/events.php:1023
+msgid ""
+"Event viewer is disabled due event replication. For more information, please "
+"contact with the administrator"
+msgstr ""
+"El visor de eventos está desactivado debido a la replicación de eventos. Por "
+"favor, contacta con el administrador para obtener más información."
+
+#: ../../operation/events/events.php:1074
+#: ../../operation/events/events_list.php:942
+#: ../../operation/agentes/status_monitor.php:496
+#: ../../operation/agentes/estado_agente.php:277
+#: ../../include/lib/Dashboard/Widgets/events_list.php:308
+#: ../../include/functions_events.php:3291 ../../include/functions.php:1277
+#: ../../enterprise/operation/agentes/tag_view.php:135
+#: ../../enterprise/meta/monitoring/custom_fields_view.php:183
+#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:123
+#: ../../mobile/operation/modules.php:73
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3605
+#: ../../godmode/events/event_edit_filter.php:315
+#: ../../godmode/massive/massive_delete_modules.php:422
+#: ../../godmode/massive/massive_delete_modules.php:443
+#: ../../godmode/massive/massive_copy_modules.php:119
+#: ../../godmode/massive/massive_copy_modules.php:279
+#: ../../godmode/massive/massive_edit_agents.php:535
+#: ../../godmode/massive/massive_delete_agents.php:213
+#: ../../godmode/massive/massive_edit_modules.php:389
+#: ../../godmode/massive/massive_edit_modules.php:475
+msgid "Not normal"
+msgstr "No normal"
+
+#: ../../operation/events/events.php:1084
+#: ../../operation/events/events_list.php:937
+#: ../../include/lib/Dashboard/Widgets/events_list.php:321
+#: ../../include/functions_events.php:198 ../../include/functions_events.php:6713
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1381
+#: ../../enterprise/include/lib/AlertCorrelation.class.php:1083
+#: ../../enterprise/include/functions_events.php:127
+#: ../../enterprise/meta/include/functions_events_meta.php:86
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2843
+#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:629
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2844
+#: ../../godmode/events/event_edit_filter.php:317
+#: ../../godmode/events/event_filter.php:138
+msgid "Event type"
+msgstr "Tipo de evento"
+
+#: ../../operation/events/events.php:1098 ../../operation/events/events.php:1670
+#: ../../operation/events/events_list.php:970
+#: ../../include/lib/Dashboard/Widgets/events_list.php:378
+#: ../../enterprise/include/functions_events.php:107
+#: ../../godmode/events/event_edit_filter.php:350
+#: ../../godmode/events/event_filter.php:139
+msgid "Event status"
+msgstr "Estado del evento"
+
+#: ../../operation/events/events.php:1118
+#: ../../operation/events/events_list.php:983
+#: ../../enterprise/godmode/setup/setup.php:161
+#: ../../godmode/events/event_edit_filter.php:436
+msgid "All events"
+msgstr "Todos los eventos"
+
+#: ../../operation/events/events.php:1119 ../../operation/events/events.php:1720
+#: ../../operation/events/events_list.php:984
+#: ../../godmode/events/event_edit_filter.php:437
+msgid "Group events"
+msgstr "Eventos agrupados"
+
+#: ../../operation/events/events.php:1120
+#: ../../operation/events/events_list.php:985
+#: ../../include/ajax/heatmap.ajax.php:78
+msgid "Group agents"
+msgstr "Grupos de agente"
+
+#: ../../operation/events/events.php:1129
+#: ../../operation/events/events_list.php:982
+#: ../../include/functions_events.php:5036
+#: ../../enterprise/include/functions_events.php:198
+#: ../../mobile/operation/events.php:528
+#: ../../godmode/events/event_edit_filter.php:438
+msgid "Repeated"
+msgstr "Repetido"
+
+#: ../../operation/events/events.php:1166
+#: ../../operation/events/events_list.php:384
+#: ../../operation/events/events_list.php:524
+#: ../../operation/events/events_list.php:535
+#: ../../operation/events/events_list.php:1053
+#: ../../operation/netflow/nf_live_view.php:389
+#: ../../include/ajax/custom_fields.php:587 ../../include/ajax/events.php:503
+#: ../../include/ajax/events.php:519
+#: ../../enterprise/meta/monitoring/custom_fields_view.php:236
+#: ../../enterprise/meta/monitoring/custom_fields_view.php:242
+#: ../../enterprise/meta/monitoring/custom_fields_view.php:243
+msgid "Load filter"
+msgstr "Cargar filtro"
+
+#: ../../operation/events/events.php:1174
+#: ../../operation/events/events_list.php:376
+#: ../../operation/events/events_list.php:493
+#: ../../operation/events/events_list.php:1050 ../../include/ajax/events.php:759
+#: ../../enterprise/meta/monitoring/custom_fields_view.php:222
+#: ../../enterprise/meta/monitoring/custom_fields_view.php:228
+#: ../../enterprise/meta/monitoring/custom_fields_view.php:229
+msgid "Save filter"
+msgstr "Guardar filtro"
+
+#: ../../operation/events/events.php:1246
+#: ../../operation/events/events_list.php:769
+#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:279
+#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:375
+#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:441
+#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:709
+#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:788
+#: ../../enterprise/meta/agentsearch.php:52
+#: ../../enterprise/meta/agentsearch.php:58 ../../mobile/operation/home.php:168
+#: ../../godmode/events/event_edit_filter.php:371
+msgid "Agent search"
+msgstr "Búsqueda de agente"
+
+#: ../../operation/events/events.php:1263
+#: ../../operation/events/events_list.php:809
+#: ../../enterprise/meta/monitoring/custom_fields_view.php:293
+#: ../../godmode/events/event_edit_filter.php:614
+msgid "Module search"
+msgstr "Búsqueda por módulo"
+
+#: ../../operation/events/events.php:1293 ../../operation/events/events.php:2632
+#: ../../operation/events/events_list.php:803
+#: ../../include/functions_visual_map_editor.php:498
+#: ../../include/functions_visual_map_editor.php:1459
+#: ../../include/functions_visual_map_editor.php:1553
+#: ../../include/ajax/visual_console_builder.ajax.php:1186
+#: ../../include/lib/Dashboard/Widgets/events_list.php:329
+#: ../../include/functions_profile.php:338 ../../include/functions_html.php:2278
+#: ../../include/functions_html.php:2279 ../../include/functions_html.php:2280
+#: ../../include/functions_html.php:2281 ../../include/functions_html.php:2282
+#: ../../include/functions_html.php:2284 ../../include/functions_html.php:2285
+#: ../../include/functions_html.php:2286 ../../include/functions_html.php:2287
+#: ../../include/functions_html.php:2288
+#: ../../enterprise/operation/services/services.list.php:249
+#: ../../enterprise/operation/services/services.list.php:279
+#: ../../enterprise/operation/services/services.table_services.php:171
+#: ../../enterprise/operation/services/services.table_services.php:201
+#: ../../enterprise/include/class/AgentRepository.class.php:650
+#: ../../enterprise/include/class/Omnishell.class.php:361
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1733
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3865
+#: ../../enterprise/include/class/DeploymentCenter.class.php:779
+#: ../../enterprise/godmode/setup/setup_auth.php:69
+#: ../../enterprise/godmode/setup/setup_auth.php:269
+#: ../../enterprise/godmode/setup/setup_auth.php:319
+#: ../../enterprise/godmode/setup/setup_auth.php:380
+#: ../../enterprise/godmode/setup/setup_auth.php:546
+#: ../../enterprise/godmode/setup/setup_auth.php:1175
+#: ../../enterprise/godmode/setup/setup_auth.php:1345
+#: ../../enterprise/godmode/setup/setup_acl.php:572
+#: ../../enterprise/godmode/services/services.elements.php:290
+#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:169
+#: ../../godmode/reporting/create_container.php:573
+#: ../../godmode/events/event_edit_filter.php:431
+#: ../../godmode/massive/massive_delete_modules.php:407
+#: ../../godmode/massive/massive_delete_modules.php:521
+#: ../../godmode/massive/massive_copy_modules.php:178
+#: ../../godmode/massive/massive_add_action_alerts.php:216
+#: ../../godmode/massive/massive_edit_agents.php:643
+#: ../../godmode/massive/massive_edit_agents.php:1026
+#: ../../godmode/massive/massive_edit_modules.php:411
+#: ../../godmode/massive/massive_edit_modules.php:497
+#: ../../godmode/agentes/agent_manager.php:328
+#: ../../godmode/agentes/agent_manager.php:472
+#: ../../godmode/agentes/planned_downtime.editor.php:800
+#: ../../godmode/agentes/planned_downtime.list.php:326
+msgid "Any"
+msgstr "Cualquiera"
+
+#: ../../operation/events/events.php:1297
+#: ../../operation/events/events_list.php:790
+#: ../../enterprise/include/functions_events.php:168
+#: ../../godmode/events/event_edit_filter.php:414
+msgid "User ack."
+msgstr "Validación del usuario"
+
+#: ../../operation/events/events.php:1304
+#: ../../operation/events/events_list.php:840
+#: ../../godmode/events/event_edit_filter.php:602
+msgid "Filter alert events"
+msgstr "Filtrar eventos de alertas"
+
+#: ../../operation/events/events.php:1305
+#: ../../operation/events/events_list.php:841
+#: ../../godmode/events/event_edit_filter.php:603
+msgid "Only alert events"
+msgstr "Solo eventos de alertas"
+
+#: ../../operation/events/events.php:1320
+#: ../../operation/events/events_list.php:837
+#: ../../enterprise/include/functions_events.php:208
+#: ../../godmode/events/event_edit_filter.php:598
+msgid "Alert events"
+msgstr "Eventos de la alerta"
+
+#: ../../operation/events/events.php:1342
+#: ../../operation/events/events_list.php:1013
+msgid "Id source event"
+msgstr "Evento de origen de ID"
+
+#: ../../operation/events/events.php:1400
+msgid "From (date:time)"
+msgstr "Desde (fecha:hora)"
+
+#: ../../operation/events/events.php:1458
+msgid "To (date:time)"
+msgstr "Hasta (fecha:hora)"
+
+#: ../../operation/events/events.php:1469
+msgid "Filter custom data by field name"
+msgstr "Filtrar datos personalizados por nombre de campo"
+
+#: ../../operation/events/events.php:1470
+msgid "Filter custom data by field value"
+msgstr "Filtrar datos personalizados por valor de campo"
+
+#: ../../operation/events/events.php:1485
+msgid "Custom data filter"
+msgstr "Filtro de datos personalizado"
+
+#: ../../operation/events/events.php:1507
+msgid "Custom data search"
+msgstr "Búsqueda de datos personalizada"
+
+#: ../../operation/events/events.php:1516 ../../operation/events/events.php:1519
+#: ../../operation/events/events_list.php:892
+#: ../../operation/events/events_list.php:895
+#: ../../enterprise/include/functions_events.php:251
+#: ../../godmode/events/event_edit_filter.php:493
+msgid "Events with following tags"
+msgstr "Eventos con las siguientes etiquetas"
+
+#: ../../operation/events/events.php:1517 ../../operation/events/events.php:1520
+#: ../../operation/events/events_list.php:893
+#: ../../operation/events/events_list.php:896
+#: ../../enterprise/include/functions_events.php:273
+#: ../../godmode/events/event_edit_filter.php:546
+msgid "Events without following tags"
+msgstr "Eventos sin las siguientes etiquetas"
+
+#: ../../operation/events/events.php:1532
+#: ../../operation/events/events_list.php:1030
+#: ../../include/functions_visual_map_editor.php:895
+#: ../../enterprise/meta/advanced/metasetup.consoles.php:613
+#: ../../enterprise/meta/advanced/metasetup.consoles.php:699
+#: ../../enterprise/meta/advanced/metasetup.consoles.php:704
+#: ../../enterprise/godmode/reporting/reporting_builder.template.php:141
+#: ../../enterprise/godmode/reporting/reporting_builder.template.php:230
+#: ../../enterprise/godmode/policies/policy_modules.php:412
+#: ../../enterprise/godmode/policies/policy_external_alerts.php:598
+#: ../../extensions/quick_shell.php:521
+#: ../../godmode/massive/massive_add_action_alerts.php:250
+#: ../../godmode/massive/massive_edit_agents.php:1027
+#: ../../godmode/agentes/agent_manager.php:748
+#: ../../godmode/agentes/agent_manager.php:882
+#: ../../godmode/agentes/module_manager_editor.php:746
+msgid "Advanced options"
+msgstr "Opciones avanzadas"
+
+#: ../../operation/events/events.php:1657
+msgid "Current filter"
+msgstr "Filtro actual"
+
+#: ../../operation/events/events.php:1662
+msgid "Not set."
+msgstr "No establecida"
+
+#: ../../operation/events/events.php:1675
+msgid "Any status."
+msgstr "Cualquier estado"
+
+#: ../../operation/events/events.php:1679
+msgid "New events."
+msgstr "Nuevos eventos"
+
+#: ../../operation/events/events.php:1683
+msgid "Validated."
+msgstr "Validado."
+
+#: ../../operation/events/events.php:1687
+msgid "In proccess."
+msgstr "In proceso."
+
+#: ../../operation/events/events.php:1691
+msgid "Not validated."
+msgstr "No validado."
+
+#: ../../operation/events/events.php:1703
+msgid "Any time."
+msgstr "Cualquier hora."
+
+#: ../../operation/events/events.php:1705 ../../operation/events/events.php:2634
+msgid "Last hour."
+msgstr "Última hora."
+
+#: ../../operation/events/events.php:1707
+#, php-format
+msgid "Last %d hours."
+msgstr "Últimas %d horas."
+
+#: ../../operation/events/events.php:1715
+msgid "Duplicated"
+msgstr "Duplicado"
+
+#: ../../operation/events/events.php:1718
+msgid "All events."
+msgstr "Todos los eventos."
+
+#: ../../operation/events/events.php:1722
+msgid "Group agents."
+msgstr "Agentes de grupo."
+
+#: ../../operation/events/events.php:1812
+msgid "In progress selected"
+msgstr "Seleccionado en proceso"
+
+#: ../../operation/events/events.php:1813
+msgid "Validate selected"
+msgstr "Validar selección"
+
+#: ../../operation/events/events.php:1817
+#: ../../include/class/ModuleTemplates.class.php:970
+#: ../../enterprise/operation/services/services.list.php:728
+#: ../../enterprise/include/class/Omnishell.class.php:520
+#: ../../enterprise/godmode/reporting/reporting_builder.global.php:298
+#: ../../godmode/snmpconsole/snmp_alert.php:1457
+#: ../../godmode/agentes/agent_manager.php:310
+msgid "Delete selected"
+msgstr "Borrar seleccionado(s)"
+
+#: ../../operation/events/events.php:1893 ../../include/ajax/events.php:1998
+#: ../../include/class/ExternalTools.class.php:354
+#: ../../include/lib/Dashboard/Widgets/events_list.php:788
+#: ../../include/functions_events.php:3861
+#: ../../enterprise/meta/advanced/cron_main.php:444
+#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:566
+#: ../../godmode/events/event_responses.editor.php:146
+msgid "Parameters"
+msgstr "Parámetros"
+
+#: ../../operation/events/events.php:1930 ../../include/functions_events.php:236
+#: ../../enterprise/include/functions_reporting_csv.php:1934
+#: ../../enterprise/include/functions_reporting.php:2316
+#: ../../godmode/events/custom_events.php:96
+msgid "Agent ID"
+msgstr "ID de agente"
+
+#: ../../operation/events/events.php:1954
+msgid "has at least"
+msgstr "tiene al menos"
+
+#: ../../operation/events/events.php:1956
+msgid "events"
+msgstr "eventos"
+
+#: ../../operation/events/events.php:2040 ../../include/functions_events.php:159
+#: ../../include/functions_ui.php:3819
+msgid "MAINTENANCE"
+msgstr "MANTENIMIENTO"
+
+#: ../../operation/events/events.php:2045 ../../include/functions_events.php:162
+#: ../../include/functions_ui.php:3824
+msgid "INFORMATIONAL"
+msgstr "INFORMATIVO"
+
+#: ../../operation/events/events.php:2050 ../../include/functions_events.php:165
+#: ../../include/functions_ui.php:3849
+msgid "MAJOR"
+msgstr "MAYOR"
+
+#: ../../operation/events/events.php:2055 ../../include/functions_events.php:168
+#: ../../include/functions_ui.php:3844
+msgid "MINOR"
+msgstr "MENOR"
+
+#: ../../operation/events/events.php:2106 ../../operation/events/events.php:2171
+#: ../../include/functions_events.php:67 ../../include/functions_events.php:93
+#: ../../include/functions_ui.php:3741
+msgid "ALERT"
+msgstr "ALERTA"
+
+#: ../../operation/events/events.php:2115 ../../include/functions_events.php:100
+#: ../../include/functions_events.php:2908 ../../include/functions_graph.php:3455
+#: ../../include/functions_ui.php:3750
+msgid "SYSTEM"
+msgstr "SISTEMA"
+
+#: ../../operation/events/events.php:2200
+msgid "Validate events"
+msgstr "Validar eventos"
+
+#: ../../operation/events/events.php:2224
+msgid "Delete events"
+msgstr "Eliminar eventos"
+
+#: ../../operation/events/events.php:2307
+#: ../../include/lib/Dashboard/Widgets/top_n_events_by_group.php:433
+#: ../../include/lib/Dashboard/Widgets/top_n_events_by_module.php:437
+#: ../../include/functions_events.php:2691
+#: ../../include/functions_events.php:3279 ../../include/functions_graph.php:2864
+#: ../../include/functions_graph.php:3630 ../../include/functions_graph.php:3632
+#: ../../include/functions_reporting.php:10731 ../../include/functions.php:1235
+#: ../../include/functions_reporting_html.php:1123
+#: ../../include/functions_reporting_html.php:2411
+#: ../../enterprise/meta/advanced/metasetup.setup.php:144
+#: ../../mobile/operation/events.php:127
+#: ../../godmode/setup/setup_general.php:125
+msgid "System"
+msgstr "Sistema"
+
+#: ../../operation/events/events.php:2636
+msgid "hours."
+msgstr "horas."
+
+#: ../../operation/events/events_list.php:360
+#: ../../operation/events/events_list.php:1099
+msgid "No filter loaded"
+msgstr "No se ha cargado el filtro"
+
+#: ../../operation/events/events_list.php:368
+#: ../../operation/events/events_list.php:1099
+msgid "Filter loaded"
+msgstr "Filtro cargado"
+
+#: ../../operation/events/events_list.php:418 ../../include/ajax/events.php:678
+msgid "New filter"
+msgstr "Nuevo filtro"
+
+#: ../../operation/events/events_list.php:426
+#: ../../operation/events/events_list.php:479
+#: ../../include/ajax/custom_fields.php:707 ../../include/ajax/events.php:686
+#: ../../include/ajax/events.php:746
+#: ../../godmode/snmpconsole/snmp_filters.php:35
+#: ../../godmode/netflow/nf_edit_form.php:188
+msgid "Update filter"
+msgstr "Actualizar filtro"
+
+#: ../../operation/events/events_list.php:433
+#: ../../include/ajax/custom_fields.php:571
+#: ../../include/ajax/custom_fields.php:618
+#: ../../include/ajax/custom_fields.php:662 ../../include/ajax/events.php:693
+#: ../../godmode/events/event_edit_filter.php:261
+msgid "Filter name"
+msgstr "Nombre del filtro"
+
+#: ../../operation/events/events_list.php:436 ../../include/ajax/events.php:696
+msgid "Save in Group"
+msgstr "Guardar en el grupo"
+
+#: ../../operation/events/events_list.php:438 ../../include/ajax/events.php:698
+#: ../../include/functions_snmp_browser.php:1478
+#: ../../include/functions_html.php:1234 ../../include/functions_html.php:1387
+#: ../../enterprise/views/ncm/snippets/list.php:94
+#: ../../enterprise/views/ncm/firmwares/list.php:100
+#: ../../enterprise/views/ncm/devices/list.php:147
+#: ../../enterprise/views/ncm/templates/list.php:100
+#: ../../enterprise/views/cluster/list.php:87
+#: ../../enterprise/include/class/Omnishell.class.php:812
+#: ../../enterprise/include/class/Omnishell.class.php:891
+#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:209
+#: ../../enterprise/godmode/reporting/graph_template_wizard.php:207
+#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:335
+#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:358
+#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:211
+#: ../../enterprise/godmode/reporting/reporting_builder.global.php:98
+#: ../../enterprise/godmode/reporting/reporting_builder.template.php:723
+#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:115
+#: ../../enterprise/godmode/policies/policy_agents.php:436
+#: ../../enterprise/godmode/policies/policy_agents.php:468
+msgid "Filter group"
+msgstr "Filtrar grupo"
+
+#: ../../operation/events/events_list.php:465 ../../include/ajax/events.php:732
+msgid "Overwrite filter"
+msgstr "Sobrescribir filtro"
+
+#: ../../operation/events/events_list.php:871
+#: ../../enterprise/include/functions_events.php:178
+#: ../../godmode/events/event_edit_filter.php:449
+msgid "Date from"
+msgstr "Fecha desde"
+
+#: ../../operation/events/events_list.php:875
+#: ../../enterprise/include/functions_events.php:188
+#: ../../godmode/events/event_edit_filter.php:452
+msgid "Date to"
+msgstr "Fecha hasta"
+
+#: ../../operation/events/events_list.php:881
+#: ../../operation/agentes/datos_agente.php:198 ../../include/ajax/module.php:250
+#: ../../enterprise/godmode/reporting/reporting_builder.template.php:778
+msgid "Timestamp from:"
+msgstr "Marca temporal desde:"
+
+#: ../../operation/events/events_list.php:884
+#: ../../operation/agentes/datos_agente.php:204 ../../include/ajax/module.php:270
+#: ../../enterprise/godmode/reporting/reporting_builder.template.php:796
+msgid "Timestamp to:"
+msgstr "Marca temporal hasta:"
+
+#: ../../operation/events/events_list.php:1105
+#: ../../operation/events/events_list.php:1107
+msgid "Event control filter"
+msgstr "Filtro de control de eventos"
+
+#: ../../operation/events/events_list.php:1115
+msgid "Error creating filter."
+msgstr "Error al crear el filtro"
+
+#: ../../operation/events/events_list.php:1119
+msgid "Error creating filter is duplicated."
+msgstr "Error al crear el filtro ya que está duplicado"
+
+#: ../../operation/events/events_list.php:1123
+msgid "Filter created."
+msgstr "Filtro creado"
+
+#: ../../operation/events/events_list.php:1128
+msgid "Filter updated."
+msgstr "Filtro actualizado"
+
+#: ../../operation/events/events_list.php:1132
+msgid "Error updating filter."
+msgstr "Error al actualizar el filtro"
+
+#: ../../operation/events/events_list.php:1538 ../../include/ajax/events.php:803
+msgid "Filter name cannot be left blank"
+msgstr "El nombre del filtro no se puede dejar en blanco."
+
+#: ../../operation/events/events_list.php:1614
+#: ../../operation/events/events_list.php:1707
+#: ../../include/ajax/graph.ajax.php:145 ../../include/ajax/events.php:946
+#: ../../godmode/setup/setup_general.php:574
+#: ../../godmode/gis_maps/configure_gis_map.php:575
+#: ../../godmode/reporting/create_container.php:294
+#: ../../godmode/reporting/create_container.php:310
+msgid "none"
+msgstr "ninguno"
+
+#: ../../operation/netflow/nf_live_view.php:123
+#: ../../operation/netflow/nf_live_view.php:145
+#: ../../operation/netflow/nf_live_view.php:151
+msgid "Netflow live view"
+msgstr "Netflow en tiempo real"
+
+#: ../../operation/netflow/nf_live_view.php:133
+#: ../../enterprise/operation/log/log_viewer.php:458
+#: ../../enterprise/godmode/modules/manage_inventory_modules.php:72
+#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:48
+#: ../../godmode/netflow/nf_edit.php:47
+msgid "Not supported in Windows systems"
+msgstr "No compatible con sistemas Windows"
+
+#: ../../operation/netflow/nf_live_view.php:141
+#: ../../operation/agentes/ver_agente.php:1368
+#: ../../enterprise/include/class/CommandCenter.class.php:142
+#: ../../enterprise/meta/general/logon_ok.php:16
+#: ../../enterprise/meta/monitoring/group_view.php:51
+#: ../../enterprise/meta/monitoring/custom_fields_view.php:50
+#: ../../enterprise/meta/monitoring/tactical.php:36
+#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:55
+#: ../../enterprise/meta/advanced/agents_setup.php:60
+#: ../../enterprise/meta/advanced/policymanager.php:54
+#: ../../enterprise/meta/index.php:955 ../../enterprise/meta/agentsearch.php:48
+#: ../../enterprise/extensions/vmware/vmware_view.php:1373
+#: ../../godmode/netflow/nf_edit.php:53 ../../godmode/netflow/nf_edit_form.php:69
+#: ../../godmode/netflow/nf_item_list.php:49
+msgid "Main"
+msgstr "Principal"
+
+#: ../../operation/netflow/nf_live_view.php:162
+msgid "Error creating filter"
+msgstr "Error al crear filtro"
+
+#: ../../operation/netflow/nf_live_view.php:164
+msgid "Filter created successfully"
+msgstr "Filtro creado correctamente"
+
+#: ../../operation/netflow/nf_live_view.php:183
+msgid "Filter updated successfully"
+msgstr "Filtro actualizado correctamente"
+
+#: ../../operation/netflow/nf_live_view.php:184
+msgid "Error updating filter"
+msgstr "Error al actualizar el filtro"
+
+#: ../../operation/netflow/nf_live_view.php:208
+msgid "Draw live filter"
+msgstr "Extraer filtro en directo"
+
+#: ../../operation/netflow/nf_live_view.php:242
+msgid "Connection"
+msgstr "Conexión"
+
+#: ../../operation/netflow/nf_live_view.php:295
+#: ../../operation/incidents/integriaims_export_csv.php:84
+#: ../../operation/incidents/configure_integriaims_incident.php:325
+#: ../../operation/incidents/list_integriaims_incidents.php:359
+#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:323
+msgid "Resolution"
+msgstr "Resolución"
+
+#: ../../operation/netflow/nf_live_view.php:295
+msgid "The interval will be divided in chunks the length of the resolution."
+msgstr "El intervalo dividirá en partes la extensión del resultado"
+
+#: ../../operation/netflow/nf_live_view.php:322
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2386
+#: ../../godmode/netflow/nf_item_list.php:176
+msgid "Max. values"
+msgstr "Valores máximos"
+
+#: ../../operation/netflow/nf_live_view.php:336
+#: ../../godmode/netflow/nf_edit_form.php:253
+msgid "Aggregate by"
+msgstr "Agregado por"
+
+#: ../../operation/netflow/nf_live_view.php:339
+#: ../../godmode/netflow/nf_edit_form.php:255
+msgid "Src Ip Address"
+msgstr "Dirección IP origen"
+
+#: ../../operation/netflow/nf_live_view.php:340
+#: ../../godmode/netflow/nf_edit_form.php:256
+msgid "Dst Ip Address"
+msgstr "Dirección IP destino"
+
+#: ../../operation/netflow/nf_live_view.php:341
+#: ../../operation/netflow/nf_live_view.php:433
+#: ../../godmode/netflow/nf_edit_form.php:248
+#: ../../godmode/netflow/nf_edit_form.php:257
+msgid "Src Port"
+msgstr "Puerto origen"
+
+#: ../../operation/netflow/nf_live_view.php:342
+#: ../../operation/netflow/nf_live_view.php:425
+#: ../../godmode/netflow/nf_edit_form.php:245
+#: ../../godmode/netflow/nf_edit_form.php:258
+msgid "Dst Port"
+msgstr "Puerto destino"
+
+#: ../../operation/netflow/nf_live_view.php:384
+#: ../../include/class/CredentialStore.class.php:945
+#: ../../include/functions_html.php:1878 ../../include/functions_html.php:1879
+#: ../../include/functions_html.php:1989 ../../include/functions_html.php:1990
+#: ../../include/functions_html.php:2150 ../../include/functions_html.php:2151
+#: ../../enterprise/include/functions_cron.php:582
+#: ../../enterprise/include/lib/NetworkManager.php:87
+#: ../../enterprise/meta/include/functions_autoprovision.php:388
+#: ../../enterprise/meta/include/functions_wizard_meta.php:497
+#: ../../enterprise/meta/advanced/metasetup.relations.php:218
+#: ../../enterprise/meta/advanced/metasetup.relations.php:572
+#: ../../enterprise/godmode/setup/setup_acl.php:463
+#: ../../enterprise/godmode/setup/setup_acl.php:765
+#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:755
+#: ../../godmode/massive/massive_edit_modules.php:819
+#: ../../godmode/agentes/module_manager_editor_wmi.php:61
+#: ../../godmode/agentes/module_manager_editor_network.php:96
+msgid "Custom"
+msgstr "Personalizado"
+
+#: ../../operation/netflow/nf_live_view.php:396
+msgid "Select a filter"
+msgstr "Selecciona un filtro"
+
+#: ../../operation/netflow/nf_live_view.php:406
+#: ../../godmode/netflow/nf_edit_form.php:239
+msgid "Dst Ip"
+msgstr "Dst IP"
+
+#: ../../operation/netflow/nf_live_view.php:406
+#: ../../godmode/netflow/nf_edit_form.php:239
+msgid ""
+"Destination IP. A comma separated list of destination ip. If we leave the "
+"field blank, will show all ip. Example filter by ip:"
+"<br>25.46.157.214,160.253.135.249"
+msgstr ""
+"IP destino. Lista de IPs destino separadas por coma. Si dejamos en blanco este "
+"campo mostrará todas las IPs. Ejemplo de filtro por IP: "
+"25.46.157.214,160.253.135.249"
+
+#: ../../operation/netflow/nf_live_view.php:414
+#: ../../godmode/netflow/nf_edit_form.php:242
+msgid "Src Ip"
+msgstr "IP Origen"
+
+#: ../../operation/netflow/nf_live_view.php:414
+#: ../../godmode/netflow/nf_edit_form.php:242
+msgid ""
+"Source IP. A comma separated list of source ip. If we leave the field blank, "
+"will show all ip. Example filter by ip:<br>25.46.157.214,160.253.135.249"
+msgstr ""
+"IP Origen. Lista de IPs origen separadas por coma. Si dejamos en blanco este "
+"campo mostrará todas las IPs. Ejemplo de filtro por IP: "
+"25.46.157.214,160.253.135.249"
+
+#: ../../operation/netflow/nf_live_view.php:425
+#: ../../godmode/netflow/nf_edit_form.php:245
+msgid ""
+"Destination port. A comma separated list of destination ports. If we leave the "
+"field blank, will show all ports. Example filter by ports 80 and 22:<br>80,22"
+msgstr ""
+"Puerto destino. Lista de puertos de destino separados por coma. Si dejamos "
+"este campo en blanco se mostrarán todos los puertos. Ejemplo de filtrado por "
+"puertos: 80,22"
+
+#: ../../operation/netflow/nf_live_view.php:433
+#: ../../godmode/netflow/nf_edit_form.php:248
+msgid ""
+"Source port. A comma separated list of source ports. If we leave the field "
+"blank, will show all ports. Example filter by ports 80 and 22:<br>80,22"
+msgstr ""
+"Puerto origen. Lista de puertos de origen separados por coma. Si dejamos este "
+"campo en blanco se mostrarán todos los puertos. Ejemplo de filtrado por "
+"puertos: 80,22"
+
+#: ../../operation/netflow/nf_live_view.php:451
+#: ../../godmode/setup/setup_netflow.php:71
+msgid "IP address resolution can take a lot of time"
+msgstr "La resolución de direcciones IP puede tardar mucho tiempo."
+
+#: ../../operation/netflow/nf_live_view.php:469
+msgid "IP address resolution"
+msgstr "Resolución de dirección IP"
+
+#: ../../operation/netflow/nf_live_view.php:469
+msgid "Resolve the IP addresses to get their hostnames."
+msgstr "Resolver direcciones IP para obtener sus hostnames"
+
+#: ../../operation/netflow/nf_live_view.php:472
+msgid "Source ip"
+msgstr "IP de origen"
+
+#: ../../operation/netflow/nf_live_view.php:482
+#: ../../enterprise/meta/general/main_header.php:309
+#: ../../enterprise/meta/general/main_header.php:391
+#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:268
+#: ../../enterprise/godmode/modules/configure_local_component.php:165
+#: ../../enterprise/godmode/agentes/plugins_manager.php:126
+#: ../../enterprise/godmode/policies/policy_plugins.php:108
+#: ../../godmode/modules/manage_network_components_form_common.php:53
+#: ../../godmode/netflow/nf_edit_form.php:237
+#: ../../godmode/alerts/configure_alert_template.php:946
+#: ../../godmode/alerts/configure_alert_template.php:987
+#: ../../godmode/alerts/configure_alert_template.php:1138
+#: ../../godmode/alerts/alert_commands.php:157
+#: ../../godmode/alerts/alert_commands.php:194
+#: ../../godmode/users/configure_user.php:1211
+msgid "Advanced"
+msgstr "Avanzado"
+
+#: ../../operation/netflow/nf_live_view.php:495
+msgid "Draw"
+msgstr "Dibujar"
+
+#: ../../operation/netflow/nf_live_view.php:499
+msgid "Save as new filter"
+msgstr "Guardar nuevo filtro"
+
+#: ../../operation/netflow/nf_live_view.php:500
+msgid "Update current filter"
+msgstr "Actualizar filtro actual"
+
+#: ../../operation/netflow/nf_live_view.php:514
+msgid "No filter selected"
+msgstr "No se ha seleccionado ningún filtro"
+
+#: ../../operation/agentes/networkmap.dinamic.php:126
+#: ../../operation/agentes/pandora_networkmap.view.php:2290
+msgid "List of networkmap"
+msgstr "Lista de mapas de red"
+
+#: ../../operation/agentes/networkmap.dinamic.php:226
+#: ../../include/functions_config.php:2407
+msgid "Pandora FMS"
+msgstr "Pandora FMS"
+
+#: ../../operation/agentes/status_monitor.php:62
+#: ../../operation/agentes/status_monitor.php:85
+#: ../../operation/agentes/ver_agente.php:1535
+#: ../../include/functions_events.php:4508
+#: ../../include/functions_reporting_html.php:1516
+#: ../../enterprise/meta/event/custom_events.php:56
+#: ../../enterprise/meta/event/custom_events.php:61
+#: ../../enterprise/meta/event/custom_events.php:74
+#: ../../enterprise/meta/event/custom_events.php:92
+#: ../../godmode/reporting/reporting_builder.item_editor.php:76
+#: ../../godmode/menu.php:77 ../../godmode/events/events.php:80
+#: ../../godmode/events/events.php:95
+#: ../../godmode/massive/massive_edit_agents.php:1103
+#: ../../godmode/agentes/agent_manager.php:868
+#: ../../godmode/agentes/agent_manager.php:893
+msgid "Custom fields"
+msgstr "Campos personalizados"
+
+#: ../../operation/agentes/status_monitor.php:119
+msgid "Monitor view"
+msgstr "Vista del monitor"
+
+#: ../../operation/agentes/status_monitor.php:488
+#: ../../operation/agentes/interface_view.functions.php:59
+#: ../../operation/agentes/estado_agente.php:262
+#: ../../include/class/NetworkMap.class.php:3226
+#: ../../include/functions_html.php:1535
+#: ../../enterprise/meta/monitoring/custom_fields_view.php:168
+#: ../../enterprise/godmode/reporting/reporting_builder.template.php:746
+#: ../../enterprise/godmode/policies/policies.php:324
+#: ../../extensions/agents_modules.php:407
+#: ../../godmode/reporting/reporting_builder.item_editor.php:1485
+#: ../../godmode/agentes/planned_downtime.editor.php:797
+#: ../../godmode/agentes/modificar_agente.php:352
+msgid "Recursion"
+msgstr "Recurrencia"
+
+#: ../../operation/agentes/status_monitor.php:500
+#: ../../enterprise/operation/agentes/tag_view.php:139
+msgid "Monitor status"
+msgstr "Estado del monitor"
+
+#: ../../operation/agentes/status_monitor.php:545
+#: ../../operation/agentes/status_monitor.php:1319
+#: ../../include/ajax/module.php:978 ../../include/ajax/heatmap.ajax.php:225
+#: ../../include/ajax/heatmap.ajax.php:264
+#: ../../include/ajax/custom_fields.php:411
+#: ../../enterprise/operation/agentes/tag_view.php:205
+#: ../../enterprise/include/functions_reporting_csv.php:873
+#: ../../enterprise/meta/include/functions_events_meta.php:90
+#: ../../enterprise/godmode/policies/policy_external_alerts.php:338
+#: ../../mobile/operation/modules.php:594 ../../mobile/operation/modules.php:848
+#: ../../godmode/modules/manage_network_components.php:748
+#: ../../godmode/modules/manage_network_templates_form.php:231
+#: ../../godmode/modules/manage_network_components_form_wizard.php:271
+#: ../../godmode/agentes/status_monitor_custom_fields.php:85
+#: ../../godmode/agentes/status_monitor_custom_fields.php:145
+#: ../../godmode/agentes/agent_template.php:235
+#: ../../godmode/alerts/alert_list.list.php:89
+msgid "Module name"
+msgstr "Nombre del módulo"
+
+#: ../../operation/agentes/status_monitor.php:559
+#: ../../operation/agentes/alerts_status.functions.php:107
+#: ../../enterprise/operation/agentes/tag_view.php:223
+#: ../../enterprise/operation/agentes/tag_view.php:225
+msgid "Only it is show tags in use."
+msgstr "Mostrar solo etiquetas en uso"
+
+#: ../../operation/agentes/status_monitor.php:564
+#: ../../operation/agentes/alerts_status.functions.php:112
+#: ../../enterprise/operation/agentes/tag_view.php:229
+msgid "No tags"
+msgstr "Sin etiquetas"
+
+#: ../../operation/agentes/status_monitor.php:625
+#: ../../enterprise/operation/agentes/tag_view.php:278
+#: ../../godmode/agentes/module_manager_editor_data.php:15
+msgid "Data server module"
+msgstr "Módulo del servidor de datos"
+
+#: ../../operation/agentes/status_monitor.php:627
+#: ../../enterprise/operation/agentes/tag_view.php:280
+#: ../../godmode/agentes/module_manager_editor_network.php:77
+msgid "Network server module"
+msgstr "Módulo del servidor de red"
+
+#: ../../operation/agentes/status_monitor.php:631
+#: ../../enterprise/operation/agentes/tag_view.php:284
+#: ../../godmode/agentes/module_manager_editor_plugin.php:46
+msgid "Plugin server module"
+msgstr "Módulo del servidor de plugin"
+
+#: ../../operation/agentes/status_monitor.php:635
+#: ../../enterprise/operation/agentes/tag_view.php:288
+#: ../../godmode/agentes/module_manager_editor_wmi.php:33
+msgid "WMI server module"
+msgstr "Módulo del servidor WMI"
+
+#: ../../operation/agentes/status_monitor.php:639
+#: ../../enterprise/operation/agentes/tag_view.php:292
+#: ../../godmode/agentes/module_manager_editor_prediction.php:107
+msgid "Prediction server module"
+msgstr "Módulo del servidor de predicción"
+
+#: ../../operation/agentes/status_monitor.php:643
+#: ../../enterprise/operation/agentes/tag_view.php:296
+#: ../../godmode/agentes/module_manager_editor_web.php:55
+msgid "Web server module"
+msgstr "Módulo del servidor web"
+
+#: ../../operation/agentes/status_monitor.php:645
+msgid "Wux server module"
+msgstr "Módulo del servidor WUX"
+
+#: ../../operation/agentes/status_monitor.php:650
+#: ../../operation/agentes/status_monitor.php:1324
+#: ../../enterprise/operation/agentes/tag_view.php:299
+#: ../../enterprise/operation/agentes/tag_view.php:680
+#: ../../godmode/agentes/status_monitor_custom_fields.php:89
+#: ../../godmode/agentes/status_monitor_custom_fields.php:146
+msgid "Server type"
+msgstr "Tipo de servidor"
+
+#: ../../operation/agentes/status_monitor.php:656
+#: ../../enterprise/operation/agentes/tag_view.php:305
+#: ../../godmode/agentes/modificar_agente.php:324
+msgid "Only enabled"
+msgstr "Solo habilitados"
+
+#: ../../operation/agentes/status_monitor.php:657
+#: ../../enterprise/operation/agentes/tag_view.php:306
+#: ../../godmode/agentes/modificar_agente.php:323
+msgid "Only disabled"
+msgstr "Solo deshabilitados"
+
+#: ../../operation/agentes/status_monitor.php:660
+#: ../../enterprise/operation/agentes/tag_view.php:309
+msgid "Show monitors..."
+msgstr "Mostrar módulos..."
+
+#: ../../operation/agentes/status_monitor.php:666
+msgid "Min. hours in current status"
+msgstr "Mín. de horas en el estado actual"
+
+#: ../../operation/agentes/status_monitor.php:671
+#: ../../enterprise/operation/agentes/tag_view.php:319
+#: ../../enterprise/operation/agentes/tag_view.php:679
+#: ../../godmode/agentes/status_monitor_custom_fields.php:81
+#: ../../godmode/agentes/status_monitor_custom_fields.php:144
+msgid "Data type"
+msgstr "Tipo de dato"
+
+#: ../../operation/agentes/status_monitor.php:776
+msgid "Not condition"
+msgstr "Condition NOT"
+
+#: ../../operation/agentes/status_monitor.php:776
+msgid ""
+"If you check this option, those elements that do NOT meet any of the "
+"requirements will be shown"
+msgstr ""
+"Si marca esta opción, se mostrarán aquellos elementos que NO cumplan alguno de "
+"los requisitos"
+
+#: ../../operation/agentes/status_monitor.php:845
+msgid "Advanced Options"
+msgstr "Opciones avanzadas"
+
+#: ../../operation/agentes/status_monitor.php:854
+msgid "Show filters"
+msgstr "Mostrar filtros"
+
+#: ../../operation/agentes/status_monitor.php:863
+#: ../../operation/agentes/agent_fields.php:37
+#: ../../enterprise/operation/agentes/tag_view.php:447
+msgid "Agent custom fields"
+msgstr "Campos personalizados de agente"
+
+#: ../../operation/agentes/status_monitor.php:1303
+#: ../../operation/agentes/alerts_status.php:537
+#: ../../operation/agentes/alerts_status.php:573
+#: ../../include/ajax/module.php:974 ../../include/ajax/alert_list.ajax.php:272
+#: ../../enterprise/operation/agentes/policy_view.php:67
+#: ../../enterprise/operation/agentes/collection_view.php:74
+#: ../../enterprise/include/functions_policies.php:4068
+#: ../../enterprise/meta/advanced/policymanager.sync.php:319
+#: ../../enterprise/meta/advanced/policymanager.queue.php:210
+#: ../../enterprise/meta/advanced/policymanager.queue.php:257
+#: ../../enterprise/extensions/resource_exportation/functions.php:18
+#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:462
+#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:112
+#: ../../enterprise/godmode/massive/massive_edit_tags_policy.php:116
+#: ../../enterprise/godmode/massive/massive_add_alerts_policy.php:102
+#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:208
+#: ../../enterprise/godmode/massive/massive_tags_edit_policy.php:108
+#: ../../enterprise/godmode/agentes/inventory_manager.php:219
+#: ../../enterprise/godmode/agentes/collection_manager.php:205
+#: ../../enterprise/godmode/agentes/plugins_manager.php:193
+#: ../../enterprise/godmode/policies/policy_queue.php:593
+#: ../../enterprise/godmode/policies/policy_queue.php:647
+#: ../../godmode/agentes/module_manager.php:841
+#: ../../godmode/agentes/status_monitor_custom_fields.php:73
+#: ../../godmode/agentes/status_monitor_custom_fields.php:142
+#: ../../godmode/alerts/alert_view.php:148
+msgid "Policy"
+msgstr "Política"
+
+#: ../../operation/agentes/status_monitor.php:1303
+#: ../../operation/agentes/alerts_status.php:537
+#: ../../operation/agentes/alerts_status.php:573
+#: ../../include/ajax/module.php:974 ../../include/ajax/alert_list.ajax.php:272
+#: ../../enterprise/operation/agentes/collection_view.php:74
+#: ../../enterprise/godmode/agentes/inventory_manager.php:219
+#: ../../enterprise/godmode/agentes/collection_manager.php:205
+#: ../../godmode/reporting/reporting_builder.list_items.php:371
+#: ../../godmode/reporting/graph_builder.graph_editor.php:211
+#: ../../godmode/snmpconsole/snmp_alert.php:1217
+#: ../../godmode/agentes/module_manager.php:841
+msgid "P."
+msgstr "P."
+
+#: ../../operation/agentes/status_monitor.php:1313
+msgid "Data Type"
+msgstr "Tipo de datos"
+
+#: ../../operation/agentes/status_monitor.php:1341
+#: ../../operation/agentes/estado_generalagente.php:417
+#: ../../include/functions_treeview.php:326
+#: ../../godmode/agentes/status_monitor_custom_fields.php:101
+#: ../../godmode/agentes/status_monitor_custom_fields.php:149
+msgid "Last status change"
+msgstr "Último cambio de estado"
+
+#: ../../operation/agentes/status_monitor.php:1352
+#: ../../enterprise/operation/agentes/tag_view.php:683
+#: ../../godmode/agentes/module_manager.php:864
+#: ../../godmode/agentes/status_monitor_custom_fields.php:109
+#: ../../godmode/agentes/status_monitor_custom_fields.php:151
+msgid "Warn"
+msgstr "Advertencia"
+
+#: ../../operation/agentes/status_monitor.php:1432
+#: ../../operation/agentes/pandora_networkmap.view.php:1743
+msgid "(Adopt) "
+msgstr "(Adoptar) "
+
+#: ../../operation/agentes/status_monitor.php:1440
+#: ../../operation/agentes/pandora_networkmap.view.php:1751
+msgid "(Unlinked) (Adopt) "
+msgstr "(Sin enlazar) (Adoptar) "
+
+#: ../../operation/agentes/status_monitor.php:1443
+#: ../../operation/agentes/pandora_networkmap.view.php:1754
+msgid "(Unlinked) "
+msgstr "(Sin enlazar) "
+
+#: ../../operation/agentes/status_monitor.php:1642
+#: ../../operation/agentes/status_monitor.php:1650
+#: ../../include/class/Tree.class.php:646 ../../include/lib/Module.php:565
+#: ../../include/functions_modules.php:4088 ../../include/functions.php:1357
+#: ../../include/functions.php:1394
+msgid "NO DATA"
+msgstr "SIN DATOS"
+
+#: ../../operation/agentes/status_monitor.php:1981
+msgid "This group doesn't have any monitor"
+msgstr "Este grupo no tiene ningún monitor definido."
+
+#: ../../operation/agentes/status_monitor.php:1983
+msgid "Sorry no search parameters"
+msgstr "No hay parámetros de búsqueda"
+
+#: ../../operation/agentes/alerts_status.php:209
+#: ../../enterprise/meta/general/main_menu.php:206
+#: ../../enterprise/meta/general/main_header.php:115
+msgid "Alerts view"
+msgstr "Vista de alertas"
+
+#: ../../operation/agentes/alerts_status.php:217
+msgid "Insufficient permissions to validate alerts"
+msgstr "Permisos insuficientes para validar alertas"
+
+#: ../../operation/agentes/alerts_status.php:500
+#: ../../enterprise/godmode/policies/policy_external_alerts.php:372
+#: ../../godmode/alerts/alert_list.list.php:178
+msgid "Alert control filter"
+msgstr "Filtro de control de alertas"
+
+#: ../../operation/agentes/alerts_status.php:539
+#: ../../operation/agentes/alerts_status.php:575
+#: ../../operation/agentes/alerts_status.php:610
+#: ../../operation/agentes/alerts_status.php:643
+#: ../../operation/agentes/alerts_status.functions.php:123
+#: ../../include/ajax/alert_list.ajax.php:273
+#: ../../include/ajax/alert_list.ajax.php:298
+#: ../../enterprise/operation/agentes/policy_view.php:257
+#: ../../godmode/alerts/alert_list.list.php:141
+msgid "Standby"
+msgstr "Standby"
+
+#: ../../operation/agentes/alerts_status.php:539
+#: ../../operation/agentes/alerts_status.php:575
+#: ../../operation/agentes/alerts_status.php:610
+#: ../../operation/agentes/alerts_status.php:643
+#: ../../include/ajax/alert_list.ajax.php:273
+#: ../../include/ajax/alert_list.ajax.php:298
+#: ../../include/class/AuditLog.class.php:128
+#: ../../include/functions_events.php:2602
+#: ../../enterprise/operation/agentes/policy_view.php:66
+#: ../../enterprise/operation/agentes/policy_view.php:166
+#: ../../enterprise/operation/agentes/policy_view.php:257
+#: ../../enterprise/operation/agentes/policy_view.php:262
+#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:190
+#: ../../enterprise/godmode/admin_access_logs.php:50
+#: ../../enterprise/godmode/policies/policy_agents.php:852
+#: ../../enterprise/godmode/policies/policy_agents.php:1368
+#: ../../mobile/operation/agents.php:406
+#: ../../godmode/agentes/module_manager.php:844
+msgid "S."
+msgstr "S."
+
+#: ../../operation/agentes/alerts_status.php:543
+#: ../../operation/agentes/alerts_status.php:579
+#: ../../operation/agentes/alerts_status.php:613
+#: ../../operation/agentes/alerts_status.php:646
+#: ../../include/ajax/module.php:970 ../../include/ajax/alert_list.ajax.php:276
+#: ../../include/ajax/alert_list.ajax.php:301
+msgid "Force execution"
+msgstr "Forzar ejecución"
+
+#: ../../operation/agentes/alerts_status.php:543
+#: ../../operation/agentes/alerts_status.php:579
+#: ../../operation/agentes/alerts_status.php:613
+#: ../../operation/agentes/alerts_status.php:646
+#: ../../include/ajax/module.php:970 ../../include/ajax/alert_list.ajax.php:276
+#: ../../include/ajax/alert_list.ajax.php:301
+msgid "F."
+msgstr "F."
+
+#: ../../operation/agentes/alerts_status.php:549
+#: ../../operation/agentes/alerts_status.php:584
+#: ../../operation/agentes/alerts_status.php:619
+#: ../../operation/agentes/alerts_status.php:651
+#: ../../operation/search_alerts.php:36 ../../include/functions_cron.php:653
+#: ../../include/ajax/alert_list.ajax.php:280
+#: ../../include/ajax/alert_list.ajax.php:305
+#: ../../include/class/AgentsAlerts.class.php:338
+#: ../../include/class/AgentsAlerts.class.php:976
+#: ../../include/functions_treeview.php:412
+#: ../../include/functions_treeview.php:453
+#: ../../include/functions_reporting_html.php:3133
+#: ../../include/functions_reporting_html.php:3136
+#: ../../enterprise/operation/agentes/policy_view.php:259
+#: ../../enterprise/include/functions_reporting_csv.php:2465
+#: ../../enterprise/include/functions_tasklist.php:328
+#: ../../enterprise/meta/monitoring/wizard/wizard.manage_alert.php:224
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:321
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1399
+#: ../../enterprise/godmode/policies/policy_external_alerts.php:329
+#: ../../enterprise/godmode/policies/policy_alerts.php:351
+#: ../../enterprise/godmode/policies/policy_alerts.php:557
+#: ../../mobile/operation/alerts.php:342
+#: ../../godmode/reporting/reporting_builder.item_editor.php:201
+#: ../../godmode/reporting/reporting_builder.item_editor.php:825
+#: ../../godmode/alerts/alert_list.list.php:483
+#: ../../godmode/alerts/alert_list.builder.php:140
+#: ../../godmode/alerts/alert_view.php:95
+msgid "Template"
+msgstr "Plantilla"
+
+#: ../../operation/agentes/alerts_status.php:551
+#: ../../operation/agentes/alerts_status.php:586
+#: ../../operation/agentes/alerts_status.php:621
+#: ../../operation/agentes/alerts_status.php:653
+#: ../../include/ajax/alert_list.ajax.php:282
+#: ../../include/ajax/alert_list.ajax.php:307
+#: ../../include/class/AgentsAlerts.class.php:905
+#: ../../include/functions_treeview.php:455
+#: ../../include/functions_reporting_html.php:5158
+#: ../../enterprise/operation/agentes/policy_view.php:261
+#: ../../enterprise/godmode/alerts/alert_inventory_list.php:221
+#: ../../godmode/snmpconsole/snmp_alert.php:1238
+#: ../../godmode/alerts/alert_view.php:99
+msgid "Last fired"
+msgstr "Disparada por última vez"
+
+#: ../../operation/agentes/alerts_status.php:732
+#: ../../include/ajax/alert_list.ajax.php:328
+msgid "No alerts found"
+msgstr "No se encontró ninguna alerta"
+
+#: ../../operation/agentes/alerts_status.php:742
+msgid "Full list of alerts"
+msgstr "Lista completa de alertas"
+
+#: ../../operation/agentes/ehorus.php:30
+msgid "Missing agent id"
+msgstr "Falta ID de agente"
+
+#: ../../operation/agentes/ehorus.php:51
+msgid "Missing ehorus agent id"
+msgstr "Falta ID de agente de eHorus"
+
+#: ../../operation/agentes/ehorus.php:100 ../../operation/agentes/ehorus.php:137
+msgid "There was an error retrieving an authorization token"
+msgstr "Error al recibir el token de autorización"
+
+#: ../../operation/agentes/ehorus.php:112 ../../operation/agentes/ehorus.php:149
+#: ../../operation/agentes/ehorus.php:185
+msgid "There was an error processing the response"
+msgstr "Error al procesar la respuesta"
+
+#: ../../operation/agentes/ehorus.php:173
+msgid "There was an error retrieving the agent data"
+msgstr "Error al obtener los datos del agente"
+
+#: ../../operation/agentes/ehorus.php:190
+msgid "Remote management of this agent with eHorus"
+msgstr "Control remoto de este agente con eHorus"
+
+#: ../../operation/agentes/ehorus.php:192
+msgid "Launch"
+msgstr "Iniciar"
+
+#: ../../operation/agentes/ehorus.php:198
+msgid "The connection was lost and the authorization token was expired"
+msgstr "La conexión se perdió y el token de autorización ha expirado."
+
+#: ../../operation/agentes/ehorus.php:198
+msgid "Reload the page to request a new authorization token"
+msgstr "Refresca la página para obtener otro token de autorización"
+
+#: ../../operation/agentes/group_view.php:80
+#: ../../operation/agentes/tactical.php:60
+#: ../../enterprise/tools/ipam/ipam_list.php:631
+#: ../../enterprise/views/ncm/devices/list.php:122
+#: ../../enterprise/operation/services/services.service.php:133
+#: ../../enterprise/operation/services/services.list.php:510
+#: ../../extensions/agents_modules.php:317
+msgid "Last update"
+msgstr "Última actualización"
+
+#: ../../operation/agentes/group_view.php:180
+msgid "Summary of the status groups"
+msgstr "Resumen de los grupos por estado"
+
+#: ../../operation/agentes/group_view.php:183
+#: ../../operation/agentes/group_view.php:216
+#: ../../operation/agentes/interface_view.functions.php:71
+#: ../../operation/search_results.php:80 ../../include/functions_cron.php:663
+#: ../../include/class/AgentsAlerts.class.php:252
+#: ../../include/class/AgentsAlerts.class.php:542
+#: ../../include/class/Diagnostics.class.php:1161
+#: ../../include/class/Diagnostics.class.php:1165
+#: ../../include/class/Diagnostics.class.php:1169
+#: ../../include/class/Diagnostics.class.php:1173
+#: ../../include/class/NetworkMap.class.php:3228
+#: ../../include/lib/Dashboard/Widgets/groups_status.php:311
+#: ../../include/lib/Dashboard/Widgets/groups_status.php:316
+#: ../../include/lib/Dashboard/Widgets/agent_module.php:448
+#: ../../include/functions_groups.php:53 ../../include/functions_html.php:1645
+#: ../../include/functions_reporting_html.php:1816
+#: ../../include/functions_reporting_html.php:2285
+#: ../../include/functions_reporting_html.php:3034
+#: ../../enterprise/operation/services/services.service_map.php:123
+#: ../../enterprise/include/functions_cron.php:215
+#: ../../enterprise/include/functions_tasklist.php:338
+#: ../../enterprise/include/functions_reporting_pdf.php:861
+#: ../../enterprise/include/functions_policies.php:3822
+#: ../../enterprise/meta/include/functions_autoprovision.php:476
+#: ../../enterprise/meta/monitoring/group_view.php:154
+#: ../../enterprise/meta/monitoring/group_view.php:215
+#: ../../enterprise/meta/monitoring/wizard/wizard.php:304
+#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:362
+#: ../../enterprise/meta/advanced/policymanager.queue.php:258
+#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:291
+#: ../../enterprise/godmode/reporting/reporting_builder.global.php:220
+#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:205
+#: ../../enterprise/godmode/massive/massive_add_service_elements.php:361
+#: ../../enterprise/godmode/massive/massive_create_services.php:964
+#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:248
+#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:100
+#: ../../enterprise/godmode/agentes/collections.editor.php:74
+#: ../../enterprise/godmode/agentes/collections.agents.php:53
+#: ../../enterprise/godmode/agentes/collections.data.php:137
+#: ../../enterprise/godmode/agentes/collections.data.php:283
+#: ../../enterprise/godmode/policies/policy_agents.php:531
+#: ../../enterprise/godmode/policies/policy_agents.php:664
+#: ../../enterprise/godmode/policies/policy_agents.php:778
+#: ../../enterprise/godmode/policies/policy.php:71
+#: ../../enterprise/godmode/policies/policy_queue.php:648
+#: ../../enterprise/godmode/policies/policies.php:407
+#: ../../enterprise/godmode/policies/policies.php:531
+#: ../../extensions/agents_modules.php:431
+#: ../../extensions/agents_modules.php:758 ../../mobile/operation/agent.php:155
+#: ../../mobile/operation/home.php:81 ../../mobile/operation/agents.php:204
+#: ../../mobile/include/functions_web.php:23
+#: ../../godmode/reporting/reporting_builder.list_items.php:208
+#: ../../godmode/reporting/reporting_builder.list_items.php:229
+#: ../../godmode/reporting/reporting_builder.item_editor.php:1671
+#: ../../godmode/reporting/reporting_builder.item_editor.php:1733
+#: ../../godmode/reporting/reporting_builder.item_editor.php:1980
+#: ../../godmode/reporting/visual_console_builder.wizard.php:408
+#: ../../godmode/massive/massive_add_alerts.php:231
+#: ../../godmode/massive/massive_delete_modules.php:535
+#: ../../godmode/massive/massive_standby_alerts.php:203
+#: ../../godmode/massive/massive_edit_agents.php:566
+#: ../../godmode/massive/massive_delete_alerts.php:308
+#: ../../godmode/massive/massive_delete_agents.php:280
+#: ../../godmode/massive/massive_edit_plugins.php:367
+#: ../../godmode/massive/massive_enable_disable_alerts.php:174
+#: ../../godmode/massive/massive_edit_modules.php:511
+#: ../../godmode/agentes/planned_downtime.list.php:84
+#: ../../godmode/agentes/planned_downtime.list.php:108
+#: ../../godmode/alerts/alert_list.list.php:69
+msgid "Agents"
+msgstr "Agentes"
+
+#: ../../operation/agentes/group_view.php:221
+#: ../../operation/agentes/group_view.php:276 ../../include/ajax/module.php:1052
+#: ../../include/functions_ui.php:1162
+#: ../../enterprise/operation/services/services.list.php:639
+#: ../../enterprise/include/functions_ipam.php:1384
+#: ../../enterprise/godmode/agentes/inventory_manager.php:257
+#: ../../godmode/wizards/DiscoveryTaskList.class.php:584
+#: ../../godmode/wizards/DiscoveryTaskList.class.php:674
+msgid "Force"
+msgstr "Forzar"
+
+#: ../../operation/agentes/group_view.php:313
+#: ../../enterprise/meta/monitoring/group_view.php:359
+#, php-format
+msgid ""
+"This %s installation are using the secondary groups feature. For this reason, "
+"an agent can be counted several times."
+msgstr ""
+"Esta instalación de %s está usando la funcionalidad de grupos secundarios. Por "
+"ello, los agentes se pueden contar varias veces."
+
+#: ../../operation/agentes/group_view.php:570
+#: ../../operation/agentes/estado_agente.php:975
+#: ../../enterprise/meta/monitoring/group_view.php:205
+#: ../../godmode/agentes/modificar_agente.php:944
+msgid "There are no defined agents"
+msgstr "No hay ningún agente definido"
+
+#: ../../operation/agentes/graphs.php:143
+msgid "Other modules"
+msgstr "Otros módulos"
+
+#: ../../operation/agentes/graphs.php:150
+msgid "Modules network no proc"
+msgstr "Módulos de red sin proc"
+
+#: ../../operation/agentes/graphs.php:157
+msgid "Modules boolean"
+msgstr "Módulos booleanos"
+
+#: ../../operation/agentes/graphs.php:207
+#: ../../operation/agentes/stat_win.php:302
+#: ../../operation/agentes/stat_win.php:421
+#: ../../operation/agentes/exportdata.php:318
+#: ../../operation/agentes/interface_traffic_graph_win.php:181
+#: ../../mobile/operation/module_graph.php:461
+msgid "Begin date"
+msgstr "Fecha de inicio"
+
+#: ../../operation/agentes/graphs.php:222
+#: ../../operation/agentes/stat_win.php:278
+msgid "Show events"
+msgstr "Mostrar eventos"
+
+#: ../../operation/agentes/graphs.php:224
+#: ../../operation/agentes/stat_win.php:312
+msgid "Show alerts"
+msgstr "Mostrar alertas"
+
+#: ../../operation/agentes/graphs.php:224
+msgid "the combined graph does not show the alerts into this graph"
+msgstr "Los gráficos combinados no muestran las alertas."
+
+#: ../../operation/agentes/graphs.php:226
+msgid "Show as one combined graph"
+msgstr "Mostrar como un gráfico combinado"
+
+#: ../../operation/agentes/graphs.php:228
+msgid "several graphs for each module"
+msgstr "Varios gráficos por cada módulo"
+
+#: ../../operation/agentes/graphs.php:229
+msgid "One combined graph"
+msgstr "Gráfico combinado"
+
+#: ../../operation/agentes/graphs.php:233
+#: ../../godmode/netflow/nf_item_list.php:177
+msgid "Chart type"
+msgstr "Tipo de gráfico"
+
+#: ../../operation/agentes/graphs.php:237 ../../operation/agentes/graphs.php:413
+msgid "Area stack"
+msgstr "Gráfico de área apilada"
+
+#: ../../operation/agentes/graphs.php:239 ../../operation/agentes/graphs.php:421
+msgid "Line stack"
+msgstr "Gráfico de línea apilada"
+
+#: ../../operation/agentes/graphs.php:256
+msgid "Save as custom graph"
+msgstr "Guardar como gráfico personalizado"
+
+#: ../../operation/agentes/graphs.php:269
+msgid "Filter graphs"
+msgstr "Filtrar gráficos"
+
+#: ../../operation/agentes/graphs.php:296
+msgid "There was an error loading the graph"
+msgstr "Error al cargar el gráfico"
+
+#: ../../operation/agentes/graphs.php:304 ../../operation/agentes/graphs.php:308
+msgid "Name custom graph"
+msgstr "Nombre de gráfico personalizado"
+
+#: ../../operation/agentes/graphs.php:342
+#: ../../enterprise/views/ncm/agent/manage.php:259
+#: ../../enterprise/include/ajax/transactional.ajax.php:83
+#: ../../enterprise/godmode/reporting/mysql_builder.php:240
+#: ../../enterprise/godmode/reporting/reporting_builder.template_editor.php:109
+#: ../../extensions/insert_data.php:208 ../../godmode/setup/snmp_wizard.php:100
+#: ../../godmode/setup/gis_step_2.php:521
+#: ../../godmode/reporting/reporting_builder.main.php:45
+#: ../../godmode/reporting/visual_console_builder.data.php:229
+msgid "Save"
+msgstr "Guardar"
+
+#: ../../operation/agentes/graphs.php:354
+msgid "Save custom graph"
+msgstr "Guardar gráfico personalizado"
+
+#: ../../operation/agentes/graphs.php:375
+msgid "Custom graph create from the tab graphs in the agent."
+msgstr "Gráfico personalizado creado desde la sección de gráficos del agente"
+
+#: ../../operation/agentes/estado_monitores.php:51
+msgid "Tag's information"
+msgstr "Información de etiquetas"
+
+#: ../../operation/agentes/estado_monitores.php:109
+msgid "Relationship information"
+msgstr "Información de relaciones"
+
+#: ../../operation/agentes/estado_monitores.php:160
+msgid "Non-initialized modules found."
+msgstr "Se han encontrado módulos no iniciados."
+
+#: ../../operation/agentes/estado_monitores.php:181
+msgid "List of modules"
+msgstr "Lista de módulos"
+
+#: ../../operation/agentes/estado_monitores.php:182
+msgid ""
+"To see the list of modules paginated, enable this option in the Styles "
+"Configuration."
+msgstr ""
+"Para ver la lista de módulos con paginación, habilita esta opción en la "
+"configuración de estilos."
+
+#: ../../operation/agentes/estado_monitores.php:518
+msgid "Status:"
+msgstr "Estado:"
+
+#: ../../operation/agentes/estado_monitores.php:524
+msgid "Not Normal"
+msgstr "No normal"
+
+#: ../../operation/agentes/estado_monitores.php:539
+#: ../../operation/agentes/alerts_status.functions.php:177
+msgid "Free text for search (*):"
+msgstr "Texto libre de búsqueda (*):"
+
+#: ../../operation/agentes/estado_monitores.php:540
+msgid "Search by module name, list matches."
+msgstr "Búsqueda por nombre del módulo, lista de coincidencias."
+
+#: ../../operation/agentes/estado_monitores.php:582
+#: ../../godmode/agentes/module_manager.php:192
+msgid "Show in hierachy mode"
+msgstr "Mostrar en modo jerarquía"
+
+#: ../../operation/agentes/estado_monitores.php:602
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1953
+msgid "Reset"
+msgstr "Reiniciar"
+
+#: ../../operation/agentes/interface_view.functions.php:93
+#: ../../operation/agentes/interface_view.functions.php:131
+#: ../../operation/agentes/ver_agente.php:1401
+#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:53
+#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:410
+msgid "Interfaces"
+msgstr "Interfaces"
+
+#: ../../operation/agentes/interface_view.functions.php:170
+#: ../../operation/agentes/interface_view.functions.php:171
+msgid "Interface filter"
+msgstr "Filtro de interfaz"
+
+#: ../../operation/agentes/interface_view.functions.php:489
+msgid "IfName"
+msgstr "IfName"
+
+#: ../../operation/agentes/interface_view.functions.php:499
+msgid "IfSpeed"
+msgstr "IfSpeed"
+
+#: ../../operation/agentes/interface_view.functions.php:507
+msgid "IfInOctets"
+msgstr "IfInOctets"
+
+#: ../../operation/agentes/interface_view.functions.php:515
+msgid "IfOutOctets"
+msgstr "IfOutOctets"
+
+#: ../../operation/agentes/interface_view.functions.php:523
+msgid "% Bandwidth usage (in)"
+msgstr "% Uso de ancho de banda (entrada)"
+
+#: ../../operation/agentes/interface_view.functions.php:531
+msgid "% Bandwidth usage (out)"
+msgstr "% Uso de ancho de banda (salida)"
+
+#: ../../operation/agentes/interface_view.functions.php:539
+#: ../../include/functions_treeview.php:319
+#: ../../include/functions_reporting_html.php:90
+#: ../../include/functions_reporting_html.php:5480
+#: ../../enterprise/include/functions_reporting_pdf.php:1988
+msgid "Last data"
+msgstr "Últimos datos"
+
+#: ../../operation/agentes/interface_view.functions.php:736
+msgid "No search parameters"
+msgstr "No hay parámetros de búsqueda"
+
+#: ../../operation/agentes/stat_win.php:51
+#: ../../operation/agentes/stat_win.php:176
+#: ../../operation/agentes/realtime_win.php:51
+#: ../../operation/agentes/interface_traffic_graph_win.php:54
+#: ../../include/chart_generator.php:125
+#: ../../enterprise/operation/inventory/inventory.php:191
+msgid "There was a problem connecting with the node"
+msgstr "Error al conectar con el nodo"
+
+#: ../../operation/agentes/stat_win.php:116
+#, php-format
+msgid "%s Graph"
+msgstr "Gráfica %s"
+
+#: ../../operation/agentes/stat_win.php:149
+msgid "There was a problem locating the source of the graph"
+msgstr "Error al localizar la fuente del gráfico"
+
+#: ../../operation/agentes/stat_win.php:267
+#: ../../operation/agentes/interface_traffic_graph_win.php:167
+msgid "Refresh time"
+msgstr "Tiempo de actualización"
+
+#: ../../operation/agentes/stat_win.php:297
+#, php-format
+msgid ""
+"'Show events' is disabled because this %s node is set to event replication."
+msgstr ""
+"\"Mostrar eventos\" está deshabilitado porque el nodo de %s está en "
+"replicación de eventos."
+
+#: ../../operation/agentes/stat_win.php:320
+#: ../../operation/agentes/stat_win.php:431
+#: ../../operation/agentes/interface_traffic_graph_win.php:207
+msgid "Begin time"
+msgstr "Tiempo de inicio"
+
+#: ../../operation/agentes/stat_win.php:330
+#: ../../mobile/operation/module_graph.php:444
+msgid "Show unknown graph"
+msgstr "Mostrar gráficos desconocidos"
+
+#: ../../operation/agentes/stat_win.php:353
+msgid "Zoom"
+msgstr "Ampliación"
+
+#: ../../operation/agentes/stat_win.php:373
+#: ../../operation/agentes/interface_traffic_graph_win.php:227
+msgid "Show percentil"
+msgstr "Mostrar el percentil"
+
+#: ../../operation/agentes/stat_win.php:382
+#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:543
+#: ../../mobile/operation/module_graph.php:436
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2507
+msgid "Time compare (Overlapped)"
+msgstr "Comparación de tiempo (solapado)"
+
+#: ../../operation/agentes/stat_win.php:390
+#: ../../operation/agentes/stat_win.php:452
+#: ../../mobile/operation/module_graph.php:428
+msgid "Time compare (Separated)"
+msgstr "Comparación de tiempo (por separado)"
+
+#: ../../operation/agentes/stat_win.php:399
+msgid "Show AVG/MAX/MIN data series in graph"
+msgstr "Mostar series de datos MEDIA/MÄX./MÍN. en la gráfica"
+
+#: ../../operation/agentes/stat_win.php:408
+#: ../../operation/agentes/interface_traffic_graph_win.php:238
+#: ../../godmode/reporting/create_container.php:437
+#: ../../godmode/reporting/create_container.php:494
+#: ../../godmode/reporting/create_container.php:589
+#: ../../godmode/reporting/graph_builder.main.php:285
+msgid "Show full scale graph (TIP)"
+msgstr "Mostrar gráfica a escala completa (TIP)"
+
+#: ../../operation/agentes/stat_win.php:410
+#: ../../operation/agentes/interface_traffic_graph_win.php:240
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2492
+#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:560
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2488
+msgid ""
+"TIP mode charts do not support average - maximum - minimum series, you can "
+"only enable TIP or average, maximum or minimum series"
+msgstr ""
+"Tablas en modo TIP no soportan las series media - máximo - mínimo, solo puede "
+"habilitar las series TIP o media, máximo o mínimo"
+
+#: ../../operation/agentes/stat_win.php:464
+#: ../../operation/agentes/interface_traffic_graph_win.php:276
+#: ../../enterprise/views/cluster/view.php:441
+msgid "Reload"
+msgstr "Actualizar"
+
+#: ../../operation/agentes/stat_win.php:502
+#: ../../operation/agentes/interface_traffic_graph_win.php:306
+msgid "Graph configuration menu"
+msgstr "Menu de configuración de gráfica"
+
+#: ../../operation/agentes/stat_win.php:504
+#: ../../operation/agentes/interface_traffic_graph_win.php:308
+#: ../../include/ajax/module.php:399
+msgid ""
+"In Pandora FMS, data is stored compressed. The data visualization in database, "
+"charts or CSV exported data won't match, because is interpreted at runtime. "
+"Please check 'Pandora FMS Engineering' chapter from documentation."
+msgstr ""
+"En Pandora FMS los datos se almacenan comprimidos. La visualización de los "
+"datos en la base de datos, las tablas o los datos exportados en CSV no "
+"coincidirán porque se interpretan en el momento de la ejecución. Lea la "
+"documentación del capítulo de 'Ingeniería de Pandora FMS'."
+
+#: ../../operation/agentes/pandora_networkmap.php:139
+#: ../../operation/agentes/pandora_networkmap.php:374
+msgid "Succesfully created"
+msgstr "Creado correctamente"
+
+#: ../../operation/agentes/pandora_networkmap.php:140
+#: ../../operation/agentes/pandora_networkmap.php:375
+#: ../../include/functions_alerts.php:2745
+#: ../../include/functions_planned_downtimes.php:112
+#: ../../include/functions_planned_downtimes.php:827
+#: ../../enterprise/tools/ipam/ipam_network_location_config.php:51
+#: ../../enterprise/tools/ipam/ipam_action.php:153
+#: ../../enterprise/operation/agentes/transactional_map.php:135
+#: ../../enterprise/include/ajax/servers.ajax.php:198
+#: ../../enterprise/godmode/setup/setup_metaconsole.php:126
+#: ../../enterprise/godmode/servers/credential_boxes_satellite.php:81
+#: ../../enterprise/godmode/servers/manage_export.php:112
+#: ../../enterprise/godmode/servers/manage_export.php:119
+#: ../../enterprise/godmode/modules/local_components.php:142
+#: ../../enterprise/godmode/modules/local_components.php:318
+#: ../../enterprise/godmode/reporting/reporting_builder.template_editor.php:48
+#: ../../enterprise/godmode/alerts/alert_inventory_builder.php:77
+#: ../../enterprise/godmode/policies/policies.php:170
+#: ../../enterprise/godmode/policies/policy_external_alerts.php:124
+#: ../../enterprise/godmode/policies/policy_external_alerts.php:127
+#: ../../godmode/setup/news.php:67 ../../godmode/setup/gis.php:49
+#: ../../godmode/modules/manage_network_components.php:199
+#: ../../godmode/modules/manage_network_components.php:427
+#: ../../godmode/modules/manage_nc_groups.php:85
+#: ../../godmode/reporting/reporting_builder.item_editor.php:5695
+#: ../../godmode/agentes/configurar_agente.php:350
+#: ../../godmode/agentes/configurar_agente.php:875
+#: ../../godmode/agentes/planned_downtime.editor.php:406
+#: ../../godmode/alerts/configure_alert_template.php:192
+#: ../../godmode/alerts/configure_alert_template.php:527
+#: ../../godmode/alerts/alert_commands.php:559
+#: ../../godmode/alerts/alert_list.php:165
+#: ../../godmode/users/configure_user.php:475
+msgid "Could not be created"
+msgstr "No se ha podido crear"
+
+#: ../../operation/agentes/pandora_networkmap.php:215
+#: ../../operation/agentes/pandora_networkmap.php:507
+msgid "Succesfully updated"
+msgstr "Actualizado correctamente"
+
+#: ../../operation/agentes/pandora_networkmap.php:532
+msgid "Succesfully duplicate"
+msgstr "Duplicado correctamente"
+
+#: ../../operation/agentes/pandora_networkmap.php:533
+#: ../../enterprise/godmode/policies/policy_modules.php:1412
+msgid "Could not be duplicated"
+msgstr "No se puede duplicar"
+
+#: ../../operation/agentes/pandora_networkmap.php:546
+msgid "Succesfully deleted"
+msgstr "Eliminado correctamente"
+
+#: ../../operation/agentes/pandora_networkmap.php:656
+msgid "List of network maps"
+msgstr "Lista de mapas de red"
+
+#: ../../operation/agentes/pandora_networkmap.php:669
+#: ../../operation/agentes/pandora_networkmap.editor.php:218
+#: ../../operation/agentes/pandora_networkmap.view.php:2230
+#: ../../enterprise/godmode/agentes/pandora_networkmap_empty.editor.php:106
+#: ../../godmode/agentes/pandora_networkmap_empty.editor.php:108
+msgid "Networkmap"
+msgstr "Mapa de red"
+
+#: ../../operation/agentes/pandora_networkmap.php:708
+#: ../../include/functions_reporting_html.php:5589
+#: ../../enterprise/views/cluster/list.php:62
+msgid "Nodes"
+msgstr "Nodos"
+
+#: ../../operation/agentes/pandora_networkmap.php:776
+msgid "Empty map"
+msgstr "Mapa vacío"
+
+#: ../../operation/agentes/pandora_networkmap.php:778
+#: ../../include/functions_reporting.php:1060
+#: ../../include/functions_reporting.php:8923 ../../include/functions_maps.php:50
+#: ../../enterprise/include/functions_reporting.php:2535
+#: ../../enterprise/include/functions_reporting.php:3479
+#: ../../enterprise/include/functions_reporting.php:4454
+#: ../../enterprise/godmode/services/services.elements.php:99
+msgid "Dynamic"
+msgstr "Dinámico"
+
+#: ../../operation/agentes/pandora_networkmap.php:780
+msgid "Pending to generate"
+msgstr "Pendiente de generar"
+
+#: ../../operation/agentes/pandora_networkmap.php:811
+msgid "There are no maps defined."
+msgstr "No hay mapas definidos."
+
+#: ../../operation/agentes/pandora_networkmap.php:818
+msgid "Create network map"
+msgstr "Crear mapa de red"
+
+#: ../../operation/agentes/pandora_networkmap.php:825
+msgid "Create empty network map"
+msgstr "Crear mapa de red vacío"
+
+#: ../../operation/agentes/realtime_win.php:85
+#, php-format
+msgid "%s Realtime Module Graph"
+msgstr "Gráfica de módulos %s en tiempo real"
+
+#: ../../operation/agentes/realtime_win.php:112
+msgid "Realtime extension is not enabled."
+msgstr "La extensión tiempo real no está habilitada"
+
+#: ../../operation/agentes/log_sources_status.php:57
+#: ../../godmode/wizards/DiscoveryTaskList.class.php:1289
+#: ../../godmode/wizards/DiscoveryTaskList.class.php:1853
+msgid "Review"
+msgstr "Revisar"
+
+#: ../../operation/agentes/log_sources_status.php:75
+msgid "Review in log viewer"
+msgstr "Revisar en visor de logs"
+
+#: ../../operation/agentes/log_sources_status.php:98
+msgid "No log sources found"
+msgstr "No se han encontrado fuentes de logs"
+
+#: ../../operation/agentes/log_sources_status.php:117
+msgid "Log sources status"
+msgstr "Estado de las fuentes de logs"
+
+#: ../../operation/agentes/exportdata.csv.php:66
+#: ../../operation/agentes/exportdata.php:71
+#: ../../operation/agentes/exportdata.excel.php:66
+msgid "Invalid time specified"
+msgstr "Hora especificada no válida"
+
+#: ../../operation/agentes/exportdata.csv.php:178
+#: ../../operation/agentes/exportdata.php:209
+#: ../../operation/agentes/exportdata.excel.php:161
+msgid "No modules specified"
+msgstr "No se especificó ningún módulo"
+
+#: ../../operation/agentes/exportdata.php:248
+#: ../../enterprise/godmode/agentes/manage_config_remote.php:153
+msgid "Source agent"
+msgstr "Agente de origen"
+
+#: ../../operation/agentes/exportdata.php:283
+msgid "No modules of type string. You can not calculate their average"
+msgstr "No hay módulos de tipo cadena. No puedes calcular la media."
+
+#: ../../operation/agentes/exportdata.php:375
+msgid "Export type"
+msgstr "Tipo de exportación"
+
+#: ../../operation/agentes/exportdata.php:378
+#: ../../include/functions_netflow.php:1184
+msgid "Data table"
+msgstr "Tabla de datos"
+
+#: ../../operation/agentes/exportdata.php:379
+#: ../../enterprise/operation/reporting/custom_reporting.php:18
+#: ../../enterprise/godmode/reporting/reporting_builder.template.php:505
+#: ../../extensions/insert_data.php:199
+msgid "CSV"
+msgstr "CSV"
+
+#: ../../operation/agentes/exportdata.php:380
+msgid "MS Excel"
+msgstr "MS Excel"
+
+#: ../../operation/agentes/exportdata.php:381
+msgid "Average per hour/day"
+msgstr "Media por hora/día"
+
+#: ../../operation/agentes/exportdata.php:389
+#: ../../enterprise/include/functions_reporting.php:8135
+#: ../../enterprise/extensions/resource_exportation/functions.php:21
+#: ../../extensions/resource_exportation.php:435
+#: ../../extensions/resource_exportation.php:438
+msgid "Export"
+msgstr "Exportar"
+
+#: ../../operation/agentes/tactical.php:201
+msgid "Report of State"
+msgstr "Informe de estado"
+
+#: ../../operation/agentes/tactical.php:228
+#: ../../include/functions_events.php:2588
+msgid "Latest events"
+msgstr "Últimos eventos"
+
+#: ../../operation/agentes/tactical.php:245
+#: ../../include/functions_events.php:2731
+msgid "Event graph"
+msgstr "Gráfico de eventos"
+
+#: ../../operation/agentes/tactical.php:248
+#: ../../include/functions_events.php:2733
+msgid "Event graph by agent"
+msgstr "Gráfico de eventos por agente"
+
+#: ../../operation/agentes/tactical.php:254
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2897
+#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:681
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2915
+msgid "Event graphs"
+msgstr "Gráficos de eventos"
+
+#: ../../operation/agentes/alerts_status.functions.php:50
+msgid "Alert(s) validated"
+msgstr "Alerta(s) validada(s)"
+
+#: ../../operation/agentes/alerts_status.functions.php:51
+msgid "Error processing alert(s)"
+msgstr "Error al procesar la(s) alerta(s)"
+
+#: ../../operation/agentes/alerts_status.functions.php:93
+#: ../../mobile/operation/alerts.php:64
+#: ../../godmode/alerts/alert_list.list.php:135
+msgid "All (Enabled)"
+msgstr "Todos (Habilitados)"
+
+#: ../../operation/agentes/alerts_status.functions.php:101
+#: ../../include/functions_ui.php:1155
+#: ../../enterprise/operation/agentes/policy_view.php:292
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3273
+#: ../../mobile/operation/alerts.php:73
+#: ../../godmode/alerts/alert_list.list.php:143
+msgid "Standby on"
+msgstr "Modo standby activado"
+
+#: ../../operation/agentes/alerts_status.functions.php:102
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3267
+#: ../../mobile/operation/alerts.php:74
+#: ../../godmode/alerts/alert_list.list.php:144
+msgid "Standby off"
+msgstr "Modo standby desactivado"
+
+#: ../../operation/agentes/alerts_status.functions.php:117
+#: ../../operation/agentes/datos_agente.php:211
+msgid "Free text for search"
+msgstr "Búsqueda de texto libre"
+
+#: ../../operation/agentes/alerts_status.functions.php:118
+msgid "Filter by agent name, module name, template name or action name"
+msgstr ""
+"Filtrar por nombre de agente, nombre de módulo, nombre de plantilla o de acción"
+
+#: ../../operation/agentes/alerts_status.functions.php:129
+msgid "No actions"
+msgstr "Sin acciones"
+
+#: ../../operation/agentes/alerts_status.functions.php:178
+msgid "Filter by module name, template name or action name"
+msgstr "Filtrar por nombre de módulo, nombre de plantilla o nombre de acción"
+
+#: ../../operation/agentes/custom_fields.php:24
+#: ../../operation/agentes/estado_generalagente.php:62
+#: ../../operation/agentes/agent_fields.php:24
+#: ../../include/functions_treeview.php:564
+msgid "There was a problem loading agent"
+msgstr "Error al cargar la configuración del agente"
+
+#: ../../operation/agentes/custom_fields.php:59
+msgid "No fields defined"
+msgstr "No se han definido campos"
+
+#: ../../operation/agentes/custom_fields.php:65
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2656
+#: ../../godmode/agentes/fields_manager.php:119
+#: ../../godmode/alerts/alert_view.php:441
+#: ../../godmode/alerts/alert_view.php:564
+msgid "Field"
+msgstr "Campo"
+
+#: ../../operation/agentes/custom_fields.php:67
+#: ../../godmode/agentes/configure_field.php:95
+#: ../../godmode/agentes/fields_manager.php:120
+msgid "Display on front"
+msgstr "Mostrar en la vista principal"
+
+#: ../../operation/agentes/custom_fields.php:67
+#: ../../godmode/agentes/configure_field.php:96
+#: ../../godmode/agentes/fields_manager.php:120
+msgid ""
+"The fields with display on front enabled will be displayed into the agent "
+"details"
+msgstr ""
+"Si esta opción está activada, los campos mostrarán la información en la vista "
+"principal."
+
+#: ../../operation/agentes/custom_fields.php:90
+#: ../../operation/agentes/agent_fields.php:47
+msgid "empty"
+msgstr "vacío"
+
+#: ../../operation/agentes/datos_agente.php:173
+msgid "Received data from"
+msgstr "Datos recibidos de"
+
+#: ../../operation/agentes/datos_agente.php:180
+msgid "Main database"
+msgstr "Base de datos principal"
+
+#: ../../operation/agentes/datos_agente.php:180
+#: ../../enterprise/include/functions_setup.php:67
+#: ../../enterprise/include/functions_setup.php:119
+#: ../../enterprise/godmode/menu.php:148
+msgid "History database"
+msgstr "Base de datos histórica"
+
+#: ../../operation/agentes/datos_agente.php:181
+msgid ""
+"Switch between the main database and the history database to retrieve module "
+"data"
+msgstr ""
+"Cambiar entre base de datos principal e histórica para recoger los datos de "
+"los módulos"
+
+#: ../../operation/agentes/datos_agente.php:194 ../../include/ajax/module.php:223
+msgid "Choose a time from now"
+msgstr "Elija un tiempo a partir de ahora"
+
+#: ../../operation/agentes/datos_agente.php:197 ../../include/ajax/module.php:249
+msgid "Specify time range"
+msgstr "Especificar rango de tiempo"
+
+#: ../../operation/agentes/datos_agente.php:295 ../../include/ajax/module.php:560
+#: ../../godmode/reporting/map_builder.php:452
+#: ../../godmode/reporting/map_builder.php:469
+#: ../../godmode/agentes/module_manager.php:794
+msgid "No available data to show"
+msgstr "No hay datos disponibles para mostrar"
+
+#: ../../operation/agentes/estado_agente.php:242
+msgid "Sucessfully deleted agent"
+msgstr "Agente borrado correctamente"
+
+#: ../../operation/agentes/estado_agente.php:244
+msgid "There was an error message deleting the agent"
+msgstr "Error al intentar borrar el agente"
+
+#: ../../operation/agentes/estado_agente.php:285
+msgid "Search in custom fields"
+msgstr "Buscar en campos personalizados"
+
+#: ../../operation/agentes/estado_agente.php:898
+#: ../../enterprise/operation/agentes/tag_view.php:647
+msgid "Remote config"
+msgstr "Configuración remota"
+
+#: ../../operation/agentes/pandora_networkmap.editor.php:205
+msgid "Network maps editor"
+msgstr "Editor de mapas de red"
+
+#: ../../operation/agentes/pandora_networkmap.editor.php:256
+#: ../../operation/agentes/pandora_networkmap.view.php:2236
+#: ../../enterprise/godmode/agentes/pandora_networkmap_empty.editor.php:113
+#: ../../godmode/agentes/pandora_networkmap_empty.editor.php:115
+msgid "Not found networkmap."
+msgstr "No se encontró ningún mapa de red."
+
+#: ../../operation/agentes/pandora_networkmap.editor.php:311
+#: ../../operation/agentes/pandora_networkmap.view.php:106
+#: ../../enterprise/extensions/vmware/vmware_view.php:1758
+#: ../../enterprise/godmode/agentes/pandora_networkmap_empty.editor.php:152
+#: ../../godmode/agentes/pandora_networkmap_empty.editor.php:154
+msgid "Node radius"
+msgstr "Radio de los nodos"
+
+#: ../../operation/agentes/pandora_networkmap.editor.php:324
+#: ../../operation/agentes/pandora_networkmap.view.php:127
+msgid "Position X"
+msgstr "Posición X"
+
+#: ../../operation/agentes/pandora_networkmap.editor.php:326
+#: ../../operation/agentes/pandora_networkmap.view.php:129
+msgid "Position Y"
+msgstr "Posición Y"
+
+#: ../../operation/agentes/pandora_networkmap.editor.php:329
+#: ../../operation/agentes/pandora_networkmap.view.php:132
+msgid "Zoom scale"
+msgstr "Escala de zoom"
+
+#: ../../operation/agentes/pandora_networkmap.editor.php:334
+#: ../../operation/agentes/pandora_networkmap.view.php:134
+msgid ""
+"Introduce zoom level. 1 = Highest resolution. Figures may include decimals"
+msgstr ""
+"Introducir nivel de zoom. 1 = Resolución máxima. Las cifras pueden incluir "
+"decimales."
+
+#: ../../operation/agentes/pandora_networkmap.editor.php:337
+#: ../../operation/agentes/pandora_networkmap.view.php:137
+#: ../../include/functions_groups.php:107
+msgid "Discovery task"
+msgstr "Tarea Discovery"
+
+#: ../../operation/agentes/pandora_networkmap.editor.php:337
+#: ../../operation/agentes/pandora_networkmap.view.php:137
+msgid "CIDR IP mask"
+msgstr "Máscara CIDR"
+
+#: ../../operation/agentes/pandora_networkmap.editor.php:339
+#: ../../operation/agentes/pandora_networkmap.view.php:164
+msgid "Source from recon task"
+msgstr "Origen de tarea recon"
+
+#: ../../operation/agentes/pandora_networkmap.editor.php:341
+#: ../../operation/agentes/pandora_networkmap.view.php:166
+msgid ""
+"It is setted any recon task, the nodes get from the recontask IP mask instead "
+"from the group."
+msgstr ""
+"Si está seleccionada alguna tarea recon, los nodos se obtendrán de la máscara "
+"IP de la recontask en lugar del grupo."
+
+#: ../../operation/agentes/pandora_networkmap.editor.php:358
+#: ../../operation/agentes/pandora_networkmap.view.php:182
+msgid "Show only the task with the recon script \"SNMP L2 Recon\"."
+msgstr "Mostrar solo las tareas recon con el script \"SNMP L2 Recon\""
+
+#: ../../operation/agentes/pandora_networkmap.editor.php:362
+#: ../../operation/agentes/pandora_networkmap.view.php:186
+msgid "Source from CIDR IP mask"
+msgstr "Origen de máscara CIDR"
+
+#: ../../operation/agentes/pandora_networkmap.editor.php:365
+#: ../../enterprise/godmode/agentes/manage_config_remote.php:140
+msgid "Source group"
+msgstr "Grupo de origen"
+
+#: ../../operation/agentes/pandora_networkmap.editor.php:382
+msgid "Source id group changed. All elements in networkmap will be lost."
+msgstr ""
+"Grupo de ID de origen cambiado. Se perderán todos los elementos del mapa de "
+"red."
+
+#: ../../operation/agentes/pandora_networkmap.editor.php:387
+#: ../../operation/agentes/pandora_networkmap.view.php:198
+msgid "Don't show subgroups:"
+msgstr "No mostrar subgrupos:"
+
+#: ../../operation/agentes/pandora_networkmap.editor.php:405
+#: ../../operation/agentes/pandora_networkmap.view.php:232
+msgid "Method generation networkmap"
+msgstr "Método de generación de mapas de red"
+
+#: ../../operation/agentes/pandora_networkmap.editor.php:425
+#: ../../operation/agentes/pandora_networkmap.view.php:247
+#: ../../enterprise/extensions/vmware/vmware_view.php:1762
+msgid "Node separation"
+msgstr "Separación de nodos"
+
+#: ../../operation/agentes/pandora_networkmap.editor.php:426
+#: ../../operation/agentes/pandora_networkmap.view.php:248
+msgid "Separation between nodes. By default 0.25"
+msgstr "Separación entre nodos.  Por defecto 0,25"
+
+#: ../../operation/agentes/pandora_networkmap.editor.php:428
+#: ../../operation/agentes/pandora_networkmap.view.php:250
+msgid "Rank separation"
+msgstr "Separación de rango"
+
+#: ../../operation/agentes/pandora_networkmap.editor.php:429
+#: ../../operation/agentes/pandora_networkmap.view.php:251
+msgid ""
+"Only flat and radial. Separation between arrows. By default 0.5 in flat and "
+"1.0 in radial"
+msgstr ""
+"Solo plano y radial. Separación entre flechas. Por defecto 0,5 en el plano y "
+"1,0 en el radial."
+
+#: ../../operation/agentes/pandora_networkmap.editor.php:431
+#: ../../operation/agentes/pandora_networkmap.view.php:253
+msgid "Min nodes dist"
+msgstr "Distancia mínima entre nodos"
+
+#: ../../operation/agentes/pandora_networkmap.editor.php:432
+#: ../../operation/agentes/pandora_networkmap.view.php:254
+msgid "Only circular. Minimum separation between all nodes. By default 1.0"
+msgstr "Solo circular. Separación mínima entre todos los nodos. Por defecto 1,0."
+
+#: ../../operation/agentes/pandora_networkmap.editor.php:434
+#: ../../operation/agentes/pandora_networkmap.view.php:256
+msgid "Default ideal node separation"
+msgstr "Separación ideal de nodos por defecto"
+
+#: ../../operation/agentes/pandora_networkmap.editor.php:435
+#: ../../operation/agentes/pandora_networkmap.view.php:257
+msgid "Only fdp. Default ideal node separation in the layout. By default 0.3"
+msgstr ""
+"Solo FDP. Separación ideal de nodos por defecto en el diseño. Por defecto 0,3."
+
+#: ../../operation/agentes/pandora_networkmap.editor.php:445
+#: ../../enterprise/godmode/agentes/pandora_networkmap_empty.editor.php:173
+#: ../../godmode/agentes/pandora_networkmap_empty.editor.php:175
+msgid "Save networkmap"
+msgstr "Guardar mapa de red"
+
+#: ../../operation/agentes/pandora_networkmap.editor.php:456
+#: ../../enterprise/godmode/agentes/pandora_networkmap_empty.editor.php:184
+#: ../../godmode/agentes/pandora_networkmap_empty.editor.php:186
+msgid "Update networkmap"
+msgstr "Actualizar mapa de red"
+
+#: ../../operation/agentes/pandora_networkmap.editor.php:601
+msgid "Source id group changed. All elements in Networkmap will be lost"
+msgstr ""
+"Grupo de ID de origen cambiado. Se perderán todos los elementos del mapa de "
+"red."
+
+#: ../../operation/agentes/interface_traffic_graph_win.php:78
+#: ../../include/rest-api/models/VisualConsole/View.php:738
+#: ../../include/rest-api/models/VisualConsole/View.php:817
+msgid "In"
+msgstr "En"
+
+#: ../../operation/agentes/interface_traffic_graph_win.php:79
+#: ../../include/rest-api/models/VisualConsole/View.php:739
+#: ../../include/rest-api/models/VisualConsole/View.php:818
+msgid "Out"
+msgstr "Fuera"
+
+#: ../../operation/agentes/interface_traffic_graph_win.php:95
+#, php-format
+msgid "%s Interface Graph"
+msgstr "Gráfica de interfaz de %s"
+
+#: ../../operation/agentes/interface_traffic_graph_win.php:250
+msgid "Zoom factor"
+msgstr "Nivel de zoom"
+
+#: ../../operation/agentes/interface_traffic_graph_win.php:257
+msgid "Full"
+msgstr "Completa"
+
+#: ../../operation/agentes/estado_generalagente.php:57
+msgid "The agent has not assigned server. Maybe agent does not run fine."
+msgstr ""
+"El agente no ha sido asignado a ningún servidor. Quizá el agente no se esté "
+"ejecutando correctamente."
+
+#: ../../operation/agentes/estado_generalagente.php:214
+#: ../../enterprise/views/cluster/view.php:273
+msgid "IP address"
+msgstr "Dirección IP"
+
+#: ../../operation/agentes/estado_generalagente.php:267
+msgid "Remote configuration enabled"
+msgstr "Configuración remota habilitada"
+
+#: ../../operation/agentes/estado_generalagente.php:309
+msgid "Agent contact"
+msgstr "Contacto de agente"
+
+#: ../../operation/agentes/estado_generalagente.php:316
+msgid "Refresh data"
+msgstr "Actualizar datos"
+
+#: ../../operation/agentes/estado_generalagente.php:357
+msgid "Next contact"
+msgstr "Siguiente contacto"
+
+#: ../../operation/agentes/estado_generalagente.php:389
+#: ../../include/functions_events.php:5118
+#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:528
+#: ../../godmode/reporting/reporting_builder.item_editor.php:73
+#: ../../godmode/agentes/agent_manager.php:457
+msgid "Secondary groups"
+msgstr "Grupos secundarios"
+
+#: ../../operation/agentes/estado_generalagente.php:406
+#: ../../operation/agentes/ver_agente.php:1209
+#: ../../include/functions_visual_map_editor.php:956
+#: ../../include/rest-api/models/VisualConsole/Item.php:2175
+#: ../../enterprise/views/ipam/sites/edit.php:64
+#: ../../enterprise/views/ipam/sites/list.php:48
+#: ../../godmode/modules/manage_nc_groups_form.php:71
+#: ../../godmode/reporting/visual_console_builder.elements.php:108
+#: ../../godmode/massive/massive_edit_agents.php:648
+#: ../../godmode/agentes/agent_manager.php:526
+#: ../../godmode/groups/configure_group.php:170
+#: ../../godmode/groups/group_list.php:848
+msgid "Parent"
+msgstr "Padre"
+
+#: ../../operation/agentes/estado_generalagente.php:445
+msgid "Agent info"
+msgstr "Información del agente"
+
+#: ../../operation/agentes/estado_generalagente.php:452
+#: ../../include/functions_treeview.php:750
+msgid "Position (Long, Lat)"
+msgstr "Posición (longitud, latitud)"
+
+#: ../../operation/agentes/estado_generalagente.php:458
+msgid "There is no GIS data."
+msgstr "No hay datos GIS"
+
+#: ../../operation/agentes/estado_generalagente.php:476
+#: ../../operation/agentes/ver_agente.php:1517
+#: ../../include/functions_treeview.php:759
+#: ../../godmode/agentes/agent_manager.php:614
+#: ../../godmode/agentes/agent_manager.php:631
+msgid "Url address"
+msgstr "Dirección URL"
+
+#: ../../operation/agentes/estado_generalagente.php:486
+#: ../../include/functions_treeview.php:634
+msgid "Other IP addresses"
+msgstr "Otras direcciones IP"
+
+#: ../../operation/agentes/estado_generalagente.php:494
+#: ../../include/functions_treeview.php:767
+msgid "Timezone Offset"
+msgstr "Zona horaria desactivada"
+
+#: ../../operation/agentes/estado_generalagente.php:525
+#: ../../operation/agentes/agent_fields.php:44
+#: ../../include/functions_treeview.php:783
+#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:256
+msgid "Custom field"
+msgstr "Campo personalizado"
+
+#: ../../operation/agentes/estado_generalagente.php:579
+msgid "Agent access rate (Last 24h)"
+msgstr "Índice de acceso de agente (últimas 24h)"
+
+#: ../../operation/agentes/estado_generalagente.php:618
+msgid "Active incident on this agent"
+msgstr "Activar incidencia a este agente"
+
+#: ../../operation/agentes/estado_generalagente.php:622
+#: ../../godmode/setup/news.php:248
+msgid "Author"
+msgstr "Autor"
+
+#: ../../operation/agentes/estado_generalagente.php:629
+#: ../../operation/incidents/integriaims_export_csv.php:81
+#: ../../operation/incidents/configure_integriaims_incident.php:213
+#: ../../operation/incidents/list_integriaims_incidents.php:516
+#: ../../include/lib/Dashboard/Widget.php:545
+#: ../../include/rest-api/models/VisualConsole/Items/Odometer.php:404
+#: ../../enterprise/include/functions_reporting_csv.php:421
+#: ../../enterprise/include/functions_reporting_csv.php:443
+#: ../../enterprise/include/functions_reporting_csv.php:474
+#: ../../enterprise/include/functions_reporting_csv.php:697
+#: ../../enterprise/include/functions_reporting_csv.php:741
+#: ../../enterprise/include/functions_reporting_csv.php:755
+#: ../../enterprise/include/functions_reporting_csv.php:769
+#: ../../enterprise/include/functions_reporting_csv.php:789
+#: ../../enterprise/include/functions_reporting_csv.php:818
+#: ../../enterprise/include/functions_reporting_csv.php:857
+#: ../../enterprise/include/functions_reporting_csv.php:901
+#: ../../enterprise/include/functions_reporting_csv.php:933
+#: ../../enterprise/include/functions_reporting_csv.php:970
+#: ../../enterprise/include/functions_reporting_csv.php:993
+#: ../../enterprise/include/functions_reporting_csv.php:1144
+#: ../../enterprise/include/functions_reporting_csv.php:1171
+#: ../../enterprise/include/functions_reporting_csv.php:1202
+#: ../../enterprise/include/functions_reporting_csv.php:1257
+#: ../../enterprise/include/functions_reporting_csv.php:1312
+#: ../../enterprise/include/functions_reporting_csv.php:1361
+#: ../../enterprise/include/functions_reporting_csv.php:1416
+#: ../../enterprise/include/functions_reporting_csv.php:1445
+#: ../../enterprise/include/functions_reporting_csv.php:1482
+#: ../../enterprise/include/functions_reporting_csv.php:1608
+#: ../../enterprise/include/functions_reporting_csv.php:1724
+#: ../../enterprise/include/functions_reporting_csv.php:1868
+#: ../../enterprise/include/functions_reporting_csv.php:1918
+#: ../../enterprise/include/functions_reporting_csv.php:1964
+#: ../../enterprise/include/functions_reporting_csv.php:2032
+#: ../../enterprise/include/functions_reporting_csv.php:2176
+#: ../../enterprise/include/functions_reporting_csv.php:2268
+#: ../../enterprise/include/functions_reporting_csv.php:2299
+#: ../../enterprise/include/functions_reporting_csv.php:2335
+#: ../../enterprise/include/functions_reporting_csv.php:2388
+#: ../../enterprise/include/functions_reporting_csv.php:2410
+#: ../../enterprise/include/functions_reporting_csv.php:2451
+#: ../../enterprise/include/functions_reporting_csv.php:2505
+#: ../../enterprise/include/functions_reporting_csv.php:2534
+#: ../../enterprise/include/functions_reporting_csv.php:2610
+#: ../../enterprise/include/functions_reporting_csv.php:2661
+#: ../../enterprise/include/functions_reporting_csv.php:2710
+#: ../../enterprise/include/functions_reporting_csv.php:2787
+#: ../../enterprise/include/ajax/log_viewer.ajax.php:55
+#: ../../godmode/setup/setup_integria.php:333
+#: ../../godmode/setup/setup_integria.php:454
+msgid "Title"
+msgstr "Título"
+
+#: ../../operation/agentes/estado_generalagente.php:631
+#: ../../operation/incidents/integriaims_export_csv.php:85
+#: ../../operation/incidents/configure_integriaims_incident.php:296
+#: ../../operation/incidents/list_integriaims_incidents.php:348
+#: ../../operation/incidents/list_integriaims_incidents.php:519
+#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:325
+#: ../../include/functions_events.php:4670
+#: ../../include/functions_reporting_html.php:5038
+#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:443
+#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:503
+#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:555
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:815
+#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:82
+#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:464
+#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:204
+#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:264
+#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:328
+#: ../../godmode/setup/setup_integria.php:379
+#: ../../godmode/setup/setup_integria.php:501
+#: ../../godmode/snmpconsole/snmp_alert.php:1018
+#: ../../godmode/snmpconsole/snmp_alert.php:1080
+#: ../../godmode/agentes/agent_incidents.php:91
+#: ../../godmode/alerts/configure_alert_template.php:1118
+#: ../../godmode/alerts/alert_list.list.php:126
+#: ../../godmode/alerts/alert_templates.php:51
+#: ../../godmode/alerts/alert_view.php:124
+msgid "Priority"
+msgstr "Prioridad"
+
+#: ../../operation/agentes/estado_generalagente.php:700
+#: ../../operation/agentes/pandora_networkmap.view.php:1234
+#: ../../include/functions_treeview.php:878
+msgid "Interface traffic"
+msgstr "Interfaz de tráfico"
+
+#: ../../operation/agentes/estado_generalagente.php:777
+msgid "Events info (24hr.)"
+msgstr "Información de eventos (24h)"
+
+#: ../../operation/agentes/estado_generalagente.php:797
+#: ../../operation/agentes/pandora_networkmap.view.php:1857
+msgid "Last contact: "
+msgstr "Último contacto: "
+
+#: ../../operation/agentes/estado_generalagente.php:870
+#: ../../enterprise/views/cluster/view.php:369
+msgid "Events (Last 24h)"
+msgstr "Eventos (últimas 24h)"
+
+#: ../../operation/agentes/estado_generalagente.php:922
+msgid "Interface information (SNMP)"
+msgstr "Información de interfaz (SNMP)"
+
+#: ../../operation/agentes/snapshot_view.php:42
+msgid "Cannot connect with node to display the module data."
+msgstr "No se ha podido conectar con el nodo para mostrar datos de módulos."
+
+#: ../../operation/agentes/snapshot_view.php:90
+#, php-format
+msgid "%s Snapshot data view for module (%s)"
+msgstr "Vista de datos de captura de %s del módulo (%s)"
+
+#: ../../operation/agentes/snapshot_view.php:96
+#, php-format
+msgid "Current data at %s"
+msgstr "Datos actuales en %s"
+
+#: ../../operation/agentes/pandora_networkmap.view.php:1611
+msgid "Success be updated."
+msgstr "Actualizado correctamente"
+
+#: ../../operation/agentes/pandora_networkmap.view.php:1613
+#: ../../enterprise/tools/ipam/ipam_action.php:374
+msgid "Could not be updated."
+msgstr "No se pudo actualizar"
+
+#: ../../operation/agentes/pandora_networkmap.view.php:1708
+msgid "Name: "
+msgstr "Nombre: "
+
+#: ../../operation/agentes/pandora_networkmap.view.php:1758
+msgid "Policy: "
+msgstr "Política: "
+
+#: ../../operation/agentes/pandora_networkmap.view.php:1805
+#: ../../enterprise/extensions/vmware/vmware_manager.php:269
+msgid "Status: "
+msgstr "Estado: "
+
+#: ../../operation/agentes/pandora_networkmap.view.php:1855
+msgid "Data: "
+msgstr "Datos: "
+
+#: ../../operation/agentes/status_events.php:26
+#: ../../operation/agentes/status_events.php:27
+msgid "Latest events for this agent"
+msgstr "Últimos eventos para este agente"
+
+#: ../../operation/agentes/gis_view.php:59
+#: ../../godmode/agentes/agent_conf_gis.php:38
+msgid "There is no default map. Please go to the setup for to set a default map."
+msgstr ""
+"No existe ningún mapa por defecto. Por favor, selecciona uno en la sección de "
+"configuración."
+
+#: ../../operation/agentes/gis_view.php:96
+msgid "Period to show data as path"
+msgstr "Período para mostrar datos como ruta"
+
+#: ../../operation/agentes/gis_view.php:100
+msgid "Refresh path"
+msgstr "Actualizar ruta"
+
+#: ../../operation/agentes/gis_view.php:158
+msgid "This agent doesn't have any GIS data."
+msgstr "Este agente no tiene ningún dato GIS."
+
+#: ../../operation/agentes/gis_view.php:170
+msgid "Positional data from the last"
+msgstr "Datos de posición desde el último"
+
+#: ../../operation/agentes/gis_view.php:209
+#, php-format
+msgid "%s Km"
+msgstr "%s Km"
+
+#: ../../operation/agentes/gis_view.php:217
+#: ../../godmode/setup/gis_step_2.php:483
+msgid "Longitude"
+msgstr "Longitud"
+
+#: ../../operation/agentes/gis_view.php:218
+#: ../../godmode/setup/gis_step_2.php:465
+msgid "Latitude"
+msgstr "Latitud"
+
+#: ../../operation/agentes/gis_view.php:219
+#: ../../godmode/setup/gis_step_2.php:501
+msgid "Altitude"
+msgstr "Altitud"
+
+#: ../../operation/agentes/gis_view.php:221 ../../include/functions_snmp.php:413
+#: ../../include/functions_snmp.php:421 ../../include/rest-api/index.php:361
+#: ../../include/rest-api/models/VisualConsole/Items/ColorCloud.php:460
+#: ../../include/rest-api/models/VisualConsole/Items/ColorCloud.php:520
+#: ../../include/functions_reporting_html.php:3702
+#: ../../enterprise/include/functions_reporting_csv.php:716
+#: ../../enterprise/include/functions_reporting_csv.php:952
+#: ../../enterprise/include/functions_reporting_csv.php:1325
+#: ../../enterprise/include/functions_reporting_pdf.php:1984
+#: ../../godmode/agentes/planned_downtime.list.php:302
+msgid "To"
+msgstr "Para"
+
+#: ../../operation/agentes/gis_view.php:223
+msgid "Distance"
+msgstr "Distancia"
+
+#: ../../operation/agentes/gis_view.php:224
+msgid "# of Packages"
+msgstr "# de paquetes"
+
+#: ../../operation/agentes/ver_agente.php:1008
+#: ../../enterprise/operation/agentes/ver_agente.php:72
+msgid "Main IP"
+msgstr "IP principal"
+
+#: ../../operation/agentes/ver_agente.php:1020
+#: ../../include/functions_events.php:4503
+#: ../../enterprise/operation/agentes/ver_agente.php:78
+msgid "Last remote contact"
+msgstr "Último contacto remoto"
+
+#: ../../operation/agentes/ver_agente.php:1065
+#: ../../enterprise/operation/agentes/ver_agente.php:122
+msgid "Monitors down"
+msgstr "Monitores caídos"
+
+#: ../../operation/agentes/ver_agente.php:1106
+#: ../../include/lib/Dashboard/Widgets/system_group_status.php:576
+#: ../../enterprise/operation/agentes/ver_agente.php:164
+#: ../../mobile/operation/groups.php:174
+msgid "Alerts fired"
+msgstr "Alertas disparadas"
+
+#: ../../operation/agentes/ver_agente.php:1172
+#: ../../enterprise/tools/ipam/ipam_excel.php:133
+#: ../../enterprise/tools/ipam/ipam_ajax.php:359
+#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:53
+#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:254
+#: ../../enterprise/tools/ipam/ipam_network.php:395
+#: ../../enterprise/tools/ipam/ipam_calculator.php:62
+#: ../../enterprise/tools/ipam/ipam_supernet_config.php:546
+#: ../../enterprise/views/ncm/devices/list.php:117
+#: ../../enterprise/include/functions_ipam.php:2036
+#: ../../enterprise/godmode/servers/manage_export_form.php:99
+#: ../../enterprise/godmode/servers/manage_export.php:140
+#: ../../godmode/setup/setup_general.php:649
+msgid "Address"
+msgstr "Dirección"
+
+#: ../../operation/agentes/ver_agente.php:1223
+msgid "Sons"
+msgstr "Hijos"
+
+#: ../../operation/agentes/ver_agente.php:1478
+#: ../../godmode/agentes/configurar_agente.php:509
+msgid "GIS data"
+msgstr "Datos GIS"
+
+#: ../../operation/agentes/ver_agente.php:1551
+#: ../../operation/search_results.php:119 ../../include/functions_reports.php:638
+#: ../../include/functions_reports.php:642
+#: ../../include/functions_reports.php:647
+#: ../../include/functions_reports.php:653
+#: ../../include/functions_reports.php:660
+#: ../../include/functions_reports.php:664
+#: ../../include/functions_reports.php:668
+#: ../../include/functions_reports.php:675
+#: ../../include/functions_reports.php:681
+#: ../../include/functions_reports.php:686 ../../include/functions_groups.php:123
+#: ../../include/functions_groups.php:187
+msgid "Graphs"
+msgstr "Gráficos"
+
+#: ../../operation/agentes/ver_agente.php:1573
+msgid "Log Viewer"
+msgstr "Visor de logs"
+
+#: ../../operation/agentes/ver_agente.php:1600 ../../godmode/setup/setup.php:177
+#: ../../godmode/setup/setup.php:277 ../../godmode/menu.php:347
+msgid "eHorus"
+msgstr "eHorus"
+
+#: ../../operation/agentes/ver_agente.php:1612
+msgid "Terminal"
+msgstr "Terminal"
+
+#: ../../operation/agentes/ver_agente.php:1623
+#: ../../include/lib/Dashboard/Widgets/top_n.php:286
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2439
+#: ../../enterprise/godmode/reporting/reporting_builder.global.php:367
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2401
+msgid "Display"
+msgstr "Mostrar"
+
+#: ../../operation/agentes/ver_agente.php:1634
+msgid "Processes"
+msgstr "Procesos"
+
+#: ../../operation/agentes/ver_agente.php:1656
+#: ../../enterprise/include/functions_collection.php:186
+#: ../../enterprise/meta/advanced/collections.editor.php:57
+#: ../../enterprise/meta/advanced/collections.editor.php:385
+#: ../../enterprise/meta/advanced/collections.editor.php:402
+#: ../../enterprise/meta/advanced/collections.data.php:174
+#: ../../enterprise/meta/advanced/collections.data.php:241
+#: ../../enterprise/meta/advanced/collections.data.php:265
+#: ../../enterprise/godmode/agentes/collections.editor.php:65
+#: ../../enterprise/godmode/agentes/collections.editor.php:424
+#: ../../enterprise/godmode/agentes/collections.editor.php:446
+#: ../../enterprise/godmode/agentes/collections.agents.php:50
+#: ../../enterprise/godmode/agentes/collections.data.php:127
+#: ../../enterprise/godmode/agentes/collections.data.php:281
+#: ../../enterprise/godmode/agentes/collections.data.php:334
+msgid "Files"
+msgstr "Archivos"
+
+#: ../../operation/agentes/ver_agente.php:1674
+#: ../../operation/agentes/ver_agente.php:1873
+#: ../../enterprise/operation/menu.php:61
+msgid "SAP view"
+msgstr "Vista SAP"
+
+#: ../../operation/agentes/ver_agente.php:1686 ../../godmode/setup/setup.php:224
+#: ../../godmode/setup/setup.php:311 ../../godmode/menu.php:361
+msgid "External Tools"
+msgstr "Herramientas externas"
+
+#: ../../operation/users/user_edit.php:31
+#: ../../godmode/users/configure_user.php:244
+msgid "User detail editor"
+msgstr "Editor de detalles de usuario"
+
+#: ../../operation/users/user_edit.php:153
+msgid "Current password of user is required to perform password change"
+msgstr "Se requiere la contraseña actual del usuario para cambiar la contraseña"
+
+#: ../../operation/users/user_edit.php:155
+msgid "Current password of user is not correct"
+msgstr "La contraseña actual del usuario no es correcta"
+
+#: ../../operation/users/user_edit.php:159
+msgid ""
+"Passwords didn't match or other problem encountered while updating passwords"
+msgstr ""
+"Las contraseñas no coincidían o se encontró otro problema al actualizar las "
+"contraseñas."
+
+#: ../../operation/users/user_edit.php:172
+#: ../../operation/users/user_edit.php:187
+msgid "Password successfully updated"
+msgstr "Contraseña actualizada correctamente"
+
+#: ../../operation/users/user_edit.php:182
+#: ../../operation/users/user_edit.php:230
+msgid "Error updating user info"
+msgstr "Error al actualizar la información del usuario"
+
+#: ../../operation/users/user_edit.php:184
+#: ../../operation/users/user_edit.php:229
+#: ../../godmode/users/configure_user.php:643
+#: ../../godmode/users/configure_user.php:667
+#: ../../godmode/users/configure_user.php:737
+#: ../../godmode/users/configure_user.php:744
+#: ../../godmode/users/configure_user.php:776
+msgid "User info successfully updated"
+msgstr "Información del usuario actualizada correctamente"
+
+#: ../../operation/users/user_edit.php:189
+msgid "Skin successfully updated"
+msgstr "Skin actualizado correctamente"
+
+#: ../../operation/users/user_edit.php:192
+#: ../../enterprise/godmode/reporting/mysql_builder.php:214
+msgid "No changes have been made"
+msgstr "No se han hecho cambios"
+
+#: ../../operation/users/user_edit.php:203
+msgid "Please enter a valid email"
+msgstr "Añada una dirección de correo electrónico válida"
+
+#: ../../operation/users/user_edit.php:205
+msgid "Please enter a valid phone number"
+msgstr "Añada un número de teléfono valido"
+
+#: ../../operation/users/user_edit.php:211
+msgid "Error updating passwords: "
+msgstr "Error al actualizar contraseñas: "
+
+#: ../../operation/users/user_edit.php:235
+msgid "Edit my User"
+msgstr "Editar mi usuario"
+
+#: ../../operation/users/user_edit.php:251 ../../godmode/users/user_list.php:432
+#, php-format
+msgid ""
+"This node is configured with centralized mode. All users information is read "
+"only. Go to %s to manage it."
+msgstr ""
+"Este nodo esta configurado con el modo centralizado. Toda la información de "
+"las políticas está en modo lectura. Vaya a%s para administrarlo."
+
+#: ../../operation/users/user_edit.php:272
+#: ../../godmode/users/configure_user.php:899
+msgid "Full (display) name"
+msgstr "Nombre completo"
+
+#: ../../operation/users/user_edit.php:292
+#: ../../godmode/users/configure_user.php:1021
+msgid "E-mail"
+msgstr "Correo electrónico"
+
+#: ../../operation/users/user_edit.php:294
+#: ../../godmode/users/configure_user.php:1037
+msgid "Phone number"
+msgstr "Número de teléfono"
+
+#: ../../operation/users/user_edit.php:298
+#: ../../enterprise/include/process_reset_pass.php:103
+#: ../../enterprise/meta/include/process_reset_pass.php:96
+msgid "New Password"
+msgstr "Contraseña nueva"
+
+#: ../../operation/users/user_edit.php:299
+#: ../../godmode/users/configure_user.php:950
+msgid "Password confirmation"
+msgstr "Confirmar contraseña"
+
+#: ../../operation/users/user_edit.php:300
+msgid "Current password"
+msgstr "Contraseña actual"
+
+#: ../../operation/users/user_edit.php:302
+msgid "You cannot change your password under the current authentication scheme"
+msgstr ""
+"No puede cambiar la contraseña con la configuración actual de autenticación"
+
+#: ../../operation/users/user_edit.php:317
+msgid "If checkbox is clicked then block size global configuration is used"
+msgstr ""
+"Si se marca la casilla, se usará el tamaño de bloque de la configuración "
+"global."
+
+#: ../../operation/users/user_edit.php:325
+#: ../../enterprise/meta/advanced/metasetup.translate_string.php:174
+#: ../../enterprise/extensions/translate_string.php:302
+#: ../../godmode/users/configure_user.php:904
+msgid "Language"
+msgstr "Idioma"
+
+#: ../../operation/users/user_edit.php:354
+#: ../../godmode/users/configure_user.php:1103
+msgid "Home screen"
+msgstr "Pantalla de inicio"
+
+#: ../../operation/users/user_edit.php:354
+#: ../../godmode/users/configure_user.php:1104
+msgid ""
+"User can customize the home page. By default, will display 'Agent Detail'. "
+"Example: Select 'Other' and type index.php?sec=estado&sec2=operation/agentes/"
+"ver_agente&id_agente=1 to show agent detail view"
+msgstr ""
+"El usuario puede personalizar la página de inicio. Mostrará \"Detalle de agente"
+"\" por defecto. Ejemplo: seleccionar \"otro\" y escribir index.php?"
+"sec=estado&sec2=operation/agentes/ver_agente&id_agente=1 para mostrar la vista "
+"de detalle de agente"
+
+#: ../../operation/users/user_edit.php:401
+#: ../../operation/users/user_edit.php:410
+#: ../../godmode/users/configure_user.php:1072
+msgid "Skin"
+msgstr "Apariencia"
+
+#: ../../operation/users/user_edit.php:411
+msgid "This change will only apply to nodes"
+msgstr "Este cambio solo se aplicará a los nodos"
+
+#: ../../operation/users/user_edit.php:419
+#: ../../godmode/users/configure_user.php:916
+msgid "Timezone"
+msgstr "Zona horaria"
+
+#: ../../operation/users/user_edit.php:419
+#: ../../godmode/users/configure_user.php:917
+msgid "The timezone must be that of the associated server."
+msgstr "La zona horaria debe ser la del servidor asociado."
+
+#: ../../operation/users/user_edit.php:426 ../../include/functions_config.php:776
+#: ../../enterprise/meta/include/functions_meta.php:582
+#: ../../enterprise/meta/include/functions_meta.php:884
+#: ../../godmode/setup/setup_auth.php:353
+#: ../../godmode/users/configure_user.php:1332
+msgid "Double authentication"
+msgstr "Doble autentificación"
+
+#: ../../operation/users/user_edit.php:440
+#: ../../godmode/users/configure_user.php:1350
+msgid "Show information"
+msgstr "Mostrar información"
+
+#: ../../operation/users/user_edit.php:448
+msgid "Event filter"
+msgstr "Filtro de eventos"
+
+#: ../../operation/users/user_edit.php:519
+msgid "Autorefresh"
+msgstr "Actualización automática"
+
+#: ../../operation/users/user_edit.php:520
+msgid "This will activate autorefresh in selected pages"
+msgstr "Esto activará la actualización automática en las páginas seleccionadas."
+
+#: ../../operation/users/user_edit.php:555
+msgid "Full list of pages"
+msgstr "Lista completa de páginas"
+
+#: ../../operation/users/user_edit.php:564
+#: ../../operation/users/user_edit.php:565
+msgid "Push selected pages into autorefresh list"
+msgstr "Añadir las páginas seleccionadas a la lista de actualización automática"
+
+#: ../../operation/users/user_edit.php:573
+#: ../../operation/users/user_edit.php:574
+msgid "Pop selected pages out of autorefresh list"
+msgstr "Quitar las páginas seleccionadas de la lista de actualización automática"
+
+#: ../../operation/users/user_edit.php:579
+msgid "List of pages with autorefresh"
+msgstr "Lista de páginas con actualización automática"
+
+#: ../../operation/users/user_edit.php:588
+msgid "Time autorefresh"
+msgstr "Tiempo de actualización automática"
+
+#: ../../operation/users/user_edit.php:590
+msgid ""
+"Interval of autorefresh of the elements, by default they are 30 seconds, "
+"needing to enable the autorefresh first"
+msgstr ""
+"Intervalo de auto refresco de los elementos, 30 segundos por defecto, pero "
+"debe habilitar primero el auto refresco."
+
+#: ../../operation/users/user_edit.php:685
+msgid "eHorus user configuration"
+msgstr "Configuración de usuario eHorus"
+
+#: ../../operation/users/user_edit.php:690
+msgid "eHorus user acces enabled"
+msgstr "Acceso de usuario eHorus habilitado"
+
+#: ../../operation/users/user_edit.php:711
+#: ../../operation/users/user_edit.php:757
+#: ../../enterprise/include/lib/NetworkManager.php:82
+#: ../../godmode/setup/setup_integria.php:566
+#: ../../godmode/setup/setup_ehorus.php:111
+msgid "Test"
+msgstr "Probar"
+
+#: ../../operation/users/user_edit.php:712
+#: ../../operation/users/user_edit.php:758
+#: ../../enterprise/operation/agentes/transactional_map.php:398
+#: ../../godmode/setup/setup_integria.php:567
+#: ../../godmode/setup/setup_ehorus.php:112 ../../godmode/menu.php:31
+msgid "Start"
+msgstr "Inicio"
+
+#: ../../operation/users/user_edit.php:737
+msgid "Integria user configuration"
+msgstr "Configuración de usuario de Integria"
+
+#: ../../operation/users/user_edit.php:774
+msgid "You can not change your user info under the current authentication scheme"
+msgstr ""
+"No puede cambiar la información de usuario con la configuración actual de "
+"autenticación"
+
+#: ../../operation/users/user_edit.php:787
+#: ../../operation/users/user_edit.php:796
+#: ../../include/functions_profile.php:188
+msgid "Profiles/Groups assigned to this user"
+msgstr "Perfiles/Grupos asignados a este usuario"
+
+#: ../../operation/users/user_edit.php:813
+#: ../../include/functions_profile.php:213
+#: ../../enterprise/godmode/setup/setup_acl.php:591
+#: ../../godmode/massive/massive_add_profiles.php:202
+#: ../../godmode/massive/massive_delete_profiles.php:151
+#: ../../godmode/users/configure_profile.php:265
+msgid "Profile name"
+msgstr "Nombre del perfil"
+
+#: ../../operation/users/user_edit.php:851
+msgid "This user doesn't have any assigned profile/group."
+msgstr "Este usuario no tiene asignado ningún perfil/grupo"
+
+#: ../../operation/users/user_edit.php:1079
+#: ../../godmode/users/configure_user.php:1840
+msgid "Double autentication information"
+msgstr "Información sobre la doble autentificación"
+
+#: ../../operation/users/user_edit.php:1168
+#: ../../godmode/users/configure_user.php:1930
+msgid "The double authentication will be deactivated"
+msgstr "La doble autentificación se desactivará"
+
+#: ../../operation/users/user_edit.php:1169
+#: ../../godmode/users/configure_user.php:1931
+msgid "Deactivate"
+msgstr "Desactivado"
+
+#: ../../operation/users/user_edit.php:1201
+#: ../../godmode/users/configure_user.php:1967
+msgid "The double autentication was deactivated successfully"
+msgstr "La doble autentificación fue desactivada correctamente"
+
+#: ../../operation/users/user_edit.php:1204
+#: ../../operation/users/user_edit.php:1208
+#: ../../godmode/users/configure_user.php:1971
+#: ../../godmode/users/configure_user.php:1975
+msgid "There was an error deactivating the double autentication"
+msgstr "Error al desactivar la doble autentificación"
+
+#: ../../operation/users/user_edit.php:1243
+#: ../../operation/users/user_edit.php:1321
+#: ../../godmode/setup/setup_integria.php:720
+#: ../../godmode/setup/setup_integria.php:801
+#: ../../godmode/setup/setup_ehorus.php:255
+msgid "Empty user or password"
+msgstr "Usuario o contraseña vacío"
+
+#: ../../operation/users/user_edit.php:1244
+#: ../../operation/users/user_edit.php:1322
+#: ../../godmode/setup/setup_integria.php:721
+#: ../../godmode/setup/setup_integria.php:802
+#: ../../godmode/setup/setup_ehorus.php:256
+msgid "User not found"
+msgstr "Usuario no encontrado"
+
+#: ../../operation/users/user_edit.php:1245
+#: ../../operation/users/user_edit.php:1323
+#: ../../godmode/setup/setup_integria.php:722
+#: ../../godmode/setup/setup_integria.php:803
+#: ../../godmode/setup/setup_ehorus.php:257
+msgid "Invalid password"
+msgstr "Contraseña incorrecta"
+
+#: ../../operation/users/user_edit_notifications.php:36
+#: ../../operation/users/user_edit_header.php:102
+msgid "User notifications"
+msgstr "Notifivaciones de usuario"
+
+#: ../../operation/users/user_edit_notifications.php:64
+#: ../../enterprise/include/lib/Metaconsole/Node.php:1165
+#: ../../enterprise/include/lib/Metaconsole/Node.php:1166
+#: ../../enterprise/include/functions_HA_cluster.php:61
+#: ../../enterprise/godmode/agentes/agent_autoconfiguration.php:174
+#: ../../enterprise/godmode/agentes/plugins_manager.php:195
+#: ../../enterprise/godmode/agentes/plugins_manager.php:262
+#: ../../enterprise/godmode/policies/policy_alerts.php:722
+#: ../../godmode/extensions.php:257 ../../godmode/alerts/alert_list.list.php:1030
+#: ../../godmode/users/user_list.php:745
+msgid "Enable"
+msgstr "Activar"
+
+#: ../../operation/users/user_edit_notifications.php:65
+msgid "Also receive an email"
+msgstr "Recibir también un correo electrónico"
+
+#: ../../operation/users/user_edit_notifications.php:94
+msgid "Controls have been disabled by the system administrator"
+msgstr "Los controles han sido deshabilitados por el administrador del sistema"
+
+#: ../../operation/users/user_edit_header.php:91
+#: ../../enterprise/meta/general/main_menu.php:458
+#: ../../enterprise/meta/general/main_menu.php:518
+#: ../../enterprise/meta/general/main_menu.php:525
+#: ../../enterprise/meta/general/main_header.php:321
+#: ../../enterprise/meta/general/main_header.php:401
+#: ../../enterprise/meta/general/main_header.php:408
+#: ../../enterprise/meta/include/functions_users_meta.php:182
+#: ../../enterprise/meta/include/functions_users_meta.php:204
+#: ../../godmode/users/user_list.php:214 ../../godmode/users/user_list.php:239
+#: ../../godmode/users/user_list.php:250
+#: ../../godmode/users/configure_user.php:223
+#: ../../godmode/users/configure_profile.php:55
+#: ../../godmode/users/configure_profile.php:76
+#: ../../godmode/users/profile_list.php:63
+#: ../../godmode/users/profile_list.php:84
+msgid "User management"
+msgstr "Gestión de usuarios"
+
+#: ../../operation/users/user_edit_header.php:131
+msgid "Edit user"
+msgstr "Editar usuario"
+
+#: ../../operation/search_helps.php:17
+msgid "Zero results found."
+msgstr "Cero resultados"
+
+#: ../../operation/search_helps.php:18
+#, php-format
+msgid "You can find more help in the <a class=\"underline\" href=\"%s\">wiki</a>"
+msgstr "Puede encontrar más ayuda en <a class=\"underline\" href=\"%s\">wiki</a>"
+
+#: ../../operation/search_helps.php:32
+msgid "Matches"
+msgstr "Coincidencias"
+
+#: ../../operation/search_results.php:67
+msgid "Global search"
+msgstr "Búsqueda global"
+
+#: ../../operation/search_results.php:93
+#: ../../include/functions_reporting.php:11579
+#: ../../godmode/massive/massive_add_profiles.php:204
+#: ../../godmode/massive/massive_delete_profiles.php:153
+msgid "Users"
+msgstr "Usuarios"
+
+#: ../../operation/search_results.php:132 ../../include/functions_groups.php:139
+#: ../../include/functions_reporting.php:15012
+#: ../../enterprise/meta/general/main_menu.php:269
+#: ../../enterprise/meta/general/main_header.php:167
+#: ../../enterprise/meta/general/main_header.php:183
+#: ../../enterprise/mobile/include/functions_web.php:15
+msgid "Reports"
+msgstr "Informes"
+
+#: ../../operation/incidents/integriaims_export_csv.php:80
+msgid "ID Ticket"
+msgstr "Ticket de ID"
+
+#: ../../operation/incidents/integriaims_export_csv.php:82
+#: ../../operation/incidents/list_integriaims_incidents.php:517
+msgid "Group/Company"
+msgstr "Grupo/Compañia"
+
+#: ../../operation/incidents/integriaims_export_csv.php:86
+#: ../../enterprise/tools/ipam/ipam_ajax.php:494
+#: ../../enterprise/include/class/DatabaseHA.class.php:798
+#: ../../enterprise/meta/advanced/servers.build_table.php:68
+#: ../../godmode/servers/servers.build_table.php:87
+#: ../../godmode/agentes/agent_incidents.php:93
+msgid "Updated"
+msgstr "Actualizado"
+
+#: ../../operation/incidents/integriaims_export_csv.php:87
+msgid "Started"
+msgstr "Iniciado hace"
+
+#: ../../operation/incidents/integriaims_export_csv.php:88
+#: ../../operation/incidents/configure_integriaims_incident.php:282
+#: ../../operation/incidents/list_integriaims_incidents.php:345
+#: ../../operation/incidents/list_integriaims_incidents.php:521
+msgid "Creator"
+msgstr "Creador"
+
+#: ../../operation/incidents/incident_statistics.php:24
+#: ../../operation/incidents/configure_integriaims_incident.php:33
+#: ../../operation/incidents/list_integriaims_incidents.php:34
+#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:23
+#: ../../godmode/agentes/agent_incidents.php:22
+msgid ""
+"In order to access ticket management system, integration with Integria IMS "
+"must be enabled and properly configured"
+msgstr ""
+"Para acceder al sistema de gestión de tickets, la integración con Integria IMS "
+"debe estar activada y correctamente configurada"
+
+#: ../../operation/incidents/incident_statistics.php:29
+msgid "Incidents by status"
+msgstr "Incidentes por estado"
+
+#: ../../operation/incidents/incident_statistics.php:32
+msgid "Incidents by priority"
+msgstr "Incidentes por prioridad"
+
+#: ../../operation/incidents/incident_statistics.php:35
+msgid "Incidents by group"
+msgstr "Incidentes por grupo"
+
+#: ../../operation/incidents/incident_statistics.php:38
+msgid "Incidents by user"
+msgstr "Incidentes por usuario"
+
+#: ../../operation/incidents/configure_integriaims_incident.php:26
+msgid "Update Integria IMS Ticket"
+msgstr "Actualizar el ticket de Integria IMS"
+
+#: ../../operation/incidents/configure_integriaims_incident.php:28
+msgid "Create Integria IMS Ticket"
+msgstr "Crear ticket de Integria IMS"
+
+#: ../../operation/incidents/configure_integriaims_incident.php:41
+#: ../../operation/incidents/list_integriaims_incidents.php:42
+#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:31
+#: ../../godmode/setup/setup_integria.php:64
+msgid "Integria IMS API is not reachable"
+msgstr "API de Integria IMS no accesible"
+
+#: ../../operation/incidents/configure_integriaims_incident.php:123
+msgid "Successfully created in Integria IMS"
+msgstr "Creado correctamente en Integria IMS"
+
+#: ../../operation/incidents/configure_integriaims_incident.php:124
+msgid "Could not be created in Integria IMS"
+msgstr "No se ha podido crear en Integria IMS"
+
+#: ../../operation/incidents/configure_integriaims_incident.php:144
+msgid "Successfully updated in Integria IMS"
+msgstr "Actualizado correctamente en Integria IMS"
+
+#: ../../operation/incidents/configure_integriaims_incident.php:145
+msgid "Could not be updated in Integria IMS"
+msgstr "No se ha podido actualizar en Integria IMS"
+
+#: ../../operation/incidents/configure_integriaims_incident.php:294
+msgid ""
+"This field corresponds to the Integria IMS user specified in Integria IMS setup"
+msgstr ""
+"Este campo corresponde al usuario de Integria IMS especificado en la "
+"configuración de Integria IMS"
+
+#: ../../operation/incidents/configure_integriaims_incident.php:352
+#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:206
+msgid "File name"
+msgstr "Nombre de archivo"
+
+#: ../../operation/incidents/configure_integriaims_incident.php:354
+#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:208
+msgid "Attachment description"
+msgstr "Descripción de los datos adjuntos"
+
+#: ../../operation/incidents/list_integriaims_incidents.php:24
+msgid "Integria IMS Tickets"
+msgstr "Tickets de Integria IMS"
+
+#: ../../operation/incidents/list_integriaims_incidents.php:317
+msgid "Text filter"
+msgstr "Filtro de texto"
+
+#: ../../operation/incidents/list_integriaims_incidents.php:381
+msgid "Created from"
+msgstr "Creado desde"
+
+#: ../../operation/incidents/list_integriaims_incidents.php:393
+msgid "Created to"
+msgstr "Creado hasta"
+
+#: ../../operation/incidents/list_integriaims_incidents.php:518
+msgid "Status/Resolution"
+msgstr "Estado/Resolución"
+
+#: ../../operation/incidents/list_integriaims_incidents.php:520
+msgid "Updated/Started"
+msgstr "Actualizado/Iniciado"
+
+#: ../../operation/incidents/list_integriaims_incidents.php:564
+msgid "No tickets to show"
+msgstr "No hay tickets"
+
+#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:59
+#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:378
+#: ../../include/ajax/events.php:1507
+#: ../../enterprise/tools/ipam/ipam_ajax.php:483
+#: ../../enterprise/include/functions_ipam.php:1341
+msgid "Details"
+msgstr "Detalles"
+
+#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:77
+msgid "Not yet"
+msgstr "Todavía no"
+
+#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:81
+msgid "Not closed yet"
+msgstr "No cerrado todavía"
+
+#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:115
+#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:246
+msgid "Filename"
+msgstr "Nombre del archivo"
+
+#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:119
+#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:250
+#: ../../include/functions_visual_map_editor.php:125
+#: ../../include/functions_visual_map_editor.php:178
+#: ../../include/functions_visual_map_editor.php:838
+#: ../../include/functions_visual_map_editor.php:933
+#: ../../include/functions_filemanager.php:606
+#: ../../include/rest-api/models/VisualConsole/Item.php:1991
+#: ../../include/rest-api/models/VisualConsole/Items/Box.php:214
+#: ../../enterprise/include/class/ManageBackups.class.php:164
+#: ../../extensions/files_repo/files_repo_list.php:57
+#: ../../godmode/events/event_responses.editor.php:130
+msgid "Size"
+msgstr "Tamaño"
+
+#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:124
+#: ../../enterprise/meta/include/ajax/wizard.ajax.php:609
+#: ../../enterprise/meta/monitoring/wizard/wizard.php:135
+msgid "No description available"
+msgstr "Sin descripción disponible"
+
+#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:142
+msgid "File successfully deleted"
+msgstr "Archivo añadido correctamente"
+
+#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:143
+msgid "File could not be deleted"
+msgstr "El archivo no se ha podido eliminar"
+
+#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:222
+msgid "Add attachment"
+msgstr "Añadir adjunto"
+
+#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:224
+#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:397
+msgid "Attached files"
+msgstr "Archivos adjuntos"
+
+#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:282
+msgid "Comment successfully added"
+msgstr "Comentario añadido correctamente"
+
+#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:283
+msgid "Comment could not be added"
+msgstr "No se ha podido añadir el comentario"
+
+#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:309
+msgid "No comments found"
+msgstr "No se han encontrado comentarios"
+
+#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:314
+#: ../../include/functions_events.php:3755
+#: ../../include/functions_events.php:5360
+msgid "Add comment"
+msgstr "Añadir comentario"
+
+#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:349
+msgid "Created by"
+msgstr "Creado por"
+
+#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:350
+msgid "Owned by"
+msgstr "Pertenece a"
+
+#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:351
+msgid "Closed by"
+msgstr "Cerrado por"
+
+#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:366
+#: ../../enterprise/include/functions_ipam.php:2044
+msgid "Created at"
+msgstr "Creado en"
+
+#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:367
+#: ../../enterprise/operation/agentes/transactional_map.php:212
+#: ../../godmode/wizards/DiscoveryTaskList.class.php:609
+msgid "Updated at"
+msgstr "Actualizado el"
+
+#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:368
+msgid "Closed at"
+msgstr "Cerrado el"
+
+#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:379
+msgid "People"
+msgstr "Personas"
+
+#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:380
+#: ../../include/functions_reporting_html.php:6104
+msgid "Dates"
+msgstr "Fechas"
+
+#: ../../include/functions_cron.php:455
+msgid "Scheduled jobs"
+msgstr "Tareas programadas"
+
+#: ../../include/functions_cron.php:464
+#: ../../enterprise/include/functions_tasklist.php:153
+#: ../../enterprise/meta/advanced/cron_main.php:354
+#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:630
+msgid "Task"
+msgstr "Tarea"
+
+#: ../../include/functions_cron.php:465
+#: ../../enterprise/include/functions_tasklist.php:154
+#: ../../enterprise/meta/advanced/cron_main.php:385
+#: ../../enterprise/godmode/setup/setup_history.php:678
+#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:640
+msgid "Scheduled"
+msgstr "Programado"
+
+#: ../../include/functions_cron.php:466
+#: ../../enterprise/include/functions_tasklist.php:155
+#: ../../enterprise/meta/advanced/cron_main.php:398
+msgid "Next execution"
+msgstr "Siguiente ejecución"
+
+#: ../../include/functions_cron.php:467
+#: ../../enterprise/include/functions_tasklist.php:156
+msgid "Last run"
+msgstr "Última ejecución"
+
+#: ../../include/functions_cron.php:469
+#: ../../include/class/AgentsAlerts.class.php:254
+#: ../../include/class/AgentsAlerts.class.php:285
+#: ../../include/functions_filemanager.php:607
+#: ../../include/functions_treeview.php:413
+#: ../../include/functions_reporting.php:2721
+#: ../../include/functions_reporting_html.php:3134
+#: ../../enterprise/tools/ipam/ipam_vlan_config.php:689
+#: ../../enterprise/tools/ipam/ipam_ajax.php:532
+#: ../../enterprise/tools/ipam/ipam_supernet_config.php:1072
+#: ../../enterprise/views/ncm/agent/details.php:485
+#: ../../enterprise/operation/services/services.list.php:513
+#: ../../enterprise/operation/agentes/transactional_map.php:213
+#: ../../enterprise/operation/agentes/manage_transmap_creation.php:190
+#: ../../enterprise/include/functions_reporting_csv.php:2465
+#: ../../enterprise/include/class/ManageBackups.class.php:167
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2293
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2461
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3432
+#: ../../enterprise/meta/include/functions_autoprovision.php:477
+#: ../../enterprise/meta/include/functions_alerts_meta.php:133
+#: ../../enterprise/meta/include/functions_alerts_meta.php:164
+#: ../../enterprise/meta/monitoring/wizard/wizard.php:140
+#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:468
+#: ../../enterprise/meta/advanced/collections.php:339
+#: ../../enterprise/godmode/setup/setup_skins.php:128
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2117
+#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:387
+#: ../../enterprise/godmode/agentes/inventory_manager.php:224
+#: ../../enterprise/godmode/agentes/agent_autoconfiguration.php:142
+#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:379
+#: ../../enterprise/godmode/agentes/collections.php:332
+#: ../../enterprise/godmode/alerts/alert_inventory_list.php:223
+#: ../../enterprise/godmode/policies/policy_external_alerts.php:350
+#: ../../enterprise/godmode/policies/policy_external_alerts.php:384
+#: ../../enterprise/godmode/policies/policy_external_alerts.php:682
+#: ../../enterprise/godmode/policies/policy_inventory_modules.php:305
+#: ../../enterprise/godmode/policies/policy_alerts.php:353
+#: ../../godmode/category/category.php:170
+#: ../../godmode/reporting/reporting_builder.item_editor.php:1946
+#: ../../godmode/menu.php:234 ../../godmode/tag/tag.php:284
+#: ../../godmode/events/event_responses.list.php:53
+#: ../../godmode/agentes/planned_downtime.editor.php:921
+#: ../../godmode/agentes/fields_manager.php:121
+#: ../../godmode/agentes/modificar_agente.php:653
+#: ../../godmode/alerts/alert_list.list.php:120
+#: ../../godmode/alerts/alert_list.list.php:484
+#: ../../godmode/alerts/alert_list.builder.php:96
+#: ../../godmode/alerts/alert_commands.php:659
+#: ../../godmode/alerts/alert_view.php:301
+#: ../../godmode/groups/group_list.php:853
+msgid "Actions"
+msgstr "Acciones"
+
+#: ../../include/functions_cron.php:498 ../../include/functions_cron.php:536
+#: ../../include/functions_cron.php:591 ../../include/functions_cron.php:683
+#: ../../include/functions_cron.php:719 ../../include/functions_cron.php:765
+#: ../../include/functions_cron.php:807 ../../include/functions_cron.php:841
+#: ../../enterprise/include/functions_tasklist.php:217
+#: ../../enterprise/include/functions_tasklist.php:279
+#: ../../enterprise/include/functions_tasklist.php:365
+#: ../../enterprise/include/functions_tasklist.php:406
+#: ../../enterprise/include/functions_tasklist.php:459
+#: ../../enterprise/include/functions_tasklist.php:498
+#: ../../enterprise/include/functions_tasklist.php:535
+msgid "Force run"
+msgstr "Forzar ejecución"
+
+#: ../../include/functions_cron.php:574 ../../include/functions_cron.php:667
+#: ../../include/functions_cron.php:791
+#: ../../enterprise/operation/reporting/custom_reporting.php:109
+#: ../../enterprise/include/functions_reporting_csv.php:983
+#: ../../enterprise/include/functions_reporting_csv.php:1184
+#: ../../enterprise/include/functions_reporting_csv.php:1215
+#: ../../enterprise/include/functions_reporting_csv.php:1270
+#: ../../enterprise/include/functions_reporting_csv.php:1325
+#: ../../enterprise/include/functions_reporting_csv.php:1374
+#: ../../enterprise/include/functions_reporting_csv.php:1429
+#: ../../enterprise/include/functions_tasklist.php:253
+#: ../../enterprise/include/functions_tasklist.php:342
+#: ../../enterprise/include/functions_tasklist.php:436
+#: ../../enterprise/include/functions_reporting.php:8124
+#: ../../enterprise/include/functions_reporting.php:8158
+msgid "Report type"
+msgstr "Tipo de informe"
+
+#: ../../include/functions_cron.php:638
+#: ../../enterprise/include/functions_tasklist.php:313
+msgid "regex"
+msgstr "expresión regular"
+
+#: ../../include/functions_cron.php:664
+#: ../../enterprise/include/functions_cron.php:228
+#: ../../enterprise/include/functions_tasklist.php:339
+msgid "Report per agent"
+msgstr "Informe por agente"
+
+#: ../../include/functions_cron.php:703
+#: ../../enterprise/include/functions_cron.php:299
+#: ../../enterprise/include/functions_tasklist.php:383
+msgid "Custom script"
+msgstr "Script personalizado"
+
+#: ../../include/functions_cron.php:747 ../../include/functions_cron.php:788
+#: ../../include/lib/Dashboard/Widgets/reports.php:307
+#: ../../include/lib/Dashboard/Widgets/reports.php:352
+#: ../../enterprise/include/functions_tasklist.php:433
+#: ../../extensions/resource_exportation.php:433
+msgid "Report"
+msgstr "Informe"
+
+#: ../../include/functions_cron.php:749 ../../include/functions_cron.php:790
+#: ../../include/class/Diagnostics.class.php:2175
+#: ../../enterprise/include/class/ManageBackups.class.php:166
+#: ../../enterprise/include/functions_tasklist.php:435
+msgid "Path"
+msgstr "Ruta"
+
+#: ../../include/functions_cron.php:943
+#: ../../enterprise/include/functions_tasklist.php:671
+#: ../../godmode/wizards/DiscoveryTaskList.class.php:1024
+msgid "Disable task"
+msgstr "Deshabilitar tarea"
+
+#: ../../include/functions_cron.php:943
+#: ../../enterprise/include/functions_tasklist.php:671
+msgid "Enable task"
+msgstr "Habilitar tarea"
 
 #: ../../include/functions_incidents.php:29
 #: ../../include/functions_incidents.php:55
 msgid "Informative"
 msgstr "Informativo"
 
+#: ../../include/functions_incidents.php:30
+#: ../../include/functions_incidents.php:59
+#: ../../include/functions_netflow.php:1845
+msgid "Low"
+msgstr "Bajo"
+
+#: ../../include/functions_incidents.php:31
+#: ../../include/functions_incidents.php:63
+#: ../../include/functions_netflow.php:1846
+msgid "Medium"
+msgstr "Medio"
+
 #: ../../include/functions_incidents.php:32
 #: ../../include/functions_incidents.php:67
 msgid "Serious"
@@ -44166,6 +13533,15 @@ msgstr "Grave"
 msgid "Very serious"
 msgstr "Muy grave"
 
+#: ../../include/functions_incidents.php:34
+#: ../../include/functions_incidents.php:75
+#: ../../include/functions_events.php:3327 ../../include/functions_graph.php:3533
+#: ../../include/functions_graph.php:3534 ../../include/functions_graph.php:5115
+#: ../../include/functions.php:1023 ../../include/functions.php:1269
+#: ../../include/functions.php:1303
+msgid "Maintenance"
+msgstr "Mantenimiento"
+
 #: ../../include/functions_incidents.php:95
 #: ../../include/functions_incidents.php:116
 msgid "Active incidents"
@@ -44191,1434 +13567,28 @@ msgstr "Incidentes caducados"
 msgid "Closed incidents"
 msgstr "Incidentes cerrados"
 
-#: ../../include/functions_networkmap.php:1303
-msgid "Radial dynamic"
-msgstr "Dinámico radial"
-
-#: ../../include/functions_networkmap.php:1307
-#: ../../include/functions_maps.php:38
-msgid "Topology"
-msgstr "Topología"
-
-#: ../../include/functions_networkmap.php:1332
-msgid "Create a new topology map"
-msgstr "Crear nuevo mapa topológico"
-
-#: ../../include/functions_networkmap.php:1333
-msgid "Create a new group map"
-msgstr "Crear nuevo mapa de grupo"
-
-#: ../../include/functions_networkmap.php:1334
-msgid "Create a new dynamic map"
-msgstr "Crear un nuevo mapa dinámico"
-
-#: ../../include/functions_networkmap.php:1336
-msgid "Create a new radial dynamic map"
-msgstr "Crear un nuevo mapa dinámico radial"
-
-#: ../../include/functions_networkmap.php:2068
-#: ../../include/functions_maps.php:73
-#: ../../include/functions_planned_downtimes.php:949
-msgid "Copy of "
-msgstr "Copiar de "
-
-#: ../../include/functions_networkmap.php:3404
-msgid "Map not found."
-msgstr "Mapa no encontrado."
-
-#: ../../include/functions_ui.php:287
-msgid "Information"
-msgstr "Información"
-
-#: ../../include/functions_ui.php:465
-msgid "Request successfully processed"
-msgstr "Petición procesada correctamente"
-
-#: ../../include/functions_ui.php:469
-msgid "Error processing request"
-msgstr "Error al procesar la petición"
-
-#: ../../include/functions_ui.php:625
-msgid ""
-"Is possible that this view uses part of information which your user has not "
-"access"
-msgstr ""
-"Es posible que esta vista utilice parte de la información a la cual tu usuario "
-"no tenga acceso."
-
-#: ../../include/functions_ui.php:874
-msgid "Software"
-msgstr "Software"
-
-#: ../../include/functions_ui.php:1355
-msgid "The alert would fire when the value is over <span id=\"max\"></span>"
-msgstr ""
-"La alerta se disparará cuando el valor esté por encima de <span id=\"min\"></"
-"span>."
-
-#: ../../include/functions_ui.php:1360
-msgid "The alert would fire when the value is under <span id=\"min\"></span>"
-msgstr ""
-"La alerta se disparará cuando el valor esté por debajo de <span id=\"min\"></"
-"span>."
-
-#: ../../include/functions_ui.php:1375
-msgid "Unknown option."
-msgstr "Opción desconocida."
-
-#: ../../include/functions_ui.php:1729 ../../include/functions_config.php:2375
-msgid "the Flexible Monitoring System"
-msgstr "Sistema Flexible de Monitorización"
-
-#: ../../include/functions_ui.php:2107 ../../include/functions_ui.php:2133
-#, php-format
-msgid "Total items: %s"
-msgstr "Número total de elementos: %s"
-
-#: ../../include/functions_ui.php:2534
-msgid "Unknown type"
-msgstr "Tipo desconocido"
-
-#: ../../include/functions_ui.php:3502 ../../include/functions_ui.php:3503
-msgid "Export current page to CSV"
-msgstr "Exportar página actual a CSV"
-
-#: ../../include/functions_ui.php:5042
-msgid "Type at least two characters to search."
-msgstr "Escribe al menos dos caracteres para buscar."
-
-#: ../../include/functions_ui.php:5977
-msgid "Unhandled error"
-msgstr "Error no tratado"
-
-#: ../../include/functions_ui.php:5978
-msgid "An unhandled error occurs"
-msgstr "Ha ocurrido un error no tratado"
-
-#: ../../include/functions_ui.php:6249
-#, php-format
-msgid ""
-"These controls are using the timezone of the system (%s) instead of yours "
-"(%s). The difference with your time zone in hours is %s."
-msgstr ""
-"Estos controles emplean la zona horaria del sistema (%s) en vez de la suya "
-"(%s). La diferencia de horas con su zona horaria es %s."
-
-#: ../../include/functions_ui.php:6570
-msgid "Execute query"
-msgstr "Ejecutar consulta"
-
-#: ../../include/functions_ui.php:6592
-msgid "Results"
-msgstr "Resultados"
-
-#: ../../include/functions_ui.php:6656
-msgid "Show password"
-msgstr "Mostrar contraseña"
-
-#: ../../include/functions_snmp_browser.php:355
-msgid "The server did not return any response."
-msgstr "El servidor no ha devuelto ninguna respuesta"
-
-#: ../../include/functions_snmp_browser.php:558
-msgid "Numeric OID"
-msgstr "OID numérico"
-
-#: ../../include/functions_snmp_browser.php:576
-msgid "Syntax"
-msgstr "Sintaxis"
-
-#: ../../include/functions_snmp_browser.php:582
-msgid "Display hint"
-msgstr "Activar indicación"
-
-#: ../../include/functions_snmp_browser.php:588
-msgid "Max access"
-msgstr "Acceso máximo"
-
-#: ../../include/functions_snmp_browser.php:612
-msgid "OID Information"
-msgstr "Información OID"
-
-#: ../../include/functions_snmp_browser.php:647
-msgid "Create agent module"
-msgstr "Crear módulo de agente"
-
-#: ../../include/functions_snmp_browser.php:736
-msgid "Starting OID"
-msgstr "Iniciar OID"
-
-#: ../../include/functions_snmp_browser.php:786
-msgid "Server to execute"
-msgstr "Servidor a ejecutar"
-
-#: ../../include/functions_snmp_browser.php:801
-msgid "Browse"
-msgstr "Examinar"
-
-#: ../../include/functions_snmp_browser.php:939
-msgid "First match"
-msgstr "Primera correspondencia"
-
-#: ../../include/functions_snmp_browser.php:952
-msgid "Previous match"
-msgstr "Coincidencia anterior"
-
-#: ../../include/functions_snmp_browser.php:965
-msgid "Next match"
-msgstr "Siguiente coincidencia"
-
-#: ../../include/functions_snmp_browser.php:978
-msgid "Last match"
-msgstr "Última coincidencia"
-
-#: ../../include/functions_snmp_browser.php:992
-msgid "Expand the tree (can be slow)"
-msgstr "Expandir el árbol (podría llevar tiempo)"
-
-#: ../../include/functions_snmp_browser.php:1005
-msgid "Collapse the tree"
-msgstr "Contraer el árbol"
-
-#: ../../include/functions_snmp_browser.php:1034
-msgid "SNMP v3 options"
-msgstr "Opciones SNMP v3"
-
-#: ../../include/functions_snmp_browser.php:1044
-msgid "Search options"
-msgstr "Opciones de búsqueda"
-
-#: ../../include/functions_snmp_browser.php:1065
-msgid "Search matches"
-msgstr "Buscar coincidencias"
-
-#: ../../include/functions_snmp_browser.php:1081
-msgid "Create agent modules"
-msgstr "Crear módulos de agentes"
-
-#: ../../include/functions_snmp_browser.php:1090
-msgid "Create policy modules"
-msgstr "Crear módulos de políticas"
-
-#: ../../include/functions_snmp_browser.php:1099
-msgid "Create network components"
-msgstr "Crear componentes de red"
-
-#: ../../include/functions_snmp_browser.php:1511
-msgid " available"
-msgstr " disponible"
-
-#: ../../include/functions_snmp_browser.php:1513
-msgid " to apply"
-msgstr " a aplicar"
-
-#: ../../include/functions_snmp_browser.php:1566
-msgid "Undo"
-msgstr "Deshacer"
-
-#: ../../include/functions_config.php:144
-msgid "Failed updated: User did not login."
-msgstr "Fallo de actualización: el usuario no inició sesión"
-
-#: ../../include/functions_config.php:152
-msgid "Failed updated: User is not admin."
-msgstr "Fallo de actualización: el usuario no es administrador"
-
-#: ../../include/functions_config.php:186
-msgid "phantomjs config directory"
-msgstr "Directorio de configuración de phatomjs"
-
-#: ../../include/functions_config.php:202
-msgid "SSL cert path"
-msgstr "Ruta del certificado SSL"
-
-#: ../../include/functions_config.php:210
-msgid "Use cert."
-msgstr "Usar certificado"
-
-#: ../../include/functions_config.php:242
-msgid "Integria inventory"
-msgstr "Inventario Integria IMS"
-
-#: ../../include/functions_config.php:246 ../../include/functions_config.php:1696
-msgid "Integria API password"
-msgstr "Contraseña de la API de Integria IMS"
-
-#: ../../include/functions_config.php:250
-msgid "Integria URL"
-msgstr "URL de Integria IMS"
-
-#: ../../include/functions_config.php:263
-#: ../../include/class/ExternalTools.class.php:213
-msgid "Sound for Alert fired"
-msgstr "Sonido para alertas disparadas"
-
-#: ../../include/functions_config.php:267
-#: ../../include/class/ExternalTools.class.php:243
-msgid "Sound for Monitor critical"
-msgstr "Sonido para monitores en estado crítico"
-
-#: ../../include/functions_config.php:271
-#: ../../include/class/ExternalTools.class.php:273
-msgid "Sound for Monitor warning"
-msgstr "Sonido para monitores en estado de advertencia"
-
-#: ../../include/functions_config.php:284
-msgid "License information"
-msgstr "Información sobre la licencia"
-
-#: ../../include/functions_config.php:314
-msgid "Use custom encoding"
-msgstr "Use codificación personalizada"
-
-#: ../../include/functions_config.php:334
-msgid "Limit parameters bulk"
-msgstr "Límite de operaciones en bloque"
-
-#: ../../include/functions_config.php:338
-msgid "Identification_reminder"
-msgstr "Recordatorio de identificación"
-
-#: ../../include/functions_config.php:342
-msgid "Include_agents"
-msgstr "Incluir agentes"
-
-#: ../../include/functions_config.php:346
-msgid "alias_as_name"
-msgstr "Alias como nombre"
-
-#: ../../include/functions_config.php:350
-msgid "Console log enabled"
-msgstr "Log de consola habilitado"
-
-#: ../../include/functions_config.php:354
-msgid "Audit log enabled"
-msgstr "Log de auditoría habilitado"
-
-#: ../../include/functions_config.php:358
-msgid "Module Custom ID read only"
-msgstr "Solo lectura del ID personalizado del módulo"
-
-#: ../../include/functions_config.php:435
-msgid "Replication DB engine"
-msgstr "Motor de BD de replicación"
-
-#: ../../include/functions_config.php:439
-msgid "Replication DB host"
-msgstr "Host de la BD de replicación"
-
-#: ../../include/functions_config.php:443
-msgid "Replication DB database"
-msgstr "Nombre de la BD de replicación"
-
-#: ../../include/functions_config.php:447
-msgid "Replication DB user"
-msgstr "Usuario de la BD de replicación"
-
-#: ../../include/functions_config.php:451
-msgid "Replication DB password"
-msgstr "Contraseña de la BD de replicación"
-
-#: ../../include/functions_config.php:455
-msgid "Replication DB port"
-msgstr "Puerto de la BD de replicación"
-
-#: ../../include/functions_config.php:459
-msgid "Metaconsole agent cache"
-msgstr "Caché de agente de la Metaconsola"
-
-#: ../../include/functions_config.php:467
-msgid "Enable Update Manager"
-msgstr "Habilitar Update Manager"
-
-#: ../../include/functions_config.php:471
-msgid "Ipam Ocuppied Manager Critical"
-msgstr "Ipam Ocuppied Manager Crítico"
-
-#: ../../include/functions_config.php:475
-msgid "Ipam Ocuppied Manager Warning"
-msgstr "Ipam Ocuppied Manager Advertencia"
-
-#: ../../include/functions_config.php:728
-msgid "Saml profile parameters"
-msgstr "Parámetros de perfil saml"
-
-#: ../../include/functions_config.php:744
-msgid "2FA all users"
-msgstr "2FA todos los usuarios"
-
-#: ../../include/functions_config.php:751
-msgid "Session timeout forced to 90 minutes"
-msgstr "Límite de tiempo de la sesión forzado a 90 minutos"
-
-#: ../../include/functions_config.php:810
-msgid "Max. days before autodisable deletion"
-msgstr "Días máximos antes de eliminar los deshabilitados"
-
-#: ../../include/functions_config.php:814
-msgid "Item limit for realtime reports)"
-msgstr "Límite de elementos para los informes de tiempo real"
-
-#: ../../include/functions_config.php:846
-msgid "Big Operatiopn Step to purge old data"
-msgstr "Gran operación para la purga de datos antiguos"
-
-#: ../../include/functions_config.php:880
-msgid "Max execution event response"
-msgstr "Máxima respuesta de ejecución de eventos"
-
-#: ../../include/functions_config.php:888
-msgid "SNMP walk binary path"
-msgstr "Ruta del binario SNMP walk"
-
-#: ../../include/functions_config.php:892
-msgid "SNMP walk binary path (fallback for v1)"
-msgstr "Ruta del binario SNMP walk (alternativa para la v1)"
-
-#: ../../include/functions_config.php:995
-msgid "Show QR code header"
-msgstr "Mostrar código QR en la cabecera"
-
-#: ../../include/functions_config.php:1023
-msgid "Custom logo white background"
-msgstr "Fondo blanco del logo personalizado"
-
-#: ../../include/functions_config.php:1051
-msgid "Custom title header"
-msgstr "Encabezado de título personalizado"
-
-#: ../../include/functions_config.php:1055
-msgid "Custom subtitle header"
-msgstr "Encabezado del subtítulo personalizado"
-
-#: ../../include/functions_config.php:1079
-#: ../../include/functions_config.php:1119
-msgid "Custom Docs url"
-msgstr "URL de documentos personalizados"
-
-#: ../../include/functions_config.php:1083
-#: ../../include/functions_config.php:1123
-msgid "Custom support url"
-msgstr "URL de soporte personalizado"
-
-#: ../../include/functions_config.php:1095
-msgid "Custom logo metaconsole (white background)"
-msgstr "Logo personalizado de la consola (fondo blanco)"
-
-#: ../../include/functions_config.php:1099
-msgid "Custom logo login metaconsole"
-msgstr "Logo personalizado de la conexión a la Metaconsola"
-
-#: ../../include/functions_config.php:1103
-msgid "Custom splash login metaconsole"
-msgstr "Conexión del Splash personalizado de la Metaconsola"
-
-#: ../../include/functions_config.php:1107
-msgid "Custom title1 login metaconsole"
-msgstr "Título1 conexión personalizado de la Metaconsola"
-
-#: ../../include/functions_config.php:1111
-msgid "Custom title2 login metaconsole"
-msgstr "Título2 conexión personalizado de la Metaconsola"
-
-#: ../../include/functions_config.php:1115
-msgid "Login background metaconsole"
-msgstr "Fondo de la conexión a la Metaconsola"
-
-#: ../../include/functions_config.php:1139
-msgid "Default line favourite_view for the Visual Console"
-msgstr "Línea por defecto favourite_view para la consola visual"
-
-#: ../../include/functions_config.php:1143
-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:1151
-msgid "Default line menu items for the Services"
-msgstr "Linea de elementos de menú por defecto para los servicios"
-
-#: ../../include/functions_config.php:1183
-msgid "Show units in values report"
-msgstr "Mostrar unidades en los valores del informe"
-
-#: ../../include/functions_config.php:1191
-msgid "Autohidden menu"
-msgstr "Ocultar menú automáticamente"
-
-#: ../../include/functions_config.php:1195
-msgid "visual_animation"
-msgstr "visual_animation"
-
-#: ../../include/functions_config.php:1203
-msgid "Fixed graph"
-msgstr "Gráfico fijo"
-
-#: ../../include/functions_config.php:1211
-msgid "Paginate module"
-msgstr "Paginar vista de módulos"
-
-#: ../../include/functions_config.php:1215
-#: ../../include/class/ExternalTools.class.php:303
-msgid "Custom graphviz directory"
-msgstr "Directorio personalizado graphviz"
-
-#: ../../include/functions_config.php:1223
-msgid "Shortened module graph data"
-msgstr "Gráfico de módulo de datos acortados"
-
-#: ../../include/functions_config.php:1235
-msgid "Default type of module charts."
-msgstr "Tipo de gráficos de módulos por defecto"
-
-#: ../../include/functions_config.php:1239
-msgid "Default Number of elements in Custom Graph."
-msgstr "Número de elementos por defecto en gráfica personalizada."
-
-#: ../../include/functions_config.php:1243
-msgid "Default type of interface charts."
-msgstr "Tipo predefinido para los gráficos de interfaz"
-
-#: ../../include/functions_config.php:1259
-msgid "Display lateral menus with left click"
-msgstr "Mostrar los menús laterales con el clic izquierdo"
-
-#: ../../include/functions_config.php:1268
-msgid "Service item padding size"
-msgstr "Espacio entre los nodos del mapa de servicios"
-
-#: ../../include/functions_config.php:1273
-msgid "Default percentil"
-msgstr "Percentil por defecto"
-
-#: ../../include/functions_config.php:1277
-msgid "Default full scale (TIP)"
-msgstr "Escala completa por defecto (TIP)"
-
-#: ../../include/functions_config.php:1281
-msgid "Default soft graphs"
-msgstr "Gráficas soft por defecto"
-
-#: ../../include/functions_config.php:1285
-msgid "Default zoom graphs"
-msgstr "Gráficas ampliadas por defecto"
-
-#: ../../include/functions_config.php:1294
-msgid "Default height of the chart image"
-msgstr "Altuta de la imagen de la gráfica por defecto"
-
-#: ../../include/functions_config.php:1316
-msgid "Add the custom post process"
-msgstr "Añadir la personalización al proceso posterior"
-
-#: ../../include/functions_config.php:1324
-msgid "Delete the custom post process"
-msgstr "Borrar la personalización al proceso posterior"
-
-#: ../../include/functions_config.php:1378
-msgid "Add custom module unit"
-msgstr "Añadir unidad de módulo personalizado"
-
-#: ../../include/functions_config.php:1384
-msgid "Delete custom module unit"
-msgstr "Eliminar unidad de módulo personalizado"
-
-#: ../../include/functions_config.php:1477
-msgid "IP ElasticSearch server"
-msgstr "IP del servidor ElasticSearch"
-
-#: ../../include/functions_config.php:1481
-msgid "Port ElasticSearch server"
-msgstr "Puerto del servidor ElasticSearch"
-
-#: ../../include/functions_config.php:1502
-msgid "Active and historical database cannot be the same."
-msgstr "La base de datos activa y la histórica no pueden ser la misma."
-
-#: ../../include/functions_config.php:1520
-msgid "Enable history database"
-msgstr "Activar base de datos histórica"
-
-#: ../../include/functions_config.php:1524
-msgid "Enable history event"
-msgstr "Activar histórico de eventos"
-
-#: ../../include/functions_config.php:1548
-msgid "Event Days"
-msgstr "Eventos en día"
-
-#: ../../include/functions_config.php:1564
-msgid "Delay"
-msgstr "Retraso"
-
-#: ../../include/functions_config.php:1596
-msgid "Historical database purge"
-msgstr "Purga de la base de datos histórica"
-
-#: ../../include/functions_config.php:1605
-msgid "Historical database partitions"
-msgstr "Particiones de base de datos histórica"
-
-#: ../../include/functions_config.php:1614
-msgid "Historical database events purge"
-msgstr "Purga de eventod de base de datos histórica"
-
-#: ../../include/functions_config.php:1623
-msgid "Historical database string purge"
-msgstr "Purga de cadenas de base de datos histórica"
-
-#: ../../include/functions_config.php:1636
-msgid "eHorus user login"
-msgstr "Inicio de sesión del usuario a eHorus"
-
-#: ../../include/functions_config.php:1648
-msgid "eHorus API hostname"
-msgstr "Propietario de la API de eHorus"
-
-#: ../../include/functions_config.php:1652
-msgid "eHorus API port"
-msgstr "Puerto de la API de eHorus"
-
-#: ../../include/functions_config.php:1656
-msgid "eHorus request timeout"
-msgstr "Tiempo de respuesta de eHorus"
-
-#: ../../include/functions_config.php:1660
-msgid "eHorus id custom field"
-msgstr "ID del campo personalizado de eHorus"
-
-#: ../../include/functions_config.php:1666
-msgid "Integria user login"
-msgstr "Usuario de Integria"
-
-#: ../../include/functions_config.php:1674
-msgid "Integria user"
-msgstr "Usuario de Integria"
-
-#: ../../include/functions_config.php:1678
-msgid "Integria password"
-msgstr "Contraseña de Integria"
-
-#: ../../include/functions_config.php:1692
-msgid "integria API hostname"
-msgstr "Nombre del host de la API de Integria"
-
-#: ../../include/functions_config.php:1700
-msgid "Integria request timeout"
-msgstr "Límite de tiempo de las peticiones de Integria"
-
-#: ../../include/functions_config.php:1704
-msgid "Integria default group"
-msgstr "Grupo por defecto de Integria"
-
-#: ../../include/functions_config.php:1708
-msgid "Integria custom response default group"
-msgstr "Grupo de respuesta personalizada de Integria por defecto"
-
-#: ../../include/functions_config.php:1712
-msgid "Integria default priority"
-msgstr "Prioridad por defecto de Integria"
-
-#: ../../include/functions_config.php:1716
-msgid "Integria custom response default priority"
-msgstr "Prioridad de respuesta personalizada de Integria por defecto"
-
-#: ../../include/functions_config.php:1720
-msgid "Integria default creator"
-msgstr "Creador por defecto de Integria"
-
-#: ../../include/functions_config.php:1724
-msgid "Integria default owner"
-msgstr "Propietario de Integria por defecto"
-
-#: ../../include/functions_config.php:1728
-msgid "Integria custom response default owner"
-msgstr "Propietario de respuesta personalizada de Integria por defecto"
-
-#: ../../include/functions_config.php:1732
-msgid "Integria default ticket type"
-msgstr "Tipo de ticket de Integria por defecto"
-
-#: ../../include/functions_config.php:1736
-msgid "Integria custom response default ticket type"
-msgstr "Tipo de ticket de respuesta personalizado de Integria por defecto"
-
-#: ../../include/functions_config.php:1740
-msgid "Integria default ticket status"
-msgstr "Estado del ticket de Integria por defecto"
-
-#: ../../include/functions_config.php:1744
-msgid "Integria custom response default ticket status"
-msgstr "Estado del ticket de respuesta personalizada de Integria por defecto"
-
-#: ../../include/functions_config.php:1748
-msgid "Integria default ticket title"
-msgstr "Título del ticket de Integria por defecto"
-
-#: ../../include/functions_config.php:1752
-msgid "Integria custom response default ticket title"
-msgstr "Título del ticket de respuesta personalizada de Integria por defecto"
-
-#: ../../include/functions_config.php:1756
-msgid "Integria default ticket content"
-msgstr "Contenido del ticket de Integria por defecto"
-
-#: ../../include/functions_config.php:1760
-msgid "Integria custom response default ticket content"
-msgstr "Contenido del ticket de respuesta personalizada de Integria por defecto"
-
-#: ../../include/functions_config.php:1766
-msgid "Module Library User"
-msgstr "Usuario de la biblioteca de módulos"
-
-#: ../../include/functions_config.php:1770
-msgid "Module Library Password"
-msgstr "Contraseña de la biblioteca de módulos"
-
-#: ../../include/functions_config.php:1776
-msgid "WebSocket bind address"
-msgstr "Dirección de enlace WebSocket"
-
-#: ../../include/functions_config.php:1780
-msgid "WebSocket port"
-msgstr "Puerto WebSocket"
-
-#: ../../include/functions_config.php:1803
-#, php-format
-msgid "Failed updated: the next values cannot update: <br> -%s"
-msgstr ""
-"Error al actualizar: los siguientes valores no se pueden actualizar: <br> -%s"
-
-#: ../../include/functions_config.php:2379
-msgid "PandoraFMS Metaconsole"
-msgstr "Metaconsola PandoraFMS"
-
-#: ../../include/functions_config.php:2383
-msgid "Centralized operation console"
-msgstr "Consola de operación centralizada"
-
-#: ../../include/functions_config.php:2387
-msgid "PANDORA FMS"
-msgstr "PANDORA FMS"
-
-#: ../../include/auth/mysql.php:303 ../../include/auth/mysql.php:331
-msgid ""
-"Problems with configuration permissions. Please contact with Administrator"
-msgstr ""
-"Error con la configuración de los permisos. Por favor, contacta con el "
-"administrador."
-
-#: ../../include/auth/mysql.php:318 ../../include/auth/mysql.php:381
-#: ../../include/auth/mysql.php:396 ../../include/auth/mysql.php:427
-msgid "User not found in database or incorrect password"
-msgstr "Usuario no encontrado en la base de datos o contraseña incorrecta"
-
-#: ../../include/auth/mysql.php:344
-msgid ""
-"Ooops User not found in \n"
-"\t\t\t\tdatabase or incorrect password"
-msgstr ""
-"¡Uuups! Usuario no encontrado en \n"
-"\t\t\t\tla base de datos o contraseña incorrecta."
-
-#: ../../include/auth/mysql.php:702
-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:750
-msgid "Your installation of PHP does not support LDAP"
-msgstr "Su instalación de PHP no es compatible con LDAP."
-
-#: ../../include/functions_treeview.php:52
-msgid "There was a problem loading module"
-msgstr "Error al cargar el módulo"
-
-#: ../../include/functions_treeview.php:315
-#: ../../include/functions_reporting_html.php:655
-#: ../../include/functions_reporting_html.php:4367
-#: ../../include/graphs/functions_flot.php:509
-msgid "No data"
-msgstr "Sin datos"
-
-#: ../../include/functions_treeview.php:342
-msgid "Go to module edition"
-msgstr "Ir a la edición de módulos"
-
-#: ../../include/functions_treeview.php:393
-msgid "There was a problem loading alerts"
-msgstr "Error al cargar las alertas"
-
-#: ../../include/functions_treeview.php:478
-msgid "Go to alerts edition"
-msgstr "Ir a \"editar alertas\""
-
-#: ../../include/functions_treeview.php:676
-msgid "Next agent contact"
-msgstr "Siguiente contacto con el agente"
-
-#: ../../include/functions_treeview.php:703
-msgid "Edit cluster"
-msgstr "Editar cluster"
-
-#: ../../include/functions_treeview.php:707
-msgid "Go to agent edition"
-msgstr "Ir a \"editar agentes\""
-
-#: ../../include/functions_treeview.php:719
-msgid "Agent data"
-msgstr "Datos de agentes"
-
-#: ../../include/functions_treeview.php:799
-msgid "Advanced information"
-msgstr "Información avanzada"
-
-#: ../../include/functions_treeview.php:812
-msgid "Agent access rate (24h)"
-msgstr "Accesibilidad del agente (24h)"
-
-#: ../../include/functions_treeview.php:831 ../../mobile/operation/agent.php:268
-msgid "Events (24h)"
-msgstr "Eventos (24h)"
-
-#: ../../include/functions_treeview.php:901
-msgid "Interface information"
-msgstr "Interfaz de información"
-
-#: ../../include/functions_planned_downtimes.php:575
-msgid "Succesful stopped the Downtime"
-msgstr "La parada planificada se ha detenido correctamente"
-
-#: ../../include/functions_planned_downtimes.php:576
-msgid "Unsuccesful stopped the Downtime"
-msgstr "La parada planificada no ha podido ser detenida"
-
-#: ../../include/functions_planned_downtimes.php:716
-#, php-format
-msgid "Enabled %s elements from the downtime"
-msgstr "Habilitar %s elementos desde la parada"
-
-#: ../../include/functions_planned_downtimes.php:775
-msgid "The downtime must be quiet, disable_agents or disable_agents_alerts"
-msgstr "La parada debe estar silenciada, disable_agents o disable_agents_alerts"
-
-#: ../../include/functions_planned_downtimes.php:780
-msgid "The execution must be once or periodically"
-msgstr "La ejecución debe ser única o periódica"
-
-#: ../../include/functions_planned_downtimes.php:785
-msgid "The periodicity must be weekly or monthly"
-msgstr "La periodicidad debe ser semanal o mensual"
-
-#: ../../include/functions_planned_downtimes.php:790
-msgid "There is no user with such id"
-msgstr "No hay usuarios con ese ID"
-
-#: ../../include/functions_planned_downtimes.php:795
-msgid "There is no group with such id"
-msgstr "No hay grupos con ese ID"
-
-#: ../../include/functions_planned_downtimes.php:800
-msgid "Date is wrong formatted"
-msgstr "Formato de fecha incorrecto"
-
-#: ../../include/functions_planned_downtimes.php:907
-msgid "This scheduled downtime are executed now. Can't delete in this moment."
-msgstr ""
-"Esta parada planificada se está ejecutando. No se puede borrar en este momento."
-
-#: ../../include/functions_planned_downtimes.php:914
-msgid "Deleted this scheduled downtime successfully."
-msgstr "Parada planificada borrada correctamente."
-
-#: ../../include/functions_planned_downtimes.php:916
-msgid "Problems for deleted this scheduled downtime."
-msgstr "Error al borrar la parada planificada."
-
-#: ../../include/functions_planned_downtimes.php:976
-msgid "Error adding agents to copied downtime"
-msgstr "Error al agregar agentes al tiempo de inactividad copiado"
-
-#: ../../include/functions_planned_downtimes.php:999
-msgid "Error adding module to copied downtime"
-msgstr "Error al agregar módulo al tiempo de inactividad copiado"
-
-#: ../../include/functions_agents.php:1005
-msgid ""
-"There was an error copying the agent configuration, the copy has been cancelled"
-msgstr ""
-"Hubo un error al copiar la configuración del agente, se canceló la copia."
-
-#: ../../include/functions_agents.php:2963
-#: ../../include/functions_agents.php:3002
-#: ../../include/functions_agents.php:3073
-msgid "No Monitors"
-msgstr "No hay monitores"
-
-#: ../../include/functions_agents.php:3014
-msgid "Alert fired on agent"
-msgstr "Alerta disparada en agente"
-
-#: ../../include/functions_agents.php:4007
-msgid "Dialog response time"
-msgstr "Tiempo de respuesta del diálogo"
-
-#: ../../include/functions_alerts.php:671
-msgid "Max and min"
-msgstr "Máx. y mín."
-
-#: ../../include/functions_alerts.php:674
-msgid "Equal to"
-msgstr "Igual a"
-
-#: ../../include/functions_alerts.php:675
-msgid "Not equal to"
-msgstr "Diferente de"
-
-#: ../../include/functions_alerts.php:679
-msgid "On Change"
-msgstr "en estado de cambio"
-
-#: ../../include/functions_alerts.php:681
-msgid "Not normal status"
-msgstr "Estado anormal"
-
-#: ../../include/functions_alerts.php:1676
-msgid "No actions defined"
-msgstr "No hay acciones definidas"
-
-#: ../../include/functions_alerts.php:2649
-msgid "Alert and command group does not match"
-msgstr "El grupo de la alerta y del comando no coinciden"
-
-#: ../../include/functions_snmp.php:65
-msgid "Load Average (Last minute)"
-msgstr "Carga media (última hora)"
-
-#: ../../include/functions_snmp.php:69
-msgid "Load Average (Last 5 minutes)"
-msgstr "Carga media (últimos 5 minutos)"
-
-#: ../../include/functions_snmp.php:73
-msgid "Load Average (Last 15 minutes)"
-msgstr "Carga media (últimos 15 minutos)"
-
-#: ../../include/functions_snmp.php:77
-msgid "Total Swap Size configured for the host"
-msgstr "Tamaño de intercambio total configurado para el host"
-
-#: ../../include/functions_snmp.php:81
-msgid "Available Swap Space on the host"
-msgstr "Espacio de intercambio disponible en el host"
-
-#: ../../include/functions_snmp.php:85
-msgid "Total Real/Physical Memory Size on the host"
-msgstr "Tamaño de memoria real/física en el servidor"
-
-#: ../../include/functions_snmp.php:89
-msgid "Available Real/Physical Memory Space on the host"
-msgstr "Memoria real/física disponible en el servidor"
-
-#: ../../include/functions_snmp.php:93
-msgid "Total Available Memory on the host"
-msgstr "Memoria total disponible"
-
-#: ../../include/functions_snmp.php:97
-msgid "Total Cached Memory"
-msgstr "Memoria de caché total"
-
-#: ../../include/functions_snmp.php:101
-msgid "Total Buffered Memory"
-msgstr "Memoria total del búfer"
-
-#: ../../include/functions_snmp.php:105
-msgid "Amount of memory swapped in from disk (kB/s)"
-msgstr "La cantidad de memoria intercambiada desde el disco (kB/s)"
-
-#: ../../include/functions_snmp.php:109
-msgid "Amount of memory swapped to disk (kB/s)"
-msgstr "Cantidad de memoria intercambiada con el disco (kB/s)"
-
-#: ../../include/functions_snmp.php:113
-msgid "Number of blocks sent to a block device"
-msgstr "Número de bloques enviado al dispositivo de bloques"
-
-#: ../../include/functions_snmp.php:117
-msgid "Number of blocks received from a block device"
-msgstr "Número de bloques recibidos del dispositivo de bloques"
-
-#: ../../include/functions_snmp.php:121
-msgid "Number of interrupts processed"
-msgstr "Número de interrupciones procesadas"
-
-#: ../../include/functions_snmp.php:125
-msgid "Number of context switches"
-msgstr "Número de cambios de contexto"
-
-#: ../../include/functions_snmp.php:129
-msgid "user CPU time"
-msgstr "tiempo de CPU de usuario"
-
-#: ../../include/functions_snmp.php:133
-msgid "system CPU time"
-msgstr "tiempo de CPU del sistema"
-
-#: ../../include/functions_snmp.php:137
-msgid "idle CPU time"
-msgstr "tiempo de inactividad de la CPU"
-
-#: ../../include/functions_snmp.php:141
-msgid "system Up time"
-msgstr "Tiempo de actividad del sistema"
-
-#: ../../include/functions_snmp.php:349
-msgid "Pagination"
-msgstr "Paginación"
-
-#: ../../include/functions_snmp.php:381 ../../include/functions_snmp.php:389
-msgid "Group by Enterprise String / IP"
-msgstr "Agrupar por Cadena Enterprise/IP"
-
-#: ../../include/functions_plugins.php:58
-#, php-format
-msgid "Failed to erase module %d: %s"
-msgstr "Error al borrar el %d del módulo: %s"
-
-#: ../../include/functions_plugins.php:72
-#, php-format
-msgid "Failed to erase policy module: %d"
-msgstr "Error al borrar el módulo de politica: %d"
-
-#: ../../include/functions_cron.php:455
-msgid "Scheduled jobs"
-msgstr "Tareas programadas"
-
-#: ../../include/functions_menu.php:491
-msgid "Configure user"
-msgstr "Configurar usuario"
-
-#: ../../include/functions_menu.php:492
-msgid "Configure profile"
-msgstr "Configurar perfil"
-
-#: ../../include/functions_menu.php:494
-msgid "Module templates management"
-msgstr "Gestión de plantillas de módulos"
-
-#: ../../include/functions_menu.php:495
-msgid "Inventory modules management"
-msgstr "Gestión de módulos de inventario"
-
-#: ../../include/functions_menu.php:502
-msgid "Builder visual console"
-msgstr "Configurador de la consola visual"
-
-#: ../../include/functions_menu.php:504
-msgid "View reporting"
-msgstr "Ver informes"
-
-#: ../../include/functions_menu.php:505
-msgid "Graph viewer"
-msgstr "Visor de gráficos"
-
-#: ../../include/functions_menu.php:507
-msgid "Manage custom graphs"
-msgstr "Gestionar gráficos personalizados"
-
-#: ../../include/functions_menu.php:508
-msgid "View graph containers"
-msgstr "Ver contenedores de gráfico"
-
-#: ../../include/functions_menu.php:509
-msgid "Manage graph containers"
-msgstr "Gestionar contenedores de gráfico"
-
-#: ../../include/functions_menu.php:510
-msgid "View graph templates"
-msgstr "Ver plantillas de gráfico"
-
-#: ../../include/functions_menu.php:511
-msgid "Manage graph templates"
-msgstr "Gestionar plantillas de gráfico"
-
-#: ../../include/functions_menu.php:512
-msgid "Graph template items"
-msgstr "Elementos de la plantilla de gráfico"
-
-#: ../../include/functions_menu.php:513
-msgid "Graph template wizard"
-msgstr "Asistente de plantilla de gráfico"
-
-#: ../../include/functions_menu.php:517
-msgid "Manage GIS Maps"
-msgstr "Gestionar mapas GIS"
-
-#: ../../include/functions_menu.php:520
-msgid "Manage messages"
-msgstr "Gestionar mensajes"
-
-#: ../../include/functions_menu.php:522
-msgid "Manage module groups"
-msgstr "Gestionar grupos de módulos"
-
-#: ../../include/functions_menu.php:523
-msgid "Manage custom field"
-msgstr "Gestionar campos personalizados"
-
-#: ../../include/functions_menu.php:525
-msgid "Manage alert actions"
-msgstr "Gestionar acciones de alertas"
-
-#: ../../include/functions_menu.php:526
-msgid "Manage commands"
-msgstr "Gestionar comandos"
-
-#: ../../include/functions_menu.php:528
-msgid "Manage export targets"
-msgstr "Gestionar objetivos de exportación"
-
-#: ../../include/functions_menu.php:533
-msgid "Manage incident"
-msgstr "Gestionar incidentes"
-
-#: ../../include/functions_menu.php:535
-msgid "Manage groups"
-msgstr "Gestionar grupos"
-
-#: ../../include/functions_menu.php:595
-msgid "Administration"
-msgstr "Administración"
-
-#: ../../include/functions_events.php:134
-msgid "NEW"
-msgstr "NUEVO"
-
-#: ../../include/functions_events.php:137
-msgid "IN PROCESS"
-msgstr "EN PROCESO"
-
-#: ../../include/functions_events.php:140
-msgid "VALIDATED"
-msgstr "VALIDADO"
-
-#: ../../include/functions_events.php:199
-msgid "Agent module"
-msgstr "Módulo de agente"
-
-#: ../../include/functions_events.php:212
-msgid "Module custom id"
-msgstr "ID personalizada de módulo"
-
-#: ../../include/functions_events.php:2727
-msgid "Events -by module-"
-msgstr "Eventos -por módulo-"
-
-#: ../../include/functions_events.php:2874
-msgid "Going to unknown"
-msgstr "Cambiando a estado desconocido"
-
-#: ../../include/functions_events.php:2882
-msgid "Alert manually validated"
-msgstr "Alerta validada manualmente"
-
-#: ../../include/functions_events.php:2886
-msgid "Going from critical to warning"
-msgstr "Cambiando de crítico a advertencia"
-
-#: ../../include/functions_events.php:2892
-msgid "Going up to critical state"
-msgstr "Entrando en estado crítico"
-
-#: ../../include/functions_events.php:2898
-msgid "Going up to normal state"
-msgstr "Subiendo a estado normal"
-
-#: ../../include/functions_events.php:2902
-msgid "Going down from normal to warning"
-msgstr "Cambiando de normal a advertencia"
-
-#: ../../include/functions_events.php:2914
-msgid "Discovery server detected a new host"
-msgstr "El servidor Discovery ha detectado un host nuevo"
-
-#: ../../include/functions_events.php:2918
-msgid "New agent created"
-msgstr "Agente nuevo creado"
-
-#: ../../include/functions_events.php:2935
-msgid "Unknown type:"
-msgstr "Tipo desconocido:"
-
-#: ../../include/functions_events.php:3380
-#: ../../include/functions_events.php:3386
-#: ../../include/functions_events.php:3408
-#: ../../include/lib/Dashboard/Widgets/events_list.php:372
-msgid "All event"
-msgstr "Todos los eventos"
-
-#: ../../include/functions_events.php:3381
-#: ../../include/functions_events.php:3412
-msgid "Only new"
-msgstr "Solo nuevos"
-
-#: ../../include/functions_events.php:3382
-#: ../../include/functions_events.php:3416
-#: ../../include/lib/Dashboard/Widgets/events_list.php:373
-msgid "Only validated"
-msgstr "Solo eventos validados"
-
-#: ../../include/functions_events.php:3383
-#: ../../include/functions_events.php:3420
-msgid "Only in process"
-msgstr "Solo en proceso"
-
-#: ../../include/functions_events.php:3384
-#: ../../include/functions_events.php:3424
-msgid "Only not validated"
-msgstr "Solo no validados"
-
-#: ../../include/functions_events.php:3389
-#: ../../include/functions_events.php:3676
-#: ../../include/functions_events.php:3685
-msgid "In process"
-msgstr "En proceso"
-
-#: ../../include/functions_events.php:3390
-msgid "Not Validated"
-msgstr "No validado"
-
-#: ../../include/functions_events.php:3579
-msgid "Change owner"
-msgstr "Cambiar propietario"
-
-#: ../../include/functions_events.php:3660
-msgid "Change status"
-msgstr "Cambiar estado"
-
-#: ../../include/functions_events.php:3802
-msgid "Custom responses"
-msgstr "Respuesta personalizada"
-
-#: ../../include/functions_events.php:4380
-msgid "Extended information"
-msgstr "Información extendida"
-
-#: ../../include/functions_events.php:4408
-msgid "There was an error connecting to the node"
-msgstr "Error al conectarse al nodo"
-
-#: ../../include/functions_events.php:4447
-msgid "Agent details"
-msgstr "Detalles del agente"
-
-#: ../../include/functions_events.php:4461
-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:4512
-msgid "View custom fields"
-msgstr "Ver campos personalizados"
-
-#: ../../include/functions_events.php:4535
-msgid "Module details"
-msgstr "Detalles del módulo"
-
-#: ../../include/functions_events.php:4551
-msgid "No assigned"
-msgstr "No asignado"
-
-#: ../../include/functions_events.php:4642
-#: ../../include/functions_events.php:4651
-msgid "Go to data overview"
-msgstr "Ir a la vista general de datos"
-
-#: ../../include/functions_events.php:4767
-#, php-format
-msgid "Invalid custom data: %s"
-msgstr "Datos personalizados no válidos: %s"
-
-#: ../../include/functions_events.php:5002
-msgid "First event"
-msgstr "Primer evento"
-
-#: ../../include/functions_events.php:5002
-msgid "Last event"
-msgstr "Último evento"
-
-#: ../../include/functions_events.php:5082 ../../mobile/operation/events.php:540
-msgid "Acknowledged by"
-msgstr "Admitido por"
-
-#: ../../include/functions_events.php:5086
-msgid "Autovalidated"
-msgstr "Autovalidado"
-
-#: ../../include/functions_events.php:5152
-msgid "ID extra"
-msgstr "ID extra"
-
-#: ../../include/functions_events.php:5217
-msgid "There are no comments"
-msgstr "No hay comentarios"
-
-#: ../../include/functions_events.php:5372
-msgid ""
-"If event replication is ongoing, it won't be possible to enter comments here. "
-"This option is only to allow local pandora users to see comments, but not to "
-"operate with them. The operation, when event replication is enabled, must be "
-"done only in the Metaconsole."
-msgstr ""
-"Si la replicación de evento está en proceso, no sera posible añadir "
-"comentarios. Esta opción solo permite a los usuarios locales de Pandora FMS "
-"ver los comentarios, pero no usarlos. Este proceso solo se puede llevar a cabo "
-"en la Metaconsola si la replicación de eventos está habilitada."
-
-#: ../../include/functions_events.php:5576
-msgid "Pandora System"
-msgstr "Sistema de Pandora FMS"
-
-#: ../../include/functions_events.php:5775
-msgid "Validated but not assigned"
-msgstr "Validado pero no asignado"
-
-#: ../../include/functions_events.php:6722
-msgid "Agent Module"
-msgstr "Módulo del agente"
-
-#: ../../include/functions_html.php:595 ../../include/functions_html.php:969
-msgid "Please select an item from this list."
-msgstr "Seleccione un elemento de la lista."
-
-#: ../../include/functions_html.php:621 ../../include/functions_html.php:5716
-msgid "Please select..."
-msgstr "Seleccione..."
-
-#: ../../include/functions_html.php:1582
-msgid "Type to search agents"
-msgstr "Escriba para buscar agentes"
-
-#: ../../include/functions_html.php:1596
-msgid "Type to search modules"
-msgstr "Escriba para buscar módulos"
-
-#: ../../include/functions_html.php:1667
-msgid "Only common modules"
-msgstr "Solo módulos comunes"
-
-#: ../../include/functions_html.php:2111
-msgid "weeks"
-msgstr "semanas"
-
-#: ../../include/functions_html.php:2273
-msgid "Month day"
-msgstr "Día del mes"
-
-#: ../../include/functions_html.php:2275
-msgid "Week day"
-msgstr "Día de la semana"
-
-#: ../../include/functions_html.php:4486
-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:5471
-msgid "Type at least two characters to search the user."
-msgstr "Escriba al menos dos caracteres para buscar el usuario."
-
-#: ../../include/functions_html.php:5860
-msgid "Primary group cannot be secondary too."
-msgstr "Un grupo primario no puede ser también secundario."
-
-#: ../../include/functions_integriaims.php:42
-msgid "Configure Integria IMS"
-msgstr "Configurar Integria IMS"
-
-#: ../../include/functions_integriaims.php:43
-msgid "Ticket list"
-msgstr "Lista de tickets"
-
-#: ../../include/functions_integriaims.php:44
-msgid "New ticket"
-msgstr "Nuevo ticket"
-
-#: ../../include/functions_integriaims.php:73
-msgid "Edit ticket"
-msgstr "Editar ticket"
-
-#: ../../include/functions_integriaims.php:74
-msgid "View ticket"
-msgstr "Ver ticket"
-
-#: ../../include/functions_integriaims.php:307
-msgid ""
-"API request failed. Please check Integria IMS' access credentials in Pandora "
-"setup."
-msgstr ""
-"Error de petición API. Compruebe los credenciales de acceso a Integria IMS en "
-"los ajustes de Pandora FMS."
-
-#: ../../include/functions_integriaims.php:557
-msgid "File successfully added"
-msgstr "Archivo añadido correctamente"
-
-#: ../../include/functions_integriaims.php:558
-msgid "File could not be added"
-msgstr "no se ha podido añadir el archivo"
-
-#: ../../include/functions_integriaims.php:561
-msgid "File has an invalid extension"
-msgstr "El archivo tiene una extensión no válida"
-
-#: ../../include/functions_tags.php:712
-msgid "Click here to open a popup window with URL tag"
-msgstr "Haz clic aquí para abrir una ventana popup con la etiqueta URL."
-
-#: ../../include/get_file.php:39
-msgid "Security error. Please contact the administrator."
-msgstr "Error de seguridad. Contacta con el administrador."
-
-#: ../../include/get_file.php:74
-msgid "File is missing in disk storage. Please contact the administrator."
-msgstr ""
-"El archivo no se encuentra en el disco. Por favor, contacta con el "
-"administrador."
-
-#: ../../include/functions_graph.php:2630
-msgid "Not fired alerts"
-msgstr "No se han disparado alertas."
-
-#: ../../include/functions_graph.php:2898 ../../include/functions_graph.php:2946
-#: ../../include/graphs/functions_gd.php:183
-#: ../../include/graphs/functions_gd.php:466
-msgid "Out of limits"
-msgstr "Fuera de límites"
-
-#: ../../include/functions_graph.php:5518
-msgid "Main node"
-msgstr "Nodo principal"
-
-#: ../../include/functions_db.php:147
-#, php-format
-msgid "Error connecting to database %s at %s."
-msgstr "Error al conectar a la base de datos %s el %s"
-
-#: ../../include/functions_db.php:1900
-msgid "Database debug"
-msgstr "Depurar BD"
-
-#: ../../include/functions_db.php:1917
-msgid "SQL sentence"
-msgstr "Consulta SQL"
-
-#: ../../include/functions_db.php:1919
-msgid "Rows"
-msgstr "Filas"
-
-#: ../../include/functions_db.php:1920
-msgid "Saved"
-msgstr "Guardado"
-
-#: ../../include/functions_db.php:1921
-msgid "Time (ms)"
-msgstr "Tiempo (ms)"
+#: ../../include/functions_gis.php:27 ../../include/functions_gis.php:31
+#: ../../include/functions_gis.php:36
+msgid "Hierarchy of agents"
+msgstr "Jerarquía de agentes"
+
+#: ../../include/functions_visual_map_editor.php:55
+#: ../../include/functions_visual_map_editor.php:632
+#: ../../include/lib/Dashboard/Widget.php:556
+#: ../../godmode/reporting/visual_console_builder.data.php:169
+#: ../../godmode/reporting/visual_console_builder.elements.php:151
+msgid "Background"
+msgstr "Imagen de fondo"
+
+#: ../../include/functions_visual_map_editor.php:56
+#: ../../godmode/reporting/visual_console_builder.wizard.php:127
+msgid "Static Graph"
+msgstr "Gráfico estático"
+
+#: ../../include/functions_visual_map_editor.php:60
+#: ../../godmode/reporting/visual_console_builder.wizard.php:130
+msgid "Simple value"
+msgstr "Valor simple"
 
 #: ../../include/functions_visual_map_editor.php:62
 msgid ""
@@ -45630,6 +13600,18 @@ msgstr ""
 "\t\t\t\t\tun texto para reemplazar '(_VALUE_)' y el valor del módulo se "
 "grabará al final."
 
+#: ../../include/functions_visual_map_editor.php:97
+#: ../../include/functions_visual_map_editor.php:668
+#: ../../include/functions_reports.php:1248
+#: ../../include/rest-api/models/VisualConsole/Items/NetworkLink.php:926
+#: ../../include/rest-api/models/VisualConsole/Items/Line.php:475
+#: ../../enterprise/godmode/reporting/graph_template_editor.php:208
+#: ../../godmode/setup/gis_step_2.php:371
+#: ../../godmode/reporting/visual_console_builder.wizard.php:180
+#: ../../godmode/events/event_responses.editor.php:139
+msgid "Width"
+msgstr "Anchura"
+
 #: ../../include/functions_visual_map_editor.php:107
 #: ../../include/functions_visual_map_editor.php:133
 #: ../../include/rest-api/models/VisualConsole/Items/Box.php:299
@@ -45653,6 +13635,17 @@ msgstr ""
 "Desliza la rueda del ratón sobre el editor de etiquetas para cambiar el color "
 "de fondo."
 
+#: ../../include/functions_visual_map_editor.php:250
+#: ../../include/functions_filemanager.php:641
+#: ../../include/rest-api/models/VisualConsole/Items/StaticGraph.php:336
+#: ../../include/rest-api/models/VisualConsole/Items/Icon.php:175
+#: ../../include/rest-api/models/VisualConsole/Items/Group.php:522
+#: ../../enterprise/include/rest-api/models/VisualConsole/Items/Service.php:236
+#: ../../godmode/reporting/visual_console_builder.elements.php:105
+#: ../../godmode/reporting/visual_console_builder.wizard.php:151
+msgid "Image"
+msgstr "Imagen"
+
 #: ../../include/functions_visual_map_editor.php:255
 #: ../../include/rest-api/models/VisualConsole/Items/Clock.php:333
 msgid "Clock animation"
@@ -45683,6 +13676,94 @@ msgstr "Solo la hora"
 msgid "Time and date"
 msgstr "Hora y fecha"
 
+#: ../../include/functions_visual_map_editor.php:290
+#: ../../include/functions_register.php:134
+#: ../../include/rest-api/models/VisualConsole/Items/Clock.php:271
+#: ../../enterprise/meta/advanced/metasetup.setup.php:162
+#: ../../godmode/setup/setup_general.php:249
+msgid "Africa"
+msgstr "África"
+
+#: ../../include/functions_visual_map_editor.php:291
+#: ../../include/functions_register.php:135
+#: ../../include/rest-api/models/VisualConsole/Items/Clock.php:272
+#: ../../enterprise/meta/advanced/metasetup.setup.php:163
+#: ../../godmode/setup/setup_general.php:250
+msgid "America"
+msgstr "América"
+
+#: ../../include/functions_visual_map_editor.php:292
+#: ../../include/functions_register.php:136
+#: ../../include/rest-api/models/VisualConsole/Items/Clock.php:273
+#: ../../enterprise/meta/advanced/metasetup.setup.php:164
+#: ../../godmode/setup/setup_general.php:251
+msgid "Antarctica"
+msgstr "Antártida"
+
+#: ../../include/functions_visual_map_editor.php:293
+#: ../../include/functions_register.php:137
+#: ../../include/rest-api/models/VisualConsole/Items/Clock.php:274
+#: ../../enterprise/meta/advanced/metasetup.setup.php:165
+#: ../../godmode/setup/setup_general.php:252
+msgid "Arctic"
+msgstr "Ártico"
+
+#: ../../include/functions_visual_map_editor.php:294
+#: ../../include/functions_register.php:138
+#: ../../include/rest-api/models/VisualConsole/Items/Clock.php:275
+#: ../../enterprise/meta/advanced/metasetup.setup.php:166
+#: ../../godmode/setup/setup_general.php:253
+msgid "Asia"
+msgstr "Asia"
+
+#: ../../include/functions_visual_map_editor.php:295
+#: ../../include/functions_register.php:139
+#: ../../include/rest-api/models/VisualConsole/Items/Clock.php:276
+#: ../../enterprise/meta/advanced/metasetup.setup.php:167
+#: ../../godmode/setup/setup_general.php:254
+msgid "Atlantic"
+msgstr "Atlántico"
+
+#: ../../include/functions_visual_map_editor.php:296
+#: ../../include/functions_register.php:140
+#: ../../include/rest-api/models/VisualConsole/Items/Clock.php:277
+#: ../../enterprise/meta/advanced/metasetup.setup.php:168
+#: ../../godmode/setup/setup_general.php:255
+msgid "Australia"
+msgstr "Australia"
+
+#: ../../include/functions_visual_map_editor.php:297
+#: ../../include/functions_register.php:141
+#: ../../include/rest-api/models/VisualConsole/Items/Clock.php:278
+#: ../../enterprise/meta/advanced/metasetup.setup.php:169
+#: ../../godmode/setup/setup_general.php:256
+msgid "Europe"
+msgstr "Europa"
+
+#: ../../include/functions_visual_map_editor.php:298
+#: ../../include/functions_register.php:142
+#: ../../include/rest-api/models/VisualConsole/Items/Clock.php:279
+#: ../../enterprise/meta/advanced/metasetup.setup.php:170
+#: ../../godmode/setup/setup_general.php:257
+msgid "Indian"
+msgstr "Índico"
+
+#: ../../include/functions_visual_map_editor.php:299
+#: ../../include/functions_register.php:143
+#: ../../include/rest-api/models/VisualConsole/Items/Clock.php:280
+#: ../../enterprise/meta/advanced/metasetup.setup.php:171
+#: ../../godmode/setup/setup_general.php:258
+msgid "Pacific"
+msgstr "Pacífico"
+
+#: ../../include/functions_visual_map_editor.php:300
+#: ../../include/functions_register.php:144
+#: ../../include/rest-api/models/VisualConsole/Items/Clock.php:281
+#: ../../enterprise/meta/advanced/metasetup.setup.php:172
+#: ../../godmode/setup/setup_general.php:259
+msgid "UTC"
+msgstr "UTC"
+
 #: ../../include/functions_visual_map_editor.php:313
 #: ../../include/rest-api/models/VisualConsole/Items/Clock.php:302
 msgid "Time zone"
@@ -45692,21 +13773,28 @@ msgstr "Zona horaria"
 msgid "Enable link"
 msgstr "Activar enlace"
 
+#: ../../include/functions_visual_map_editor.php:347
+#: ../../include/rest-api/models/VisualConsole/Items/BarsGraph.php:469
+#: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:524
+#: ../../godmode/reporting/visual_console_builder.data.php:181
+msgid "Background color"
+msgstr "Color de fondo"
+
 #: ../../include/functions_visual_map_editor.php:350
-#: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:518
 #: ../../include/rest-api/models/VisualConsole/Items/BarsGraph.php:463
+#: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:518
 msgid "White"
 msgstr "Blanco"
 
 #: ../../include/functions_visual_map_editor.php:351
-#: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:519
 #: ../../include/rest-api/models/VisualConsole/Items/BarsGraph.php:464
+#: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:519
 msgid "Black"
 msgstr "Negro"
 
 #: ../../include/functions_visual_map_editor.php:352
-#: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:520
 #: ../../include/rest-api/models/VisualConsole/Items/BarsGraph.php:465
+#: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:520
 msgid "Transparent"
 msgstr "Transparente"
 
@@ -45715,6 +13803,30 @@ msgstr "Transparente"
 msgid "Grid color"
 msgstr "Color de cuadrícula"
 
+#: ../../include/functions_visual_map_editor.php:397
+#: ../../include/functions_visual_map.php:4179
+#: ../../include/rest-api/models/VisualConsole/Item.php:2099
+#: ../../mobile/operation/home.php:102
+#: ../../godmode/reporting/visual_console_builder.wizard.php:129
+msgid "Module graph"
+msgstr "Gráfico de módulo"
+
+#: ../../include/functions_visual_map_editor.php:397
+#: ../../include/functions_visual_map_editor.php:400
+#: ../../include/functions_reports.php:561
+#: ../../include/functions_reports.php:648
+#: ../../include/functions_reports.php:654
+#: ../../include/functions_reporting.php:9845
+#: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:625
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2154
+#: ../../godmode/reporting/create_container.php:480
+#: ../../godmode/reporting/create_container.php:624
+#: ../../godmode/reporting/visual_console_builder.elements.php:105
+#: ../../godmode/reporting/visual_console_builder.elements.php:575
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2090
+msgid "Custom graph"
+msgstr "Gráfica personalizada"
+
 #: ../../include/functions_visual_map_editor.php:498
 msgid "Data image"
 msgstr "Datos en imagen"
@@ -45749,10 +13861,49 @@ msgstr "1h"
 msgid "Max. Time"
 msgstr "Tiempo máximo"
 
+#: ../../include/functions_visual_map_editor.php:554
+#: ../../godmode/reporting/create_container.php:428
+#: ../../godmode/reporting/create_container.php:583
+#: ../../godmode/reporting/graph_builder.main.php:208
+msgid "Type of graph"
+msgstr "Tipo de gráfica"
+
+#: ../../include/functions_visual_map_editor.php:612
+#: ../../include/rest-api/models/VisualConsole/Items/SimpleValue.php:371
+#: ../../godmode/reporting/visual_console_builder.wizard.php:256
+msgid "Process"
+msgstr "Procesar"
+
+#: ../../include/functions_visual_map_editor.php:615
+#: ../../godmode/reporting/visual_console_builder.wizard.php:259
+msgid "Min value"
+msgstr "Valor mínimo"
+
+#: ../../include/functions_visual_map_editor.php:616
+#: ../../include/functions_visual_map_editor.php:682
+#: ../../godmode/reporting/visual_console_builder.wizard.php:260
+#: ../../godmode/reporting/visual_console_builder.wizard.php:278
+msgid "Max value"
+msgstr "Valor máx."
+
+#: ../../include/functions_visual_map_editor.php:617
+#: ../../godmode/reporting/visual_console_builder.wizard.php:261
+msgid "Avg value"
+msgstr "Valor medio"
+
 #: ../../include/functions_visual_map_editor.php:640
 msgid "Original Size"
 msgstr "Tamaño original"
 
+#: ../../include/functions_visual_map_editor.php:641
+#: ../../enterprise/meta/advanced/policymanager.apply.php:213
+#: ../../enterprise/meta/advanced/policymanager.queue.php:311
+#: ../../enterprise/godmode/policies/policy_agents.php:854
+#: ../../enterprise/godmode/policies/policy_agents.php:1369
+#: ../../enterprise/godmode/policies/policy_queue.php:714
+msgid "Apply"
+msgstr "Aplicar"
+
 #: ../../include/functions_visual_map_editor.php:648
 msgid "Aspect ratio"
 msgstr "Relación de aspecto"
@@ -45765,11 +13916,93 @@ msgstr "Ancho proporcional"
 msgid "Height proportional"
 msgstr "Altura proporcional"
 
+#: ../../include/functions_visual_map_editor.php:673
+#: ../../include/functions_reports.php:1264
+#: ../../include/functions_reports.php:1364
+#: ../../enterprise/godmode/reporting/graph_template_editor.php:212
+#: ../../godmode/setup/gis_step_2.php:378
+#: ../../godmode/reporting/visual_console_builder.wizard.php:181
+#: ../../godmode/events/event_responses.editor.php:141
+msgid "Height"
+msgstr "Altura"
+
+#: ../../include/functions_visual_map_editor.php:686
+#: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:458
+#: ../../enterprise/meta/include/functions_meta.php:1348
+#: ../../enterprise/meta/advanced/metasetup.visual.php:216
+#: ../../godmode/setup/setup_visuals.php:935
+#: ../../godmode/reporting/visual_console_builder.elements.php:212
+#: ../../godmode/reporting/visual_console_builder.wizard.php:285
+msgid "Percentile"
+msgstr "Percentil"
+
+#: ../../include/functions_visual_map_editor.php:687
+#: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:459
+#: ../../godmode/reporting/visual_console_builder.wizard.php:295
+msgid "Bubble"
+msgstr "Burbuja"
+
 #: ../../include/functions_visual_map_editor.php:688
 #: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:460
 msgid "Circular porgress bar"
 msgstr "Barra de progreso circular"
 
+#: ../../include/functions_visual_map_editor.php:689
+#: ../../include/functions_visual_map.php:4209
+#: ../../include/rest-api/models/VisualConsole/Item.php:2127
+#: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:462
+msgid "Circular progress bar (interior)"
+msgstr "Barra de progreso circular (interior)"
+
+#: ../../include/functions_visual_map_editor.php:692
+#: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:504
+#: ../../godmode/reporting/visual_console_builder.wizard.php:309
+msgid "Percent"
+msgstr "Porcentaje"
+
+#: ../../include/functions_visual_map_editor.php:693
+#: ../../include/functions_reports.php:1068 ../../include/ajax/events.php:2003
+#: ../../include/functions_netflow.php:212 ../../include/functions_graph.php:5453
+#: ../../include/functions_snmp_browser.php:560
+#: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:505
+#: ../../include/functions_reporting_html.php:940
+#: ../../include/functions_reporting_html.php:2180
+#: ../../include/functions_reporting_html.php:4646
+#: ../../include/functions_reporting_html.php:5156
+#: ../../enterprise/operation/services/services.service.php:124
+#: ../../enterprise/operation/services/services.list.php:506
+#: ../../enterprise/include/functions_reporting_csv.php:1158
+#: ../../enterprise/include/functions_reporting_csv.php:1184
+#: ../../enterprise/include/functions_reporting_csv.php:1215
+#: ../../enterprise/include/functions_reporting_csv.php:1270
+#: ../../enterprise/include/functions_reporting_csv.php:1374
+#: ../../enterprise/include/functions_reporting_csv.php:2681
+#: ../../enterprise/meta/include/functions_autoprovision.php:643
+#: ../../enterprise/meta/advanced/metasetup.relations.php:430
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2519
+#: ../../enterprise/godmode/reporting/reporting_builder.global.php:405
+#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:827
+#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:376
+#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:548
+#: ../../godmode/setup/setup_visuals.php:1288
+#: ../../godmode/setup/setup_visuals.php:1349
+#: ../../godmode/setup/setup_visuals.php:1369
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2527
+#: ../../godmode/reporting/visual_console_builder.wizard.php:319
+#: ../../godmode/snmpconsole/snmp_trap_generator.php:115
+#: ../../godmode/massive/massive_edit_modules.php:884
+#: ../../godmode/agentes/module_manager_editor_common.php:1214
+#: ../../godmode/alerts/configure_alert_template.php:816
+msgid "Value"
+msgstr "Valor"
+
+#: ../../include/functions_visual_map_editor.php:711
+#: ../../include/functions_visual_map_editor.php:729
+#: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:509
+#: ../../godmode/reporting/visual_console_builder.wizard.php:307
+msgid "Value to show"
+msgstr "Valor para mostrar"
+
 #: ../../include/functions_visual_map_editor.php:739
 #: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:522
 msgid "Element color"
@@ -45780,6 +14013,46 @@ msgstr "Color del elemento"
 msgid "Value color"
 msgstr "Color del valor"
 
+#: ../../include/functions_visual_map_editor.php:788
+#: ../../include/rest-api/models/VisualConsole/Items/BasicChart.php:313
+#: ../../include/rest-api/models/VisualConsole/Items/SimpleValue.php:394
+#: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:639
+#: ../../enterprise/include/functions_reporting_csv.php:483
+#: ../../enterprise/include/functions_reporting_csv.php:486
+#: ../../enterprise/include/functions_reporting_csv.php:710
+#: ../../enterprise/include/functions_reporting_csv.php:831
+#: ../../enterprise/include/functions_reporting_csv.php:914
+#: ../../enterprise/include/functions_reporting_csv.php:946
+#: ../../enterprise/include/functions_reporting_csv.php:1006
+#: ../../enterprise/include/functions_reporting_csv.php:1184
+#: ../../enterprise/include/functions_reporting_csv.php:1215
+#: ../../enterprise/include/functions_reporting_csv.php:1270
+#: ../../enterprise/include/functions_reporting_csv.php:1374
+#: ../../enterprise/include/functions_reporting_csv.php:1429
+#: ../../enterprise/include/functions_reporting_csv.php:1495
+#: ../../enterprise/include/functions_reporting_csv.php:1881
+#: ../../enterprise/include/functions_reporting_csv.php:1931
+#: ../../enterprise/include/functions_reporting_csv.php:2627
+#: ../../enterprise/include/functions_reporting_csv.php:2678
+#: ../../enterprise/include/functions_reporting_csv.php:2804
+#: ../../enterprise/godmode/reporting/graph_template_editor.php:235
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1765
+#: ../../enterprise/godmode/reporting/reporting_builder.global.php:102
+#: ../../godmode/reporting/visual_console_builder.elements.php:107
+#: ../../godmode/reporting/reporting_builder.item_editor.php:1258
+#: ../../godmode/reporting/graph_builder.main.php:196
+#: ../../godmode/reporting/visual_console_builder.wizard.php:242
+#: ../../godmode/agentes/module_manager_editor_prediction.php:179
+msgid "Period"
+msgstr "Período"
+
+#: ../../include/functions_visual_map_editor.php:793
+#: ../../include/rest-api/models/VisualConsole/Items/Group.php:562
+#: ../../enterprise/tools/ipam/ipam_vlan_config.php:871
+#: ../../enterprise/tools/ipam/ipam_supernet_config.php:1377
+msgid "Show statistics"
+msgstr "Mostrar estadísticas"
+
 #: ../../include/functions_visual_map_editor.php:801
 msgid "Diameter"
 msgstr "Diámetro"
@@ -45837,10 +14110,50 @@ msgstr ""
 msgid "Hide last value on boolean modules"
 msgstr "Ocultar el último valor en módulos boleanos"
 
+#: ../../include/functions_visual_map_editor.php:825
+#: ../../include/rest-api/models/VisualConsole/Items/StaticGraph.php:398
+#: ../../include/functions_reporting_html.php:3352
+#: ../../enterprise/tools/ipam/ipam_ajax.php:419
+#: ../../enterprise/tools/ipam/ipam_massive.php:103
+#: ../../enterprise/tools/ipam/ipam_network.php:402
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3218
+#: ../../enterprise/include/class/DatabaseHA.class.php:205
+#: ../../godmode/modules/manage_network_components_form_wizard.php:246
+#: ../../godmode/massive/massive_edit_agents.php:1016
+#: ../../godmode/agentes/module_manager_editor_common.php:1061
+#: ../../godmode/agentes/module_manager_editor_common.php:1071
+#: ../../godmode/alerts/configure_alert_template.php:900
+#: ../../godmode/groups/group_list.php:908
+msgid "Enabled"
+msgstr "Habilitado"
+
 #: ../../include/functions_visual_map_editor.php:830
 msgid "Show last value"
 msgstr "Mostrar último valor"
 
+#: ../../include/functions_visual_map_editor.php:843
+#: ../../include/rest-api/models/VisualConsole/Items/BarsGraph.php:483
+#: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:105
+msgid "Vertical"
+msgstr "Vertical"
+
+#: ../../include/functions_visual_map_editor.php:844
+#: ../../include/rest-api/models/VisualConsole/Items/BarsGraph.php:482
+#: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:114
+msgid "Horizontal"
+msgstr "Horizontal"
+
+#: ../../include/functions_visual_map_editor.php:922
+#: ../../include/rest-api/models/VisualConsole/Item.php:2023
+#: ../../include/rest-api/models/VisualConsole/Items/Box.php:246
+#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:332
+#: ../../godmode/reporting/reporting_builder.list_items.php:371
+#: ../../godmode/reporting/visual_console_builder.elements.php:107
+#: ../../godmode/snmpconsole/snmp_alert.php:1039
+#: ../../godmode/snmpconsole/snmp_alert.php:1217
+msgid "Position"
+msgstr "Posición"
+
 #: ../../include/functions_visual_map_editor.php:934
 msgid "For use the original image file size, set 0 width and 0 height."
 msgstr ""
@@ -45877,6 +14190,22 @@ msgstr "Por defecto"
 msgid "Linked visual console weight"
 msgstr "Peso de la consola visual enlazada"
 
+#: ../../include/functions_visual_map_editor.php:1148
+#: ../../include/rest-api/models/VisualConsole/Item.php:2522
+#: ../../enterprise/godmode/massive/massive_edit_service_elements.php:265
+#: ../../enterprise/godmode/massive/massive_add_service_elements.php:509
+#: ../../enterprise/godmode/massive/massive_create_services.php:1151
+msgid "Critical weight"
+msgstr "Peso crítico"
+
+#: ../../include/functions_visual_map_editor.php:1174
+#: ../../include/rest-api/models/VisualConsole/Item.php:2536
+#: ../../enterprise/godmode/massive/massive_edit_service_elements.php:278
+#: ../../enterprise/godmode/massive/massive_add_service_elements.php:522
+#: ../../enterprise/godmode/massive/massive_create_services.php:1164
+msgid "Warning weight"
+msgstr "Peso de advertencia"
+
 #: ../../include/functions_visual_map_editor.php:1189
 msgid "Lines haven't advanced options"
 msgstr "Las líneas no tienen opciones avanzadas."
@@ -45896,11 +14225,60 @@ 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:1223
+#: ../../include/functions_visual_map_editor.php:1224
+#: ../../include/class/AgentsAlerts.class.php:387
+#: ../../include/functions_html.php:2107 ../../include/functions.php:499
+#: ../../include/functions.php:630
+#: ../../enterprise/include/ajax/log_viewer.ajax.php:274
+#: ../../enterprise/meta/advanced/metasetup.visual.php:382
+#: ../../enterprise/meta/advanced/metasetup.visual.php:849
+#: ../../enterprise/meta/advanced/metasetup.visual.php:850
+#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:327
+#: ../../godmode/setup/setup_visuals.php:1030
+#: ../../godmode/setup/setup_visuals.php:1031
+#: ../../godmode/setup/setup_visuals.php:1342
+#: ../../godmode/snmpconsole/snmp_alert.php:1015
+msgid "seconds"
+msgstr "segundos"
+
+#: ../../include/functions_visual_map_editor.php:1225
+#: ../../include/functions_visual_map_editor.php:1226
+#: ../../include/functions_visual_map_editor.php:1227
+#: ../../include/functions_visual_map_editor.php:1228
+#: ../../include/functions_html.php:2108 ../../include/functions.php:503
+#: ../../include/functions.php:634
+#: ../../enterprise/include/ajax/log_viewer.ajax.php:276
+#: ../../enterprise/meta/advanced/metasetup.visual.php:383
+#: ../../enterprise/meta/advanced/metasetup.visual.php:851
+#: ../../enterprise/meta/advanced/metasetup.visual.php:852
+#: ../../enterprise/meta/advanced/metasetup.visual.php:853
+#: ../../enterprise/meta/advanced/metasetup.visual.php:854
+#: ../../godmode/setup/setup_visuals.php:1032
+#: ../../godmode/setup/setup_visuals.php:1033
+#: ../../godmode/setup/setup_visuals.php:1034
+#: ../../godmode/setup/setup_visuals.php:1035
+#: ../../godmode/setup/setup_visuals.php:1343
+msgid "minutes"
+msgstr "minutos"
+
+#: ../../include/functions_visual_map_editor.php:1229
+#: ../../enterprise/meta/advanced/metasetup.visual.php:855
+#: ../../godmode/setup/setup_visuals.php:1036
+msgid "hour"
+msgstr "hora"
+
 #: ../../include/functions_visual_map_editor.php:1248
 #: ../../include/rest-api/models/VisualConsole/Item.php:2201
 msgid "Cache expiration"
 msgstr "Caducidad del caché"
 
+#: ../../include/functions_visual_map_editor.php:1255
+#: ../../enterprise/meta/advanced/metasetup.visual.php:862
+#: ../../godmode/setup/setup_visuals.php:1043
+msgid "No cache"
+msgstr "No hay chaché"
+
 #: ../../include/functions_visual_map_editor.php:1287
 msgid "Click start point<br />of the line"
 msgstr "Haz clic en el punto de inicio <br />de la línea"
@@ -45913,6 +14291,13 @@ msgstr "Haz clic en el punto final <br /> de la línea"
 msgid "Show grid"
 msgstr "Mostrar cuadrícula"
 
+#: ../../include/functions_visual_map_editor.php:1421
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3460
+#: ../../extensions/agents_modules.php:448
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3706
+msgid "Update item"
+msgstr "Actualizar elemento"
+
 #: ../../include/functions_visual_map_editor.php:1422
 msgid "Delete item"
 msgstr "Borrar elemento"
@@ -46016,339 +14401,1825 @@ msgstr "Cambios guardados con éxito"
 msgid "Could not be save."
 msgstr "No se ha podido guardar."
 
-#: ../../include/functions_modules.php:4015
-msgid "Realtime SNMP graph"
-msgstr "Gráfica SNMP en tiempo real"
-
-#: ../../include/functions_modules.php:4080
-msgid "ALL"
-msgstr "TODO"
-
-#: ../../include/functions_modules.php:4096
-msgid "NOT NORMAL"
-msgstr "NO NORMAL"
-
-#: ../../include/functions_clippy.php:152
+#: ../../include/functions_plugins.php:58
 #, php-format
-msgid "%s assistant"
-msgstr "Asistente de %s"
+msgid "Failed to erase module %d: %s"
+msgstr "Error al borrar el %d del módulo: %s"
 
-#: ../../include/functions_clippy.php:189 ../../include/functions_clippy.php:194
-msgid "End wizard"
-msgstr "Cerrar asistente"
-
-#: ../../include/functions_clippy.php:227
-msgid "Next &rarr;"
-msgstr "Siguiente &rarr;"
-
-#: ../../include/functions_clippy.php:228
-msgid "&larr; Back"
-msgstr "&larr; Anterior"
-
-#: ../../include/functions_clippy.php:240
-msgid "Do you want to exit the help tour?"
-msgstr "¿Quieres salir de la ayuda guiada?"
-
-#: ../../include/functions_register.php:105
+#: ../../include/functions_plugins.php:72
 #, php-format
-msgid "%s configuration wizard"
-msgstr "Asistente de configuración de %s"
+msgid "Failed to erase policy module: %d"
+msgstr "Error al borrar el módulo de politica: %d"
 
-#: ../../include/functions_register.php:108
+#: ../../include/functions_reports.php:639
+#: ../../include/functions_reports.php:1083
+#: ../../include/functions_reporting.php:9919
+#: ../../include/functions_reporting.php:10079
+msgid "Simple graph"
+msgstr "Gráfico simple"
+
+#: ../../include/functions_reports.php:643
+#: ../../enterprise/include/functions_reporting.php:8347
+msgid "Simple baseline graph"
+msgstr "Gráfico simple de línea base"
+
+#: ../../include/functions_reports.php:661
+#: ../../enterprise/include/functions_reporting_csv.php:1137
+msgid "SQL vertical bar graph"
+msgstr "Gráfico de barra vertical SQL"
+
+#: ../../include/functions_reports.php:665
+#: ../../enterprise/include/functions_reporting_csv.php:1141
+msgid "SQL pie graph"
+msgstr "Gráfico circular de  SQL"
+
+#: ../../include/functions_reports.php:669
+#: ../../enterprise/include/functions_reporting_csv.php:1139
+msgid "SQL horizontal bar graph"
+msgstr "Gráfica de barras horizontales SQL"
+
+#: ../../include/functions_reports.php:676
+msgid "Automatic combined Graph"
+msgstr "Gráfico automático combinado"
+
+#: ../../include/functions_reports.php:682
+msgid "Availability graph"
+msgstr "Gráfico de disponibilidad"
+
+#: ../../include/functions_reports.php:687
+msgid "Module Histogram graph"
+msgstr "Gráfico de histórico de módulo"
+
+#: ../../include/functions_reports.php:692
+#: ../../enterprise/tools/ipam/ipam.php:453 ../../enterprise/godmode/menu.php:322
+msgid "IPAM"
+msgstr "IPAM"
+
+#: ../../include/functions_reports.php:693
+msgid "IPAM networks"
+msgstr "Redes IPAM"
+
+#: ../../include/functions_reports.php:698
+#: ../../include/functions_reports.php:703
+#: ../../include/functions_reports.php:707
+#: ../../include/functions_reports.php:711
+#: ../../include/functions_reports.php:717
+#: ../../enterprise/operation/services/services.service.php:128
+#: ../../enterprise/operation/services/services.list.php:508
+#: ../../enterprise/include/functions_reporting_csv.php:1991
+msgid "SLA"
+msgstr "SLA"
+
+#: ../../include/functions_reports.php:699
+#: ../../include/functions_reporting.php:950
+#: ../../enterprise/include/functions_reporting_csv.php:1481
+#: ../../enterprise/godmode/services/services.service.php:804
+#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:221
+msgid "S.L.A."
+msgstr "SLA"
+
+#: ../../include/functions_reports.php:704
+#: ../../enterprise/include/functions_reporting.php:2371
+#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:222
+msgid "Monthly S.L.A."
+msgstr "SLA mensual"
+
+#: ../../include/functions_reports.php:708
+#: ../../enterprise/include/functions_reporting.php:3323
+#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:223
+msgid "Weekly S.L.A."
+msgstr "SLA semanal"
+
+#: ../../include/functions_reports.php:712
+#: ../../enterprise/include/functions_reporting.php:4301
+msgid "Hourly S.L.A."
+msgstr "SLA cada hora"
+
+#: ../../include/functions_reports.php:718
+#: ../../enterprise/include/functions_reporting.php:5566
+#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:226
+msgid "Services S.L.A."
+msgstr "SLA de servicios"
+
+#: ../../include/functions_reports.php:724
+#: ../../include/functions_reports.php:728
+msgid "Forecasting"
+msgstr "Predicción"
+
+#: ../../include/functions_reports.php:725
+#: ../../enterprise/include/functions_reporting_csv.php:768
+msgid "Prediction date"
+msgstr "Fecha de predicción"
+
+#: ../../include/functions_reports.php:729
+msgid "Projection graph"
+msgstr "Gráfico de proyección"
+
+#: ../../include/functions_reports.php:734
+msgid "Avg. value"
+msgstr "Valor medio"
+
+#: ../../include/functions_reports.php:738
+msgid "Max. value"
+msgstr "Valor Max"
+
+#: ../../include/functions_reports.php:742
+msgid "Min. value"
+msgstr "Valor mínimo"
+
+#: ../../include/functions_reports.php:746
+msgid "Monitor report"
+msgstr "Informe de monitores"
+
+#: ../../include/functions_reports.php:750
+msgid "Serialize data"
+msgstr "Serializar datos"
+
+#: ../../include/functions_reports.php:754
+#: ../../include/functions_reporting.php:6435
+#: ../../include/functions_reporting.php:9735
+#: ../../enterprise/include/functions_reporting_csv.php:1170
+#: ../../enterprise/include/functions_reporting_csv.php:1188
+#: ../../enterprise/include/functions_reporting_csv.php:1190
+msgid "Summatory"
+msgstr "Sumatorio"
+
+#: ../../include/functions_reports.php:758
+msgid "Historical Data"
+msgstr "Datos históricos"
+
+#: ../../include/functions_reports.php:762
+#: ../../include/functions_reporting.php:9252
+#: ../../include/functions_reporting_html.php:3705
+#: ../../enterprise/include/functions_reporting_csv.php:1311
+#: ../../enterprise/include/functions_reporting_csv.php:1325
+#: ../../enterprise/include/functions_reporting_csv.php:1329
+#: ../../enterprise/include/functions_reporting_csv.php:1340
+msgid "Increment"
+msgstr "Incremento"
+
+#: ../../include/functions_reports.php:766
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1742
+#: ../../enterprise/godmode/reporting/reporting_builder.global.php:192
+#: ../../godmode/reporting/reporting_builder.item_editor.php:1235
+msgid "Last value"
+msgstr "Último valor"
+
+#: ../../include/functions_reports.php:770
+#: ../../include/functions_reports.php:776
+#: ../../include/functions_reports.php:782
+#: ../../include/functions_reports.php:788
+#: ../../include/functions_reports.php:794
+#: ../../include/functions_reports.php:801
+#: ../../include/functions_reports.php:808
+#: ../../include/functions_reports.php:814
+#: ../../include/functions_reports.php:818
+#: ../../include/functions_reports.php:823
+#: ../../include/functions_reports.php:829
+msgid "Grouped"
+msgstr "Agrupado"
+
+#: ../../include/functions_reports.php:771 ../../include/ajax/events.php:1494
+#: ../../include/functions_reporting.php:9397
+#: ../../enterprise/include/functions_reporting_csv.php:992
+#: ../../enterprise/include/class/Aws.cloud.php:345
+#: ../../enterprise/meta/include/functions_wizard_meta.php:248
+#: ../../enterprise/meta/include/functions_wizard_meta.php:533
+#: ../../enterprise/meta/include/functions_wizard_meta.php:605
+#: ../../enterprise/meta/include/functions_wizard_meta.php:1153
+#: ../../enterprise/godmode/reporting/reporting_builder.global.php:48
+#: ../../godmode/setup/setup.php:96 ../../godmode/setup/setup.php:249
+#: ../../godmode/servers/plugin.php:367 ../../godmode/servers/plugin.php:372
+#: ../../godmode/alerts/configure_alert_template.php:229
+#: ../../godmode/alerts/configure_alert_template.php:233
+msgid "General"
+msgstr "General"
+
+#: ../../include/functions_reports.php:777
+#: ../../include/functions_reports.php:783
+#: ../../enterprise/include/functions_reporting_csv.php:986
+msgid "Group report"
+msgstr "Grupo de informes"
+
+#: ../../include/functions_reports.php:789
+#: ../../include/functions_reporting.php:3048
+#: ../../enterprise/include/functions_reporting_csv.php:900
+#: ../../enterprise/godmode/reporting/reporting_builder.global.php:47
+msgid "Exception"
+msgstr "Excepción"
+
+#: ../../include/functions_reports.php:795
+#: ../../extensions/agents_modules.php:465
+msgid "Agents/Modules"
+msgstr "Agentes/Módulos"
+
+#: ../../include/functions_reports.php:802
+msgid "Agents/Modules status"
+msgstr "Estado de los agentes/módulos"
+
+#: ../../include/functions_reports.php:809
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2251
+#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:424
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2222
+msgid "SQL query"
+msgstr "Consulta SQL"
+
+#: ../../include/functions_reports.php:815
+#: ../../enterprise/godmode/reporting/reporting_builder.global.php:46
+msgid "Top n"
+msgstr "Top N"
+
+#: ../../include/functions_reports.php:819
+msgid "Network interfaces"
+msgstr "Interfaces de red"
+
+#: ../../include/functions_reports.php:824
+msgid "Custom Render"
+msgstr "Renderizado personalizado"
+
+#: ../../include/functions_reports.php:830
+#: ../../include/functions_reporting.php:8122
+#: ../../include/functions_reporting.php:8514
+#: ../../enterprise/include/functions_reporting_csv.php:473
+#: ../../enterprise/include/functions_reporting.php:1227
+msgid "Availability"
+msgstr "Disponibilidad"
+
+#: ../../include/functions_reports.php:834
+#: ../../include/functions_reports.php:838
+msgid "Text/HTML "
+msgstr "Texto/HTML "
+
+#: ../../include/functions_reports.php:835
+#: ../../include/lib/Dashboard/Widgets/post.php:214
+#: ../../include/functions_reporting.php:6824
+#: ../../enterprise/include/functions_reporting_csv.php:2387
+#: ../../enterprise/include/functions_reporting_csv.php:2401
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2189
+#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor_form.php:74
+#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:385
+#: ../../godmode/setup/setup_visuals.php:1289 ../../godmode/setup/news.php:205
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2186
+msgid "Text"
+msgstr "Texto"
+
+#: ../../include/functions_reports.php:839
+msgid "Import text from URL"
+msgstr "Importar texto de una URL"
+
+#: ../../include/functions_reports.php:844
+msgid "Module alert report"
+msgstr "Informe de alerta de módulo"
+
+#: ../../include/functions_reports.php:848
+msgid "Agent alert report "
+msgstr "Informe de alerta de agente "
+
+#: ../../include/functions_reports.php:854
+msgid "Group alert report"
+msgstr "Informe de alerta de grupo"
+
+#: ../../include/functions_reports.php:860
+msgid "Actions alert report "
+msgstr "Informe de alerta de acciones "
+
+#: ../../include/functions_reports.php:865
+msgid "Module event report"
+msgstr "Informe de evento de módulo"
+
+#: ../../include/functions_reports.php:869
+msgid "Agent event report"
+msgstr "Informe de evento de agente"
+
+#: ../../include/functions_reports.php:873
+msgid "Group event report"
+msgstr "Informe de evento de grupo"
+
+#: ../../include/functions_reports.php:878
+#: ../../include/functions_reports.php:885
+#: ../../include/functions_reports.php:886
+#: ../../include/functions_reports.php:890
+#: ../../include/functions_reporting.php:2612
+#: ../../enterprise/operation/menu.php:19
+#: ../../enterprise/operation/snmpconsole/snmp_view.php:23
+#: ../../enterprise/operation/agentes/ver_agente.php:192
+#: ../../enterprise/operation/inventory/inventory.php:137
+#: ../../enterprise/include/functions_reporting_csv.php:754
+#: ../../enterprise/meta/general/main_menu.php:229
+#: ../../enterprise/godmode/agentes/configurar_agente.php:88
+#: ../../enterprise/godmode/policies/policies.php:539
+#: ../../godmode/setup/setup_integria.php:314
+#: ../../godmode/agentes/configurar_agente.php:711
+msgid "Inventory"
+msgstr "Inventario"
+
+#: ../../include/functions_reports.php:879
+#: ../../enterprise/include/functions_reporting_csv.php:696
+msgid "Agents inventory"
+msgstr "Inventario de agentes"
+
+#: ../../include/functions_reports.php:891
+msgid "Inventory changes"
+msgstr "Inventario de cambios"
+
+#: ../../include/functions_reports.php:898
+#: ../../include/functions_reports.php:902
+#: ../../include/class/ModuleTemplates.class.php:195
+#: ../../include/class/ModuleTemplates.class.php:213
+#: ../../include/class/ConfigPEN.class.php:327
+#: ../../enterprise/views/ncm/agent/details.php:600
+#: ../../enterprise/meta/monitoring/wizard/wizard.module.web.php:100
+#: ../../enterprise/meta/monitoring/wizard/wizard.module.local.php:107
+#: ../../enterprise/meta/monitoring/wizard/wizard.agent.php:64
+#: ../../enterprise/meta/monitoring/wizard/wizard.module.network.php:119
+#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:351
+#: ../../enterprise/godmode/modules/configure_local_component.php:483
+#: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:251
+#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:687
+#: ../../godmode/setup/setup.php:330 ../../godmode/menu.php:210
+#: ../../godmode/agentes/planned_downtime.list.php:615
+msgid "Configuration"
+msgstr "Configuración"
+
+#: ../../include/functions_reports.php:899
+#: ../../include/functions_reporting.php:6250
+msgid "Agent configuration"
+msgstr "Configuración de agentes"
+
+#: ../../include/functions_reports.php:903
+#: ../../include/functions_reporting.php:4511
+msgid "Group configuration"
+msgstr "Configuración del grupo"
+
+#: ../../include/functions_reports.php:906
+#: ../../include/functions_reports.php:910
+#: ../../include/functions_reports.php:914
+#: ../../include/functions_reports.php:918
+#: ../../enterprise/include/functions_enterprise.php:452
+#: ../../enterprise/meta/general/main_menu.php:381
+#: ../../enterprise/meta/general/logon_ok.php:37
+#: ../../enterprise/meta/general/main_header.php:275
+#: ../../godmode/setup/setup.php:151 ../../godmode/setup/setup.php:271
+#: ../../godmode/menu.php:342
+msgid "Netflow"
+msgstr "Netflow"
+
+#: ../../include/functions_reports.php:907
+#: ../../enterprise/include/functions_reporting_csv.php:2607
+msgid "Netflow area chart"
+msgstr "Gráfico de área de Netflow"
+
+#: ../../include/functions_reports.php:911
+msgid "Netflow data table"
+msgstr "Tabla de datos de Netflow"
+
+#: ../../include/functions_reports.php:915
+msgid "Netflow summary table"
+msgstr "Tabla de resumen de Netflow"
+
+#: ../../include/functions_reports.php:919
+#: ../../include/functions_reporting.php:5926
+#: ../../enterprise/include/functions_reporting_csv.php:2786
+msgid "Netflow top-N connections"
+msgstr "Conexiones Netflow top-N"
+
+#: ../../include/functions_reports.php:925
+#: ../../enterprise/include/functions_reporting.php:2144
+msgid "Log"
+msgstr "Log"
+
+#: ../../include/functions_reports.php:926
+#: ../../enterprise/include/functions_reporting.php:2131
+msgid "Log report"
+msgstr "Informe de log"
+
+#: ../../include/functions_reports.php:932
+#: ../../include/functions_reports.php:933
+#: ../../include/functions_reporting.php:4389
+#: ../../enterprise/include/functions_reporting_csv.php:2531
+msgid "Permissions report"
+msgstr "Informe de permisos"
+
+#: ../../include/functions_reports.php:938
+#: ../../enterprise/views/ncm/devices/list.php:64
+msgid "NCM"
+msgstr "NCM"
+
+#: ../../include/functions_reports.php:939
+msgid "Network configuration changes"
+msgstr "Cambios en la configuración de red"
+
+#: ../../include/functions_reports.php:956
+#: ../../enterprise/godmode/policies/policy_modules.php:1363
+#: ../../godmode/agentes/configurar_agente.php:2110
 #, php-format
-msgid ""
-"Please fill the following information in order to configure your %s instance "
-"successfully"
+msgid "copy of %s"
+msgstr "copia de %s"
+
+#: ../../include/functions_reports.php:1066
+msgid "Macro"
+msgstr "Macro"
+
+#: ../../include/functions_reports.php:1080
+#: ../../include/functions_reports.php:1210
+#: ../../enterprise/meta/monitoring/wizard/wizard.php:152
+#: ../../godmode/modules/manage_network_components_form_wizard.php:392
+#: ../../godmode/modules/manage_network_components_form_wizard.php:434
+msgid "String"
+msgstr "Cadena"
+
+#: ../../include/functions_reports.php:1081
+#: ../../include/functions_reports.php:1210
+#: ../../include/functions_reports.php:1230
+msgid "Sql"
+msgstr "Sql"
+
+#: ../../include/functions_reports.php:1082
+msgid "Graph Sql"
+msgstr "Gráfico SQL"
+
+#: ../../include/functions_reports.php:1380
+#: ../../enterprise/godmode/reporting/reporting_builder.template.php:759
+msgid "Period "
+msgstr "Periodo "
+
+#: ../../include/ajax/module.php:199 ../../include/functions.php:3358
+msgid "30 minutes"
+msgstr "30 minutos"
+
+#: ../../include/ajax/module.php:201
+#: ../../enterprise/godmode/reporting/graph_template_editor.php:220
+msgid "6 hours"
+msgstr "6 horas"
+
+#: ../../include/ajax/module.php:202
+#: ../../enterprise/godmode/reporting/graph_template_editor.php:221
+#: ../../godmode/setup/performance.php:530
+msgid "12 hours"
+msgstr "12 horas"
+
+#: ../../include/ajax/module.php:203 ../../include/ajax/graph.ajax.php:150
+#: ../../include/functions.php:2694
+#: ../../enterprise/godmode/reporting/graph_template_editor.php:222
+#: ../../godmode/reporting/create_container.php:350
+msgid "1 day"
+msgstr "1 día"
+
+#: ../../include/ajax/module.php:204 ../../include/ajax/graph.ajax.php:153
+#: ../../include/functions.php:2695
+#: ../../godmode/reporting/create_container.php:353
+msgid "1 week"
+msgstr "1 semana"
+
+#: ../../include/ajax/module.php:205 ../../include/ajax/graph.ajax.php:154
+#: ../../include/functions.php:2696
+#: ../../enterprise/godmode/reporting/graph_template_editor.php:226
+#: ../../godmode/reporting/create_container.php:354
+msgid "15 days"
+msgstr "15 días"
+
+#: ../../include/ajax/module.php:206 ../../include/ajax/graph.ajax.php:155
+#: ../../include/functions.php:2697
+#: ../../godmode/reporting/create_container.php:355
+msgid "1 month"
+msgstr "1 mes"
+
+#: ../../include/ajax/module.php:207
+msgid "3 months"
+msgstr "3 meses"
+
+#: ../../include/ajax/module.php:208
+#: ../../enterprise/godmode/reporting/graph_template_editor.php:229
+msgid "6 months"
+msgstr "6 meses"
+
+#: ../../include/ajax/module.php:209 ../../include/functions.php:2700
+#: ../../enterprise/godmode/reporting/graph_template_editor.php:230
+msgid "1 year"
+msgstr "1 año"
+
+#: ../../include/ajax/module.php:210
+msgid "2 years"
+msgstr "2 años"
+
+#: ../../include/ajax/module.php:211
+msgid "3 years"
+msgstr "3 años"
+
+#: ../../include/ajax/module.php:307
+msgid "Exact phrase"
+msgstr "Frase exacta"
+
+#: ../../include/ajax/module.php:981
+#: ../../enterprise/meta/include/functions_wizard_meta.php:999
+#: ../../enterprise/meta/include/functions_wizard_meta.php:1084
+#: ../../enterprise/meta/include/functions_wizard_meta.php:1317
+msgid "Thresholds"
+msgstr "Umbrales"
+
+#: ../../include/ajax/module.php:1084 ../../include/ajax/module.php:1092
+#: ../../godmode/agentes/module_manager.php:1042
+#: ../../godmode/agentes/module_manager.php:1050
+msgid "Adopted"
+msgstr "Adoptado"
+
+#: ../../include/ajax/module.php:1092 ../../include/ajax/module.php:1095
+#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:991
+#: ../../godmode/massive/massive_edit_modules.php:1067
+#: ../../godmode/agentes/module_manager.php:1050
+#: ../../godmode/agentes/module_manager.php:1053
+msgid "Unlinked"
+msgstr "Desenlazado"
+
+#: ../../include/ajax/module.php:1304
+msgid "Any monitors aren't with this filter."
+msgstr "No todos los monitores llevan este filtro"
+
+#: ../../include/ajax/module.php:1306
+msgid "This agent doesn't have any active monitors."
+msgstr "Este agente no tiene ningún monitor activo."
+
+#: ../../include/ajax/visual_console_builder.ajax.php:343
+#: ../../include/functions_visual_map.php:2833
+#: ../../enterprise/operation/agentes/wux_console_view.php:593
+#: ../../enterprise/godmode/setup/setup_acl.php:791
+#: ../../enterprise/godmode/reporting/visual_console_template.php:305
+msgid "No data to show"
+msgstr "No hay datos que mostrar"
+
+#: ../../include/ajax/graph.ajax.php:147 ../../include/ajax/graph.ajax.php:148
+#: ../../include/ajax/graph.ajax.php:149 ../../include/functions.php:2692
+#: ../../include/functions.php:2693
+#: ../../godmode/reporting/create_container.php:347
+#: ../../godmode/reporting/create_container.php:348
+#: ../../godmode/reporting/create_container.php:349
+#, php-format
+msgid "%s hours"
+msgstr "%s horas"
+
+#: ../../include/ajax/graph.ajax.php:151 ../../include/ajax/graph.ajax.php:152
+#: ../../godmode/reporting/create_container.php:351
+#: ../../godmode/reporting/create_container.php:352
+#, php-format
+msgid "%s days"
+msgstr "%s días"
+
+#: ../../include/ajax/graph.ajax.php:161
+msgid "Time container lapse"
+msgstr "Lapso del contenedor de tiempo"
+
+#: ../../include/ajax/alert_list.ajax.php:345
+#: ../../enterprise/meta/advanced/metasetup.consoles.php:387
+#: ../../enterprise/godmode/setup/setup_metaconsole.php:147
+#: ../../enterprise/godmode/policies/policy_modules.php:517
+#: ../../enterprise/godmode/policies/policy_alerts.php:126
+#: ../../godmode/massive/massive_enable_disable_alerts.php:102
+#: ../../godmode/agentes/configurar_agente.php:2171
+#: ../../godmode/agentes/modificar_agente.php:234
+#: ../../godmode/alerts/alert_list.php:366 ../../godmode/users/user_list.php:372
+msgid "Successfully enabled"
+msgstr "Activado correctamente"
+
+#: ../../include/ajax/alert_list.ajax.php:347
+#: ../../enterprise/meta/advanced/metasetup.consoles.php:388
+#: ../../enterprise/godmode/setup/setup_metaconsole.php:148
+#: ../../enterprise/godmode/policies/policy_modules.php:518
+#: ../../enterprise/godmode/policies/policy_alerts.php:127
+#: ../../godmode/massive/massive_enable_disable_alerts.php:102
+#: ../../godmode/agentes/configurar_agente.php:2172
+#: ../../godmode/agentes/modificar_agente.php:235
+#: ../../godmode/alerts/alert_list.php:367
+msgid "Could not be enabled"
+msgstr "No se pudo activar"
+
+#: ../../include/ajax/alert_list.ajax.php:366
+#: ../../enterprise/meta/advanced/metasetup.consoles.php:412
+#: ../../enterprise/godmode/setup/setup_metaconsole.php:156
+#: ../../enterprise/godmode/policies/policy_modules.php:534
+#: ../../enterprise/godmode/policies/policy_alerts.php:152
+#: ../../godmode/massive/massive_enable_disable_alerts.php:124
+#: ../../godmode/agentes/configurar_agente.php:2196
+#: ../../godmode/agentes/modificar_agente.php:277
+#: ../../godmode/alerts/alert_list.php:393 ../../godmode/users/user_list.php:366
+msgid "Successfully disabled"
+msgstr "Desactivado correctamente"
+
+#: ../../include/ajax/alert_list.ajax.php:368
+#: ../../enterprise/godmode/setup/setup_metaconsole.php:157
+#: ../../enterprise/godmode/policies/policy_modules.php:535
+#: ../../enterprise/godmode/policies/policy_alerts.php:153
+#: ../../godmode/massive/massive_enable_disable_alerts.php:124
+#: ../../godmode/agentes/configurar_agente.php:2197
+#: ../../godmode/agentes/modificar_agente.php:278
+#: ../../godmode/alerts/alert_list.php:394
+msgid "Could not be disabled"
+msgstr "No se pudo desactivar"
+
+#: ../../include/ajax/alert_list.ajax.php:503
+#: ../../include/class/AgentsAlerts.class.php:314
+#: ../../enterprise/godmode/policies/policy_external_alerts.php:600
+#: ../../enterprise/godmode/policies/policy_alerts.php:596
+#: ../../godmode/massive/massive_add_action_alerts.php:252
+#: ../../godmode/alerts/alert_list.list.php:753
+#: ../../godmode/alerts/alert_list.builder.php:127
+msgid "Number of alerts match from"
+msgstr "Número de alertas coincidentes con"
+
+#: ../../include/ajax/alert_list.ajax.php:527
+#: ../../include/class/AgentsAlerts.class.php:385
+#: ../../include/functions_reporting_html.php:3390
+#: ../../include/functions_reporting_html.php:5157
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2296
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2508
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3343
+#: ../../enterprise/meta/monitoring/wizard/wizard.manage_alert.php:290
+#: ../../godmode/alerts/alert_list.list.php:651
+#: ../../godmode/alerts/alert_list.list.php:777
+#: ../../godmode/alerts/alert_list.builder.php:173
+#: ../../godmode/alerts/alert_view.php:361
+#: ../../godmode/alerts/configure_alert_action.php:284
+msgid "Threshold"
+msgstr "Umbral"
+
+#: ../../include/ajax/alert_list.ajax.php:579
+#: ../../include/functions_reporting_html.php:86
+#: ../../include/functions_reporting_html.php:5487
+#: ../../godmode/agentes/planned_downtime.editor.php:628
+msgid "From:"
+msgstr "Desde:"
+
+#: ../../include/ajax/alert_list.ajax.php:593
+#: ../../include/functions_reporting_html.php:86
+#: ../../include/functions_reporting_html.php:5487
+#: ../../godmode/agentes/planned_downtime.editor.php:632
+msgid "To:"
+msgstr "Hasta:"
+
+#: ../../include/ajax/double_auth.ajax.php:144
+msgid "This is the private code that you should use with your authenticator app"
 msgstr ""
-"Rellene esta información para configurar su instancia de %s correctamente"
+"Esta es la clave privada que deberías usar con la aplicación de "
+"autentificación."
 
-#: ../../include/functions_register.php:165
+#: ../../include/ajax/double_auth.ajax.php:145
+#: ../../include/ajax/double_auth.ajax.php:288
 msgid ""
-"Must have the same time zone as the system or database to avoid mismatches of "
-"time."
+"You could enter the code manually or use the QR code to add it automatically"
 msgstr ""
-"Debe tener las mismas zonas horarias que el sistema o la base de datos para "
-"evitar desajustes de tiempo."
+"Puedes introducir el código manualmente o usar el código QR para añadirlo "
+"automáticamente."
 
-#: ../../include/functions_register.php:171
-msgid "E-mail for receiving alerts"
-msgstr "Correo electrónico para la recepción de alertas"
+#: ../../include/ajax/double_auth.ajax.php:149
+#: ../../include/ajax/double_auth.ajax.php:292
+#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:125
+msgid "Code"
+msgstr "Código"
+
+#: ../../include/ajax/double_auth.ajax.php:151
+#: ../../include/ajax/double_auth.ajax.php:294
+msgid "QR"
+msgstr "QR"
+
+#: ../../include/ajax/double_auth.ajax.php:190
+msgid "You are about to activate the double authentication"
+msgstr "Estás a punto de activar la doble autentificación."
+
+#: ../../include/ajax/double_auth.ajax.php:192
+msgid ""
+"With this option enabled, your account access will be more secure, \n"
+"\t\tcause a code generated by other application will be required after the "
+"login"
+msgstr ""
+"Con esta opción habilitada, el acceso a tu cuenta será más seguro,\n"
+"\t\tporque el código generado por otra aplicación se generará después de "
+"conectarse."
+
+#: ../../include/ajax/double_auth.ajax.php:197
+msgid "You will need to install the app from the following link before continue"
+msgstr ""
+"Tienes que instalar la aplicación desde el siguiente vínculo antes de "
+"continuar."
+
+#: ../../include/ajax/double_auth.ajax.php:202
+msgid "Download the app"
+msgstr "Descargue la aplicación"
 
-#: ../../include/functions_register.php:188
 #: ../../include/ajax/double_auth.ajax.php:206
 #: ../../include/ajax/double_auth.ajax.php:299
+#: ../../include/functions_register.php:188
 msgid "Continue"
 msgstr "Continuar"
 
-#: ../../include/functions_register.php:196
-msgid "All fields required"
-msgstr "Todos los campos requeridos"
+#: ../../include/ajax/double_auth.ajax.php:222
+msgid "Are you installed the app yet?"
+msgstr "¿Ya has instalado la aplicación?"
 
-#: ../../include/functions_register.php:205
-msgid "Are you sure you don't want to configure a base email?"
-msgstr "¿Está seguro de que no desea configurar un correo base?"
+#: ../../include/ajax/double_auth.ajax.php:282
+msgid "A private code has been generated"
+msgstr "Un código privado ha sido generado."
 
-#: ../../include/functions_register.php:207
-msgid ""
-"You could change this options later in \"alert actions\" and setting your "
-"account."
+#: ../../include/ajax/double_auth.ajax.php:287
+msgid "Before continue, you should create a new entry into the authenticator app"
 msgstr ""
-"Puede modificar las preferencias más tarde en \"acciones de alerta\" y "
-"configurar su propia cuenta."
+"Antes de continuar, deberías crear una nueva entrada dentro de la aplicación "
+"de autentificación."
 
-#: ../../include/functions_reporting_html.php:109
-msgid "Label: "
-msgstr "Etiqueta: "
+#: ../../include/ajax/double_auth.ajax.php:297
+msgid "Refresh code"
+msgstr "Actualizar el código"
 
-#: ../../include/functions_reporting_html.php:580
-msgid "Time Failed"
-msgstr "Tiempo en fallo"
+#: ../../include/ajax/double_auth.ajax.php:366
+msgid "Are you introduced the code in the authenticator app yet?"
+msgstr "¿Ya has introducido el código en la aplicación de autentificación?"
 
-#: ../../include/functions_reporting_html.php:584
-msgid "Downtime"
-msgstr "Parada planificada"
+#: ../../include/ajax/double_auth.ajax.php:429
+msgid "Introduce a code generated by the app"
+msgstr "Introduce el código generado por la aplicación."
 
-#: ../../include/functions_reporting_html.php:995
-#: ../../include/functions_reporting_html.php:2233
-#: ../../include/functions_reporting_html.php:4249
-#: ../../include/functions_reporting_html.php:4785
-#: ../../include/rest-api/models/VisualConsole/Items/SimpleValue.php:367
-msgid "Min Value"
-msgstr "Valor mínimo"
+#: ../../include/ajax/double_auth.ajax.php:430
+msgid "If the code is valid, the double authentication will be activated"
+msgstr "Si el código es válido, se activará la doble autentificación."
 
-#: ../../include/functions_reporting_html.php:996
-#: ../../include/functions_reporting_html.php:2234
-#: ../../include/functions_reporting_html.php:4250
-#: ../../include/functions_reporting_html.php:4786
-msgid "Average Value"
-msgstr "Valor medio"
+#: ../../include/ajax/double_auth.ajax.php:439
+msgid "Validate code"
+msgstr "Validar código"
 
-#: ../../include/functions_reporting_html.php:997
-#: ../../include/functions_reporting_html.php:2235
-#: ../../include/functions_reporting_html.php:4247
-#: ../../include/functions_reporting_html.php:4788
-#: ../../include/rest-api/models/VisualConsole/Items/SimpleValue.php:366
-msgid "Max Value"
-msgstr "Valor máximo"
+#: ../../include/ajax/double_auth.ajax.php:491
+msgid "The code is valid, you can exit now"
+msgstr "El código es válido, puedes salir ahora."
 
-#: ../../include/functions_reporting_html.php:1051
-#: ../../include/functions_reporting_html.php:1059
-#: ../../include/functions_reporting_html.php:2356
-msgid "Val. by"
-msgstr "Val. por"
+#: ../../include/ajax/double_auth.ajax.php:500 ../../index.php:332
+#: ../../enterprise/meta/index.php:295 ../../mobile/include/user.class.php:280
+msgid "Invalid code"
+msgstr "Código no válido"
 
-#: ../../include/functions_reporting_html.php:1118
+#: ../../include/ajax/double_auth.ajax.php:508
+msgid "The code is valid, but it was an error saving the data"
+msgstr "El código es válido, pero hubo un error al guardar los datos."
+
+#: ../../include/ajax/heatmap.ajax.php:79
+msgid "Group modules by tag"
+msgstr "Agrupar módulos por etiqueta"
+
+#: ../../include/ajax/heatmap.ajax.php:80
+msgid "Group modules by module group"
+msgstr "Agrupar módulos por grupo de módulos"
+
+#: ../../include/ajax/heatmap.ajax.php:97
+msgid "Show groups"
+msgstr "Mostrar grupos"
+
+#: ../../include/ajax/custom_fields.php:413
+#: ../../include/class/AgentWizard.class.php:1184
+msgid "Treshold"
+msgstr "Umbral"
+
+#: ../../include/ajax/custom_fields.php:414
+msgid "Current interval"
+msgstr "Intervalo actual"
+
+#: ../../include/ajax/custom_fields.php:460
+#: ../../include/ajax/custom_fields.php:513
+msgid "Modules normal"
+msgstr "Módulos normales"
+
+#: ../../include/ajax/custom_fields.php:471
+msgid "Modules critical"
+msgstr "Módulos críticos"
+
+#: ../../include/ajax/custom_fields.php:482
+msgid "Modules warning"
+msgstr "Módulos en estado de advertencia"
+
+#: ../../include/ajax/custom_fields.php:492
+msgid "Modules unknown"
+msgstr "Módulos desconocidos"
+
+#: ../../include/ajax/custom_fields.php:503
+msgid "Modules no init"
+msgstr "Módulos no iniciados"
+
+#: ../../include/ajax/custom_fields.php:545
+msgid "New Filter"
+msgstr "Nuevo filtro"
+
+#: ../../include/ajax/custom_fields.php:552
+msgid "Existing Filter"
+msgstr "Filtro existente"
+
+#: ../../include/ajax/custom_fields.php:652
+#: ../../enterprise/meta/event/custom_events.php:44
+#: ../../godmode/snmpconsole/snmp_filters.php:37
+#: ../../godmode/events/event_filter.php:225
+#: ../../godmode/netflow/nf_edit.php:217
+#: ../../godmode/netflow/nf_edit_form.php:190
+msgid "Create filter"
+msgstr "Crear filtro"
+
+#: ../../include/ajax/custom_fields.php:700
+msgid "Delete filter"
+msgstr "Eliminar filtro"
+
+#: ../../include/ajax/custom_fields.php:737
+#: ../../godmode/agentes/fields_manager.php:46
+msgid "The name must not be empty"
+msgstr "El nombre no puede estar vacío."
+
+#: ../../include/ajax/custom_fields.php:750
+msgid "Filter name already exists in the bbdd"
+msgstr "El nombre del filtro ya existe en la base de datos"
+
+#: ../../include/ajax/custom_fields.php:762
+msgid "Please, select a custom field"
+msgstr "Seleccione un campo personalizado"
+
+#: ../../include/ajax/custom_fields.php:790
+msgid "Success create filter."
+msgstr "Se ha creado el filtro."
+
+#: ../../include/ajax/custom_fields.php:797
+msgid "Error create filter."
+msgstr "Error al crear el filtro."
+
+#: ../../include/ajax/custom_fields.php:822
+#: ../../include/ajax/custom_fields.php:895
+msgid "please, select a filter"
+msgstr "Seleccione un filtro"
+
+#: ../../include/ajax/custom_fields.php:838
+msgid "please, select a custom field"
+msgstr "Seleccione un campo personalizado"
+
+#: ../../include/ajax/custom_fields.php:864
+msgid "Success update filter."
+msgstr "Se ha actualizado el filtro."
+
+#: ../../include/ajax/custom_fields.php:871
+msgid "Error update filter."
+msgstr "Error al actualizar el filtro."
+
+#: ../../include/ajax/custom_fields.php:914
+msgid "Success delete filter."
+msgstr "Se ha eliminado el filtro."
+
+#: ../../include/ajax/custom_fields.php:921
+msgid "Error delete filter."
+msgstr "Error al eliminar el filtro."
+
+#: ../../include/ajax/snmp_browser.ajax.php:113
+#: ../../include/ajax/snmp_browser.ajax.php:124
+#: ../../include/ajax/snmp_browser.ajax.php:134
+msgid "SNMP modules"
+msgstr "Módulos SNMP"
+
+#: ../../include/ajax/snmp_browser.ajax.php:117
+msgid "Error creating the following modules:"
+msgstr "Error al crear los siguientes módulos:"
+
+#: ../../include/ajax/snmp_browser.ajax.php:128
+msgid "Modules successfully created"
+msgstr "Módulos creados correctamente"
+
+#: ../../include/ajax/snmp_browser.ajax.php:138
+msgid "Module must be applied to an agent or a policy"
+msgstr "El módulo debe aplicarse a un agente o a una política"
+
+#: ../../include/ajax/snmp_browser.ajax.php:263
+msgid "Failed to create policy"
+msgstr "Error al crear política"
+
+#: ../../include/ajax/snmp_browser.ajax.php:264
+msgid "Policy created succesfully"
+msgstr "Política creada con éxito"
+
+#: ../../include/ajax/events.php:97
+msgid "Failed to retrieve comments"
+msgstr "No se han podido obtener los comentarios"
+
+#: ../../include/ajax/events.php:1176
+msgid "Error executing response"
+msgstr "Error al ejecutar respuesta"
+
+#: ../../include/ajax/events.php:1213
+#: ../../enterprise/tools/ipam/ipam_ajax.php:540
 #, php-format
-msgid "%s System"
-msgstr "Sistema %s"
+msgid "Executing command: %s"
+msgstr "Ejecutar comando: %s"
 
-#: ../../include/functions_reporting_html.php:1166
-#: ../../include/functions_reporting_html.php:1366
-msgid "Events by agent"
-msgstr "Eventos por agente"
+#: ../../include/ajax/events.php:1230 ../../include/ajax/events.php:1254
+#: ../../enterprise/tools/ipam/ipam_ajax.php:551
+msgid "Execute again"
+msgstr "Ejecutar de nuevo"
 
-#: ../../include/functions_reporting_html.php:1183
-#: ../../include/functions_reporting_html.php:1383
-msgid "Events by user validator"
-msgstr "Eventos por usuario validador"
+#: ../../include/ajax/events.php:1500
+msgid "Related"
+msgstr "Relacionado"
 
-#: ../../include/functions_reporting_html.php:1200
-#: ../../include/functions_reporting_html.php:1400
-msgid "Events by Severity"
-msgstr "Eventos por gravedad"
+#: ../../include/ajax/events.php:1512
+msgid "Agent fields"
+msgstr "Campos de agente"
 
-#: ../../include/functions_reporting_html.php:1217
-#: ../../include/functions_reporting_html.php:1417
-msgid "Events validated vs unvalidated"
-msgstr "Eventos validados vs no validados"
+#: ../../include/ajax/events.php:1544
+#: ../../enterprise/meta/event/custom_events.php:79
+#: ../../godmode/events/events.php:100
+msgid "Responses"
+msgstr "Respuestas"
 
-#: ../../include/functions_reporting_html.php:1508
-msgid "Sec. groups"
-msgstr "Sec. grupos"
+#: ../../include/ajax/events.php:1650
+msgid "Error adding comment"
+msgstr "Error al añadir el comentario"
 
-#: ../../include/functions_reporting_html.php:1528
-msgid "Remote conf."
-msgstr "Configuración remota"
+#: ../../include/ajax/events.php:1651
+msgid "Comment added successfully"
+msgstr "Comentario añadido correctamente"
 
-#: ../../include/functions_reporting_html.php:2004
-#: ../../extensions/agents_modules.php:934
-msgid "Orange cell when the module has fired alerts"
-msgstr "Cuadro naranja cuando el módulo ha disparado alertas"
+#: ../../include/ajax/events.php:1652
+msgid "Error changing event status"
+msgstr "Error al cambiar el estado del evento"
 
-#: ../../include/functions_reporting_html.php:2005
-#: ../../extensions/agents_modules.php:936
-msgid "Red cell when the module has a critical status"
-msgstr "Celda roja cuando el módulo está en estado crítico"
+#: ../../include/ajax/events.php:1653
+msgid "Event status changed successfully"
+msgstr "Estado del evento cambiado correctamente"
 
-#: ../../include/functions_reporting_html.php:2006
-#: ../../extensions/agents_modules.php:939
-msgid "Yellow cell when the module has a warning status"
-msgstr "Cuadro amarillo cuando el módulo está en estado advertencia"
+#: ../../include/ajax/events.php:1654
+msgid "Error changing event owner"
+msgstr "Error al cambiar el propietario del evento"
 
-#: ../../include/functions_reporting_html.php:2007
-#: ../../extensions/agents_modules.php:941
-msgid "Green cell when the module has a normal status"
-msgstr "Cuadro verde cuando el módulo está en estado normal"
+#: ../../include/ajax/events.php:1655
+msgid "Event owner changed successfully"
+msgstr "Propietario del evento cambiado correctamente"
 
-#: ../../include/functions_reporting_html.php:2008
-#: ../../extensions/agents_modules.php:943
-msgid "Grey cell when the module has an unknown status"
-msgstr "Cuadro gris cuando el módulo está en estado desconocido"
+#: ../../include/ajax/events.php:1656
+msgid "Error deleting event"
+msgstr "Error al eliminar evento"
 
-#: ../../include/functions_reporting_html.php:2009
-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/ajax/events.php:1824
+#: ../../enterprise/meta/include/functions_wizard_meta.php:495
+#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:753
+#: ../../godmode/massive/massive_edit_modules.php:817
+#: ../../godmode/agentes/module_manager_editor_wmi.php:59
+#: ../../godmode/agentes/module_manager_editor_network.php:94
+msgid "Auto"
+msgstr "Automático"
 
-#: ../../include/functions_reporting_html.php:2036
-#: ../../include/functions_reporting_html.php:2040
-#: ../../extensions/files_repo/files_repo_list.php:164
-msgid "No items"
-msgstr "No hay elementos"
+#: ../../include/ajax/events.php:1863
+msgid "Show all Events 24h"
+msgstr "Mostrar todos los eventos en las últimas 24h"
 
-#: ../../include/functions_reporting_html.php:2299
-#: ../../include/functions_reporting_html.php:5355
-msgid "Monitors"
-msgstr "Monitores"
+#: ../../include/ajax/events.php:2000
+msgid "These commands will apply to all selected events"
+msgstr "Estos comandos se aplicarán en todos los eventos seleccionados"
 
-#: ../../include/functions_reporting_html.php:2318
-msgid "Events (not validated)"
-msgstr "Eventos (no validados)"
+#: ../../include/ajax/events.php:2029
+#: ../../include/class/ExternalTools.class.php:581
+#: ../../include/functions_events.php:3835
+#: ../../enterprise/views/ncm/agent/details.php:689
+msgid "Execute"
+msgstr "Ejecutar"
 
-#: ../../include/functions_reporting_html.php:2455
-msgid "Events validated by user"
-msgstr "Eventos validados por el usuario"
+#: ../../include/ajax/events.php:2108
+msgid "Alert fired in module "
+msgstr "Alerta disparada en el módulo "
 
-#: ../../include/functions_reporting_html.php:2472
-#: ../../include/functions_reporting_html.php:5644
-msgid "Events by severity"
-msgstr "Eventos por gravedad"
+#: ../../include/ajax/events.php:2122 ../../include/ajax/events.php:2136
+#: ../../include/ajax/events.php:2150
+#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:82
+msgid "Module "
+msgstr "Módulo "
 
-#: ../../include/functions_reporting_html.php:2489
-msgid "Amount events validated"
-msgstr "Cantidad de eventos validados"
+#: ../../include/ajax/events.php:2123
+msgid " is going to critical"
+msgstr " cambiando a CRÍTICO"
 
-#: ../../include/functions_reporting_html.php:2913
-msgid "Total summary"
-msgstr "Resumen total"
+#: ../../include/ajax/events.php:2137
+msgid " is going to warning"
+msgstr " cambiando a ADVERTENCIA"
 
-#: ../../include/functions_reporting_html.php:2920
-msgid "No alerts fired"
-msgstr "No hay alertas disparadas"
+#: ../../include/ajax/events.php:2151
+msgid " is going to unknown"
+msgstr " cambiando a DESCONOCIDO"
 
-#: ../../include/functions_reporting_html.php:3011
+#: ../../include/class/Tree.class.php:775 ../../include/class/Tree.class.php:777
+msgid "Module alerts"
+msgstr "Alertas de módulo"
+
+#: ../../include/class/ModuleTemplates.class.php:196
+#: ../../include/class/ModuleTemplates.class.php:214
+#: ../../include/class/ConfigPEN.class.php:332
+#: ../../include/functions_menu.php:515
+#: ../../enterprise/views/ncm/templates/list.php:32
+#: ../../enterprise/include/functions_reporting.php:146
+#: ../../enterprise/include/functions_reporting.php:7983
+#: ../../enterprise/include/functions_reporting.php:8011
+#: ../../enterprise/include/functions_reporting.php:8082
+#: ../../enterprise/meta/include/functions_alerts_meta.php:129
+#: ../../enterprise/meta/include/functions_alerts_meta.php:160
+#: ../../enterprise/godmode/reporting/visual_console_template.php:109
+#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:191
+#: ../../enterprise/godmode/reporting/graph_template_wizard.php:192
+#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:261
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2094
+#: ../../godmode/reporting/reporting_builder.item_editor.php:1881
+#: ../../godmode/menu.php:144 ../../godmode/menu.php:230
+#: ../../godmode/agentes/configurar_agente.php:739
+msgid "Templates"
+msgstr "Plantillas"
+
+#: ../../include/class/ModuleTemplates.class.php:199
+#: ../../include/class/ModuleTemplates.class.php:217
+#: ../../include/class/ModuleTemplates.class.php:227
+#: ../../godmode/modules/manage_network_templates.php:39
+#: ../../godmode/modules/manage_network_templates_form.php:32
+msgid "Module template management"
+msgstr "Gestión de plantillas de módulos"
+
+#: ../../include/class/ModuleTemplates.class.php:353
 #, php-format
-msgid "Interface '%s' throughput graph"
-msgstr "Interfaz '%s' gráfico de rendimiento"
+msgid "Template %s successfully updated"
+msgstr "Plantilla %s actualizada con éxito"
 
-#: ../../include/functions_reporting_html.php:3015
-msgid "Mac"
-msgstr "Mac"
+#: ../../include/class/ModuleTemplates.class.php:355
+#: ../../enterprise/godmode/reporting/graph_template_editor.php:174
+msgid "Error updating template"
+msgstr "Error al actualizar la plantilla"
 
-#: ../../include/functions_reporting_html.php:3016
-msgid "Actual status"
-msgstr "Estado actual"
-
-#: ../../include/functions_reporting_html.php:3380
-#: ../../include/functions_reporting_html.php:3382
-msgid "Empty modules"
-msgstr "Módulos vacíos"
-
-#: ../../include/functions_reporting_html.php:3389
-msgid "Warning<br/>Critical"
-msgstr "Advertencia<br/>Crítico"
-
-#: ../../include/functions_reporting_html.php:3862
-msgid "Time Not Init Module"
-msgstr "Tiempo en módulo no iniciado"
-
-#: ../../include/functions_reporting_html.php:3873
-msgid "% Ok"
-msgstr "% OK"
-
-#: ../../include/functions_reporting_html.php:3950
-msgid "Checks Uknown"
-msgstr "Comprobaciones en desconocido"
-
-#: ../../include/functions_reporting_html.php:3989
-#: ../../include/functions_reporting_html.php:4136
-#: ../../include/functions_reporting_html.php:4461
-#: ../../include/functions_reporting_html.php:4467
-msgid "Primary"
-msgstr "Primario"
-
-#: ../../include/functions_reporting_html.php:5129
+#: ../../include/class/ModuleTemplates.class.php:400
 #, php-format
-msgid "Agents in group: %s"
-msgstr "Agentes en el grupo: %s"
+msgid "Template %s successfully created"
+msgstr "Plantilla %s creada con éxito"
 
-#: ../../include/functions_reporting_html.php:5231
-msgid "Last failure"
-msgstr "Último fallo"
+#: ../../include/class/ModuleTemplates.class.php:402
+msgid "Error creating template"
+msgstr "Error al crear plantilla"
 
-#: ../../include/functions_reporting_html.php:5321
-msgid "N/A(*)"
-msgstr "N/A(*)"
-
-#: ../../include/functions_reporting_html.php:5595
-#: ../../include/functions_reporting_html.php:5600
-msgid "Node overview"
-msgstr "Resumen de nodos"
-
-#: ../../include/functions_reporting_html.php:5620
-#: ../../include/functions_reporting_html.php:5632
-msgid "Critical events"
-msgstr "Eventos en estado crítico"
-
-#: ../../include/functions_reporting_html.php:5623
-#: ../../include/functions_reporting_html.php:5634
-msgid "Warning events"
-msgstr "Eventos en estado de advertencia"
-
-#: ../../include/functions_reporting_html.php:5626
-#: ../../include/functions_reporting_html.php:5636
-msgid "OK events"
-msgstr "Eventos OK"
-
-#: ../../include/functions_reporting_html.php:5629
-#: ../../include/functions_reporting_html.php:5638
-msgid "Unknown events"
-msgstr "Eventos desconocidos"
-
-#: ../../include/functions_reporting_html.php:5654
-msgid "Important Events by Criticity"
-msgstr "Eventos importantes por gravedad"
-
-#: ../../include/functions_reporting_html.php:5680
+#: ../../include/class/ModuleTemplates.class.php:410
 #, php-format
-msgid "Last activity in %s console"
-msgstr "Última actividad en la consola %s"
+msgid "Template %s successfully deleted"
+msgstr "Plantilla %s eliminada con éxito"
 
-#: ../../include/functions_reporting_html.php:5771
-#: ../../include/functions_reporting_html.php:5913
-msgid "Events info (1hr.)"
-msgstr "Información de eventos (1h)"
+#: ../../include/class/ModuleTemplates.class.php:412
+#, php-format
+msgid "Error deleting %s template"
+msgstr "Error al eliminar la plantilla %s"
 
-#: ../../include/functions_reporting_html.php:6096
-msgid "This SLA has been affected by the following scheduled downtimes"
+#: ../../include/class/ModuleTemplates.class.php:559
+msgid "Module successfully deleted"
+msgstr "Módulo eliminado con éxito"
+
+#: ../../include/class/ModuleTemplates.class.php:561
+msgid "Error deleting module"
+msgstr "Error al eliminar el módulo"
+
+#: ../../include/class/ModuleTemplates.class.php:572
+msgid "Block successfully deleted"
+msgstr "Bloque eliminado con éxito"
+
+#: ../../include/class/ModuleTemplates.class.php:574
+msgid "Error deleting block"
+msgstr "Error al eliminar bloque"
+
+#: ../../include/class/ModuleTemplates.class.php:586
+msgid "All templates deleted"
+msgstr "Eliminadas todas las plantillas"
+
+#: ../../include/class/ModuleTemplates.class.php:588
+msgid "Error deleting all templates"
+msgstr "Error al eliminar todas las plantillas"
+
+#: ../../include/class/ModuleTemplates.class.php:597
+msgid "Selected templates deleted"
+msgstr "Eliminadas las plantillas seleccionadas"
+
+#: ../../include/class/ModuleTemplates.class.php:599
+msgid "Error deleting selected templates"
+msgstr "Error al eliminar las plantillas seleccionadas"
+
+#: ../../include/class/ModuleTemplates.class.php:611
+msgid "Something gone wrong. Please, try again"
+msgstr "Ha habido un error. inténtelo de nuevo."
+
+#: ../../include/class/ModuleTemplates.class.php:662
+msgid "The modules is already added"
+msgstr "El módulo ya se ha añadido"
+
+#: ../../include/class/ModuleTemplates.class.php:804
+#: ../../enterprise/meta/include/functions_wizard_meta.php:309
+#: ../../godmode/modules/manage_network_templates_form.php:341
+msgid "Components"
+msgstr "Componentes"
+
+#: ../../include/class/ModuleTemplates.class.php:1074
+#: ../../include/class/ConfigPEN.class.php:428
+#: ../../include/class/ConfigPEN.class.php:597
+msgid "PEN"
+msgstr "PEN"
+
+#: ../../include/class/ModuleTemplates.class.php:1111
+#: ../../include/class/ModuleTemplates.class.php:1383
+msgid "Add components"
+msgstr "Añadir componentes"
+
+#: ../../include/class/ModuleTemplates.class.php:1163
+#: ../../include/class/ModuleTemplates.class.php:1298
+msgid "No module blocks for this profile"
+msgstr "No hay bloques de módulos para este perfil"
+
+#: ../../include/class/ModuleTemplates.class.php:1186
+msgid "Delete this block"
+msgstr "Eliminar este bloque"
+
+#: ../../include/class/ModuleTemplates.class.php:1188
+msgid "Do you want delete this block?"
+msgstr "¿Desea eliminar este bloque?"
+
+#: ../../include/class/ModuleTemplates.class.php:1208
+#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:121
+#: ../../godmode/massive/massive_standby_alerts.php:223
+#: ../../godmode/massive/massive_standby_alerts.php:258
+#: ../../godmode/massive/massive_enable_disable_alerts.php:195
+#: ../../godmode/massive/massive_enable_disable_alerts.php:230
+msgid "Format"
+msgstr "Formato"
+
+#: ../../include/class/ModuleTemplates.class.php:1234
+#: ../../godmode/modules/manage_network_components.php:804
+msgid "Network module"
+msgstr "Módulo de red"
+
+#: ../../include/class/ModuleTemplates.class.php:1245
+#: ../../godmode/modules/manage_network_components.php:815
+msgid "WMI module"
+msgstr "Módulo WMI"
+
+#: ../../include/class/ModuleTemplates.class.php:1256
+#: ../../godmode/modules/manage_network_components.php:826
+msgid "Plug-in module"
+msgstr "Módulo de plugin"
+
+#: ../../include/class/ModuleTemplates.class.php:1283
+msgid "Delete this module"
+msgstr "Eliminar este módulo"
+
+#: ../../include/class/ModuleTemplates.class.php:1285
+msgid "Do you want delete this module?"
+msgstr "¿Desea eliminar este módulo?"
+
+#: ../../include/class/ModuleTemplates.class.php:1476
+msgid "Do you want delete all templates?"
+msgstr "¿Desea eliminar todas las plantillas?"
+
+#: ../../include/class/ModuleTemplates.class.php:1479
+msgid "Do you want delete the selected templates?"
+msgstr "¿Desea eliminar las plantillas seleccionadas?"
+
+#: ../../include/class/AuditLog.class.php:128
+#: ../../enterprise/godmode/admin_access_logs.php:54
+#: ../../enterprise/godmode/policies/policy_agents.php:854
+#: ../../enterprise/godmode/policies/policy_agents.php:1369
+#: ../../mobile/operation/agents.php:407
+#: ../../godmode/reporting/visual_console_builder.elements.php:118
+msgid "A."
+msgstr "A."
+
+#: ../../include/class/AuditLog.class.php:136
+#, php-format
+msgid "%s audit"
+msgstr "Auditoría %s"
+
+#: ../../include/class/AuditLog.class.php:136
+msgid "Review Logs"
+msgstr "Revisar logs"
+
+#: ../../include/class/AuditLog.class.php:145
+#: ../../enterprise/include/class/ManageBackups.class.php:117
+msgid "Admin Tools"
+msgstr "Herramientas de administrador"
+
+#: ../../include/class/AuditLog.class.php:149
+msgid "System Audit log"
+msgstr "Logs de auditoría del sistema"
+
+#: ../../include/class/AuditLog.class.php:376
+#: ../../enterprise/include/class/ManageBackups.class.php:424
+msgid "There is no additional information to display"
+msgstr "No hay información adicional que mostrar"
+
+#: ../../include/class/Heatmap.class.php:743
+#: ../../enterprise/include/class/CommandCenter.class.php:454
+msgid "Info"
+msgstr "Información"
+
+#: ../../include/class/HelpFeedBack.class.php:99
+#: ../../enterprise/include/class/Omnishell.class.php:319
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:717
+msgid "Page not found"
+msgstr "Página no encontrada"
+
+#: ../../include/class/HelpFeedBack.class.php:104
+msgid "Browser not compatible."
+msgstr "Buscador no compatible."
+
+#: ../../include/class/HelpFeedBack.class.php:147
+msgid "Suggestion"
+msgstr "Sugerencia"
+
+#: ../../include/class/HelpFeedBack.class.php:158
+msgid "Something is wrong"
+msgstr "Algo ha salido mal"
+
+#: ../../include/class/HelpFeedBack.class.php:171
+#: ../../include/class/Diagnostics.class.php:1894
+msgid "What happened?"
+msgstr "¿Qué ha pasado?"
+
+#: ../../include/class/HelpFeedBack.class.php:181
+msgid "Your Email"
+msgstr "Tu email"
+
+#: ../../include/class/HelpFeedBack.class.php:198
+msgid "Submit"
+msgstr "Enviar"
+
+#: ../../include/class/HelpFeedBack.class.php:253
+msgid "[pandorafms wiki] New suggestion"
+msgstr "[pandorafms wiki] Nueva sugerencia"
+
+#: ../../include/class/HelpFeedBack.class.php:255
+msgid "[pandorafms wiki] New report"
+msgstr "[pandorafms wiki] Nuevo informe"
+
+#: ../../include/class/HelpFeedBack.class.php:261
+msgid "Please provide your email address, we promise not to bother you"
+msgstr "Añada su dirección de correo electrónico, prometemos no molestarle"
+
+#: ../../include/class/HelpFeedBack.class.php:309
+msgid "Something went wrong while sending the report."
+msgstr "Error al enviar el informe."
+
+#: ../../include/class/HelpFeedBack.class.php:360
+msgid "Your report had been successfully sent to Artica."
+msgstr "Su informe se ha enviado a Ártica correctamente"
+
+#: ../../include/class/HelpFeedBack.class.php:360
+msgid "Thank you!"
+msgstr "¡Gracias!"
+
+#: ../../include/class/ManageNetScanScripts.class.php:104
+#: ../../include/class/CustomNetScan.class.php:352
+#: ../../enterprise/include/class/CSVImportAgents.class.php:98
+#: ../../enterprise/include/class/DeploymentCenter.class.php:594
+#: ../../godmode/wizards/HostDevices.class.php:196
+msgid "Host & Devices"
+msgstr "Host y dispositivos"
+
+#: ../../include/class/ManageNetScanScripts.class.php:122
+msgid "Net scan scripts"
+msgstr "Guiones de escaneo de red"
+
+#: ../../include/class/ManageNetScanScripts.class.php:223
+msgid "Problem creating"
+msgstr "Error al crear"
+
+#: ../../include/class/ManageNetScanScripts.class.php:228
+#: ../../enterprise/godmode/modules/local_components.php:326
+#: ../../godmode/modules/manage_network_components.php:438
+msgid "Created successfully"
+msgstr "Creado correctamente"
+
+#: ../../include/class/ManageNetScanScripts.class.php:234
+#: ../../include/class/ManageNetScanScripts.class.php:321
+msgid "Name or Script fullpath they can not be empty"
+msgstr "El nombre o ruta completa del guión no pueden estar vacíos"
+
+#: ../../include/class/ManageNetScanScripts.class.php:255
+#: ../../include/class/ManageNetScanScripts.class.php:342
+msgid "Problem deleting Net scan Scripts, Not selected script"
 msgstr ""
-"Este SLA se ha visto afectado por los siguientes tiempos de inactividad "
-"programados"
+"Error al eliminar los scripts de escaneo de red. No hay scripts seleccionados"
 
-#: ../../include/functions_reporting_html.php:6097
-msgid ""
-"If the duration of the scheduled downtime is less than 5 minutes it will not "
-"be represented in the graph"
-msgstr ""
-"Si la duración de la parada planificada es de menos de 5 minutos, no se "
-"representará en el gráfico"
+#: ../../include/class/ManageNetScanScripts.class.php:310
+msgid "Problem updating"
+msgstr "Error al actualizar"
 
-#: ../../include/functions_reporting_html.php:6135
-msgid "This item is affected by a malformed scheduled downtime"
-msgstr "A este elemento le afecta una parada planificada mal formada."
+#: ../../include/class/ManageNetScanScripts.class.php:315
+#: ../../enterprise/godmode/modules/local_components.php:401
+#: ../../godmode/modules/manage_network_components.php:534
+msgid "Updated successfully"
+msgstr "Actualizado correctamente"
 
-#: ../../include/functions_reporting_html.php:6135
-msgid "Go to the scheduled downtimes section to solve this"
-msgstr "Ir a la sección de paradas planificadas para solucionar este problema"
+#: ../../include/class/ManageNetScanScripts.class.php:361
+msgid "Problem deleting Net scan Scripts"
+msgstr "Error al eliminar los scripts de escaneo de red"
+
+#: ../../include/class/ManageNetScanScripts.class.php:366
+msgid "Deleted successfully"
+msgstr "Borrado correctamente"
+
+#: ../../include/class/ManageNetScanScripts.class.php:434
+#: ../../include/class/ExternalTools.class.php:353
+#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1103
+#: ../../godmode/servers/plugin.php:429 ../../godmode/servers/plugin.php:434
+#: ../../godmode/servers/plugin.php:817
+#: ../../godmode/modules/manage_network_components_form_network.php:223
+#: ../../godmode/events/event_responses.editor.php:157
+#: ../../godmode/events/event_responses.editor.php:164
+#: ../../godmode/massive/massive_edit_plugins.php:480
+#: ../../godmode/massive/massive_edit_modules.php:1181
+#: ../../godmode/agentes/module_manager_editor_network.php:433
+#: ../../godmode/alerts/alert_actions.php:272
+#: ../../godmode/alerts/alert_actions.php:327
+#: ../../godmode/alerts/configure_alert_command.php:246
+#: ../../godmode/alerts/configure_alert_action.php:247
+msgid "Command"
+msgstr "Comando"
+
+#: ../../include/class/ManageNetScanScripts.class.php:439
+msgid "Are you sure delete script?"
+msgstr "¿Está seguro de que desea borrar el script?"
+
+#: ../../include/class/ManageNetScanScripts.class.php:459
+msgid "Delete Script"
+msgstr "Eliminar guión"
+
+#: ../../include/class/ManageNetScanScripts.class.php:478
+msgid "There are no net scan scripts in the system"
+msgstr "No hay scripts de escaneo de red en el sistema"
+
+#: ../../include/class/ManageNetScanScripts.class.php:552
+msgid "Script fullpath"
+msgstr "Ruta completa del script"
+
+#: ../../include/class/ManageNetScanScripts.class.php:636
+#: ../../enterprise/godmode/modules/configure_local_component.php:639
+#: ../../godmode/servers/plugin.php:492
+msgid "Default value"
+msgstr "Valor por defecto"
+
+#: ../../include/class/ManageNetScanScripts.class.php:667
+#: ../../godmode/servers/plugin.php:505
+msgid "Hide value"
+msgstr "Ocultar valor"
+
+#: ../../include/class/ManageNetScanScripts.class.php:669
+#: ../../godmode/servers/plugin.php:506
+msgid "This field will show up as dots like a password"
+msgstr "En este campo aparecerán puntos como en un campo de tipo contraseña."
+
+#: ../../include/class/ManageNetScanScripts.class.php:690
+#: ../../include/functions_ui.php:1446
+#: ../../enterprise/meta/general/login_page.php:75
+#: ../../enterprise/meta/include/reset_pass.php:58
+#: ../../enterprise/meta/include/process_reset_pass.php:58
+#: ../../enterprise/godmode/modules/configure_local_component.php:645
+#: ../../godmode/servers/plugin.php:526
+msgid "Help"
+msgstr "Ayuda"
+
+#: ../../include/class/ManageNetScanScripts.class.php:724
+#: ../../enterprise/godmode/modules/configure_local_component.php:655
+#: ../../godmode/servers/plugin.php:554
+msgid "Add macro"
+msgstr "Añadir macro"
+
+#: ../../include/class/ManageNetScanScripts.class.php:742
+#: ../../enterprise/godmode/modules/configure_local_component.php:663
+#: ../../godmode/servers/plugin.php:568
+msgid "Delete macro"
+msgstr "Eliminar macro"
+
+#: ../../include/class/AgentsAlerts.class.php:304
+#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:461
+#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:573
+#: ../../enterprise/meta/monitoring/wizard/wizard.manage_alert.php:263
+#: ../../godmode/alerts/configure_alert_template.php:758
+#: ../../godmode/alerts/alert_list.builder.php:117
+msgid "Default action"
+msgstr "Acción predeterminada"
+
+#: ../../include/class/AgentsAlerts.class.php:332
+#: ../../godmode/alerts/alert_list.builder.php:136
+#: ../../godmode/alerts/configure_alert_action.php:169
+msgid "Create Action"
+msgstr "Crear acción"
+
+#: ../../include/class/AgentsAlerts.class.php:379
+#: ../../godmode/alerts/configure_alert_template.php:607
+#: ../../godmode/alerts/alert_list.builder.php:169
+msgid "Create Template"
+msgstr "Crear plantilla"
+
+#: ../../include/class/AgentsAlerts.class.php:396
+#: ../../enterprise/godmode/alerts/alert_inventory_builder.php:282
+#: ../../godmode/alerts/alert_list.builder.php:204
+msgid "Add alert"
+msgstr "Añadir alerta"
+
+#: ../../include/class/AgentsAlerts.class.php:502
+msgid "There are no agents with alerts"
+msgstr "No existen agentes con alertas"
+
+#: ../../include/class/AgentsAlerts.class.php:580
+msgid "Previous alerts"
+msgstr "Alertas previas"
+
+#: ../../include/class/AgentsAlerts.class.php:643
+msgid "More alerts"
+msgstr "Más alertas"
+
+#: ../../include/class/AgentsAlerts.class.php:741
+msgid "Agents/Alerts"
+msgstr "Agentes/Alertas"
+
+#: ../../include/class/AgentsAlerts.class.php:790
+msgid "Show modules without alerts"
+msgstr "Mostrar módulos sin alertas"
+
+#: ../../include/class/AgentsAlerts.class.php:949
+#: ../../include/functions_ui.php:1247
+#: ../../enterprise/operation/agentes/policy_view.php:345
+#: ../../mobile/operation/alerts.php:324
+#: ../../godmode/alerts/alert_list.list.php:559
+#: ../../godmode/alerts/alert_view.php:105
+msgid "time(s)"
+msgstr "Veces"
+
+#: ../../include/class/AgentsAlerts.class.php:952
+#: ../../include/functions_reporting.php:12334
+#: ../../include/functions_ui.php:1250
+#: ../../enterprise/operation/agentes/policy_view.php:348
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3184
+#: ../../enterprise/godmode/alerts/alert_inventory_list.php:261
+#: ../../mobile/operation/alerts.php:327
+#: ../../godmode/alerts/alert_list.list.php:562
+#: ../../godmode/alerts/alert_view.php:108
+msgid "Alert disabled"
+msgstr "Alerta desactivada"
+
+#: ../../include/class/WebServerModuleDebug.class.php:143
+msgid "Performing query. Please wait."
+msgstr "Consulta en proceso. Espere."
+
+#: ../../include/class/WebServerModuleDebug.class.php:174
+msgid "No results"
+msgstr "No hay resultados"
+
+#: ../../include/class/WebServerModuleDebug.class.php:197
+msgid "Error performing execution"
+msgstr "Error al llevar a cabo la ejecución"
+
+#: ../../include/class/WebServerModuleDebug.class.php:229
+msgid "Please, wait for a first execution of module"
+msgstr "Espere a la primera ejecución del módulo"
+
+#: ../../include/class/WebServerModuleDebug.class.php:325
+#: ../../godmode/agentes/module_manager_editor_web.php:180
+msgid "Debug"
+msgstr "Depurar"
+
+#: ../../include/class/OrderInterpreter.class.php:105
+#: ../../enterprise/meta/monitoring/tactical.php:40
+msgid "Tactical View"
+msgstr "Vista táctica"
+
+#: ../../include/class/OrderInterpreter.class.php:123
+msgid "Agent Management"
+msgstr "Gestión de agentes"
+
+#: ../../include/class/OrderInterpreter.class.php:141 ../../godmode/menu.php:322
+msgid "General Setup"
+msgstr "Configuración general"
+
+#: ../../include/class/OrderInterpreter.class.php:157
+msgid "Manage Policies"
+msgstr "Gestionar políticas"
+
+#: ../../include/class/OrderInterpreter.class.php:171
+msgid "List Alerts"
+msgstr "Listar alertas"
+
+#: ../../include/class/OrderInterpreter.class.php:195
+msgid "View Events"
+msgstr "Ver eventos"
+
+#: ../../include/class/OrderInterpreter.class.php:247
+msgid "Manage Servers"
+msgstr "Gestionar servidores"
+
+#: ../../include/class/OrderInterpreter.class.php:261
+msgid "Edit User"
+msgstr "Editar usuario"
+
+#: ../../include/class/OrderInterpreter.class.php:271
+msgid "Tree View"
+msgstr "Vista de árbol"
+
+#: ../../include/class/OrderInterpreter.class.php:281
+msgid "Network Component"
+msgstr "Componente de red"
+
+#: ../../include/class/OrderInterpreter.class.php:295
+msgid "Task List"
+msgstr "Lista de tareas"
+
+#: ../../include/class/OrderInterpreter.class.php:339
+msgid "Update Manager"
+msgstr "Gestor de actualizaciones"
+
+#: ../../include/class/OrderInterpreter.class.php:353
+msgid "Manage Agent Groups"
+msgstr "Gestionar grupos de agentes"
+
+#: ../../include/class/OrderInterpreter.class.php:394
+msgid "GO TO "
+msgstr "IR A "
+
+#: ../../include/class/OrderInterpreter.class.php:423
+msgid "results found"
+msgstr "Resultados encontrados"
+
+#: ../../include/class/OrderInterpreter.class.php:427
+msgid "Press enter to search"
+msgstr "Búsqueda de texto libre"
+
+#: ../../include/class/AgentWizard.class.php:448
+msgid "There are not defined Remote components for this performance."
+msgstr "No hay componentes remotos definidos para esta acción"
+
+#: ../../include/class/AgentWizard.class.php:541
+#: ../../include/functions_snmp_browser.php:766
+#: ../../godmode/events/event_responses.editor.php:175
+msgid "Local console"
+msgstr "Consola local"
+
+#: ../../include/class/AgentWizard.class.php:567
+msgid "SNMP Walk"
+msgstr "Exploración SNMP"
+
+#: ../../include/class/AgentWizard.class.php:572
+msgid "WMI Explorer"
+msgstr "Buscador WMI"
+
+#: ../../include/class/AgentWizard.class.php:615
+#: ../../include/functions_snmp_browser.php:702
+#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:757
+#: ../../godmode/massive/massive_edit_modules.php:821
+#: ../../godmode/agentes/module_manager_editor_wmi.php:45
+#: ../../godmode/agentes/module_manager_editor_network.php:80
+msgid "Target IP"
+msgstr "IP objetivo"
+
+#: ../../include/class/AgentWizard.class.php:630
+#: ../../include/functions_config.php:1547
+#: ../../include/functions_snmp_browser.php:714
+#: ../../enterprise/views/ncm/agent/manage.php:118
+#: ../../enterprise/include/class/Aws.cloud.php:556
+#: ../../enterprise/include/class/Aws.S3.php:574
+#: ../../enterprise/include/class/VMware.app.php:632
+#: ../../enterprise/include/class/Azure.cloud.php:813
+#: ../../enterprise/godmode/setup/setup_history.php:174
+#: ../../enterprise/godmode/servers/manage_export_form.php:121
+#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1063
+#: ../../extensions/quick_shell.php:181
+#: ../../godmode/servers/modificar_server.php:84
+#: ../../godmode/modules/manage_network_components_form_network.php:53
+#: ../../godmode/massive/massive_edit_modules.php:1145
+#: ../../godmode/agentes/module_manager_editor_network.php:126
+msgid "Port"
+msgstr "Puerto"
+
+#: ../../include/class/AgentWizard.class.php:646
+msgid "namespace"
+msgstr "namespace"
+
+#: ../../include/class/AgentWizard.class.php:659
+#: ../../include/class/CredentialStore.class.php:957
+#: ../../enterprise/include/functions_ui.php:102
+#: ../../enterprise/godmode/setup/setup_module_library.php:49
+#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:849
+#: ../../extensions/quick_shell.php:174
+#: ../../godmode/modules/manage_network_components_form_wmi.php:47
+#: ../../godmode/massive/massive_edit_modules.php:906
+#: ../../godmode/agentes/module_manager_editor_wmi.php:103
+msgid "Username"
+msgstr "Usuario"
+
+#: ../../include/class/AgentWizard.class.php:688
+#: ../../godmode/events/event_responses.editor.php:192
+msgid "Server to execute command"
+msgstr "Servidor para ejecutar el comando"
+
+#: ../../include/class/AgentWizard.class.php:704
+#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:263
+#: ../../godmode/modules/manage_network_components_form_network.php:82
+#: ../../godmode/agentes/module_manager_editor_network.php:149
+msgid "SNMP community"
+msgstr "Comunidad SNMP"
+
+#: ../../include/class/AgentWizard.class.php:726
+#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:272
+#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:780
+#: ../../godmode/modules/manage_network_components_form_network.php:55
+#: ../../godmode/massive/massive_edit_modules.php:839
+#: ../../godmode/wizards/HostDevices.class.php:1199
+#: ../../godmode/agentes/module_manager_editor_network.php:180
+msgid "SNMP version"
+msgstr "Versión SNMP"
+
+#: ../../include/class/AgentWizard.class.php:801
+#: ../../include/functions_snmp_browser.php:890
+#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:360
+#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:812
+#: ../../godmode/modules/manage_network_components_form_network.php:161
+#: ../../godmode/massive/massive_edit_modules.php:869
+#: ../../godmode/wizards/HostDevices.class.php:1332
+#: ../../godmode/agentes/module_manager_editor_network.php:408
+msgid "Security level"
+msgstr "Nivel de seguridad"
+
+#: ../../include/class/AgentWizard.class.php:816
+msgid "User authentication"
+msgstr "Autenticación de usuario"
+
+#: ../../include/class/AgentWizard.class.php:831
+#: ../../include/functions_config.php:544
+#: ../../enterprise/meta/include/functions_meta.php:502
+#: ../../godmode/setup/setup_auth.php:440
+msgid "Authentication method"
+msgstr "Método de autentificación"
+
+#: ../../include/class/AgentWizard.class.php:845
+msgid "Password authentication"
+msgstr "Contraseña de autenticación"
+
+#: ../../include/class/AgentWizard.class.php:860
+#: ../../include/functions_snmp_browser.php:853
+#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:324
+#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:806
+#: ../../godmode/modules/manage_network_components_form_network.php:123
+#: ../../godmode/massive/massive_edit_modules.php:863
+#: ../../godmode/wizards/HostDevices.class.php:1286
+#: ../../godmode/agentes/module_manager_editor_network.php:369
+msgid "Privacy method"
+msgstr "Método de privacidad"
+
+#: ../../include/class/AgentWizard.class.php:874
+#: ../../include/functions_snmp_browser.php:867
+#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:808
+#: ../../godmode/modules/manage_network_components_form_network.php:136
+#: ../../godmode/massive/massive_edit_modules.php:865
+#: ../../godmode/wizards/HostDevices.class.php:1301
+#: ../../godmode/agentes/module_manager_editor_network.php:371
+msgid "Privacy pass"
+msgstr "Conexión privada"
+
+#: ../../include/class/AgentWizard.class.php:998
+#, php-format
+msgid "The PEN (%s) is not registered."
+msgstr "PEN (%s) no está registrado."
+
+#: ../../include/class/AgentWizard.class.php:1065
+msgid "The SNMP Walk does not return anything with the received arguments."
+msgstr "La pasarela SNMP no devuelve nada con los argumentos recibidos."
+
+#: ../../include/class/AgentWizard.class.php:1118
+#, php-format
+msgid "The target host response with an error: %s"
+msgstr "Respuesta del host objetivo con un error: %s"
+
+#: ../../include/class/AgentWizard.class.php:1168
+msgid "No selected modules"
+msgstr "No hay módulos seleccionados"
+
+#: ../../include/class/AgentWizard.class.php:1205
+msgid "Module exists in policy"
+msgstr "El módulo existe en la política"
+
+#: ../../include/class/AgentWizard.class.php:1215
+msgid "Module exists in agent"
+msgstr "El módulo existe en el agente"
+
+#: ../../include/class/AgentWizard.class.php:1222
+msgid "Module with the same name in the module creation list"
+msgstr "Módulo con el mismo nombre en la lista de creación de módulos"
+
+#: ../../include/class/AgentWizard.class.php:1252
+#: ../../include/functions_servers.php:738
+msgid "Enterprise Satellite server"
+msgstr "Servidor Enterprise Satélite"
+
+#: ../../include/class/AgentWizard.class.php:1262
+#: ../../include/functions_servers.php:608
+#: ../../include/functions_servers.php:1320
+#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:446
+msgid "Plugin server"
+msgstr "Servidor de plugins"
+
+#: ../../include/class/AgentWizard.class.php:1272
+#: ../../include/functions_servers.php:634
+#: ../../include/functions_servers.php:1326
+#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:491
+msgid "WMI server"
+msgstr "Servidor WMI"
+
+#: ../../include/class/AgentWizard.class.php:1281
+#: ../../include/functions_servers.php:569
+#: ../../include/functions_servers.php:1308
+#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:401
+msgid "Network server"
+msgstr "Servidor de red"
+
+#: ../../include/class/AgentWizard.class.php:1625
+#, php-format
+msgid "Module \"%s\" exits in this policy"
+msgstr "El módulo \"%s\" sale de esta política"
+
+#: ../../include/class/AgentWizard.class.php:1727
+#: ../../include/class/AgentWizard.class.php:2155
+#, php-format
+msgid "Module %s module_exec not configuration"
+msgstr "Módulo %s module_exec no configurado"
+
+#: ../../include/class/AgentWizard.class.php:1883
+#: ../../include/class/AgentWizard.class.php:2330
+#, php-format
+msgid "Module %s satellite execution not configuration"
+msgstr "No se ha configurado la ejecución del módulo %s del satélite"
+
+#: ../../include/class/AgentWizard.class.php:1975
+#, php-format
+msgid "Module \"%s\" problems insert in bbdd"
+msgstr "El módulo \"%s\" no se ha podido insertar en la base de datos"
+
+#: ../../include/class/AgentWizard.class.php:1983
+#: ../../include/class/AgentWizard.class.php:2413
+msgid "Modules created"
+msgstr "Módulos creados"
+
+#: ../../include/class/AgentWizard.class.php:2013
+#, php-format
+msgid "Module \"%s\" exists in this agent"
+msgstr "El módulo \"%s\" sale de este agente"
+
+#: ../../include/class/AgentWizard.class.php:2495
+#: ../../include/functions.php:2704
+#: ../../enterprise/operation/agentes/policy_view.php:184
+#: ../../enterprise/operation/agentes/policy_view.php:277
+#: ../../enterprise/operation/agentes/policy_view.php:570
+#: ../../enterprise/meta/monitoring/wizard/wizard.php:138
+#: ../../godmode/modules/manage_network_components_form_plugin.php:54
+#: ../../godmode/modules/manage_network_components_form_wmi.php:60
+#: ../../godmode/alerts/configure_alert_template.php:1288
+#: ../../godmode/alerts/alert_list.builder.php:293
+msgid "Empty"
+msgstr "Vacío"
+
+#: ../../include/class/AgentWizard.class.php:2604
+msgid "Select all filtered interfaces"
+msgstr "Seleccione todas las interfaces filtradas"
+
+#: ../../include/class/AgentWizard.class.php:2627
+msgid "OperStatus UP"
+msgstr "OperStatus UP"
+
+#: ../../include/class/AgentWizard.class.php:2638
+msgid "AdminStatus UP"
+msgstr "AdminStatus UP"
+
+#: ../../include/class/AgentWizard.class.php:3324
+msgid "No information could be retrieved."
+msgstr "No se ha podido obtener información"
+
+#: ../../include/class/AgentWizard.class.php:3608
+msgid "Create modules"
+msgstr "Crear módulos"
+
+#: ../../include/class/AgentWizard.class.php:3917
+msgid "Add general monitoring for all selected interfaces"
+msgstr "Añada monitorización general para todas las interfaces seleccionadas"
+
+#: ../../include/class/AgentWizard.class.php:3938
+#: ../../include/class/AgentWizard.class.php:3939
+#: ../../include/class/AgentWizard.class.php:3958
+#: ../../include/class/AgentWizard.class.php:3959
+msgid "Modules selected"
+msgstr "Módulos seleccionados"
+
+#: ../../include/class/AgentWizard.class.php:4027
+msgid "Module info"
+msgstr "Información del módulo"
+
+#: ../../include/class/AgentWizard.class.php:4056
+msgid "Current value"
+msgstr "Valor actual"
+
+#: ../../include/class/AgentWizard.class.php:5542
+#, 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:5957
+msgid "Modules about to be created"
+msgstr "Módulos a punto de ser creados"
 
 #: ../../include/class/WelcomeWindow.class.php:157
 msgid "Welcome to"
@@ -46394,617 +16265,728 @@ 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/Tree.class.php:775 ../../include/class/Tree.class.php:777
-msgid "Module alerts"
-msgstr "Alertas de módulo"
+#: ../../include/class/Diagnostics.class.php:144
+#: ../../enterprise/operation/reporting/custom_reporting.php:64
+#: ../../enterprise/godmode/reporting/reporting_builder.template.php:581
+msgid "Export to PDF"
+msgstr "Exportar a PDF"
 
-#: ../../include/class/CredentialStore.class.php:611
+#: ../../include/class/Diagnostics.class.php:157
 #, php-format
-msgid "Not a valid JSON: %s"
-msgstr "JSON no válido: %s"
+msgid "%s Diagnostic tool"
+msgstr "Herramienta de diagnóstico de %s"
 
-#: ../../include/class/CredentialStore.class.php:621
-msgid "Key identifier is required"
-msgstr "Se necesita identificador de clave"
-
-#: ../../include/class/CredentialStore.class.php:623
-msgid "You must select a group where store this key!"
-msgstr "Seleccione un grupo donde guardar esta clave"
-
-#: ../../include/class/CredentialStore.class.php:625
-msgid "You must specify a product type"
-msgstr "Especifique el tipo de producto"
-
-#: ../../include/class/CredentialStore.class.php:627
-msgid "You must specify a username and/or password"
-msgstr "Especifique el nombre de usuario y/o la contraseña"
-
-#: ../../include/class/CredentialStore.class.php:629
-msgid "Identifier with forbidden characters. Check the documentation."
-msgstr "Identificador con caracteres prohibidos. Consulte la documentación."
-
-#: ../../include/class/CredentialStore.class.php:742
-msgid "identifier cannot be empty"
-msgstr "El identificador no puede estar vacío"
-
-#: ../../include/class/CredentialStore.class.php:785
+#: ../../include/class/Diagnostics.class.php:222
 #, php-format
-msgid ""
-"Database encryption is not enabled. Credentials will be stored in plaintext. %s"
-msgstr ""
-"El cifrado de la base de datos no está disponible. Los credenciales se "
-"guardarán en texto sin formato. %s"
+msgid "Info status %s"
+msgstr "Información del estado de %s"
 
-#: ../../include/class/CredentialStore.class.php:804
-#: ../../include/class/CredentialStore.class.php:937
-msgid "Product"
-msgstr "Producto"
+#: ../../include/class/Diagnostics.class.php:226
+msgid "PHP setup"
+msgstr "Configuración PHP"
 
-#: ../../include/class/CredentialStore.class.php:869
-msgid "Add key"
-msgstr "Añadir clave"
+#: ../../include/class/Diagnostics.class.php:230 ../../godmode/db/db_main.php:98
+msgid "Database size stats"
+msgstr "Tamaño de estadísticas de la base de datos"
 
-#: ../../include/class/CredentialStore.class.php:960
-msgid "Extra (2)"
-msgstr "Extra (2)"
+#: ../../include/class/Diagnostics.class.php:234
+msgid "Database health status"
+msgstr "Estado de la base de datos"
 
-#: ../../include/class/CredentialStore.class.php:970
-#: ../../include/class/CredentialStore.class.php:1141
-msgid "Access key ID"
-msgstr "ID de la clave de accso"
+#: ../../include/class/Diagnostics.class.php:238
+msgid "Database status info"
+msgstr "Información sobre el estado de la base de datos"
 
-#: ../../include/class/CredentialStore.class.php:971
-#: ../../include/class/CredentialStore.class.php:1142
-msgid "Secret access key"
-msgstr "Clave de acceso secreta"
+#: ../../include/class/Diagnostics.class.php:242
+msgid "System Info"
+msgstr "Información de Sistema"
 
-#: ../../include/class/CredentialStore.class.php:977
-#: ../../include/class/CredentialStore.class.php:994
-msgid "Account ID"
-msgstr "ID de la cuenta"
+#: ../../include/class/Diagnostics.class.php:246
+msgid "MySQL Performance metrics"
+msgstr "Métricas de rendimiento de MySQL"
 
-#: ../../include/class/CredentialStore.class.php:978
-#: ../../include/class/CredentialStore.class.php:1149
-msgid "Application secret"
-msgstr "Secretos de aplicación"
+#: ../../include/class/Diagnostics.class.php:251
+#, php-format
+msgid "Tables fragmentation in the %s database"
+msgstr "Fragmentación de tablas de la base de datos de %s"
 
-#: ../../include/class/CredentialStore.class.php:979
-#: ../../include/class/CredentialStore.class.php:1150
-msgid "Tenant or domain name"
-msgstr "Propietario o nombre del dominio"
+#: ../../include/class/Diagnostics.class.php:257
+#, php-format
+msgid "%s logs dates"
+msgstr "Fechas de logs de %s"
 
-#: ../../include/class/CredentialStore.class.php:980
-#: ../../include/class/CredentialStore.class.php:1151
-msgid "Subscription id"
-msgstr "ID de la suscripción"
+#: ../../include/class/Diagnostics.class.php:261
+#, php-format
+msgid "%s Licence Information"
+msgstr "Información de la licencia %s"
 
-#: ../../include/class/CredentialStore.class.php:984
-#: ../../include/class/CredentialStore.class.php:1167
-msgid "Auth JSON"
-msgstr "Autenticación JSON"
+#: ../../include/class/Diagnostics.class.php:265
+#: ../../include/class/Diagnostics.class.php:1251
+msgid "Status of the attachment folder"
+msgstr "Estado de la carpeta de adjuntos"
 
-#: ../../include/class/CredentialStore.class.php:1148
-msgid "Client ID"
-msgstr "ID de cliente"
+#: ../../include/class/Diagnostics.class.php:269
+msgid "Information from the tagente_datos table"
+msgstr "Información dede la tabla de tagent_data"
 
-#: ../../include/class/CredentialStore.class.php:1157
-msgid "Account ID."
-msgstr "ID de la cuenta"
+#: ../../include/class/Diagnostics.class.php:273
+#, php-format
+msgid "%s server threads"
+msgstr "Hilos de servidor de %s"
 
-#: ../../include/class/CredentialStore.class.php:1243
-msgid "Register new key into keystore"
-msgstr "Registrar una clave nueva en el repositorio de claves"
+#: ../../include/class/Diagnostics.class.php:277
+msgid "SQL show engine innodb status"
+msgstr "SQL muestra el estado del motor innodb"
 
-#: ../../include/class/CredentialStore.class.php:1247
-msgid "Update key"
+#: ../../include/class/Diagnostics.class.php:325
+msgid "Graph of the Agents Unknown module."
+msgstr "Gráfica de los agentes con módulos desconocidos"
+
+#: ../../include/class/Diagnostics.class.php:332
+msgid "Graph of the Database Maintenance module."
+msgstr "Gráfica del módulo de mantenimiento de la base de datos"
+
+#: ../../include/class/Diagnostics.class.php:339
+msgid "Graph of the Free Disk Spool Dir module."
+msgstr "Gráfica del módulo Free Disk Spool Dir"
+
+#: ../../include/class/Diagnostics.class.php:345
+msgid "Graph of the Free RAM module."
+msgstr "Gráfica del módulo de RAM libre"
+
+#: ../../include/class/Diagnostics.class.php:351
+msgid "Graph of the Queued Modules module."
+msgstr "Gráfica del módulo de módulos encolados"
+
+#: ../../include/class/Diagnostics.class.php:357
+msgid "Graph of the Status module."
+msgstr "Gráfica del módulo de estado."
+
+#: ../../include/class/Diagnostics.class.php:363
+msgid "Graph of the System Load AVG module."
+msgstr "Gráfica del módulo System Load AVG."
+
+#: ../../include/class/Diagnostics.class.php:370
+msgid "Graph of the Execution Time module."
+msgstr "Gráfica del módulo de tiempo de ejecución."
+
+#: ../../include/class/Diagnostics.class.php:379
+msgid "Graphs modules that represent the self-monitoring system"
+msgstr "Gráficas de módulos que representan el sistema de auto-monitorización"
+
+#: ../../include/class/Diagnostics.class.php:436
+#, php-format
+msgid "%s Build"
+msgstr "Desarrollo %s"
+
+#: ../../include/class/Diagnostics.class.php:440
+#, php-format
+msgid "%s Version"
+msgstr "Versión %s"
+
+#: ../../include/class/Diagnostics.class.php:444
+msgid "Minor Release"
+msgstr "Actualización menor"
+
+#: ../../include/class/Diagnostics.class.php:448
+msgid "Homedir"
+msgstr "Homedir"
+
+#: ../../include/class/Diagnostics.class.php:452
+msgid "HomeUrl"
+msgstr "Homedir"
+
+#: ../../include/class/Diagnostics.class.php:456
+msgid "Enterprise installed"
+msgstr "Versión Enterprise instalada"
+
+#: ../../include/class/Diagnostics.class.php:457
+msgid "true"
+msgstr "verdadero"
+
+#: ../../include/class/Diagnostics.class.php:457
+msgid "false"
+msgstr "falso"
+
+#: ../../include/class/Diagnostics.class.php:460
+msgid "Update Key"
 msgstr "Actualizar clave"
 
-#: ../../include/class/ManageNetScanScripts.class.php:122
-msgid "Net scan scripts"
-msgstr "Guiones de escaneo de red"
+#: ../../include/class/Diagnostics.class.php:464
+msgid "Updating code path"
+msgstr "Actualizando ruta de código"
 
-#: ../../include/class/ManageNetScanScripts.class.php:223
-msgid "Problem creating"
-msgstr "Error al crear"
+#: ../../include/class/Diagnostics.class.php:468
+msgid "Current Update #"
+msgstr "Actualización actual #"
 
-#: ../../include/class/ManageNetScanScripts.class.php:234
-#: ../../include/class/ManageNetScanScripts.class.php:321
-msgid "Name or Script fullpath they can not be empty"
-msgstr "El nombre o ruta completa del guión no pueden estar vacíos"
+#: ../../include/class/Diagnostics.class.php:492
+msgid "PHP Version"
+msgstr "Versión PHP"
 
-#: ../../include/class/ManageNetScanScripts.class.php:255
-#: ../../include/class/ManageNetScanScripts.class.php:342
-msgid "Problem deleting Net scan Scripts, Not selected script"
-msgstr ""
-"Error al eliminar los scripts de escaneo de red. No hay scripts seleccionados"
+#: ../../include/class/Diagnostics.class.php:496
+msgid "PHP Max execution time"
+msgstr "Tiempo máx. de ejecución de PHP"
 
-#: ../../include/class/ManageNetScanScripts.class.php:310
-msgid "Problem updating"
-msgstr "Error al actualizar"
+#: ../../include/class/Diagnostics.class.php:500
+msgid "PHP Max input time"
+msgstr "Tiempo máx. de entrada de PHP"
 
-#: ../../include/class/ManageNetScanScripts.class.php:361
-msgid "Problem deleting Net scan Scripts"
-msgstr "Error al eliminar los scripts de escaneo de red"
+#: ../../include/class/Diagnostics.class.php:504
+msgid "PHP Memory limit"
+msgstr "Límite de memoria de PHP"
 
-#: ../../include/class/ManageNetScanScripts.class.php:366
-msgid "Deleted successfully"
-msgstr "Borrado correctamente"
+#: ../../include/class/Diagnostics.class.php:508
+msgid "Session cookie lifetime"
+msgstr "Vida de las cookies de sesión"
 
-#: ../../include/class/ManageNetScanScripts.class.php:439
-msgid "Are you sure delete script?"
-msgstr "¿Está seguro de que desea borrar el script?"
+#: ../../include/class/Diagnostics.class.php:557
+msgid "Total groups"
+msgstr "Grupos totales"
 
-#: ../../include/class/ManageNetScanScripts.class.php:459
-msgid "Delete Script"
-msgstr "Eliminar guión"
+#: ../../include/class/Diagnostics.class.php:561
+msgid "Total module data records"
+msgstr "Total de registros de datos de módulos"
 
-#: ../../include/class/ManageNetScanScripts.class.php:478
-msgid "There are no net scan scripts in the system"
-msgstr "No hay scripts de escaneo de red en el sistema"
+#: ../../include/class/Diagnostics.class.php:565
+msgid "Total agent access record"
+msgstr "Registro total de acceso de agentes"
 
-#: ../../include/class/ManageNetScanScripts.class.php:552
-msgid "Script fullpath"
-msgstr "Ruta completa del script"
+#: ../../include/class/Diagnostics.class.php:569
+#: ../../include/functions_reporting.php:13922 ../../godmode/db/db_main.php:108
+msgid "Total events"
+msgstr "Total de eventos"
 
-#: ../../include/class/ConfigPEN.class.php:428
-#: ../../include/class/ConfigPEN.class.php:597
-#: ../../include/class/ModuleTemplates.class.php:1074
-msgid "PEN"
-msgstr "PEN"
+#: ../../include/class/Diagnostics.class.php:573
+msgid "Total traps"
+msgstr "Traps totales"
 
-#: ../../include/class/ConfigPEN.class.php:435
-#: ../../include/class/ConfigPEN.class.php:598
-msgid "Manufacturer"
-msgstr "Fabricante"
+#: ../../include/class/Diagnostics.class.php:577
+msgid "Total users"
+msgstr "Usuarios totales"
 
-#: ../../include/class/ConfigPEN.class.php:483
-msgid "PEN is required"
-msgstr "Se requiere PEN"
+#: ../../include/class/Diagnostics.class.php:581
+msgid "Total sessions"
+msgstr "Sesiones totales"
 
-#: ../../include/class/ConfigPEN.class.php:509
-msgid "PEN is required."
-msgstr "Se requiere PEN"
+#: ../../include/class/Diagnostics.class.php:620
+msgid "Pandora DB has never been executed"
+msgstr "La base de datos de Pandora nunca se ha ejecutado"
 
-#: ../../include/class/ConfigPEN.class.php:513
-msgid "Manufacturer is required"
-msgstr "Se requiere fabricante"
+#: ../../include/class/Diagnostics.class.php:627
+msgid "Ago"
+msgstr "Desde hace"
 
-#: ../../include/class/ConfigPEN.class.php:530
-msgid "This PEN definition does not exist"
-msgstr "Esta definición de PEN no existe"
+#: ../../include/class/Diagnostics.class.php:634
+msgid "Total unknown agents"
+msgstr "Total de agentes desconocidos"
 
-#: ../../include/class/ConfigPEN.class.php:544
-msgid "created"
-msgstr "creado"
+#: ../../include/class/Diagnostics.class.php:638
+msgid "Total not-init modules"
+msgstr "Total de módulos no iniciados"
 
-#: ../../include/class/ConfigPEN.class.php:550
-msgid "This PEN definition already exists"
-msgstr "Esta definición PEN ya existe"
+#: ../../include/class/Diagnostics.class.php:642
+msgid "Pandora DB Last run"
+msgstr "Última ejecución de la base de datos de Pandora"
 
-#: ../../include/class/ConfigPEN.class.php:571
-#, php-format
-msgid "Succesfully %s"
-msgstr "Con éxito %s"
+#: ../../include/class/Diagnostics.class.php:674
+msgid "DB Schema Version (first installed)"
+msgstr "Versión del esquema de la base de datos (primera instalación)"
 
-#: ../../include/class/ConfigPEN.class.php:651
-msgid "Register manufacturer"
-msgstr "Registrar fabricante"
+#: ../../include/class/Diagnostics.class.php:678
+msgid "DB Schema Version (actual)"
+msgstr "Versión del esquema de la base de datos (actual)"
 
-#: ../../include/class/ConfigPEN.class.php:667
-msgid "Are you sure you want to delete this PEN?"
-msgstr "¿Está seguro de que quiere eliminar este PEN?"
+#: ../../include/class/Diagnostics.class.php:682
+msgid "DB Schema Build"
+msgstr "Desarrollo del esquema de la base de datos"
 
-#: ../../include/class/ConfigPEN.class.php:694
-msgid "Register new manufacturer"
-msgstr "Registrar nuevo fabricante"
+#: ../../include/class/Diagnostics.class.php:686
+msgid "DB Size"
+msgstr "Tamaño de la base de datos"
 
-#: ../../include/class/NetworkMap.class.php:2317
-msgid "Failed to generate dotmap, please select different layout schema"
-msgstr "No se ha podido generar dotmap, seleccione un formato diferente"
+#: ../../include/class/Diagnostics.class.php:722
+#: ../../enterprise/godmode/reporting/aws_view.php:54
+msgid "CPU"
+msgstr "CPU"
 
-#: ../../include/class/NetworkMap.class.php:2452
-msgid "Failed to retrieve graph data."
-msgstr "No se ha podido obtener datos de gráfica."
+#: ../../include/class/Diagnostics.class.php:726
+msgid "RAM"
+msgstr "RAM"
 
-#: ../../include/class/NetworkMap.class.php:2663
-msgid "Holding Area"
-msgstr "Búfer de procesamiento"
+#: ../../include/class/Diagnostics.class.php:730
+msgid "Os"
+msgstr "SO"
 
-#: ../../include/class/NetworkMap.class.php:2790
-#, php-format
-msgid "Edit node %s"
-msgstr "Modificar el nodo %s"
+#: ../../include/class/Diagnostics.class.php:734
+#: ../../include/class/Diagnostics.class.php:752
+#: ../../enterprise/tools/ipam/ipam_ajax.php:364
+#: ../../enterprise/tools/ipam/ipam_network.php:396
+#: ../../enterprise/include/functions_ipam.php:1648
+#: ../../enterprise/include/functions_ipam.php:1649
+#: ../../enterprise/include/functions_ipam.php:2037
+msgid "Hostname"
+msgstr "Nombre de host"
 
-#: ../../include/class/NetworkMap.class.php:2792
-msgid "Show details and options"
-msgstr "Mostrar detalles y opciones"
-
-#: ../../include/class/NetworkMap.class.php:2793
-msgid "Add a interface link"
-msgstr "Añadir enlace de interfaz"
-
-#: ../../include/class/NetworkMap.class.php:2794
-msgid "Set parent interface"
-msgstr "Establecer padre en la relación de interfaz"
-
-#: ../../include/class/NetworkMap.class.php:2795
-msgid "Set as children"
-msgstr "Establecer como hijo"
-
-#: ../../include/class/NetworkMap.class.php:2796
-msgid "Set parent"
-msgstr "Establecer como padre"
-
-#: ../../include/class/NetworkMap.class.php:2797
-#: ../../include/class/NetworkMap.class.php:2810
-msgid "Abort the action of set relationship"
-msgstr "Cancelar la acción de relacionar por parentesco"
-
-#: ../../include/class/NetworkMap.class.php:2799
-#: ../../include/class/NetworkMap.class.php:3155
-msgid "Add node"
-msgstr "Añadir nodo"
-
-#: ../../include/class/NetworkMap.class.php:2800
-msgid "Set center"
-msgstr "Fijar centro"
-
-#: ../../include/class/NetworkMap.class.php:2802
-msgid "Refresh Holding area"
-msgstr "Actualizar búfer de procesamiento"
-
-#: ../../include/class/NetworkMap.class.php:2803
-#: ../../include/class/NetworkMap.class.php:2806
-msgid "Proceed"
-msgstr "Proceder"
-
-#: ../../include/class/NetworkMap.class.php:2804
-msgid ""
-"Resetting the map will delete all customizations you have done, including "
-"manual relationships between elements, new items, etc."
-msgstr ""
-"Al resetear el mapa se borrarán todas las personalizaciones que hayas hecho, "
-"incluyendo las relaciones manuales entre elementos, nuevos elementos, etc."
-
-#: ../../include/class/NetworkMap.class.php:2808
-msgid "Restart map"
-msgstr "Resetear el mapa"
-
-#: ../../include/class/NetworkMap.class.php:2809
-msgid "Abort the interface relationship"
-msgstr "Abortar la relación de interfaz"
-
-#: ../../include/class/NetworkMap.class.php:2827
-#: ../../include/class/NetworkMap.class.php:2876
-msgid "Edit node"
-msgstr "Modificar nodo"
-
-#: ../../include/class/NetworkMap.class.php:2837
-#: ../../include/class/NetworkMap.class.php:2886
-msgid "Adresses"
-msgstr "Direcciones"
-
-#: ../../include/class/NetworkMap.class.php:2839
-#: ../../include/class/NetworkMap.class.php:2888
-msgid "OS type"
-msgstr "Tipo de SO"
-
-#: ../../include/class/NetworkMap.class.php:2846
-#: ../../include/class/NetworkMap.class.php:2847
-#: ../../include/class/NetworkMap.class.php:2895
-#: ../../include/class/NetworkMap.class.php:2896
-msgid "Node Details"
-msgstr "Detalles de nodo"
-
-#: ../../include/class/NetworkMap.class.php:2909
 #: ../../include/class/Diagnostics.class.php:738
 #: ../../include/class/Diagnostics.class.php:756
+#: ../../include/class/NetworkMap.class.php:2909
 msgid "Ip"
 msgstr "IP"
 
-#: ../../include/class/NetworkMap.class.php:2921
-#: ../../include/class/NetworkMap.class.php:2922
-msgid "Interface Information (SNMP)"
-msgstr "Información de interfaces (SNMP)"
+#: ../../include/class/Diagnostics.class.php:784
+msgid "InnoDB buffer pool size"
+msgstr "InnoDB buffer pool size"
 
-#: ../../include/class/NetworkMap.class.php:2933
-msgid "Shape"
-msgstr "Forma"
-
-#: ../../include/class/NetworkMap.class.php:2936
-msgid "Circle"
-msgstr "Círculo"
-
-#: ../../include/class/NetworkMap.class.php:2937
-msgid "Square"
-msgstr "Cuadrado"
-
-#: ../../include/class/NetworkMap.class.php:2938
-msgid "Rhombus"
-msgstr "Rombo"
-
-#: ../../include/class/NetworkMap.class.php:2951
-msgid "name node"
-msgstr "Nombrar nodo"
-
-#: ../../include/class/NetworkMap.class.php:2969
-#: ../../include/class/NetworkMap.class.php:3272
-msgid "name fictional node"
-msgstr "Nombre de nodo ficticio"
-
-#: ../../include/class/NetworkMap.class.php:2974
-#: ../../include/class/NetworkMap.class.php:3277
-msgid "Networkmap to link"
-msgstr "Enlace a mapa de red"
-
-#: ../../include/class/NetworkMap.class.php:2986
-msgid "Update fictional node"
-msgstr "Actualizar nodo ficticio"
-
-#: ../../include/class/NetworkMap.class.php:2996
-#: ../../include/class/NetworkMap.class.php:2997
-msgid "Node options"
-msgstr "Opciones de nodo"
-
-#: ../../include/class/NetworkMap.class.php:3008
-#: ../../include/class/NetworkMap.class.php:3101
-msgid "Node source"
-msgstr "Nodo origen"
-
-#: ../../include/class/NetworkMap.class.php:3009
-#: ../../include/class/NetworkMap.class.php:3102
-msgid "Interface source"
-msgstr "Interfaz origen"
-
-#: ../../include/class/NetworkMap.class.php:3010
-#: ../../include/class/NetworkMap.class.php:3103
-msgid "Interface Target"
-msgstr "Interfaz objetivo"
-
-#: ../../include/class/NetworkMap.class.php:3012
-#: ../../include/class/NetworkMap.class.php:3104
-msgid "Node target"
-msgstr "Nodo objetivo"
-
-#: ../../include/class/NetworkMap.class.php:3013
-msgid "E."
-msgstr "E."
-
-#: ../../include/class/NetworkMap.class.php:3075
-msgid "There are not relations"
-msgstr "No hay relaciones"
-
-#: ../../include/class/NetworkMap.class.php:3143
-msgid "Add interface link"
-msgstr "Añadir enlace de interfaz"
-
-#: ../../include/class/NetworkMap.class.php:3174
-#: ../../include/class/NetworkMap.class.php:3196
-#: ../../include/class/NetworkMap.class.php:3197
-#: ../../include/class/NetworkMap.class.php:3247
-#: ../../include/class/NetworkMap.class.php:3259
-#: ../../include/class/NetworkMap.class.php:3300
-msgid "Add agent node"
-msgstr "Añadir nodo de agente"
-
-#: ../../include/class/NetworkMap.class.php:3258
-msgid "Add agent node (filter by group)"
-msgstr "Añadir nodo de agente (filtro por grupo)"
-
-#: ../../include/class/NetworkMap.class.php:3289
-msgid "Add fictional node"
-msgstr "Añadir nodo ficticio"
-
-#: ../../include/class/NetworkMap.class.php:3299
-msgid "Add fictional point"
-msgstr "Añadir punto ficticio"
-
-#: ../../include/class/NetworkMap.class.php:3513
-msgid "Open Minimap"
-msgstr "Abrir Minimapa"
-
-#: ../../include/class/NetworkMap.class.php:3519
-msgid "Hide Labels"
-msgstr "Ocultar etiquetas"
-
-#: ../../include/class/AuditLog.class.php:136
+#: ../../include/class/Diagnostics.class.php:788
 #, php-format
-msgid "%s audit"
-msgstr "Auditoría %s"
-
-#: ../../include/class/AuditLog.class.php:136
-msgid "Review Logs"
-msgstr "Revisar logs"
-
-#: ../../include/class/AuditLog.class.php:149
-msgid "System Audit log"
-msgstr "Logs de auditoría del sistema"
-
-#: ../../include/class/ExternalTools.class.php:185
-msgid "Changes successfully saved."
-msgstr "Cambios guardados correctamente."
-
-#: ../../include/class/ExternalTools.class.php:186
-msgid "Changes not saved."
-msgstr "Cambios no guardados."
-
-#: ../../include/class/ExternalTools.class.php:233
-#: ../../include/class/ExternalTools.class.php:263
-#: ../../include/class/ExternalTools.class.php:293
-msgid "Play sound"
-msgstr "Reproducir sonido"
-
-#: ../../include/class/ExternalTools.class.php:313
-msgid "Traceroute path"
-msgstr "Ruta Traceroute"
-
-#: ../../include/class/ExternalTools.class.php:316
-msgid "Ping path"
-msgstr "Ruta al comando ping"
-
-#: ../../include/class/ExternalTools.class.php:319
-msgid "Nmap path"
-msgstr "Ruta Nmap"
-
-#: ../../include/class/ExternalTools.class.php:322
-msgid "Dig path"
-msgstr "Ruta Dig"
-
-#: ../../include/class/ExternalTools.class.php:325
-msgid "Snmpget path"
-msgstr "Ruta Snmpget"
-
-#: ../../include/class/ExternalTools.class.php:331
-msgid "Custom commands"
-msgstr "Comandos personalizados."
-
-#: ../../include/class/ExternalTools.class.php:342
-msgid "Add new custom command"
-msgstr "Añadir nuevo comando personalizado"
-
-#: ../../include/class/ExternalTools.class.php:354
-msgid "Adding `_address_` macro will use agent's IP when perform the execution"
-msgstr ""
-"Añadir la macro `_address_` utilizará la IP del agente cuando lleve a cabo la "
-"ejecución"
-
-#: ../../include/class/ExternalTools.class.php:438
-msgid "Delete this custom command"
-msgstr "Eliminar comando personalizado"
-
-#: ../../include/class/ExternalTools.class.php:486
-msgid "The agent doesn`t have an IP yet"
-msgstr "El agente aún no tiene una IP"
-
-#: ../../include/class/ExternalTools.class.php:508
-msgid "Traceroute"
-msgstr "Traceroute"
-
-#: ../../include/class/ExternalTools.class.php:509
-msgid "Ping host & Latency"
-msgstr "Ping host y Latencia"
-
-#: ../../include/class/ExternalTools.class.php:510
-msgid "SNMP Interface status"
-msgstr "Estado de la interfaz SNMP"
-
-#: ../../include/class/ExternalTools.class.php:511
-msgid "Basic TCP Port Scan"
-msgstr "Escaneo básico de puertos TCP"
-
-#: ../../include/class/ExternalTools.class.php:512
-msgid "DiG/Whois Lookup"
-msgstr "Búsqueda DiG/Whois"
-
-#: ../../include/class/ExternalTools.class.php:542
-msgid "IP Adress"
-msgstr "Dirección IP"
-
-#: ../../include/class/ExternalTools.class.php:554
-msgid "SNMP Version"
-msgstr "Versión SNMP"
-
-#: ../../include/class/ExternalTools.class.php:707
-msgid "Command not response"
-msgstr "Comando no responde"
-
-#: ../../include/class/ExternalTools.class.php:716
-msgid "The command failed and obtained the return code:"
-msgstr "El comando falló y obtuvo el código de retorno:"
-
-#: ../../include/class/ExternalTools.class.php:726
 msgid ""
-"Something went wrong while perform the execution. Please check the "
-"configuration."
+"It has to be 40% of the server memory not recommended to be greater or less"
 msgstr ""
-"Ha habido un error al llevar a cabo la ejecución. Revise la configuración."
+"Debe ser un 40% de la memoria del servidor. No se recomienda ningún otro "
+"porcentaje."
 
-#: ../../include/class/ExternalTools.class.php:763
-msgid "SNMP information for "
-msgstr "Información SNMP para "
+#: ../../include/class/Diagnostics.class.php:793
+msgid "InnoDB file per table"
+msgstr "Archivo InnoDB por tabla"
 
-#: ../../include/class/ExternalTools.class.php:768
-#: ../../include/class/ExternalTools.class.php:780
-msgid "Target unreachable."
-msgstr "Objetivo inaccesible."
+#: ../../include/class/Diagnostics.class.php:796
+#: ../../include/class/Diagnostics.class.php:868
+msgid "Recommended ON"
+msgstr "ON recomendado"
 
-#: ../../include/class/ExternalTools.class.php:771
-msgid "Uptime"
-msgstr "Tiempo en activo"
+#: ../../include/class/Diagnostics.class.php:800
+msgid "InnoDB flush log at trx-commit"
+msgstr "Log de InnoDB flush en trx-commit"
 
-#: ../../include/class/ExternalTools.class.php:783
-msgid "Device info"
-msgstr "Información del dispositivo"
-
-#: ../../include/class/ExternalTools.class.php:794
-msgid "Interface"
-msgstr "Interfaz"
-
-#: ../../include/class/ExternalTools.class.php:825
-msgid "Domain and IP information for "
-msgstr "Información de dominio e IP para "
-
-#: ../../include/class/ExternalTools.class.php:830
-msgid "Dig executable does not exist."
-msgstr "El ejecutable Dig no existe."
-
-#: ../../include/class/ExternalTools.class.php:838
-msgid "Whois executable does not exist."
-msgstr "El ejecutable Whois no existe."
-
-#: ../../include/class/ExternalTools.class.php:849
-msgid "Traceroute executable does not exist."
-msgstr "El ejecutable Traceroute no existe."
-
-#: ../../include/class/ExternalTools.class.php:852
+#: ../../include/class/Diagnostics.class.php:803
 #, php-format
-msgid "Traceroute to %s"
-msgstr "Traceroute a %s"
+msgid "Recommended Value %d"
+msgstr "Valor recomendado %d"
 
-#: ../../include/class/ExternalTools.class.php:860
-msgid "Ping executable does not exist."
-msgstr "El ejecutable Ping no existe."
+#: ../../include/class/Diagnostics.class.php:807
+msgid "InnoDB lock wait timeout"
+msgstr "Límite de tiempo de espera de InnoDB lock"
 
-#: ../../include/class/ExternalTools.class.php:863
+#: ../../include/class/Diagnostics.class.php:810
+#: ../../include/class/Diagnostics.class.php:817
+#: ../../include/class/Diagnostics.class.php:824
+#: ../../include/class/Diagnostics.class.php:831
+#: ../../include/class/Diagnostics.class.php:838
+#: ../../include/class/Diagnostics.class.php:847
+#: ../../include/class/Diagnostics.class.php:854
+#: ../../include/class/Diagnostics.class.php:861
+#: ../../include/class/Diagnostics.class.php:875
+#: ../../include/class/Diagnostics.class.php:882
+#: ../../include/class/Diagnostics.class.php:889
+#: ../../include/class/Diagnostics.class.php:903
+#: ../../include/class/Diagnostics.class.php:910
+msgid "Min. Recommended Value"
+msgstr "Valor mín. recomendado"
+
+#: ../../include/class/Diagnostics.class.php:814
+msgid "InnoDB log buffer size"
+msgstr "Tamaño del buffer del log de InnoDB"
+
+#: ../../include/class/Diagnostics.class.php:821
+msgid "InnoDB log file size"
+msgstr "Tamaño del archivo de log de InnoDB"
+
+#: ../../include/class/Diagnostics.class.php:828
+msgid "Maximun allowed packet"
+msgstr "Paquete máx. permitido"
+
+#: ../../include/class/Diagnostics.class.php:835
+msgid "Maximun connections"
+msgstr "Máx. de conexiones"
+
+#: ../../include/class/Diagnostics.class.php:840
+msgid "conections"
+msgstr "conexiones"
+
+#: ../../include/class/Diagnostics.class.php:844
+msgid "Query cache limit"
+msgstr "Limite del caché de consultas"
+
+#: ../../include/class/Diagnostics.class.php:851
+msgid "Query cache min-res-unit"
+msgstr "Caché de las consultas min-res-unit"
+
+#: ../../include/class/Diagnostics.class.php:858
+msgid "Query cache size"
+msgstr "Tamaño del caché de consultas"
+
+#: ../../include/class/Diagnostics.class.php:865
+msgid "Query cache type"
+msgstr "Tipo de caché de consultas"
+
+#: ../../include/class/Diagnostics.class.php:872
+msgid "Read buffer size"
+msgstr "Tamaño del buffer de lectura"
+
+#: ../../include/class/Diagnostics.class.php:879
+msgid "Read rnd-buffer size"
+msgstr "Tamaño del rnd-buffer de lectura"
+
+#: ../../include/class/Diagnostics.class.php:886
+msgid "Sort buffer size"
+msgstr "Clasificar los tamaños de buffer"
+
+#: ../../include/class/Diagnostics.class.php:893
+msgid "Sql mode"
+msgstr "Modo Sql"
+
+#: ../../include/class/Diagnostics.class.php:896
+msgid "Must be empty"
+msgstr "Debe estar vacío"
+
+#: ../../include/class/Diagnostics.class.php:900
+msgid "Thread cache size"
+msgstr "Tamaño del hilo del caché"
+
+#: ../../include/class/Diagnostics.class.php:907
+msgid "Thread stack"
+msgstr "Hilos acumulados"
+
+#: ../../include/class/Diagnostics.class.php:970
+msgid ""
+"Table fragmentation is higher than recommended. They should be defragmented."
+msgstr ""
+"La fragmentación de tablas es mayor de la recomendada. Deberían estar "
+"desfragmentadas."
+
+#: ../../include/class/Diagnostics.class.php:974
+msgid "Table fragmentation is correct."
+msgstr "La fragmentación de tablas es correcta."
+
+#: ../../include/class/Diagnostics.class.php:983
+msgid "Tables fragmentation (maximum recommended value)"
+msgstr "Fragmentación de tablas (valor recomendado máximo)"
+
+#: ../../include/class/Diagnostics.class.php:988
+msgid "Tables fragmentation (current value)"
+msgstr "Fragmentación de tablas (valor actual)"
+
+#: ../../include/class/Diagnostics.class.php:992
+msgid "Table fragmentation status"
+msgstr "Estado de fragmentación de tablas"
+
+#: ../../include/class/Diagnostics.class.php:1027
+msgid "Size server logs (current value)"
+msgstr "Logs del tamaño del servidor (valor actual)"
+
+#: ../../include/class/Diagnostics.class.php:1031
+msgid "Status server logs"
+msgstr "Logs del estado del servidor"
+
+#: ../../include/class/Diagnostics.class.php:1036
+msgid "Size error logs (current value)"
+msgstr "Logs de error de tamaño (valor actual)"
+
+#: ../../include/class/Diagnostics.class.php:1040
+msgid "Status error logs"
+msgstr "Logs de error de estado"
+
+#: ../../include/class/Diagnostics.class.php:1045
+msgid "Size console logs (current value)"
+msgstr "Logs del tamaño de la consola (valor actual)"
+
+#: ../../include/class/Diagnostics.class.php:1049
+msgid "Status console logs"
+msgstr "Logs del estado de la consola"
+
+#: ../../include/class/Diagnostics.class.php:1084
+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:1087
+msgid "License capacity exceeds 90 percent"
+msgstr "La capacidad de la licencia excede del 90 por ciento"
+
+#: ../../include/class/Diagnostics.class.php:1095
+msgid ""
+"The average of modules per agent is more than 40. You can have performance "
+"problems"
+msgstr ""
+"La media de módulos por agente es más de 40. Puede sufrir problemas de "
+"rendimiento"
+
+#: ../../include/class/Diagnostics.class.php:1100
+msgid "The average of modules per agent is less than 40"
+msgstr "La media de módulos por agente es menos de 40"
+
+#: ../../include/class/Diagnostics.class.php:1136
+msgid "The system has no load"
+msgstr "El sistema no tiene carga"
+
+#: ../../include/class/Diagnostics.class.php:1152
+#: ../../godmode/setup/license.php:129
+msgid "Customer key"
+msgstr "Clave del cliente"
+
+#: ../../include/class/Diagnostics.class.php:1156
+#: ../../enterprise/include/functions_license.php:120
+msgid "Support expires"
+msgstr "El soporte caduca"
+
+#: ../../include/class/Diagnostics.class.php:1160
+#: ../../godmode/setup/license.php:135
+msgid "Platform Limit"
+msgstr "Límite de la plataforma"
+
+#: ../../include/class/Diagnostics.class.php:1164
+#: ../../godmode/setup/license.php:138
+msgid "Current Platform Count"
+msgstr "Cómputo de la plataforma actual"
+
+#: ../../include/class/Diagnostics.class.php:1168
+#: ../../godmode/setup/license.php:141
+msgid "Current Platform Count (enabled: items)"
+msgstr "Cómputo de la plataforma actual (activado: elementos)"
+
+#: ../../include/class/Diagnostics.class.php:1172
+#: ../../godmode/setup/license.php:144
+msgid "Current Platform Count (disabled: items)"
+msgstr "Cómputo de la plataforma actual (desactivado: elementos)"
+
+#: ../../include/class/Diagnostics.class.php:1176
+#: ../../godmode/setup/license.php:147
+msgid "License Mode"
+msgstr "Modalidad de licencia"
+
+#: ../../include/class/Diagnostics.class.php:1180
+msgid "Network Management System"
+msgstr "Sistema de administración de la red"
+
+#: ../../include/class/Diagnostics.class.php:1181
+#: ../../include/class/Diagnostics.class.php:1185
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3328
+#: ../../enterprise/godmode/policies/policy_external_alerts.php:461
+#: ../../enterprise/godmode/policies/policy_alerts.php:430
+#: ../../godmode/alerts/alert_list.list.php:638
+msgid "On"
+msgstr "Activado"
+
+#: ../../include/class/Diagnostics.class.php:1181
+#: ../../include/class/Diagnostics.class.php:1185
+msgid "Off"
+msgstr "Apagado"
+
+#: ../../include/class/Diagnostics.class.php:1184
+#: ../../include/functions_ui.php:866 ../../godmode/setup/license.php:153
+#: ../../godmode/servers/modificar_server.php:42
+msgid "Satellite"
+msgstr "Satélite"
+
+#: ../../include/class/Diagnostics.class.php:1188
+#: ../../godmode/setup/license.php:156
+msgid "Licensed to"
+msgstr "Con licencia para"
+
+#: ../../include/class/Diagnostics.class.php:1192
+msgid "Status of agents capacity"
+msgstr "Estado de la capacidad de los agentes"
+
+#: ../../include/class/Diagnostics.class.php:1197
+msgid "Status of average modules per agent"
+msgstr "Estado de la media de módulos por agente"
+
+#: ../../include/class/Diagnostics.class.php:1203
+msgid "Interval average of the network modules"
+msgstr "Intervalo de media de los módulos de la red"
+
+#: ../../include/class/Diagnostics.class.php:1233
+msgid "The attached folder contains more than 700 files."
+msgstr "La carpeta adjunta contiene más de 700 archivos."
+
+#: ../../include/class/Diagnostics.class.php:1238
+msgid "The attached folder contains less than 700 files."
+msgstr "La carpeta adjunta contiene menos de 700 archivos."
+
+#: ../../include/class/Diagnostics.class.php:1247
+msgid "Total files in the attached folder"
+msgstr "Total de archivos en la carpeta adjunta"
+
+#: ../../include/class/Diagnostics.class.php:1277
+msgid ""
+"The tagente_datos table contains too much data. A historical database is "
+"recommended."
+msgstr ""
+"La tabla tagente_datos contiene demasiados datos. Se recomienda una base de "
+"datos histórica."
+
+#: ../../include/class/Diagnostics.class.php:1282
+msgid "The tagente_datos table contains an acceptable amount of data."
+msgstr "La tabla tagente_datos contiene una cantidad de datos aceptable"
+
+#: ../../include/class/Diagnostics.class.php:1291
+msgid "Total data in tagente_datos table"
+msgstr "Total de datos de la tabla tagente_datos"
+
+#: ../../include/class/Diagnostics.class.php:1295
+msgid "Tagente_datos table status"
+msgstr "Estado de la tabla tagente_datos"
+
+#: ../../include/class/Diagnostics.class.php:1331
+msgid "Threads"
+msgstr "Hilos"
+
+#: ../../include/class/Diagnostics.class.php:1341
+msgid "Total threads"
+msgstr "Total de hilos"
+
+#: ../../include/class/Diagnostics.class.php:1348
+msgid "Current pandora_server running threads"
+msgstr "Hilos pandora_server en ejecución actualmente"
+
+#: ../../include/class/Diagnostics.class.php:1352
+msgid ""
+"There's more pandora_server threads than configured, are you running multiple "
+"servers simultaneusly?."
+msgstr ""
+"Hay más hilos pandora_server de los configurados, ¿está ejecutando varios "
+"servidores a la vez?"
+
+#: ../../include/class/Diagnostics.class.php:1486
+msgid ""
+"Please check your Pandora Server setup and make sure that the database "
+"maintenance daemon is running."
+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:1490
+msgid ""
+"It' is very important to keep the database up-to-date to get the best "
+"performance and results in Pandora"
+msgstr ""
+"Es muy importante que la base de datos esté actualizada para conseguir un "
+"rendimiento y resultados óptimos en Pandora FMS"
+
+#: ../../include/class/Diagnostics.class.php:1752
+msgid "You have more than 10 MB of logs"
+msgstr "Tiene más de 10MB de registros"
+
+#: ../../include/class/Diagnostics.class.php:1755
+msgid "You have less than 10 MB of logs"
+msgstr "Tiene menos de 10MB de logs"
+
+#: ../../include/class/Diagnostics.class.php:1818
+#: ../../enterprise/include/class/CommandCenter.class.php:461
+#: ../../enterprise/include/functions_login.php:145
+msgid "Successfully"
+msgstr "Correcto"
+
+#: ../../include/class/Diagnostics.class.php:1910
+#: ../../update_manager_client/views/register.php:79
+msgid "Your email"
+msgstr "Su email"
+
+#: ../../include/class/Diagnostics.class.php:1922
+msgid "Include installation data"
+msgstr "Incluir datos de instalación"
+
+#: ../../include/class/Diagnostics.class.php:1959
+msgid "Hello Feedback-Men"
+msgstr "Hola Feedback-Men"
+
+#: ../../include/class/Diagnostics.class.php:1969
+msgid "Hello"
+msgstr "Hola"
+
+#: ../../include/class/Diagnostics.class.php:1973
 #, php-format
-msgid "Ping to %s"
-msgstr "Ping a %s"
+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/ExternalTools.class.php:871
-msgid "Nmap executable does not exist."
-msgstr "El ejecutable Nmap no existe."
+#: ../../include/class/Diagnostics.class.php:1982
+msgid "Find some files attached to this mail"
+msgstr "Encontrar archivos adjuntos a este correo"
 
-#: ../../include/class/ExternalTools.class.php:874
+#: ../../include/class/Diagnostics.class.php:1985
+msgid "PDF is the diagnostic information retrieved at report time"
+msgstr ""
+"El PDF es la información de diagnóstico obtenida en el momento del informe"
+
+#: ../../include/class/Diagnostics.class.php:1988
+msgid "CSV contains the statuses of every product file"
+msgstr "CSV contiene los estados de cada archivo de producto"
+
+#: ../../include/class/Diagnostics.class.php:1993
 #, php-format
-msgid "Basic TCP Scan on %s"
-msgstr "Escaneo básico TCP en %s"
+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/ExternalTools.class.php:892
+#: ../../include/class/Diagnostics.class.php:1997
+msgid "LEGAL WARNING"
+msgstr "AVISO LEGAL"
+
+#: ../../include/class/Diagnostics.class.php:1999
+msgid ""
+"The information contained in this transmission is privileged and confidential "
+"information intended only for the use of the individual or entity named above"
+msgstr ""
+"La información aquí incluida es privilegiada y confidencial, destinada al uso "
+"del individuo o la entidad arriba mencionada"
+
+#: ../../include/class/Diagnostics.class.php:2003
+msgid ""
+"If the reader of this message is not the intended recipient, you are hereby "
+"notified that any dissemination, distribution or copying of this communication "
+"is strictly prohibited"
+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:2007
+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:2011
+msgid ""
+"Please immediately reply to the sender that you have received this "
+"communication in error and then delete it"
+msgstr ""
+"Comuníquele al remitente que ha recibido esta comunicación por error y acto "
+"seguido elimínela"
+
+#: ../../include/class/Diagnostics.class.php:2090
+msgid "Invalid cron task"
+msgstr "Tarea cron no válida"
+
+#: ../../include/class/Diagnostics.class.php:2091
+msgid "Sending of information has been processed"
+msgstr "Se ha procesado el envío de información"
+
+#: ../../include/class/Diagnostics.class.php:2126
+#: ../../include/class/Diagnostics.class.php:2136
+msgid "Diagnostics Info"
+msgstr "Información de diagnóstico"
+
+#: ../../include/class/Diagnostics.class.php:2130
+#: ../../include/class/Diagnostics.class.php:2248
+#: ../../enterprise/include/functions_reporting_pdf.php:72
 #, php-format
-msgid "Performing %s execution on %s"
-msgstr "Llevando a cabo ejecución %s en %s"
+msgid "Automated %s report for user defined report"
+msgstr "Informe de %s automatizado para informe definido por el usuario"
 
-#: ../../include/class/ExternalTools.class.php:894
-#, php-format
-msgid "Performing %s execution"
-msgstr "Llevando a cabo ejecución %s"
+#: ../../include/class/Diagnostics.class.php:2175
+#: ../../include/functions_snmp_browser.php:880
+#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:350
+#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:811
+#: ../../godmode/modules/manage_network_components_form_network.php:151
+#: ../../godmode/massive/massive_edit_modules.php:868
+#: ../../godmode/wizards/HostDevices.class.php:1322
+#: ../../godmode/agentes/module_manager_editor_network.php:394
+msgid "MD5"
+msgstr "MD5"
 
-#: ../../include/class/CustomNetScan.class.php:369
-#: ../../include/class/CustomNetScan.class.php:394
-msgid "NetScan Custom"
-msgstr "Personalización NetScan"
-
-#: ../../include/class/CustomNetScan.class.php:611
-msgid "Recon script"
-msgstr "Recon script"
-
-#: ../../include/class/CustomNetScan.class.php:652
-msgid "Explanation"
-msgstr "Explicación"
-
-#: ../../include/class/CustomNetScan.class.php:668
-msgid "macro_desc"
-msgstr "macro_desc"
+#: ../../include/class/Diagnostics.class.php:2244
+#: ../../include/class/Diagnostics.class.php:2254
+msgid "PHP Info"
+msgstr "Información PHP"
 
 #: ../../include/class/ConsoleSupervisor.php:839
 msgid "Limited mode."
@@ -47473,10 +17455,25 @@ msgstr ""
 "Hay una o más releases menores disponibles, <a id=\"aviable_updates\" target="
 "\"blank\" href=\"%s\">.Sobre la actualización menor</a>."
 
+#: ../../include/class/ConsoleSupervisor.php:2376
+#: ../../enterprise/include/functions_tasklist.php:56
+msgid "DiscoveryConsoleTasks is not running properly"
+msgstr "DiscoveryConsoleTasks no funciona adecuadamente"
+
 #: ../../include/class/ConsoleSupervisor.php:2378
 msgid "Discovery relies on an appropriate cron setup."
 msgstr "Discovery depende de la configuración cron adecuada"
 
+#: ../../include/class/ConsoleSupervisor.php:2379
+#: ../../enterprise/include/functions_tasklist.php:59
+msgid "Please, add the following line to your crontab file:"
+msgstr "Añada la siguiente línea a su archivo crontab:"
+
+#: ../../include/class/ConsoleSupervisor.php:2392
+#: ../../enterprise/include/functions_tasklist.php:74
+msgid "Last execution"
+msgstr "Última ejecución"
+
 #: ../../include/class/ConsoleSupervisor.php:2394
 msgid "Please, make sure process is not locked."
 msgstr "Asegúrese de que el proceso no está bloqueado."
@@ -47567,6 +17564,705 @@ msgstr ""
 "Los %s nodos no pueden procesar la cola de sincronización debido %s, verifique "
 "el estado de la cola."
 
+#: ../../include/class/HTML.class.php:419
+#: ../../include/class/CustomNetScan.class.php:314
+#: ../../include/class/CustomNetScan.class.php:422
+#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:356
+#: ../../enterprise/include/class/Aws.cloud.php:1126
+#: ../../enterprise/include/class/MySQL.app.php:371
+#: ../../enterprise/include/class/Oracle.app.php:361
+#: ../../enterprise/include/class/DB2.app.php:354
+#: ../../enterprise/include/class/SAP.app.php:401
+#: ../../enterprise/include/class/Omnishell.class.php:630
+#: ../../enterprise/include/class/Omnishell.class.php:980
+#: ../../enterprise/include/class/Omnishell.class.php:1349
+#: ../../enterprise/include/class/VMware.app.php:455
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:285
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:339
+#: ../../enterprise/include/class/Azure.cloud.php:689
+#: ../../enterprise/include/class/Google.cloud.php:686
+#: ../../enterprise/include/lib/ClusterViewer/ClusterWizard.php:349
+#: ../../enterprise/include/lib/ClusterViewer/ClusterManager.php:752
+#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:469
+#: ../../godmode/modules/manage_network_components_form.php:367
+#: ../../godmode/reporting/graph_builder.main.php:308
+#: ../../godmode/wizards/HostDevices.class.php:648
+#: ../../godmode/wizards/HostDevices.class.php:747
+#: ../../godmode/wizards/Wizard.main.php:416
+#: ../../godmode/wizards/DiscoveryTaskList.class.php:181
+msgid "Go back"
+msgstr "Volver"
+
+#: ../../include/class/ExternalTools.class.php:185
+msgid "Changes successfully saved."
+msgstr "Cambios guardados correctamente."
+
+#: ../../include/class/ExternalTools.class.php:186
+msgid "Changes not saved."
+msgstr "Cambios no guardados."
+
+#: ../../include/class/ExternalTools.class.php:213
+#: ../../include/functions_config.php:263
+msgid "Sound for Alert fired"
+msgstr "Sonido para alertas disparadas"
+
+#: ../../include/class/ExternalTools.class.php:233
+#: ../../include/class/ExternalTools.class.php:263
+#: ../../include/class/ExternalTools.class.php:293
+msgid "Play sound"
+msgstr "Reproducir sonido"
+
+#: ../../include/class/ExternalTools.class.php:243
+#: ../../include/functions_config.php:267
+msgid "Sound for Monitor critical"
+msgstr "Sonido para monitores en estado crítico"
+
+#: ../../include/class/ExternalTools.class.php:273
+#: ../../include/functions_config.php:271
+msgid "Sound for Monitor warning"
+msgstr "Sonido para monitores en estado de advertencia"
+
+#: ../../include/class/ExternalTools.class.php:303
+#: ../../include/functions_config.php:1251
+msgid "Custom graphviz directory"
+msgstr "Directorio personalizado graphviz"
+
+#: ../../include/class/ExternalTools.class.php:313
+msgid "Traceroute path"
+msgstr "Ruta Traceroute"
+
+#: ../../include/class/ExternalTools.class.php:316
+msgid "Ping path"
+msgstr "Ruta al comando ping"
+
+#: ../../include/class/ExternalTools.class.php:319
+msgid "Nmap path"
+msgstr "Ruta Nmap"
+
+#: ../../include/class/ExternalTools.class.php:322
+msgid "Dig path"
+msgstr "Ruta Dig"
+
+#: ../../include/class/ExternalTools.class.php:325
+msgid "Snmpget path"
+msgstr "Ruta Snmpget"
+
+#: ../../include/class/ExternalTools.class.php:331
+msgid "Custom commands"
+msgstr "Comandos personalizados."
+
+#: ../../include/class/ExternalTools.class.php:342
+msgid "Add new custom command"
+msgstr "Añadir nuevo comando personalizado"
+
+#: ../../include/class/ExternalTools.class.php:354
+msgid "Adding `_address_` macro will use agent's IP when perform the execution"
+msgstr ""
+"Añadir la macro `_address_` utilizará la IP del agente cuando lleve a cabo la "
+"ejecución"
+
+#: ../../include/class/ExternalTools.class.php:438
+msgid "Delete this custom command"
+msgstr "Eliminar comando personalizado"
+
+#: ../../include/class/ExternalTools.class.php:486
+msgid "The agent doesn`t have an IP yet"
+msgstr "El agente aún no tiene una IP"
+
+#: ../../include/class/ExternalTools.class.php:508
+msgid "Traceroute"
+msgstr "Traceroute"
+
+#: ../../include/class/ExternalTools.class.php:509
+msgid "Ping host & Latency"
+msgstr "Ping host y Latencia"
+
+#: ../../include/class/ExternalTools.class.php:510
+msgid "SNMP Interface status"
+msgstr "Estado de la interfaz SNMP"
+
+#: ../../include/class/ExternalTools.class.php:511
+msgid "Basic TCP Port Scan"
+msgstr "Escaneo básico de puertos TCP"
+
+#: ../../include/class/ExternalTools.class.php:512
+msgid "DiG/Whois Lookup"
+msgstr "Búsqueda DiG/Whois"
+
+#: ../../include/class/ExternalTools.class.php:530
+#: ../../include/functions_menu.php:597
+#: ../../include/functions_reporting_html.php:2179
+#: ../../include/functions_reporting_html.php:4643
+#: ../../enterprise/include/functions_reporting_csv.php:1014
+#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:155
+#: ../../enterprise/include/class/CommandCenter.class.php:451
+#: ../../enterprise/meta/include/functions_autoprovision.php:641
+#: ../../enterprise/meta/advanced/policymanager.queue.php:214
+#: ../../enterprise/meta/advanced/policymanager.queue.php:259
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3740
+#: ../../enterprise/godmode/reporting/reporting_builder.global.php:223
+#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:374
+#: ../../enterprise/godmode/policies/policy_queue.php:605
+#: ../../enterprise/godmode/policies/policy_queue.php:649
+#: ../../extensions/api_checker.php:156 ../../godmode/extensions.php:148
+#: ../../godmode/reporting/reporting_builder.item_editor.php:4312
+msgid "Operation"
+msgstr "Operación"
+
+#: ../../include/class/ExternalTools.class.php:537
+#: ../../enterprise/views/ncm/agent/details.php:256
+#: ../../enterprise/views/ncm/agent/manage.php:135
+#: ../../enterprise/views/ncm/agent/manage.php:148
+#: ../../enterprise/views/ncm/agent/manage.php:181
+#: ../../enterprise/views/ncm/agent/manage.php:274
+#: ../../enterprise/views/ncm/agent/manage.php:309
+#: ../../enterprise/views/ncm/snippets/edit.php:138
+#: ../../enterprise/views/ncm/templates/edit.php:347
+#: ../../enterprise/godmode/massive/massive_edit_service_elements.php:230
+#: ../../enterprise/godmode/massive/massive_delete_service_elements.php:188
+#: ../../enterprise/godmode/massive/massive_add_service_elements.php:329
+msgid "Please select"
+msgstr "Seleccione"
+
+#: ../../include/class/ExternalTools.class.php:542
+msgid "IP Adress"
+msgstr "Dirección IP"
+
+#: ../../include/class/ExternalTools.class.php:554
+msgid "SNMP Version"
+msgstr "Versión SNMP"
+
+#: ../../include/class/ExternalTools.class.php:570
+#: ../../enterprise/meta/include/functions_wizard_meta.php:967
+#: ../../enterprise/meta/include/functions_wizard_meta.php:1484
+msgid "SNMP Community"
+msgstr "Comunidad SNMP"
+
+#: ../../include/class/ExternalTools.class.php:707
+msgid "Command not response"
+msgstr "Comando no responde"
+
+#: ../../include/class/ExternalTools.class.php:716
+msgid "The command failed and obtained the return code:"
+msgstr "El comando falló y obtuvo el código de retorno:"
+
+#: ../../include/class/ExternalTools.class.php:726
+msgid ""
+"Something went wrong while perform the execution. Please check the "
+"configuration."
+msgstr ""
+"Ha habido un error al llevar a cabo la ejecución. Revise la configuración."
+
+#: ../../include/class/ExternalTools.class.php:750
+#: ../../godmode/agentes/configurar_agente.php:885
+#: ../../godmode/agentes/configurar_agente.php:1035
+msgid "The ip or dns name entered cannot be resolved"
+msgstr "La IP o nombre del DNS no se puede resolver"
+
+#: ../../include/class/ExternalTools.class.php:763
+msgid "SNMP information for "
+msgstr "Información SNMP para "
+
+#: ../../include/class/ExternalTools.class.php:768
+#: ../../include/class/ExternalTools.class.php:780
+msgid "Target unreachable."
+msgstr "Objetivo inaccesible."
+
+#: ../../include/class/ExternalTools.class.php:771
+msgid "Uptime"
+msgstr "Tiempo en activo"
+
+#: ../../include/class/ExternalTools.class.php:783
+msgid "Device info"
+msgstr "Información del dispositivo"
+
+#: ../../include/class/ExternalTools.class.php:794
+msgid "Interface"
+msgstr "Interfaz"
+
+#: ../../include/class/ExternalTools.class.php:825
+msgid "Domain and IP information for "
+msgstr "Información de dominio e IP para "
+
+#: ../../include/class/ExternalTools.class.php:830
+msgid "Dig executable does not exist."
+msgstr "El ejecutable Dig no existe."
+
+#: ../../include/class/ExternalTools.class.php:838
+msgid "Whois executable does not exist."
+msgstr "El ejecutable Whois no existe."
+
+#: ../../include/class/ExternalTools.class.php:849
+msgid "Traceroute executable does not exist."
+msgstr "El ejecutable Traceroute no existe."
+
+#: ../../include/class/ExternalTools.class.php:852
+#, php-format
+msgid "Traceroute to %s"
+msgstr "Traceroute a %s"
+
+#: ../../include/class/ExternalTools.class.php:860
+msgid "Ping executable does not exist."
+msgstr "El ejecutable Ping no existe."
+
+#: ../../include/class/ExternalTools.class.php:863
+#, php-format
+msgid "Ping to %s"
+msgstr "Ping a %s"
+
+#: ../../include/class/ExternalTools.class.php:871
+msgid "Nmap executable does not exist."
+msgstr "El ejecutable Nmap no existe."
+
+#: ../../include/class/ExternalTools.class.php:874
+#, php-format
+msgid "Basic TCP Scan on %s"
+msgstr "Escaneo básico TCP en %s"
+
+#: ../../include/class/ExternalTools.class.php:892
+#, php-format
+msgid "Performing %s execution on %s"
+msgstr "Llevando a cabo ejecución %s en %s"
+
+#: ../../include/class/ExternalTools.class.php:894
+#, php-format
+msgid "Performing %s execution"
+msgstr "Llevando a cabo ejecución %s"
+
+#: ../../include/class/ConfigPEN.class.php:337
+#: ../../include/class/ConfigPEN.class.php:345 ../../godmode/menu.php:151
+msgid "Private Enterprise Numbers"
+msgstr "Números privados de empresa"
+
+#: ../../include/class/ConfigPEN.class.php:435
+#: ../../include/class/ConfigPEN.class.php:598
+msgid "Manufacturer"
+msgstr "Fabricante"
+
+#: ../../include/class/ConfigPEN.class.php:483
+msgid "PEN is required"
+msgstr "Se requiere PEN"
+
+#: ../../include/class/ConfigPEN.class.php:509
+msgid "PEN is required."
+msgstr "Se requiere PEN"
+
+#: ../../include/class/ConfigPEN.class.php:513
+msgid "Manufacturer is required"
+msgstr "Se requiere fabricante"
+
+#: ../../include/class/ConfigPEN.class.php:530
+msgid "This PEN definition does not exist"
+msgstr "Esta definición de PEN no existe"
+
+#: ../../include/class/ConfigPEN.class.php:544
+msgid "created"
+msgstr "creado"
+
+#: ../../include/class/ConfigPEN.class.php:550
+msgid "This PEN definition already exists"
+msgstr "Esta definición PEN ya existe"
+
+#: ../../include/class/ConfigPEN.class.php:564
+#: ../../enterprise/godmode/massive/massive_edit_service_elements.php:172
+msgid "updated"
+msgstr "actualizado"
+
+#: ../../include/class/ConfigPEN.class.php:571
+#, php-format
+msgid "Succesfully %s"
+msgstr "Con éxito %s"
+
+#: ../../include/class/ConfigPEN.class.php:651
+msgid "Register manufacturer"
+msgstr "Registrar fabricante"
+
+#: ../../include/class/ConfigPEN.class.php:667
+msgid "Are you sure you want to delete this PEN?"
+msgstr "¿Está seguro de que quiere eliminar este PEN?"
+
+#: ../../include/class/ConfigPEN.class.php:694
+msgid "Register new manufacturer"
+msgstr "Registrar nuevo fabricante"
+
+#: ../../include/class/CredentialStore.class.php:611
+#, php-format
+msgid "Not a valid JSON: %s"
+msgstr "JSON no válido: %s"
+
+#: ../../include/class/CredentialStore.class.php:621
+msgid "Key identifier is required"
+msgstr "Se necesita identificador de clave"
+
+#: ../../include/class/CredentialStore.class.php:623
+msgid "You must select a group where store this key!"
+msgstr "Seleccione un grupo donde guardar esta clave"
+
+#: ../../include/class/CredentialStore.class.php:625
+msgid "You must specify a product type"
+msgstr "Especifique el tipo de producto"
+
+#: ../../include/class/CredentialStore.class.php:627
+msgid "You must specify a username and/or password"
+msgstr "Especifique el nombre de usuario y/o la contraseña"
+
+#: ../../include/class/CredentialStore.class.php:629
+msgid "Identifier with forbidden characters. Check the documentation."
+msgstr "Identificador con caracteres prohibidos. Consulte la documentación."
+
+#: ../../include/class/CredentialStore.class.php:742
+msgid "identifier cannot be empty"
+msgstr "El identificador no puede estar vacío"
+
+#: ../../include/class/CredentialStore.class.php:747
+#: ../../enterprise/include/class/LogSource.class.php:567
+msgid "Not allowed"
+msgstr "No permitido"
+
+#: ../../include/class/CredentialStore.class.php:786
+#: ../../enterprise/include/class/LogSource.class.php:611
+msgid "How to configure encryption."
+msgstr "Como configurar el cifrado."
+
+#: ../../include/class/CredentialStore.class.php:785
+#, php-format
+msgid ""
+"Database encryption is not enabled. Credentials will be stored in plaintext. %s"
+msgstr ""
+"El cifrado de la base de datos no está disponible. Los credenciales se "
+"guardarán en texto sin formato. %s"
+
+#: ../../include/class/CredentialStore.class.php:803
+#: ../../include/class/CredentialStore.class.php:911
+#: ../../enterprise/views/ncm/firmwares/list.php:74
+#: ../../enterprise/include/class/Omnishell.class.php:398
+msgid "Identifier"
+msgstr "Identificador"
+
+#: ../../include/class/CredentialStore.class.php:804
+#: ../../include/class/CredentialStore.class.php:937
+msgid "Product"
+msgstr "Producto"
+
+#: ../../include/class/CredentialStore.class.php:869
+msgid "Add key"
+msgstr "Añadir clave"
+
+#: ../../include/class/CredentialStore.class.php:946
+#: ../../enterprise/include/class/Aws.cloud.php:118
+msgid "Aws"
+msgstr "Aws"
+
+#: ../../include/class/CredentialStore.class.php:947
+#: ../../enterprise/include/class/Azure.cloud.php:153
+msgid "Azure"
+msgstr "Azure"
+
+#: ../../include/class/CredentialStore.class.php:948
+#: ../../enterprise/include/class/SAPView.class.php:621
+#: ../../enterprise/include/class/SAPView.class.php:624
+#: ../../enterprise/godmode/menu.php:177
+msgid "SAP"
+msgstr "SAP"
+
+#: ../../include/class/CredentialStore.class.php:949
+#: ../../enterprise/include/class/Google.cloud.php:147
+msgid "Google"
+msgstr "Google"
+
+#: ../../include/class/CredentialStore.class.php:959
+#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:377
+msgid "Extra"
+msgstr "Extra"
+
+#: ../../include/class/CredentialStore.class.php:960
+msgid "Extra (2)"
+msgstr "Extra (2)"
+
+#: ../../include/class/CredentialStore.class.php:970
+#: ../../include/class/CredentialStore.class.php:1141
+msgid "Access key ID"
+msgstr "ID de la clave de accso"
+
+#: ../../include/class/CredentialStore.class.php:971
+#: ../../include/class/CredentialStore.class.php:1142
+msgid "Secret access key"
+msgstr "Clave de acceso secreta"
+
+#: ../../include/class/CredentialStore.class.php:977
+#: ../../include/class/CredentialStore.class.php:994
+msgid "Account ID"
+msgstr "ID de la cuenta"
+
+#: ../../include/class/CredentialStore.class.php:978
+#: ../../include/class/CredentialStore.class.php:1149
+msgid "Application secret"
+msgstr "Secretos de aplicación"
+
+#: ../../include/class/CredentialStore.class.php:979
+#: ../../include/class/CredentialStore.class.php:1150
+msgid "Tenant or domain name"
+msgstr "Propietario o nombre del dominio"
+
+#: ../../include/class/CredentialStore.class.php:980
+#: ../../include/class/CredentialStore.class.php:1151
+msgid "Subscription id"
+msgstr "ID de la suscripción"
+
+#: ../../include/class/CredentialStore.class.php:984
+#: ../../include/class/CredentialStore.class.php:1167
+msgid "Auth JSON"
+msgstr "Autenticación JSON"
+
+#: ../../include/class/CredentialStore.class.php:1148
+msgid "Client ID"
+msgstr "ID de cliente"
+
+#: ../../include/class/CredentialStore.class.php:1157
+msgid "Account ID."
+msgstr "ID de la cuenta"
+
+#: ../../include/class/CredentialStore.class.php:1243
+msgid "Register new key into keystore"
+msgstr "Registrar una clave nueva en el repositorio de claves"
+
+#: ../../include/class/CredentialStore.class.php:1247
+msgid "Update key"
+msgstr "Actualizar clave"
+
+#: ../../include/class/CustomNetScan.class.php:134
+#: ../../enterprise/include/class/Aws.cloud.php:886
+#: ../../enterprise/include/class/Aws.S3.php:166
+msgid "This task has been already defined. Please edit it or create a new one."
+msgstr "La tarea ya se ha definido. Edite o cree una nueva."
+
+#: ../../include/class/CustomNetScan.class.php:158
+#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:193
+#: ../../enterprise/include/class/Aws.cloud.php:907
+#: ../../enterprise/include/class/MySQL.app.php:196
+#: ../../enterprise/include/class/Oracle.app.php:194
+#: ../../enterprise/include/class/DB2.app.php:187
+#: ../../enterprise/include/class/SAP.app.php:175
+#: ../../enterprise/include/class/VMware.app.php:254
+#: ../../enterprise/include/class/Azure.cloud.php:420
+#: ../../enterprise/include/class/Google.cloud.php:423
+#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:139
+#: ../../godmode/wizards/HostDevices.class.php:412
+msgid "You have no access to edit this task."
+msgstr "No tiene permisos para editar esta tarea."
+
+#: ../../include/class/CustomNetScan.class.php:168
+#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:203
+#: ../../enterprise/include/class/Aws.cloud.php:917
+#: ../../enterprise/include/class/Aws.S3.php:183
+#: ../../enterprise/include/class/MySQL.app.php:206
+#: ../../enterprise/include/class/Oracle.app.php:204
+#: ../../enterprise/include/class/DB2.app.php:197
+#: ../../enterprise/include/class/SAP.app.php:185
+#: ../../enterprise/include/class/VMware.app.php:264
+#: ../../godmode/wizards/HostDevices.class.php:422
+msgid "You must provide a task name."
+msgstr "Añada un nombre a la tarea"
+
+#: ../../include/class/CustomNetScan.class.php:173
+#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:208
+#: ../../enterprise/include/class/Aws.cloud.php:922
+#: ../../enterprise/include/class/Aws.S3.php:188
+#: ../../enterprise/include/class/MySQL.app.php:211
+#: ../../enterprise/include/class/Oracle.app.php:209
+#: ../../enterprise/include/class/DB2.app.php:202
+#: ../../enterprise/include/class/SAP.app.php:190
+#: ../../enterprise/include/class/VMware.app.php:269
+#: ../../godmode/wizards/HostDevices.class.php:427
+msgid "You must select a Discovery Server."
+msgstr "Seleccione un servidor de Discovery"
+
+#: ../../include/class/CustomNetScan.class.php:178
+#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:218
+#: ../../enterprise/include/class/Aws.cloud.php:927
+#: ../../enterprise/include/class/Aws.S3.php:193
+#: ../../enterprise/include/class/MySQL.app.php:226
+#: ../../enterprise/include/class/Oracle.app.php:219
+#: ../../enterprise/include/class/DB2.app.php:212
+#: ../../enterprise/include/class/SAP.app.php:200
+#: ../../enterprise/include/class/VMware.app.php:279
+#: ../../godmode/wizards/HostDevices.class.php:438
+msgid "You must select a valid group."
+msgstr "Seleccione un grupo válido."
+
+#: ../../include/class/CustomNetScan.class.php:222
+#: ../../godmode/wizards/HostDevices.class.php:483
+#: ../../godmode/wizards/HostDevices.class.php:595
+msgid "Failed to find network scan task."
+msgstr "No se ha encontrado tarea de escaneo de red."
+
+#: ../../include/class/CustomNetScan.class.php:369
+#: ../../include/class/CustomNetScan.class.php:394
+msgid "NetScan Custom"
+msgstr "Personalización NetScan"
+
+#: ../../include/class/CustomNetScan.class.php:403
+#: ../../godmode/wizards/HostDevices.class.php:728
+msgid "Internal error, please re-run this wizard."
+msgstr "Error interno, vuelva a ejecutar el asistente."
+
+#: ../../include/class/CustomNetScan.class.php:446
+#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:439
+#: ../../enterprise/include/class/Aws.cloud.php:1201
+#: ../../enterprise/include/class/Aws.S3.php:401
+#: ../../enterprise/include/class/MySQL.app.php:442
+#: ../../enterprise/include/class/Oracle.app.php:444
+#: ../../enterprise/include/class/DB2.app.php:437
+#: ../../enterprise/include/class/SAP.app.php:469
+#: ../../enterprise/include/class/VMware.app.php:583
+#: ../../enterprise/include/class/Azure.cloud.php:771
+#: ../../enterprise/include/class/Google.cloud.php:759
+#: ../../godmode/wizards/HostDevices.class.php:838
+#: ../../godmode/wizards/DiscoveryTaskList.class.php:588
+msgid "Task name"
+msgstr "Nombre de la tarea"
+
+#: ../../include/class/CustomNetScan.class.php:480
+#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:451
+#: ../../enterprise/include/class/Aws.cloud.php:1213
+#: ../../enterprise/include/class/Aws.S3.php:413
+#: ../../enterprise/include/class/MySQL.app.php:454
+#: ../../enterprise/include/class/Oracle.app.php:456
+#: ../../enterprise/include/class/DB2.app.php:449
+#: ../../enterprise/include/class/SAP.app.php:482
+#: ../../enterprise/include/class/VMware.app.php:594
+#: ../../godmode/wizards/HostDevices.class.php:849
+msgid ""
+"You must select a Discovery Server to run the Task, otherwise the Recon Task "
+"will never run"
+msgstr ""
+"Seleccione un servidos de Discovery para ejecutar la tarea, si no la tarea de "
+"reconocimiento no se ejecutará"
+
+#: ../../include/class/CustomNetScan.class.php:521
+#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:538
+#: ../../enterprise/include/class/Aws.cloud.php:1319
+#: ../../enterprise/include/class/Aws.S3.php:507
+#: ../../enterprise/include/class/MySQL.app.php:559
+#: ../../enterprise/include/class/Oracle.app.php:544
+#: ../../enterprise/include/class/DB2.app.php:537
+#: ../../enterprise/include/class/SAP.app.php:514
+#: ../../enterprise/include/class/VMware.app.php:668
+#: ../../godmode/wizards/HostDevices.class.php:799
+msgid "Manual interval means that it will be executed only On-demand"
+msgstr "Intervalo manual significa que será ejecutado solo bajo demanda."
+
+#: ../../include/class/CustomNetScan.class.php:528
+#: ../../include/functions_reporting_html.php:2309
+#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:545
+#: ../../enterprise/include/class/Aws.cloud.php:1326
+#: ../../enterprise/include/class/Aws.S3.php:514
+#: ../../enterprise/include/class/MySQL.app.php:566
+#: ../../enterprise/include/class/Oracle.app.php:551
+#: ../../enterprise/include/class/DB2.app.php:544
+#: ../../enterprise/include/class/SAP.app.php:521
+#: ../../enterprise/include/class/VMware.app.php:675
+#: ../../enterprise/include/class/VMware.app.php:887
+#: ../../godmode/wizards/HostDevices.class.php:806
+msgid "Defined"
+msgstr "Definido"
+
+#: ../../include/class/CustomNetScan.class.php:529
+#: ../../enterprise/tools/ipam/ipam_list.php:670
+#: ../../enterprise/operation/services/services.list.php:275
+#: ../../enterprise/operation/services/services.table_services.php:197
+#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:546
+#: ../../enterprise/include/class/Aws.cloud.php:1327
+#: ../../enterprise/include/class/Aws.S3.php:515
+#: ../../enterprise/include/class/MySQL.app.php:567
+#: ../../enterprise/include/class/Oracle.app.php:552
+#: ../../enterprise/include/class/DB2.app.php:545
+#: ../../enterprise/include/class/SAP.app.php:522
+#: ../../enterprise/include/class/VMware.app.php:676
+#: ../../enterprise/include/functions_ipam.php:1356
+#: ../../enterprise/godmode/services/services.service.php:650
+#: ../../enterprise/godmode/massive/massive_create_services.php:698
+#: ../../godmode/wizards/HostDevices.class.php:807
+#: ../../godmode/wizards/DiscoveryTaskList.class.php:712
+msgid "Manual"
+msgstr "Manual"
+
+#: ../../include/class/CustomNetScan.class.php:545
+#: ../../godmode/wizards/HostDevices.class.php:813
+msgid "The minimum recomended interval for Recon Task is 5 minutes"
+msgstr "El intervalo mínimo recomendado para Recon Task es de 5 minutos."
+
+#: ../../include/class/CustomNetScan.class.php:553
+#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:570
+#: ../../enterprise/include/class/MySQL.app.php:591
+#: ../../enterprise/include/class/Oracle.app.php:576
+#: ../../enterprise/include/class/DB2.app.php:569
+#: ../../enterprise/include/class/SAP.app.php:444
+#: ../../enterprise/include/class/VMware.app.php:536
+#: ../../enterprise/include/lib/ClusterViewer/ClusterWizard.php:1202
+#: ../../godmode/setup/setup_integria.php:636
+#: ../../godmode/wizards/HostDevices.class.php:772
+msgid "Update and continue"
+msgstr "Actualizar y continuar"
+
+#: ../../include/class/CustomNetScan.class.php:611
+msgid "Recon script"
+msgstr "Recon script"
+
+#: ../../include/class/CustomNetScan.class.php:652
+msgid "Explanation"
+msgstr "Explicación"
+
+#: ../../include/class/CustomNetScan.class.php:668
+msgid "macro_desc"
+msgstr "macro_desc"
+
+#: ../../include/class/CustomNetScan.class.php:725
+#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:793
+#: ../../enterprise/include/class/Aws.cloud.php:1423
+#: ../../enterprise/include/class/MySQL.app.php:908
+#: ../../enterprise/include/class/Oracle.app.php:949
+#: ../../enterprise/include/class/DB2.app.php:840
+#: ../../enterprise/include/class/SAP.app.php:802
+#: ../../enterprise/include/class/Omnishell.class.php:852
+#: ../../enterprise/include/class/VMware.app.php:863
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2136
+#: ../../enterprise/include/lib/ClusterViewer/ClusterWizard.php:1206
+#: ../../enterprise/meta/monitoring/wizard/wizard.php:133
+#: ../../enterprise/godmode/wizards/Cloud.class.php:579
+#: ../../godmode/wizards/HostDevices.class.php:1569
+#: ../../godmode/alerts/configure_alert_template.php:1171
+msgid "Finish"
+msgstr "Finalizar"
+
+#: ../../include/class/CustomNetScan.class.php:758
+#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:821
+#: ../../enterprise/include/class/Aws.cloud.php:1590
+#: ../../enterprise/include/class/Aws.S3.php:658
+#: ../../enterprise/include/class/MySQL.app.php:944
+#: ../../enterprise/include/class/Oracle.app.php:977
+#: ../../enterprise/include/class/DB2.app.php:868
+#: ../../enterprise/include/class/SAP.app.php:924
+#: ../../enterprise/include/class/VMware.app.php:1014
+#: ../../enterprise/include/class/Azure.cloud.php:990
+#: ../../enterprise/include/class/Google.cloud.php:952
+#: ../../godmode/wizards/HostDevices.class.php:1589
+msgid "Task configured."
+msgstr "Tarea configurada."
+
+#: ../../include/class/CustomNetScan.class.php:762
+#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:825
+#: ../../enterprise/include/class/MySQL.app.php:948
+#: ../../enterprise/include/class/Oracle.app.php:981
+#: ../../enterprise/include/class/DB2.app.php:872
+#: ../../enterprise/include/class/SAP.app.php:928
+#: ../../enterprise/include/class/VMware.app.php:1018
+#: ../../enterprise/include/class/Azure.cloud.php:994
+#: ../../enterprise/include/class/Google.cloud.php:956
+#: ../../godmode/wizards/HostDevices.class.php:1593
+msgid "Wizard failed. Cannot configure task."
+msgstr "Error del asistente. No puede configurar la tarea."
+
 #: ../../include/class/CalendarManager.class.php:161
 msgid "Alert calendar list"
 msgstr "Lista de calendario de alertas"
@@ -47610,6 +18306,70 @@ msgstr "Éxito al cargar iCalendar"
 msgid "Fail to upload iCalendar"
 msgstr "Error al cargar iCalendar"
 
+#: ../../include/class/CalendarManager.class.php:488
+#: ../../include/class/CalendarManager.class.php:841
+#: ../../enterprise/include/class/NetworkConfigManager.class.php:1785
+#: ../../enterprise/include/class/NetworkConfigManager.class.php:1875
+#: ../../enterprise/include/class/NetworkConfigManager.class.php:1970
+#: ../../enterprise/include/class/NetworkConfigManager.class.php:2064
+#: ../../enterprise/include/class/DatabaseHA.class.php:796
+msgid "Failed to update"
+msgstr "Error al actualizar"
+
+#: ../../include/class/CalendarManager.class.php:490
+#: ../../include/class/CalendarManager.class.php:843
+#: ../../include/functions_alerts.php:2744
+#: ../../include/functions_planned_downtimes.php:114
+#: ../../include/functions_planned_downtimes.php:832
+#: ../../enterprise/tools/ipam/ipam_network_location_config.php:50
+#: ../../enterprise/tools/ipam/ipam_action.php:214
+#: ../../enterprise/operation/agentes/transactional_map.php:134
+#: ../../enterprise/include/ajax/servers.ajax.php:197
+#: ../../enterprise/include/ajax/servers.ajax.php:330
+#: ../../enterprise/include/class/NetworkConfigManager.class.php:1787
+#: ../../enterprise/include/class/NetworkConfigManager.class.php:1877
+#: ../../enterprise/include/class/NetworkConfigManager.class.php:1972
+#: ../../enterprise/include/class/NetworkConfigManager.class.php:2066
+#: ../../enterprise/meta/advanced/cron_main.php:158
+#: ../../enterprise/meta/advanced/cron_main.php:202
+#: ../../enterprise/meta/advanced/cron_main.php:295
+#: ../../enterprise/meta/advanced/links.php:49
+#: ../../enterprise/godmode/setup/setup_metaconsole.php:125
+#: ../../enterprise/godmode/servers/credential_boxes_satellite.php:80
+#: ../../enterprise/godmode/servers/credential_boxes_satellite.php:111
+#: ../../enterprise/godmode/servers/manage_export.php:112
+#: ../../enterprise/godmode/servers/manage_export.php:119
+#: ../../enterprise/godmode/reporting/reporting_builder.template_editor.php:47
+#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:221
+#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:234
+#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:283
+#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:302
+#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:382
+#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:399
+#: ../../enterprise/godmode/alerts/alert_inventory_builder.php:76
+#: ../../godmode/setup/news.php:66 ../../godmode/setup/gis.php:47
+#: ../../godmode/setup/links.php:44 ../../godmode/modules/manage_nc_groups.php:84
+#: ../../godmode/snmpconsole/snmp_alert.php:283
+#: ../../godmode/snmpconsole/snmp_filters.php:164
+#: ../../godmode/agentes/configurar_agente.php:880
+#: ../../godmode/agentes/planned_downtime.editor.php:416
+#: ../../godmode/alerts/configure_alert_template.php:536
+#: ../../godmode/alerts/alert_commands.php:572
+#: ../../godmode/alerts/alert_list.php:178
+#: ../../godmode/users/configure_user.php:474
+#: ../../godmode/users/profile_list.php:269
+msgid "Successfully created"
+msgstr "Creado correctamente"
+
+#: ../../include/class/CalendarManager.class.php:491
+#: ../../include/class/CalendarManager.class.php:844
+#: ../../enterprise/include/class/NetworkConfigManager.class.php:1788
+#: ../../enterprise/include/class/NetworkConfigManager.class.php:1878
+#: ../../enterprise/include/class/NetworkConfigManager.class.php:1973
+#: ../../enterprise/include/class/NetworkConfigManager.class.php:2067
+msgid "Failed to create"
+msgstr "Error al crear"
+
 #: ../../include/class/CalendarManager.class.php:507
 msgid "Failed saving calendar: name exists"
 msgstr "Error al guardar el calendario: el nombre existe"
@@ -47618,10 +18378,20 @@ msgstr "Error al guardar el calendario: el nombre existe"
 msgid "Failed saving calendar: "
 msgstr "Error al guardar el calendario: "
 
-#: ../../include/class/CalendarManager.class.php:669
-#: ../../views/calendar/special_days.php:41
-msgid "Special days"
-msgstr "Días especiales"
+#: ../../include/class/CalendarManager.class.php:523
+#: ../../include/class/CalendarManager.class.php:895
+#: ../../include/functions_reporting.php:4743
+#: ../../include/functions_reporting.php:4771
+#: ../../enterprise/include/class/NetworkConfigManager.class.php:1725
+#: ../../enterprise/include/class/NetworkConfigManager.class.php:1807
+#: ../../enterprise/include/class/NetworkConfigManager.class.php:1901
+#: ../../enterprise/include/class/NetworkConfigManager.class.php:1992
+#: ../../enterprise/include/class/NetworkConfigManager.class.php:2131
+#: ../../enterprise/include/class/NetworkConfigManager.class.php:2792
+#: ../../enterprise/include/lib/Metaconsole/Node.php:1514
+#, php-format
+msgid "Error: %s"
+msgstr "Error: %s"
 
 #: ../../include/class/CalendarManager.class.php:783
 #, php-format
@@ -47650,997 +18420,296 @@ msgstr "Igual que %s"
 msgid "Templates not being fired"
 msgstr "Plantillas que no se están activando"
 
-#: ../../include/class/Diagnostics.class.php:157
+#: ../../include/class/NetworkMap.class.php:2317
+msgid "Failed to generate dotmap, please select different layout schema"
+msgstr "No se ha podido generar dotmap, seleccione un formato diferente"
+
+#: ../../include/class/NetworkMap.class.php:2452
+msgid "Failed to retrieve graph data."
+msgstr "No se ha podido obtener datos de gráfica."
+
+#: ../../include/class/NetworkMap.class.php:2663
+msgid "Holding Area"
+msgstr "Búfer de procesamiento"
+
+#: ../../include/class/NetworkMap.class.php:2790
 #, php-format
-msgid "%s Diagnostic tool"
-msgstr "Herramienta de diagnóstico de %s"
+msgid "Edit node %s"
+msgstr "Modificar el nodo %s"
 
-#: ../../include/class/Diagnostics.class.php:222
-#, php-format
-msgid "Info status %s"
-msgstr "Información del estado de %s"
+#: ../../include/class/NetworkMap.class.php:2792
+msgid "Show details and options"
+msgstr "Mostrar detalles y opciones"
 
-#: ../../include/class/Diagnostics.class.php:226
-msgid "PHP setup"
-msgstr "Configuración PHP"
+#: ../../include/class/NetworkMap.class.php:2793
+msgid "Add a interface link"
+msgstr "Añadir enlace de interfaz"
 
-#: ../../include/class/Diagnostics.class.php:234
-msgid "Database health status"
-msgstr "Estado de la base de datos"
+#: ../../include/class/NetworkMap.class.php:2794
+msgid "Set parent interface"
+msgstr "Establecer padre en la relación de interfaz"
 
-#: ../../include/class/Diagnostics.class.php:238
-msgid "Database status info"
-msgstr "Información sobre el estado de la base de datos"
+#: ../../include/class/NetworkMap.class.php:2795
+msgid "Set as children"
+msgstr "Establecer como hijo"
 
-#: ../../include/class/Diagnostics.class.php:242
-msgid "System Info"
-msgstr "Información de Sistema"
+#: ../../include/class/NetworkMap.class.php:2796
+msgid "Set parent"
+msgstr "Establecer como padre"
 
-#: ../../include/class/Diagnostics.class.php:246
-msgid "MySQL Performance metrics"
-msgstr "Métricas de rendimiento de MySQL"
+#: ../../include/class/NetworkMap.class.php:2797
+#: ../../include/class/NetworkMap.class.php:2810
+msgid "Abort the action of set relationship"
+msgstr "Cancelar la acción de relacionar por parentesco"
 
-#: ../../include/class/Diagnostics.class.php:251
-#, php-format
-msgid "Tables fragmentation in the %s database"
-msgstr "Fragmentación de tablas de la base de datos de %s"
+#: ../../include/class/NetworkMap.class.php:2799
+#: ../../include/class/NetworkMap.class.php:3155
+msgid "Add node"
+msgstr "Añadir nodo"
 
-#: ../../include/class/Diagnostics.class.php:257
-#, php-format
-msgid "%s logs dates"
-msgstr "Fechas de logs de %s"
+#: ../../include/class/NetworkMap.class.php:2800
+msgid "Set center"
+msgstr "Fijar centro"
 
-#: ../../include/class/Diagnostics.class.php:261
-#, php-format
-msgid "%s Licence Information"
-msgstr "Información de la licencia %s"
+#: ../../include/class/NetworkMap.class.php:2802
+msgid "Refresh Holding area"
+msgstr "Actualizar búfer de procesamiento"
 
-#: ../../include/class/Diagnostics.class.php:265
-#: ../../include/class/Diagnostics.class.php:1251
-msgid "Status of the attachment folder"
-msgstr "Estado de la carpeta de adjuntos"
+#: ../../include/class/NetworkMap.class.php:2803
+#: ../../include/class/NetworkMap.class.php:2806
+msgid "Proceed"
+msgstr "Proceder"
 
-#: ../../include/class/Diagnostics.class.php:269
-msgid "Information from the tagente_datos table"
-msgstr "Información dede la tabla de tagent_data"
-
-#: ../../include/class/Diagnostics.class.php:273
-#, php-format
-msgid "%s server threads"
-msgstr "Hilos de servidor de %s"
-
-#: ../../include/class/Diagnostics.class.php:277
-msgid "SQL show engine innodb status"
-msgstr "SQL muestra el estado del motor innodb"
-
-#: ../../include/class/Diagnostics.class.php:325
-msgid "Graph of the Agents Unknown module."
-msgstr "Gráfica de los agentes con módulos desconocidos"
-
-#: ../../include/class/Diagnostics.class.php:332
-msgid "Graph of the Database Maintenance module."
-msgstr "Gráfica del módulo de mantenimiento de la base de datos"
-
-#: ../../include/class/Diagnostics.class.php:339
-msgid "Graph of the Free Disk Spool Dir module."
-msgstr "Gráfica del módulo Free Disk Spool Dir"
-
-#: ../../include/class/Diagnostics.class.php:345
-msgid "Graph of the Free RAM module."
-msgstr "Gráfica del módulo de RAM libre"
-
-#: ../../include/class/Diagnostics.class.php:351
-msgid "Graph of the Queued Modules module."
-msgstr "Gráfica del módulo de módulos encolados"
-
-#: ../../include/class/Diagnostics.class.php:357
-msgid "Graph of the Status module."
-msgstr "Gráfica del módulo de estado."
-
-#: ../../include/class/Diagnostics.class.php:363
-msgid "Graph of the System Load AVG module."
-msgstr "Gráfica del módulo System Load AVG."
-
-#: ../../include/class/Diagnostics.class.php:370
-msgid "Graph of the Execution Time module."
-msgstr "Gráfica del módulo de tiempo de ejecución."
-
-#: ../../include/class/Diagnostics.class.php:379
-msgid "Graphs modules that represent the self-monitoring system"
-msgstr "Gráficas de módulos que representan el sistema de auto-monitorización"
-
-#: ../../include/class/Diagnostics.class.php:436
-#, php-format
-msgid "%s Build"
-msgstr "Desarrollo %s"
-
-#: ../../include/class/Diagnostics.class.php:440
-#, php-format
-msgid "%s Version"
-msgstr "Versión %s"
-
-#: ../../include/class/Diagnostics.class.php:444
-msgid "Minor Release"
-msgstr "Actualización menor"
-
-#: ../../include/class/Diagnostics.class.php:448
-msgid "Homedir"
-msgstr "Homedir"
-
-#: ../../include/class/Diagnostics.class.php:452
-msgid "HomeUrl"
-msgstr "Homedir"
-
-#: ../../include/class/Diagnostics.class.php:456
-msgid "Enterprise installed"
-msgstr "Versión Enterprise instalada"
-
-#: ../../include/class/Diagnostics.class.php:457
-msgid "true"
-msgstr "verdadero"
-
-#: ../../include/class/Diagnostics.class.php:457
-msgid "false"
-msgstr "falso"
-
-#: ../../include/class/Diagnostics.class.php:460
-msgid "Update Key"
-msgstr "Actualizar clave"
-
-#: ../../include/class/Diagnostics.class.php:464
-msgid "Updating code path"
-msgstr "Actualizando ruta de código"
-
-#: ../../include/class/Diagnostics.class.php:468
-msgid "Current Update #"
-msgstr "Actualización actual #"
-
-#: ../../include/class/Diagnostics.class.php:492
-msgid "PHP Version"
-msgstr "Versión PHP"
-
-#: ../../include/class/Diagnostics.class.php:496
-msgid "PHP Max execution time"
-msgstr "Tiempo máx. de ejecución de PHP"
-
-#: ../../include/class/Diagnostics.class.php:500
-msgid "PHP Max input time"
-msgstr "Tiempo máx. de entrada de PHP"
-
-#: ../../include/class/Diagnostics.class.php:504
-msgid "PHP Memory limit"
-msgstr "Límite de memoria de PHP"
-
-#: ../../include/class/Diagnostics.class.php:508
-msgid "Session cookie lifetime"
-msgstr "Vida de las cookies de sesión"
-
-#: ../../include/class/Diagnostics.class.php:557
-msgid "Total groups"
-msgstr "Grupos totales"
-
-#: ../../include/class/Diagnostics.class.php:561
-msgid "Total module data records"
-msgstr "Total de registros de datos de módulos"
-
-#: ../../include/class/Diagnostics.class.php:565
-msgid "Total agent access record"
-msgstr "Registro total de acceso de agentes"
-
-#: ../../include/class/Diagnostics.class.php:573
-msgid "Total traps"
-msgstr "Traps totales"
-
-#: ../../include/class/Diagnostics.class.php:577
-msgid "Total users"
-msgstr "Usuarios totales"
-
-#: ../../include/class/Diagnostics.class.php:581
-msgid "Total sessions"
-msgstr "Sesiones totales"
-
-#: ../../include/class/Diagnostics.class.php:620
-msgid "Pandora DB has never been executed"
-msgstr "La base de datos de Pandora nunca se ha ejecutado"
-
-#: ../../include/class/Diagnostics.class.php:627
-msgid "Ago"
-msgstr "Desde hace"
-
-#: ../../include/class/Diagnostics.class.php:634
-msgid "Total unknown agents"
-msgstr "Total de agentes desconocidos"
-
-#: ../../include/class/Diagnostics.class.php:638
-msgid "Total not-init modules"
-msgstr "Total de módulos no iniciados"
-
-#: ../../include/class/Diagnostics.class.php:642
-msgid "Pandora DB Last run"
-msgstr "Última ejecución de la base de datos de Pandora"
-
-#: ../../include/class/Diagnostics.class.php:674
-msgid "DB Schema Version (first installed)"
-msgstr "Versión del esquema de la base de datos (primera instalación)"
-
-#: ../../include/class/Diagnostics.class.php:678
-msgid "DB Schema Version (actual)"
-msgstr "Versión del esquema de la base de datos (actual)"
-
-#: ../../include/class/Diagnostics.class.php:682
-msgid "DB Schema Build"
-msgstr "Desarrollo del esquema de la base de datos"
-
-#: ../../include/class/Diagnostics.class.php:686
-msgid "DB Size"
-msgstr "Tamaño de la base de datos"
-
-#: ../../include/class/Diagnostics.class.php:726
-msgid "RAM"
-msgstr "RAM"
-
-#: ../../include/class/Diagnostics.class.php:730
-msgid "Os"
-msgstr "SO"
-
-#: ../../include/class/Diagnostics.class.php:784
-msgid "InnoDB buffer pool size"
-msgstr "InnoDB buffer pool size"
-
-#: ../../include/class/Diagnostics.class.php:788
-#, php-format
+#: ../../include/class/NetworkMap.class.php:2804
 msgid ""
-"It has to be 40% of the server memory not recommended to be greater or less"
+"Resetting the map will delete all customizations you have done, including "
+"manual relationships between elements, new items, etc."
 msgstr ""
-"Debe ser un 40% de la memoria del servidor. No se recomienda ningún otro "
-"porcentaje."
-
-#: ../../include/class/Diagnostics.class.php:793
-msgid "InnoDB file per table"
-msgstr "Archivo InnoDB por tabla"
-
-#: ../../include/class/Diagnostics.class.php:796
-#: ../../include/class/Diagnostics.class.php:868
-msgid "Recommended ON"
-msgstr "ON recomendado"
-
-#: ../../include/class/Diagnostics.class.php:800
-msgid "InnoDB flush log at trx-commit"
-msgstr "Log de InnoDB flush en trx-commit"
-
-#: ../../include/class/Diagnostics.class.php:803
-#, php-format
-msgid "Recommended Value %d"
-msgstr "Valor recomendado %d"
-
-#: ../../include/class/Diagnostics.class.php:807
-msgid "InnoDB lock wait timeout"
-msgstr "Límite de tiempo de espera de InnoDB lock"
-
-#: ../../include/class/Diagnostics.class.php:810
-#: ../../include/class/Diagnostics.class.php:817
-#: ../../include/class/Diagnostics.class.php:824
-#: ../../include/class/Diagnostics.class.php:831
-#: ../../include/class/Diagnostics.class.php:838
-#: ../../include/class/Diagnostics.class.php:847
-#: ../../include/class/Diagnostics.class.php:854
-#: ../../include/class/Diagnostics.class.php:861
-#: ../../include/class/Diagnostics.class.php:875
-#: ../../include/class/Diagnostics.class.php:882
-#: ../../include/class/Diagnostics.class.php:889
-#: ../../include/class/Diagnostics.class.php:903
-#: ../../include/class/Diagnostics.class.php:910
-msgid "Min. Recommended Value"
-msgstr "Valor mín. recomendado"
-
-#: ../../include/class/Diagnostics.class.php:814
-msgid "InnoDB log buffer size"
-msgstr "Tamaño del buffer del log de InnoDB"
-
-#: ../../include/class/Diagnostics.class.php:821
-msgid "InnoDB log file size"
-msgstr "Tamaño del archivo de log de InnoDB"
-
-#: ../../include/class/Diagnostics.class.php:828
-msgid "Maximun allowed packet"
-msgstr "Paquete máx. permitido"
-
-#: ../../include/class/Diagnostics.class.php:835
-msgid "Maximun connections"
-msgstr "Máx. de conexiones"
-
-#: ../../include/class/Diagnostics.class.php:840
-msgid "conections"
-msgstr "conexiones"
-
-#: ../../include/class/Diagnostics.class.php:844
-msgid "Query cache limit"
-msgstr "Limite del caché de consultas"
-
-#: ../../include/class/Diagnostics.class.php:851
-msgid "Query cache min-res-unit"
-msgstr "Caché de las consultas min-res-unit"
-
-#: ../../include/class/Diagnostics.class.php:858
-msgid "Query cache size"
-msgstr "Tamaño del caché de consultas"
-
-#: ../../include/class/Diagnostics.class.php:865
-msgid "Query cache type"
-msgstr "Tipo de caché de consultas"
-
-#: ../../include/class/Diagnostics.class.php:872
-msgid "Read buffer size"
-msgstr "Tamaño del buffer de lectura"
-
-#: ../../include/class/Diagnostics.class.php:879
-msgid "Read rnd-buffer size"
-msgstr "Tamaño del rnd-buffer de lectura"
-
-#: ../../include/class/Diagnostics.class.php:886
-msgid "Sort buffer size"
-msgstr "Clasificar los tamaños de buffer"
-
-#: ../../include/class/Diagnostics.class.php:893
-msgid "Sql mode"
-msgstr "Modo Sql"
-
-#: ../../include/class/Diagnostics.class.php:896
-msgid "Must be empty"
-msgstr "Debe estar vacío"
-
-#: ../../include/class/Diagnostics.class.php:900
-msgid "Thread cache size"
-msgstr "Tamaño del hilo del caché"
-
-#: ../../include/class/Diagnostics.class.php:907
-msgid "Thread stack"
-msgstr "Hilos acumulados"
-
-#: ../../include/class/Diagnostics.class.php:970
-msgid ""
-"Table fragmentation is higher than recommended. They should be defragmented."
-msgstr ""
-"La fragmentación de tablas es mayor de la recomendada. Deberían estar "
-"desfragmentadas."
-
-#: ../../include/class/Diagnostics.class.php:974
-msgid "Table fragmentation is correct."
-msgstr "La fragmentación de tablas es correcta."
-
-#: ../../include/class/Diagnostics.class.php:983
-msgid "Tables fragmentation (maximum recommended value)"
-msgstr "Fragmentación de tablas (valor recomendado máximo)"
-
-#: ../../include/class/Diagnostics.class.php:988
-msgid "Tables fragmentation (current value)"
-msgstr "Fragmentación de tablas (valor actual)"
-
-#: ../../include/class/Diagnostics.class.php:992
-msgid "Table fragmentation status"
-msgstr "Estado de fragmentación de tablas"
-
-#: ../../include/class/Diagnostics.class.php:1027
-msgid "Size server logs (current value)"
-msgstr "Logs del tamaño del servidor (valor actual)"
-
-#: ../../include/class/Diagnostics.class.php:1031
-msgid "Status server logs"
-msgstr "Logs del estado del servidor"
-
-#: ../../include/class/Diagnostics.class.php:1036
-msgid "Size error logs (current value)"
-msgstr "Logs de error de tamaño (valor actual)"
-
-#: ../../include/class/Diagnostics.class.php:1040
-msgid "Status error logs"
-msgstr "Logs de error de estado"
-
-#: ../../include/class/Diagnostics.class.php:1045
-msgid "Size console logs (current value)"
-msgstr "Logs del tamaño de la consola (valor actual)"
-
-#: ../../include/class/Diagnostics.class.php:1049
-msgid "Status console logs"
-msgstr "Logs del estado de la consola"
-
-#: ../../include/class/Diagnostics.class.php:1084
-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:1087
-msgid "License capacity exceeds 90 percent"
-msgstr "La capacidad de la licencia excede del 90 por ciento"
-
-#: ../../include/class/Diagnostics.class.php:1095
-msgid ""
-"The average of modules per agent is more than 40. You can have performance "
-"problems"
-msgstr ""
-"La media de módulos por agente es más de 40. Puede sufrir problemas de "
-"rendimiento"
-
-#: ../../include/class/Diagnostics.class.php:1100
-msgid "The average of modules per agent is less than 40"
-msgstr "La media de módulos por agente es menos de 40"
-
-#: ../../include/class/Diagnostics.class.php:1136
-msgid "The system has no load"
-msgstr "El sistema no tiene carga"
-
-#: ../../include/class/Diagnostics.class.php:1180
-msgid "Network Management System"
-msgstr "Sistema de administración de la red"
-
-#: ../../include/class/Diagnostics.class.php:1181
-#: ../../include/class/Diagnostics.class.php:1185
-msgid "Off"
-msgstr "Apagado"
-
-#: ../../include/class/Diagnostics.class.php:1192
-msgid "Status of agents capacity"
-msgstr "Estado de la capacidad de los agentes"
-
-#: ../../include/class/Diagnostics.class.php:1197
-msgid "Status of average modules per agent"
-msgstr "Estado de la media de módulos por agente"
-
-#: ../../include/class/Diagnostics.class.php:1203
-msgid "Interval average of the network modules"
-msgstr "Intervalo de media de los módulos de la red"
-
-#: ../../include/class/Diagnostics.class.php:1233
-msgid "The attached folder contains more than 700 files."
-msgstr "La carpeta adjunta contiene más de 700 archivos."
-
-#: ../../include/class/Diagnostics.class.php:1238
-msgid "The attached folder contains less than 700 files."
-msgstr "La carpeta adjunta contiene menos de 700 archivos."
-
-#: ../../include/class/Diagnostics.class.php:1247
-msgid "Total files in the attached folder"
-msgstr "Total de archivos en la carpeta adjunta"
-
-#: ../../include/class/Diagnostics.class.php:1277
-msgid ""
-"The tagente_datos table contains too much data. A historical database is "
-"recommended."
-msgstr ""
-"La tabla tagente_datos contiene demasiados datos. Se recomienda una base de "
-"datos histórica."
-
-#: ../../include/class/Diagnostics.class.php:1282
-msgid "The tagente_datos table contains an acceptable amount of data."
-msgstr "La tabla tagente_datos contiene una cantidad de datos aceptable"
-
-#: ../../include/class/Diagnostics.class.php:1291
-msgid "Total data in tagente_datos table"
-msgstr "Total de datos de la tabla tagente_datos"
-
-#: ../../include/class/Diagnostics.class.php:1295
-msgid "Tagente_datos table status"
-msgstr "Estado de la tabla tagente_datos"
-
-#: ../../include/class/Diagnostics.class.php:1331
-msgid "Threads"
-msgstr "Hilos"
-
-#: ../../include/class/Diagnostics.class.php:1341
-msgid "Total threads"
-msgstr "Total de hilos"
-
-#: ../../include/class/Diagnostics.class.php:1348
-msgid "Current pandora_server running threads"
-msgstr "Hilos pandora_server en ejecución actualmente"
-
-#: ../../include/class/Diagnostics.class.php:1352
-msgid ""
-"There's more pandora_server threads than configured, are you running multiple "
-"servers simultaneusly?."
-msgstr ""
-"Hay más hilos pandora_server de los configurados, ¿está ejecutando varios "
-"servidores a la vez?"
-
-#: ../../include/class/Diagnostics.class.php:1486
-msgid ""
-"Please check your Pandora Server setup and make sure that the database "
-"maintenance daemon is running."
-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:1490
-msgid ""
-"It' is very important to keep the database up-to-date to get the best "
-"performance and results in Pandora"
-msgstr ""
-"Es muy importante que la base de datos esté actualizada para conseguir un "
-"rendimiento y resultados óptimos en Pandora FMS"
-
-#: ../../include/class/Diagnostics.class.php:1752
-msgid "You have more than 10 MB of logs"
-msgstr "Tiene más de 10MB de registros"
-
-#: ../../include/class/Diagnostics.class.php:1755
-msgid "You have less than 10 MB of logs"
-msgstr "Tiene menos de 10MB de logs"
-
-#: ../../include/class/Diagnostics.class.php:1894
-#: ../../include/class/HelpFeedBack.class.php:171
-msgid "What happened?"
-msgstr "¿Qué ha pasado?"
-
-#: ../../include/class/Diagnostics.class.php:1910
-#: ../../update_manager_client/views/register.php:79
-msgid "Your email"
-msgstr "Su email"
-
-#: ../../include/class/Diagnostics.class.php:1922
-msgid "Include installation data"
-msgstr "Incluir datos de instalación"
-
-#: ../../include/class/Diagnostics.class.php:1959
-msgid "Hello Feedback-Men"
-msgstr "Hola Feedback-Men"
-
-#: ../../include/class/Diagnostics.class.php:1969
-msgid "Hello"
-msgstr "Hola"
-
-#: ../../include/class/Diagnostics.class.php:1973
-#, 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:1982
-msgid "Find some files attached to this mail"
-msgstr "Encontrar archivos adjuntos a este correo"
-
-#: ../../include/class/Diagnostics.class.php:1985
-msgid "PDF is the diagnostic information retrieved at report time"
-msgstr ""
-"El PDF es la información de diagnóstico obtenida en el momento del informe"
-
-#: ../../include/class/Diagnostics.class.php:1988
-msgid "CSV contains the statuses of every product file"
-msgstr "CSV contiene los estados de cada archivo de producto"
-
-#: ../../include/class/Diagnostics.class.php:1993
-#, php-format
-msgid ""
-"If you think this report must be escalated, feel free to forward this mail to "
-"\"%s\""
-msgstr "Si cree que el informe debe escalarse, reenvíe este correo a \"%s\""
-
-#: ../../include/class/Diagnostics.class.php:1997
-msgid "LEGAL WARNING"
-msgstr "AVISO LEGAL"
-
-#: ../../include/class/Diagnostics.class.php:1999
-msgid ""
-"The information contained in this transmission is privileged and confidential "
-"information intended only for the use of the individual or entity named above"
-msgstr ""
-"La información aquí incluida es privilegiada y confidencial, destinada al uso "
-"del individuo o la entidad arriba mencionada"
-
-#: ../../include/class/Diagnostics.class.php:2003
-msgid ""
-"If the reader of this message is not the intended recipient, you are hereby "
-"notified that any dissemination, distribution or copying of this communication "
-"is strictly prohibited"
-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:2007
-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:2011
-msgid ""
-"Please immediately reply to the sender that you have received this "
-"communication in error and then delete it"
-msgstr ""
-"Comuníquele al remitente que ha recibido esta comunicación por error y acto "
-"seguido elimínela"
-
-#: ../../include/class/Diagnostics.class.php:2090
-msgid "Invalid cron task"
-msgstr "Tarea cron no válida"
-
-#: ../../include/class/Diagnostics.class.php:2091
-msgid "Sending of information has been processed"
-msgstr "Se ha procesado el envío de información"
-
-#: ../../include/class/Diagnostics.class.php:2126
-#: ../../include/class/Diagnostics.class.php:2136
-msgid "Diagnostics Info"
-msgstr "Información de diagnóstico"
-
-#: ../../include/class/Diagnostics.class.php:2244
-#: ../../include/class/Diagnostics.class.php:2254
-msgid "PHP Info"
-msgstr "Información PHP"
-
-#: ../../include/class/HelpFeedBack.class.php:104
-msgid "Browser not compatible."
-msgstr "Buscador no compatible."
-
-#: ../../include/class/HelpFeedBack.class.php:147
-msgid "Suggestion"
-msgstr "Sugerencia"
-
-#: ../../include/class/HelpFeedBack.class.php:158
-msgid "Something is wrong"
-msgstr "Algo ha salido mal"
-
-#: ../../include/class/HelpFeedBack.class.php:181
-msgid "Your Email"
-msgstr "Tu email"
-
-#: ../../include/class/HelpFeedBack.class.php:198
-msgid "Submit"
-msgstr "Enviar"
-
-#: ../../include/class/HelpFeedBack.class.php:253
-msgid "[pandorafms wiki] New suggestion"
-msgstr "[pandorafms wiki] Nueva sugerencia"
-
-#: ../../include/class/HelpFeedBack.class.php:255
-msgid "[pandorafms wiki] New report"
-msgstr "[pandorafms wiki] Nuevo informe"
-
-#: ../../include/class/HelpFeedBack.class.php:261
-msgid "Please provide your email address, we promise not to bother you"
-msgstr "Añada su dirección de correo electrónico, prometemos no molestarle"
-
-#: ../../include/class/HelpFeedBack.class.php:309
-msgid "Something went wrong while sending the report."
-msgstr "Error al enviar el informe."
-
-#: ../../include/class/HelpFeedBack.class.php:360
-msgid "Your report had been successfully sent to Artica."
-msgstr "Su informe se ha enviado a Ártica correctamente"
-
-#: ../../include/class/HelpFeedBack.class.php:360
-msgid "Thank you!"
-msgstr "¡Gracias!"
-
-#: ../../include/class/AgentsAlerts.class.php:502
-msgid "There are no agents with alerts"
-msgstr "No existen agentes con alertas"
-
-#: ../../include/class/AgentsAlerts.class.php:580
-msgid "Previous alerts"
-msgstr "Alertas previas"
-
-#: ../../include/class/AgentsAlerts.class.php:643
-msgid "More alerts"
-msgstr "Más alertas"
-
-#: ../../include/class/AgentsAlerts.class.php:741
-msgid "Agents/Alerts"
-msgstr "Agentes/Alertas"
-
-#: ../../include/class/AgentsAlerts.class.php:790
-msgid "Show modules without alerts"
-msgstr "Mostrar módulos sin alertas"
-
-#: ../../include/class/OrderInterpreter.class.php:123
-msgid "Agent Management"
-msgstr "Gestión de agentes"
-
-#: ../../include/class/OrderInterpreter.class.php:157
-msgid "Manage Policies"
-msgstr "Gestionar políticas"
-
-#: ../../include/class/OrderInterpreter.class.php:171
-msgid "List Alerts"
-msgstr "Listar alertas"
-
-#: ../../include/class/OrderInterpreter.class.php:195
-msgid "View Events"
-msgstr "Ver eventos"
-
-#: ../../include/class/OrderInterpreter.class.php:247
-msgid "Manage Servers"
-msgstr "Gestionar servidores"
-
-#: ../../include/class/OrderInterpreter.class.php:261
-msgid "Edit User"
-msgstr "Editar usuario"
-
-#: ../../include/class/OrderInterpreter.class.php:271
-msgid "Tree View"
-msgstr "Vista de árbol"
-
-#: ../../include/class/OrderInterpreter.class.php:281
-msgid "Network Component"
-msgstr "Componente de red"
-
-#: ../../include/class/OrderInterpreter.class.php:295
-msgid "Task List"
-msgstr "Lista de tareas"
-
-#: ../../include/class/OrderInterpreter.class.php:339
-msgid "Update Manager"
-msgstr "Gestor de actualizaciones"
-
-#: ../../include/class/OrderInterpreter.class.php:353
-msgid "Manage Agent Groups"
-msgstr "Gestionar grupos de agentes"
-
-#: ../../include/class/OrderInterpreter.class.php:394
-msgid "GO TO "
-msgstr "IR A "
-
-#: ../../include/class/OrderInterpreter.class.php:423
-msgid "results found"
-msgstr "Resultados encontrados"
-
-#: ../../include/class/OrderInterpreter.class.php:427
-msgid "Press enter to search"
-msgstr "Búsqueda de texto libre"
-
-#: ../../include/class/AgentWizard.class.php:448
-msgid "There are not defined Remote components for this performance."
-msgstr "No hay componentes remotos definidos para esta acción"
-
-#: ../../include/class/AgentWizard.class.php:567
-msgid "SNMP Walk"
-msgstr "Exploración SNMP"
-
-#: ../../include/class/AgentWizard.class.php:572
-msgid "WMI Explorer"
-msgstr "Buscador WMI"
-
-#: ../../include/class/AgentWizard.class.php:646
-msgid "namespace"
-msgstr "namespace"
-
-#: ../../include/class/AgentWizard.class.php:816
-msgid "User authentication"
-msgstr "Autenticación de usuario"
-
-#: ../../include/class/AgentWizard.class.php:845
-msgid "Password authentication"
-msgstr "Contraseña de autenticación"
-
-#: ../../include/class/AgentWizard.class.php:998
-#, php-format
-msgid "The PEN (%s) is not registered."
-msgstr "PEN (%s) no está registrado."
-
-#: ../../include/class/AgentWizard.class.php:1065
-msgid "The SNMP Walk does not return anything with the received arguments."
-msgstr "La pasarela SNMP no devuelve nada con los argumentos recibidos."
-
-#: ../../include/class/AgentWizard.class.php:1118
-#, php-format
-msgid "The target host response with an error: %s"
-msgstr "Respuesta del host objetivo con un error: %s"
-
-#: ../../include/class/AgentWizard.class.php:1168
-msgid "No selected modules"
-msgstr "No hay módulos seleccionados"
-
-#: ../../include/class/AgentWizard.class.php:1184
-#: ../../include/ajax/custom_fields.php:413
-msgid "Treshold"
-msgstr "Umbral"
-
-#: ../../include/class/AgentWizard.class.php:1205
-msgid "Module exists in policy"
-msgstr "El módulo existe en la política"
-
-#: ../../include/class/AgentWizard.class.php:1215
-msgid "Module exists in agent"
-msgstr "El módulo existe en el agente"
-
-#: ../../include/class/AgentWizard.class.php:1222
-msgid "Module with the same name in the module creation list"
-msgstr "Módulo con el mismo nombre en la lista de creación de módulos"
-
-#: ../../include/class/AgentWizard.class.php:1625
-#, php-format
-msgid "Module \"%s\" exits in this policy"
-msgstr "El módulo \"%s\" sale de esta política"
-
-#: ../../include/class/AgentWizard.class.php:1727
-#: ../../include/class/AgentWizard.class.php:2155
-#, php-format
-msgid "Module %s module_exec not configuration"
-msgstr "Módulo %s module_exec no configurado"
-
-#: ../../include/class/AgentWizard.class.php:1883
-#: ../../include/class/AgentWizard.class.php:2330
-#, php-format
-msgid "Module %s satellite execution not configuration"
-msgstr "No se ha configurado la ejecución del módulo %s del satélite"
-
-#: ../../include/class/AgentWizard.class.php:1975
-#, php-format
-msgid "Module \"%s\" problems insert in bbdd"
-msgstr "El módulo \"%s\" no se ha podido insertar en la base de datos"
-
-#: ../../include/class/AgentWizard.class.php:1983
-#: ../../include/class/AgentWizard.class.php:2413
-msgid "Modules created"
-msgstr "Módulos creados"
-
-#: ../../include/class/AgentWizard.class.php:2013
-#, php-format
-msgid "Module \"%s\" exists in this agent"
-msgstr "El módulo \"%s\" sale de este agente"
-
-#: ../../include/class/AgentWizard.class.php:2604
-msgid "Select all filtered interfaces"
-msgstr "Seleccione todas las interfaces filtradas"
-
-#: ../../include/class/AgentWizard.class.php:2627
-msgid "OperStatus UP"
-msgstr "OperStatus UP"
-
-#: ../../include/class/AgentWizard.class.php:2638
-msgid "AdminStatus UP"
-msgstr "AdminStatus UP"
-
-#: ../../include/class/AgentWizard.class.php:3324
-msgid "No information could be retrieved."
-msgstr "No se ha podido obtener información"
-
-#: ../../include/class/AgentWizard.class.php:3608
-msgid "Create modules"
-msgstr "Crear módulos"
-
-#: ../../include/class/AgentWizard.class.php:3917
-msgid "Add general monitoring for all selected interfaces"
-msgstr "Añada monitorización general para todas las interfaces seleccionadas"
-
-#: ../../include/class/AgentWizard.class.php:3938
-#: ../../include/class/AgentWizard.class.php:3939
-#: ../../include/class/AgentWizard.class.php:3958
-#: ../../include/class/AgentWizard.class.php:3959
-msgid "Modules selected"
-msgstr "Módulos seleccionados"
-
-#: ../../include/class/AgentWizard.class.php:4027
-msgid "Module info"
-msgstr "Información del módulo"
-
-#: ../../include/class/AgentWizard.class.php:4056
-msgid "Current value"
-msgstr "Valor actual"
-
-#: ../../include/class/AgentWizard.class.php:5542
-#, 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:5957
-msgid "Modules about to be created"
-msgstr "Módulos a punto de ser creados"
-
-#: ../../include/class/ModuleTemplates.class.php:353
-#, php-format
-msgid "Template %s successfully updated"
-msgstr "Plantilla %s actualizada con éxito"
-
-#: ../../include/class/ModuleTemplates.class.php:400
-#, php-format
-msgid "Template %s successfully created"
-msgstr "Plantilla %s creada con éxito"
-
-#: ../../include/class/ModuleTemplates.class.php:402
-msgid "Error creating template"
-msgstr "Error al crear plantilla"
-
-#: ../../include/class/ModuleTemplates.class.php:410
-#, php-format
-msgid "Template %s successfully deleted"
-msgstr "Plantilla %s eliminada con éxito"
-
-#: ../../include/class/ModuleTemplates.class.php:412
-#, php-format
-msgid "Error deleting %s template"
-msgstr "Error al eliminar la plantilla %s"
-
-#: ../../include/class/ModuleTemplates.class.php:559
-msgid "Module successfully deleted"
-msgstr "Módulo eliminado con éxito"
-
-#: ../../include/class/ModuleTemplates.class.php:561
-msgid "Error deleting module"
-msgstr "Error al eliminar el módulo"
-
-#: ../../include/class/ModuleTemplates.class.php:572
-msgid "Block successfully deleted"
-msgstr "Bloque eliminado con éxito"
-
-#: ../../include/class/ModuleTemplates.class.php:574
-msgid "Error deleting block"
-msgstr "Error al eliminar bloque"
-
-#: ../../include/class/ModuleTemplates.class.php:586
-msgid "All templates deleted"
-msgstr "Eliminadas todas las plantillas"
-
-#: ../../include/class/ModuleTemplates.class.php:588
-msgid "Error deleting all templates"
-msgstr "Error al eliminar todas las plantillas"
-
-#: ../../include/class/ModuleTemplates.class.php:597
-msgid "Selected templates deleted"
-msgstr "Eliminadas las plantillas seleccionadas"
-
-#: ../../include/class/ModuleTemplates.class.php:599
-msgid "Error deleting selected templates"
-msgstr "Error al eliminar las plantillas seleccionadas"
-
-#: ../../include/class/ModuleTemplates.class.php:611
-msgid "Something gone wrong. Please, try again"
-msgstr "Ha habido un error. inténtelo de nuevo."
-
-#: ../../include/class/ModuleTemplates.class.php:662
-msgid "The modules is already added"
-msgstr "El módulo ya se ha añadido"
-
-#: ../../include/class/ModuleTemplates.class.php:1111
-#: ../../include/class/ModuleTemplates.class.php:1383
-msgid "Add components"
-msgstr "Añadir componentes"
-
-#: ../../include/class/ModuleTemplates.class.php:1163
-#: ../../include/class/ModuleTemplates.class.php:1298
-msgid "No module blocks for this profile"
-msgstr "No hay bloques de módulos para este perfil"
-
-#: ../../include/class/ModuleTemplates.class.php:1186
-msgid "Delete this block"
-msgstr "Eliminar este bloque"
-
-#: ../../include/class/ModuleTemplates.class.php:1188
-msgid "Do you want delete this block?"
-msgstr "¿Desea eliminar este bloque?"
-
-#: ../../include/class/ModuleTemplates.class.php:1283
-msgid "Delete this module"
-msgstr "Eliminar este módulo"
-
-#: ../../include/class/ModuleTemplates.class.php:1285
-msgid "Do you want delete this module?"
-msgstr "¿Desea eliminar este módulo?"
-
-#: ../../include/class/ModuleTemplates.class.php:1476
-msgid "Do you want delete all templates?"
-msgstr "¿Desea eliminar todas las plantillas?"
-
-#: ../../include/class/ModuleTemplates.class.php:1479
-msgid "Do you want delete the selected templates?"
-msgstr "¿Desea eliminar las plantillas seleccionadas?"
-
-#: ../../include/class/WebServerModuleDebug.class.php:143
-msgid "Performing query. Please wait."
-msgstr "Consulta en proceso. Espere."
-
-#: ../../include/class/WebServerModuleDebug.class.php:174
-msgid "No results"
-msgstr "No hay resultados"
-
-#: ../../include/class/WebServerModuleDebug.class.php:197
-msgid "Error performing execution"
-msgstr "Error al llevar a cabo la ejecución"
-
-#: ../../include/class/WebServerModuleDebug.class.php:229
-msgid "Please, wait for a first execution of module"
-msgstr "Espere a la primera ejecución del módulo"
+"Al resetear el mapa se borrarán todas las personalizaciones que hayas hecho, "
+"incluyendo las relaciones manuales entre elementos, nuevos elementos, etc."
+
+#: ../../include/class/NetworkMap.class.php:2808
+msgid "Restart map"
+msgstr "Resetear el mapa"
+
+#: ../../include/class/NetworkMap.class.php:2809
+msgid "Abort the interface relationship"
+msgstr "Abortar la relación de interfaz"
+
+#: ../../include/class/NetworkMap.class.php:2827
+#: ../../include/class/NetworkMap.class.php:2876
+msgid "Edit node"
+msgstr "Modificar nodo"
+
+#: ../../include/class/NetworkMap.class.php:2837
+#: ../../include/class/NetworkMap.class.php:2886
+msgid "Adresses"
+msgstr "Direcciones"
+
+#: ../../include/class/NetworkMap.class.php:2839
+#: ../../include/class/NetworkMap.class.php:2888
+msgid "OS type"
+msgstr "Tipo de SO"
+
+#: ../../include/class/NetworkMap.class.php:2846
+#: ../../include/class/NetworkMap.class.php:2847
+#: ../../include/class/NetworkMap.class.php:2895
+#: ../../include/class/NetworkMap.class.php:2896
+msgid "Node Details"
+msgstr "Detalles de nodo"
+
+#: ../../include/class/NetworkMap.class.php:2910
+#: ../../enterprise/tools/ipam/ipam_ajax.php:473
+msgid "MAC"
+msgstr "MAC"
+
+#: ../../include/class/NetworkMap.class.php:2921
+#: ../../include/class/NetworkMap.class.php:2922
+msgid "Interface Information (SNMP)"
+msgstr "Información de interfaces (SNMP)"
+
+#: ../../include/class/NetworkMap.class.php:2933
+msgid "Shape"
+msgstr "Forma"
+
+#: ../../include/class/NetworkMap.class.php:2936
+msgid "Circle"
+msgstr "Círculo"
+
+#: ../../include/class/NetworkMap.class.php:2937
+msgid "Square"
+msgstr "Cuadrado"
+
+#: ../../include/class/NetworkMap.class.php:2938
+msgid "Rhombus"
+msgstr "Rombo"
+
+#: ../../include/class/NetworkMap.class.php:2951
+msgid "name node"
+msgstr "Nombrar nodo"
+
+#: ../../include/class/NetworkMap.class.php:2957
+#: ../../enterprise/include/functions_HA_cluster.php:496
+msgid "Update node"
+msgstr "Actualizar nodo"
+
+#: ../../include/class/NetworkMap.class.php:2969
+#: ../../include/class/NetworkMap.class.php:3272
+msgid "name fictional node"
+msgstr "Nombre de nodo ficticio"
+
+#: ../../include/class/NetworkMap.class.php:2974
+#: ../../include/class/NetworkMap.class.php:3277
+msgid "Networkmap to link"
+msgstr "Enlace a mapa de red"
+
+#: ../../include/class/NetworkMap.class.php:2986
+msgid "Update fictional node"
+msgstr "Actualizar nodo ficticio"
+
+#: ../../include/class/NetworkMap.class.php:2996
+#: ../../include/class/NetworkMap.class.php:2997
+msgid "Node options"
+msgstr "Opciones de nodo"
+
+#: ../../include/class/NetworkMap.class.php:3008
+#: ../../include/class/NetworkMap.class.php:3101
+msgid "Node source"
+msgstr "Nodo origen"
+
+#: ../../include/class/NetworkMap.class.php:3009
+#: ../../include/class/NetworkMap.class.php:3102
+msgid "Interface source"
+msgstr "Interfaz origen"
+
+#: ../../include/class/NetworkMap.class.php:3010
+#: ../../include/class/NetworkMap.class.php:3103
+msgid "Interface Target"
+msgstr "Interfaz objetivo"
+
+#: ../../include/class/NetworkMap.class.php:3012
+#: ../../include/class/NetworkMap.class.php:3104
+msgid "Node target"
+msgstr "Nodo objetivo"
+
+#: ../../include/class/NetworkMap.class.php:3013
+msgid "E."
+msgstr "E."
+
+#: ../../include/class/NetworkMap.class.php:3075
+msgid "There are not relations"
+msgstr "No hay relaciones"
+
+#: ../../include/class/NetworkMap.class.php:3086
+#: ../../include/class/NetworkMap.class.php:3087
+#: ../../enterprise/meta/advanced/metasetup.relations.php:330
+msgid "Relations"
+msgstr "Relaciones"
+
+#: ../../include/class/NetworkMap.class.php:3143
+msgid "Add interface link"
+msgstr "Añadir enlace de interfaz"
+
+#: ../../include/class/NetworkMap.class.php:3174
+#: ../../include/class/NetworkMap.class.php:3196
+#: ../../include/class/NetworkMap.class.php:3197
+#: ../../include/class/NetworkMap.class.php:3247
+#: ../../include/class/NetworkMap.class.php:3259
+#: ../../include/class/NetworkMap.class.php:3300
+msgid "Add agent node"
+msgstr "Añadir nodo de agente"
+
+#: ../../include/class/NetworkMap.class.php:3258
+msgid "Add agent node (filter by group)"
+msgstr "Añadir nodo de agente (filtro por grupo)"
+
+#: ../../include/class/NetworkMap.class.php:3289
+msgid "Add fictional node"
+msgstr "Añadir nodo ficticio"
+
+#: ../../include/class/NetworkMap.class.php:3299
+msgid "Add fictional point"
+msgstr "Añadir punto ficticio"
+
+#: ../../include/class/NetworkMap.class.php:3513
+msgid "Open Minimap"
+msgstr "Abrir Minimapa"
+
+#: ../../include/class/NetworkMap.class.php:3519
+msgid "Hide Labels"
+msgstr "Ocultar etiquetas"
+
+#: ../../include/class/TreeGroupEdition.class.php:164
+#: ../../enterprise/meta/event/custom_events.php:249
+#: ../../enterprise/meta/monitoring/custom_fields_view.php:1151
+#: ../../godmode/events/custom_events.php:204
+#: ../../godmode/agentes/status_monitor_custom_fields.php:241
+msgid "Confirm"
+msgstr "Confirmar"
+
+#: ../../include/functions_network_components.php:590
+#: ../../include/functions_alerts.php:1121
+#: ../../enterprise/include/functions_local_components.php:354
+msgid "Copy of"
+msgstr "Copia de"
 
 #: ../../include/lib/Group.php:299
 #, php-format
 msgid "Failed to save group %s"
 msgstr "Error al guardar el %s de grupo"
 
+#: ../../include/lib/View.php:69
+#, php-format
+msgid "View %s not found"
+msgstr "Vista %s no encontrada"
+
+#: ../../include/lib/Agent.php:349 ../../include/lib/Module.php:1170
+#: ../../include/lib/Entity.php:303 ../../enterprise/include/lib/Service.php:397
+#: ../../enterprise/include/lib/Service.php:734
+#: ../../enterprise/include/lib/Service.php:879
+#: ../../enterprise/include/lib/Metaconsole/Node.php:1414
+#: ../../enterprise/include/lib/Metaconsole/Synchronizer.php:399
+#: ../../enterprise/include/lib/ServiceElement.php:390
+#: ../../enterprise/include/lib/ServiceElement.php:921
+#: ../../enterprise/include/lib/ServiceElement.php:963
+#: ../../enterprise/include/lib/ServiceElement.php:1005
+#: ../../enterprise/include/lib/ServiceElement.php:1111
+#: ../../enterprise/include/lib/ServiceElement.php:1153
+#, php-format
+msgid "Cannot connect to node %d"
+msgstr "No se puede conectar al nodo %d"
+
+#: ../../include/lib/Module.php:256
+msgid " error: Module has no agent assigned."
+msgstr " error: El módulo no tiene agente asignado"
+
+#: ../../include/lib/Module.php:803 ../../enterprise/include/lib/Policy.php:1193
+#: ../../enterprise/include/lib/Policy/Module.php:201
+#, php-format
+msgid "Module already exists: \"%s\""
+msgstr "El módulo ya existe: \"%s\""
+
+#: ../../include/lib/Module.php:1037
+msgid "Module name empty."
+msgstr "Nombre de módulo vacío."
+
+#: ../../include/lib/Module.php:1043
+msgid "Invalid characters in module name"
+msgstr "Caracteres no válidos en el nombre del módulo"
+
+#: ../../include/lib/Module.php:1049
+msgid "Module already exists please select another name or agent."
+msgstr "Este módulo ya existe. Seleccione otro nombre o agente."
+
+#: ../../include/lib/Module.php:1055
+msgid "Insufficent permissions to perform this action"
+msgstr "Permisos insuficientes para llevar a cabo esta acción"
+
+#: ../../include/lib/Module.php:1062
+#, php-format
+msgid "Error while processing: %s"
+msgstr "Error al procesar: %s"
+
 #: ../../include/lib/Dashboard/Manager.php:599
 #, php-format
 msgid "Copy of %s"
@@ -48654,180 +18723,32 @@ msgstr "Error al crear o actualizar el panel de control"
 msgid "Icon image dashboard"
 msgstr "Panel de control de imágenes de iconos"
 
-#: ../../include/lib/Dashboard/Widget.php:450
-#: ../../include/lib/Dashboard/Widgets/maps_made_by_user.php:227
-#: ../../include/lib/Dashboard/Widgets/maps_made_by_user.php:311
-#: ../../include/lib/Dashboard/Widgets/reports.php:274
-#, php-format
-msgid "Failed to connect to node %d"
-msgstr "No se ha podido conectar con el nodo %d"
-
-#: ../../include/lib/Dashboard/Widget.php:465
-#: ../../include/lib/Dashboard/Widgets/agent_module.php:640
-msgid "Please configure this widget before usage"
-msgstr "Por favor, configura este widget antes de usarlo."
-
-#: ../../include/lib/Dashboard/Widget.php:473
-msgid "Widget cannot be loaded"
-msgstr "El widget no se puede cargar."
-
-#: ../../include/lib/Dashboard/Widget.php:477
-msgid "Please, configure the widget again to recover it"
-msgstr "Por favor, configura el widget otra vez para recuperarlo."
-
-#: ../../include/lib/Dashboard/Widgets/module_value.php:173
-#: ../../include/lib/Dashboard/Widgets/module_value.php:433
-msgid "Module value"
-msgstr "Valor del módulo"
+#: ../../include/lib/Dashboard/Widgets/sla_percent.php:174
+#: ../../include/lib/Dashboard/Widgets/sla_percent.php:482
+msgid "SLA percentage"
+msgstr "Porcentaje SLA"
 
+#: ../../include/lib/Dashboard/Widgets/sla_percent.php:344
 #: ../../include/lib/Dashboard/Widgets/module_value.php:325
 #: ../../include/lib/Dashboard/Widgets/module_icon.php:411
-#: ../../include/lib/Dashboard/Widgets/sla_percent.php:344
 msgid "Text size of value in px"
 msgstr "Tamaño de texto del valor en píxels"
 
+#: ../../include/lib/Dashboard/Widgets/sla_percent.php:356
+#: ../../include/lib/Dashboard/Widgets/module_table_value.php:301
 #: ../../include/lib/Dashboard/Widgets/module_value.php:337
+#: ../../include/lib/Dashboard/Widgets/module_status.php:401
 #: ../../include/lib/Dashboard/Widgets/graph_module_histogram.php:335
 #: ../../include/lib/Dashboard/Widgets/module_icon.php:423
-#: ../../include/lib/Dashboard/Widgets/module_table_value.php:301
-#: ../../include/lib/Dashboard/Widgets/sla_percent.php:356
-#: ../../include/lib/Dashboard/Widgets/module_status.php:401
 msgid "Text size of label in px"
 msgstr "Tamaño de texto de la etiqueta en píxels"
 
-#: ../../include/lib/Dashboard/Widgets/system_group_status.php:158
-#: ../../include/lib/Dashboard/Widgets/system_group_status.php:622
-msgid "Groups status"
-msgstr "Estado de los grupos"
-
-#: ../../include/lib/Dashboard/Widgets/system_group_status.php:314
-msgid "Alert Fired"
-msgstr "Alerta disparada"
-
-#: ../../include/lib/Dashboard/Widgets/system_group_status.php:522
-msgid "Modules in normal status"
-msgstr "Módulos en estado normal"
-
-#: ../../include/lib/Dashboard/Widgets/system_group_status.php:538
-msgid "Modules in warning status"
-msgstr "Modulos en estado de advertencia"
-
-#: ../../include/lib/Dashboard/Widgets/system_group_status.php:555
-msgid "Modules in critical status"
-msgstr "Módulos en estado crítico"
-
-#: ../../include/lib/Dashboard/Widgets/system_group_status.php:601
-msgid "No modules in selected groups"
-msgstr "No hay módulos en los grupos seleccionados"
-
-#: ../../include/lib/Dashboard/Widgets/top_n_events_by_group.php:163
-#: ../../include/lib/Dashboard/Widgets/top_n_events_by_group.php:506
-msgid "Top N events by agent"
-msgstr "Primeros N eventos por agente"
-
-#: ../../include/lib/Dashboard/Widgets/top_n_events_by_group.php:258
-#: ../../include/lib/Dashboard/Widgets/top_n_events_by_module.php:258
-msgid "Amount to show"
-msgstr "Cantidad a mostrar"
-
-#: ../../include/lib/Dashboard/Widgets/top_n_events_by_group.php:318
-#: ../../include/lib/Dashboard/Widgets/top_n_events_by_module.php:318
-msgid "No legend"
-msgstr "Sin leyenda"
-
-#: ../../include/lib/Dashboard/Widgets/top_n_events_by_group.php:322
-#: ../../include/lib/Dashboard/Widgets/top_n_events_by_module.php:322
-msgid "Legend Position"
-msgstr "Posición de la leyenda"
-
-#: ../../include/lib/Dashboard/Widgets/top_n_events_by_group.php:375
-#: ../../include/lib/Dashboard/Widgets/top_n_events_by_module.php:373
-msgid "Please select one or more groups."
-msgstr "Por favor, selecciona uno o más grupos"
-
-#: ../../include/lib/Dashboard/Widgets/top_n_events_by_group.php:423
-#: ../../include/lib/Dashboard/Widgets/top_n_events_by_module.php:427
-msgid "There is not data to show."
-msgstr "No hay datos que mostrar."
-
-#: ../../include/lib/Dashboard/Widgets/service_view.php:190
-msgid "Service View"
-msgstr "Vista de servicio"
-
-#: ../../include/lib/Dashboard/Widgets/service_view.php:246
-msgid "Tree"
-msgstr "Árbol"
-
-#: ../../include/lib/Dashboard/Widgets/service_view.php:298
-#: ../../include/lib/Dashboard/Widgets/service_map.php:347
-msgid "The user doesn't have permission to read agents"
-msgstr "El usuario no tiene permiso de lectura para agentes"
-
-#: ../../include/lib/Dashboard/Widgets/service_view.php:456
-msgid "Services view"
-msgstr "Vista de servicios"
-
-#: ../../include/lib/Dashboard/Widgets/wux_transaction_stats.php:172
-#: ../../include/lib/Dashboard/Widgets/wux_transaction_stats.php:378
-msgid "WUX transaction stats"
-msgstr "Estadísticas de transacciones WUX"
-
-#: ../../include/lib/Dashboard/Widgets/wux_transaction_stats.php:270
-#: ../../include/lib/Dashboard/Widgets/wux_transaction.php:259
-msgid "Wux transaction"
-msgstr "Transacción WUX"
-
-#: ../../include/lib/Dashboard/Widgets/wux_transaction_stats.php:288
-msgid "View all statistics"
-msgstr "Ver todas las estadísticas"
-
-#: ../../include/lib/Dashboard/Widgets/top_n.php:163
-#: ../../include/lib/Dashboard/Widgets/top_n.php:499
-msgid "Top N of agent modules"
-msgstr "Primeros N módulos de agente"
-
-#: ../../include/lib/Dashboard/Widgets/top_n.php:222
-msgid ""
-"Case insensitive regular expression or string for module name. For example: ."
-"*usage.* will match: cpu_usage, vram usage."
-msgstr ""
-"Expresión regular o cadena para el nombre del módulo que diferencia entre "
-"mayúsculas y minúsculas. Por ejemplo: .*usage.* coincidirá con: cpu_usage o "
-"vram usage."
-
-#: ../../include/lib/Dashboard/Widgets/top_n.php:280
-msgid "Avg."
-msgstr "Media"
-
-#: ../../include/lib/Dashboard/Widgets/top_n.php:448
-msgid "There are no agents/modules found matching filter set"
-msgstr ""
-"No se han encontrado agentes/módulos que coincidan con los filtros establecidos"
-
-#: ../../include/lib/Dashboard/Widgets/graph_module_histogram.php:175
-#: ../../include/lib/Dashboard/Widgets/graph_module_histogram.php:431
-msgid "Module histogram"
-msgstr "Histograma de módulo"
-
-#: ../../include/lib/Dashboard/Widgets/module_icon.php:178
-#: ../../include/lib/Dashboard/Widgets/module_icon.php:540
-msgid "Icon and module value"
-msgstr "Valor de módulo e icono"
-
-#: ../../include/lib/Dashboard/Widgets/module_icon.php:435
-#: ../../include/lib/Dashboard/Widgets/module_status.php:413
-msgid "Size of icon"
-msgstr "Tamaño del icono"
-
-#: ../../include/lib/Dashboard/Widgets/post.php:158
-#: ../../include/lib/Dashboard/Widgets/post.php:276
-msgid "Panel with a message"
-msgstr "Panel con un mensaje"
-
-#: ../../include/lib/Dashboard/Widgets/reports.php:164
-#: ../../include/lib/Dashboard/Widgets/reports.php:441
-msgid "Custom report"
-msgstr "Informe personalizado"
+#: ../../include/lib/Dashboard/Widgets/sla_percent.php:413
+#: ../../include/lib/Dashboard/Widgets/sla_percent.php:424
+#: ../../include/lib/Dashboard/Widgets/agent_module.php:665
+#: ../../include/lib/Dashboard/Widgets/events_list.php:518
+msgid "You don't have access"
+msgstr "No tienes acceso"
 
 #: ../../include/lib/Dashboard/Widgets/module_table_value.php:175
 msgid "Show module value in a table"
@@ -48865,143 +18786,73 @@ msgstr "Separador de datos"
 msgid "Module in a table"
 msgstr "Módulo en una tabla"
 
-#: ../../include/lib/Dashboard/Widgets/single_graph.php:170
-#: ../../include/lib/Dashboard/Widgets/single_graph.php:394
-msgid "Agent module graph"
-msgstr "Gráfica de módulo de agente"
+#: ../../include/lib/Dashboard/Widgets/module_value.php:173
+#: ../../include/lib/Dashboard/Widgets/module_value.php:433
+msgid "Module value"
+msgstr "Valor del módulo"
 
-#: ../../include/lib/Dashboard/Widgets/single_graph.php:295
-#: ../../include/lib/Dashboard/Widgets/custom_graph.php:339
-#: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:672
-msgid "Show legend"
-msgstr "Mostrar leyenda"
+#: ../../include/lib/Dashboard/Widgets/top_n_events_by_group.php:163
+#: ../../include/lib/Dashboard/Widgets/top_n_events_by_group.php:506
+msgid "Top N events by agent"
+msgstr "Primeros N eventos por agente"
 
-#: ../../include/lib/Dashboard/Widgets/network_map.php:258
-msgid "It is recommended to have only one such widget in the control panel."
-msgstr "Se recomienda tener solo uno de estos widgets en el panel de control."
+#: ../../include/lib/Dashboard/Widgets/top_n_events_by_group.php:258
+#: ../../include/lib/Dashboard/Widgets/top_n_events_by_module.php:258
+msgid "Amount to show"
+msgstr "Cantidad a mostrar"
 
-#: ../../include/lib/Dashboard/Widgets/network_map.php:335
-msgid "Introduce x-axis data. Right=positive Left=negative"
-msgstr "Introducir datos en el eje X. Derecha = positivo / Izquierda = negativo."
+#: ../../include/lib/Dashboard/Widgets/top_n_events_by_group.php:317
+#: ../../include/lib/Dashboard/Widgets/top_n_events_by_module.php:317
+#: ../../include/rest-api/models/VisualConsole/Item.php:1957
+#: ../../godmode/setup/gis_step_2.php:350
+msgid "Bottom"
+msgstr "Inferior"
 
-#: ../../include/lib/Dashboard/Widgets/network_map.php:339
-msgid "X offset"
-msgstr "Desplazamiento en X"
+#: ../../include/lib/Dashboard/Widgets/top_n_events_by_group.php:318
+#: ../../include/lib/Dashboard/Widgets/top_n_events_by_module.php:318
+msgid "No legend"
+msgstr "Sin leyenda"
 
-#: ../../include/lib/Dashboard/Widgets/network_map.php:350
-msgid "Introduce Y-axis data. Top=positive Bottom=negative"
-msgstr "Introducir datos en el eje Y. Arriba = positivo / Abajo = negativo"
+#: ../../include/lib/Dashboard/Widgets/top_n_events_by_group.php:322
+#: ../../include/lib/Dashboard/Widgets/top_n_events_by_module.php:322
+msgid "Legend Position"
+msgstr "Posición de la leyenda"
 
-#: ../../include/lib/Dashboard/Widgets/network_map.php:354
-msgid "Y offset"
-msgstr "Desplazamiento en Y"
+#: ../../include/lib/Dashboard/Widgets/top_n_events_by_group.php:375
+#: ../../include/lib/Dashboard/Widgets/top_n_events_by_module.php:373
+msgid "Please select one or more groups."
+msgstr "Por favor, selecciona uno o más grupos"
 
-#: ../../include/lib/Dashboard/Widgets/network_map.php:378
-msgid "Zoom level"
-msgstr "Nivel de zoom"
+#: ../../include/lib/Dashboard/Widgets/top_n_events_by_group.php:423
+#: ../../include/lib/Dashboard/Widgets/top_n_events_by_module.php:427
+msgid "There is not data to show."
+msgstr "No hay datos que mostrar."
 
-#: ../../include/lib/Dashboard/Widgets/service_map.php:280
-msgid ""
-"ZOOM functionality is only available when there is only one such widget in the "
-"dashboard"
-msgstr ""
-"La funcionalidad ZOOM solo está disponible cuando solo hay un widget en el "
-"panel de control"
+#: ../../include/lib/Dashboard/Widgets/top_n_events_by_group.php:483
+#: ../../include/lib/Dashboard/Widgets/top_n_events_by_module.php:518
+#: ../../include/functions_graph.php:2649 ../../include/functions_graph.php:2785
+#: ../../include/functions_graph.php:2883 ../../include/functions_graph.php:3344
+#: ../../include/functions_graph.php:3918
+#: ../../include/functions_reporting.php:1802
+#: ../../include/functions_reporting.php:2049
+#: ../../include/functions_reporting.php:2075
+#: ../../include/functions_reporting.php:2102
+#: ../../include/functions_reporting.php:2130
+#: ../../include/functions_reporting.php:3482
+#: ../../include/functions_reporting.php:3853
+#: ../../include/functions_reporting.php:3881
+#: ../../include/functions_reporting.php:3909
+#: ../../include/functions_reporting.php:4882
+#: ../../include/functions_reporting.php:10488
+#: ../../include/functions_reporting.php:10516
+#: ../../include/functions_reporting.php:10544
+msgid "other"
+msgstr "otro"
 
-#: ../../include/lib/Dashboard/Widgets/service_map.php:358
-msgid "Missing Service id"
-msgstr "Falta el ID de servicio"
-
-#: ../../include/lib/Dashboard/Widgets/sla_percent.php:174
-#: ../../include/lib/Dashboard/Widgets/sla_percent.php:482
-msgid "SLA percentage"
-msgstr "Porcentaje SLA"
-
-#: ../../include/lib/Dashboard/Widgets/sla_percent.php:413
-#: ../../include/lib/Dashboard/Widgets/sla_percent.php:424
-#: ../../include/lib/Dashboard/Widgets/events_list.php:518
-#: ../../include/lib/Dashboard/Widgets/agent_module.php:665
-msgid "You don't have access"
-msgstr "No tienes acceso"
-
-#: ../../include/lib/Dashboard/Widgets/tactical.php:262
-msgid "Status and Monitor checks"
-msgstr "Comprobaciones de estado y monitor"
-
-#: ../../include/lib/Dashboard/Widgets/custom_graph.php:168
-#: ../../include/lib/Dashboard/Widgets/custom_graph.php:521
-msgid "Defined custom graph"
-msgstr "Gráfica personalizada definida"
-
-#: ../../include/lib/Dashboard/Widgets/custom_graph.php:294
-msgid "This graph has been deleted."
-msgstr "Se ha eliminado esta gráfica."
-
-#: ../../include/lib/Dashboard/Widgets/url.php:158
-#: ../../include/lib/Dashboard/Widgets/url.php:286
-msgid "URL content"
-msgstr "Contenido de la URL"
-
-#: ../../include/lib/Dashboard/Widgets/url.php:263
-msgid "Please, configure this widget before use"
-msgstr "Por favor, configura este widget antes de usarlo."
-
-#: ../../include/lib/Dashboard/Widgets/groups_status.php:158
-#: ../../include/lib/Dashboard/Widgets/groups_status.php:481
-msgid "General group status"
-msgstr "Estado general de grupo"
-
-#: ../../include/lib/Dashboard/Widgets/groups_status.php:435
-msgid "Not agents in this group"
-msgstr "No hay agentes en este grupo"
-
-#: ../../include/lib/Dashboard/Widgets/wux_transaction.php:169
-#: ../../include/lib/Dashboard/Widgets/wux_transaction.php:418
-msgid "Agent WUX transaction"
-msgstr "Transacción de agente WUX"
-
-#: ../../include/lib/Dashboard/Widgets/wux_transaction.php:370
-#: ../../include/lib/Dashboard/Widgets/wux_transaction.php:375
-msgid "Global status"
-msgstr "Estado global"
-
-#: ../../include/lib/Dashboard/Widgets/tree_view.php:341
-msgid "Type tree"
-msgstr "Tipo de árbol"
-
-#: ../../include/lib/Dashboard/Widgets/tree_view.php:373
-msgid "Open all groups"
-msgstr "Abrir todos los grupos"
-
-#: ../../include/lib/Dashboard/Widgets/tree_view.php:393
-msgid "Agents status"
-msgstr "Estado de agente"
-
-#: ../../include/lib/Dashboard/Widgets/tree_view.php:427
-msgid "Modules status"
-msgstr "Estado de módulos"
-
-#: ../../include/lib/Dashboard/Widgets/tree_view.php:439
-#: ../../include/lib/Dashboard/Widgets/agent_module.php:250
-msgid "Filter modules"
-msgstr "Filtrar módulos"
-
-#: ../../include/lib/Dashboard/Widgets/tree_view.php:493
-#, php-format
-msgid ""
-"The user doesn't have permission to read agents. Please contact with your %s "
-"administrator."
-msgstr ""
-"El usuario no tiene permisos para leer agentes. Póngase en contacto con su "
-"administrador de %s."
-
-#: ../../include/lib/Dashboard/Widgets/clock.php:216
-msgid "Analogic"
-msgstr "Analógico"
-
-#: ../../include/lib/Dashboard/Widgets/clock.php:217
-msgid "Digital"
-msgstr "Digital"
+#: ../../include/lib/Dashboard/Widgets/top_n_events_by_module.php:163
+#: ../../include/lib/Dashboard/Widgets/top_n_events_by_module.php:541
+msgid "Top N events by module"
+msgstr "N primeros eventos por módulo"
 
 #: ../../include/lib/Dashboard/Widgets/maps_status.php:158
 #: ../../include/lib/Dashboard/Widgets/maps_status.php:388
@@ -49012,55 +18863,145 @@ msgstr "Informe de mapas visuales general"
 msgid "Maps"
 msgstr "Mapas"
 
-#: ../../include/lib/Dashboard/Widgets/events_list.php:175
-#: ../../include/lib/Dashboard/Widgets/events_list.php:810
-msgid "List of latest events"
-msgstr "Lista de últimos eventos"
+#: ../../include/lib/Dashboard/Widgets/maps_status.php:360
+#: ../../godmode/massive/massive_edit_agents.php:981
+msgid "Bad"
+msgstr "Mal"
 
-#: ../../include/lib/Dashboard/Widgets/events_list.php:294
-msgid "Custom filters"
-msgstr "Filtros personalizados"
+#: ../../include/lib/Dashboard/Widgets/url.php:158
+#: ../../include/lib/Dashboard/Widgets/url.php:286
+msgid "URL content"
+msgstr "Contenido de la URL"
 
-#: ../../include/lib/Dashboard/Widgets/events_list.php:359
-msgid "Limit"
-msgstr "Límite"
+#: ../../include/lib/Dashboard/Widgets/url.php:216
+#: ../../include/functions_reporting.php:6785
+#: ../../enterprise/meta/include/functions_wizard_meta.php:645
+#: ../../enterprise/meta/monitoring/wizard/wizard.php:151
+#: ../../godmode/tag/edit_tag.php:227
+msgid "Url"
+msgstr "URL"
 
-#: ../../include/lib/Dashboard/Widgets/events_list.php:374
-msgid "Only pending"
-msgstr "Solo pendientes"
+#: ../../include/lib/Dashboard/Widgets/url.php:263
+msgid "Please, configure this widget before use"
+msgstr "Por favor, configura este widget antes de usarlo."
 
-#: ../../include/lib/Dashboard/Widgets/events_list.php:511
-#: ../../include/lib/Dashboard/Widgets/alerts_fired.php:342
-msgid "You must select some group"
-msgstr "Seleccione un grupo"
+#: ../../include/lib/Dashboard/Widgets/wux_transaction.php:169
+#: ../../include/lib/Dashboard/Widgets/wux_transaction.php:418
+msgid "Agent WUX transaction"
+msgstr "Transacción de agente WUX"
 
-#: ../../include/lib/Dashboard/Widgets/events_list.php:792
-msgid "There are no events matching selected search filters"
-msgstr "No hay eventos que coincidan con los filtros seleccionados"
+#: ../../include/lib/Dashboard/Widgets/wux_transaction.php:259
+#: ../../include/lib/Dashboard/Widgets/wux_transaction_stats.php:270
+msgid "Wux transaction"
+msgstr "Transacción WUX"
 
-#: ../../include/lib/Dashboard/Widgets/top_n_events_by_module.php:163
-#: ../../include/lib/Dashboard/Widgets/top_n_events_by_module.php:541
-msgid "Top N events by module"
-msgstr "N primeros eventos por módulo"
+#: ../../include/lib/Dashboard/Widgets/wux_transaction.php:320
+#: ../../enterprise/operation/agentes/wux_console_view.php:75
+msgid "No wux transaction selected."
+msgstr "Ninguna transacción WUX seleccionada"
 
-#: ../../include/lib/Dashboard/Widgets/agent_module.php:173
-#: ../../include/lib/Dashboard/Widgets/agent_module.php:840
-msgid "Agent/Module View"
-msgstr "Vista de Agente/Módulo"
+#: ../../include/lib/Dashboard/Widgets/wux_transaction.php:370
+#: ../../include/lib/Dashboard/Widgets/wux_transaction.php:375
+msgid "Global status"
+msgstr "Estado global"
+
+#: ../../include/lib/Dashboard/Widgets/wux_transaction.php:398
+#: ../../enterprise/operation/agentes/wux_console_view.php:149
+msgid "Phase modules not found"
+msgstr "Fase de módulo no encontrada"
+
+#: ../../include/lib/Dashboard/Widgets/reports.php:164
+#: ../../include/lib/Dashboard/Widgets/reports.php:441
+msgid "Custom report"
+msgstr "Informe personalizado"
+
+#: ../../include/lib/Dashboard/Widgets/reports.php:274
+#: ../../include/lib/Dashboard/Widgets/maps_made_by_user.php:227
+#: ../../include/lib/Dashboard/Widgets/maps_made_by_user.php:311
+#: ../../include/lib/Dashboard/Widget.php:450
+#, php-format
+msgid "Failed to connect to node %d"
+msgstr "No se ha podido conectar con el nodo %d"
+
+#: ../../include/lib/Dashboard/Widgets/custom_graph.php:168
+#: ../../include/lib/Dashboard/Widgets/custom_graph.php:521
+msgid "Defined custom graph"
+msgstr "Gráfica personalizada definida"
+
+#: ../../include/lib/Dashboard/Widgets/custom_graph.php:294
+msgid "This graph has been deleted."
+msgstr "Se ha eliminado esta gráfica."
+
+#: ../../include/lib/Dashboard/Widgets/custom_graph.php:339
+#: ../../include/lib/Dashboard/Widgets/single_graph.php:295
+#: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:672
+msgid "Show legend"
+msgstr "Mostrar leyenda"
 
 #: ../../include/lib/Dashboard/Widgets/monitor_health.php:158
 #: ../../include/lib/Dashboard/Widgets/monitor_health.php:337
 msgid "Global health info"
 msgstr "Información del estado global"
 
-#: ../../include/lib/Dashboard/Widgets/alerts_fired.php:162
-#: ../../include/lib/Dashboard/Widgets/alerts_fired.php:360
-msgid "Triggered alerts report"
-msgstr "Informe de alertas disparadas"
+#: ../../include/lib/Dashboard/Widgets/system_group_status.php:158
+#: ../../include/lib/Dashboard/Widgets/system_group_status.php:622
+msgid "Groups status"
+msgstr "Estado de los grupos"
 
-#: ../../include/lib/Dashboard/Widgets/alerts_fired.php:333
-msgid "Not alert fired"
-msgstr "No hay alertas disparadas"
+#: ../../include/lib/Dashboard/Widgets/system_group_status.php:314
+msgid "Alert Fired"
+msgstr "Alerta disparada"
+
+#: ../../include/lib/Dashboard/Widgets/system_group_status.php:522
+msgid "Modules in normal status"
+msgstr "Módulos en estado normal"
+
+#: ../../include/lib/Dashboard/Widgets/system_group_status.php:538
+msgid "Modules in warning status"
+msgstr "Modulos en estado de advertencia"
+
+#: ../../include/lib/Dashboard/Widgets/system_group_status.php:555
+msgid "Modules in critical status"
+msgstr "Módulos en estado crítico"
+
+#: ../../include/lib/Dashboard/Widgets/system_group_status.php:601
+msgid "No modules in selected groups"
+msgstr "No hay módulos en los grupos seleccionados"
+
+#: ../../include/lib/Dashboard/Widgets/single_graph.php:170
+#: ../../include/lib/Dashboard/Widgets/single_graph.php:394
+msgid "Agent module graph"
+msgstr "Gráfica de módulo de agente"
+
+#: ../../include/lib/Dashboard/Widgets/tactical.php:262
+msgid "Status and Monitor checks"
+msgstr "Comprobaciones de estado y monitor"
+
+#: ../../include/lib/Dashboard/Widgets/tactical.php:274
+#: ../../include/functions_reporting.php:13939
+msgid "Server performance"
+msgstr "Rendimiento del servidor"
+
+#: ../../include/lib/Dashboard/Widgets/tactical.php:286
+#: ../../include/functions_netflow.php:1183
+#: ../../include/functions_reporting_html.php:4530
+#: ../../include/functions_reporting_html.php:4800
+#: ../../include/functions_reporting_html.php:4937
+#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:453
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3083
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3130
+#: ../../godmode/wizards/DiscoveryTaskList.class.php:1417
+msgid "Summary"
+msgstr "Lista de agentes"
+
+#: ../../include/lib/Dashboard/Widgets/groups_status.php:158
+#: ../../include/lib/Dashboard/Widgets/groups_status.php:481
+msgid "General group status"
+msgstr "Estado general de grupo"
+
+#: ../../include/lib/Dashboard/Widgets/groups_status.php:435
+msgid "Not agents in this group"
+msgstr "No hay agentes en este grupo"
 
 #: ../../include/lib/Dashboard/Widgets/example.php:158
 #: ../../include/lib/Dashboard/Widgets/example.php:277
@@ -49103,68 +19044,3953 @@ msgstr ""
 msgid "Thanks for using %s."
 msgstr "Gracias por usar %s."
 
-#: ../../include/lib/Module.php:256
-msgid " error: Module has no agent assigned."
-msgstr " error: El módulo no tiene agente asignado"
+#: ../../include/lib/Dashboard/Widgets/post.php:158
+#: ../../include/lib/Dashboard/Widgets/post.php:276
+msgid "Panel with a message"
+msgstr "Panel con un mensaje"
 
-#: ../../include/lib/Module.php:1032
-msgid "Module name empty."
-msgstr "Nombre de módulo vacío."
+#: ../../include/lib/Dashboard/Widgets/clock.php:216
+msgid "Analogic"
+msgstr "Analógico"
 
-#: ../../include/lib/Module.php:1038
-msgid "Invalid characters in module name"
-msgstr "Caracteres no válidos en el nombre del módulo"
+#: ../../include/lib/Dashboard/Widgets/clock.php:217
+msgid "Digital"
+msgstr "Digital"
 
-#: ../../include/lib/Module.php:1044
-msgid "Module already exists please select another name or agent."
-msgstr "Este módulo ya existe. Seleccione otro nombre o agente."
+#: ../../include/lib/Dashboard/Widgets/module_status.php:413
+#: ../../include/lib/Dashboard/Widgets/module_icon.php:435
+msgid "Size of icon"
+msgstr "Tamaño del icono"
 
-#: ../../include/lib/Module.php:1050
-msgid "Insufficent permissions to perform this action"
-msgstr "Permisos insuficientes para llevar a cabo esta acción"
+#: ../../include/lib/Dashboard/Widgets/graph_module_histogram.php:175
+#: ../../include/lib/Dashboard/Widgets/graph_module_histogram.php:431
+msgid "Module histogram"
+msgstr "Histograma de módulo"
 
-#: ../../include/lib/Module.php:1057
+#: ../../include/lib/Dashboard/Widgets/alerts_fired.php:162
+#: ../../include/lib/Dashboard/Widgets/alerts_fired.php:360
+msgid "Triggered alerts report"
+msgstr "Informe de alertas disparadas"
+
+#: ../../include/lib/Dashboard/Widgets/alerts_fired.php:333
+msgid "Not alert fired"
+msgstr "No hay alertas disparadas"
+
+#: ../../include/lib/Dashboard/Widgets/alerts_fired.php:342
+#: ../../include/lib/Dashboard/Widgets/events_list.php:511
+msgid "You must select some group"
+msgstr "Seleccione un grupo"
+
+#: ../../include/lib/Dashboard/Widgets/agent_module.php:173
+#: ../../include/lib/Dashboard/Widgets/agent_module.php:840
+msgid "Agent/Module View"
+msgstr "Vista de Agente/Módulo"
+
+#: ../../include/lib/Dashboard/Widgets/agent_module.php:250
+#: ../../include/lib/Dashboard/Widgets/tree_view.php:439
+msgid "Filter modules"
+msgstr "Filtrar módulos"
+
+#: ../../include/lib/Dashboard/Widgets/agent_module.php:255
+#: ../../extensions/agents_modules.php:396
+#: ../../godmode/reporting/reporting_builder.item_editor.php:1854
+msgid "Show module status"
+msgstr "Mostrar el estado del módulo"
+
+#: ../../include/lib/Dashboard/Widgets/agent_module.php:256
+#: ../../extensions/agents_modules.php:397
+#: ../../godmode/reporting/reporting_builder.item_editor.php:1855
+msgid "Show module data"
+msgstr "Mostrar datos del módulo"
+
+#: ../../include/lib/Dashboard/Widgets/agent_module.php:265
+#: ../../extensions/agents_modules.php:400
+#: ../../godmode/reporting/reporting_builder.item_editor.php:1850
+msgid "Information to be shown"
+msgstr "Información que debe mostrarse"
+
+#: ../../include/lib/Dashboard/Widgets/agent_module.php:536
+#: ../../include/functions_reporting_html.php:1978
+#: ../../enterprise/include/functions_reporting_pdf.php:946
 #, php-format
-msgid "Error while processing: %s"
-msgstr "Error al procesar: %s"
+msgid "%s in %s : NORMAL"
+msgstr "%s en %s : NORMAL"
 
-#: ../../include/lib/View.php:69
+#: ../../include/lib/Dashboard/Widgets/agent_module.php:552
+#: ../../include/functions_reporting_html.php:1890
+#: ../../enterprise/include/functions_reporting_pdf.php:963
 #, php-format
-msgid "View %s not found"
-msgstr "Vista %s no encontrada"
+msgid "%s in %s : CRITICAL"
+msgstr "%s en %s : CRÍTICO"
 
-#: ../../include/graphs/export_data.php:88
-#: ../../include/graphs/export_data.php:154
-msgid "An error occured exporting the data"
-msgstr "Error al exportar los datos"
+#: ../../include/lib/Dashboard/Widgets/agent_module.php:568
+#: ../../include/functions_reporting_html.php:1907
+#: ../../enterprise/include/functions_reporting_pdf.php:980
+#, php-format
+msgid "%s in %s : WARNING"
+msgstr "%s en %s : ADVERTENCIA"
 
-#: ../../include/graphs/functions_flot.php:365
-msgid "Cancel zoom"
-msgstr "Cancelar el zoom"
+#: ../../include/lib/Dashboard/Widgets/agent_module.php:584
+#: ../../include/functions_reporting_html.php:1924
+#: ../../enterprise/include/functions_reporting_pdf.php:997
+#, php-format
+msgid "%s in %s : UNKNOWN"
+msgstr "%s en %s : DESCONOCIDO"
 
-#: ../../include/graphs/functions_flot.php:367
-msgid "Warning and Critical thresholds"
-msgstr "Umbrales de advertencia y crítico"
+#: ../../include/lib/Dashboard/Widgets/agent_module.php:600
+#: ../../include/functions_reporting_html.php:1960
+#: ../../enterprise/include/functions_reporting_pdf.php:1014
+#, php-format
+msgid "%s in %s : Not initialize"
+msgstr "%s en %s : No iniciado"
 
-#: ../../include/graphs/functions_flot.php:372
-msgid "Overview graph"
-msgstr "Gráfico de vista general"
+#: ../../include/lib/Dashboard/Widgets/agent_module.php:617
+#: ../../include/functions_reporting_html.php:1943
+#: ../../enterprise/include/functions_reporting_pdf.php:1031
+#, php-format
+msgid "%s in %s : ALERTS FIRED"
+msgstr "%s en %s : ALERTA DISPARADA"
 
-#: ../../include/api.php:237
-msgid "User or group not specified"
-msgstr "Usuario o grupo no especificados"
+#: ../../include/lib/Dashboard/Widgets/agent_module.php:640
+#: ../../include/lib/Dashboard/Widget.php:465
+msgid "Please configure this widget before usage"
+msgstr "Por favor, configura este widget antes de usarlo."
 
-#: ../../include/api.php:238
-msgid "User, group not specified"
-msgstr "Usuario y grupo no especificados"
+#: ../../include/lib/Dashboard/Widgets/wux_transaction_stats.php:172
+#: ../../include/lib/Dashboard/Widgets/wux_transaction_stats.php:378
+msgid "WUX transaction stats"
+msgstr "Estadísticas de transacciones WUX"
 
-#: ../../include/api.php:269
-msgid "User, group or profile not specified"
-msgstr "Usuario, grupo o perfil no especificados"
+#: ../../include/lib/Dashboard/Widgets/wux_transaction_stats.php:288
+msgid "View all statistics"
+msgstr "Ver todas las estadísticas"
 
-#: ../../include/api.php:270
-msgid "User, group or profile status not specified"
-msgstr "Usuario, grupo o estado de perfil no especificados"
+#: ../../include/lib/Dashboard/Widgets/service_view.php:190
+msgid "Service View"
+msgstr "Vista de servicio"
+
+#: ../../include/lib/Dashboard/Widgets/service_view.php:246
+msgid "Tree"
+msgstr "Árbol"
+
+#: ../../include/lib/Dashboard/Widgets/service_view.php:247
+#: ../../enterprise/include/class/CommandCenter.class.php:453
+msgid "Table"
+msgstr "Tabla"
+
+#: ../../include/lib/Dashboard/Widgets/service_view.php:298
+#: ../../include/lib/Dashboard/Widgets/service_map.php:347
+msgid "The user doesn't have permission to read agents"
+msgstr "El usuario no tiene permiso de lectura para agentes"
+
+#: ../../include/lib/Dashboard/Widgets/service_view.php:456
+msgid "Services view"
+msgstr "Vista de servicios"
+
+#: ../../include/lib/Dashboard/Widgets/network_map.php:258
+msgid "It is recommended to have only one such widget in the control panel."
+msgstr "Se recomienda tener solo uno de estos widgets en el panel de control."
+
+#: ../../include/lib/Dashboard/Widgets/network_map.php:335
+msgid "Introduce x-axis data. Right=positive Left=negative"
+msgstr "Introducir datos en el eje X. Derecha = positivo / Izquierda = negativo."
+
+#: ../../include/lib/Dashboard/Widgets/network_map.php:339
+msgid "X offset"
+msgstr "Desplazamiento en X"
+
+#: ../../include/lib/Dashboard/Widgets/network_map.php:350
+msgid "Introduce Y-axis data. Top=positive Bottom=negative"
+msgstr "Introducir datos en el eje Y. Arriba = positivo / Abajo = negativo"
+
+#: ../../include/lib/Dashboard/Widgets/network_map.php:354
+msgid "Y offset"
+msgstr "Desplazamiento en Y"
+
+#: ../../include/lib/Dashboard/Widgets/network_map.php:378
+msgid "Zoom level"
+msgstr "Nivel de zoom"
+
+#: ../../include/lib/Dashboard/Widgets/service_map.php:192
+#: ../../enterprise/operation/services/services.service.php:63
+#: ../../enterprise/operation/services/services.service_map.php:71
+msgid "Service Map"
+msgstr "Mapa de servicio"
+
+#: ../../include/lib/Dashboard/Widgets/service_map.php:280
+msgid ""
+"ZOOM functionality is only available when there is only one such widget in the "
+"dashboard"
+msgstr ""
+"La funcionalidad ZOOM solo está disponible cuando solo hay un widget en el "
+"panel de control"
+
+#: ../../include/lib/Dashboard/Widgets/service_map.php:287
+#: ../../enterprise/include/functions_visual_map_editor.php:30
+#: ../../enterprise/include/functions_visual_map_editor.php:41
+#: ../../enterprise/include/functions_visual_map_editor.php:54
+#: ../../enterprise/include/functions_visual_map_editor.php:85
+#: ../../enterprise/include/functions_services.php:1712
+#: ../../enterprise/include/functions_reporting.php:6136
+#: ../../enterprise/include/functions_visual_map.php:539
+#: ../../enterprise/include/rest-api/models/VisualConsole/Items/Service.php:288
+#: ../../enterprise/godmode/services/services.elements.php:95
+#: ../../enterprise/godmode/services/services.elements.php:181
+#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:25
+#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:166
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3788
+msgid "Service"
+msgstr "Servicio"
+
+#: ../../include/lib/Dashboard/Widgets/service_map.php:358
+msgid "Missing Service id"
+msgstr "Falta el ID de servicio"
+
+#: ../../include/lib/Dashboard/Widgets/service_map.php:449
+#: ../../enterprise/operation/services/services.php:164
+#: ../../enterprise/godmode/services/services.elements.php:766
+#: ../../enterprise/godmode/services/services.service.php:457
+msgid "Service map"
+msgstr "Mapa del servicio"
+
+#: ../../include/lib/Dashboard/Widgets/events_list.php:175
+#: ../../include/lib/Dashboard/Widgets/events_list.php:810
+msgid "List of latest events"
+msgstr "Lista de últimos eventos"
+
+#: ../../include/lib/Dashboard/Widgets/events_list.php:294
+msgid "Custom filters"
+msgstr "Filtros personalizados"
+
+#: ../../include/lib/Dashboard/Widgets/events_list.php:359
+msgid "Limit"
+msgstr "Límite"
+
+#: ../../include/lib/Dashboard/Widgets/events_list.php:372
+#: ../../include/functions_events.php:3378
+#: ../../include/functions_events.php:3384
+#: ../../include/functions_events.php:3406
+msgid "All event"
+msgstr "Todos los eventos"
+
+#: ../../include/lib/Dashboard/Widgets/events_list.php:373
+#: ../../include/functions_events.php:3380
+#: ../../include/functions_events.php:3414
+msgid "Only validated"
+msgstr "Solo eventos validados"
+
+#: ../../include/lib/Dashboard/Widgets/events_list.php:374
+msgid "Only pending"
+msgstr "Solo pendientes"
+
+#: ../../include/lib/Dashboard/Widgets/events_list.php:436
+#: ../../include/functions_html.php:1248 ../../include/functions_html.php:1400
+#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:115
+#: ../../enterprise/godmode/policies/policy_agents.php:454
+#: ../../enterprise/godmode/policies/policy_agents.php:485
+#: ../../enterprise/godmode/policies/policy_agents.php:549
+#: ../../enterprise/godmode/policies/policy_agents.php:814
+#: ../../godmode/massive/massive_add_alerts.php:228
+#: ../../godmode/massive/massive_delete_modules.php:386
+#: ../../godmode/massive/massive_copy_modules.php:112
+#: ../../godmode/massive/massive_copy_modules.php:265
+#: ../../godmode/massive/massive_standby_alerts.php:200
+#: ../../godmode/massive/massive_add_action_alerts.php:209
+#: ../../godmode/massive/massive_edit_agents.php:520
+#: ../../godmode/massive/massive_delete_action_alerts.php:221
+#: ../../godmode/massive/massive_delete_alerts.php:305
+#: ../../godmode/massive/massive_delete_agents.php:199
+#: ../../godmode/massive/massive_enable_disable_alerts.php:171
+#: ../../godmode/massive/massive_edit_modules.php:370
+msgid "Group recursion"
+msgstr "Recursión de grupos"
+
+#: ../../include/lib/Dashboard/Widgets/events_list.php:792
+msgid "There are no events matching selected search filters"
+msgstr "No hay eventos que coincidan con los filtros seleccionados"
+
+#: ../../include/lib/Dashboard/Widgets/tree_view.php:341
+msgid "Type tree"
+msgstr "Tipo de árbol"
+
+#: ../../include/lib/Dashboard/Widgets/tree_view.php:373
+msgid "Open all groups"
+msgstr "Abrir todos los grupos"
+
+#: ../../include/lib/Dashboard/Widgets/tree_view.php:393
+msgid "Agents status"
+msgstr "Estado de agente"
+
+#: ../../include/lib/Dashboard/Widgets/tree_view.php:405
+#: ../../godmode/massive/massive_edit_modules.php:506
+msgid "Filter agents"
+msgstr "Filtrar agentes"
+
+#: ../../include/lib/Dashboard/Widgets/tree_view.php:427
+msgid "Modules status"
+msgstr "Estado de módulos"
+
+#: ../../include/lib/Dashboard/Widgets/tree_view.php:493
+#, php-format
+msgid ""
+"The user doesn't have permission to read agents. Please contact with your %s "
+"administrator."
+msgstr ""
+"El usuario no tiene permisos para leer agentes. Póngase en contacto con su "
+"administrador de %s."
+
+#: ../../include/lib/Dashboard/Widgets/module_icon.php:178
+#: ../../include/lib/Dashboard/Widgets/module_icon.php:540
+msgid "Icon and module value"
+msgstr "Valor de módulo e icono"
+
+#: ../../include/lib/Dashboard/Widgets/top_n.php:163
+#: ../../include/lib/Dashboard/Widgets/top_n.php:528
+msgid "Top N of agent modules"
+msgstr "Primeros N módulos de agente"
+
+#: ../../include/lib/Dashboard/Widgets/top_n.php:207
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2032
+msgid ""
+"Case insensitive regular expression for agent name. For example: Network.* "
+"will match with the following agent names: network_agent1, NetworK CHECKS"
+msgstr ""
+"Expresión regular no sensible a mayúsculas/minúsculas, para buscar el agente. "
+"Por ejemplo: Network.* coincidiría con los siguientes nombres de agentes: "
+"network_agent1, NetworK CHECKS"
+
+#: ../../include/lib/Dashboard/Widgets/top_n.php:222
+msgid ""
+"Case insensitive regular expression or string for module name. For example: ."
+"*usage.* will match: cpu_usage, vram usage."
+msgstr ""
+"Expresión regular o cadena para el nombre del módulo que diferencia entre "
+"mayúsculas y minúsculas. Por ejemplo: .*usage.* coincidirá con: cpu_usage o "
+"vram usage."
+
+#: ../../include/lib/Dashboard/Widgets/top_n.php:249
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2424
+#: ../../enterprise/godmode/reporting/reporting_builder.global.php:355
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2371
+msgid "Quantity (n)"
+msgstr "Cantidad (n)"
+
+#: ../../include/lib/Dashboard/Widgets/top_n.php:261
+#: ../../enterprise/operation/log/log_viewer.php:496
+#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:64
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:203
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2405
+#: ../../enterprise/godmode/reporting/reporting_builder.global.php:345
+#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:310
+#: ../../godmode/reporting/reporting_builder.item_editor.php:65
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2352
+msgid "Descending"
+msgstr "Descendente"
+
+#: ../../include/lib/Dashboard/Widgets/top_n.php:262
+#: ../../enterprise/operation/log/log_viewer.php:497
+#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:63
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:202
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2398
+#: ../../enterprise/godmode/reporting/reporting_builder.global.php:343
+#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:303
+#: ../../godmode/reporting/reporting_builder.item_editor.php:64
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2345
+msgid "Ascending"
+msgstr "Ascendente"
+
+#: ../../include/lib/Dashboard/Widgets/top_n.php:263
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2412
+#: ../../enterprise/godmode/reporting/reporting_builder.global.php:347
+#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:317
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2359
+msgid "By agent name"
+msgstr "Por nombre de agente"
+
+#: ../../include/lib/Dashboard/Widgets/top_n.php:267
+#: ../../enterprise/operation/log/log_viewer.php:500
+#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:436
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2395
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2964
+#: ../../enterprise/godmode/reporting/reporting_builder.global.php:338
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2342
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3021
+#: ../../godmode/netflow/nf_item_list.php:173
+msgid "Order"
+msgstr "Orden"
+
+#: ../../include/lib/Dashboard/Widgets/top_n.php:280
+msgid "Avg."
+msgstr "Media"
+
+#: ../../include/lib/Dashboard/Widgets/top_n.php:281
+#: ../../include/functions_alerts.php:672 ../../include/functions_treeview.php:92
+#: ../../include/functions_treeview.php:104
+#: ../../include/functions_reporting_html.php:5193
+#: ../../enterprise/godmode/modules/configure_local_component.php:320
+#: ../../enterprise/godmode/modules/configure_local_component.php:363
+#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:517
+#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:608
+#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:830
+#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:308
+#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:357
+#: ../../godmode/modules/manage_network_components_form_wizard.php:388
+#: ../../godmode/modules/manage_network_components_form_wizard.php:423
+#: ../../godmode/modules/manage_network_components_form_common.php:174
+#: ../../godmode/modules/manage_network_components_form_common.php:215
+#: ../../godmode/massive/massive_edit_modules.php:580
+#: ../../godmode/massive/massive_edit_modules.php:671
+#: ../../godmode/massive/massive_edit_modules.php:887
+#: ../../godmode/agentes/module_manager_editor_common.php:428
+#: ../../godmode/agentes/module_manager_editor_common.php:489
+#: ../../godmode/alerts/configure_alert_template.php:862
+msgid "Max."
+msgstr "Máx."
+
+#: ../../include/lib/Dashboard/Widgets/top_n.php:282
+#: ../../include/functions_alerts.php:673 ../../include/functions_treeview.php:92
+#: ../../include/functions_treeview.php:104
+#: ../../include/functions_reporting_html.php:5192
+#: ../../enterprise/godmode/modules/configure_local_component.php:311
+#: ../../enterprise/godmode/modules/configure_local_component.php:354
+#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:502
+#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:593
+#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:828
+#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:293
+#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:342
+#: ../../godmode/modules/manage_network_components_form_wizard.php:386
+#: ../../godmode/modules/manage_network_components_form_wizard.php:414
+#: ../../godmode/modules/manage_network_components_form_common.php:165
+#: ../../godmode/modules/manage_network_components_form_common.php:206
+#: ../../godmode/massive/massive_edit_modules.php:565
+#: ../../godmode/massive/massive_edit_modules.php:656
+#: ../../godmode/massive/massive_edit_modules.php:885
+#: ../../godmode/alerts/configure_alert_template.php:850
+msgid "Min."
+msgstr "Mín."
+
+#: ../../include/lib/Dashboard/Widgets/top_n.php:448
+msgid "There are no agents/modules found matching filter set"
+msgstr ""
+"No se han encontrado agentes/módulos que coincidan con los filtros establecidos"
+
+#: ../../include/lib/Dashboard/Widget.php:473
+msgid "Widget cannot be loaded"
+msgstr "El widget no se puede cargar."
+
+#: ../../include/lib/Dashboard/Widget.php:477
+msgid "Please, configure the widget again to recover it"
+msgstr "Por favor, configura el widget otra vez para recuperarlo."
+
+#: ../../include/lib/Dashboard/Widget.php:584
+#: ../../include/functions_events.php:4991
+#: ../../enterprise/godmode/policies/policy_queue.php:670
+#: ../../enterprise/godmode/policies/policy_linking.php:153
+#: ../../godmode/massive/massive_delete_agents.php:252
+msgid "Node"
+msgstr "Nodo"
+
+#: ../../include/lib/Dashboard/Widget.php:591
+#: ../../enterprise/meta/advanced/policymanager.sync.php:308
+#: ../../extensions/dbmanager.php:204
+msgid "This metaconsole"
+msgstr "Esta Metaconsola"
+
+#: ../../include/functions_tags.php:712
+msgid "Click here to open a popup window with URL tag"
+msgstr "Haz clic aquí para abrir una ventana popup con la etiqueta URL."
+
+#: ../../include/auth/mysql.php:319 ../../include/auth/mysql.php:347
+msgid ""
+"Problems with configuration permissions. Please contact with Administrator"
+msgstr ""
+"Error con la configuración de los permisos. Por favor, contacta con el "
+"administrador."
+
+#: ../../include/auth/mysql.php:334 ../../include/auth/mysql.php:397
+#: ../../include/auth/mysql.php:412 ../../include/auth/mysql.php:443
+msgid "User not found in database or incorrect password"
+msgstr "Usuario no encontrado en la base de datos o contraseña incorrecta"
+
+#: ../../include/auth/mysql.php:360
+msgid ""
+"Ooops User not found in \n"
+"\t\t\t\tdatabase or incorrect password"
+msgstr ""
+"¡Uuups! Usuario no encontrado en \n"
+"\t\t\t\tla base de datos o contraseña incorrecta."
+
+#: ../../include/auth/mysql.php:372 ../../include/auth/mysql.php:402
+#: ../../include/auth/mysql.php:437 ../../enterprise/include/auth/saml.php:241
+msgid "Please, login into metaconsole first"
+msgstr "Por favor, inicie sesión en la metaconsola primero"
+
+#: ../../include/auth/mysql.php:718
+msgid "Could not changes password on remote pandora"
+msgstr "No se pudo cambiar la contraseña en el Pandora FMS remoto."
+
+#: ../../include/auth/mysql.php:766
+msgid "Your installation of PHP does not support LDAP"
+msgstr "Su instalación de PHP no es compatible con LDAP."
+
+#: ../../include/functions_events.php:134
+msgid "NEW"
+msgstr "NUEVO"
+
+#: ../../include/functions_events.php:137
+msgid "IN PROCESS"
+msgstr "EN PROCESO"
+
+#: ../../include/functions_events.php:140
+msgid "VALIDATED"
+msgstr "VALIDADO"
+
+#: ../../include/functions_events.php:191
+#: ../../enterprise/meta/include/functions_events_meta.php:58
+msgid "Event id"
+msgstr "Identificación del evento"
+
+#: ../../include/functions_events.php:192 ../../include/functions_events.php:2610
+#: ../../include/functions_events.php:4984
+#: ../../include/functions_reporting_html.php:1267
+#: ../../include/functions_reporting_html.php:1275
+#: ../../include/functions_reporting_html.php:4968
+#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:439
+#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:499
+#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:551
+#: ../../enterprise/meta/include/functions_events_meta.php:62
+msgid "Event name"
+msgstr "Nombre del evento"
+
+#: ../../include/functions_events.php:199
+msgid "Agent module"
+msgstr "Módulo de agente"
+
+#: ../../include/functions_events.php:205 ../../include/functions_events.php:4703
+#: ../../enterprise/meta/include/functions_events_meta.php:114
+msgid "Extra id"
+msgstr "ID extra"
+
+#: ../../include/functions_events.php:209
+#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:69
+#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:252
+#: ../../enterprise/meta/include/functions_events_meta.php:130
+#: ../../enterprise/godmode/setup/setup_metaconsole.php:198
+#: ../../enterprise/godmode/setup/setup_metaconsole.php:273
+#: ../../godmode/wizards/DiscoveryTaskList.class.php:591
+msgid "Server name"
+msgstr "Nombre del servidor"
+
+#: ../../include/functions_events.php:212
+msgid "Module custom id"
+msgstr "ID personalizada de módulo"
+
+#: ../../include/functions_events.php:230
+#: ../../godmode/events/custom_events.php:94
+msgid "Event Id"
+msgstr "Id de evento"
+
+#: ../../include/functions_events.php:242
+#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:123
+#: ../../enterprise/include/functions_inventory.php:112
+#: ../../enterprise/include/functions_inventory.php:146
+#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:461
+msgid "Agent alias"
+msgstr "Alias del agente"
+
+#: ../../include/functions_events.php:278
+#: ../../godmode/events/custom_events.php:110
+msgid "Extra Id"
+msgstr "ID extra"
+
+#: ../../include/functions_events.php:290
+#: ../../godmode/events/custom_events.php:114
+msgid "Server Name"
+msgstr "Nombre del servidor"
+
+#: ../../include/functions_events.php:299 ../../include/functions_events.php:5160
+#: ../../godmode/events/custom_events.php:118
+msgid "Module custom ID"
+msgstr "ID personalizada de mádulo"
+
+#: ../../include/functions_events.php:308
+#: ../../godmode/events/custom_events.php:117
+msgid "Severity mini"
+msgstr "Prioridad baja"
+
+#: ../../include/functions_events.php:312
+#: ../../godmode/events/custom_events.php:98
+msgid "Agent IP"
+msgstr "IP del agente"
+
+#: ../../include/functions_events.php:2628
+#: ../../enterprise/operation/agentes/policy_view.php:70
+msgid "V."
+msgstr "V."
+
+#: ../../include/functions_events.php:2725
+msgid "Events -by module-"
+msgstr "Eventos -por módulo-"
+
+#: ../../include/functions_events.php:2872
+msgid "Going to unknown"
+msgstr "Cambiando a estado desconocido"
+
+#: ../../include/functions_events.php:2876
+#: ../../include/functions_events.php:3263 ../../include/functions.php:1229
+msgid "Alert recovered"
+msgstr "Alerta recuperada"
+
+#: ../../include/functions_events.php:2880
+msgid "Alert manually validated"
+msgstr "Alerta validada manualmente"
+
+#: ../../include/functions_events.php:2884
+msgid "Going from critical to warning"
+msgstr "Cambiando de crítico a advertencia"
+
+#: ../../include/functions_events.php:2890
+msgid "Going up to critical state"
+msgstr "Entrando en estado crítico"
+
+#: ../../include/functions_events.php:2896
+msgid "Going up to normal state"
+msgstr "Subiendo a estado normal"
+
+#: ../../include/functions_events.php:2900
+msgid "Going down from normal to warning"
+msgstr "Cambiando de normal a advertencia"
+
+#: ../../include/functions_events.php:2912
+msgid "Discovery server detected a new host"
+msgstr "El servidor Discovery ha detectado un host nuevo"
+
+#: ../../include/functions_events.php:2916
+msgid "New agent created"
+msgstr "Agente nuevo creado"
+
+#: ../../include/functions_events.php:2920
+#: ../../include/functions_events.php:3287 ../../include/functions.php:1237
+msgid "Configuration change"
+msgstr "Cambio de configuración"
+
+#: ../../include/functions_events.php:2924
+#: ../../include/functions_events.php:3267 ../../include/functions.php:1230
+msgid "Alert ceased"
+msgstr "Alerta finalizada"
+
+#: ../../include/functions_events.php:2933
+msgid "Unknown type:"
+msgstr "Tipo desconocido:"
+
+#: ../../include/functions_events.php:3247 ../../include/functions.php:1222
+msgid "Monitor Critical"
+msgstr "Monitor en estado crítico"
+
+#: ../../include/functions_events.php:3251 ../../include/functions.php:1223
+msgid "Monitor Warning"
+msgstr "Monitor en estado de advertencia"
+
+#: ../../include/functions_events.php:3255 ../../include/functions.php:1224
+msgid "Monitor Normal"
+msgstr "Monitor en estado normal"
+
+#: ../../include/functions_events.php:3271 ../../include/functions.php:1231
+msgid "Alert manual validation"
+msgstr "Validación manual de alerta"
+
+#: ../../include/functions_events.php:3275 ../../include/functions.php:1234
+msgid "Recon host detected"
+msgstr "Equipo de red detectado con recon"
+
+#: ../../include/functions_events.php:3295 ../../include/functions.php:1238
+#: ../../enterprise/views/ncm/snippets/edit.php:42
+#: ../../enterprise/views/ncm/snippets/list.php:32
+#: ../../enterprise/views/ncm/firmwares/edit.php:41
+#: ../../enterprise/views/ncm/firmwares/list.php:32
+#: ../../enterprise/views/ncm/vendors/edit.php:35
+#: ../../enterprise/views/ncm/vendors/list.php:32
+#: ../../enterprise/views/ncm/devices/list.php:32
+#: ../../enterprise/views/ncm/devices/list.php:67
+#: ../../enterprise/views/ncm/templates/edit.php:42
+#: ../../enterprise/views/ncm/templates/list.php:32
+#: ../../enterprise/views/ncm/models/edit.php:37
+#: ../../enterprise/views/ncm/models/list.php:32
+msgid "Network configuration manager"
+msgstr "Administrador de configuración de red"
+
+#: ../../include/functions_events.php:3331 ../../include/functions_graph.php:3538
+#: ../../include/functions_graph.php:3539 ../../include/functions_graph.php:5119
+#: ../../include/functions.php:1027 ../../include/functions.php:1270
+#: ../../include/functions.php:1307
+msgid "Informational"
+msgstr "Informativo"
+
+#: ../../include/functions_events.php:3379
+#: ../../include/functions_events.php:3410
+msgid "Only new"
+msgstr "Solo nuevos"
+
+#: ../../include/functions_events.php:3381
+#: ../../include/functions_events.php:3418
+msgid "Only in process"
+msgstr "Solo en proceso"
+
+#: ../../include/functions_events.php:3382
+#: ../../include/functions_events.php:3422
+msgid "Only not validated"
+msgstr "Solo no validados"
+
+#: ../../include/functions_events.php:3385
+#: ../../include/functions_events.php:3673
+#: ../../enterprise/meta/monitoring/wizard/wizard.php:139
+msgid "New"
+msgstr "Nuevo"
+
+#: ../../include/functions_events.php:3387
+#: ../../include/functions_events.php:3674
+#: ../../include/functions_events.php:3683
+msgid "In process"
+msgstr "En proceso"
+
+#: ../../include/functions_events.php:3388
+msgid "Not Validated"
+msgstr "No validado"
+
+#: ../../include/functions_events.php:3577
+msgid "Change owner"
+msgstr "Cambiar propietario"
+
+#: ../../include/functions_events.php:3658
+msgid "Change status"
+msgstr "Cambiar estado"
+
+#: ../../include/functions_events.php:3800
+msgid "Custom responses"
+msgstr "Respuesta personalizada"
+
+#: ../../include/functions_events.php:4378
+msgid "Extended information"
+msgstr "Información extendida"
+
+#: ../../include/functions_events.php:4406
+msgid "There was an error connecting to the node"
+msgstr "Error al conectarse al nodo"
+
+#: ../../include/functions_events.php:4445
+msgid "Agent details"
+msgstr "Detalles del agente"
+
+#: ../../include/functions_events.php:4459
+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:4510
+msgid "View custom fields"
+msgstr "Ver campos personalizados"
+
+#: ../../include/functions_events.php:4533
+msgid "Module details"
+msgstr "Detalles del módulo"
+
+#: ../../include/functions_events.php:4549
+msgid "No assigned"
+msgstr "No asignado"
+
+#: ../../include/functions_events.php:4626 ../../godmode/alerts/alert_view.php:65
+#: ../../godmode/alerts/alert_view.php:280
+msgid "Alert details"
+msgstr "Detalles de alerta"
+
+#: ../../include/functions_events.php:4640
+#: ../../include/functions_events.php:4649
+msgid "Go to data overview"
+msgstr "Ir a la vista general de datos"
+
+#: ../../include/functions_events.php:4765
+#, php-format
+msgid "Invalid custom data: %s"
+msgstr "Datos personalizados no válidos: %s"
+
+#: ../../include/functions_events.php:5000
+msgid "First event"
+msgstr "Primer evento"
+
+#: ../../include/functions_events.php:5000
+msgid "Last event"
+msgstr "Último evento"
+
+#: ../../include/functions_events.php:5080 ../../mobile/operation/events.php:540
+msgid "Acknowledged by"
+msgstr "Admitido por"
+
+#: ../../include/functions_events.php:5084
+msgid "Autovalidated"
+msgstr "Autovalidado"
+
+#: ../../include/functions_events.php:5125
+#: ../../godmode/groups/configure_group.php:246
+msgid "Contact"
+msgstr "Contacto"
+
+#: ../../include/functions_events.php:5150
+msgid "ID extra"
+msgstr "ID extra"
+
+#: ../../include/functions_events.php:5215
+msgid "There are no comments"
+msgstr "No hay comentarios"
+
+#: ../../include/functions_events.php:5370
+msgid ""
+"If event replication is ongoing, it won't be possible to enter comments here. "
+"This option is only to allow local pandora users to see comments, but not to "
+"operate with them. The operation, when event replication is enabled, must be "
+"done only in the Metaconsole."
+msgstr ""
+"Si la replicación de evento está en proceso, no sera posible añadir "
+"comentarios. Esta opción solo permite a los usuarios locales de Pandora FMS "
+"ver los comentarios, pero no usarlos. Este proceso solo se puede llevar a cabo "
+"en la Metaconsola si la replicación de eventos está habilitada."
+
+#: ../../include/functions_events.php:5574
+msgid "Pandora System"
+msgstr "Sistema de Pandora FMS"
+
+#: ../../include/functions_events.php:5773
+msgid "Validated but not assigned"
+msgstr "Validado pero no asignado"
+
+#: ../../include/functions_events.php:6720
+msgid "Agent Module"
+msgstr "Módulo del agente"
+
+#: ../../include/functions_db.php:147
+#, php-format
+msgid "Error connecting to database %s at %s."
+msgstr "Error al conectar a la base de datos %s el %s"
+
+#: ../../include/functions_db.php:1900
+msgid "Database debug"
+msgstr "Depurar BD"
+
+#: ../../include/functions_db.php:1917
+msgid "SQL sentence"
+msgstr "Consulta SQL"
+
+#: ../../include/functions_db.php:1918
+#: ../../include/functions_reporting_html.php:3997
+#: ../../include/functions_reporting_html.php:4144
+#: ../../include/functions_reporting_html.php:4485
+#: ../../include/functions_reporting_html.php:4496
+#: ../../enterprise/views/ncm/agent/details.php:90
+#: ../../enterprise/include/class/CommandCenter.class.php:468
+#: ../../extensions/api_checker.php:219 ../../extensions/api_checker.php:226
+msgid "Result"
+msgstr "Resultado"
+
+#: ../../include/functions_db.php:1919
+msgid "Rows"
+msgstr "Filas"
+
+#: ../../include/functions_db.php:1920
+msgid "Saved"
+msgstr "Guardado"
+
+#: ../../include/functions_db.php:1921
+msgid "Time (ms)"
+msgstr "Tiempo (ms)"
+
+#: ../../include/functions_groups.php:75
+msgid "Alert Actions"
+msgstr "Acciones de alerta"
+
+#: ../../include/functions_groups.php:91
+msgid "Alert Templates"
+msgstr "Plantillas de alerta"
+
+#: ../../include/functions_groups.php:155
+msgid "Layout visual console"
+msgstr "Diseño de la consola visual"
+
+#: ../../include/functions_groups.php:171
+msgid "Plannet down time"
+msgstr "Tiempo de inactividad estipulado"
+
+#: ../../include/functions_groups.php:203
+msgid "GIS maps"
+msgstr "Mapas GIS"
+
+#: ../../include/functions_groups.php:219
+msgid "GIS connections"
+msgstr "Conexiones GIS"
+
+#: ../../include/functions_groups.php:235
+msgid "GIS map layers"
+msgstr "Mapas GIS adicionales"
+
+#: ../../include/functions_groups.php:251
+msgid "Network maps"
+msgstr "Mapas de red"
+
+#: ../../include/functions_config.php:144
+msgid "Failed updated: User did not login."
+msgstr "Fallo de actualización: el usuario no inició sesión"
+
+#: ../../include/functions_config.php:152
+msgid "Failed updated: User is not admin."
+msgstr "Fallo de actualización: el usuario no es administrador"
+
+#: ../../include/functions_config.php:178
+#: ../../enterprise/meta/include/functions_meta.php:77
+#: ../../enterprise/meta/advanced/metasetup.setup.php:113
+msgid "Language settings"
+msgstr "Configuración de idioma"
+
+#: ../../include/functions_config.php:182
+#: ../../enterprise/meta/include/functions_meta.php:138
+#: ../../enterprise/meta/advanced/metasetup.setup.php:155
+#: ../../godmode/setup/setup_general.php:88
+msgid "Remote config directory"
+msgstr "Directorio remoto de configuración"
+
+#: ../../include/functions_config.php:186
+msgid "phantomjs config directory"
+msgstr "Directorio de configuración de phatomjs"
+
+#: ../../include/functions_config.php:190
+#: ../../enterprise/meta/include/functions_meta.php:82
+#: ../../enterprise/meta/advanced/metasetup.setup.php:126
+#: ../../godmode/setup/setup_general.php:110
+msgid "Auto login (hash) password"
+msgstr "Contraseña («hash») de inicio de sesión automático"
+
+#: ../../include/functions_config.php:194
+#: ../../enterprise/meta/include/functions_meta.php:92
+#: ../../enterprise/meta/advanced/metasetup.setup.php:142
+#: ../../godmode/setup/setup_general.php:124
+msgid "Time source"
+msgstr "Hora de referencia"
+
+#: ../../include/functions_config.php:198
+#: ../../godmode/setup/setup_general.php:137
+msgid "Automatic check for updates"
+msgstr "Comprobación automática de actualizaciones"
+
+#: ../../include/functions_config.php:202
+msgid "SSL cert path"
+msgstr "Ruta del certificado SSL"
+
+#: ../../include/functions_config.php:206
+#: ../../enterprise/meta/include/functions_meta.php:102
+#: ../../enterprise/meta/advanced/metasetup.setup.php:148
+#: ../../godmode/setup/setup_general.php:149
+msgid "Enforce https"
+msgstr "Forzar https"
+
+#: ../../include/functions_config.php:210
+msgid "Use cert."
+msgstr "Usar certificado"
+
+#: ../../include/functions_config.php:217
+#: ../../enterprise/meta/include/functions_meta.php:127
+#: ../../enterprise/meta/advanced/metasetup.setup.php:152
+#: ../../godmode/setup/setup_general.php:183
+msgid "Attachment store"
+msgstr "Almacenamiento de adjuntos"
+
+#: ../../include/functions_config.php:219
+#: ../../enterprise/meta/include/functions_meta.php:122
+#: ../../enterprise/meta/advanced/cron_main.php:159
+#: ../../enterprise/meta/advanced/cron_main.php:203
+#: ../../enterprise/meta/advanced/cron_main.php:296
+#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:213
+#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:276
+#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:371
+msgid "Path doesn't exists or is not writable"
+msgstr "La ruta no existe o no se puede escribir en ella."
+
+#: ../../include/functions_config.php:224
+#: ../../enterprise/meta/include/functions_meta.php:120
+msgid "Attachment store."
+msgstr "Almacenamiento de adjuntos."
+
+#: ../../include/functions_config.php:230
+#: ../../enterprise/meta/include/functions_meta.php:238
+#: ../../enterprise/meta/advanced/metasetup.setup.php:272
+#: ../../godmode/setup/setup_general.php:193
+msgid "IP list with API access"
+msgstr "Lista de IPs con acceso a la API"
+
+#: ../../include/functions_config.php:234
+#: ../../enterprise/meta/include/functions_meta.php:218
+#: ../../enterprise/meta/include/functions_meta.php:228
+#: ../../enterprise/meta/advanced/metasetup.setup.php:267
+#: ../../enterprise/meta/advanced/metasetup.consoles.php:533
+#: ../../enterprise/godmode/setup/setup_metaconsole.php:210
+#: ../../godmode/setup/setup_general.php:212
+msgid "API password"
+msgstr "Contraseña de la API"
+
+#: ../../include/functions_config.php:238
+#: ../../godmode/setup/setup_general.php:223
+msgid "Enable GIS features"
+msgstr "Habilitar funcionalidades GIS"
+
+#: ../../include/functions_config.php:242
+msgid "Integria inventory"
+msgstr "Inventario Integria IMS"
+
+#: ../../include/functions_config.php:246 ../../include/functions_config.php:1732
+msgid "Integria API password"
+msgstr "Contraseña de la API de Integria IMS"
+
+#: ../../include/functions_config.php:250
+msgid "Integria URL"
+msgstr "URL de Integria IMS"
+
+#: ../../include/functions_config.php:254
+#: ../../godmode/setup/setup_general.php:231
+msgid "Enable Netflow"
+msgstr "Activar Netflow"
+
+#: ../../include/functions_config.php:259
+#: ../../include/functions_register.php:164
+#: ../../enterprise/meta/include/functions_meta.php:158
+#: ../../enterprise/meta/advanced/metasetup.setup.php:191
+#: ../../godmode/setup/setup_general.php:279
+msgid "Timezone setup"
+msgstr "Configuración de zona horaria"
+
+#: ../../include/functions_config.php:284
+msgid "License information"
+msgstr "Información sobre la licencia"
+
+#: ../../include/functions_config.php:290
+#: ../../enterprise/meta/include/functions_meta.php:168
+#: ../../enterprise/meta/advanced/metasetup.setup.php:197
+#: ../../godmode/setup/setup_general.php:319
+msgid "Public URL"
+msgstr "URL pública"
+
+#: ../../include/functions_config.php:294
+#: ../../enterprise/meta/include/functions_meta.php:178
+#: ../../enterprise/meta/advanced/metasetup.setup.php:201
+#: ../../godmode/setup/setup_general.php:329
+msgid "Force use Public URL"
+msgstr "Forzar el uso de la URL pública"
+
+#: ../../include/functions_config.php:298
+#: ../../enterprise/meta/include/functions_meta.php:188
+#: ../../enterprise/meta/advanced/metasetup.setup.php:215
+#: ../../godmode/setup/setup_general.php:343
+msgid "Public URL host exclusions"
+msgstr "Exclusiones del host de URL pública"
+
+#: ../../include/functions_config.php:302
+#: ../../godmode/setup/setup_general.php:353
+msgid "Referer security"
+msgstr "Seguridad de Referer"
+
+#: ../../include/functions_config.php:306
+#: ../../godmode/setup/setup_general.php:361
+msgid "Event storm protection"
+msgstr "Protección de tormenta de eventos"
+
+#: ../../include/functions_config.php:310
+#: ../../enterprise/meta/include/functions_meta.php:208
+#: ../../enterprise/meta/advanced/metasetup.setup.php:222
+#: ../../godmode/setup/setup_general.php:370
+msgid "Command Snapshot"
+msgstr "Salida de comandos como capturas"
+
+#: ../../include/functions_config.php:314
+msgid "Use custom encoding"
+msgstr "Use codificación personalizada"
+
+#: ../../include/functions_config.php:318
+#: ../../godmode/setup/setup_general.php:386
+msgid "Server logs directory"
+msgstr "Directorio de logs del servidor"
+
+#: ../../include/functions_config.php:322
+#: ../../godmode/setup/setup_general.php:396
+msgid "Log size limit in system logs viewer extension"
+msgstr "Límite de tamaño de logs en la extensión del visor de logs del sistema"
+
+#: ../../include/functions_config.php:326
+#: ../../godmode/setup/setup_general.php:411
+msgid "Tutorial mode"
+msgstr "Modo tutorial"
+
+#: ../../include/functions_config.php:330
+#: ../../godmode/setup/setup_general.php:425
+msgid "Allow create scheduled downtimes in the past"
+msgstr ""
+"Permitir la creación de paradas planificadas con fecha anterior a la actual"
+
+#: ../../include/functions_config.php:334
+msgid "Limit parameters bulk"
+msgstr "Límite de operaciones en bloque"
+
+#: ../../include/functions_config.php:338
+msgid "Identification_reminder"
+msgstr "Recordatorio de identificación"
+
+#: ../../include/functions_config.php:342
+msgid "Include_agents"
+msgstr "Incluir agentes"
+
+#: ../../include/functions_config.php:346
+msgid "alias_as_name"
+msgstr "Alias como nombre"
+
+#: ../../include/functions_config.php:350
+msgid "Console log enabled"
+msgstr "Log de consola habilitado"
+
+#: ../../include/functions_config.php:354
+msgid "Audit log enabled"
+msgstr "Log de auditoría habilitado"
+
+#: ../../include/functions_config.php:358
+msgid "Module Custom ID read only"
+msgstr "Solo lectura del ID personalizado del módulo"
+
+#: ../../include/functions_config.php:362
+#: ../../godmode/setup/setup_general.php:459
+#: ../../godmode/agentes/agent_manager.php:301
+msgid "Unique IP"
+msgstr "IP única"
+
+#: ../../include/functions_config.php:366
+#: ../../enterprise/meta/advanced/metasetup.mail.php:115
+msgid "Server SMTP"
+msgstr "Servidor SMTP"
+
+#: ../../include/functions_config.php:370
+#: ../../enterprise/meta/advanced/metasetup.mail.php:109
+msgid "From dir"
+msgstr "Desde dir"
+
+#: ../../include/functions_config.php:374
+#: ../../enterprise/meta/advanced/metasetup.mail.php:112
+#: ../../godmode/setup/setup_general.php:538
+msgid "From name"
+msgstr "Desde nombre"
+
+#: ../../include/functions_config.php:378
+#: ../../enterprise/meta/advanced/metasetup.mail.php:118
+msgid "Port SMTP"
+msgstr "Puerto SMTP"
+
+#: ../../include/functions_config.php:382
+#: ../../godmode/setup/setup_general.php:568
+msgid "Encryption"
+msgstr "Encriptación"
+
+#: ../../include/functions_config.php:386
+#: ../../enterprise/meta/advanced/metasetup.mail.php:121
+#: ../../godmode/setup/setup_general.php:579
+msgid "Email user"
+msgstr "Usuario de email"
+
+#: ../../include/functions_config.php:390
+#: ../../enterprise/meta/advanced/metasetup.mail.php:124
+#: ../../godmode/setup/setup_general.php:589
+msgid "Email password"
+msgstr "Contraseña de email"
+
+#: ../../include/functions_config.php:397
+#: ../../enterprise/godmode/setup/setup.php:47
+msgid "Forward SNMP traps to agent (if exist)"
+msgstr "Reenviar los traps SNMP al agente (si existe)"
+
+#: ../../include/functions_config.php:401
+#: ../../enterprise/godmode/setup/setup.php:77
+msgid "Use Enterprise ACL System"
+msgstr "Utilizar el sistema ACL Enterprise"
+
+#: ../../include/functions_config.php:405
+#: ../../enterprise/meta/include/functions_meta.php:68
+msgid "Activate Metaconsole"
+msgstr "Activar la Metaconsola"
+
+#: ../../include/functions_config.php:409
+#: ../../enterprise/meta/include/functions_meta.php:273
+#: ../../enterprise/meta/advanced/metasetup.setup.php:288
+#: ../../enterprise/godmode/setup/setup.php:90
+msgid "Size of collection"
+msgstr "Tamaño de la colección"
+
+#: ../../include/functions_config.php:413
+#: ../../enterprise/godmode/setup/setup.php:104
+msgid "Events replication"
+msgstr "Replicación de eventos"
+
+#: ../../include/functions_config.php:418
+#: ../../enterprise/godmode/setup/setup.php:116
+msgid "Replication interval"
+msgstr "Intervalo de replicación"
+
+#: ../../include/functions_config.php:422
+#: ../../enterprise/godmode/setup/setup.php:130
+msgid "Replication limit"
+msgstr "Límite de replicación"
+
+#: ../../include/functions_config.php:426
+#: ../../enterprise/godmode/setup/setup.php:157
+msgid "Replication mode"
+msgstr "Modo de replicación"
+
+#: ../../include/functions_config.php:430
+#: ../../enterprise/godmode/setup/setup.php:264
+msgid "Show events list in local console (read only)"
+msgstr "Mostrar lista de eventos en la consola local (solo lectura)"
+
+#: ../../include/functions_config.php:435
+msgid "Replication DB engine"
+msgstr "Motor de BD de replicación"
+
+#: ../../include/functions_config.php:439
+msgid "Replication DB host"
+msgstr "Host de la BD de replicación"
+
+#: ../../include/functions_config.php:443
+msgid "Replication DB database"
+msgstr "Nombre de la BD de replicación"
+
+#: ../../include/functions_config.php:447
+msgid "Replication DB user"
+msgstr "Usuario de la BD de replicación"
+
+#: ../../include/functions_config.php:451
+msgid "Replication DB password"
+msgstr "Contraseña de la BD de replicación"
+
+#: ../../include/functions_config.php:455
+msgid "Replication DB port"
+msgstr "Puerto de la BD de replicación"
+
+#: ../../include/functions_config.php:459
+msgid "Metaconsole agent cache"
+msgstr "Caché de agente de la Metaconsola"
+
+#: ../../include/functions_config.php:463
+#: ../../enterprise/godmode/setup/setup.php:366
+msgid "Activate Log Collector"
+msgstr "Activar el colector de logs"
+
+#: ../../include/functions_config.php:467
+msgid "Enable Update Manager"
+msgstr "Habilitar Update Manager"
+
+#: ../../include/functions_config.php:471
+msgid "Ipam Ocuppied Manager Critical"
+msgstr "Ipam Ocuppied Manager Crítico"
+
+#: ../../include/functions_config.php:475
+msgid "Ipam Ocuppied Manager Warning"
+msgstr "Ipam Ocuppied Manager Advertencia"
+
+#: ../../include/functions_config.php:479
+#: ../../enterprise/godmode/setup/setup.php:413
+msgid "SAP/R3 Plugin Licence"
+msgstr "Licencia plugin SAP/R3"
+
+#: ../../include/functions_config.php:484
+#: ../../enterprise/godmode/setup/setup.php:282
+msgid "Inventory changes blacklist"
+msgstr "Lista negra ante cambios de inventario"
+
+#: ../../include/functions_config.php:492
+#: ../../enterprise/meta/include/functions_meta.php:344
+#: ../../enterprise/meta/advanced/metasetup.password.php:79
+#: ../../enterprise/godmode/setup/setup.php:467
+msgid "Enable password policy"
+msgstr "Habilitar política de contraseñas"
+
+#: ../../include/functions_config.php:496
+#: ../../enterprise/meta/include/functions_meta.php:354
+#: ../../enterprise/meta/advanced/metasetup.password.php:101
+#: ../../enterprise/godmode/setup/setup.php:476
+msgid "Min. size password"
+msgstr "Contraseña con tamaño mínimo"
+
+#: ../../include/functions_config.php:500
+#: ../../enterprise/meta/include/functions_meta.php:384
+#: ../../enterprise/meta/advanced/metasetup.password.php:105
+#: ../../enterprise/godmode/setup/setup.php:505
+msgid "Password expiration"
+msgstr "Expiración de contraseña"
+
+#: ../../include/functions_config.php:504
+#: ../../enterprise/meta/include/functions_meta.php:394
+#: ../../enterprise/meta/advanced/metasetup.password.php:132
+#: ../../enterprise/godmode/setup/setup.php:516
+msgid "Force change password on first login"
+msgstr "Forzar cambio de contraseña en el primer inicio de sesión"
+
+#: ../../include/functions_config.php:508
+#: ../../enterprise/meta/include/functions_meta.php:404
+#: ../../enterprise/meta/advanced/metasetup.password.php:109
+#: ../../enterprise/godmode/setup/setup.php:525
+msgid "User blocked if login fails"
+msgstr "Usuario bloqueado si la identificación falla"
+
+#: ../../include/functions_config.php:512
+#: ../../enterprise/meta/include/functions_meta.php:414
+#: ../../enterprise/meta/advanced/metasetup.password.php:113
+#: ../../enterprise/godmode/setup/setup.php:536
+msgid "Number of failed login attempts"
+msgstr "Número de intentos de identificación fallidos"
+
+#: ../../include/functions_config.php:516
+#: ../../enterprise/meta/include/functions_meta.php:364
+#: ../../enterprise/meta/advanced/metasetup.password.php:138
+#: ../../enterprise/godmode/setup/setup.php:487
+msgid "Password must have numbers"
+msgstr "La contraseña debe contener números."
+
+#: ../../include/functions_config.php:520
+#: ../../enterprise/meta/include/functions_meta.php:374
+#: ../../enterprise/meta/advanced/metasetup.password.php:142
+#: ../../enterprise/godmode/setup/setup.php:496
+msgid "Password must have symbols"
+msgstr "La contraseña debe contener símbolos."
+
+#: ../../include/functions_config.php:524
+#: ../../enterprise/meta/include/functions_meta.php:447
+#: ../../enterprise/meta/advanced/metasetup.password.php:126
+#: ../../enterprise/godmode/setup/setup.php:547
+msgid "Apply password policy to admin users"
+msgstr "Aplicar la política de contraseñas a los usuarios administradores"
+
+#: ../../include/functions_config.php:528
+#: ../../enterprise/meta/include/functions_meta.php:424
+#: ../../enterprise/meta/advanced/metasetup.password.php:121
+#: ../../enterprise/godmode/setup/setup.php:556
+msgid "Enable password history"
+msgstr "Activar histórico de contraseñas"
+
+#: ../../include/functions_config.php:532
+#: ../../enterprise/meta/include/functions_meta.php:436
+#: ../../enterprise/meta/advanced/metasetup.password.php:117
+#: ../../enterprise/godmode/setup/setup.php:565
+msgid "Compare previous password"
+msgstr "Comparar la contraseña anterior"
+
+#: ../../include/functions_config.php:536
+#: ../../enterprise/meta/include/functions_meta.php:458
+#: ../../enterprise/meta/advanced/metasetup.password.php:146
+#: ../../enterprise/godmode/setup/setup.php:577
+msgid "Activate reset password"
+msgstr "Activar reseteo de contraseña"
+
+#: ../../include/functions_config.php:548
+#: ../../enterprise/meta/include/functions_meta.php:522
+#: ../../enterprise/meta/include/functions_meta.php:741
+#: ../../godmode/setup/setup_auth.php:69
+msgid "Autocreate remote users"
+msgstr "Crear usuarios remotos automáticamente"
+
+#: ../../include/functions_config.php:552
+#: ../../enterprise/meta/include/functions_meta.php:532
+#: ../../enterprise/godmode/setup/setup_auth.php:55
+#: ../../enterprise/godmode/setup/setup_auth.php:303
+#: ../../enterprise/godmode/setup/setup_auth.php:364
+#: ../../enterprise/godmode/setup/setup_auth.php:1159
+msgid "Autocreate profile"
+msgstr "Crear el perfil automáticamente"
+
+#: ../../include/functions_config.php:556
+#: ../../enterprise/meta/include/functions_meta.php:542
+#: ../../enterprise/godmode/setup/setup_auth.php:61
+#: ../../enterprise/godmode/setup/setup_auth.php:309
+#: ../../enterprise/godmode/setup/setup_auth.php:370
+#: ../../enterprise/godmode/setup/setup_auth.php:1165
+msgid "Autocreate profile group"
+msgstr "Crear perfil de grupo automáticamente"
+
+#: ../../include/functions_config.php:560
+#: ../../enterprise/meta/include/functions_meta.php:552
+#: ../../enterprise/godmode/setup/setup_auth.php:68
+#: ../../enterprise/godmode/setup/setup_auth.php:318
+#: ../../enterprise/godmode/setup/setup_auth.php:379
+#: ../../enterprise/godmode/setup/setup_auth.php:1174
+msgid "Autocreate profile tags"
+msgstr "Crear etiquetas de perfil automáticamente"
+
+#: ../../include/functions_config.php:564
+#: ../../enterprise/meta/include/functions_meta.php:562
+#: ../../enterprise/godmode/setup/setup_auth.php:324
+msgid "Automatically assigned no hierarchy"
+msgstr "Jerarquía no asignada automáticamente"
+
+#: ../../include/functions_config.php:568
+#: ../../enterprise/meta/include/functions_meta.php:572
+#: ../../enterprise/godmode/setup/setup_auth.php:569
+#: ../../enterprise/godmode/setup/setup_auth.php:1371
+msgid "Autocreate blacklist"
+msgstr "Crear una lista negra automáticamente"
+
+#: ../../include/functions_config.php:572
+#: ../../enterprise/meta/include/functions_meta.php:635
+#: ../../enterprise/godmode/setup/setup_auth.php:577
+#: ../../enterprise/godmode/setup/setup_auth.php:1379
+msgid "Active directory server"
+msgstr "Servidor de directorio activo"
+
+#: ../../include/functions_config.php:576
+#: ../../enterprise/meta/include/functions_meta.php:645
+#: ../../enterprise/godmode/setup/setup_auth.php:583
+#: ../../enterprise/godmode/setup/setup_auth.php:1385
+msgid "Active directory port"
+msgstr "Puerto del directorio activo"
+
+#: ../../include/functions_config.php:580 ../../include/functions_config.php:616
+#: ../../enterprise/meta/include/functions_meta.php:655
+#: ../../enterprise/meta/include/functions_meta.php:939
+#: ../../enterprise/godmode/setup/setup_auth.php:589
+#: ../../enterprise/godmode/setup/setup_auth.php:1391
+#: ../../godmode/setup/setup_auth.php:137
+msgid "Start TLS"
+msgstr "Start TLS"
+
+#: ../../include/functions_config.php:584
+#: ../../enterprise/meta/include/functions_meta.php:665
+#: ../../enterprise/godmode/setup/setup_auth.php:353
+#: ../../enterprise/godmode/setup/setup_auth.php:1148
+msgid "Advanced Config AD"
+msgstr "Configuración avanzada AD"
+
+#: ../../include/functions_config.php:588
+#: ../../enterprise/meta/include/functions_meta.php:705
+#: ../../enterprise/godmode/setup/setup_auth.php:106
+msgid "Advanced Config LDAP"
+msgstr "Configuración LDAP avanzada"
+
+#: ../../include/functions_config.php:592
+#: ../../enterprise/meta/include/functions_meta.php:675
+#: ../../enterprise/godmode/setup/setup_auth.php:595
+#: ../../enterprise/godmode/setup/setup_auth.php:1397
+msgid "Domain"
+msgstr "Dominio"
+
+#: ../../include/functions_config.php:596
+#: ../../enterprise/meta/include/functions_meta.php:685
+#: ../../enterprise/godmode/setup/setup_auth.php:413
+#: ../../enterprise/godmode/setup/setup_auth.php:1208
+msgid "Advanced Permisions AD"
+msgstr "Permisos avanzados de AD"
+
+#: ../../include/functions_config.php:600
+#: ../../enterprise/meta/include/functions_meta.php:695
+#: ../../enterprise/godmode/setup/setup_auth.php:129
+msgid "Advanced Permissions LDAP"
+msgstr "Permisos LDAP avanzados"
+
+#: ../../include/functions_config.php:604
+#: ../../enterprise/meta/include/functions_meta.php:909
+#: ../../godmode/setup/setup_auth.php:92
+msgid "LDAP server"
+msgstr "Servidor LDAP"
+
+#: ../../include/functions_config.php:608
+#: ../../enterprise/meta/include/functions_meta.php:919
+#: ../../godmode/setup/setup_auth.php:105
+msgid "LDAP port"
+msgstr "Puerto LDAP"
+
+#: ../../include/functions_config.php:612
+#: ../../enterprise/meta/include/functions_meta.php:929
+#: ../../godmode/setup/setup_auth.php:123
+msgid "LDAP version"
+msgstr "Versión LDAP"
+
+#: ../../include/functions_config.php:620
+#: ../../enterprise/meta/include/functions_meta.php:949
+#: ../../godmode/setup/setup_auth.php:148
+msgid "Base DN"
+msgstr "DN base"
+
+#: ../../include/functions_config.php:624
+#: ../../enterprise/meta/include/functions_meta.php:959
+#: ../../godmode/setup/setup_auth.php:161
+msgid "Login attribute"
+msgstr "Atributo de acceso"
+
+#: ../../include/functions_config.php:628
+#: ../../enterprise/meta/include/functions_meta.php:969
+#: ../../godmode/setup/setup_auth.php:174
+msgid "Admin LDAP login"
+msgstr "Inicio de sesión de administrador LDAP"
+
+#: ../../include/functions_config.php:632
+#: ../../enterprise/meta/include/functions_meta.php:979
+#: ../../godmode/setup/setup_auth.php:187
+msgid "Admin LDAP password"
+msgstr "Contraseña de administrador LDAP"
+
+#: ../../include/functions_config.php:636
+#: ../../enterprise/meta/include/functions_meta.php:999
+#: ../../godmode/setup/setup_auth.php:222
+msgid "Secondary LDAP server"
+msgstr "Servidor LDAP secundario"
+
+#: ../../include/functions_config.php:640
+#: ../../enterprise/meta/include/functions_meta.php:1009
+#: ../../godmode/setup/setup_auth.php:235
+msgid "Secondary LDAP port"
+msgstr "Puerto LDAP secundario"
+
+#: ../../include/functions_config.php:644
+#: ../../enterprise/meta/include/functions_meta.php:1019
+#: ../../godmode/setup/setup_auth.php:253
+msgid "Secondary LDAP version"
+msgstr "Versión LDAP secundaria"
+
+#: ../../include/functions_config.php:648
+msgid "Secontary start TLS"
+msgstr "TLS de inicio secundario"
+
+#: ../../include/functions_config.php:652
+#: ../../enterprise/meta/include/functions_meta.php:1039
+msgid "Secondary base DN"
+msgstr "Base secundaria DN"
+
+#: ../../include/functions_config.php:656
+#: ../../enterprise/meta/include/functions_meta.php:1049
+msgid "Secondary login attribute"
+msgstr "Atributo de inicio de sesión secundario"
+
+#: ../../include/functions_config.php:660
+#: ../../enterprise/meta/include/functions_meta.php:1059
+#: ../../godmode/setup/setup_auth.php:304
+msgid "Admin secondary LDAP login"
+msgstr "Inicio de sesión LDAP secundario del administrador"
+
+#: ../../include/functions_config.php:664
+#: ../../enterprise/meta/include/functions_meta.php:1069
+#: ../../godmode/setup/setup_auth.php:317
+msgid "Admin secondary LDAP password"
+msgstr "Contraseña LDAP secundaria del administrador"
+
+#: ../../include/functions_config.php:668
+#: ../../enterprise/meta/include/functions_meta.php:512
+#: ../../godmode/setup/setup_auth.php:56
+msgid "Fallback to local authentication"
+msgstr "Alternativa si falla la autentificación"
+
+#: ../../include/functions_config.php:672
+#: ../../enterprise/meta/include/functions_meta.php:1102
+#: ../../enterprise/godmode/setup/setup_auth.php:101
+msgid "Login user attribute"
+msgstr "Identificar atributo de usuario"
+
+#: ../../include/functions_config.php:676
+#: ../../enterprise/meta/include/functions_meta.php:1123
+#: ../../enterprise/godmode/setup/setup_auth.php:94
+msgid "LDAP function"
+msgstr "Función LDAP"
+
+#: ../../include/functions_config.php:681 ../../include/functions_config.php:797
+#: ../../enterprise/meta/include/functions_meta.php:618
+#: ../../enterprise/meta/include/functions_meta.php:1082
+#: ../../enterprise/godmode/setup/setup_auth.php:82
+#: ../../enterprise/godmode/setup/setup_auth.php:348
+msgid "Save Password"
+msgstr "Guardar contraseña"
+
+#: ../../include/functions_config.php:688
+#: ../../enterprise/meta/include/functions_meta.php:1112
+msgid "Save profile"
+msgstr "Guardar perfil"
+
+#: ../../include/functions_config.php:692
+#: ../../enterprise/meta/include/functions_meta.php:990
+msgid "LDAP secondary enabled"
+msgstr "LDAP secundario habilitado"
+
+#: ../../include/functions_config.php:696
+#: ../../enterprise/godmode/setup/setup_auth.php:1021
+msgid "MySQL host"
+msgstr "Dirección de MySQL"
+
+#: ../../include/functions_config.php:700 ../../include/functions_config.php:720
+#: ../../enterprise/meta/include/functions_meta.php:1145
+#: ../../enterprise/meta/include/functions_meta.php:1199
+#: ../../enterprise/meta/include/functions_meta.php:1253
+#: ../../enterprise/godmode/setup/setup_auth.php:1027
+#: ../../enterprise/godmode/setup/setup_auth.php:1059
+msgid "MySQL port"
+msgstr "Puerto de MySQL"
+
+#: ../../include/functions_config.php:704 ../../include/functions_config.php:724
+#: ../../include/functions_config.php:1551
+#: ../../enterprise/meta/include/functions_meta.php:1155
+#: ../../enterprise/meta/include/functions_meta.php:1209
+#: ../../enterprise/meta/include/functions_meta.php:1263
+#: ../../enterprise/godmode/setup/setup_history.php:189
+#: ../../enterprise/godmode/setup/setup_auth.php:1033
+#: ../../enterprise/godmode/setup/setup_auth.php:1065
+msgid "Database name"
+msgstr "Nombre de la base de datos"
+
+#: ../../include/functions_config.php:716
+#: ../../enterprise/meta/include/functions_meta.php:1243
+#: ../../enterprise/godmode/setup/setup_auth.php:1053
+msgid "Integria host"
+msgstr "Servidor de Integria IMS"
+
+#: ../../include/functions_config.php:736
+#: ../../enterprise/meta/include/functions_meta.php:754
+msgid "Saml path"
+msgstr "Ruta de SAML"
+
+#: ../../include/functions_config.php:740
+#: ../../enterprise/meta/include/functions_meta.php:767
+msgid "Saml source"
+msgstr "Saml origen"
+
+#: ../../include/functions_config.php:744
+#: ../../enterprise/meta/include/functions_meta.php:780
+msgid "Saml user id parameter"
+msgstr "Parámetro de ID de usuario saml"
+
+#: ../../include/functions_config.php:748
+#: ../../enterprise/meta/include/functions_meta.php:793
+msgid "Saml mail parameter"
+msgstr "Parámetro de correo de saml"
+
+#: ../../include/functions_config.php:752
+#: ../../enterprise/meta/include/functions_meta.php:806
+msgid "Saml group name parameter"
+msgstr "Parámetro de nombre de grupo saml"
+
+#: ../../include/functions_config.php:756
+#: ../../enterprise/meta/include/functions_meta.php:819
+msgid "Saml attr type parameter"
+msgstr "Parámetro de tipo de attr saml"
+
+#: ../../include/functions_config.php:760
+#: ../../enterprise/meta/include/functions_meta.php:832
+msgid "Saml profiles and tags parameter"
+msgstr "Parámetro de perfiles y etiquetas saml"
+
+#: ../../include/functions_config.php:764
+msgid "Saml profile parameters"
+msgstr "Parámetros de perfil saml"
+
+#: ../../include/functions_config.php:768
+#: ../../enterprise/meta/include/functions_meta.php:871
+msgid "Saml tag parameter"
+msgstr "Parámetro de etiqueta saml"
+
+#: ../../include/functions_config.php:772
+#: ../../enterprise/meta/include/functions_meta.php:845
+msgid "Saml profile and tag separator"
+msgstr "Separador de perfil y etiqueta saml"
+
+#: ../../include/functions_config.php:780
+msgid "2FA all users"
+msgstr "2FA todos los usuarios"
+
+#: ../../include/functions_config.php:784 ../../include/functions_config.php:790
+#: ../../enterprise/meta/include/functions_meta.php:604
+#: ../../enterprise/meta/include/functions_meta.php:897
+msgid "Session timeout"
+msgstr "Sesión expirada"
+
+#: ../../include/functions_config.php:787
+msgid "Session timeout forced to 90 minutes"
+msgstr "Límite de tiempo de la sesión forzado a 90 minutos"
+
+#: ../../include/functions_config.php:813
+#: ../../enterprise/meta/include/functions_meta.php:1919
+#: ../../enterprise/meta/advanced/metasetup.performance.php:79
+#: ../../godmode/setup/performance.php:260
+#: ../../godmode/setup/performance.php:447
+msgid "Max. days before delete events"
+msgstr "Nº max. de días antes de borrar eventos"
+
+#: ../../include/functions_config.php:818 ../../godmode/setup/performance.php:271
+msgid "Max. days before delete traps"
+msgstr "Nº max. de días antes de borrar traps SNMP"
+
+#: ../../include/functions_config.php:822 ../../godmode/setup/performance.php:291
+#: ../../godmode/setup/performance.php:457
+msgid "Max. days before delete string data"
+msgstr "Nº max. de días antes de borrar datos de tipo texto"
+
+#: ../../include/functions_config.php:826
+#: ../../enterprise/meta/include/functions_meta.php:1939
+#: ../../enterprise/meta/advanced/metasetup.performance.php:88
+#: ../../godmode/setup/performance.php:281
+msgid "Max. days before delete audit events"
+msgstr "Nº max. de días antes de borrar eventos de auditoría interna"
+
+#: ../../include/functions_config.php:830 ../../godmode/setup/performance.php:301
+msgid "Max. days before delete GIS data"
+msgstr "Nº max. de días antes de borrar información GIS"
+
+#: ../../include/functions_config.php:834 ../../godmode/setup/performance.php:311
+#: ../../godmode/setup/performance.php:417
+msgid "Max. days before purge"
+msgstr "Máx. días antes de purga de datos"
+
+#: ../../include/functions_config.php:838 ../../godmode/setup/performance.php:331
+msgid "Max. days before delete unknown modules"
+msgstr "Máximo de días antes de borrar módulos desconocidos"
+
+#: ../../include/functions_config.php:842 ../../godmode/setup/performance.php:321
+#: ../../godmode/setup/performance.php:427
+msgid "Max. days before compact data"
+msgstr "Máx. días antes de comprimir datos"
+
+#: ../../include/functions_config.php:846
+msgid "Max. days before autodisable deletion"
+msgstr "Días máximos antes de eliminar los deshabilitados"
+
+#: ../../include/functions_config.php:850
+msgid "Item limit for realtime reports)"
+msgstr "Límite de elementos para los informes de tiempo real"
+
+#: ../../include/functions_config.php:854 ../../godmode/setup/performance.php:437
+#: ../../godmode/setup/performance.php:518
+msgid "Compact interpolation in hours (1 Fine-20 bad)"
+msgstr "Interpolación de la compactación en horas (1 bueno - 20 malo)"
+
+#: ../../include/functions_config.php:858
+#: ../../enterprise/meta/include/functions_meta.php:1949
+#: ../../enterprise/meta/advanced/metasetup.performance.php:91
+#: ../../godmode/setup/performance.php:538
+msgid "Default hours for event view"
+msgstr "Nº de horas predeterminado para la visualización de eventos"
+
+#: ../../include/functions_config.php:862 ../../godmode/setup/performance.php:548
+msgid "Use realtime statistics"
+msgstr "Usar estadísticas en tiempo real"
+
+#: ../../include/functions_config.php:866 ../../godmode/setup/performance.php:556
+msgid "Batch statistics period (secs)"
+msgstr "Período de las estadísticas programadas (seg.)"
+
+#: ../../include/functions_config.php:870
+#: ../../enterprise/meta/include/functions_meta.php:1959
+#: ../../godmode/setup/performance.php:566
+msgid "Use agent access graph"
+msgstr "Usar la gráfica de acceso del agente"
+
+#: ../../include/functions_config.php:874 ../../godmode/setup/performance.php:569
+msgid "Max. recommended number of files in attachment directory"
+msgstr "Max. número de archivos recomendado para el directorio de adjuntos"
+
+#: ../../include/functions_config.php:878 ../../godmode/setup/performance.php:579
+msgid "Delete not init modules"
+msgstr "Borrar módulos no iniciados"
+
+#: ../../include/functions_config.php:882
+msgid "Big Operatiopn Step to purge old data"
+msgstr "Gran operación para la purga de datos antiguos"
+
+#: ../../include/functions_config.php:886 ../../godmode/setup/performance.php:592
+msgid "Small Operation Step to purge old data"
+msgstr "Operación menor para la purga de datos antiguos"
+
+#: ../../include/functions_config.php:890 ../../godmode/setup/performance.php:351
+msgid "Retention period of past special days"
+msgstr "Período de retención de días especiales pasados"
+
+#: ../../include/functions_config.php:894
+#: ../../enterprise/meta/include/functions_meta.php:2002
+#: ../../enterprise/meta/advanced/metasetup.performance.php:127
+#: ../../godmode/setup/performance.php:361
+msgid "Max. macro data fields"
+msgstr "Nº máx. de campos de macro de datos"
+
+#: ../../include/functions_config.php:899 ../../godmode/setup/performance.php:375
+msgid "Max. days before delete inventory data"
+msgstr "Nº de días máximo antes del borrado de datos de inventario"
+
+#: ../../include/functions_config.php:904 ../../godmode/setup/performance.php:475
+msgid "Max. days before delete old messages"
+msgstr "Núm. máx. de días antes de borrar mensajes antiguos"
+
+#: ../../include/functions_config.php:908 ../../godmode/setup/performance.php:488
+msgid "Max. days before delete old network matrix data"
+msgstr "Núm. máx. de días antes de borrar datos de matriz antiguos"
+
+#: ../../include/functions_config.php:912 ../../godmode/setup/performance.php:602
+msgid "Graph container - Max. Items"
+msgstr "Contenedor de gráficas - Máx. elementos"
+
+#: ../../include/functions_config.php:916
+msgid "Max execution event response"
+msgstr "Máxima respuesta de ejecución de eventos"
+
+#: ../../include/functions_config.php:920
+#: ../../enterprise/meta/advanced/metasetup.performance.php:118
+#: ../../godmode/setup/performance.php:622
+msgid "Row limit in csv log"
+msgstr "Límite de líneas en log CSV"
+
+#: ../../include/functions_config.php:924
+msgid "SNMP walk binary path"
+msgstr "Ruta del binario SNMP walk"
+
+#: ../../include/functions_config.php:928
+msgid "SNMP walk binary path (fallback for v1)"
+msgstr "Ruta del binario SNMP walk (alternativa para la v1)"
+
+#: ../../include/functions_config.php:947
+#: ../../enterprise/meta/include/functions_meta.php:2022
+msgid "PhantomJS cache interval"
+msgstr "Intervalo de caché de PhantomJS"
+
+#: ../../include/functions_config.php:954
+#: ../../enterprise/meta/include/functions_meta.php:1298
+#: ../../enterprise/meta/advanced/metasetup.visual.php:105
+#: ../../godmode/setup/setup_visuals.php:1256
+msgid "Date format string"
+msgstr "Formato de fecha a mostrar"
+
+#: ../../include/functions_config.php:958
+#: ../../enterprise/meta/include/functions_meta.php:1308
+msgid "Timestamp or time comparation"
+msgstr "Marca o comparación temporal"
+
+#: ../../include/functions_config.php:962
+#: ../../enterprise/meta/advanced/metasetup.visual.php:166
+#: ../../godmode/setup/setup_visuals.php:698
+msgid "Graph color #1"
+msgstr "Color de la gráfica #1"
+
+#: ../../include/functions_config.php:966
+#: ../../enterprise/meta/advanced/metasetup.visual.php:176
+#: ../../godmode/setup/setup_visuals.php:709
+msgid "Graph color #2"
+msgstr "Color de la gráfica #2"
+
+#: ../../include/functions_config.php:970
+#: ../../enterprise/meta/advanced/metasetup.visual.php:186
+#: ../../godmode/setup/setup_visuals.php:720
+msgid "Graph color #3"
+msgstr "Color de la gráfica #3"
+
+#: ../../include/functions_config.php:974
+#: ../../godmode/setup/setup_visuals.php:731
+msgid "Graph color #4"
+msgstr "Color del gráfico #4"
+
+#: ../../include/functions_config.php:978
+#: ../../godmode/setup/setup_visuals.php:742
+msgid "Graph color #5"
+msgstr "Color del gráfico #5"
+
+#: ../../include/functions_config.php:982
+#: ../../godmode/setup/setup_visuals.php:753
+msgid "Graph color #6"
+msgstr "Color del gráfico #6"
+
+#: ../../include/functions_config.php:986
+#: ../../godmode/setup/setup_visuals.php:764
+msgid "Graph color #7"
+msgstr "Color del gráfico #7"
+
+#: ../../include/functions_config.php:990
+#: ../../godmode/setup/setup_visuals.php:775
+msgid "Graph color #8"
+msgstr "Color del gráfico #8"
+
+#: ../../include/functions_config.php:994
+#: ../../godmode/setup/setup_visuals.php:786
+msgid "Graph color #9"
+msgstr "Color del gráfico #9"
+
+#: ../../include/functions_config.php:998
+#: ../../godmode/setup/setup_visuals.php:797
+msgid "Graph color #10"
+msgstr "Color del gráfico #10"
+
+#: ../../include/functions_config.php:1002
+#: ../../enterprise/meta/include/functions_meta.php:1433
+#: ../../enterprise/meta/advanced/metasetup.visual.php:232
+#: ../../godmode/setup/setup_visuals.php:808
+msgid "Value to interface graphics"
+msgstr "Valor para la interfaz gráfica"
+
+#: ../../include/functions_config.php:1006
+#: ../../enterprise/meta/include/functions_meta.php:1373
+msgid "Data precision for reports"
+msgstr "Precisión de los datos en los informes"
+
+#: ../../include/functions_config.php:1015
+#: ../../godmode/setup/setup_visuals.php:137
+msgid "Style template"
+msgstr "Plantilla de estilo"
+
+#: ../../include/functions_config.php:1023
+#: ../../enterprise/meta/include/functions_meta.php:1456
+#: ../../enterprise/meta/advanced/metasetup.visual.php:265
+#: ../../godmode/setup/setup_visuals.php:883
+msgid "Use round corners"
+msgstr "Usar bordes redondeados"
+
+#: ../../include/functions_config.php:1027
+#: ../../enterprise/meta/include/functions_meta.php:1467
+#: ../../enterprise/meta/advanced/metasetup.visual.php:273
+#: ../../godmode/setup/setup_visuals.php:892
+msgid "Chart fit to content"
+msgstr "Tabla adaptada al contenido"
+
+#: ../../include/functions_config.php:1031
+msgid "Show QR code header"
+msgstr "Mostrar código QR en la cabecera"
+
+#: ../../include/functions_config.php:1035
+#: ../../godmode/setup/setup_visuals.php:150
+msgid "Status icon set"
+msgstr "Icono de estado en"
+
+#: ../../include/functions_config.php:1039
+#: ../../enterprise/meta/include/functions_meta.php:1777
+msgid "Font path"
+msgstr "Ruta de la tipografía"
+
+#: ../../include/functions_config.php:1043
+#: ../../godmode/reporting/visual_console_builder.wizard.php:228
+msgid "Font size"
+msgstr "Tamaño de fuente"
+
+#: ../../include/functions_config.php:1047
+#: ../../enterprise/meta/include/functions_meta.php:1598
+#: ../../enterprise/meta/advanced/metasetup.visual.php:503
+#: ../../godmode/setup/setup_visuals.php:190
+msgid "Custom favicon"
+msgstr "Personalizar favicon"
+
+#: ../../include/functions_config.php:1051
+#: ../../include/functions_config.php:1445
+#: ../../enterprise/meta/include/functions_meta.php:1568
+#: ../../enterprise/meta/include/functions_meta.php:1819
+#: ../../enterprise/meta/advanced/metasetup.visual.php:1053
+#: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:127
+#: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:130
+#: ../../godmode/setup/setup_visuals.php:1149
+msgid "Custom logo"
+msgstr "Logo personalizado"
+
+#: ../../include/functions_config.php:1055
+#: ../../enterprise/meta/include/functions_meta.php:1578
+msgid "Custom logo collapsed"
+msgstr "Icono menú reducido"
+
+#: ../../include/functions_config.php:1059
+msgid "Custom logo white background"
+msgstr "Fondo blanco del logo personalizado"
+
+#: ../../include/functions_config.php:1063
+#: ../../enterprise/meta/include/functions_meta.php:1608
+msgid "Custom logo login"
+msgstr "Logo personalizado en la pantalla de bienvenida"
+
+#: ../../include/functions_config.php:1067
+#: ../../enterprise/meta/include/functions_meta.php:1618
+msgid "Custom splash login"
+msgstr "Login de Splash personalizado"
+
+#: ../../include/functions_config.php:1071
+#: ../../godmode/setup/setup_visuals.php:393
+msgid "Custom documentation logo"
+msgstr "Logo de documentación personalizado"
+
+#: ../../include/functions_config.php:1075
+#: ../../godmode/setup/setup_visuals.php:413
+msgid "Custom support logo"
+msgstr "Logo de soporte personalizado"
+
+#: ../../include/functions_config.php:1079
+#: ../../include/functions_config.php:1083
+#: ../../godmode/setup/setup_visuals.php:432
+msgid "Custom networkmap center logo"
+msgstr "Logo central del mapa de red personalizado"
+
+#: ../../include/functions_config.php:1087
+msgid "Custom title header"
+msgstr "Encabezado de título personalizado"
+
+#: ../../include/functions_config.php:1091
+msgid "Custom subtitle header"
+msgstr "Encabezado del subtítulo personalizado"
+
+#: ../../include/functions_config.php:1095
+#: ../../enterprise/meta/include/functions_meta.php:1668
+msgid "Meta custom title header"
+msgstr "Encabezado de título personalizado"
+
+#: ../../include/functions_config.php:1099
+#: ../../enterprise/meta/include/functions_meta.php:1678
+msgid "Meta custom subtitle header"
+msgstr "Encabezado de subtítulos meta personalizado"
+
+#: ../../include/functions_config.php:1103
+#: ../../enterprise/meta/include/functions_meta.php:1648
+msgid "Custom title1 login"
+msgstr "Título1 conexión personalizado"
+
+#: ../../include/functions_config.php:1107
+#: ../../enterprise/meta/include/functions_meta.php:1658
+msgid "Custom title2 login"
+msgstr "Título2 conexión personalizado"
+
+#: ../../include/functions_config.php:1111
+#: ../../godmode/setup/setup_visuals.php:176
+msgid "Login background"
+msgstr "Imagen de fondo de la pantalla de inicio de sesión"
+
+#: ../../include/functions_config.php:1115
+#: ../../include/functions_config.php:1155
+msgid "Custom Docs url"
+msgstr "URL de documentos personalizados"
+
+#: ../../include/functions_config.php:1119
+#: ../../include/functions_config.php:1159
+msgid "Custom support url"
+msgstr "URL de soporte personalizado"
+
+#: ../../include/functions_config.php:1123
+#: ../../enterprise/meta/include/functions_meta.php:1628
+#: ../../enterprise/meta/advanced/metasetup.visual.php:724
+#: ../../enterprise/meta/advanced/metasetup.visual.php:795
+#: ../../godmode/setup/setup_visuals.php:507
+msgid "Product name"
+msgstr "Nombre del producto"
+
+#: ../../include/functions_config.php:1127
+#: ../../enterprise/meta/include/functions_meta.php:1638
+#: ../../enterprise/meta/advanced/metasetup.visual.php:735
+#: ../../enterprise/meta/advanced/metasetup.visual.php:805
+#: ../../godmode/setup/setup_visuals.php:513
+msgid "Copyright notice"
+msgstr "Aviso de copyright"
+
+#: ../../include/functions_config.php:1131
+msgid "Custom logo metaconsole (white background)"
+msgstr "Logo personalizado de la consola (fondo blanco)"
+
+#: ../../include/functions_config.php:1135
+msgid "Custom logo login metaconsole"
+msgstr "Logo personalizado de la conexión a la Metaconsola"
+
+#: ../../include/functions_config.php:1139
+msgid "Custom splash login metaconsole"
+msgstr "Conexión del Splash personalizado de la Metaconsola"
+
+#: ../../include/functions_config.php:1143
+msgid "Custom title1 login metaconsole"
+msgstr "Título1 conexión personalizado de la Metaconsola"
+
+#: ../../include/functions_config.php:1147
+msgid "Custom title2 login metaconsole"
+msgstr "Título2 conexión personalizado de la Metaconsola"
+
+#: ../../include/functions_config.php:1151
+msgid "Login background metaconsole"
+msgstr "Fondo de la conexión a la Metaconsola"
+
+#: ../../include/functions_config.php:1163
+#: ../../enterprise/meta/include/functions_meta.php:1884
+msgid "Use the legacy Visual Console"
+msgstr "Usar la consola visual heredada"
+
+#: ../../include/functions_config.php:1167
+#: ../../enterprise/meta/include/functions_meta.php:1895
+msgid "Default expiration of the Visual Console item's cache"
+msgstr "Caducidad del caché de los elementos de la consola visual por defecto"
+
+#: ../../include/functions_config.php:1171
+#: ../../enterprise/meta/include/functions_meta.php:1906
+#: ../../enterprise/meta/advanced/metasetup.visual.php:874
+#: ../../godmode/setup/setup_visuals.php:1055
+msgid "Default interval for refresh on Visual Console"
+msgstr "Intervalo de actualización por defecto en la consola visual"
+
+#: ../../include/functions_config.php:1175
+msgid "Default line favourite_view for the Visual Console"
+msgstr "Línea por defecto favourite_view para la consola visual"
+
+#: ../../include/functions_config.php:1179
+msgid "Default line menu items for the Visual Console"
+msgstr "Elementos predeterminados de menú de línea para la consola visual"
+
+#: ../../include/functions_config.php:1183
+#: ../../godmode/setup/setup_visuals.php:1069
+msgid "Default line thickness for the Visual Console"
+msgstr "Grosor de línea por defecto en las consolas visuales"
+
+#: ../../include/functions_config.php:1187
+msgid "Default line menu items for the Services"
+msgstr "Linea de elementos de menú por defecto para los servicios"
+
+#: ../../include/functions_config.php:1191
+#: ../../include/functions_config.php:1195
+#: ../../godmode/setup/setup_visuals.php:653
+msgid "Agent size text"
+msgstr "Tamaño del texto del agente"
+
+#: ../../include/functions_config.php:1199
+#: ../../godmode/setup/setup_visuals.php:658
+msgid "Module size text"
+msgstr "Tamaño del nombre del módulo"
+
+#: ../../include/functions_config.php:1203
+#: ../../include/functions_config.php:1207
+#: ../../godmode/setup/setup_visuals.php:663
+msgid "Description size text"
+msgstr "Tamaño del texto de la descripción"
+
+#: ../../include/functions_config.php:1211
+#: ../../godmode/setup/setup_visuals.php:667
+msgid "Item title size text"
+msgstr "Tamaño del texto de los títulos de elementos"
+
+#: ../../include/functions_config.php:1215
+#: ../../godmode/setup/setup_visuals.php:583
+msgid "GIS Labels"
+msgstr "Etiquetas GIS"
+
+#: ../../include/functions_config.php:1219
+msgid "Show units in values report"
+msgstr "Mostrar unidades en los valores del informe"
+
+#: ../../include/functions_config.php:1223
+#: ../../godmode/setup/setup_visuals.php:598
+msgid "Default icon in GIS"
+msgstr "Icono GIS por defecto"
+
+#: ../../include/functions_config.php:1227
+msgid "Autohidden menu"
+msgstr "Ocultar menú automáticamente"
+
+#: ../../include/functions_config.php:1231
+msgid "visual_animation"
+msgstr "visual_animation"
+
+#: ../../include/functions_config.php:1235
+#: ../../enterprise/meta/include/functions_meta.php:1478
+#: ../../enterprise/meta/advanced/metasetup.visual.php:281
+msgid "Disable help"
+msgstr "Deshabilitar ayuda"
+
+#: ../../include/functions_config.php:1239
+msgid "Fixed graph"
+msgstr "Gráfico fijo"
+
+#: ../../include/functions_config.php:1243
+#: ../../godmode/setup/setup_visuals.php:544
+msgid "Fixed header"
+msgstr "Cabecera fija"
+
+#: ../../include/functions_config.php:1247
+msgid "Paginate module"
+msgstr "Paginar vista de módulos"
+
+#: ../../include/functions_config.php:1255
+#: ../../godmode/setup/setup_visuals.php:1236
+msgid "Networkmap max width"
+msgstr "Máximo ancho de Networkmap"
+
+#: ../../include/functions_config.php:1259
+msgid "Shortened module graph data"
+msgstr "Gráfico de módulo de datos acortados"
+
+#: ../../include/functions_config.php:1263
+#: ../../enterprise/meta/advanced/metasetup.visual.php:456
+msgid "Show the group name instead the group icon."
+msgstr "Mostrar el nombre del grupo en lugar de icono del grupo"
+
+#: ../../include/functions_config.php:1267
+#: ../../godmode/setup/setup_visuals.php:857
+msgid "Default line thickness for the Custom Graph."
+msgstr "Espesor de la línea predeterminada para el gráfico personalizado"
+
+#: ../../include/functions_config.php:1271
+msgid "Default type of module charts."
+msgstr "Tipo de gráficos de módulos por defecto"
+
+#: ../../include/functions_config.php:1275
+msgid "Default Number of elements in Custom Graph."
+msgstr "Número de elementos por defecto en gráfica personalizada."
+
+#: ../../include/functions_config.php:1279
+msgid "Default type of interface charts."
+msgstr "Tipo predefinido para los gráficos de interfaz"
+
+#: ../../include/functions_config.php:1283
+#: ../../enterprise/meta/include/functions_meta.php:1859
+#: ../../enterprise/meta/advanced/metasetup.visual.php:466
+#: ../../godmode/setup/setup_visuals.php:88
+msgid "Display data of proc modules in other format"
+msgstr "Mostrar los datos de los módulos proc en otro formato"
+
+#: ../../include/functions_config.php:1287
+#: ../../enterprise/meta/include/functions_meta.php:1869
+#: ../../enterprise/meta/advanced/metasetup.visual.php:474
+#: ../../godmode/setup/setup_visuals.php:97
+msgid "Display text proc modules have state is ok"
+msgstr "Texto mostrado cuando el estado del módulo proc es OK"
+
+#: ../../include/functions_config.php:1290
+#: ../../include/functions_config.php:3182
+#: ../../include/functions_reporting_html.php:662
+#: ../../enterprise/include/functions_reporting_csv.php:1541
+#: ../../enterprise/include/functions_reporting_csv.php:1587
+#: ../../enterprise/include/functions_reporting_csv.php:1905
+#: ../../enterprise/include/functions_reporting.php:1875
+#: ../../enterprise/include/functions_reporting.php:1916
+#: ../../enterprise/include/functions_reporting.php:2919
+#: ../../enterprise/include/functions_reporting.php:2978
+#: ../../enterprise/include/functions_reporting.php:3907
+#: ../../enterprise/include/functions_reporting.php:3966
+#: ../../enterprise/include/functions_reporting.php:6161
+msgid "Fail"
+msgstr "Fallo"
+
+#: ../../include/functions_config.php:1291
+#: ../../enterprise/meta/include/functions_meta.php:1879
+#: ../../enterprise/meta/advanced/metasetup.visual.php:484
+#: ../../godmode/setup/setup_visuals.php:101
+msgid "Display text when proc modules have state critical"
+msgstr "Texto mostrado cuando el estado del módulo proc es Crítico"
+
+#: ../../include/functions_config.php:1295
+msgid "Display lateral menus with left click"
+msgstr "Mostrar los menús laterales con el clic izquierdo"
+
+#: ../../include/functions_config.php:1300
+#: ../../godmode/setup/setup_visuals.php:116
+msgid "Service label font size"
+msgstr "Tamaño de fuente para el mapa de servicios"
+
+#: ../../include/functions_config.php:1304
+msgid "Service item padding size"
+msgstr "Espacio entre los nodos del mapa de servicios"
+
+#: ../../include/functions_config.php:1309
+msgid "Default percentil"
+msgstr "Percentil por defecto"
+
+#: ../../include/functions_config.php:1313
+msgid "Default full scale (TIP)"
+msgstr "Escala completa por defecto (TIP)"
+
+#: ../../include/functions_config.php:1317
+msgid "Default soft graphs"
+msgstr "Gráficas soft por defecto"
+
+#: ../../include/functions_config.php:1321
+msgid "Default zoom graphs"
+msgstr "Gráficas ampliadas por defecto"
+
+#: ../../include/functions_config.php:1330
+msgid "Default height of the chart image"
+msgstr "Altuta de la imagen de la gráfica por defecto"
+
+#: ../../include/functions_config.php:1352
+msgid "Add the custom post process"
+msgstr "Añadir la personalización al proceso posterior"
+
+#: ../../include/functions_config.php:1360
+msgid "Delete the custom post process"
+msgstr "Borrar la personalización al proceso posterior"
+
+#: ../../include/functions_config.php:1402
+#: ../../enterprise/meta/include/functions_meta.php:1767
+#: ../../enterprise/meta/advanced/metasetup.visual.php:420
+#: ../../godmode/setup/setup_visuals.php:1357
+msgid "Delete interval"
+msgstr "Borrar intervalo"
+
+#: ../../include/functions_config.php:1414
+msgid "Add custom module unit"
+msgstr "Añadir unidad de módulo personalizado"
+
+#: ../../include/functions_config.php:1420
+msgid "Delete custom module unit"
+msgstr "Eliminar unidad de módulo personalizado"
+
+#: ../../include/functions_config.php:1425
+#: ../../enterprise/meta/include/functions_meta.php:1799
+msgid "Custom report info"
+msgstr "Información del informe personalizado"
+
+#: ../../include/functions_config.php:1429
+#: ../../enterprise/meta/include/functions_meta.php:1383
+#: ../../enterprise/meta/advanced/metasetup.visual.php:966
+#: ../../godmode/setup/setup_visuals.php:1121
+msgid "HTML font size for SLA (em)"
+msgstr "Tamaño de fuente en SLA (em)"
+
+#: ../../include/functions_config.php:1433
+#: ../../enterprise/meta/include/functions_meta.php:1393
+#: ../../enterprise/meta/advanced/metasetup.visual.php:963
+#: ../../godmode/setup/setup_visuals.php:1116
+msgid "PDF font size (px)"
+msgstr "Tamaño de fuente de PDF (px)"
+
+#: ../../include/functions_config.php:1437
+#: ../../include/functions_config.php:1441
+#: ../../include/functions_config.php:1445
+#: ../../include/functions_config.php:1449
+#: ../../include/functions_config.php:1453
+#: ../../include/functions_config.php:1457
+#: ../../enterprise/meta/include/functions_meta.php:1793
+#: ../../enterprise/meta/include/functions_meta.php:1809
+#: ../../enterprise/meta/include/functions_meta.php:1819
+#: ../../enterprise/meta/include/functions_meta.php:1829
+#: ../../enterprise/meta/include/functions_meta.php:1839
+#: ../../enterprise/meta/include/functions_meta.php:1849
+#: ../../enterprise/meta/advanced/metasetup.visual.php:1053
+#: ../../enterprise/meta/advanced/metasetup.visual.php:1066
+#: ../../enterprise/meta/advanced/metasetup.visual.php:1077
+#: ../../enterprise/meta/advanced/metasetup.visual.php:1087
+#: ../../godmode/setup/setup_visuals.php:1149
+#: ../../godmode/setup/setup_visuals.php:1164
+#: ../../godmode/setup/setup_visuals.php:1172
+#: ../../godmode/setup/setup_visuals.php:1192
+#: ../../godmode/setup/setup_visuals.php:1208
+msgid "Custom report front"
+msgstr "Portada de informe personalizado"
+
+#: ../../include/functions_config.php:1441
+#: ../../enterprise/meta/include/functions_meta.php:1809
+#: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:116
+#: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:127
+msgid "Font family"
+msgstr "Tipo de letra"
+
+#: ../../include/functions_config.php:1449
+#: ../../enterprise/meta/include/functions_meta.php:1829
+#: ../../enterprise/meta/advanced/metasetup.visual.php:1077
+#: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:153
+#: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:142
+#: ../../godmode/setup/setup_visuals.php:1172
+msgid "Header"
+msgstr "Encabezado"
+
+#: ../../include/functions_config.php:1453
+#: ../../enterprise/meta/include/functions_meta.php:1839
+#: ../../enterprise/meta/advanced/metasetup.visual.php:1087
+#: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:163
+#: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:152
+#: ../../godmode/setup/setup_visuals.php:1192
+msgid "First page"
+msgstr "Primera página"
+
+#: ../../include/functions_config.php:1457
+#: ../../enterprise/meta/include/functions_meta.php:1849
+#: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:173
+#: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:162
+#: ../../godmode/setup/setup_visuals.php:1208
+msgid "Footer"
+msgstr "Pie de página"
+
+#: ../../include/functions_config.php:1461
+#: ../../enterprise/meta/include/functions_meta.php:1413
+#: ../../enterprise/meta/advanced/metasetup.visual.php:988
+#: ../../godmode/setup/setup_visuals.php:1400
+msgid "CSV divider"
+msgstr "Separador CSV"
+
+#: ../../include/functions_config.php:1465
+#: ../../enterprise/meta/include/functions_meta.php:1423
+#: ../../enterprise/meta/advanced/metasetup.visual.php:1028
+#: ../../godmode/setup/setup_visuals.php:1446
+msgid "CSV decimal separator"
+msgstr "Separador decimal CSV"
+
+#: ../../include/functions_config.php:1469
+#: ../../enterprise/meta/include/functions_meta.php:1787
+msgid "Use data multiplier"
+msgstr "Usar multiplicador de datos"
+
+#: ../../include/functions_config.php:1475
+#: ../../godmode/setup/setup_netflow.php:47
+msgid "Data storage path"
+msgstr "Ruta de almacenamiento de datos"
+
+#: ../../include/functions_config.php:1479
+#: ../../godmode/setup/setup_netflow.php:50
+msgid "Daemon interval"
+msgstr "Intervalo del demonio"
+
+#: ../../include/functions_config.php:1483
+#: ../../godmode/setup/setup_netflow.php:53
+msgid "Daemon binary path"
+msgstr "Ruta de demonio binario"
+
+#: ../../include/functions_config.php:1487
+#: ../../godmode/setup/setup_netflow.php:56
+msgid "Nfdump binary path"
+msgstr "Ruta binaria Nfdump"
+
+#: ../../include/functions_config.php:1491
+#: ../../godmode/setup/setup_netflow.php:59
+msgid "Nfexpire binary path"
+msgstr "Ruta binaria Nfexpire"
+
+#: ../../include/functions_config.php:1495
+#: ../../godmode/setup/setup_netflow.php:62
+msgid "Maximum chart resolution"
+msgstr "Máxima resolución del gráfico"
+
+#: ../../include/functions_config.php:1499
+#: ../../enterprise/meta/advanced/metasetup.setup.php:218
+#: ../../godmode/setup/setup_netflow.php:65
+msgid "Disable custom live view filters"
+msgstr "Desactiva los filtros de vista activa personalizados"
+
+#: ../../include/functions_config.php:1503
+#: ../../godmode/setup/setup_netflow.php:67
+msgid "Netflow max lifetime"
+msgstr "Tiempo  máximo del Netflow"
+
+#: ../../include/functions_config.php:1507
+#: ../../godmode/setup/setup_netflow.php:70
+msgid "Name resolution for IP address"
+msgstr "Habilitar la resolución de nombre con IP"
+
+#: ../../include/functions_config.php:1513
+msgid "IP ElasticSearch server"
+msgstr "IP del servidor ElasticSearch"
+
+#: ../../include/functions_config.php:1517
+msgid "Port ElasticSearch server"
+msgstr "Puerto del servidor ElasticSearch"
+
+#: ../../include/functions_config.php:1521
+#: ../../enterprise/meta/include/functions_meta.php:490
+#: ../../enterprise/godmode/setup/setup_log_collector.php:41
+msgid "Number of logs viewed"
+msgstr "Número de logs vistos"
+
+#: ../../include/functions_config.php:1525
+#: ../../enterprise/godmode/setup/setup_log_collector.php:44
+msgid "Days to purge old information"
+msgstr "Días para purgar información antigua"
+
+#: ../../include/functions_config.php:1538
+msgid "Active and historical database cannot be the same."
+msgstr "La base de datos activa y la histórica no pueden ser la misma."
+
+#: ../../include/functions_config.php:1543
+#: ../../enterprise/godmode/setup/setup_history.php:159
+msgid "Host"
+msgstr "Host"
+
+#: ../../include/functions_config.php:1556
+msgid "Enable history database"
+msgstr "Activar base de datos histórica"
+
+#: ../../include/functions_config.php:1560
+msgid "Enable history event"
+msgstr "Activar histórico de eventos"
+
+#: ../../include/functions_config.php:1564
+#: ../../enterprise/godmode/setup/setup_history.php:204
+msgid "Database user"
+msgstr "Usuario de la base de datos"
+
+#: ../../include/functions_config.php:1568
+#: ../../enterprise/godmode/setup/setup_history.php:219
+msgid "Database password"
+msgstr "Contraseña de la base de datos"
+
+#: ../../include/functions_config.php:1576
+#: ../../enterprise/tools/ipam/ipam_editor.php:327
+#: ../../enterprise/include/ajax/ipam.ajax.php:521
+#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:104
+#: ../../godmode/alerts/alert_templates.php:73
+msgid "Days"
+msgstr "Días"
+
+#: ../../include/functions_config.php:1584
+msgid "Event Days"
+msgstr "Eventos en día"
+
+#: ../../include/functions_config.php:1592
+#: ../../enterprise/include/class/CommandCenter.class.php:456
+#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:746
+#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1051
+#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1146
+#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1496
+#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1781
+#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2106
+#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2537
+#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2550
+#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2878
+#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3055
+#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3145
+#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3184
+#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3249
+#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:465
+#: ../../godmode/alerts/configure_alert_template.php:228
+#: ../../godmode/alerts/configure_alert_template.php:232
+#: ../../godmode/alerts/configure_alert_template.php:249
+#: ../../godmode/alerts/configure_alert_template.php:253
+#: ../../godmode/alerts/configure_alert_template.php:270
+#: ../../godmode/alerts/configure_alert_template.php:274
+msgid "Step"
+msgstr "Paso"
+
+#: ../../include/functions_config.php:1600
+msgid "Delay"
+msgstr "Retraso"
+
+#: ../../include/functions_config.php:1632
+msgid "Historical database purge"
+msgstr "Purga de la base de datos histórica"
+
+#: ../../include/functions_config.php:1641
+msgid "Historical database partitions"
+msgstr "Particiones de base de datos histórica"
+
+#: ../../include/functions_config.php:1650
+msgid "Historical database events purge"
+msgstr "Purga de eventod de base de datos histórica"
+
+#: ../../include/functions_config.php:1659
+msgid "Historical database string purge"
+msgstr "Purga de cadenas de base de datos histórica"
+
+#: ../../include/functions_config.php:1668
+#: ../../godmode/setup/setup_ehorus.php:58
+msgid "Enable eHorus"
+msgstr "Activar eHorus"
+
+#: ../../include/functions_config.php:1672
+msgid "eHorus user login"
+msgstr "Inicio de sesión del usuario a eHorus"
+
+#: ../../include/functions_config.php:1676
+#: ../../godmode/users/configure_user.php:1308
+msgid "eHorus user"
+msgstr "Usuario de eHorus"
+
+#: ../../include/functions_config.php:1680
+#: ../../godmode/users/configure_user.php:1317
+msgid "eHorus password"
+msgstr "Contraseña de eHorus"
+
+#: ../../include/functions_config.php:1684
+msgid "eHorus API hostname"
+msgstr "Propietario de la API de eHorus"
+
+#: ../../include/functions_config.php:1688
+msgid "eHorus API port"
+msgstr "Puerto de la API de eHorus"
+
+#: ../../include/functions_config.php:1692
+msgid "eHorus request timeout"
+msgstr "Tiempo de respuesta de eHorus"
+
+#: ../../include/functions_config.php:1696
+msgid "eHorus id custom field"
+msgstr "ID del campo personalizado de eHorus"
+
+#: ../../include/functions_config.php:1702
+msgid "Integria user login"
+msgstr "Usuario de Integria"
+
+#: ../../include/functions_config.php:1706
+#: ../../godmode/setup/setup_integria.php:261
+msgid "Enable Integria IMS"
+msgstr "Habilitar Integria IMS"
+
+#: ../../include/functions_config.php:1710
+msgid "Integria user"
+msgstr "Usuario de Integria"
+
+#: ../../include/functions_config.php:1714
+msgid "Integria password"
+msgstr "Contraseña de Integria"
+
+#: ../../include/functions_config.php:1728
+msgid "integria API hostname"
+msgstr "Nombre del host de la API de Integria"
+
+#: ../../include/functions_config.php:1736
+msgid "Integria request timeout"
+msgstr "Límite de tiempo de las peticiones de Integria"
+
+#: ../../include/functions_config.php:1740
+msgid "Integria default group"
+msgstr "Grupo por defecto de Integria"
+
+#: ../../include/functions_config.php:1744
+msgid "Integria custom response default group"
+msgstr "Grupo de respuesta personalizada de Integria por defecto"
+
+#: ../../include/functions_config.php:1748
+msgid "Integria default priority"
+msgstr "Prioridad por defecto de Integria"
+
+#: ../../include/functions_config.php:1752
+msgid "Integria custom response default priority"
+msgstr "Prioridad de respuesta personalizada de Integria por defecto"
+
+#: ../../include/functions_config.php:1756
+msgid "Integria default creator"
+msgstr "Creador por defecto de Integria"
+
+#: ../../include/functions_config.php:1760
+msgid "Integria default owner"
+msgstr "Propietario de Integria por defecto"
+
+#: ../../include/functions_config.php:1764
+msgid "Integria custom response default owner"
+msgstr "Propietario de respuesta personalizada de Integria por defecto"
+
+#: ../../include/functions_config.php:1768
+msgid "Integria default ticket type"
+msgstr "Tipo de ticket de Integria por defecto"
+
+#: ../../include/functions_config.php:1772
+msgid "Integria custom response default ticket type"
+msgstr "Tipo de ticket de respuesta personalizado de Integria por defecto"
+
+#: ../../include/functions_config.php:1776
+msgid "Integria default ticket status"
+msgstr "Estado del ticket de Integria por defecto"
+
+#: ../../include/functions_config.php:1780
+msgid "Integria custom response default ticket status"
+msgstr "Estado del ticket de respuesta personalizada de Integria por defecto"
+
+#: ../../include/functions_config.php:1784
+msgid "Integria default ticket title"
+msgstr "Título del ticket de Integria por defecto"
+
+#: ../../include/functions_config.php:1788
+msgid "Integria custom response default ticket title"
+msgstr "Título del ticket de respuesta personalizada de Integria por defecto"
+
+#: ../../include/functions_config.php:1792
+msgid "Integria default ticket content"
+msgstr "Contenido del ticket de Integria por defecto"
+
+#: ../../include/functions_config.php:1796
+msgid "Integria custom response default ticket content"
+msgstr "Contenido del ticket de respuesta personalizada de Integria por defecto"
+
+#: ../../include/functions_config.php:1802
+msgid "Module Library User"
+msgstr "Usuario de la biblioteca de módulos"
+
+#: ../../include/functions_config.php:1806
+msgid "Module Library Password"
+msgstr "Contraseña de la biblioteca de módulos"
+
+#: ../../include/functions_config.php:1812
+msgid "WebSocket bind address"
+msgstr "Dirección de enlace WebSocket"
+
+#: ../../include/functions_config.php:1816
+msgid "WebSocket port"
+msgstr "Puerto WebSocket"
+
+#: ../../include/functions_config.php:1820
+#: ../../godmode/setup/setup_websocket_engine.php:67
+msgid "WebSocket proxy url"
+msgstr "URL del proxy de WebSocket"
+
+#: ../../include/functions_config.php:1839
+#, php-format
+msgid "Failed updated: the next values cannot update: <br> -%s"
+msgstr ""
+"Error al actualizar: los siguientes valores no se pueden actualizar: <br> -%s"
+
+#: ../../include/functions_config.php:2411 ../../include/functions_ui.php:1729
+msgid "the Flexible Monitoring System"
+msgstr "Sistema Flexible de Monitorización"
+
+#: ../../include/functions_config.php:2415
+msgid "PandoraFMS Metaconsole"
+msgstr "Metaconsola PandoraFMS"
+
+#: ../../include/functions_config.php:2419
+msgid "Centralized operation console"
+msgstr "Consola de operación centralizada"
+
+#: ../../include/functions_config.php:2423
+msgid "PANDORA FMS"
+msgstr "PANDORA FMS"
+
+#: ../../include/functions_config.php:2427
+#: ../../enterprise/include/reset_pass.php:146
+#: ../../enterprise/include/reset_pass.php:149
+#: ../../enterprise/include/process_reset_pass.php:159
+#: ../../enterprise/include/process_reset_pass.php:162
+msgid "ONE TOOL TO MONITOR THEM ALL"
+msgstr "UNA HERRAMIENTA PARA GOBERNARLOS A TODOS"
+
+#: ../../include/functions_config.php:2467
+#: ../../enterprise/meta/general/login_page.php:209
+msgid "PANDORA FMS NEXT GENERATION"
+msgstr "PANDORA FMS NEXT GENERATION"
+
+#: ../../include/functions_config.php:2471
+#: ../../enterprise/meta/general/login_page.php:217
+#: ../../enterprise/meta/include/reset_pass.php:147
+#: ../../enterprise/meta/include/process_reset_pass.php:150
+msgid "METACONSOLE"
+msgstr "METACONSOLA"
+
+#: ../../include/functions_alerts.php:474
+#: ../../enterprise/include/functions_policies.php:423
+#: ../../enterprise/include/functions_policies.php:438
+msgid "copy"
+msgstr "copiar"
+
+#: ../../include/functions_alerts.php:670
+#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:138
+#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:139
+#: ../../enterprise/godmode/massive/massive_add_alerts_policy.php:128
+#: ../../enterprise/godmode/massive/massive_add_alerts_policy.php:129
+msgid "Regular expression"
+msgstr "Expresión regular"
+
+#: ../../include/functions_alerts.php:671
+msgid "Max and min"
+msgstr "Máx. y mín."
+
+#: ../../include/functions_alerts.php:674
+msgid "Equal to"
+msgstr "Igual a"
+
+#: ../../include/functions_alerts.php:675
+msgid "Not equal to"
+msgstr "Diferente de"
+
+#: ../../include/functions_alerts.php:676 ../../include/functions_treeview.php:96
+#: ../../enterprise/godmode/modules/configure_local_component.php:310
+#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:498
+#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:289
+#: ../../godmode/modules/manage_network_components_form_common.php:164
+#: ../../godmode/massive/massive_edit_modules.php:561
+msgid "Warning status"
+msgstr "Estado advertencia"
+
+#: ../../include/functions_alerts.php:677
+#: ../../include/functions_treeview.php:108
+#: ../../enterprise/godmode/modules/configure_local_component.php:353
+#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:589
+#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:338
+#: ../../godmode/modules/manage_network_components_form_common.php:205
+#: ../../godmode/massive/massive_edit_modules.php:652
+msgid "Critical status"
+msgstr "Estado crítico"
+
+#: ../../include/functions_alerts.php:678
+#: ../../enterprise/operation/agentes/wux_console_view.php:369
+#: ../../enterprise/operation/agentes/wux_console_view.php:373
+msgid "Unknown status"
+msgstr "Estado desconocido"
+
+#: ../../include/functions_alerts.php:679
+msgid "On Change"
+msgstr "en estado de cambio"
+
+#: ../../include/functions_alerts.php:680
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2358
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3326
+#: ../../enterprise/godmode/policies/policy_external_alerts.php:459
+#: ../../enterprise/godmode/policies/policy_alerts.php:428
+#: ../../godmode/alerts/alert_list.list.php:636
+#: ../../godmode/alerts/alert_view.php:234
+msgid "Always"
+msgstr "Siempre"
+
+#: ../../include/functions_alerts.php:681
+msgid "Not normal status"
+msgstr "Estado anormal"
+
+#: ../../include/functions_alerts.php:1682
+msgid "No actions defined"
+msgstr "No hay acciones definidas"
+
+#: ../../include/functions_alerts.php:2644
+#: ../../godmode/alerts/alert_commands.php:567
+msgid "No command specified"
+msgstr "Ningún comando especificado"
+
+#: ../../include/functions_alerts.php:2649
+#: ../../godmode/alerts/alert_commands.php:563
+msgid "No name specified"
+msgstr "Ningún nombre especificado"
+
+#: ../../include/functions_alerts.php:2655
+msgid "Alert and command group does not match"
+msgstr "El grupo de la alerta y del comando no coinciden"
+
+#: ../../include/functions_snmp.php:65
+msgid "Load Average (Last minute)"
+msgstr "Carga media (última hora)"
+
+#: ../../include/functions_snmp.php:69
+msgid "Load Average (Last 5 minutes)"
+msgstr "Carga media (últimos 5 minutos)"
+
+#: ../../include/functions_snmp.php:73
+msgid "Load Average (Last 15 minutes)"
+msgstr "Carga media (últimos 15 minutos)"
+
+#: ../../include/functions_snmp.php:77
+msgid "Total Swap Size configured for the host"
+msgstr "Tamaño de intercambio total configurado para el host"
+
+#: ../../include/functions_snmp.php:81
+msgid "Available Swap Space on the host"
+msgstr "Espacio de intercambio disponible en el host"
+
+#: ../../include/functions_snmp.php:85
+msgid "Total Real/Physical Memory Size on the host"
+msgstr "Tamaño de memoria real/física en el servidor"
+
+#: ../../include/functions_snmp.php:89
+msgid "Available Real/Physical Memory Space on the host"
+msgstr "Memoria real/física disponible en el servidor"
+
+#: ../../include/functions_snmp.php:93
+msgid "Total Available Memory on the host"
+msgstr "Memoria total disponible"
+
+#: ../../include/functions_snmp.php:97
+msgid "Total Cached Memory"
+msgstr "Memoria de caché total"
+
+#: ../../include/functions_snmp.php:101
+msgid "Total Buffered Memory"
+msgstr "Memoria total del búfer"
+
+#: ../../include/functions_snmp.php:105
+msgid "Amount of memory swapped in from disk (kB/s)"
+msgstr "La cantidad de memoria intercambiada desde el disco (kB/s)"
+
+#: ../../include/functions_snmp.php:109
+msgid "Amount of memory swapped to disk (kB/s)"
+msgstr "Cantidad de memoria intercambiada con el disco (kB/s)"
+
+#: ../../include/functions_snmp.php:113
+msgid "Number of blocks sent to a block device"
+msgstr "Número de bloques enviado al dispositivo de bloques"
+
+#: ../../include/functions_snmp.php:117
+msgid "Number of blocks received from a block device"
+msgstr "Número de bloques recibidos del dispositivo de bloques"
+
+#: ../../include/functions_snmp.php:121
+msgid "Number of interrupts processed"
+msgstr "Número de interrupciones procesadas"
+
+#: ../../include/functions_snmp.php:125
+msgid "Number of context switches"
+msgstr "Número de cambios de contexto"
+
+#: ../../include/functions_snmp.php:129
+msgid "user CPU time"
+msgstr "tiempo de CPU de usuario"
+
+#: ../../include/functions_snmp.php:133
+msgid "system CPU time"
+msgstr "tiempo de CPU del sistema"
+
+#: ../../include/functions_snmp.php:137
+msgid "idle CPU time"
+msgstr "tiempo de inactividad de la CPU"
+
+#: ../../include/functions_snmp.php:141
+msgid "system Up time"
+msgstr "Tiempo de actividad del sistema"
+
+#: ../../include/functions_snmp.php:349
+msgid "Pagination"
+msgstr "Paginación"
+
+#: ../../include/functions_snmp.php:381 ../../include/functions_snmp.php:389
+msgid "Group by Enterprise String / IP"
+msgstr "Agrupar por Cadena Enterprise/IP"
+
+#: ../../include/functions_snmp.php:402 ../../include/functions_html.php:2109
+#: ../../include/functions.php:504 ../../include/functions.php:635
+#: ../../enterprise/include/ajax/log_viewer.ajax.php:278
+#: ../../enterprise/meta/advanced/metasetup.visual.php:384
+#: ../../godmode/setup/setup_visuals.php:1344
+msgid "hours"
+msgstr "horas"
+
+#: ../../include/functions_snmp.php:441
+#: ../../enterprise/include/functions_events.php:291
+msgid "Active filter"
+msgstr "Filtro activo"
+
+#: ../../include/functions_snmp.php:441
+#: ../../enterprise/include/functions_events.php:291
+msgid "Active filters"
+msgstr "Filtros activos"
+
+#: ../../include/functions_menu.php:491
+msgid "Configure user"
+msgstr "Configurar usuario"
+
+#: ../../include/functions_menu.php:492
+msgid "Configure profile"
+msgstr "Configurar perfil"
+
+#: ../../include/functions_menu.php:494
+msgid "Module templates management"
+msgstr "Gestión de plantillas de módulos"
+
+#: ../../include/functions_menu.php:495
+msgid "Inventory modules management"
+msgstr "Gestión de módulos de inventario"
+
+#: ../../include/functions_menu.php:497
+#: ../../enterprise/meta/include/functions_agents_meta.php:614
+#: ../../enterprise/meta/include/functions_agents_meta.php:619
+#: ../../enterprise/extensions/disabled/check_acls.php:50
+#: ../../enterprise/extensions/disabled/check_acls.php:137
+msgid "Agents management"
+msgstr "Gestión de agentes"
+
+#: ../../include/functions_menu.php:499
+#: ../../godmode/alerts/configure_alert_template.php:99
+#: ../../godmode/alerts/configure_alert_template.php:123
+#: ../../godmode/alerts/configure_alert_template.php:155
+msgid "Configure alert template"
+msgstr "Configurar plantilla de alerta"
+
+#: ../../include/functions_menu.php:501
+#: ../../godmode/users/configure_profile.php:343
+msgid "View visual console"
+msgstr "Ver consola visual"
+
+#: ../../include/functions_menu.php:502
+msgid "Builder visual console"
+msgstr "Configurador de la consola visual"
+
+#: ../../include/functions_menu.php:504
+msgid "View reporting"
+msgstr "Ver informes"
+
+#: ../../include/functions_menu.php:505
+msgid "Graph viewer"
+msgstr "Visor de gráficos"
+
+#: ../../include/functions_menu.php:507
+msgid "Manage custom graphs"
+msgstr "Gestionar gráficos personalizados"
+
+#: ../../include/functions_menu.php:508
+msgid "View graph containers"
+msgstr "Ver contenedores de gráfico"
+
+#: ../../include/functions_menu.php:509
+msgid "Manage graph containers"
+msgstr "Gestionar contenedores de gráfico"
+
+#: ../../include/functions_menu.php:510
+msgid "View graph templates"
+msgstr "Ver plantillas de gráfico"
+
+#: ../../include/functions_menu.php:511
+msgid "Manage graph templates"
+msgstr "Gestionar plantillas de gráfico"
+
+#: ../../include/functions_menu.php:512
+msgid "Graph template items"
+msgstr "Elementos de la plantilla de gráfico"
+
+#: ../../include/functions_menu.php:513
+msgid "Graph template wizard"
+msgstr "Asistente de plantilla de gráfico"
+
+#: ../../include/functions_menu.php:514
+#: ../../enterprise/include/functions_reporting.php:124
+#: ../../enterprise/meta/general/main_menu.php:296
+#: ../../enterprise/meta/general/main_header.php:200
+msgid "Templates wizard"
+msgstr "Asistente de plantillas"
+
+#: ../../include/functions_menu.php:517
+msgid "Manage GIS Maps"
+msgstr "Gestionar mapas GIS"
+
+#: ../../include/functions_menu.php:520
+msgid "Manage messages"
+msgstr "Gestionar mensajes"
+
+#: ../../include/functions_menu.php:522
+msgid "Manage module groups"
+msgstr "Gestionar grupos de módulos"
+
+#: ../../include/functions_menu.php:523
+msgid "Manage custom field"
+msgstr "Gestionar campos personalizados"
+
+#: ../../include/functions_menu.php:525
+msgid "Manage alert actions"
+msgstr "Gestionar acciones de alertas"
+
+#: ../../include/functions_menu.php:526
+msgid "Manage commands"
+msgstr "Gestionar comandos"
+
+#: ../../include/functions_menu.php:528
+msgid "Manage export targets"
+msgstr "Gestionar objetivos de exportación"
+
+#: ../../include/functions_menu.php:533
+msgid "Manage incident"
+msgstr "Gestionar incidentes"
+
+#: ../../include/functions_menu.php:535
+msgid "Manage groups"
+msgstr "Gestionar grupos"
+
+#: ../../include/functions_menu.php:536
+#: ../../enterprise/meta/advanced/component_management.php:52
+msgid "Tags management"
+msgstr "Gestión de etiquetas"
+
+#: ../../include/functions_menu.php:595
+msgid "Administration"
+msgstr "Administración"
+
+#: ../../include/functions_agents.php:836
+#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:366
+#: ../../godmode/massive/massive_copy_modules.php:551
+msgid "No source agent to copy"
+msgstr "No hay agente de origen del que copiar"
+
+#: ../../include/functions_agents.php:841
+#: ../../godmode/massive/massive_copy_modules.php:569
+msgid "No destiny agent(s) to copy"
+msgstr "No hay agentes destino a los que copiar"
+
+#: ../../include/functions_agents.php:867
+#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:371
+#: ../../godmode/massive/massive_copy_modules.php:564
+msgid "No modules have been selected"
+msgstr "No se ha seleccionado ningún módulo"
+
+#: ../../include/functions_agents.php:1005
+msgid ""
+"There was an error copying the agent configuration, the copy has been cancelled"
+msgstr ""
+"Hubo un error al copiar la configuración del agente, se canceló la copia."
+
+#: ../../include/functions_agents.php:1018
+#: ../../include/functions_planned_downtimes.php:961
+#: ../../enterprise/godmode/reporting/reporting_builder.template.php:455
+#: ../../enterprise/godmode/policies/policies.php:235
+#: ../../godmode/reporting/map_builder.php:315
+#: ../../godmode/reporting/map_builder.php:322
+#: ../../godmode/reporting/reporting_builder.php:737
+#: ../../godmode/alerts/alert_actions.php:129
+#: ../../godmode/alerts/alert_commands.php:625
+msgid "Successfully copied"
+msgstr "Copia realizada correctamente"
+
+#: ../../include/functions_agents.php:2963
+#: ../../include/functions_agents.php:3002
+#: ../../include/functions_agents.php:3073
+msgid "No Monitors"
+msgstr "No hay monitores"
+
+#: ../../include/functions_agents.php:2971
+#: ../../include/functions_agents.php:3026
+#: ../../include/functions_agents.php:3081
+#: ../../include/functions_reporting.php:12293
+msgid "At least one module in CRITICAL status"
+msgstr "Al menos un módulo está en estado CRÍTICO"
+
+#: ../../include/functions_agents.php:2977
+#: ../../include/functions_agents.php:3036
+#: ../../include/functions_agents.php:3089
+#: ../../include/functions_reporting.php:12300
+msgid "At least one module in WARNING status"
+msgstr "Al menos un módulo está en estado de ADVERTENCIA"
+
+#: ../../include/functions_agents.php:2983
+#: ../../include/functions_agents.php:3046
+#: ../../include/functions_agents.php:3097
+#: ../../include/functions_reporting.php:12307
+msgid "At least one module is in UKNOWN status"
+msgstr "Al menos un módulo está en estado DESCONOCIDO"
+
+#: ../../include/functions_agents.php:2989
+#: ../../include/functions_agents.php:3056
+#: ../../include/functions_agents.php:3105
+#: ../../include/functions_reporting.php:12314
+msgid "All Monitors OK"
+msgstr "Todos los monitores OK"
+
+#: ../../include/functions_agents.php:3014
+msgid "Alert fired on agent"
+msgstr "Alerta disparada en agente"
+
+#: ../../include/functions_agents.php:3847
+#: ../../include/functions_agents.php:3901
+#: ../../include/functions_reporting_html.php:5516
+#: ../../enterprise/meta/monitoring/custom_fields_view.php:400
+msgid "Agents ok"
+msgstr "Agentes OK"
+
+#: ../../include/functions_agents.php:3857
+#: ../../include/functions_reporting_html.php:5507
+#: ../../enterprise/meta/monitoring/custom_fields_view.php:374
+#: ../../mobile/operation/groups.php:153
+msgid "Agents critical"
+msgstr "Agentes críticos"
+
+#: ../../include/functions_agents.php:3867
+#: ../../include/functions_reporting_html.php:5510
+#: ../../enterprise/meta/monitoring/custom_fields_view.php:387
+msgid "Agents warning"
+msgstr "Agentes en estado de advertencia"
+
+#: ../../include/functions_agents.php:3877
+#: ../../include/functions_reporting_html.php:5519
+#: ../../enterprise/meta/monitoring/custom_fields_view.php:413
+#: ../../mobile/operation/groups.php:156
+msgid "Agents unknown"
+msgstr "Agentes desconocidos"
+
+#: ../../include/functions_agents.php:3891
+#: ../../include/functions_reporting_html.php:5525
+#: ../../enterprise/meta/monitoring/custom_fields_view.php:426
+#: ../../mobile/operation/groups.php:150
+msgid "Agents not init"
+msgstr "Agentes no iniciados"
+
+#: ../../include/functions_agents.php:3997
+#: ../../enterprise/include/class/SAP.app.php:727
+msgid "SAP Login OK"
+msgstr "Inicio de sesión SAP correcto"
+
+#: ../../include/functions_agents.php:3998
+#: ../../enterprise/include/class/SAP.app.php:728
+msgid "SAP Dumps"
+msgstr "Volcados SAP"
+
+#: ../../include/functions_agents.php:3999
+#: ../../enterprise/include/class/SAP.app.php:729
+msgid "SAP lock entry list"
+msgstr "Lista de entradas de bloqueo SAP"
+
+#: ../../include/functions_agents.php:4000
+#: ../../enterprise/include/class/SAP.app.php:730
+msgid "SAP canceled Jobs"
+msgstr "Trabajos SAP cancelados"
+
+#: ../../include/functions_agents.php:4001
+#: ../../enterprise/include/class/SAP.app.php:731
+msgid "SAP Batch inputs erroneous"
+msgstr "Entradas SAP en grupo erróneas"
+
+#: ../../include/functions_agents.php:4002
+#: ../../enterprise/include/class/SAP.app.php:732
+msgid "SAP IDOC erroneous"
+msgstr "SAP IDOC erróneo"
+
+#: ../../include/functions_agents.php:4003
+#: ../../enterprise/include/class/SAP.app.php:733
+msgid "SAP IDOC OK"
+msgstr "SAP IDOC OK"
+
+#: ../../include/functions_agents.php:4004
+#: ../../enterprise/include/class/SAP.app.php:734
+msgid "SAP WP without active restart"
+msgstr "WP SAP sin reinicio activo"
+
+#: ../../include/functions_agents.php:4005
+#: ../../enterprise/include/class/SAP.app.php:735
+msgid "SAP WP stopped"
+msgstr "WP SAP parado"
+
+#: ../../include/functions_agents.php:4006
+#: ../../enterprise/include/class/SAP.app.php:736
+msgid "Average time of SAPGUI response"
+msgstr "Media de tiempo de respuesta de SAPGUI"
+
+#: ../../include/functions_agents.php:4007
+msgid "Dialog response time"
+msgstr "Tiempo de respuesta del diálogo"
+
+#: ../../include/functions_agents.php:4008
+#: ../../enterprise/include/class/SAP.app.php:737
+msgid "Dialog Logged users"
+msgstr "Usuarios conectados en el diálogo"
+
+#: ../../include/functions_agents.php:4009
+#: ../../enterprise/include/class/SAP.app.php:738
+msgid "TRFC in error"
+msgstr "TRFC en error"
+
+#: ../../include/functions_agents.php:4010
+#: ../../enterprise/include/class/SAP.app.php:739
+msgid "QRFC in error SMQ2"
+msgstr "QRFC en error SMQ2"
+
+#: ../../include/functions_agents.php:4011
+#: ../../enterprise/include/class/SAP.app.php:740
+msgid "Number of Update WPs in error"
+msgstr "Número de WPs de actualización en error"
+
+#: ../../include/functions_network.php:34
+msgid "Top listeners"
+msgstr "Top listeners"
+
+#: ../../include/functions_network.php:35
+msgid "Top talkers"
+msgstr "Top talkers"
+
+#: ../../include/functions_network.php:45
+msgid "Top TCP protocols"
+msgstr "Top de protocolos TCP"
+
+#: ../../include/functions_network.php:46
+msgid "Top UDP protocols"
+msgstr "Top de protocolos UDP"
+
+#: ../../include/functions_notifications.php:811
+msgid "Subtype customization"
+msgstr "Personalización de subtipo"
+
+#: ../../include/functions_notifications.php:841
+msgid "Notified users"
+msgstr "Usuarios notificados"
+
+#: ../../include/functions_notifications.php:841
+msgid "Notified groups"
+msgstr "Grupos notificados"
+
+#: ../../include/functions_notifications.php:842
+msgid "Add users"
+msgstr "Añadir usuarios"
+
+#: ../../include/functions_notifications.php:842
+msgid "Add groups"
+msgstr "Añadir grupos"
+
+#: ../../include/functions_notifications.php:843
+msgid "Delete users"
+msgstr "Borrar usuarios"
+
+#: ../../include/functions_notifications.php:843
+msgid "Delete groups"
+msgstr "Borrar grupos"
+
+#: ../../include/functions_notifications.php:939
+#: ../../enterprise/godmode/massive/massive_add_service_elements.php:616
+msgid "Add elements"
+msgstr "Añadir elementos"
+
+#: ../../include/functions_notifications.php:952
+msgid "Remove elements"
+msgstr "Eliminar elementos"
+
+#: ../../include/functions_notifications.php:1070
+msgid "Click here to get more information"
+msgstr "Pinche aquí para obtener más información"
+
+#: ../../include/functions_netflow.php:348
+#: ../../enterprise/include/functions_reporting_csv.php:2808
+msgid "Destination IP"
+msgstr "IP de destino"
+
+#: ../../include/functions_netflow.php:350
+#: ../../enterprise/include/functions_reporting_csv.php:2808
+msgid "% Traffic"
+msgstr "% Tráfico"
+
+#: ../../include/functions_netflow.php:351
+msgid "Avg. Throughput"
+msgstr "Rendimiento medio"
+
+#: ../../include/functions_netflow.php:416
+#: ../../enterprise/include/functions_reporting_csv.php:2680
+msgid "Total flows"
+msgstr "Fluctuaciones totales"
+
+#: ../../include/functions_netflow.php:421
+#: ../../enterprise/include/functions_reporting_csv.php:2680
+msgid "Total bytes"
+msgstr "Bytes totales"
+
+#: ../../include/functions_netflow.php:426
+#: ../../enterprise/include/functions_reporting_csv.php:2680
+msgid "Total packets"
+msgstr "Paquetes totales"
+
+#: ../../include/functions_netflow.php:431
+msgid "Average bits per second"
+msgstr "Media de bits por segundo"
+
+#: ../../include/functions_netflow.php:436
+msgid "Average packets per second"
+msgstr "Media de paquetes por segundo"
+
+#: ../../include/functions_netflow.php:441
+msgid "Average bytes per packet"
+msgstr "Media de bytes por paquete"
+
+#: ../../include/functions_netflow.php:1182
+msgid "Area graph"
+msgstr "Gráfico del área"
+
+#: ../../include/functions_netflow.php:1185
+msgid "Top-N connections"
+msgstr "Conexiones Top-N"
+
+#: ../../include/functions_netflow.php:1186
+msgid "Circular mesh"
+msgstr "Malla circular"
+
+#: ../../include/functions_netflow.php:1187
+#: ../../include/functions_netflow.php:1452
+msgid "Host detailed traffic"
+msgstr "Tráfico detallado de la máquina"
+
+#: ../../include/functions_netflow.php:1439
+msgid "Sent"
+msgstr "Enviado"
+
+#: ../../include/functions_netflow.php:1447
+msgid "Received"
+msgstr "Recibido"
+
+#: ../../include/functions_netflow.php:1628
+msgid "Dst port"
+msgstr "Puerto destino"
+
+#: ../../include/functions_netflow.php:1631
+msgid "Dst IP"
+msgstr "IP de destino"
+
+#: ../../include/functions_netflow.php:1634
+msgid "Src IP"
+msgstr "IP de origen"
+
+#: ../../include/functions_netflow.php:1637
+msgid "Src port"
+msgstr "Puerto de origen"
+
+#: ../../include/functions_netflow.php:1823
+#, php-format
+msgid "nfdump binary (%s) not found!"
+msgstr "nfdump binary (%s) no encontrado"
+
+#: ../../include/functions_netflow.php:1830
+msgid "Make sure nfdump version 1.6.8 or newer is installed!"
+msgstr ""
+"Asegúrate de que tienes instalada la versión 1.6.8 nfdump o alguna posterior."
+
+#: ../../include/functions_netflow.php:1847
+msgid "High"
+msgstr "Alta"
+
+#: ../../include/functions_netflow.php:1848
+msgid "Ultra High"
+msgstr "Extra alta"
+
+#: ../../include/functions_netflow.php:1849
+#: ../../enterprise/include/functions_cron.php:500
+msgid "Hourly"
+msgstr "Cada hora"
+
+#: ../../include/functions_netflow.php:1850
+#: ../../enterprise/include/functions_cron.php:501
+#: ../../enterprise/include/lib/NetworkManager.php:178
+#: ../../godmode/agentes/module_manager_editor_prediction.php:183
+msgid "Daily"
+msgstr "Diariamente"
+
+#: ../../include/functions_netflow.php:1881
+#, php-format
+msgid "Agregate by %s"
+msgstr "Añadir por %s"
+
+#: ../../include/functions_netflow.php:1889
+#, php-format
+msgid "Resolution %s"
+msgstr "Resolución de %s"
+
+#: ../../include/functions_servers.php:556
+#: ../../include/functions_servers.php:1305
+#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:386
+msgid "Data server"
+msgstr "Servidor de datos"
+
+#: ../../include/functions_servers.php:582
+msgid "SNMP Trap server"
+msgstr "Servidor de traps SNMP"
+
+#: ../../include/functions_servers.php:621
+#: ../../enterprise/include/lib/ClusterViewer/ClusterWizard.php:840
+#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:476
+msgid "Prediction server"
+msgstr "Servidor de predicción"
+
+#: ../../include/functions_servers.php:647
+#: ../../include/functions_servers.php:1332
+#: ../../enterprise/godmode/servers/manage_export_form.php:79
+#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:537
+msgid "Export server"
+msgstr "Servidor de exportación"
+
+#: ../../include/functions_servers.php:660
+#: ../../include/functions_servers.php:1335
+#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:522
+msgid "Inventory server"
+msgstr "Servidor de inventario"
+
+#: ../../include/functions_servers.php:673
+#: ../../include/functions_servers.php:1329
+#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:507
+msgid "Web server"
+msgstr "Servidor web"
+
+#: ../../include/functions_servers.php:686
+#: ../../include/functions_servers.php:1338
+#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:552
+msgid "Event server"
+msgstr "Servidor de eventos"
+
+#: ../../include/functions_servers.php:699
+msgid "Correlation server"
+msgstr "Servidor de correlación"
+
+#: ../../include/functions_servers.php:712
+#: ../../include/functions_servers.php:1314
+msgid "Enterprise ICMP server"
+msgstr "Servidor ICMP Enterprise"
+
+#: ../../include/functions_servers.php:725
+#: ../../include/functions_servers.php:1317
+msgid "Enterprise SNMP server"
+msgstr "Servidor SNMP Enterprise"
+
+#: ../../include/functions_servers.php:751
+msgid "Enterprise Transactional server"
+msgstr "Servidor transaccional Enterprise"
+
+#: ../../include/functions_servers.php:764
+msgid "Mainframe server"
+msgstr "Servidor mainframe"
+
+#: ../../include/functions_servers.php:777
+msgid "Sync server"
+msgstr "Servidor sync"
+
+#: ../../include/functions_servers.php:790
+msgid "Wux server"
+msgstr "Servidor WUX"
+
+#: ../../include/functions_servers.php:803
+#: ../../include/functions_servers.php:1344
+msgid "Log server"
+msgstr "Servidor de registros"
+
+#: ../../include/functions_servers.php:816
+#: ../../include/functions_servers.php:1359
+#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:612
+msgid "NCM server"
+msgstr "Servidor NCM"
+
+#: ../../include/functions_servers.php:829
+msgid "Autoprovision server"
+msgstr "Servidor de auto aprovisionamiento"
+
+#: ../../include/functions_servers.php:842
+msgid "Migration server"
+msgstr "Servidor de migración"
+
+#: ../../include/functions_servers.php:855
+#: ../../include/functions_servers.php:1356
+#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:416
+msgid "Alert server"
+msgstr "Servidor de alertas"
+
+#: ../../include/functions_servers.php:1311
+#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:582
+msgid "SNMP server"
+msgstr "Servidor SNMP"
+
+#: ../../include/functions_servers.php:1323
+msgid "Prediction Server"
+msgstr "Servidor de predicción"
+
+#: ../../include/functions_servers.php:1347
+#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:597
+msgid "WUX server"
+msgstr "Servidor WUX"
+
+#: ../../include/functions_servers.php:1350
+msgid "Satellite server"
+msgstr "Servidor Satélite"
+
+#: ../../include/functions_servers.php:1353
+msgid "Transactional server"
+msgstr "Servidor transaccional"
+
+#: ../../include/functions_clippy.php:152
+#, php-format
+msgid "%s assistant"
+msgstr "Asistente de %s"
+
+#: ../../include/functions_clippy.php:189 ../../include/functions_clippy.php:194
+msgid "End wizard"
+msgstr "Cerrar asistente"
+
+#: ../../include/functions_clippy.php:227
+msgid "Next &rarr;"
+msgstr "Siguiente &rarr;"
+
+#: ../../include/functions_clippy.php:228
+msgid "&larr; Back"
+msgstr "&larr; Anterior"
+
+#: ../../include/functions_clippy.php:240
+msgid "Do you want to exit the help tour?"
+msgstr "¿Quieres salir de la ayuda guiada?"
+
+#: ../../include/functions_api.php:116
+msgid "Not `set`, `get` or `help` operation selected."
+msgstr "No hay operación 'set', 'get' o 'help' seleccionada"
+
+#: ../../include/functions_api.php:126
+msgid "This operation does not exist."
+msgstr "Esta operación no existe."
+
+#: ../../include/functions_api.php:136
+msgid "The Id does not exist in database."
+msgstr "El ID no existe en la base de datos."
+
+#: ../../include/functions_api.php:146
+msgid "This operation can not be used in cluster elements."
+msgstr "Esta operación no es posible en elementos de un cluster."
+
+#: ../../include/functions_api.php:156
+msgid "The user has not enough permissions for perform this action."
+msgstr ""
+"El usuario no tiene los permisos suficientes para llevar a cabo esta acción."
+
+#: ../../include/functions_api.php:166
+#: ../../enterprise/meta/monitoring/custom_fields_view.php:719
+msgid "No data to show."
+msgstr "No hay datos."
+
+#: ../../include/functions_api.php:176
+msgid ""
+"This console is not the environment administrator. Please, manage this feature "
+"from centralized manager console (Metaconsole)."
+msgstr ""
+"Esta consola no es el administrador del entorno. Gestione esta funcionalidad "
+"desde la consola de gestión centralizada (Metaconsola)."
+
+#: ../../include/functions_api.php:186
+msgid "Auth error"
+msgstr "Error de autenticación"
+
+#: ../../include/functions_api.php:1471
+msgid ""
+"The agent could not be modified. For security reasons, use a group other than "
+"0."
+msgstr ""
+"No se ha podido modificar el agente. Por motivos de seguridad, use un grupo "
+"diferente de 0."
+
+#: ../../include/functions_api.php:1810
+#, php-format
+msgid "Updated %d/%d agents"
+msgstr "Se han actualizado  %d/%d agentes"
+
+#: ../../include/functions_api.php:1818
+msgid "Agent updated."
+msgstr "Agente actualizado."
+
+#: ../../include/functions_api.php:2033 ../../godmode/setup/os.php:238
+msgid "Success creating OS"
+msgstr "SO creado correctamente"
+
+#: ../../include/functions_api.php:2035
+msgid "Could not create OS"
+msgstr "No se ha podido crear el sistema operativo."
+
+#: ../../include/functions_api.php:2072 ../../godmode/setup/os.php:246
+msgid "Success updating OS"
+msgstr "SO creado correctamente"
+
+#: ../../include/functions_api.php:2074
+msgid "Could not update OS"
+msgstr "No se ha podido actualizar el sistema operativo"
+
+#: ../../include/functions_api.php:2275
+msgid "The agent was successfully deleted"
+msgstr "El agente se ha eliminado correctamente"
+
+#: ../../include/functions_api.php:3770
+msgid "Network module updated."
+msgstr "Módulo de red actualizado"
+
+#: ../../include/functions_api.php:4066
+msgid "Plugin module updated."
+msgstr "Módulo de plugin actualizado"
+
+#: ../../include/functions_api.php:4422
+#, php-format
+msgid "Synthetic module created ID: %s"
+msgstr "ID creada por el módulo sintético: %s"
+
+#: ../../include/functions_api.php:4575
+msgid "Synthetic module created ID: "
+msgstr "ID del módulo sintético creado: "
+
+#: ../../include/functions_api.php:4692
+msgid "Data module updated."
+msgstr "Datos del módulo actualizado"
+
+#: ../../include/functions_api.php:5065
+msgid "SNMP module updated."
+msgstr "Módulo SNMP actualizado"
+
+#: ../../include/functions_api.php:5672
+msgid "Error creating alert template. Id_group cannot be left blank."
+msgstr "Error al crear plantilla de alerta. Id_group no puede estar en blanco."
+
+#: ../../include/functions_api.php:5686
+msgid ""
+"Error creating alert template. Invalid id_group or the user has not enough "
+"permission to make this action."
+msgstr ""
+"Error al crear plantilla de alerta. Id_group no válido o no tiene permisos "
+"suficientes para ejecutar esta acción."
+
+#: ../../include/functions_api.php:5832
+msgid ""
+"Error updating alert template. Invalid id_group or the user has not enough "
+"permission to make this action."
+msgstr ""
+"Error al cargar la plantilla de la alerta. Id_group no válido o el usuario no "
+"tiene los permisos suficientes para ejecutar esta acción."
+
+#: ../../include/functions_api.php:5916
+msgid "Successful update of the alert template"
+msgstr "Actualización correcta de la plantilla de alerta"
+
+#: ../../include/functions_api.php:5964
+msgid "Error deleting alert template. Id_template doesn't exist."
+msgstr "Error al eliminar la plantilla de alerta. Id_template no existe."
+
+#: ../../include/functions_api.php:5993
+msgid "Successful delete of alert template."
+msgstr "Plantilla de alerta borrada correctamente."
+
+#: ../../include/functions_api.php:6413 ../../include/functions_api.php:12362
+#: ../../include/functions_api.php:12428 ../../include/functions_api.php:12709
+#: ../../include/functions_api.php:12789
+#, php-format
+msgid "%d agents affected"
+msgstr "%d agentes afectados"
+
+#: ../../include/functions_api.php:6559
+msgid "Correct deleting of module template."
+msgstr "Plantilla de módulo borrada correctamente"
+
+#: ../../include/functions_api.php:6667
+msgid "Successful delete of module template."
+msgstr "Plantilla de módulo eliminada correctamente."
+
+#: ../../include/functions_api.php:6700
+msgid "Error validating alert. Id_template cannot be left blank."
+msgstr "Error al validar la alerta. Id_template no puede estar en blanco."
+
+#: ../../include/functions_api.php:6708
+msgid "Error validating alert. Id_agent cannot be left blank."
+msgstr "Error al validar a alerta. Id_agent no puede estar vacío."
+
+#: ../../include/functions_api.php:6716
+msgid "Error validating alert. Id_module cannot be left blank."
+msgstr "Error al validar la alerta. Id_module no puede estar en blanco."
+
+#: ../../include/functions_api.php:6787
+msgid "Error validating alert. Specified alert does not exist."
+msgstr "Error al validar alerta. La alerta especificada no existe."
+
+#: ../../include/functions_api.php:6798
+msgid "Error validating alert"
+msgstr "Error al validar la alerta."
+
+#: ../../include/functions_api.php:6872
+#, php-format
+msgid "Correct validation of all alerts (total %d)."
+msgstr "Validación correcta de todas las alertas (total %d)."
+
+#: ../../include/functions_api.php:6966
+msgid "Correct validation of all policy alerts."
+msgstr "Validación correcta de las alertas de política."
+
+#: ../../include/functions_api.php:7008
+msgid ""
+"Error stopping downtime. Periodical and running scheduled downtime cannot be "
+"stopped."
+msgstr ""
+"Error al detener el tiempo de inactividad. Las paradas planificadas periódicas "
+"y en ejecución no pueden detenerse."
+
+#: ../../include/functions_api.php:7021
+msgid "Downtime stopped."
+msgstr "Tiempo de inactividad interrumpido"
+
+#: ../../include/functions_api.php:7503
+msgid "and this modules are doesn't exists or not applicable a this agents: "
+msgstr "y este módulo no existe o no es aplicable a estos agentes: "
+
+#: ../../include/functions_api.php:7507
+msgid "and this agents are generate problems: "
+msgstr "y estos agentes generan problemas: "
+
+#: ../../include/functions_api.php:7511
+msgid "and this agents with ids are doesn't exists: "
+msgstr "y estos agentes con los identificadores no existen: "
+
+#: ../../include/functions_api.php:7659
+msgid "Planned downtime updated"
+msgstr "Tiempo de parada planificado actualizado"
+
+#: ../../include/functions_api.php:7735
+msgid " Agents deleted"
+msgstr " Agentes eliminados"
+
+#: ../../include/functions_api.php:7816
+msgid " Agents added"
+msgstr " Agentes añadidos"
+
+#: ../../include/functions_api.php:7936
+msgid "Data policy module updated."
+msgstr "Política de módulo de datos actualizado"
+
+#: ../../include/functions_api.php:8169
+msgid "Network policy module updated."
+msgstr "Módulo de red de la política actualizado"
+
+#: ../../include/functions_api.php:8426
+msgid "Plugin policy module updated."
+msgstr "Módulo de plugin de la política actualizado"
+
+#: ../../include/functions_api.php:8935
+msgid "SNMP policy module updated."
+msgstr "Módulo SNMP de la política actualizado"
+
+#: ../../include/functions_api.php:9280
+msgid "Successful deletion"
+msgstr "Eliminado correctamente."
+
+#: ../../include/functions_api.php:9596
+msgid "User created."
+msgstr "Usuario creado."
+
+#: ../../include/functions_api.php:9691
+msgid "User updated."
+msgstr "Usuario actualizado."
+
+#: ../../include/functions_api.php:9770
+msgid "Enabled user."
+msgstr "Usuario habilitado"
+
+#: ../../include/functions_api.php:9778
+msgid "Disabled user."
+msgstr "Usuario deshabilitado"
+
+#: ../../include/functions_api.php:10075
+#, php-format
+msgid "Template have been inserted in %d agents."
+msgstr "Las plantillas se han insertado en %d agentes."
+
+#: ../../include/functions_api.php:10247
+msgid "XML file was generated successfully in path: "
+msgstr "El archivo XML se ha creado correctamente en la ruta: "
+
+#: ../../include/functions_api.php:10387
+#, php-format
+msgid "Module has been created in %d agents."
+msgstr "El módulo se ha cread en %d agentes."
+
+#: ../../include/functions_api.php:10517
+#, php-format
+msgid "Action has been set for %d agents."
+msgstr "La acción se ha asignado a %d agentes."
+
+#: ../../include/functions_api.php:11173
+#: ../../godmode/agentes/configurar_agente.php:2232
+#, php-format
+msgid "Save by %s Console"
+msgstr "Guardar por consola de %s"
+
+#: ../../include/functions_api.php:11174
+#: ../../godmode/agentes/configurar_agente.php:2250
+#, php-format
+msgid "Update by %s Console"
+msgstr "Actualizar por consola de %s"
+
+#: ../../include/functions_api.php:11175
+#: ../../godmode/agentes/configurar_agente.php:2266
+#, php-format
+msgid "Insert by %s Console"
+msgstr "Insertar por consola de %s"
+
+#: ../../include/functions_api.php:11952
+msgid "User deleted."
+msgstr "Usuario borrado."
+
+#: ../../include/functions_api.php:12013
+msgid "User profile added."
+msgstr "Perfil de usuario añadido."
+
+#: ../../include/functions_api.php:12080
+msgid "User profile deleted."
+msgstr "Perfil de usuario eliminado."
+
+#: ../../include/functions_api.php:12369
+msgid "Module disabled successfully."
+msgstr "Módulo deshabilitado correctamente."
+
+#: ../../include/functions_api.php:12371
+msgid "The module could not be disabled."
+msgstr "No se ha podido deshabilitar el módulo."
+
+#: ../../include/functions_api.php:12435
+msgid "Module enabled successfully."
+msgstr "Módulo habilitado correctamente."
+
+#: ../../include/functions_api.php:12437
+msgid "The module could not be enabled."
+msgstr "El módulo no se ha podido habilitar."
+
+#: ../../include/functions_api.php:12485 ../../include/functions_api.php:12538
+msgid "The alert could not be disabled."
+msgstr "La alerta no se ha podido deshabilitar."
+
+#: ../../include/functions_api.php:12585 ../../include/functions_api.php:12638
+msgid "The alert could not be enabled."
+msgstr "La alerta no se ha podido habilitar."
+
+#: ../../include/functions_api.php:13910
+msgid "Enabled agent."
+msgstr "Agente habilitado"
+
+#: ../../include/functions_api.php:13918
+msgid "Disabled agent."
+msgstr "Agente deshabilitado"
+
+#: ../../include/functions_api.php:14897
+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:14899
+#, 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:14902
+msgid "This function is for metaconsole only."
+msgstr "función exclusiva de la Metaconsola."
+
+#: ../../include/functions_api.php:15287 ../../include/functions_api.php:15358
+msgid "Successfully deleted."
+msgstr "Eliminado correctamente"
+
+#: ../../include/functions_api.php:15317
+msgid "The user cannot access the cluster."
+msgstr "El usuario no puede acceder al cluster."
+
+#: ../../include/functions_api.php:15411
+#: ../../godmode/agentes/agent_template.php:67
+msgid "Created by template "
+msgstr "Creado mediante la plantilla "
+
+#: ../../include/functions_api.php:15505
+#: ../../godmode/agentes/agent_template.php:163
+msgid "Modules successfully added"
+msgstr "Módulos añadidos correctamente"
+
+#: ../../include/functions_api.php:16203
+msgid "Event filter successfully created."
+msgstr "Filtro de evento creado correctamente."
+
+#: ../../include/functions_api.php:16436
+msgid "Event filter successfully updated."
+msgstr "Filtro de evento creado correctamente."
+
+#: ../../include/functions_api.php:16477
+msgid "Event filter successfully deleted."
+msgstr "Filtro de evento borrado correctamente."
+
+#: ../../include/functions_api.php:16793
+msgid "Validated traps."
+msgstr "Traps validados."
+
+#: ../../include/functions_api.php:16820
+msgid "Deleted traps."
+msgstr "Traps eliminados."
+
+#: ../../include/functions_api.php:17013
+#, 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:17015
+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:17467
+#, 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:17627
+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:17635
+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:17660
+msgid "Error in discovery task enabling/disabling."
+msgstr "Error al habilitar/deshabilitar la tarea discovery."
+
+#: ../../include/functions_api.php:17668
+msgid "Enabled discovery task."
+msgstr "Tarea discovery habilitada."
+
+#: ../../include/functions_api.php:17676
+msgid "Disabled discovery task."
+msgstr "Tarea discovery deshabilitada."
 
 #: ../../include/functions_filemanager.php:135
 #: ../../include/functions_filemanager.php:192
@@ -49212,6 +23038,12 @@ msgstr "Error al crear el archivo"
 msgid "Error creating file with empty name"
 msgstr "Error al crear archivo con nombre en blanco"
 
+#: ../../include/functions_filemanager.php:296
+#: ../../enterprise/meta/advanced/collections.editor.php:167
+#: ../../enterprise/godmode/agentes/collections.editor.php:198
+msgid "Security error."
+msgstr "Error de seguridad"
+
 #: ../../include/functions_filemanager.php:311
 msgid "Directory created"
 msgstr "Directorio creado"
@@ -49220,6 +23052,14 @@ msgstr "Directorio creado"
 msgid "Something gone wrong creating directory"
 msgstr "Algo salió mal al crear un directorio"
 
+#: ../../include/functions_filemanager.php:342
+#: ../../include/functions_filemanager.php:359
+#: ../../include/functions_reporting_html.php:1662
+#: ../../enterprise/include/functions_inventory.php:860
+#: ../../enterprise/include/functions_inventory.php:925
+msgid "Deleted"
+msgstr "Eliminado(s)"
+
 #: ../../include/functions_filemanager.php:539
 #: ../../include/functions_filemanager.php:775
 msgid "Create a Directory"
@@ -49242,6 +23082,12 @@ msgstr "Subir archivos"
 msgid "Directory %s doesn't exist!"
 msgstr "El directorio %s no existe"
 
+#: ../../include/functions_filemanager.php:590
+#: ../../godmode/setup/file_manager.php:66 ../../godmode/servers/plugin.php:235
+#, php-format
+msgid "Index of %s"
+msgstr "Índice de %s"
+
 #: ../../include/functions_filemanager.php:605
 #: ../../extensions/files_repo/files_repo_list.php:58
 msgid "Last modification"
@@ -49272,6 +23118,15 @@ msgstr "Cualquier usuario podría ejecutar este archivo."
 msgid "Make sure it can't perform dangerous tasks"
 msgstr "Asegúrate de que no puede desempeñar tareas peligrosas"
 
+#: ../../include/functions_filemanager.php:737
+#: ../../enterprise/meta/advanced/collections.editor.php:125
+#: ../../enterprise/meta/advanced/collections.editor.php:193
+#: ../../enterprise/godmode/agentes/collections.editor.php:158
+#: ../../enterprise/godmode/agentes/collections.editor.php:224
+#: ../../godmode/servers/plugin.php:173
+msgid "Edit file"
+msgstr "Editar archivo"
+
 #: ../../include/functions_filemanager.php:758
 msgid "No files or directories to show."
 msgstr "No hay archivos o directorios a mostrar."
@@ -49289,6 +23144,12 @@ msgstr "Subir archivo zip a este directorio, útil para subir múltiples archivo
 msgid "Decompress"
 msgstr "Descomprimir"
 
+#: ../../include/functions_filemanager.php:853
+#: ../../enterprise/include/class/CSVImportAgents.class.php:196
+#: ../../enterprise/extensions/csv_import_group/main.php:105
+msgid "Go"
+msgstr "Ir"
+
 #: ../../include/functions_filemanager.php:910
 msgid "Create text"
 msgstr "Crear texto"
@@ -49301,236 +23162,89 @@ msgstr "Subir archivo/s"
 msgid "The directory is read-only"
 msgstr "Este directorio es solo de lectura."
 
-#: ../../include/functions_gis.php:27 ../../include/functions_gis.php:31
-#: ../../include/functions_gis.php:36
-msgid "Hierarchy of agents"
-msgstr "Jerarquía de agentes"
+#: ../../include/functions_treeview.php:52
+msgid "There was a problem loading module"
+msgstr "Error al cargar el módulo"
 
-#: ../../include/functions_notifications.php:811
-msgid "Subtype customization"
-msgstr "Personalización de subtipo"
+#: ../../include/functions_treeview.php:90
+#: ../../include/functions_treeview.php:102
+#: ../../enterprise/godmode/modules/configure_local_component.php:329
+#: ../../enterprise/godmode/modules/configure_local_component.php:372
+#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:532
+#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:623
+#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:323
+#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:372
+#: ../../godmode/modules/manage_network_components_form_common.php:183
+#: ../../godmode/modules/manage_network_components_form_common.php:224
+#: ../../godmode/massive/massive_edit_modules.php:595
+#: ../../godmode/massive/massive_edit_modules.php:686
+#: ../../godmode/agentes/module_manager_editor_common.php:444
+#: ../../godmode/agentes/module_manager_editor_common.php:505
+msgid "Str."
+msgstr "Str."
 
-#: ../../include/functions_notifications.php:841
-msgid "Notified users"
-msgstr "Usuarios notificados"
+#: ../../include/functions_treeview.php:315
+#: ../../include/graphs/functions_flot.php:509
+#: ../../include/functions_reporting_html.php:655
+#: ../../include/functions_reporting_html.php:4367
+msgid "No data"
+msgstr "Sin datos"
 
-#: ../../include/functions_notifications.php:841
-msgid "Notified groups"
-msgstr "Grupos notificados"
+#: ../../include/functions_treeview.php:342
+msgid "Go to module edition"
+msgstr "Ir a la edición de módulos"
 
-#: ../../include/functions_notifications.php:842
-msgid "Add users"
-msgstr "Añadir usuarios"
+#: ../../include/functions_treeview.php:393
+msgid "There was a problem loading alerts"
+msgstr "Error al cargar las alertas"
 
-#: ../../include/functions_notifications.php:842
-msgid "Add groups"
-msgstr "Añadir grupos"
+#: ../../include/functions_treeview.php:454
+#: ../../include/functions_reporting_html.php:5037
+#: ../../include/functions_reporting_html.php:5159
+#: ../../godmode/snmpconsole/snmp_alert.php:1234
+msgid "Times fired"
+msgstr "Nº de veces disparada"
 
-#: ../../include/functions_notifications.php:843
-msgid "Delete users"
-msgstr "Borrar usuarios"
+#: ../../include/functions_treeview.php:478
+msgid "Go to alerts edition"
+msgstr "Ir a \"editar alertas\""
 
-#: ../../include/functions_notifications.php:843
-msgid "Delete groups"
-msgstr "Borrar grupos"
+#: ../../include/functions_treeview.php:676
+msgid "Next agent contact"
+msgstr "Siguiente contacto con el agente"
 
-#: ../../include/functions_notifications.php:952
-msgid "Remove elements"
-msgstr "Eliminar elementos"
+#: ../../include/functions_treeview.php:703
+msgid "Edit cluster"
+msgstr "Editar cluster"
 
-#: ../../include/functions_notifications.php:1070
-msgid "Click here to get more information"
-msgstr "Pinche aquí para obtener más información"
+#: ../../include/functions_treeview.php:707
+msgid "Go to agent edition"
+msgstr "Ir a \"editar agentes\""
 
-#: ../../include/functions_groups.php:75
-msgid "Alert Actions"
-msgstr "Acciones de alerta"
+#: ../../include/functions_treeview.php:719
+msgid "Agent data"
+msgstr "Datos de agentes"
 
-#: ../../include/functions_groups.php:91
-msgid "Alert Templates"
-msgstr "Plantillas de alerta"
+#: ../../include/functions_treeview.php:799
+msgid "Advanced information"
+msgstr "Información avanzada"
 
-#: ../../include/functions_groups.php:155
-msgid "Layout visual console"
-msgstr "Diseño de la consola visual"
+#: ../../include/functions_treeview.php:812
+msgid "Agent access rate (24h)"
+msgstr "Accesibilidad del agente (24h)"
 
-#: ../../include/functions_groups.php:171
-msgid "Plannet down time"
-msgstr "Tiempo de inactividad estipulado"
+#: ../../include/functions_treeview.php:831 ../../mobile/operation/agent.php:268
+msgid "Events (24h)"
+msgstr "Eventos (24h)"
 
-#: ../../include/functions_groups.php:203
-msgid "GIS maps"
-msgstr "Mapas GIS"
+#: ../../include/functions_treeview.php:901
+msgid "Interface information"
+msgstr "Interfaz de información"
 
-#: ../../include/functions_groups.php:219
-msgid "GIS connections"
-msgstr "Conexiones GIS"
-
-#: ../../include/functions_groups.php:235
-msgid "GIS map layers"
-msgstr "Mapas GIS adicionales"
-
-#: ../../include/functions_groups.php:251
-msgid "Network maps"
-msgstr "Mapas de red"
-
-#: ../../include/functions_network.php:34
-msgid "Top listeners"
-msgstr "Top listeners"
-
-#: ../../include/functions_network.php:35
-msgid "Top talkers"
-msgstr "Top talkers"
-
-#: ../../include/functions_network.php:45
-msgid "Top TCP protocols"
-msgstr "Top de protocolos TCP"
-
-#: ../../include/functions_network.php:46
-msgid "Top UDP protocols"
-msgstr "Top de protocolos UDP"
-
-#: ../../include/rest-api/models/VisualConsole/View.php:66
-msgid "Label settings"
-msgstr "Configuración de etiquetas"
-
-#: ../../include/rest-api/models/VisualConsole/View.php:72
-#: ../../include/rest-api/models/VisualConsole/View.php:104
-msgid "General settings"
-msgstr "Configuración general"
-
-#: ../../include/rest-api/models/VisualConsole/View.php:78
-#: ../../include/rest-api/models/VisualConsole/View.php:94
-#: ../../include/rest-api/models/VisualConsole/View.php:110
-msgid "Specific settings"
-msgstr "Configuración específica"
-
-#: ../../include/rest-api/models/VisualConsole/View.php:213
-msgid "Item type not valid ["
-msgstr "Tipo de elemento no válido ["
-
-#: ../../include/rest-api/models/VisualConsole/View.php:218
-msgid "Item type has no getFormInputs method ["
-msgstr "Este tipo de elemento no tiene método getFormInputs ["
-
-#: ../../include/rest-api/models/VisualConsole/View.php:712
-#: ../../include/rest-api/models/VisualConsole/View.php:791
-#: ../../include/rest-api/models/VisualConsole/Items/Odometer.php:280
-#: ../../include/rest-api/models/VisualConsole/Items/NetworkLink.php:538
-#: ../../include/rest-api/models/VisualConsole/Items/NetworkLink.php:619
-msgid "Failed to connect to node"
-msgstr "No se ha podido conectar con el nodo"
-
-#: ../../include/rest-api/models/VisualConsole/View.php:729
-msgid "NetworkLink from"
-msgstr "NetworkLink de"
-
-#: ../../include/rest-api/models/VisualConsole/View.php:733
-#: ../../include/rest-api/models/VisualConsole/View.php:812
-#, php-format
-msgid "Interface %s status"
-msgstr "Estado de la interfaz %s"
-
-#: ../../include/rest-api/models/VisualConsole/View.php:808
-msgid "NetworkLink to"
-msgstr "NetworkLink a"
-
-#: ../../include/rest-api/models/VisualConsole/View.php:860
-#, php-format
-msgid "Failed to generate charts: %s"
-msgstr "No se han podido generar las tablas: %s"
-
-#: ../../include/rest-api/models/VisualConsole/Item.php:1964
-msgid "Label position"
-msgstr "Posición de la etiqueta"
-
-#: ../../include/rest-api/models/VisualConsole/Item.php:1994
-#: ../../include/rest-api/models/VisualConsole/Items/Box.php:217
-msgid "width"
-msgstr "ancho"
-
-#: ../../include/rest-api/models/VisualConsole/Item.php:2004
-#: ../../include/rest-api/models/VisualConsole/Items/Box.php:227
-msgid "height"
-msgstr "altura"
-
-#: ../../include/rest-api/models/VisualConsole/Item.php:2026
-#: ../../include/rest-api/models/VisualConsole/Items/Box.php:249
-msgid "X"
-msgstr "X"
-
-#: ../../include/rest-api/models/VisualConsole/Item.php:2051
-msgid "Link enabled"
-msgstr "Enlace habilitado"
-
-#: ../../include/rest-api/models/VisualConsole/Item.php:2063
-#: ../../include/rest-api/models/VisualConsole/Items/NetworkLink.php:950
-#: ../../include/rest-api/models/VisualConsole/Items/Line.php:499
-#: ../../include/rest-api/models/VisualConsole/Items/Box.php:273
-msgid "Show on top"
-msgstr "Mostrar primero"
-
-#: ../../include/rest-api/models/VisualConsole/Item.php:2093
-msgid "Static graph"
-msgstr "Imagen estática"
-
-#: ../../include/rest-api/models/VisualConsole/Item.php:2111
-msgid "Event History Graph"
-msgstr "Gráfica de histórico de eventos"
-
-#: ../../include/rest-api/models/VisualConsole/Item.php:2119
-msgid "Percentile bubble"
-msgstr "Gráfica bubble de percentil"
-
-#: ../../include/rest-api/models/VisualConsole/Item.php:2584
-#: ../../include/rest-api/models/VisualConsole/Item.php:2585
-msgid "Image Vc"
-msgstr "Imagen Vc"
-
-#: ../../include/rest-api/models/VisualConsole/Items/EventsHistory.php:270
-msgid "12h"
-msgstr "12h"
-
-#: ../../include/rest-api/models/VisualConsole/Items/EventsHistory.php:290
-msgid "Legend color"
-msgstr "Color de leyenda"
-
-#: ../../include/rest-api/models/VisualConsole/Items/ColorCloud.php:438
-msgid "Add new range"
-msgstr "Añadir nuevo intervalo"
-
-#: ../../include/rest-api/models/VisualConsole/Items/ColorCloud.php:495
-msgid "Current ranges"
-msgstr "Intervalos actuales"
-
-#: ../../include/rest-api/models/VisualConsole/Items/StaticGraph.php:402
-msgid "Show Last Value"
-msgstr "Mostrar último valor"
-
-#: ../../include/rest-api/models/VisualConsole/Items/SimpleValue.php:365
-msgid "Avg Value"
-msgstr "Valor medio"
-
-#: ../../include/rest-api/models/VisualConsole/Items/Odometer.php:416
-msgid "Title color"
-msgstr "Color del título"
-
-#: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:658
-#: ../../include/rest-api/models/VisualConsole/Items/BarsGraph.php:487
-msgid "Graph Type"
-msgstr "Tipo de gráfica"
-
-#: ../../include/rest-api/models/VisualConsole/Items/Box.php:311
-msgid "Border Width"
-msgstr "Ancho del borde"
-
-#: ../../include/rest-api/models/VisualConsole/Items/Box.php:335
-msgid "Fill transparent"
-msgstr "Relleno transparente"
-
-#: ../../include/rest-api/models/VisualConsole/Items/BasicChart.php:325
-msgid "Module name color"
-msgstr "Color del nombre del módulo"
+#: ../../include/functions_container.php:148
+#: ../../godmode/reporting/graphs.php:312
+msgid "Number of Graphs"
+msgstr "Número de gráficos"
 
 #: ../../include/help/clippy/godmode_alerts_alert_actions.php:35
 msgid ""
@@ -49556,26 +23270,98 @@ msgstr ""
 "Haz clic en la flecha para desplegar el submenú Monitorización y selecciona "
 "Detalle del monitor."
 
-#: ../../include/help/clippy/modules_not_init.php:35
-msgid "You have non initialized modules"
-msgstr "Tienes módulos sin iniciar."
+#: ../../include/help/clippy/topology_group.php:35
+msgid "Topology Group"
+msgstr "Tipología de grupo"
 
-#: ../../include/help/clippy/modules_not_init.php:35
+#: ../../include/help/clippy/topology_group.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."
+"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 ""
-"Esto sucede cuando se acaba de crear un módulo y no está ejecutado. Por lo "
-"general, en unos pocos segundos se debería iniciar y podrás verlo en la vista "
-"principal. Si se mantienen módulos no iniciados durante más de 24 horas (puede "
-"ser un problema en la ejecución o configuración) serán eliminados "
-"automáticamente por el sistema. Los no iniciados no son visibles en la vista "
-"principal; se pueden ver/editar en la sección de administración del módulo, en "
-"el administrador de agente."
+"Ten en cuenta que el grupo de mapas de topología no muestra la relación padre "
+"entre los nodos, solo muestra el grupo padre y el agente de distribución "
+"dentro de ellos. "
+
+#: ../../include/help/clippy/data_configuration_module.php:35
+msgid "Data Configuration Module."
+msgstr "Módulos de datos de configuración"
+
+#: ../../include/help/clippy/data_configuration_module.php:35
+msgid ""
+"Please note that information provided here affects how the agent collect "
+"information and generate the data XML. Any data/configuration reported by the "
+"agent, different from data or description is discarded, and the configuration "
+"shown in the console prevails over any configuration coming from the agent, "
+"this applies for example for crit/warn thresholds, interval, module group, min/"
+"max value, tags, etc."
+msgstr ""
+"Por favor, ten en cuenta que la información aquí proporcionada afecta la forma "
+"en que el agente recoge la información y genera el XML de datos. Cualquier "
+"dato/configuración enviado por el agente, a diferencia de los enviados desde "
+"datos o descripción que son descartados, y la configuración mostrada en la "
+"consola prevalece sobre cualquier configuración procedente del agente. Esto se "
+"aplica por ejemplo para umbrales críticos/advertencia, intervalo, grupo "
+"módulo, valor mínimo/máximo, etiquetas, etc."
+
+#: ../../include/help/clippy/data_configuration_module.php:35
+msgid ""
+"Information imported FIRST time from the XML will fill the information you can "
+"see in the console, but after the first import, system will ignore any update "
+"coming from the XML/Agent."
+msgstr ""
+"La información importada por PRIMERA vez desde el XML llenará la información "
+"visible en la consola, pero después de la primera importación, el sistema "
+"ignorará cualquier actualización que viene del XML/Agente."
+
+#: ../../include/help/clippy/homepage.php:75
+msgid "Hi, can I help you?"
+msgstr "Hola. ¿Te puedo ayudar?"
+
+#: ../../include/help/clippy/homepage.php:75
+#, php-format
+msgid ""
+"Let me introduce my self: I am Pandorin, the annoying assistant of %s. You can "
+"follow my steps to do basic tasks in %s or you can close me and never see me "
+"again."
+msgstr ""
+"Déjame que me presente: Soy Pandorín, el molestoso asistente de %s. Puedes "
+"seguir los pasos que te indico para llevar a cabo tareas básicas en %s o "
+"cerrarme y no volverme a ver nunca."
+
+#: ../../include/help/clippy/homepage.php:75
+msgid "Close this wizard and don't open it again."
+msgstr "Cerrar el asistente y no volver a abrirlo."
+
+#: ../../include/help/clippy/homepage.php:79
+msgid "Which task would you like to do first?"
+msgstr "¿Qué tarea te gustaría realizar primero?"
+
+#: ../../include/help/clippy/homepage.php:79
+#, php-format
+msgid "Ping a Linux or Windows server using a %s agent."
+msgstr "Hacer ping a un servidor Linux o Windows usando un agente %s."
+
+#: ../../include/help/clippy/homepage.php:79
+msgid "Create a alert by email in a critical module."
+msgstr "Crear una alerta que avise por email para un módulo crítico"
+
+#: ../../include/help/clippy/homepage.php:190
+#, php-format
+msgid ""
+"The first thing you have to do is to setup the e-mail config on the %s Server."
+msgstr ""
+"Lo primero que tiene que hacer es establecer la configuración del correo "
+"electrónico del servidor de %s."
+
+#: ../../include/help/clippy/homepage.php:190
+msgid "If you have it already configured you can go to the next step."
+msgstr "Si ya está configurado, puedes ir al siguiente paso."
+
+#: ../../include/help/clippy/homepage.php:195
+msgid "Now, pull down the Manage alerts menu and click on Actions. "
+msgstr "Ahora, abre el menú Administrar alertas y haz clic en Acciones. "
 
 #: ../../include/help/clippy/godmode_agentes_configurar_agente.php:34
 msgid "Now you must go to Modules. Don't worry I'll lead you."
@@ -49637,6 +23423,13 @@ msgstr ""
 "segundos, si no hay problemas, el color de estado pasará a <b>rojo</b> o "
 "<b>verde</b>."
 
+#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:119
+#: ../../include/help/clippy/operation_agentes_ver_agente.php:40
+#: ../../godmode/wizards/DiscoveryTaskList.class.php:1837
+#: ../../godmode/wizards/DiscoveryTaskList.class.php:1843
+msgid "Done"
+msgstr "Hecho"
+
 #: ../../include/help/clippy/godmode_agentes_configurar_agente.php:129
 msgid "Click on alerts tab and then fill the form to add an alert."
 msgstr ""
@@ -49667,6 +23460,65 @@ msgstr ""
 "Para probar la alerta que acabas de crear, ve a la vista principal, haz clic "
 "en la pestaña con el icono del ojo."
 
+#: ../../include/help/clippy/servers_down.php:35
+msgid "All servers down"
+msgstr "Todo los servidores están caídos"
+
+#: ../../include/help/clippy/servers_down.php:35
+msgid ""
+"Can you up all servers. You go to terminal in linux and execute the next "
+"command: \"sudo /etc/init.d/pandora_server restart\". It's possible need "
+"introduce root pass."
+msgstr ""
+"Puedes activar todos los servidores. Tienes que ir al terminal de Linux y "
+"ejecutar el siguiente comando: \"sudo /etc/init.d/pandora_server restart\". Es "
+"posible que necesites introducir la contraseña de root."
+
+#: ../../include/help/clippy/extension_cron_send_email.php:35
+msgid "The configuration of email for the task email is in the enterprise setup:"
+msgstr ""
+"La configuración del email para la tarea programada de emails está en la "
+"configuración de Enterprise:"
+
+#: ../../include/help/clippy/extension_cron_send_email.php:35
+msgid "Please check if the email configuration is correct."
+msgstr "Por favor, confirma que la configuración de email es correcta."
+
+#: ../../include/help/clippy/module_unknow.php:35
+msgid "You have unknown modules in this agent."
+msgstr "Tienes módulos en estado desconocido en este agente."
+
+#: ../../include/help/clippy/module_unknow.php:35
+msgid ""
+"Unknown modules are modules which receive data normally at least in one "
+"occassion, but at this time are not receving data. Please check our "
+"troubleshoot help page to help you determine why you have unknown modules."
+msgstr ""
+"Los módulos desconocidos son módulos que reciben datos normalmente al menos en "
+"una ocasión, pero en este momento no se reciben datos. Por favor, consulta la "
+"página de ayuda para solucionar los problemas sobre los módulos desconocidos."
+
+#: ../../include/help/clippy/modules_not_init.php:35
+msgid "You have non initialized modules"
+msgstr "Tienes módulos sin iniciar."
+
+#: ../../include/help/clippy/modules_not_init.php:35
+msgid ""
+"This happen when you have just created a module and it's not executed at first "
+"time. Usually in a few seconds should be initialized and you will be able to "
+"see in main view. If you keep non-init modules for more than 24hr (due a "
+"problem in it's execution or configuration) they will be automatically deleted "
+"by the system. Non-init are not visible in the “main view”, you can see/edit "
+"them in the module administration section, in the agent administrator."
+msgstr ""
+"Esto sucede cuando se acaba de crear un módulo y no está ejecutado. Por lo "
+"general, en unos pocos segundos se debería iniciar y podrás verlo en la vista "
+"principal. Si se mantienen módulos no iniciados durante más de 24 horas (puede "
+"ser un problema en la ejecución o configuración) serán eliminados "
+"automáticamente por el sistema. Los no iniciados no son visibles en la vista "
+"principal; se pueden ver/editar en la sección de administración del módulo, en "
+"el administrador de agente."
+
 #: ../../include/help/clippy/godmode_alerts_configure_alert_action.php:34
 msgid "Fill the name of your action."
 msgstr "Rellena el nombre de la acción."
@@ -49738,51 +23590,6 @@ msgstr ""
 "probabilidad de obtener módulos desconocidos es más alto, y el impacto en el "
 "servidor es mayor, ya que requiere un tiempo de respuesta más corto."
 
-#: ../../include/help/clippy/data_configuration_module.php:35
-msgid "Data Configuration Module."
-msgstr "Módulos de datos de configuración"
-
-#: ../../include/help/clippy/data_configuration_module.php:35
-msgid ""
-"Please note that information provided here affects how the agent collect "
-"information and generate the data XML. Any data/configuration reported by the "
-"agent, different from data or description is discarded, and the configuration "
-"shown in the console prevails over any configuration coming from the agent, "
-"this applies for example for crit/warn thresholds, interval, module group, min/"
-"max value, tags, etc."
-msgstr ""
-"Por favor, ten en cuenta que la información aquí proporcionada afecta la forma "
-"en que el agente recoge la información y genera el XML de datos. Cualquier "
-"dato/configuración enviado por el agente, a diferencia de los enviados desde "
-"datos o descripción que son descartados, y la configuración mostrada en la "
-"consola prevalece sobre cualquier configuración procedente del agente. Esto se "
-"aplica por ejemplo para umbrales críticos/advertencia, intervalo, grupo "
-"módulo, valor mínimo/máximo, etiquetas, etc."
-
-#: ../../include/help/clippy/data_configuration_module.php:35
-msgid ""
-"Information imported FIRST time from the XML will fill the information you can "
-"see in the console, but after the first import, system will ignore any update "
-"coming from the XML/Agent."
-msgstr ""
-"La información importada por PRIMERA vez desde el XML llenará la información "
-"visible en la consola, pero después de la primera importación, el sistema "
-"ignorará cualquier actualización que viene del XML/Agente."
-
-#: ../../include/help/clippy/servers_down.php:35
-msgid "All servers down"
-msgstr "Todo los servidores están caídos"
-
-#: ../../include/help/clippy/servers_down.php:35
-msgid ""
-"Can you up all servers. You go to terminal in linux and execute the next "
-"command: \"sudo /etc/init.d/pandora_server restart\". It's possible need "
-"introduce root pass."
-msgstr ""
-"Puedes activar todos los servidores. Tienes que ir al terminal de Linux y "
-"ejecutar el siguiente comando: \"sudo /etc/init.d/pandora_server restart\". Es "
-"posible que necesites introducir la contraseña de root."
-
 #: ../../include/help/clippy/server_queued_modules.php:35
 msgid "Excesive Queued."
 msgstr "Demasiados módulos en cola"
@@ -49799,20 +23606,6 @@ msgstr ""
 "cuello de botella. Una posible solución es aumentar el número de hilos del "
 "servidor, pero deberías pensar en consultarlo con soporte técnico."
 
-#: ../../include/help/clippy/module_unknow.php:35
-msgid "You have unknown modules in this agent."
-msgstr "Tienes módulos en estado desconocido en este agente."
-
-#: ../../include/help/clippy/module_unknow.php:35
-msgid ""
-"Unknown modules are modules which receive data normally at least in one "
-"occassion, but at this time are not receving data. Please check our "
-"troubleshoot help page to help you determine why you have unknown modules."
-msgstr ""
-"Los módulos desconocidos son módulos que reciben datos normalmente al menos en "
-"una ocasión, pero en este momento no se reciben datos. Por favor, consulta la "
-"página de ayuda para solucionar los problemas sobre los módulos desconocidos."
-
 #: ../../include/help/clippy/modules_not_learning_mode.php:46
 msgid ""
 "Please note that you have your agent setup to do not add new modules coming "
@@ -49858,6 +23651,20 @@ msgstr ""
 "Reinicia tu servidor de Pandora FMS para leer otra vez lo tokens generales de "
 "configuración."
 
+#: ../../include/help/clippy/agent_out_of_limits.php:35
+msgid "Agent contact date passed it's ETA!."
+msgstr "¡La fecha de contacto del agente pasó su plazo estimado!"
+
+#: ../../include/help/clippy/agent_out_of_limits.php:35
+msgid ""
+"This happen when your agent stopped reporting or the server have any problem "
+"(too load or just down). Check also connectivity between the agent and the "
+"server."
+msgstr ""
+"Esto sucede cuando un agente deja de informar o el servidor tiene algún "
+"problema (demasiada carga o simplemente está caído). Comprueba también la "
+"conectividad entre el agente y el servidor."
+
 #: ../../include/help/clippy/operation_agentes_status_monitor.php:34
 msgid ""
 "Now, you have to go to the monitors list and look for a \"critical\" module to "
@@ -49887,92 +23694,6 @@ msgstr ""
 "Ahora, para editar el módulo, haz clic en la llave inglesa que aparece en la "
 "columna del tipo."
 
-#: ../../include/help/clippy/agent_out_of_limits.php:35
-msgid "Agent contact date passed it's ETA!."
-msgstr "¡La fecha de contacto del agente pasó su plazo estimado!"
-
-#: ../../include/help/clippy/agent_out_of_limits.php:35
-msgid ""
-"This happen when your agent stopped reporting or the server have any problem "
-"(too load or just down). Check also connectivity between the agent and the "
-"server."
-msgstr ""
-"Esto sucede cuando un agente deja de informar o el servidor tiene algún "
-"problema (demasiada carga o simplemente está caído). Comprueba también la "
-"conectividad entre el agente y el servidor."
-
-#: ../../include/help/clippy/extension_cron_send_email.php:35
-msgid "The configuration of email for the task email is in the enterprise setup:"
-msgstr ""
-"La configuración del email para la tarea programada de emails está en la "
-"configuración de Enterprise:"
-
-#: ../../include/help/clippy/extension_cron_send_email.php:35
-msgid "Please check if the email configuration is correct."
-msgstr "Por favor, confirma que la configuración de email es correcta."
-
-#: ../../include/help/clippy/topology_group.php:35
-msgid "Topology Group"
-msgstr "Tipología de grupo"
-
-#: ../../include/help/clippy/topology_group.php:35
-msgid ""
-"Please note that group topology maps do not show the parent relationship "
-"between nodes, it only shows the group parentship and the agent distribution "
-"inside them. "
-msgstr ""
-"Ten en cuenta que el grupo de mapas de topología no muestra la relación padre "
-"entre los nodos, solo muestra el grupo padre y el agente de distribución "
-"dentro de ellos. "
-
-#: ../../include/help/clippy/homepage.php:75
-msgid "Hi, can I help you?"
-msgstr "Hola. ¿Te puedo ayudar?"
-
-#: ../../include/help/clippy/homepage.php:75
-#, php-format
-msgid ""
-"Let me introduce my self: I am Pandorin, the annoying assistant of %s. You can "
-"follow my steps to do basic tasks in %s or you can close me and never see me "
-"again."
-msgstr ""
-"Déjame que me presente: Soy Pandorín, el molestoso asistente de %s. Puedes "
-"seguir los pasos que te indico para llevar a cabo tareas básicas en %s o "
-"cerrarme y no volverme a ver nunca."
-
-#: ../../include/help/clippy/homepage.php:75
-msgid "Close this wizard and don't open it again."
-msgstr "Cerrar el asistente y no volver a abrirlo."
-
-#: ../../include/help/clippy/homepage.php:79
-msgid "Which task would you like to do first?"
-msgstr "¿Qué tarea te gustaría realizar primero?"
-
-#: ../../include/help/clippy/homepage.php:79
-#, php-format
-msgid "Ping a Linux or Windows server using a %s agent."
-msgstr "Hacer ping a un servidor Linux o Windows usando un agente %s."
-
-#: ../../include/help/clippy/homepage.php:79
-msgid "Create a alert by email in a critical module."
-msgstr "Crear una alerta que avise por email para un módulo crítico"
-
-#: ../../include/help/clippy/homepage.php:190
-#, php-format
-msgid ""
-"The first thing you have to do is to setup the e-mail config on the %s Server."
-msgstr ""
-"Lo primero que tiene que hacer es establecer la configuración del correo "
-"electrónico del servidor de %s."
-
-#: ../../include/help/clippy/homepage.php:190
-msgid "If you have it already configured you can go to the next step."
-msgstr "Si ya está configurado, puedes ir al siguiente paso."
-
-#: ../../include/help/clippy/homepage.php:195
-msgid "Now, pull down the Manage alerts menu and click on Actions. "
-msgstr "Ahora, abre el menú Administrar alertas y haz clic en Acciones. "
-
 #: ../../include/help/clippy/godmode_agentes_modificar_agente.php:34
 msgid "I'm going to show you how to monitor a server."
 msgstr "Te voy a mostrar cómo monitorizar un servidor."
@@ -49995,412 +23716,2834 @@ msgstr "Ahora elige el agente que buscaste."
 msgid "Choose the agent and click on the name."
 msgstr "Elige el agente y haz clic en el nombre."
 
-#: ../../include/ajax/snmp_browser.ajax.php:113
-#: ../../include/ajax/snmp_browser.ajax.php:124
-#: ../../include/ajax/snmp_browser.ajax.php:134
-msgid "SNMP modules"
-msgstr "Módulos SNMP"
+#: ../../include/functions_graph.php:1089
+#: ../../include/functions_reporting.php:4326
+#: ../../include/functions_reporting.php:4369
+msgid "No data to display within the selected interval"
+msgstr "No hay datos en el intervalo seleccionado"
 
-#: ../../include/ajax/snmp_browser.ajax.php:117
-msgid "Error creating the following modules:"
-msgstr "Error al crear los siguientes módulos:"
+#: ../../include/functions_graph.php:1538
+#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:409
+#: ../../godmode/reporting/reporting_builder.list_items.php:445
+msgid "No items."
+msgstr "Sin elementos"
 
-#: ../../include/ajax/snmp_browser.ajax.php:128
-msgid "Modules successfully created"
-msgstr "Módulos creados correctamente"
+#: ../../include/functions_graph.php:2630
+msgid "Not fired alerts"
+msgstr "No se han disparado alertas."
 
-#: ../../include/ajax/snmp_browser.ajax.php:138
-msgid "Module must be applied to an agent or a policy"
-msgstr "El módulo debe aplicarse a un agente o a una política"
+#: ../../include/functions_graph.php:2898 ../../include/functions_graph.php:2946
+#: ../../include/graphs/functions_gd.php:183
+#: ../../include/graphs/functions_gd.php:466
+msgid "Out of limits"
+msgstr "Fuera de límites"
 
-#: ../../include/ajax/snmp_browser.ajax.php:263
-msgid "Failed to create policy"
-msgstr "Error al crear política"
+#: ../../include/functions_graph.php:3548 ../../include/functions_graph.php:3549
+#: ../../include/functions_graph.php:5135 ../../include/functions.php:1043
+#: ../../include/functions.php:1272 ../../include/functions.php:1323
+msgid "Minor"
+msgstr "Menor"
 
-#: ../../include/ajax/snmp_browser.ajax.php:264
-msgid "Policy created succesfully"
-msgstr "Política creada con éxito"
+#: ../../include/functions_graph.php:3558 ../../include/functions_graph.php:3559
+#: ../../include/functions_graph.php:5139 ../../include/functions.php:1047
+#: ../../include/functions.php:1274 ../../include/functions.php:1327
+msgid "Major"
+msgstr "Principal"
 
-#: ../../include/ajax/heatmap.ajax.php:79
-msgid "Group modules by tag"
-msgstr "Agrupar módulos por etiqueta"
+#: ../../include/functions_graph.php:5518
+msgid "Main node"
+msgstr "Nodo principal"
 
-#: ../../include/ajax/heatmap.ajax.php:80
-msgid "Group modules by module group"
-msgstr "Agrupar módulos por grupo de módulos"
+#: ../../include/functions_snmp_browser.php:355
+msgid "The server did not return any response."
+msgstr "El servidor no ha devuelto ninguna respuesta"
 
-#: ../../include/ajax/heatmap.ajax.php:97
-msgid "Show groups"
-msgstr "Mostrar grupos"
+#: ../../include/functions_snmp_browser.php:556
+#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor_form.php:56
+#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:382
+#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:299
+#: ../../godmode/setup/snmp_wizard.php:42
+msgid "OID"
+msgstr "OID"
 
-#: ../../include/ajax/graph.ajax.php:161
-msgid "Time container lapse"
-msgstr "Lapso del contenedor de tiempo"
+#: ../../include/functions_snmp_browser.php:558
+msgid "Numeric OID"
+msgstr "OID numérico"
 
-#: ../../include/ajax/events.php:97
-msgid "Failed to retrieve comments"
-msgstr "No se han podido obtener los comentarios"
+#: ../../include/functions_snmp_browser.php:576
+msgid "Syntax"
+msgstr "Sintaxis"
 
-#: ../../include/ajax/events.php:1176
-msgid "Error executing response"
-msgstr "Error al ejecutar respuesta"
+#: ../../include/functions_snmp_browser.php:582
+msgid "Display hint"
+msgstr "Activar indicación"
 
-#: ../../include/ajax/events.php:1500
-msgid "Related"
-msgstr "Relacionado"
+#: ../../include/functions_snmp_browser.php:588
+msgid "Max access"
+msgstr "Acceso máximo"
 
-#: ../../include/ajax/events.php:1512
-msgid "Agent fields"
-msgstr "Campos de agente"
+#: ../../include/functions_snmp_browser.php:612
+msgid "OID Information"
+msgstr "Información OID"
 
-#: ../../include/ajax/events.php:1650
-msgid "Error adding comment"
-msgstr "Error al añadir el comentario"
+#: ../../include/functions_snmp_browser.php:638
+#: ../../godmode/agentes/module_manager.php:1205
+msgid "Create network component"
+msgstr "Crear componentes de red"
 
-#: ../../include/ajax/events.php:1651
-msgid "Comment added successfully"
-msgstr "Comentario añadido correctamente"
+#: ../../include/functions_snmp_browser.php:647
+msgid "Create agent module"
+msgstr "Crear módulo de agente"
 
-#: ../../include/ajax/events.php:1652
-msgid "Error changing event status"
-msgstr "Error al cambiar el estado del evento"
+#: ../../include/functions_snmp_browser.php:727
+#: ../../godmode/snmpconsole/snmp_trap_generator.php:95
+msgid "Community"
+msgstr "Comunidad"
 
-#: ../../include/ajax/events.php:1653
-msgid "Event status changed successfully"
-msgstr "Estado del evento cambiado correctamente"
+#: ../../include/functions_snmp_browser.php:736
+msgid "Starting OID"
+msgstr "Iniciar OID"
 
-#: ../../include/ajax/events.php:1654
-msgid "Error changing event owner"
-msgstr "Error al cambiar el propietario del evento"
+#: ../../include/functions_snmp_browser.php:746
+#: ../../include/functions_reporting_html.php:1524
+#: ../../enterprise/tools/ipam/ipam_calculator.php:52
+#: ../../enterprise/include/functions_reporting_csv.php:718
+#: ../../enterprise/include/class/AgentRepository.class.php:366
+#: ../../enterprise/include/class/AgentRepository.class.php:632
+#: ../../enterprise/meta/advanced/servers.build_table.php:63
+#: ../../enterprise/meta/advanced/metasetup.consoles.php:838
+#: ../../enterprise/godmode/servers/list_satellite.php:39
+#: ../../godmode/servers/servers.build_table.php:82
+#: ../../godmode/update_manager/update_manager.history.php:40
+#: ../../godmode/extensions.php:139
+#: ../../godmode/reporting/reporting_builder.item_editor.php:78
+msgid "Version"
+msgstr "Versión"
 
-#: ../../include/ajax/events.php:1655
-msgid "Event owner changed successfully"
-msgstr "Propietario del evento cambiado correctamente"
+#: ../../include/functions_snmp_browser.php:786
+msgid "Server to execute"
+msgstr "Servidor a ejecutar"
 
-#: ../../include/ajax/events.php:1656
-msgid "Error deleting event"
-msgstr "Error al eliminar evento"
+#: ../../include/functions_snmp_browser.php:801
+msgid "Browse"
+msgstr "Examinar"
 
-#: ../../include/ajax/events.php:1863
-msgid "Show all Events 24h"
-msgstr "Mostrar todos los eventos en las últimas 24h"
+#: ../../include/functions_snmp_browser.php:826
+#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:299
+#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:795
+#: ../../godmode/modules/manage_network_components_form_network.php:96
+#: ../../godmode/massive/massive_edit_modules.php:852
+#: ../../godmode/wizards/HostDevices.class.php:1259
+#: ../../godmode/agentes/module_manager_editor_network.php:336
+msgid "Auth user"
+msgstr "Autentificación de usuario"
 
-#: ../../include/ajax/events.php:2000
-msgid "These commands will apply to all selected events"
-msgstr "Estos comandos se aplicarán en todos los eventos seleccionados"
+#: ../../include/functions_snmp_browser.php:836
+#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:308
+#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:804
+#: ../../godmode/modules/manage_network_components_form_network.php:105
+#: ../../godmode/massive/massive_edit_modules.php:861
+#: ../../godmode/wizards/HostDevices.class.php:1270
+#: ../../godmode/agentes/module_manager_editor_network.php:349
+msgid "Auth password"
+msgstr "Autentificación de contraseña"
 
-#: ../../include/ajax/events.php:2108
-msgid "Alert fired in module "
-msgstr "Alerta disparada en el módulo "
+#: ../../include/functions_snmp_browser.php:856
+#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:327
+#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:807
+#: ../../godmode/modules/manage_network_components_form_network.php:126
+#: ../../godmode/massive/massive_edit_modules.php:864
+#: ../../godmode/wizards/HostDevices.class.php:1291
+#: ../../godmode/agentes/module_manager_editor_network.php:370
+msgid "DES"
+msgstr "DES"
 
-#: ../../include/ajax/events.php:2123
-msgid " is going to critical"
-msgstr " cambiando a CRÍTICO"
+#: ../../include/functions_snmp_browser.php:857
+#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:328
+#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:807
+#: ../../godmode/modules/manage_network_components_form_network.php:127
+#: ../../godmode/massive/massive_edit_modules.php:864
+#: ../../godmode/wizards/HostDevices.class.php:1292
+#: ../../godmode/agentes/module_manager_editor_network.php:370
+msgid "AES"
+msgstr "AES"
 
-#: ../../include/ajax/events.php:2137
-msgid " is going to warning"
-msgstr " cambiando a ADVERTENCIA"
+#: ../../include/functions_snmp_browser.php:877
+#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:347
+#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:810
+#: ../../godmode/modules/manage_network_components_form_network.php:148
+#: ../../godmode/massive/massive_edit_modules.php:867
+#: ../../godmode/wizards/HostDevices.class.php:1317
+#: ../../godmode/agentes/module_manager_editor_network.php:391
+msgid "Auth method"
+msgstr "Método de autentificación"
 
-#: ../../include/ajax/events.php:2151
-msgid " is going to unknown"
-msgstr " cambiando a DESCONOCIDO"
+#: ../../include/functions_snmp_browser.php:881
+#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:351
+#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:811
+#: ../../godmode/modules/manage_network_components_form_network.php:152
+#: ../../godmode/massive/massive_edit_modules.php:868
+#: ../../godmode/wizards/HostDevices.class.php:1323
+#: ../../godmode/agentes/module_manager_editor_network.php:395
+msgid "SHA"
+msgstr "SHA"
 
-#: ../../include/ajax/double_auth.ajax.php:144
-msgid "This is the private code that you should use with your authenticator app"
-msgstr ""
-"Esta es la clave privada que deberías usar con la aplicación de "
-"autentificación."
+#: ../../include/functions_snmp_browser.php:893
+#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:363
+#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:815
+#: ../../godmode/modules/manage_network_components_form_network.php:164
+#: ../../godmode/massive/massive_edit_modules.php:872
+#: ../../godmode/wizards/HostDevices.class.php:1337
+#: ../../godmode/agentes/module_manager_editor_network.php:411
+msgid "Not auth and not privacy method"
+msgstr "Método sin autentificación ni privacidad"
 
-#: ../../include/ajax/double_auth.ajax.php:145
-#: ../../include/ajax/double_auth.ajax.php:288
+#: ../../include/functions_snmp_browser.php:894
+#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:364
+#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:816
+#: ../../godmode/modules/manage_network_components_form_network.php:165
+#: ../../godmode/massive/massive_edit_modules.php:873
+#: ../../godmode/wizards/HostDevices.class.php:1338
+#: ../../godmode/agentes/module_manager_editor_network.php:412
+msgid "Auth and not privacy method"
+msgstr "Método con autentificación y sin privacidad"
+
+#: ../../include/functions_snmp_browser.php:895
+#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:365
+#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:817
+#: ../../godmode/modules/manage_network_components_form_network.php:166
+#: ../../godmode/massive/massive_edit_modules.php:874
+#: ../../godmode/wizards/HostDevices.class.php:1339
+#: ../../godmode/agentes/module_manager_editor_network.php:413
+msgid "Auth and privacy method"
+msgstr "Método con autentificación y privacidad"
+
+#: ../../include/functions_snmp_browser.php:939
+msgid "First match"
+msgstr "Primera correspondencia"
+
+#: ../../include/functions_snmp_browser.php:952
+msgid "Previous match"
+msgstr "Coincidencia anterior"
+
+#: ../../include/functions_snmp_browser.php:965
+msgid "Next match"
+msgstr "Siguiente coincidencia"
+
+#: ../../include/functions_snmp_browser.php:978
+msgid "Last match"
+msgstr "Última coincidencia"
+
+#: ../../include/functions_snmp_browser.php:992
+msgid "Expand the tree (can be slow)"
+msgstr "Expandir el árbol (podría llevar tiempo)"
+
+#: ../../include/functions_snmp_browser.php:1005
+msgid "Collapse the tree"
+msgstr "Plegar el árbol"
+
+#: ../../include/functions_snmp_browser.php:1034
+msgid "SNMP v3 options"
+msgstr "Opciones SNMP v3"
+
+#: ../../include/functions_snmp_browser.php:1044
+msgid "Search options"
+msgstr "Opciones de búsqueda"
+
+#: ../../include/functions_snmp_browser.php:1065
+msgid "Search matches"
+msgstr "Buscar coincidencias"
+
+#: ../../include/functions_snmp_browser.php:1081
+msgid "Create agent modules"
+msgstr "Crear módulos de agentes"
+
+#: ../../include/functions_snmp_browser.php:1090
+msgid "Create policy modules"
+msgstr "Crear módulos de políticas"
+
+#: ../../include/functions_snmp_browser.php:1099
+msgid "Create network components"
+msgstr "Crear componentes de red"
+
+#: ../../include/functions_snmp_browser.php:1511
+msgid " available"
+msgstr " disponible"
+
+#: ../../include/functions_snmp_browser.php:1511
+#: ../../include/functions_snmp_browser.php:1513
+#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:172
+#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:177
+#: ../../enterprise/godmode/reporting/graph_template_wizard.php:228
+#: ../../enterprise/godmode/reporting/graph_template_wizard.php:234
+#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:412
+#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:422
+#: ../../enterprise/godmode/reporting/reporting_builder.template.php:832
+#: ../../enterprise/godmode/reporting/reporting_builder.template.php:834
+msgid "Select all"
+msgstr "Seleccionar todo"
+
+#: ../../include/functions_snmp_browser.php:1513
+msgid " to apply"
+msgstr " a aplicar"
+
+#: ../../include/functions_snmp_browser.php:1566
+msgid "Undo"
+msgstr "Deshacer"
+
+#: ../../include/functions_reporting.php:364
+msgid " agents"
+msgstr " agentes"
+
+#: ../../include/functions_reporting.php:374
+msgid " modules"
+msgstr " módulos"
+
+#: ../../include/functions_reporting.php:996
+#: ../../include/functions_reporting.php:8556
+#: ../../enterprise/include/functions_reporting.php:2493
+#: ../../enterprise/include/functions_reporting.php:3437
+#: ../../enterprise/include/functions_reporting.php:4412
+msgid "There are no SLAs defined"
+msgstr "No hay SLA definidos"
+
+#: ../../include/functions_reporting.php:1071
+#: ../../include/functions_reporting.php:8934
+#: ../../enterprise/include/functions_reporting.php:2546
+#: ../../enterprise/include/functions_reporting.php:3490
+#: ../../enterprise/include/functions_reporting.php:4465
+msgid "Inverse"
+msgstr "Inverso"
+
+#: ../../include/functions_reporting.php:1510
+msgid "Top N"
+msgstr "Top N"
+
+#: ../../include/functions_reporting.php:1520 ../../include/functions_ui.php:2604
+#: ../../include/functions_reporting_html.php:4691
+#: ../../enterprise/include/functions_reporting_csv.php:1030
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2206
+#: ../../enterprise/meta/include/functions_wizard_meta.php:983
+#: ../../enterprise/meta/include/functions_wizard_meta.php:992
+#: ../../enterprise/meta/include/functions_wizard_meta.php:1068
+#: ../../enterprise/meta/include/functions_wizard_meta.php:1077
+#: ../../enterprise/meta/include/functions_wizard_meta.php:1271
+#: ../../enterprise/meta/include/functions_wizard_meta.php:1280
+#: ../../enterprise/meta/include/functions_wizard_meta.php:1508
+#: ../../enterprise/meta/include/functions_wizard_meta.php:1517
+#: ../../enterprise/meta/include/functions_wizard_meta.php:1593
+#: ../../enterprise/meta/include/functions_wizard_meta.php:1602
+#: ../../enterprise/meta/include/functions_wizard_meta.php:1713
+#: ../../enterprise/meta/include/functions_wizard_meta.php:1722
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1808
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2442
+#: ../../enterprise/godmode/reporting/reporting_builder.global.php:285
+#: ../../enterprise/godmode/reporting/reporting_builder.global.php:378
+#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:745
+#: ../../godmode/reporting/reporting_builder.item_editor.php:1303
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2404
+#: ../../godmode/alerts/alert_view.php:266
+msgid "Max"
+msgstr "Máx."
+
+#: ../../include/functions_reporting.php:1524 ../../include/functions_ui.php:2604
+#: ../../include/functions_reporting_html.php:4692
+#: ../../enterprise/include/functions_reporting_csv.php:1030
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2206
+#: ../../enterprise/meta/include/functions_wizard_meta.php:981
+#: ../../enterprise/meta/include/functions_wizard_meta.php:990
+#: ../../enterprise/meta/include/functions_wizard_meta.php:1066
+#: ../../enterprise/meta/include/functions_wizard_meta.php:1075
+#: ../../enterprise/meta/include/functions_wizard_meta.php:1269
+#: ../../enterprise/meta/include/functions_wizard_meta.php:1278
+#: ../../enterprise/meta/include/functions_wizard_meta.php:1506
+#: ../../enterprise/meta/include/functions_wizard_meta.php:1515
+#: ../../enterprise/meta/include/functions_wizard_meta.php:1591
+#: ../../enterprise/meta/include/functions_wizard_meta.php:1600
+#: ../../enterprise/meta/include/functions_wizard_meta.php:1711
+#: ../../enterprise/meta/include/functions_wizard_meta.php:1720
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1810
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2449
+#: ../../enterprise/godmode/reporting/reporting_builder.global.php:273
+#: ../../enterprise/godmode/reporting/reporting_builder.global.php:385
+#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:737
+#: ../../godmode/reporting/reporting_builder.item_editor.php:1301
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2411
+#: ../../godmode/alerts/alert_view.php:266
+msgid "Min"
+msgstr "Mín."
+
+#: ../../include/functions_reporting.php:1530
+#: ../../include/functions_reporting_html.php:4690
+#: ../../enterprise/include/functions_reporting_csv.php:1030
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2456
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2418
+msgid "Avg"
+msgstr "Media"
+
+#: ../../include/functions_reporting.php:1582
+#: ../../include/functions_reporting.php:3162
+#: ../../include/functions_reporting_html.php:801
+#: ../../include/functions_reporting_html.php:4209
+#: ../../include/functions_reporting_html.php:4758
+#: ../../include/functions_reporting_html.php:4761
+#: ../../enterprise/include/functions_reporting.php:5146
+msgid "There are no Agent/Modules defined"
+msgstr "No hay Agentes/Módulos definidos"
+
+#: ../../include/functions_reporting.php:1638
+msgid "Insuficient data"
+msgstr "Datos insuficientes"
+
+#: ../../include/functions_reporting.php:1889
+msgid "Event Report Group"
+msgstr "Informe de eventos del grupo"
+
+#: ../../include/functions_reporting.php:1937
+msgid "Exclude "
+msgstr "Excluir "
+
+#: ../../include/functions_reporting.php:2185
+msgid "Event Report Module"
+msgstr "Informe de eventos del módulo"
+
+#: ../../include/functions_reporting.php:2517
+#: ../../enterprise/include/functions_reporting_csv.php:740
+msgid "Inventory Changes"
+msgstr "Cambios de inventario"
+
+#: ../../include/functions_reporting.php:2590
+#: ../../enterprise/tools/ipam/ipam_action.php:385
+msgid "No changes found."
+msgstr "No se han encontrado cambios"
+
+#: ../../include/functions_reporting.php:2687
+#: ../../enterprise/operation/log/log_viewer.php:1256
+#: ../../enterprise/operation/log/log_viewer.php:1264
+#: ../../enterprise/operation/agentes/agent_inventory.php:254
+#: ../../enterprise/operation/inventory/inventory.php:459
+#: ../../enterprise/operation/inventory/inventory.php:502
+#: ../../enterprise/godmode/agentes/collection_manager.php:196
+#: ../../godmode/reporting/reporting_builder.php:1262
+msgid "No data found."
+msgstr "No se encontraron datos."
+
+#: ../../include/functions_reporting.php:2714
+#: ../../godmode/alerts/alert_actions.php:74
+msgid "Alert actions"
+msgstr "Acciones de alerta"
+
+#: ../../include/functions_reporting.php:2823
+msgid "Agent/Modules"
+msgstr "Agentes/módulos"
+
+#: ../../include/functions_reporting.php:2864
+#: ../../extensions/agents_modules.php:750
+msgid "There are no agents with modules"
+msgstr "No hay agentes con módulos"
+
+#: ../../include/functions_reporting.php:2920
+msgid "Agent/Modules Status"
+msgstr "Estado del agente/módulos"
+
+#: ../../include/functions_reporting.php:3069
+msgid "Exception - Everything"
+msgstr "Excepción - Todo"
+
+#: ../../include/functions_reporting.php:3070
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2536
+#: ../../enterprise/godmode/reporting/reporting_builder.global.php:422
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2546
+msgid "Everything"
+msgstr "Todo"
+
+#: ../../include/functions_reporting.php:3075
+#, 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:3078
+#, php-format
+msgid "Modules over or equal to %s"
+msgstr "Módulos por encima de o igual a %s"
+
+#: ../../include/functions_reporting.php:3083
+#, 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:3086
+#, php-format
+msgid "Modules under or equal to %s"
+msgstr "Módulos por debajo de o igual a %s"
+
+#: ../../include/functions_reporting.php:3091
+#, php-format
+msgid "Exception - Modules under %s"
+msgstr "Excepción - Módulos por debajo de %s"
+
+#: ../../include/functions_reporting.php:3094
+#, php-format
+msgid "Modules under %s"
+msgstr "Módulos por debajo de %s"
+
+#: ../../include/functions_reporting.php:3099
+#, php-format
+msgid "Exception - Modules over %s"
+msgstr "Excepción - Módulos por encima de %s"
+
+#: ../../include/functions_reporting.php:3102
+#, php-format
+msgid "Modules over %s"
+msgstr "Módulos por encima de %s"
+
+#: ../../include/functions_reporting.php:3107
+#, php-format
+msgid "Exception - Equal to %s"
+msgstr "Excepción - Igual a %s"
+
+#: ../../include/functions_reporting.php:3110
+#, php-format
+msgid "Equal to %s"
+msgstr "Igual a %s"
+
+#: ../../include/functions_reporting.php:3115
+#, php-format
+msgid "Exception - Not equal to %s"
+msgstr "Excepción - No igual a %s"
+
+#: ../../include/functions_reporting.php:3118
+#, php-format
+msgid "Not equal to %s"
+msgstr "No igual a %s"
+
+#: ../../include/functions_reporting.php:3122
+msgid "Exception - Modules at normal status"
+msgstr "Excepción - Módulos en estado normal"
+
+#: ../../include/functions_reporting.php:3123
+msgid "Modules at normal status"
+msgstr "Módulos en estado normal"
+
+#: ../../include/functions_reporting.php:3127
+msgid "Exception - Modules at critical or warning status"
+msgstr "Excepción - Módulos en estado crítico o de advertencia"
+
+#: ../../include/functions_reporting.php:3128
+msgid "Modules at critical or warning status"
+msgstr "Módulos en estado crítico o de advertencia"
+
+#: ../../include/functions_reporting.php:3347
+msgid "There are no Modules under those conditions."
+msgstr "No hay módulos bajo esas condiciones"
+
+#: ../../include/functions_reporting.php:3351
+#, 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:3355
+#, 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:3359
+#, php-format
+msgid "There are no Modules less %s."
+msgstr "No hay módulos por debajo de %s"
+
+#: ../../include/functions_reporting.php:3363
+#, php-format
+msgid "There are no Modules over %s."
+msgstr "No hay módulos por encima de %s"
+
+#: ../../include/functions_reporting.php:3367
+#, php-format
+msgid "There are no Modules equal to %s"
+msgstr "No hay módulos iguales a %s"
+
+#: ../../include/functions_reporting.php:3371
+#, php-format
+msgid "There are no Modules not equal to %s"
+msgstr "No hay módulos no iguales a %s"
+
+#: ../../include/functions_reporting.php:3375
+msgid "There are no Modules normal status"
+msgstr "No hay módulos en estado normal"
+
+#: ../../include/functions_reporting.php:3379
+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:3536
+#: ../../enterprise/include/functions_reporting_csv.php:969
+msgid "Group Report"
+msgstr "Informe del grupo"
+
+#: ../../include/functions_reporting.php:3716
+msgid "Event Report Agent"
+msgstr "Informe de eventos de agentes"
+
+#: ../../include/functions_reporting.php:3945
+#: ../../enterprise/include/functions_reporting_csv.php:2175
+#: ../../enterprise/godmode/modules/configure_local_component.php:447
+#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:966
+#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:318
+#: ../../godmode/modules/manage_network_components_form_common.php:305
+#: ../../godmode/massive/massive_edit_modules.php:1042
+#: ../../godmode/agentes/module_manager_editor_common.php:532
+msgid "Historical data"
+msgstr "Histórico de datos"
+
+#: ../../include/functions_reporting.php:4080
+msgid "Database Serialized"
+msgstr "Base de datos serializada"
+
+#: ../../include/functions_reporting.php:4276
+msgid "Last Value"
+msgstr "Último valor"
+
+#: ../../include/functions_reporting.php:4438
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3334
+msgid "Unnasigned group"
+msgstr "Grupo no asignado"
+
+#: ../../include/functions_reporting.php:4444
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3288
+msgid "Unassigned group"
+msgstr "Grupo no asignado"
+
+#: ../../include/functions_reporting.php:4600
+msgid "Network interfaces report"
+msgstr "Informe de las interfaces de red"
+
+#: ../../include/functions_reporting.php:4694
+msgid "Custom render report"
+msgstr "Informe de representación personalizado"
+
+#: ../../include/functions_reporting.php:4734
+#: ../../include/functions_reporting.php:4760
 msgid ""
-"You could enter the code manually or use the QR code to add it automatically"
+"This query is insecure, it could apply unwanted modiffications on the schema"
 msgstr ""
-"Puedes introducir el código manualmente o usar el código QR para añadirlo "
-"automáticamente."
+"Esta consulta es insegura, podría aplicar modificationes no deseadas en el "
+"esquema"
 
-#: ../../include/ajax/double_auth.ajax.php:151
-#: ../../include/ajax/double_auth.ajax.php:294
-msgid "QR"
-msgstr "QR"
+#: ../../include/functions_reporting.php:4991
+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/ajax/double_auth.ajax.php:190
-msgid "You are about to activate the double authentication"
-msgstr "Estás a punto de activar la doble autentificación."
+#: ../../include/functions_reporting.php:5012
+msgid "bytes/s"
+msgstr "bytes/s"
 
-#: ../../include/ajax/double_auth.ajax.php:192
+#: ../../include/functions_reporting.php:5132
+#: ../../enterprise/include/functions_reporting_csv.php:2447
+msgid "Alert Report Group"
+msgstr "Informe de alertas de grupo"
+
+#: ../../include/functions_reporting.php:5219
+#: ../../include/functions_reporting.php:5236
+#: ../../include/functions_reporting.php:5253
+msgid "Not triggered"
+msgstr "No disparado"
+
+#: ../../include/functions_reporting.php:5312
+#: ../../enterprise/include/functions_reporting_csv.php:2445
+msgid "Alert Report Agent"
+msgstr "Informe de alertas de agente"
+
+#: ../../include/functions_reporting.php:5479
+#: ../../enterprise/include/functions_reporting_csv.php:2443
+msgid "Alert Report Module"
+msgstr "Informe de alertas de módulo"
+
+#: ../../include/functions_reporting.php:5679
+msgid "SQL Graph Vertical Bars"
+msgstr "Gráfico de barras verticales SQL"
+
+#: ../../include/functions_reporting.php:5683
+msgid "SQL Graph Horizontal Bars"
+msgstr "Gráfico de barras horizontales SQL"
+
+#: ../../include/functions_reporting.php:5687
+msgid "SQL Graph Pie"
+msgstr "Gráfico SQL circular"
+
+#: ../../include/functions_reporting.php:5771
+#: ../../enterprise/include/functions_reporting_csv.php:1415
+#: ../../enterprise/include/functions_reporting_csv.php:1433
+#: ../../enterprise/include/functions_reporting_csv.php:1435
+msgid "Monitor Report"
+msgstr "Informe de monitores"
+
+#: ../../include/functions_reporting.php:5914
+msgid "Netflow Area"
+msgstr "Área de Netflow"
+
+#: ../../include/functions_reporting.php:5918
+msgid "Netflow Summary"
+msgstr "Resumen de Netflow"
+
+#: ../../include/functions_reporting.php:5922
+msgid "Netflow Data"
+msgstr "Datos de Netflow"
+
+#: ../../include/functions_reporting.php:5930
+msgid "Unknown report"
+msgstr "Informe desconocido"
+
+#: ../../include/functions_reporting.php:6024
+msgid "Prediction Date"
+msgstr "Fecha de predicción"
+
+#: ../../include/functions_reporting.php:6129
+#: ../../enterprise/include/functions_reporting_csv.php:788
+msgid "Projection Graph"
+msgstr "Gráfico de proyección"
+
+#: ../../include/functions_reporting.php:6427
+#: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:492
+#: ../../enterprise/include/functions_reporting_csv.php:1256
+#: ../../enterprise/godmode/modules/configure_local_component.php:466
+#: ../../godmode/modules/manage_network_components_form_common.php:310
+#: ../../godmode/agentes/module_manager_editor_common.php:668
+msgid "Max. Value"
+msgstr "Valor máximo"
+
+#: ../../include/functions_reporting.php:6431
+#: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:480
+#: ../../enterprise/include/functions_reporting_csv.php:1201
+#: ../../enterprise/godmode/modules/configure_local_component.php:461
+#: ../../godmode/modules/manage_network_components_form_common.php:308
+#: ../../godmode/agentes/module_manager_editor_common.php:664
+msgid "Min. Value"
+msgstr "Valor mínimo"
+
+#: ../../include/functions_reporting.php:6440
+#: ../../enterprise/include/functions_reporting_csv.php:1360
+#: ../../enterprise/include/functions_reporting_csv.php:1379
+#: ../../enterprise/include/functions_reporting_csv.php:1381
+#: ../../enterprise/include/functions_reporting_csv.php:1387
+#: ../../enterprise/include/functions_reporting_csv.php:1389
+msgid "AVG. Value"
+msgstr "Valor medio"
+
+#: ../../include/functions_reporting.php:6656
+#: ../../include/functions_reporting.php:6679
+#: ../../include/functions_reporting.php:6694
+#: ../../include/functions_reporting.php:6710
+#: ../../include/functions_reporting.php:6725
+#: ../../include/functions_reporting_html.php:3516
+#: ../../include/functions_reporting_html.php:3545
+#: ../../include/functions_reporting_html.php:3586
+#: ../../include/functions_reporting_html.php:3609
+#: ../../include/functions_reporting_html.php:3612
+#: ../../include/functions_reporting_html.php:3619
+#: ../../enterprise/include/functions_reporting_csv.php:1290
+#: ../../enterprise/include/functions_reporting_pdf.php:526
+#: ../../enterprise/include/functions_reporting_pdf.php:558
+#: ../../enterprise/include/functions_reporting_pdf.php:584
+#: ../../enterprise/include/functions_reporting_pdf.php:609
+#: ../../enterprise/include/functions_reporting_pdf.php:612
+#: ../../enterprise/include/functions_reporting_pdf.php:619
+msgid "Maximun"
+msgstr "Máximo"
+
+#: ../../include/functions_reporting.php:6674
+#: ../../include/functions_reporting_html.php:3585
+#: ../../include/functions_reporting_html.php:3592
+#: ../../include/functions_reporting_html.php:3600
+#: ../../include/functions_reporting_html.php:3611
+#: ../../include/functions_reporting_html.php:3616
+#: ../../enterprise/include/functions_reporting_csv.php:1235
+#: ../../enterprise/include/functions_reporting_csv.php:1290
+#: ../../enterprise/include/functions_reporting_csv.php:1394
+#: ../../enterprise/include/functions_reporting_pdf.php:583
+#: ../../enterprise/include/functions_reporting_pdf.php:590
+#: ../../enterprise/include/functions_reporting_pdf.php:597
+#: ../../enterprise/include/functions_reporting_pdf.php:611
+#: ../../enterprise/include/functions_reporting_pdf.php:616
+msgid "Lapse"
+msgstr "Tiempo transcurrido"
+
+#: ../../include/functions_reporting.php:6847
+#: ../../enterprise/include/functions_reporting_csv.php:1084
+#: ../../enterprise/godmode/reporting/mysql_builder.php:232
+msgid "SQL"
+msgstr "SQL"
+
+#: ../../include/functions_reporting.php:6925
 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"
+"Illegal query: Due security restrictions, there are some tokens or words you "
+"cannot use: *, delete, drop, alter, modify, password, pass, insert or update."
 msgstr ""
-"Con esta opción habilitada, el acceso a tu cuenta será más seguro,\n"
-"\t\tporque el código generado por otra aplicación se generará después de "
-"conectarse."
+"Consulta ilegal: debido a restricciones de seguridad, hay algunos tokens o "
+"palabras que no se puede usar: *, borrar, eliminar, soltar, alterar, "
+"modificar, contraseña, pass, insertar o actualizar."
 
-#: ../../include/ajax/double_auth.ajax.php:197
-msgid "You will need to install the app from the following link before continue"
+#: ../../include/functions_reporting.php:8339
+#: ../../include/functions_reporting.php:9057
+msgid "No Address"
+msgstr "Sin dirección"
+
+#: ../../include/functions_reporting.php:9356
+msgid ""
+"The monitor have no data in this range of dates or monitor type is not numeric"
 msgstr ""
-"Tienes que instalar la aplicación desde el siguiente vínculo antes de "
-"continuar."
+"El monitor no tiene datos en este rango de fecha o el tipo de monitor no es "
+"numérico."
 
-#: ../../include/ajax/double_auth.ajax.php:202
-msgid "Download the app"
-msgstr "Descargue la aplicación"
+#: ../../include/functions_reporting.php:9374
+msgid "The monitor type is not numeric"
+msgstr "El tipo de monitor no es numérico."
 
-#: ../../include/ajax/double_auth.ajax.php:222
-msgid "Are you installed the app yet?"
-msgstr "¿Ya has instalado la aplicación?"
+#: ../../include/functions_reporting.php:9739
+#: ../../enterprise/include/functions_reporting_csv.php:1235
+msgid "Minimum"
+msgstr "Mínimo"
 
-#: ../../include/ajax/double_auth.ajax.php:282
-msgid "A private code has been generated"
-msgstr "Un código privado ha sido generado."
+#: ../../include/functions_reporting.php:9743
+msgid "Maximum"
+msgstr "Máximo"
 
-#: ../../include/ajax/double_auth.ajax.php:287
-msgid "Before continue, you should create a new entry into the authenticator app"
+#: ../../include/functions_reporting.php:9748
+#: ../../enterprise/godmode/reporting/reporting_builder.global.php:262
+#: ../../enterprise/godmode/reporting/reporting_builder.global.php:392
+msgid "Rate"
+msgstr "Tasa"
+
+#: ../../include/functions_reporting.php:9847
+msgid "Automatic combined graph"
+msgstr "Gráfica combinada automática"
+
+#: ../../include/functions_reporting.php:10681
+msgid "Maximum of events shown"
+msgstr "Máximo número de eventos mostrados"
+
+#: ../../include/functions_reporting.php:11257
+#: ../../include/functions_reporting.php:11281
+msgid "Server health"
+msgstr "Estado del servidor"
+
+#: ../../include/functions_reporting.php:11257
+#, php-format
+msgid "%d Downed servers"
+msgstr "%d servidores caídos"
+
+#: ../../include/functions_reporting.php:11262
+#: ../../include/functions_reporting.php:11285
+msgid "Monitor health"
+msgstr "Estado del monitor"
+
+#: ../../include/functions_reporting.php:11262
+#, php-format
+msgid "%d Not Normal monitors"
+msgstr "%d monitores fuera de la normalidad"
+
+#: ../../include/functions_reporting.php:11262
+#: ../../include/functions_reporting.php:11286
+msgid "of monitors up"
+msgstr "de monitores funcionando"
+
+#: ../../include/functions_reporting.php:11267
+#: ../../include/functions_reporting.php:11289
+msgid "Module sanity"
+msgstr "Estado de los módulos"
+
+#: ../../include/functions_reporting.php:11267
+#, php-format
+msgid "%d Not inited monitors"
+msgstr "%d monitores sin iniciar"
+
+#: ../../include/functions_reporting.php:11267
+#: ../../include/functions_reporting.php:11290
+msgid "of total modules inited"
+msgstr "del total de módulos iniciados"
+
+#: ../../include/functions_reporting.php:11272
+#: ../../include/functions_reporting.php:11293
+#: ../../include/functions_reporting_html.php:4900
+msgid "Alert level"
+msgstr "Nivel de alerta"
+
+#: ../../include/functions_reporting.php:11272
+#: ../../include/functions_reporting.php:12384
+#: ../../include/functions_reporting.php:12394
+#, php-format
+msgid "%d Fired alerts"
+msgstr "%d alertas disparadas"
+
+#: ../../include/functions_reporting.php:11272
+#: ../../include/functions_reporting.php:11294
+msgid "of defined alerts not fired"
+msgstr "de alertas definidas no disparadas"
+
+#: ../../include/functions_reporting.php:11333
+#: ../../enterprise/include/functions_reporting_csv.php:983
+msgid "Defined alerts"
+msgstr "Alertas definidas"
+
+#: ../../include/functions_reporting.php:11344
+#: ../../include/functions_reporting.php:11501
+#: ../../include/functions_reporting.php:11515
+#: ../../include/functions_reporting.php:13854
+#: ../../include/functions_reporting.php:13929
+#: ../../include/functions_ui.php:4660 ../../include/functions_html.php:930
+#: ../../include/functions_html.php:3297 ../../include/functions_html.php:3789
+msgid "Enterprise version not installed"
+msgstr "Versión Enterprise no instalada"
+
+#: ../../include/functions_reporting.php:11366
+msgid "Defined and fired alerts"
+msgstr "Alertas definidas y disparadas"
+
+#: ../../include/functions_reporting.php:11420
+#: ../../enterprise/meta/monitoring/custom_fields_view.php:474
+msgid "Monitor normal"
+msgstr "Monitor normal"
+
+#: ../../include/functions_reporting.php:11431
+#: ../../enterprise/meta/monitoring/custom_fields_view.php:496
+msgid "Monitor not init"
+msgstr "Monitor en estado no iniciado"
+
+#: ../../include/functions_reporting.php:11451
+#: ../../include/functions_reporting.php:11457
+#: ../../enterprise/meta/monitoring/custom_fields_view.php:519
+msgid "Monitors by status"
+msgstr "Monitores por estado"
+
+#: ../../include/functions_reporting.php:11504
+#: ../../include/functions_reporting_html.php:5569
+msgid "Monitor checks"
+msgstr "Comprobaciones de monitores"
+
+#: ../../include/functions_reporting.php:11523
+#: ../../include/functions_reporting_html.php:5576
+msgid "Total agents and monitors"
+msgstr "Total de agentes y monitores"
+
+#: ../../include/functions_reporting.php:11545
+msgid "Defined users"
+msgstr "Usuarios definidos"
+
+#: ../../include/functions_reporting.php:12241
+msgid "Agent without data"
+msgstr "Agente sin datos"
+
+#: ../../include/functions_reporting.php:12370
+#: ../../include/functions_reporting.php:12379
+#: ../../enterprise/operation/agentes/tag_view.php:1075
+#, php-format
+msgid "%d Total modules"
+msgstr "%d módulos totales"
+
+#: ../../include/functions_reporting.php:12371
+#: ../../enterprise/operation/agentes/tag_view.php:1076
+#, php-format
+msgid "%d Modules in normal status"
+msgstr "%d módulos en estado normal"
+
+#: ../../include/functions_reporting.php:12372
+#: ../../enterprise/operation/agentes/tag_view.php:1077
+#, php-format
+msgid "%d Modules in critical status"
+msgstr "%d módulos en estado crítico"
+
+#: ../../include/functions_reporting.php:12373
+#: ../../enterprise/operation/agentes/tag_view.php:1078
+#, php-format
+msgid "%d Modules in warning status"
+msgstr "%d módulos en estado de advertencia"
+
+#: ../../include/functions_reporting.php:12374
+#: ../../enterprise/operation/agentes/tag_view.php:1079
+#, php-format
+msgid "%d Modules in unknown status"
+msgstr "%d módulos en estado desconocido"
+
+#: ../../include/functions_reporting.php:12375
+#: ../../enterprise/operation/agentes/tag_view.php:1080
+#, php-format
+msgid "%d Modules in not init status"
+msgstr "%d módulos en estado no iniciado"
+
+#: ../../include/functions_reporting.php:12380
+#, php-format
+msgid "%d Normal modules"
+msgstr "%d módulos normales"
+
+#: ../../include/functions_reporting.php:12381
+#, php-format
+msgid "%d Critical modules"
+msgstr "%d módulos críticos"
+
+#: ../../include/functions_reporting.php:12382
+#, php-format
+msgid "%d Warning modules"
+msgstr "%d módulos en estado de advertencia"
+
+#: ../../include/functions_reporting.php:12383
+#, php-format
+msgid "%d Unknown modules"
+msgstr "%d módulos desconocidos"
+
+#: ../../include/functions_reporting.php:12388
+#, php-format
+msgid "%d Total agents"
+msgstr "%d del total de agentes"
+
+#: ../../include/functions_reporting.php:12389
+#, php-format
+msgid "%d Normal agents"
+msgstr "%d agentes normales"
+
+#: ../../include/functions_reporting.php:12390
+#, php-format
+msgid "%d Critical agents"
+msgstr "%d agentes en estado crítico"
+
+#: ../../include/functions_reporting.php:12391
+#, php-format
+msgid "%d Warning agents"
+msgstr "%d agentes en estado de advertencia"
+
+#: ../../include/functions_reporting.php:12392
+#, php-format
+msgid "%d Unknown agents"
+msgstr "%d agentes desconocidos"
+
+#: ../../include/functions_reporting.php:12393
+#, php-format
+msgid "%d not init agents"
+msgstr "%d agentes no iniciados"
+
+#: ../../include/functions_reporting.php:13821
+msgid "Total running modules"
+msgstr "Total de módulos en ejecución"
+
+#: ../../include/functions_reporting.php:13824
+#: ../../include/functions_reporting.php:13839
+#: ../../include/functions_reporting.php:13851
+#: ../../include/functions_reporting.php:13869
+#: ../../include/functions_reporting.php:13881
+#: ../../include/functions_reporting.php:13893
+#: ../../include/functions_reporting.php:13905
+msgid "Ratio"
+msgstr "Proporción"
+
+#: ../../include/functions_reporting.php:13824
+#: ../../include/functions_reporting.php:13839
+#: ../../include/functions_reporting.php:13851
+#: ../../include/functions_reporting.php:13869
+#: ../../include/functions_reporting.php:13881
+#: ../../include/functions_reporting.php:13893
+#: ../../include/functions_reporting.php:13905
+msgid "Modules by second"
+msgstr "Módulos por segundo"
+
+#: ../../include/functions_reporting.php:13836
+msgid "Local modules"
+msgstr "Módulos locales"
+
+#: ../../include/functions_reporting.php:13846
+msgid "Network modules"
+msgstr "Módulos de red"
+
+#: ../../include/functions_reporting.php:13865
+msgid "Plugin modules"
+msgstr "Módulos de plugin"
+
+#: ../../include/functions_reporting.php:13877
+msgid "Prediction modules"
+msgstr "Módulos de predicción"
+
+#: ../../include/functions_reporting.php:13889
+msgid "WMI modules"
+msgstr "Módulos WMI"
+
+#: ../../include/functions_reporting.php:13901
+msgid "Web modules"
+msgstr "Módulos web"
+
+#: ../../include/functions_reporting.php:14058
+msgid "Weekly:"
+msgstr "Semanalmente:"
+
+#: ../../include/functions_reporting.php:14100
+msgid "Monthly:"
+msgstr "Mensual:"
+
+#: ../../include/functions_reporting.php:14101
+msgid "From day"
+msgstr "Desde el día"
+
+#: ../../include/functions_reporting.php:14102
+msgid "To day"
+msgstr "Hasta el día"
+
+#: ../../include/functions_reporting.php:14636
+msgid "Module Histogram Graph"
+msgstr "Gráfico de histograma del módulo"
+
+#: ../../include/functions_reporting.php:15015
+#: ../../enterprise/include/functions_cron.php:1776
+msgid "Greetings"
+msgstr "Saludos"
+
+#: ../../include/functions_reporting.php:15017
+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:15018
+msgid "report"
+msgstr "informe"
+
+#: ../../include/functions_reporting.php:15021
+#: ../../enterprise/include/functions_cron.php:1780
+#: ../../mobile/include/ui.class.php:327
+#: ../../mobile/include/functions_web.php:84
+msgid "Generated at"
+msgstr "Generado el"
+
+#: ../../include/functions_reporting.php:15023
+#: ../../enterprise/include/functions_cron.php:1782
+msgid "Thanks for your time."
+msgstr "Gracias por tu tiempo."
+
+#: ../../include/functions_reporting.php:15025
+#: ../../enterprise/include/functions_cron.php:1784
+msgid "Best regards, Pandora FMS"
+msgstr "Saludos cordiales, Pandora FMS"
+
+#: ../../include/functions_reporting.php:15027
+#: ../../enterprise/include/functions_cron.php:1786
+msgid ""
+"This is an automatically generated email from Pandora FMS, please do not reply."
 msgstr ""
-"Antes de continuar, deberías crear una nueva entrada dentro de la aplicación "
-"de autentificación."
+"Este es un email generado automáticamente por Pandora FMS. Por favor, no "
+"respondas a este email."
 
-#: ../../include/ajax/double_auth.ajax.php:297
-msgid "Refresh code"
-msgstr "Actualizar el código"
+#: ../../include/functions_visual_map.php:1746
+#: ../../include/functions_visual_map.php:1748
+#: ../../include/rest-api/models/VisualConsole/Items/StaticGraph.php:275
+#: ../../include/rest-api/models/VisualConsole/Items/StaticGraph.php:279
+msgid "Last value: "
+msgstr "Último valor: "
 
-#: ../../include/ajax/double_auth.ajax.php:366
-msgid "Are you introduced the code in the authenticator app yet?"
-msgstr "¿Ya has introducido el código en la aplicación de autentificación?"
+#: ../../include/functions_visual_map.php:2566
+#: ../../include/functions_visual_map.php:2947
+#: ../../enterprise/godmode/policies/policy_agents.php:1152
+#: ../../godmode/massive/massive_add_alerts.php:100
+#: ../../godmode/massive/massive_delete_modules.php:87
+#: ../../godmode/massive/massive_add_action_alerts.php:75
+#: ../../godmode/massive/massive_edit_agents.php:172
+#: ../../godmode/massive/massive_delete_alerts.php:113
+#: ../../godmode/massive/massive_delete_agents.php:61
+msgid "No agents selected"
+msgstr "No se seleccionó ningún agente"
 
-#: ../../include/ajax/double_auth.ajax.php:429
-msgid "Introduce a code generated by the app"
-msgstr "Introduce el código generado por la aplicación."
+#: ../../include/functions_visual_map.php:2632
+msgid "Agent successfully added to layout"
+msgstr "Agente añadido correctamente al diseño"
 
-#: ../../include/ajax/double_auth.ajax.php:430
-msgid "If the code is valid, the double authentication will be activated"
-msgstr "Si el código es válido, se activará la doble autentificación."
+#: ../../include/functions_visual_map.php:2674
+#: ../../enterprise/include/functions_massive.php:54
+#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:880
+#: ../../godmode/massive/massive_add_action_alerts.php:163
+#: ../../godmode/massive/massive_delete_action_alerts.php:175
+#: ../../godmode/massive/massive_edit_modules.php:1999
+#: ../../godmode/agentes/module_manager.php:274
+msgid "No modules selected"
+msgstr "No se han seleccionado módulos."
 
-#: ../../include/ajax/double_auth.ajax.php:439
-msgid "Validate code"
-msgstr "Validar código"
+#: ../../include/functions_visual_map.php:2816
+msgid "Modules successfully added to layout"
+msgstr "Módulos añadidos correctamente al diseño"
 
-#: ../../include/ajax/double_auth.ajax.php:491
-msgid "The code is valid, you can exit now"
-msgstr "El código es válido, puedes salir ahora."
+#: ../../include/functions_visual_map.php:3141
+msgid "Agents successfully added to layout"
+msgstr "Agentes añadidos correctamente al diseño"
 
-#: ../../include/ajax/double_auth.ajax.php:508
-msgid "The code is valid, but it was an error saving the data"
-msgstr "El código es válido, pero hubo un error al guardar los datos."
+#: ../../include/functions_visual_map.php:3537
+msgid "Cannot load the visualmap"
+msgstr "No se puede cargar el mapa visual"
 
-#: ../../include/ajax/module.php:207
-msgid "3 months"
-msgstr "3 meses"
+#: ../../include/functions_visual_map.php:4189
+#: ../../include/rest-api/models/VisualConsole/Item.php:2107
+msgid "Bars graph"
+msgstr "Gráfico de barras"
 
-#: ../../include/ajax/module.php:210
-msgid "2 years"
-msgstr "2 años"
+#: ../../include/functions_visual_map.php:4199
+#: ../../include/rest-api/models/VisualConsole/Item.php:2115
+msgid "Percentile bar"
+msgstr "Barra de porcentaje"
 
-#: ../../include/ajax/module.php:211
-msgid "3 years"
-msgstr "3 años"
+#: ../../include/functions_visual_map.php:4204
+#: ../../include/rest-api/models/VisualConsole/Item.php:2123
+msgid "Circular progress bar"
+msgstr "Barra de progreso circular"
 
-#: ../../include/ajax/module.php:307
-msgid "Exact phrase"
-msgstr "Frase exacta"
+#: ../../include/functions_modules.php:4015
+msgid "Realtime SNMP graph"
+msgstr "Gráfica SNMP en tiempo real"
 
-#: ../../include/ajax/module.php:1304
-msgid "Any monitors aren't with this filter."
-msgstr "No todos los monitores llevan este filtro"
+#: ../../include/functions_modules.php:4080
+msgid "ALL"
+msgstr "TODO"
 
-#: ../../include/ajax/module.php:1306
-msgid "This agent doesn't have any active monitors."
-msgstr "Este agente no tiene ningún monitor activo."
+#: ../../include/functions_modules.php:4096
+msgid "NOT NORMAL"
+msgstr "NO NORMAL"
 
-#: ../../include/ajax/custom_fields.php:414
-msgid "Current interval"
-msgstr "Intervalo actual"
+#: ../../include/functions_planned_downtimes.php:40
+#: ../../include/functions_planned_downtimes.php:742
+#: ../../godmode/agentes/planned_downtime.editor.php:241
+msgid ""
+"Not created. Error inserting data. Start time must be higher than the current "
+"time"
+msgstr ""
+"No ha sido creado. Error insertando datos. La fecha de comienzo debe ser "
+"anterior a la fecha actual."
 
-#: ../../include/ajax/custom_fields.php:460
-#: ../../include/ajax/custom_fields.php:513
-msgid "Modules normal"
-msgstr "Módulos normales"
+#: ../../include/functions_planned_downtimes.php:42
+#: ../../include/functions_planned_downtimes.php:47
+#: ../../include/functions_planned_downtimes.php:49
+#: ../../include/functions_planned_downtimes.php:747
+#: ../../include/functions_planned_downtimes.php:754
+#: ../../include/functions_planned_downtimes.php:762
+#: ../../include/functions_planned_downtimes.php:770
+#: ../../include/functions_planned_downtimes.php:775
+#: ../../include/functions_planned_downtimes.php:780
+#: ../../include/functions_planned_downtimes.php:785
+#: ../../include/functions_planned_downtimes.php:790
+#: ../../include/functions_planned_downtimes.php:795
+#: ../../include/functions_planned_downtimes.php:800
+#: ../../godmode/agentes/planned_downtime.editor.php:245
+#: ../../godmode/agentes/planned_downtime.editor.php:249
+#: ../../godmode/agentes/planned_downtime.editor.php:257
+#: ../../godmode/agentes/planned_downtime.editor.php:261
+msgid "Not created. Error inserting data"
+msgstr "No se pudo crear. Error al insertar los datos."
 
-#: ../../include/ajax/custom_fields.php:471
-msgid "Modules critical"
-msgstr "Módulos críticos"
+#: ../../include/functions_planned_downtimes.php:42
+#: ../../include/functions_planned_downtimes.php:754
+#: ../../godmode/agentes/planned_downtime.editor.php:245
+msgid "The end date must be higher than the start date"
+msgstr "La fecha de fin debe ser posterior a la fecha de inicio."
 
-#: ../../include/ajax/custom_fields.php:482
-msgid "Modules warning"
-msgstr "Módulos en estado de advertencia"
+#: ../../include/functions_planned_downtimes.php:47
+#: ../../include/functions_planned_downtimes.php:762
+#: ../../godmode/agentes/planned_downtime.editor.php:257
+#: ../../godmode/agentes/planned_downtime.editor.php:716
+#: ../../godmode/agentes/planned_downtime.editor.php:729
+msgid "The end time must be higher than the start time"
+msgstr "La hora de fin debe ser posterior a la fecha de inicio."
 
-#: ../../include/ajax/custom_fields.php:492
-msgid "Modules unknown"
-msgstr "Módulos desconocidos"
+#: ../../include/functions_planned_downtimes.php:49
+#: ../../include/functions_planned_downtimes.php:770
+#: ../../godmode/agentes/planned_downtime.editor.php:261
+#: ../../godmode/agentes/planned_downtime.editor.php:701
+msgid "The end day must be higher than the start day"
+msgstr "El día de fin debe ser posterior el día de inicio."
 
-#: ../../include/ajax/custom_fields.php:503
-msgid "Modules no init"
-msgstr "Módulos no iniciados"
+#: ../../include/functions_planned_downtimes.php:98
+#: ../../include/functions_planned_downtimes.php:814
+#: ../../godmode/agentes/planned_downtime.editor.php:313
+msgid "Each scheduled downtime must have a different name"
+msgstr "Cada tiempo de inactividad programado debe tener un nombre diferente"
 
-#: ../../include/ajax/custom_fields.php:545
-msgid "New Filter"
-msgstr "Nuevo filtro"
+#: ../../include/functions_planned_downtimes.php:103
+#: ../../include/functions_planned_downtimes.php:820
+#: ../../godmode/agentes/planned_downtime.editor.php:318
+#: ../../godmode/agentes/planned_downtime.editor.php:350
+msgid "Scheduled downtime must have a name"
+msgstr "La parada de servicio planeada debe tener un nombre."
 
-#: ../../include/ajax/custom_fields.php:552
-msgid "Existing Filter"
-msgstr "Filtro existente"
+#: ../../include/functions_planned_downtimes.php:575
+msgid "Succesful stopped the Downtime"
+msgstr "La parada planificada se ha detenido correctamente"
 
-#: ../../include/ajax/custom_fields.php:700
-msgid "Delete filter"
-msgstr "Eliminar filtro"
+#: ../../include/functions_planned_downtimes.php:576
+msgid "Unsuccesful stopped the Downtime"
+msgstr "La parada planificada no ha podido ser detenida"
 
-#: ../../include/ajax/custom_fields.php:750
-msgid "Filter name already exists in the bbdd"
-msgstr "El nombre del filtro ya existe en la base de datos"
-
-#: ../../include/ajax/custom_fields.php:762
-msgid "Please, select a custom field"
-msgstr "Seleccione un campo personalizado"
-
-#: ../../include/ajax/custom_fields.php:790
-msgid "Success create filter."
-msgstr "Se ha creado el filtro."
-
-#: ../../include/ajax/custom_fields.php:797
-msgid "Error create filter."
-msgstr "Error al crear el filtro."
-
-#: ../../include/ajax/custom_fields.php:822
-#: ../../include/ajax/custom_fields.php:895
-msgid "please, select a filter"
-msgstr "Seleccione un filtro"
-
-#: ../../include/ajax/custom_fields.php:838
-msgid "please, select a custom field"
-msgstr "Seleccione un campo personalizado"
-
-#: ../../include/ajax/custom_fields.php:864
-msgid "Success update filter."
-msgstr "Se ha actualizado el filtro."
-
-#: ../../include/ajax/custom_fields.php:871
-msgid "Error update filter."
-msgstr "Error al actualizar el filtro."
-
-#: ../../include/ajax/custom_fields.php:914
-msgid "Success delete filter."
-msgstr "Se ha eliminado el filtro."
-
-#: ../../include/ajax/custom_fields.php:921
-msgid "Error delete filter."
-msgstr "Error al eliminar el filtro."
-
-#: ../../update_manager_client/lib/UpdateManager/UI/Manager.php:484
-msgid "Next update"
-msgstr "próxima actualización"
-
-#: ../../update_manager_client/lib/UpdateManager/UI/Manager.php:489
-msgid "Show details"
-msgstr "Ver detalles"
-
-#: ../../update_manager_client/lib/UpdateManager/UI/Manager.php:514
+#: ../../include/functions_planned_downtimes.php:716
 #, php-format
-msgid "%s update(s) available more"
-msgstr "%s actualización(es) disponible(s) más"
+msgid "Enabled %s elements from the downtime"
+msgstr "Habilitar %s elementos desde la parada"
 
-#: ../../update_manager_client/lib/UpdateManager/UI/Manager.php:526
-msgid "details"
-msgstr "detalles"
+#: ../../include/functions_planned_downtimes.php:747
+#: ../../godmode/agentes/planned_downtime.editor.php:249
+msgid "The end date must be higher than the current time"
+msgstr "La fecha fin debería ser posterior a la fecha actual."
 
-#: ../../update_manager_client/lib/UpdateManager/UI/Manager.php:604
-msgid "Failed creating temporary directory."
-msgstr "Error al crear un directorio temporal."
+#: ../../include/functions_planned_downtimes.php:775
+msgid "The downtime must be quiet, disable_agents or disable_agents_alerts"
+msgstr "La parada debe estar silenciada, disable_agents o disable_agents_alerts"
 
-#: ../../update_manager_client/lib/UpdateManager/UI/Manager.php:614
-msgid "Failed storing uploaded file."
-msgstr "Error al almacenar el archivo cargado."
+#: ../../include/functions_planned_downtimes.php:780
+msgid "The execution must be once or periodically"
+msgstr "La ejecución debe ser única o periódica"
 
-#: ../../update_manager_client/lib/UpdateManager/UI/Manager.php:646
+#: ../../include/functions_planned_downtimes.php:785
+msgid "The periodicity must be weekly or monthly"
+msgstr "La periodicidad debe ser semanal o mensual"
+
+#: ../../include/functions_planned_downtimes.php:790
+msgid "There is no user with such id"
+msgstr "No hay usuarios con ese ID"
+
+#: ../../include/functions_planned_downtimes.php:795
+msgid "There is no group with such id"
+msgstr "No hay grupos con ese ID"
+
+#: ../../include/functions_planned_downtimes.php:800
+msgid "Date is wrong formatted"
+msgstr "Formato de fecha incorrecto"
+
+#: ../../include/functions_planned_downtimes.php:907
+msgid "This scheduled downtime are executed now. Can't delete in this moment."
+msgstr ""
+"Esta parada planificada se está ejecutando. No se puede borrar en este momento."
+
+#: ../../include/functions_planned_downtimes.php:914
+msgid "Deleted this scheduled downtime successfully."
+msgstr "Parada planificada borrada correctamente."
+
+#: ../../include/functions_planned_downtimes.php:916
+msgid "Problems for deleted this scheduled downtime."
+msgstr "Error al borrar la parada planificada."
+
+#: ../../include/functions_planned_downtimes.php:949
+#: ../../include/functions_maps.php:73
+#: ../../include/functions_networkmap.php:2068
+msgid "Copy of "
+msgstr "Copiar de "
+
+#: ../../include/functions_planned_downtimes.php:958
+#: ../../enterprise/godmode/reporting/reporting_builder.template.php:456
+#: ../../enterprise/godmode/policies/policies.php:236
+#: ../../godmode/reporting/reporting_builder.php:738
+#: ../../godmode/alerts/alert_actions.php:130
+#: ../../godmode/alerts/alert_commands.php:626
+msgid "Could not be copied"
+msgstr "No se ha podido copiar"
+
+#: ../../include/functions_planned_downtimes.php:976
+msgid "Error adding agents to copied downtime"
+msgstr "Error al agregar agentes al tiempo de inactividad copiado"
+
+#: ../../include/functions_planned_downtimes.php:999
+msgid "Error adding module to copied downtime"
+msgstr "Error al agregar módulo al tiempo de inactividad copiado"
+
+#: ../../include/api.php:237
+msgid "User or group not specified"
+msgstr "Usuario o grupo no especificados"
+
+#: ../../include/api.php:238
+msgid "User, group not specified"
+msgstr "Usuario y grupo no especificados"
+
+#: ../../include/api.php:269
+msgid "User, group or profile not specified"
+msgstr "Usuario, grupo o perfil no especificados"
+
+#: ../../include/api.php:270
+msgid "User, group or profile status not specified"
+msgstr "Usuario, grupo o estado de perfil no especificados"
+
+#: ../../include/graphs/functions_flot.php:365
+msgid "Cancel zoom"
+msgstr "Cancelar el zoom"
+
+#: ../../include/graphs/functions_flot.php:367
+msgid "Warning and Critical thresholds"
+msgstr "Umbrales de advertencia y crítico"
+
+#: ../../include/graphs/functions_flot.php:372
+msgid "Overview graph"
+msgstr "Gráfico de vista general"
+
+#: ../../include/graphs/export_data.php:88
+#: ../../include/graphs/export_data.php:154
+msgid "An error occured exporting the data"
+msgstr "Error al exportar los datos"
+
+#: ../../include/graphs/export_data.php:100
+#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:141
+msgid "Selected"
+msgstr "Seleccionado"
+
+#: ../../include/functions_register.php:105
 #, php-format
-msgid "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\"."
+msgid "%s configuration wizard"
+msgstr "Asistente de configuración de %s"
 
-#: ../../update_manager_client/lib/UpdateManager/UI/Manager.php:655
-msgid "Failed uploading file."
-msgstr "Error al cargar el archivo."
-
-#: ../../update_manager_client/lib/UpdateManager/UI/Manager.php:690
-msgid "Signatures does not match."
-msgstr "Las firmas no coinciden."
-
-#: ../../update_manager_client/lib/UpdateManager/UI/Manager.php:749
+#: ../../include/functions_register.php:108
 #, php-format
-msgid "Update %s successfully installed."
-msgstr "La actualización %s instalado correctamente."
+msgid ""
+"Please fill the following information in order to configure your %s instance "
+"successfully"
+msgstr ""
+"Rellene esta información para configurar su instancia de %s correctamente"
 
-#: ../../update_manager_client/lib/UpdateManager/UI/Manager.php:752
+#: ../../include/functions_register.php:122
+#: ../../godmode/setup/setup_general.php:77
+msgid "Language code"
+msgstr "Codigo de idioma"
+
+#: ../../include/functions_register.php:165
+msgid ""
+"Must have the same time zone as the system or database to avoid mismatches of "
+"time."
+msgstr ""
+"Debe tener las mismas zonas horarias que el sistema o la base de datos para "
+"evitar desajustes de tiempo."
+
+#: ../../include/functions_register.php:171
+msgid "E-mail for receiving alerts"
+msgstr "Correo electrónico para la recepción de alertas"
+
+#: ../../include/functions_register.php:196
+msgid "All fields required"
+msgstr "Todos los campos requeridos"
+
+#: ../../include/functions_register.php:205
+msgid "Are you sure you don't want to configure a base email?"
+msgstr "¿Está seguro de que no desea configurar un correo base?"
+
+#: ../../include/functions_register.php:207
+msgid ""
+"You could change this options later in \"alert actions\" and setting your "
+"account."
+msgstr ""
+"Puede modificar las preferencias más tarde en \"acciones de alerta\" y "
+"configurar su propia cuenta."
+
+#: ../../include/functions_maps.php:38
+#: ../../include/functions_networkmap.php:1307
+msgid "Topology"
+msgstr "Topología"
+
+#: ../../include/functions_profile.php:216
+#: ../../enterprise/godmode/setup/setup_auth.php:175
+#: ../../enterprise/godmode/setup/setup_auth.php:232
+msgid "No hierarchy"
+msgstr "No hay jerarquía"
+
+#: ../../include/functions_ui.php:287
+msgid "Information"
+msgstr "Información"
+
+#: ../../include/functions_ui.php:465
+msgid "Request successfully processed"
+msgstr "Petición procesada correctamente"
+
+#: ../../include/functions_ui.php:469
+msgid "Error processing request"
+msgstr "Error al procesar la petición"
+
+#: ../../include/functions_ui.php:625
+msgid ""
+"Is possible that this view uses part of information which your user has not "
+"access"
+msgstr ""
+"Es posible que esta vista utilice parte de la información a la cual tu usuario "
+"no tenga acceso."
+
+#: ../../include/functions_ui.php:874
+msgid "Software"
+msgstr "Software"
+
+#: ../../include/functions_ui.php:1323
+#: ../../godmode/alerts/configure_alert_template.php:1218
+#: ../../godmode/alerts/alert_view.php:175
+msgid "The alert would fire when the value is <span id=\"value\"></span>"
+msgstr "La alerta se disparará cuando el valor sea <span id=\"value\"></span>."
+
+#: ../../include/functions_ui.php:1328
+#: ../../godmode/alerts/configure_alert_template.php:1219
+#: ../../godmode/alerts/alert_view.php:180
+msgid "The alert would fire when the value is not <span id=\"value\"></span>"
+msgstr ""
+"La alerta se disparará cuando el valor no sea <span id=\"value\"></span>."
+
+#: ../../include/functions_ui.php:1334
+#: ../../godmode/alerts/configure_alert_template.php:1216
+#: ../../godmode/alerts/alert_view.php:166
+msgid "The alert would fire when the value matches <span id=\"value\"></span>"
+msgstr ""
+"La alerta se disparará cuando el valor coincida con <span id=\"value\"></span>."
+
+#: ../../include/functions_ui.php:1337 ../../godmode/alerts/alert_view.php:168
+msgid ""
+"The alert would fire when the value doesn't match <span id=\"value\"></span>"
+msgstr ""
+"La alerta se disparará cuando el valor no coincida con <span id=\"value\"></"
+"span>."
+
+#: ../../include/functions_ui.php:1346
+#: ../../godmode/alerts/configure_alert_template.php:1220
+#: ../../godmode/alerts/alert_view.php:187
+msgid ""
+"The alert would fire when the value is between <span id=\"min\"></span> and "
+"<span id=\"max\"></span>"
+msgstr ""
+"La alerta se disparará cuando el valor esté entre <span id=\"min\"></span> y "
+"<span id=\"max\"></span>."
+
+#: ../../include/functions_ui.php:1349 ../../godmode/alerts/alert_view.php:191
+msgid ""
+"The alert would fire when the value is not between <span id=\"min\"></span> "
+"and <span id=\"max\"></span>"
+msgstr ""
+"La alerta se disparará cuando el valor no esté entre <span id=\"min\"></span> "
+"y <span id=\"max\"></span>."
+
+#: ../../include/functions_ui.php:1355
+msgid "The alert would fire when the value is over <span id=\"max\"></span>"
+msgstr ""
+"La alerta se disparará cuando el valor esté por encima de <span id=\"min\"></"
+"span>."
+
+#: ../../include/functions_ui.php:1360
+msgid "The alert would fire when the value is under <span id=\"min\"></span>"
+msgstr ""
+"La alerta se disparará cuando el valor esté por debajo de <span id=\"min\"></"
+"span>."
+
+#: ../../include/functions_ui.php:1365
+#: ../../godmode/alerts/configure_alert_template.php:1224
+#: ../../godmode/alerts/alert_view.php:218
+msgid "The alert would fire when the module is in warning status"
+msgstr "La alerta se disparará cuando el módulo esté en estado advertencia."
+
+#: ../../include/functions_ui.php:1370
+#: ../../godmode/alerts/configure_alert_template.php:1225
+#: ../../godmode/alerts/alert_view.php:222
+msgid "The alert would fire when the module is in critical status"
+msgstr "La alerta se disparará cuando el módulo esté en estado crítico."
+
+#: ../../include/functions_ui.php:1375
+msgid "Unknown option."
+msgstr "Opción desconocida."
+
+#: ../../include/functions_ui.php:2107 ../../include/functions_ui.php:2133
 #, php-format
-msgid "Failed while updating: %s"
-msgstr "Error al actualizar: %s"
+msgid "Total items: %s"
+msgstr "Número total de elementos: %s"
 
-#: ../../update_manager_client/lib/UpdateManager/Client.php:712
+#: ../../include/functions_ui.php:2534
+msgid "Unknown type"
+msgstr "Tipo desconocido"
+
+#: ../../include/functions_ui.php:3414
+#: ../../enterprise/include/class/DatabaseHA.class.php:217
+#: ../../enterprise/meta/monitoring/custom_fields_view.php:347
+#: ../../enterprise/meta/monitoring/custom_fields_view.php:349
+#: ../../godmode/wizards/DiscoveryTaskList.class.php:1861
+msgid "Processing"
+msgstr "Procesando"
+
+#: ../../include/functions_ui.php:3502 ../../include/functions_ui.php:3503
+msgid "Export current page to CSV"
+msgstr "Exportar página actual a CSV"
+
+#: ../../include/functions_ui.php:5042
+msgid "Type at least two characters to search."
+msgstr "Escribe al menos dos caracteres para buscar."
+
+#: ../../include/functions_ui.php:5780 ../../include/functions_html.php:5265
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3678
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3930
+#: ../../godmode/reporting/create_container.php:418
+#: ../../godmode/reporting/reporting_builder.item_editor.php:1661
+#: ../../godmode/reporting/reporting_builder.item_editor.php:4027
+#: ../../godmode/reporting/reporting_builder.item_editor.php:4064
+#: ../../godmode/reporting/reporting_builder.item_editor.php:4233
+#: ../../godmode/reporting/reporting_builder.item_editor.php:4506
+#: ../../godmode/reporting/reporting_builder.item_editor.php:4540
+#: ../../godmode/reporting/reporting_builder.item_editor.php:4594
+msgid "Select an Agent first"
+msgstr "Debe seleccionar primero un agente"
+
+#: ../../include/functions_ui.php:5981
+msgid "Unhandled error"
+msgstr "Error no tratado"
+
+#: ../../include/functions_ui.php:5982
+msgid "An unhandled error occurs"
+msgstr "Ha ocurrido un error no tratado"
+
+#: ../../include/functions_ui.php:6227
+#: ../../enterprise/operation/agentes/tag_view.php:873
+#: ../../enterprise/operation/agentes/tag_view.php:883
+#: ../../enterprise/operation/agentes/wux_console_view.php:352
+#: ../../enterprise/operation/agentes/ux_console_view.php:102
+#: ../../enterprise/operation/agentes/ux_console_view.php:297
+#: ../../enterprise/operation/agentes/ux_console_view.php:377
+#: ../../enterprise/include/functions_ux_console.php:507
+msgid "Snapshot view"
+msgstr "Vista de captura de pantalla"
+
+#: ../../include/functions_ui.php:6253
 #, php-format
-msgid "server update %d"
-msgstr "%d de actualización del servidor"
+msgid ""
+"These controls are using the timezone of the system (%s) instead of yours "
+"(%s). The difference with your time zone in hours is %s."
+msgstr ""
+"Estos controles emplean la zona horaria del sistema (%s) en vez de la suya "
+"(%s). La diferencia de horas con su zona horaria es %s."
 
-#: ../../update_manager_client/lib/UpdateManager/Client.php:714
+#: ../../include/functions_ui.php:6557
+#: ../../enterprise/include/class/CommandCenter.class.php:452
+msgid "Query"
+msgstr "Consulta"
+
+#: ../../include/functions_ui.php:6574
+msgid "Execute query"
+msgstr "Ejecutar consulta"
+
+#: ../../include/functions_ui.php:6596
+msgid "Results"
+msgstr "Resultados"
+
+#: ../../include/functions_ui.php:6660
+msgid "Show password"
+msgstr "Mostrar contraseña"
+
+#: ../../include/functions_integriaims.php:42
+msgid "Configure Integria IMS"
+msgstr "Configurar Integria IMS"
+
+#: ../../include/functions_integriaims.php:43
+msgid "Ticket list"
+msgstr "Lista de tickets"
+
+#: ../../include/functions_integriaims.php:44
+msgid "New ticket"
+msgstr "Nuevo ticket"
+
+#: ../../include/functions_integriaims.php:73
+msgid "Edit ticket"
+msgstr "Editar ticket"
+
+#: ../../include/functions_integriaims.php:74
+msgid "View ticket"
+msgstr "Ver ticket"
+
+#: ../../include/functions_integriaims.php:307
+msgid ""
+"API request failed. Please check Integria IMS' access credentials in Pandora "
+"setup."
+msgstr ""
+"Error de petición API. Compruebe los credenciales de acceso a Integria IMS en "
+"los ajustes de Pandora FMS."
+
+#: ../../include/functions_integriaims.php:557
+msgid "File successfully added"
+msgstr "Archivo añadido correctamente"
+
+#: ../../include/functions_integriaims.php:558
+msgid "File could not be added"
+msgstr "no se ha podido añadir el archivo"
+
+#: ../../include/functions_integriaims.php:561
+msgid "File has an invalid extension"
+msgstr "El archivo tiene una extensión no válida"
+
+#: ../../include/rest-api/models/VisualConsole/Item.php:1958
+#: ../../godmode/setup/gis_step_2.php:364
+msgid "Top"
+msgstr "Superior"
+
+#: ../../include/rest-api/models/VisualConsole/Item.php:1959
+#: ../../godmode/setup/gis_step_2.php:357
+msgid "Right"
+msgstr "Derecha"
+
+#: ../../include/rest-api/models/VisualConsole/Item.php:1960
+#: ../../godmode/setup/gis_step_2.php:343
+msgid "Left"
+msgstr "Izquierda"
+
+#: ../../include/rest-api/models/VisualConsole/Item.php:1964
+msgid "Label position"
+msgstr "Posición de la etiqueta"
+
+#: ../../include/rest-api/models/VisualConsole/Item.php:1994
+#: ../../include/rest-api/models/VisualConsole/Items/Box.php:217
+msgid "width"
+msgstr "ancho"
+
+#: ../../include/rest-api/models/VisualConsole/Item.php:2004
+#: ../../include/rest-api/models/VisualConsole/Items/Box.php:227
+msgid "height"
+msgstr "altura"
+
+#: ../../include/rest-api/models/VisualConsole/Item.php:2026
+#: ../../include/rest-api/models/VisualConsole/Items/Box.php:249
+msgid "X"
+msgstr "X"
+
+#: ../../include/rest-api/models/VisualConsole/Item.php:2036
+#: ../../include/rest-api/models/VisualConsole/Items/Box.php:259
+#: ../../include/functions.php:491 ../../include/functions.php:643
+msgid "Y"
+msgstr "Y"
+
+#: ../../include/rest-api/models/VisualConsole/Item.php:2051
+msgid "Link enabled"
+msgstr "Enlace habilitado"
+
+#: ../../include/rest-api/models/VisualConsole/Item.php:2063
+#: ../../include/rest-api/models/VisualConsole/Items/NetworkLink.php:950
+#: ../../include/rest-api/models/VisualConsole/Items/Line.php:499
+#: ../../include/rest-api/models/VisualConsole/Items/Box.php:273
+msgid "Show on top"
+msgstr "Mostrar primero"
+
+#: ../../include/rest-api/models/VisualConsole/Item.php:2093
+msgid "Static graph"
+msgstr "Imagen estática"
+
+#: ../../include/rest-api/models/VisualConsole/Item.php:2111
+msgid "Event History Graph"
+msgstr "Gráfica de histórico de eventos"
+
+#: ../../include/rest-api/models/VisualConsole/Item.php:2119
+msgid "Percentile bubble"
+msgstr "Gráfica bubble de percentil"
+
+#: ../../include/rest-api/models/VisualConsole/Item.php:2584
+#: ../../include/rest-api/models/VisualConsole/Item.php:2585
+msgid "Image Vc"
+msgstr "Imagen Vc"
+
+#: ../../include/rest-api/models/VisualConsole/Items/BasicChart.php:325
+msgid "Module name color"
+msgstr "Color del nombre del módulo"
+
+#: ../../include/rest-api/models/VisualConsole/Items/StaticGraph.php:402
+msgid "Show Last Value"
+msgstr "Mostrar último valor"
+
+#: ../../include/rest-api/models/VisualConsole/Items/ColorCloud.php:438
+msgid "Add new range"
+msgstr "Añadir nuevo intervalo"
+
+#: ../../include/rest-api/models/VisualConsole/Items/ColorCloud.php:495
+msgid "Current ranges"
+msgstr "Intervalos actuales"
+
+#: ../../include/rest-api/models/VisualConsole/Items/SimpleValue.php:365
+msgid "Avg Value"
+msgstr "Valor medio"
+
+#: ../../include/rest-api/models/VisualConsole/Items/SimpleValue.php:366
+#: ../../include/functions_reporting_html.php:997
+#: ../../include/functions_reporting_html.php:2235
+#: ../../include/functions_reporting_html.php:4247
+#: ../../include/functions_reporting_html.php:4788
+msgid "Max Value"
+msgstr "Valor máximo"
+
+#: ../../include/rest-api/models/VisualConsole/Items/SimpleValue.php:367
+#: ../../include/functions_reporting_html.php:995
+#: ../../include/functions_reporting_html.php:2233
+#: ../../include/functions_reporting_html.php:4249
+#: ../../include/functions_reporting_html.php:4785
+msgid "Min Value"
+msgstr "Valor mínimo"
+
+#: ../../include/rest-api/models/VisualConsole/Items/BarsGraph.php:487
+#: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:658
+msgid "Graph Type"
+msgstr "Tipo de gráfica"
+
+#: ../../include/rest-api/models/VisualConsole/Items/NetworkLink.php:538
+#: ../../include/rest-api/models/VisualConsole/Items/NetworkLink.php:619
+#: ../../include/rest-api/models/VisualConsole/Items/Odometer.php:280
+#: ../../include/rest-api/models/VisualConsole/View.php:712
+#: ../../include/rest-api/models/VisualConsole/View.php:791
+msgid "Failed to connect to node"
+msgstr "No se ha podido conectar con el nodo"
+
+#: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:567
+#: ../../enterprise/include/functions_reporting_csv.php:2298
+msgid "Custom Graph"
+msgstr "Gráfica personalizada"
+
+#: ../../include/rest-api/models/VisualConsole/Items/Box.php:311
+msgid "Border Width"
+msgstr "Ancho del borde"
+
+#: ../../include/rest-api/models/VisualConsole/Items/Box.php:335
+msgid "Fill transparent"
+msgstr "Relleno transparente"
+
+#: ../../include/rest-api/models/VisualConsole/Items/Odometer.php:416
+msgid "Title color"
+msgstr "Color del título"
+
+#: ../../include/rest-api/models/VisualConsole/Items/EventsHistory.php:270
+msgid "12h"
+msgstr "12h"
+
+#: ../../include/rest-api/models/VisualConsole/Items/EventsHistory.php:290
+msgid "Legend color"
+msgstr "Color de leyenda"
+
+#: ../../include/rest-api/models/VisualConsole/View.php:66
+msgid "Label settings"
+msgstr "Configuración de etiquetas"
+
+#: ../../include/rest-api/models/VisualConsole/View.php:72
+#: ../../include/rest-api/models/VisualConsole/View.php:104
+msgid "General settings"
+msgstr "Configuración general"
+
+#: ../../include/rest-api/models/VisualConsole/View.php:78
+#: ../../include/rest-api/models/VisualConsole/View.php:94
+#: ../../include/rest-api/models/VisualConsole/View.php:110
+msgid "Specific settings"
+msgstr "Configuración específica"
+
+#: ../../include/rest-api/models/VisualConsole/View.php:213
+msgid "Item type not valid ["
+msgstr "Tipo de elemento no válido ["
+
+#: ../../include/rest-api/models/VisualConsole/View.php:218
+msgid "Item type has no getFormInputs method ["
+msgstr "Este tipo de elemento no tiene método getFormInputs ["
+
+#: ../../include/rest-api/models/VisualConsole/View.php:729
+msgid "NetworkLink from"
+msgstr "NetworkLink de"
+
+#: ../../include/rest-api/models/VisualConsole/View.php:733
+#: ../../include/rest-api/models/VisualConsole/View.php:812
 #, php-format
-msgid "console update %d"
-msgstr "%d de actualización de la consola"
+msgid "Interface %s status"
+msgstr "Estado de la interfaz %s"
 
-#: ../../update_manager_client/lib/UpdateManager/Client.php:734
+#: ../../include/rest-api/models/VisualConsole/View.php:808
+msgid "NetworkLink to"
+msgstr "NetworkLink a"
+
+#: ../../include/rest-api/models/VisualConsole/View.php:860
 #, php-format
-msgid "Downloading %s %.2f/ %.2f MB."
-msgstr "Descarga de %s %.2f/ %.2f MB."
+msgid "Failed to generate charts: %s"
+msgstr "No se han podido generar las tablas: %s"
 
-#: ../../update_manager_client/lib/UpdateManager/Client.php:745
+#: ../../include/functions_html.php:595 ../../include/functions_html.php:969
+msgid "Please select an item from this list."
+msgstr "Seleccione un elemento de la lista."
+
+#: ../../include/functions_html.php:621 ../../include/functions_html.php:5716
+msgid "Please select..."
+msgstr "Seleccione..."
+
+#: ../../include/functions_html.php:1582
+msgid "Type to search agents"
+msgstr "Escriba para buscar agentes"
+
+#: ../../include/functions_html.php:1596
+msgid "Type to search modules"
+msgstr "Escriba para buscar módulos"
+
+#: ../../include/functions_html.php:1659 ../../include/functions_html.php:1678
+#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:265
+#: ../../extensions/agents_modules.php:436
+#: ../../extensions/agents_modules.php:439
+#: ../../godmode/reporting/reporting_builder.item_editor.php:1777
+#: ../../godmode/massive/massive_add_alerts.php:264
+#: ../../godmode/massive/massive_delete_modules.php:555
+#: ../../godmode/massive/massive_add_action_alerts.php:224
+#: ../../godmode/massive/massive_delete_action_alerts.php:245
+#: ../../godmode/massive/massive_delete_alerts.php:339
+#: ../../godmode/massive/massive_edit_modules.php:528
+#: ../../godmode/agentes/planned_downtime.editor.php:811
+msgid "Show common modules"
+msgstr "Mostrar módulos comunes"
+
+#: ../../include/functions_html.php:1660
+#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:266
+#: ../../extensions/agents_modules.php:437
+#: ../../godmode/reporting/reporting_builder.item_editor.php:1778
+#: ../../godmode/massive/massive_add_alerts.php:265
+#: ../../godmode/massive/massive_delete_modules.php:556
+#: ../../godmode/massive/massive_add_action_alerts.php:225
+#: ../../godmode/massive/massive_delete_action_alerts.php:246
+#: ../../godmode/massive/massive_delete_alerts.php:340
+#: ../../godmode/massive/massive_edit_modules.php:529
+#: ../../godmode/agentes/planned_downtime.editor.php:812
+msgid "Show all modules"
+msgstr "Mostrar todos los módulos"
+
+#: ../../include/functions_html.php:1667
+msgid "Only common modules"
+msgstr "Solo módulos comunes"
+
+#: ../../include/functions_html.php:1838 ../../include/functions_html.php:1939
+#: ../../include/functions_html.php:2077
+#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:552
+#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:573
+#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:643
+#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:664
+#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:695
+#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:704
+#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:763
+#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:786
+#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:807
+#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:811
+#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:822
+#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:842
+#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:867
+#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:883
+#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:944
+#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:967
+#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:985
+#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:991
+#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1004
+#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1032
+#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1134
+#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:28
+#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:315
+#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:330
+#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:510
+#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:524
+#: ../../godmode/massive/massive_edit_agents.php:669
+#: ../../godmode/massive/massive_edit_agents.php:694
+#: ../../godmode/massive/massive_edit_agents.php:711
+#: ../../godmode/massive/massive_edit_agents.php:725
+#: ../../godmode/massive/massive_edit_agents.php:749
+#: ../../godmode/massive/massive_edit_agents.php:859
+#: ../../godmode/massive/massive_edit_agents.php:906
+#: ../../godmode/massive/massive_edit_agents.php:981
+#: ../../godmode/massive/massive_edit_agents.php:985
+#: ../../godmode/massive/massive_edit_agents.php:994
+#: ../../godmode/massive/massive_edit_agents.php:1022
+#: ../../godmode/massive/massive_edit_agents.php:1091
+#: ../../godmode/massive/massive_edit_modules.php:615
+#: ../../godmode/massive/massive_edit_modules.php:637
+#: ../../godmode/massive/massive_edit_modules.php:706
+#: ../../godmode/massive/massive_edit_modules.php:728
+#: ../../godmode/massive/massive_edit_modules.php:759
+#: ../../godmode/massive/massive_edit_modules.php:768
+#: ../../godmode/massive/massive_edit_modules.php:827
+#: ../../godmode/massive/massive_edit_modules.php:845
+#: ../../godmode/massive/massive_edit_modules.php:864
+#: ../../godmode/massive/massive_edit_modules.php:868
+#: ../../godmode/massive/massive_edit_modules.php:879
+#: ../../godmode/massive/massive_edit_modules.php:899
+#: ../../godmode/massive/massive_edit_modules.php:924
+#: ../../godmode/massive/massive_edit_modules.php:936
+#: ../../godmode/massive/massive_edit_modules.php:997
+#: ../../godmode/massive/massive_edit_modules.php:1043
+#: ../../godmode/massive/massive_edit_modules.php:1061
+#: ../../godmode/massive/massive_edit_modules.php:1067
+#: ../../godmode/massive/massive_edit_modules.php:1080
+#: ../../godmode/massive/massive_edit_modules.php:1108
+#: ../../godmode/massive/massive_edit_modules.php:1212
+msgid "No change"
+msgstr "Sin cambios"
+
+#: ../../include/functions_html.php:2110 ../../include/functions.php:500
+#: ../../include/functions.php:631
+#: ../../enterprise/include/ajax/log_viewer.ajax.php:280
+#: ../../enterprise/meta/advanced/metasetup.visual.php:385
+#: ../../godmode/setup/setup_visuals.php:1345 ../../godmode/db/db_main.php:86
+#: ../../godmode/db/db_main.php:92
+msgid "days"
+msgstr "días"
+
+#: ../../include/functions_html.php:2111
+msgid "weeks"
+msgstr "semanas"
+
+#: ../../include/functions_html.php:2112 ../../include/functions.php:501
+#: ../../include/functions.php:632
+#: ../../enterprise/meta/advanced/metasetup.visual.php:386
+#: ../../godmode/setup/setup_visuals.php:1346
+msgid "months"
+msgstr "meses"
+
+#: ../../include/functions_html.php:2113 ../../include/functions.php:502
+#: ../../include/functions.php:633
+#: ../../enterprise/meta/advanced/metasetup.visual.php:387
+#: ../../godmode/setup/setup_visuals.php:1347
+msgid "years"
+msgstr "años"
+
+#: ../../include/functions_html.php:2273
+msgid "Month day"
+msgstr "Día del mes"
+
+#: ../../include/functions_html.php:2274
+#: ../../enterprise/include/functions_reporting_csv.php:1737
+#: ../../enterprise/include/functions_reporting_csv.php:2045
+msgid "Month"
+msgstr "Mes"
+
+#: ../../include/functions_html.php:2275
+msgid "Week day"
+msgstr "Día de la semana"
+
+#: ../../include/functions_html.php:4486
+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:4647 ../../index.php:483 ../../index.php:760
+#: ../../index.php:834
 #, php-format
-msgid "Downloading %.2f MB"
-msgstr "Descarga de %.2f MB"
+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."
 
-#: ../../update_manager_client/lib/UpdateManager/Client.php:1469
+#: ../../include/functions_html.php:5471
+msgid "Type at least two characters to search the user."
+msgstr "Escriba al menos dos caracteres para buscar el usuario."
+
+#: ../../include/functions_html.php:5860
+msgid "Primary group cannot be secondary too."
+msgstr "Un grupo primario no puede ser también secundario."
+
+#: ../../include/functions_html.php:5874
+#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:575
+#: ../../godmode/massive/massive_edit_agents.php:804
+msgid "Add secondary groups"
+msgstr "Añadir grupos secundarios"
+
+#: ../../include/functions_html.php:5887
+#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:582
+#: ../../godmode/massive/massive_edit_agents.php:830
+msgid "Remove secondary groups"
+msgstr "Eliminar grupos secundarios"
+
+#: ../../include/functions_networkmap.php:1303
+msgid "Radial dynamic"
+msgstr "Dinámico radial"
+
+#: ../../include/functions_networkmap.php:1332
+msgid "Create a new topology map"
+msgstr "Crear nuevo mapa topológico"
+
+#: ../../include/functions_networkmap.php:1333
+msgid "Create a new group map"
+msgstr "Crear nuevo mapa de grupo"
+
+#: ../../include/functions_networkmap.php:1334
+msgid "Create a new dynamic map"
+msgstr "Crear un nuevo mapa dinámico"
+
+#: ../../include/functions_networkmap.php:1336
+msgid "Create a new radial dynamic map"
+msgstr "Crear un nuevo mapa dinámico radial"
+
+#: ../../include/functions_networkmap.php:3404
+msgid "Map not found."
+msgstr "Mapa no encontrado."
+
+#: ../../include/functions.php:231
+msgid "."
+msgstr "."
+
+#: ../../include/functions.php:233
+msgid ","
+msgstr ","
+
+#: ../../include/functions.php:488 ../../include/functions.php:640
+msgid "s"
+msgstr "s"
+
+#: ../../include/functions.php:489 ../../include/functions.php:641
+msgid "d"
+msgstr "d"
+
+#: ../../include/functions.php:490 ../../include/functions.php:642
+msgid "M"
+msgstr "M"
+
+#: ../../include/functions.php:492 ../../include/functions.php:644
+msgid "m"
+msgstr "m"
+
+#: ../../include/functions.php:493 ../../include/functions.php:645
+msgid "h"
+msgstr "h"
+
+#: ../../include/functions.php:494 ../../include/functions.php:646
+msgid "N"
+msgstr "N"
+
+#: ../../include/functions.php:1226
+msgid "Monitor Unknown"
+msgstr "Monitor en estado desconocido"
+
+#: ../../include/functions.php:1233
+msgid "Agent created"
+msgstr "Agente creado"
+
+#: ../../include/functions.php:1354 ../../include/functions.php:1384
+msgid "ALERT FIRED"
+msgstr "ALERTA DISPARADA"
+
+#: ../../include/functions.php:2680
+#: ../../godmode/reporting/create_container.php:345
+msgid "custom"
+msgstr "personalizado"
+
+#: ../../include/functions.php:2686
 #, php-format
-msgid "Failed to analyze package: %s"
-msgstr "Error al analizar el paquete: %s"
+msgid "%s seconds"
+msgstr "%s segundos"
 
-#: ../../update_manager_client/lib/UpdateManager/Client.php:1560
-msgid "Searching update package"
-msgstr "Búsqueda del paquete de actualización"
-
-#: ../../update_manager_client/lib/UpdateManager/Client.php:1592
-msgid "Retrieving update"
-msgstr "Recuperación de la actualización"
-
-#: ../../update_manager_client/lib/UpdateManager/Client.php:1683
-msgid "Extracting package"
-msgstr "Extracción del paquete"
-
-#: ../../update_manager_client/lib/UpdateManager/Client.php:1750
-msgid "Testing files"
-msgstr "Archivos de prueba"
-
-#: ../../update_manager_client/lib/UpdateManager/Client.php:1782
+#: ../../include/functions.php:2689 ../../include/functions.php:2690
 #, php-format
-msgid "Applying MR %s"
-msgstr "Aplicación de la %s de RM"
+msgid "%s minutes"
+msgstr "%s minutos"
 
-#: ../../update_manager_client/lib/UpdateManager/Client.php:1819
-msgid "Applying file updates"
-msgstr "Aplicación de actualizaciones de archivos"
+#: ../../include/functions.php:2698 ../../include/functions.php:2699
+#, php-format
+msgid "%s months"
+msgstr "%s meses"
 
-#: ../../update_manager_client/lib/UpdateManager/Client.php:1841
-msgid "Retrieving server update"
-msgstr "Recuperación de la actualización del servidor"
+#: ../../include/functions.php:2701 ../../include/functions.php:2702
+#, php-format
+msgid "%s years"
+msgstr "%s años"
 
-#: ../../update_manager_client/lib/UpdateManager/Client.php:1856
-msgid "Cleaning"
-msgstr "Limpieza"
+#: ../../include/functions.php:2704
+msgid "Default values will be used"
+msgstr "Se usarán los valores por defecto"
 
-#: ../../update_manager_client/lib/UpdateManager/Client.php:1969
-msgid "Updating to "
-msgstr "Actualización a "
+#: ../../include/functions.php:2889 ../../include/functions.php:2894
+msgid "The file exceeds the maximum size"
+msgstr "El archivo excede el tamaño máximo"
+
+#: ../../include/functions.php:2890
+msgid ""
+"Please check this PHP runtime variable values: <pre>  upload_max_filesize "
+"(currently "
+msgstr ""
+"Compruebe los valores de esta variable de tiempo de ejecución de PHP: "
+"<pre>upload_max_filesize (actualmente "
+
+#: ../../include/functions.php:2898
+msgid "The uploaded file was only partially uploaded"
+msgstr "El archivo se ha subido parcialmente."
+
+#: ../../include/functions.php:2902
+msgid "No file was uploaded"
+msgstr "No se subió ningún archivo."
+
+#: ../../include/functions.php:2906
+msgid "Missing a temporary folder"
+msgstr "El directorio temporal no existe."
+
+#: ../../include/functions.php:2910
+msgid "Failed to write file to disk"
+msgstr "No se pudo escribir el archivo al disco."
+
+#: ../../include/functions.php:2914
+msgid "File upload stopped by extension"
+msgstr "Subida de archivo cancelada por la extensión"
+
+#: ../../include/functions.php:2918
+msgid "Unknown upload error"
+msgstr "Error desconocido al subir el archivo"
+
+#: ../../include/functions.php:3029
+msgid "No data found to export"
+msgstr "Datos no encontrados para exportar"
+
+#: ../../include/functions.php:3349
+#: ../../enterprise/include/lib/Metaconsole/Node.php:1195
+#: ../../enterprise/include/lib/Metaconsole/Node.php:1196
+#: ../../enterprise/include/functions_HA_cluster.php:58
+#: ../../enterprise/godmode/agentes/agent_autoconfiguration.php:174
+#: ../../enterprise/godmode/agentes/plugins_manager.php:195
+#: ../../enterprise/godmode/agentes/plugins_manager.php:271
+#: ../../enterprise/godmode/policies/policy_alerts.php:714
+#: ../../godmode/extensions.php:259 ../../godmode/alerts/alert_list.list.php:1003
+#: ../../godmode/users/user_list.php:740
+msgid "Disable"
+msgstr "Desactivar"
+
+#: ../../include/functions.php:3352
+msgid "15 seconds"
+msgstr "15 segundos"
+
+#: ../../include/functions.php:3357
+msgid "15 minutes"
+msgstr "15 minutos"
+
+#: ../../include/functions.php:3873
+msgid "Summatory series"
+msgstr "Series sumatorias"
+
+#: ../../include/functions.php:3877
+msgid "Average series"
+msgstr "Series de media"
+
+#: ../../include/functions.php:3905 ../../include/functions.php:3924
+#: ../../include/functions.php:3938 ../../include/functions.php:3960
+#: ../../include/functions.php:4041 ../../include/functions.php:4113
+msgid "Unit "
+msgstr "Unidad "
+
+#: ../../include/functions.php:3973
+#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:187
+#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:242
+#: ../../godmode/reporting/graph_builder.graph_editor.php:215
+#: ../../godmode/reporting/graph_builder.graph_editor.php:345
+msgid "Weight"
+msgstr "Peso"
+
+#: ../../include/functions.php:3986 ../../include/functions.php:4051
+msgid "Min:"
+msgstr "Mín.:"
+
+#: ../../include/functions.php:3993 ../../include/functions.php:4058
+msgid "Max:"
+msgstr "Máx.:"
+
+#: ../../include/functions.php:4000 ../../include/functions.php:4065
+msgid "Avg:"
+msgstr "Media:"
+
+#: ../../include/functions.php:4108 ../../include/functions.php:4116
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2502
+#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:576
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2522
+#: ../../godmode/reporting/graph_builder.main.php:245
+msgid "Percentil"
+msgstr "Percentil"
+
+#: ../../include/functions.php:4110 ../../include/functions.php:4118
+msgid "of module"
+msgstr "de módulo"
+
+#: ../../include/functions.php:4135
+msgid "Projection"
+msgstr "Proyección"
+
+#: ../../include/functions.php:5953
+msgid "Testing Pandora FMS email"
+msgstr "Probando el email de Pandora FMS"
+
+#: ../../include/functions.php:5966
+msgid ""
+"This is an email test sent from Pandora FMS. If you can read this, your "
+"configuration works."
+msgstr ""
+"Este es un email de prueba enviado desde Pandora FMS. Si lo ha recibido "
+"significa que la configuración funciona."
+
+#: ../../include/get_file.php:39
+msgid "Security error. Please contact the administrator."
+msgstr "Error de seguridad. Contacta con el administrador."
+
+#: ../../include/get_file.php:74
+msgid "File is missing in disk storage. Please contact the administrator."
+msgstr ""
+"El archivo no se encuentra en el disco. Por favor, contacta con el "
+"administrador."
+
+#: ../../include/functions_reporting_html.php:109
+msgid "Label: "
+msgstr "Etiqueta: "
+
+#: ../../include/functions_reporting_html.php:138
+#: ../../enterprise/include/functions_reporting_csv.php:2220
+#: ../../enterprise/include/functions_reporting_csv.php:2224
+#: ../../enterprise/include/functions_reporting_pdf.php:1785
+msgid "Generated"
+msgstr "Generado"
+
+#: ../../include/functions_reporting_html.php:141
+#: ../../enterprise/include/functions_reporting_pdf.php:1789
+msgid "Report date"
+msgstr "Fecha del informe"
+
+#: ../../include/functions_reporting_html.php:544
+#: ../../enterprise/include/functions_reporting.php:1854
+#: ../../enterprise/include/functions_reporting.php:2893
+#: ../../enterprise/include/functions_reporting.php:3880
+msgid "Max/Min Values"
+msgstr "Valores max/min"
+
+#: ../../include/functions_reporting_html.php:545
+#: ../../enterprise/include/functions_reporting_csv.php:1506
+#: ../../enterprise/include/functions_reporting_csv.php:1552
+#: ../../enterprise/include/functions_reporting_csv.php:1625
+#: ../../enterprise/include/functions_reporting_csv.php:1744
+#: ../../enterprise/include/functions_reporting_csv.php:2052
+#: ../../enterprise/include/functions_reporting.php:1855
+#: ../../enterprise/include/functions_reporting.php:2894
+#: ../../enterprise/include/functions_reporting.php:3881
+#: ../../enterprise/include/functions_reporting.php:6137
+msgid "SLA Limit"
+msgstr "Límite del SLA"
+
+#: ../../include/functions_reporting_html.php:546
+#: ../../enterprise/include/functions_reporting.php:1856
+#: ../../enterprise/include/functions_reporting.php:2024
+#: ../../enterprise/include/functions_reporting.php:2895
+#: ../../enterprise/include/functions_reporting.php:3882
+#: ../../enterprise/include/functions_reporting.php:6138
+msgid "SLA Compliance"
+msgstr "Cumplimiento del SLA"
+
+#: ../../include/functions_reporting_html.php:578
+#: ../../enterprise/include/functions_reporting.php:4965
+msgid "Global Time"
+msgstr "Tiempo global"
+
+#: ../../include/functions_reporting_html.php:579
+#: ../../enterprise/include/functions_reporting_csv.php:1980
+#: ../../enterprise/include/functions_reporting.php:4966
+msgid "Time Total"
+msgstr "Tiempo total"
+
+#: ../../include/functions_reporting_html.php:580
+msgid "Time Failed"
+msgstr "Tiempo en fallo"
+
+#: ../../include/functions_reporting_html.php:581
+#: ../../include/functions_reporting_html.php:3844
+#: ../../enterprise/include/functions_reporting_csv.php:1981
+#: ../../enterprise/include/functions_reporting.php:4969
+msgid "Time OK"
+msgstr "Tiempo OK"
+
+#: ../../include/functions_reporting_html.php:582
+#: ../../include/functions_reporting_html.php:3856
+#: ../../enterprise/include/functions_reporting_csv.php:1983
+#: ../../enterprise/include/functions_reporting.php:4970
+msgid "Time Unknown"
+msgstr "Tiempo desconocido"
+
+#: ../../include/functions_reporting_html.php:583
+#: ../../enterprise/include/functions_reporting_csv.php:1984
+#: ../../enterprise/include/functions_reporting.php:4971
+msgid "Time Not Init"
+msgstr "Tiempo no iniciado"
+
+#: ../../include/functions_reporting_html.php:584
+msgid "Downtime"
+msgstr "Parada planificada"
+
+#: ../../include/functions_reporting_html.php:611
+#: ../../enterprise/include/functions_reporting.php:5060
+msgid "Checks Time"
+msgstr "Tiempo de comprobaciones"
+
+#: ../../include/functions_reporting_html.php:612
+#: ../../enterprise/include/functions_reporting_csv.php:1986
+#: ../../enterprise/include/functions_reporting.php:5061
+msgid "Checks Total"
+msgstr "Comprobaciones totales"
+
+#: ../../include/functions_reporting_html.php:613
+#: ../../enterprise/include/functions_reporting_csv.php:530
+msgid "Checks Failed"
+msgstr "Comprobaciones fallidas"
+
+#: ../../include/functions_reporting_html.php:614
+#: ../../include/functions_reporting_html.php:3938
+#: ../../enterprise/include/functions_reporting_csv.php:1987
+#: ../../enterprise/include/functions_reporting.php:5064
+msgid "Checks OK"
+msgstr "Comprobaciones OK"
+
+#: ../../include/functions_reporting_html.php:615
+#: ../../enterprise/include/functions_reporting_csv.php:1989
+#: ../../enterprise/include/functions_reporting.php:5065
+msgid "Checks Unknown"
+msgstr "Comprobaciones desconocidas"
+
+#: ../../include/functions_reporting_html.php:633
+#: ../../include/functions_reporting_html.php:672
+#: ../../include/functions_reporting_html.php:743
+#: ../../include/functions_reporting_html.php:821
+#: ../../include/functions_reporting_html.php:4020
+#: ../../include/functions_reporting_html.php:4167
+#: ../../enterprise/include/functions_reporting.php:4925
+msgid "24 x 7"
+msgstr "24/7"
+
+#: ../../include/functions_reporting_html.php:864
+#: ../../include/functions_reporting_html.php:4561
+#: ../../enterprise/include/functions_services.php:1453
+#: ../../enterprise/include/functions_reporting.php:3195
+#: ../../enterprise/include/functions_reporting.php:4196
+#: ../../enterprise/include/functions_reporting.php:6203
+msgid "Unknow"
+msgstr "Desconocido"
+
+#: ../../include/functions_reporting_html.php:869
+#: ../../include/functions_reporting_html.php:4566
+#: ../../enterprise/include/functions_reporting.php:1896
+#: ../../enterprise/include/functions_reporting.php:2949
+#: ../../enterprise/include/functions_reporting.php:3200
+#: ../../enterprise/include/functions_reporting.php:3937
+#: ../../enterprise/include/functions_reporting.php:4201
+#: ../../enterprise/include/functions_reporting.php:4852
+#: ../../enterprise/include/functions_reporting.php:6208
+msgid "Not Init"
+msgstr "No iniciado"
+
+#: ../../include/functions_reporting_html.php:874
+#: ../../include/functions_reporting_html.php:4571
+#: ../../enterprise/include/functions_reporting.php:3205
+#: ../../enterprise/include/functions_reporting.php:4206
+#: ../../enterprise/include/functions_reporting.php:6213
+msgid "Downtimes"
+msgstr "Paradas planificadas"
+
+#: ../../include/functions_reporting_html.php:879
+#: ../../include/functions_reporting_html.php:4576
+#: ../../godmode/agentes/planned_downtime.editor.php:67
+#: ../../godmode/agentes/planned_downtime.list.php:174
+msgid "Scheduled Downtime"
+msgstr "Parada planificada"
+
+#: ../../include/functions_reporting_html.php:996
+#: ../../include/functions_reporting_html.php:2234
+#: ../../include/functions_reporting_html.php:4250
+#: ../../include/functions_reporting_html.php:4786
+msgid "Average Value"
+msgstr "Valor medio"
+
+#: ../../include/functions_reporting_html.php:1051
+#: ../../include/functions_reporting_html.php:1059
+#: ../../include/functions_reporting_html.php:2356
+msgid "Val. by"
+msgstr "Val. por"
+
+#: ../../include/functions_reporting_html.php:1118
+#, php-format
+msgid "%s System"
+msgstr "Sistema %s"
+
+#: ../../include/functions_reporting_html.php:1166
+#: ../../include/functions_reporting_html.php:1366
+msgid "Events by agent"
+msgstr "Eventos por agente"
+
+#: ../../include/functions_reporting_html.php:1183
+#: ../../include/functions_reporting_html.php:1383
+msgid "Events by user validator"
+msgstr "Eventos por usuario validador"
+
+#: ../../include/functions_reporting_html.php:1200
+#: ../../include/functions_reporting_html.php:1400
+msgid "Events by Severity"
+msgstr "Eventos por gravedad"
+
+#: ../../include/functions_reporting_html.php:1217
+#: ../../include/functions_reporting_html.php:1417
+msgid "Events validated vs unvalidated"
+msgstr "Eventos validados vs no validados"
+
+#: ../../include/functions_reporting_html.php:1488
+#: ../../enterprise/include/functions_reporting_csv.php:718
+#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:255
+#: ../../enterprise/meta/include/functions_wizard_meta.php:189
+#: ../../enterprise/meta/include/functions_wizard_meta.php:1804
+#: ../../godmode/reporting/reporting_builder.item_editor.php:69
+#: ../../godmode/agentes/agent_manager.php:289
+msgid "Alias"
+msgstr "Alias"
+
+#: ../../include/functions_reporting_html.php:1508
+msgid "Sec. groups"
+msgstr "Sec. grupos"
+
+#: ../../include/functions_reporting_html.php:1528
+msgid "Remote conf."
+msgstr "Configuración remota"
+
+#: ../../include/functions_reporting_html.php:1651
+#: ../../enterprise/include/functions_inventory.php:854
+#: ../../enterprise/include/functions_inventory.php:917
+msgid "Added"
+msgstr "Añadido"
+
+#: ../../include/functions_reporting_html.php:2004
+#: ../../extensions/agents_modules.php:934
+msgid "Orange cell when the module has fired alerts"
+msgstr "Cuadro naranja cuando el módulo ha disparado alertas"
+
+#: ../../include/functions_reporting_html.php:2005
+#: ../../extensions/agents_modules.php:936
+msgid "Red cell when the module has a critical status"
+msgstr "Celda roja cuando el módulo está en estado crítico"
+
+#: ../../include/functions_reporting_html.php:2006
+#: ../../extensions/agents_modules.php:939
+msgid "Yellow cell when the module has a warning status"
+msgstr "Cuadro amarillo cuando el módulo está en estado advertencia"
+
+#: ../../include/functions_reporting_html.php:2007
+#: ../../extensions/agents_modules.php:941
+msgid "Green cell when the module has a normal status"
+msgstr "Cuadro verde cuando el módulo está en estado normal"
+
+#: ../../include/functions_reporting_html.php:2008
+#: ../../extensions/agents_modules.php:943
+msgid "Grey cell when the module has an unknown status"
+msgstr "Cuadro gris cuando el módulo está en estado desconocido"
+
+#: ../../include/functions_reporting_html.php:2009
+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:2036
+#: ../../include/functions_reporting_html.php:2040
+#: ../../extensions/files_repo/files_repo_list.php:164
+msgid "No items"
+msgstr "No hay elementos"
+
+#: ../../include/functions_reporting_html.php:2080
+#: ../../enterprise/include/functions_reporting_csv.php:2742
+msgid "Last time"
+msgstr "Última vez"
+
+#: ../../include/functions_reporting_html.php:2299
+#: ../../include/functions_reporting_html.php:5355
+msgid "Monitors"
+msgstr "Monitores"
+
+#: ../../include/functions_reporting_html.php:2318
+msgid "Events (not validated)"
+msgstr "Eventos (no validados)"
+
+#: ../../include/functions_reporting_html.php:2455
+msgid "Events validated by user"
+msgstr "Eventos validados por el usuario"
+
+#: ../../include/functions_reporting_html.php:2472
+#: ../../include/functions_reporting_html.php:5644
+msgid "Events by severity"
+msgstr "Eventos por gravedad"
+
+#: ../../include/functions_reporting_html.php:2489
+msgid "Amount events validated"
+msgstr "Cantidad de eventos validados"
+
+#: ../../include/functions_reporting_html.php:2913
+msgid "Total summary"
+msgstr "Resumen total"
+
+#: ../../include/functions_reporting_html.php:2920
+msgid "No alerts fired"
+msgstr "No hay alertas disparadas"
+
+#: ../../include/functions_reporting_html.php:3011
+#, php-format
+msgid "Interface '%s' throughput graph"
+msgstr "Interfaz '%s' gráfico de rendimiento"
+
+#: ../../include/functions_reporting_html.php:3015
+msgid "Mac"
+msgstr "Mac"
+
+#: ../../include/functions_reporting_html.php:3016
+msgid "Actual status"
+msgstr "Estado actual"
+
+#: ../../include/functions_reporting_html.php:3125
+#: ../../godmode/alerts/alert_list.list.php:946
+msgid "No alerts defined"
+msgstr "No hay alertas definidas"
+
+#: ../../include/functions_reporting_html.php:3263
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2564
+#: ../../enterprise/godmode/reporting/reporting_builder.global.php:430
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2554
+msgid "Not OK"
+msgstr "Mal"
+
+#: ../../include/functions_reporting_html.php:3380
+#: ../../include/functions_reporting_html.php:3382
+msgid "Empty modules"
+msgstr "Módulos vacíos"
+
+#: ../../include/functions_reporting_html.php:3389
+msgid "Warning<br/>Critical"
+msgstr "Advertencia<br/>Crítico"
+
+#: ../../include/functions_reporting_html.php:3394
+#: ../../enterprise/include/functions_reporting_csv.php:2741
+#: ../../enterprise/meta/include/functions_wizard_meta.php:927
+#: ../../enterprise/meta/include/functions_wizard_meta.php:1044
+#: ../../enterprise/meta/include/functions_wizard_meta.php:1225
+#: ../../enterprise/meta/include/functions_wizard_meta.php:1528
+#: ../../enterprise/meta/include/functions_wizard_meta.php:1613
+#: ../../enterprise/meta/include/functions_wizard_meta.php:1750
+#: ../../enterprise/godmode/modules/configure_local_component.php:468
+#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:868
+#: ../../godmode/modules/manage_network_components_form_common.php:312
+#: ../../godmode/massive/massive_edit_modules.php:925
+#: ../../godmode/agentes/module_manager_editor_common.php:582
+msgid "Unit"
+msgstr "Unidad"
+
+#: ../../include/functions_reporting_html.php:3524
+#: ../../include/functions_reporting_html.php:3593
+#: ../../enterprise/include/functions_reporting_pdf.php:534
+#: ../../enterprise/include/functions_reporting_pdf.php:591
+msgid "Minimun"
+msgstr "Mínimo"
+
+#: ../../include/functions_reporting_html.php:3533
+#: ../../include/functions_reporting_html.php:3601
+#: ../../enterprise/include/ajax/log_viewer.ajax.php:85
+#: ../../enterprise/include/functions_reporting_pdf.php:542
+#: ../../enterprise/include/functions_reporting_pdf.php:598
+msgid "Average"
+msgstr "Media"
+
+#: ../../include/functions_reporting_html.php:3703
+#: ../../enterprise/include/functions_reporting_csv.php:1325
+msgid "From data"
+msgstr "Desde datos"
+
+#: ../../include/functions_reporting_html.php:3704
+#: ../../enterprise/include/functions_reporting_csv.php:1325
+msgid "To data"
+msgstr "hasta datos"
+
+#: ../../include/functions_reporting_html.php:3732
+#: ../../enterprise/include/functions_reporting_csv.php:1331
+#: ../../enterprise/include/functions_reporting_csv.php:1342
+msgid "Negative increase: "
+msgstr "Incremento negativo: "
+
+#: ../../include/functions_reporting_html.php:3734
+#: ../../enterprise/include/functions_reporting_csv.php:1333
+#: ../../enterprise/include/functions_reporting_csv.php:1344
+msgid "Positive increase: "
+msgstr "Incremento positivo: "
+
+#: ../../include/functions_reporting_html.php:3736
+#: ../../enterprise/include/functions_reporting_csv.php:1335
+#: ../../enterprise/include/functions_reporting_csv.php:1346
+msgid "Neutral increase: "
+msgstr "Incremento neutral: "
+
+#: ../../include/functions_reporting_html.php:3819
+#: ../../include/functions_reporting_html.php:3913
+#: ../../include/functions_reporting_html.php:3993
+#: ../../include/functions_reporting_html.php:4002
+#: ../../include/functions_reporting_html.php:4140
+#: ../../include/functions_reporting_html.php:4149
+#: ../../include/functions_reporting_html.php:4473
+#: ../../include/functions_reporting_html.php:4479
+#: ../../godmode/agentes/module_manager_editor_common.php:1265
+#: ../../godmode/agentes/module_manager_editor_common.php:1375
+msgid "Failover"
+msgstr "Conmutación"
+
+#: ../../include/functions_reporting_html.php:3832
+#: ../../enterprise/include/functions_reporting_csv.php:494
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2598
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2588
+msgid "Total time"
+msgstr "Tiempo total"
+
+#: ../../include/functions_reporting_html.php:3838
+#: ../../enterprise/include/functions_reporting_csv.php:498
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2606
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2596
+msgid "Time failed"
+msgstr "Tiempo en fallo"
+
+#: ../../include/functions_reporting_html.php:3850
+#: ../../enterprise/include/functions_reporting_csv.php:506
+#: ../../enterprise/include/functions_reporting.php:4968
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2622
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2612
+msgid "Time in warning status"
+msgstr "Tiempo en estado de advertencia"
+
+#: ../../include/functions_reporting_html.php:3862
+msgid "Time Not Init Module"
+msgstr "Tiempo en módulo no iniciado"
+
+#: ../../include/functions_reporting_html.php:3868
+#: ../../enterprise/include/functions_reporting_csv.php:1985
+msgid "Time Downtime"
+msgstr "Tiempo de parada planificada"
+
+#: ../../include/functions_reporting_html.php:3873
+msgid "% Ok"
+msgstr "% OK"
+
+#: ../../include/functions_reporting_html.php:3926
+#: ../../enterprise/include/functions_reporting_csv.php:526
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2716
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2704
+msgid "Total checks"
+msgstr "Comprobaciones totales"
+
+#: ../../include/functions_reporting_html.php:3932
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2724
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2712
+msgid "Checks failed"
+msgstr "Comprobaciones fallidas"
+
+#: ../../include/functions_reporting_html.php:3944
+#: ../../enterprise/include/functions_reporting.php:5063
+msgid "Checks Warning"
+msgstr "Comprobaciones Advertencia"
+
+#: ../../include/functions_reporting_html.php:3950
+msgid "Checks Uknown"
+msgstr "Comprobaciones en desconocido"
+
+#: ../../include/functions_reporting_html.php:3989
+#: ../../include/functions_reporting_html.php:4136
+#: ../../include/functions_reporting_html.php:4461
+#: ../../include/functions_reporting_html.php:4467
+msgid "Primary"
+msgstr "Primario"
+
+#: ../../include/functions_reporting_html.php:4246
+#: ../../enterprise/include/functions_reporting_csv.php:661
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2764
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2764
+msgid "Agent max value"
+msgstr "Valor máximo del agente"
+
+#: ../../include/functions_reporting_html.php:4248
+#: ../../enterprise/include/functions_reporting_csv.php:666
+msgid "Agent min value"
+msgstr "Valor mínimo del agente"
+
+#: ../../include/functions_reporting_html.php:4693
+#: ../../enterprise/include/functions_reporting_csv.php:1030
+#: ../../enterprise/godmode/reporting/reporting_builder.global.php:250
+msgid "Sum"
+msgstr "Suma"
+
+#: ../../include/functions_reporting_html.php:5036
+#: ../../enterprise/meta/include/functions_wizard_meta.php:1379
+msgid "Alert description"
+msgstr "Descripción de la alerta"
+
+#: ../../include/functions_reporting_html.php:5076
+#: ../../include/functions_reporting_html.php:5230
+#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:148
+#: ../../mobile/include/functions_web.php:24
+msgid "Monitor"
+msgstr "Monitor"
+
+#: ../../include/functions_reporting_html.php:5129
+#, php-format
+msgid "Agents in group: %s"
+msgstr "Agentes en el grupo: %s"
+
+#: ../../include/functions_reporting_html.php:5231
+msgid "Last failure"
+msgstr "Último fallo"
+
+#: ../../include/functions_reporting_html.php:5321
+msgid "N/A(*)"
+msgstr "N/A(*)"
+
+#: ../../include/functions_reporting_html.php:5534
+#: ../../include/functions_reporting_html.php:5539
+#: ../../enterprise/meta/monitoring/custom_fields_view.php:511
+msgid "Agents by status"
+msgstr "Agentes por estado"
+
+#: ../../include/functions_reporting_html.php:5595
+#: ../../include/functions_reporting_html.php:5600
+msgid "Node overview"
+msgstr "Resumen de nodos"
+
+#: ../../include/functions_reporting_html.php:5620
+#: ../../include/functions_reporting_html.php:5632
+msgid "Critical events"
+msgstr "Eventos en estado crítico"
+
+#: ../../include/functions_reporting_html.php:5623
+#: ../../include/functions_reporting_html.php:5634
+msgid "Warning events"
+msgstr "Eventos en estado de advertencia"
+
+#: ../../include/functions_reporting_html.php:5626
+#: ../../include/functions_reporting_html.php:5636
+msgid "OK events"
+msgstr "Eventos OK"
+
+#: ../../include/functions_reporting_html.php:5629
+#: ../../include/functions_reporting_html.php:5638
+msgid "Unknown events"
+msgstr "Eventos desconocidos"
+
+#: ../../include/functions_reporting_html.php:5654
+msgid "Important Events by Criticity"
+msgstr "Eventos importantes por gravedad"
+
+#: ../../include/functions_reporting_html.php:5680
+#, php-format
+msgid "Last activity in %s console"
+msgstr "Última actividad en la consola %s"
+
+#: ../../include/functions_reporting_html.php:5771
+#: ../../include/functions_reporting_html.php:5913
+msgid "Events info (1hr.)"
+msgstr "Información de eventos (1h)"
+
+#: ../../include/functions_reporting_html.php:6096
+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:6097
+msgid ""
+"If the duration of the scheduled downtime is less than 5 minutes it will not "
+"be represented in the graph"
+msgstr ""
+"Si la duración de la parada planificada es de menos de 5 minutos, no se "
+"representará en el gráfico"
+
+#: ../../include/functions_reporting_html.php:6103
+#: ../../godmode/modules/manage_network_components_form_wizard.php:654
+#: ../../godmode/agentes/planned_downtime.editor.php:603
+#: ../../godmode/agentes/planned_downtime.list.php:614
+msgid "Execution"
+msgstr "Ejecución"
+
+#: ../../include/functions_reporting_html.php:6135
+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:6135
+msgid "Go to the scheduled downtimes section to solve this"
+msgstr "Ir a la sección de paradas planificadas para solucionar este problema"
+
+#: ../../include/functions_reporting_html.php:6168
+#: ../../include/functions_reporting_html.php:6191
+#: ../../enterprise/include/functions_reporting_csv.php:2549
+#: ../../enterprise/include/functions_reporting_csv.php:2559
+msgid "Full name"
+msgstr "Nombre completo"
+
+#: ../../include/functions_reporting_html.php:6169
+#: ../../include/functions_reporting_html.php:6192
+#: ../../enterprise/include/functions_reporting_csv.php:2549
+#: ../../enterprise/include/functions_reporting_csv.php:2559
+msgid "Permissions"
+msgstr "Permisos"
 
 #: ../../update_manager_client/views/register.php:48
 msgid "Register to Update Manager"
@@ -50455,6 +26598,65 @@ msgstr "Suscripción incorrecta"
 msgid "Pandora successfully subscribed with UID: "
 msgstr "Pandora FMS se suscribió correctamente con UID: "
 
+#: ../../update_manager_client/views/online.php:64
+msgid "Update to next version"
+msgstr "Actualizar a la siguiente versión"
+
+#: ../../update_manager_client/views/online.php:65
+msgid "Update to latest version"
+msgstr "Actualizar a la última versión"
+
+#: ../../update_manager_client/views/online.php:89
+#: ../../update_manager_client/views/offline.php:74
+msgid "Updating to"
+msgstr "Actualizando"
+
+#: ../../update_manager_client/views/online.php:90
+#: ../../update_manager_client/views/offline.php:75
+msgid "Do you really want to leave our brilliant application?"
+msgstr "¿Estás seguro de que quieres realizar esta acción?"
+
+#: ../../update_manager_client/views/online.php:91
+#: ../../update_manager_client/views/offline.php:76
+msgid "There are no updates available"
+msgstr "No hay actualizaciones disponibles"
+
+#: ../../update_manager_client/views/online.php:92
+#: ../../update_manager_client/views/offline.php:77
+msgid "Searching for updates..."
+msgstr "Buscando actualizaciones..."
+
+#: ../../update_manager_client/views/online.php:93
+#: ../../update_manager_client/views/offline.php:78
+msgid "Package"
+msgstr "Paquete"
+
+#: ../../update_manager_client/views/online.php:94
+#: ../../update_manager_client/views/offline.php:79
+#: ../../enterprise/tools/ipam/ipam_action.php:380
+msgid "Successfully updated."
+msgstr "Actualizado correctamente"
+
+#: ../../update_manager_client/views/online.php:123
+#: ../../update_manager_client/views/online.php:164
+#: ../../update_manager_client/views/offline.php:71
+msgid "This action will upgrade this console to version "
+msgstr "Esta acción actualizará esta consola a la versión "
+
+#: ../../update_manager_client/views/online.php:124
+#: ../../update_manager_client/views/online.php:165
+msgid "Update to"
+msgstr "Actualización para"
+
+#: ../../update_manager_client/views/online.php:145
+#: ../../update_manager_client/views/online.php:149
+msgid "Failed to update to "
+msgstr "Error al actualizar a "
+
+#: ../../update_manager_client/views/online.php:188
+msgid "Failed to update:"
+msgstr "Error al actualizar"
+
 #: ../../update_manager_client/views/offline.php:66
 msgid "Drop the package here or"
 msgstr "Arrastre el paquete hasta aquí o"
@@ -50482,41 +26684,10 @@ msgstr ""
 msgid "Click on the file below to begin."
 msgstr "Haz clic en el archivo de abajo para comenzar."
 
-#: ../../update_manager_client/views/offline.php:71
-#: ../../update_manager_client/views/online.php:123
-#: ../../update_manager_client/views/online.php:164
-msgid "This action will upgrade this console to version "
-msgstr "Esta acción actualizará esta consola a la versión "
-
 #: ../../update_manager_client/views/offline.php:72
 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:74
-#: ../../update_manager_client/views/online.php:89
-msgid "Updating to"
-msgstr "Actualizando"
-
-#: ../../update_manager_client/views/offline.php:75
-#: ../../update_manager_client/views/online.php:90
-msgid "Do you really want to leave our brilliant application?"
-msgstr "¿Estás seguro de que quieres realizar esta acción?"
-
-#: ../../update_manager_client/views/offline.php:76
-#: ../../update_manager_client/views/online.php:91
-msgid "There are no updates available"
-msgstr "No hay actualizaciones disponibles"
-
-#: ../../update_manager_client/views/offline.php:77
-#: ../../update_manager_client/views/online.php:92
-msgid "Searching for updates..."
-msgstr "Buscando actualizaciones..."
-
-#: ../../update_manager_client/views/offline.php:78
-#: ../../update_manager_client/views/online.php:93
-msgid "Package"
-msgstr "Paquete"
-
 #: ../../update_manager_client/views/offline.php:80
 msgid "Package rejected. These package changes will not apply."
 msgstr "Paquete rechazado. Los cambios de este paquete no se aplicarán."
@@ -50592,27 +26763,18342 @@ msgstr ""
 "a instalar a menos que se permitan parches. Habilite los parches en la "
 "configuración del administrador de actualizaciones."
 
-#: ../../update_manager_client/views/online.php:64
-msgid "Update to next version"
-msgstr "Actualizar a la siguiente versión"
+#: ../../update_manager_client/lib/UpdateManager/Client.php:712
+#, php-format
+msgid "server update %d"
+msgstr "%d de actualización del servidor"
 
-#: ../../update_manager_client/views/online.php:65
-msgid "Update to latest version"
-msgstr "Actualizar a la última versión"
+#: ../../update_manager_client/lib/UpdateManager/Client.php:714
+#, php-format
+msgid "console update %d"
+msgstr "%d de actualización de la consola"
 
-#: ../../update_manager_client/views/online.php:124
-#: ../../update_manager_client/views/online.php:165
-msgid "Update to"
-msgstr "Actualización para"
+#: ../../update_manager_client/lib/UpdateManager/Client.php:734
+#, php-format
+msgid "Downloading %s %.2f/ %.2f MB."
+msgstr "Descarga de %s %.2f/ %.2f MB."
 
-#: ../../update_manager_client/views/online.php:145
-#: ../../update_manager_client/views/online.php:149
-msgid "Failed to update to "
-msgstr "Error al actualizar a "
+#: ../../update_manager_client/lib/UpdateManager/Client.php:745
+#, php-format
+msgid "Downloading %.2f MB"
+msgstr "Descarga de %.2f MB"
 
-#: ../../update_manager_client/views/online.php:188
-msgid "Failed to update:"
-msgstr "Error al actualizar"
+#: ../../update_manager_client/lib/UpdateManager/Client.php:1469
+#, php-format
+msgid "Failed to analyze package: %s"
+msgstr "Error al analizar el paquete: %s"
+
+#: ../../update_manager_client/lib/UpdateManager/Client.php:1560
+msgid "Searching update package"
+msgstr "Búsqueda del paquete de actualización"
+
+#: ../../update_manager_client/lib/UpdateManager/Client.php:1592
+msgid "Retrieving update"
+msgstr "Recuperación de la actualización"
+
+#: ../../update_manager_client/lib/UpdateManager/Client.php:1683
+msgid "Extracting package"
+msgstr "Extracción del paquete"
+
+#: ../../update_manager_client/lib/UpdateManager/Client.php:1750
+msgid "Testing files"
+msgstr "Archivos de prueba"
+
+#: ../../update_manager_client/lib/UpdateManager/Client.php:1782
+#, php-format
+msgid "Applying MR %s"
+msgstr "Aplicación de la %s de RM"
+
+#: ../../update_manager_client/lib/UpdateManager/Client.php:1819
+msgid "Applying file updates"
+msgstr "Aplicación de actualizaciones de archivos"
+
+#: ../../update_manager_client/lib/UpdateManager/Client.php:1841
+msgid "Retrieving server update"
+msgstr "Recuperación de la actualización del servidor"
+
+#: ../../update_manager_client/lib/UpdateManager/Client.php:1856
+msgid "Cleaning"
+msgstr "Limpieza"
+
+#: ../../update_manager_client/lib/UpdateManager/Client.php:1874
+#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:544
+msgid "Completed"
+msgstr "Completado"
+
+#: ../../update_manager_client/lib/UpdateManager/Client.php:1969
+msgid "Updating to "
+msgstr "Actualización a "
+
+#: ../../update_manager_client/lib/UpdateManager/UI/Manager.php:484
+msgid "Next update"
+msgstr "próxima actualización"
+
+#: ../../update_manager_client/lib/UpdateManager/UI/Manager.php:489
+msgid "Show details"
+msgstr "Ver detalles"
+
+#: ../../update_manager_client/lib/UpdateManager/UI/Manager.php:514
+#, php-format
+msgid "%s update(s) available more"
+msgstr "%s actualización(es) disponible(s) más"
+
+#: ../../update_manager_client/lib/UpdateManager/UI/Manager.php:526
+msgid "details"
+msgstr "detalles"
+
+#: ../../update_manager_client/lib/UpdateManager/UI/Manager.php:604
+msgid "Failed creating temporary directory."
+msgstr "Error al crear un directorio temporal."
+
+#: ../../update_manager_client/lib/UpdateManager/UI/Manager.php:614
+msgid "Failed storing uploaded file."
+msgstr "Error al almacenar el archivo cargado."
+
+#: ../../update_manager_client/lib/UpdateManager/UI/Manager.php:646
+#, php-format
+msgid "Invalid extension. The package needs to be in `%s` or `%s` format."
+msgstr "Extensión no válida. El paquete debe estar en formato \"%s\" o \"%s\"."
+
+#: ../../update_manager_client/lib/UpdateManager/UI/Manager.php:655
+msgid "Failed uploading file."
+msgstr "Error al cargar el archivo."
+
+#: ../../update_manager_client/lib/UpdateManager/UI/Manager.php:690
+msgid "Signatures does not match."
+msgstr "Las firmas no coinciden."
+
+#: ../../update_manager_client/lib/UpdateManager/UI/Manager.php:749
+#, php-format
+msgid "Update %s successfully installed."
+msgstr "La actualización %s instalado correctamente."
+
+#: ../../update_manager_client/lib/UpdateManager/UI/Manager.php:752
+#, php-format
+msgid "Failed while updating: %s"
+msgstr "Error al actualizar: %s"
+
+#: ../../index.php:344 ../../enterprise/meta/index.php:307
+msgid "The code shouldn't be empty"
+msgstr "El código no debería estar vacío"
+
+#: ../../index.php:357 ../../enterprise/meta/index.php:320
+msgid "Expired login"
+msgstr "Inicio de sesión caducado"
+
+#: ../../index.php:364 ../../index.php:370 ../../enterprise/meta/index.php:327
+#: ../../enterprise/meta/index.php:333
+msgid "Login error"
+msgstr "Error de conexión"
+
+#: ../../index.php:788 ../../enterprise/meta/index.php:616
+msgid "Password changed successfully"
+msgstr "Contraseña modificada correctamente"
+
+#: ../../index.php:794 ../../enterprise/meta/index.php:622
+msgid "Failed to change password"
+msgstr "No se pudo modificar la contraseña"
+
+#: ../../index.php:799 ../../enterprise/include/process_reset_pass.php:127
+#: ../../enterprise/meta/include/process_reset_pass.php:123
+#: ../../enterprise/meta/index.php:625
+msgid "Passwords must be the same"
+msgstr "Las contraseñas deben coincidir"
+
+#: ../../index.php:811 ../../enterprise/meta/index.php:636
+msgid "Too much time since password change request"
+msgstr "Ha pasado demasiado tiempo desde la solicitud de cambio de contraseña"
+
+#: ../../index.php:818 ../../enterprise/meta/index.php:643
+msgid "This user has not requested a password change"
+msgstr "Este usuario no ha solicitado un cambio de contraseña"
+
+#: ../../index.php:845 ../../enterprise/meta/index.php:659
+msgid "Id user cannot be empty"
+msgstr "El ID de usuario no puede estar vacío"
+
+#: ../../index.php:853 ../../enterprise/meta/index.php:667
+msgid "Error in reset password request"
+msgstr "Error en la solicitud para restablecer la contraseña"
+
+#: ../../index.php:861 ../../enterprise/meta/index.php:675
+msgid "This user doesn't have a valid email address"
+msgstr "Este usuario no tiene una dirección válida de email"
+
+#: ../../index.php:871 ../../enterprise/include/reset_pass.php:108
+#: ../../enterprise/meta/include/reset_pass.php:103
+#: ../../enterprise/meta/index.php:691
+msgid "Reset password"
+msgstr "Restablecer la contraseña"
+
+#: ../../index.php:872 ../../enterprise/meta/index.php:692
+msgid "This is an automatically sent message for user "
+msgstr "Este es un mensaje enviado automáticamente para el usuario "
+
+#: ../../index.php:875 ../../enterprise/meta/index.php:695
+msgid "Please click the link below to reset your password"
+msgstr "Haz clic en el enlace de abajo para restablecer la contraseña"
+
+#: ../../index.php:877 ../../enterprise/meta/index.php:697
+msgid "Reset your password"
+msgstr "Restablecer la contraseña"
+
+#: ../../index.php:881 ../../enterprise/meta/index.php:701
+msgid "Please do not reply to this email."
+msgstr "No respondas a este email."
+
+#: ../../index.php:886 ../../enterprise/meta/index.php:707
+msgid "Error at sending the email"
+msgstr "Error al enviar el email"
+
+#: ../../index.php:946
+msgid "User doesn\\'t exist."
+msgstr "El usuario no existe."
+
+#: ../../index.php:968
+msgid "User only can use the API."
+msgstr "El usuario solo puede usar la API."
+
+#: ../../index.php:1163
+#, php-format
+msgid "Metaconsole MR (%d) is different than this one (%d)"
+msgstr "La Metaconsola MR (%d) es diferente a esta (%d)"
+
+#: ../../index.php:1169 ../../enterprise/meta/index.php:925
+msgid "Please keep all environment updated to same version."
+msgstr "Mantenga todo el entorno actualizado a la misma versión."
+
+#: ../../index.php:1257 ../../enterprise/meta/index.php:982
+#: ../../enterprise/meta/index.php:1061
+msgid "Sorry! I can't find the page!"
+msgstr "No se puede encontrar la página"
+
+#: ../../enterprise/tools/ipam/ipam_excel.php:134
+#: ../../enterprise/tools/ipam/ipam_calculator.php:84
+#: ../../enterprise/tools/ipam/ipam_supernet_config.php:564
+msgid "Mask"
+msgstr "Máscara"
+
+#: ../../enterprise/tools/ipam/ipam_excel.php:135
+msgid "Subneting Mask"
+msgstr "Máscara de subnetting"
+
+#: ../../enterprise/tools/ipam/ipam_excel.php:136
+#: ../../enterprise/tools/ipam/ipam_excel.php:202
+#: ../../enterprise/include/functions_ipam.php:1559
+#: ../../enterprise/include/functions_ipam.php:1989
+msgid "Total IPs"
+msgstr "IPs totales"
+
+#: ../../enterprise/tools/ipam/ipam_excel.php:137
+#: ../../enterprise/tools/ipam/ipam_excel.php:203
+#: ../../enterprise/include/functions_ipam.php:1990
+msgid "Alive IPs"
+msgstr "IPs activas"
+
+#: ../../enterprise/tools/ipam/ipam_excel.php:138
+#: ../../enterprise/tools/ipam/ipam_excel.php:204
+#: ../../enterprise/include/functions_ipam.php:1991
+msgid "Occupied %"
+msgstr "Ocupado %"
+
+#: ../../enterprise/tools/ipam/ipam_excel.php:139
+#: ../../enterprise/tools/ipam/ipam_excel.php:205
+#: ../../enterprise/include/functions_ipam.php:1992
+msgid "Available %"
+msgstr "Disponible %"
+
+#: ../../enterprise/tools/ipam/ipam_excel.php:140
+#: ../../enterprise/tools/ipam/ipam_excel.php:206
+#: ../../enterprise/include/functions_ipam.php:1993
+msgid "Managed IPs"
+msgstr "IPs gestionadas"
+
+#: ../../enterprise/tools/ipam/ipam_excel.php:141
+#: ../../enterprise/tools/ipam/ipam_excel.php:207
+#: ../../enterprise/include/functions_ipam.php:1994
+msgid "Managed %"
+msgstr "Gestionadas %"
+
+#: ../../enterprise/tools/ipam/ipam_excel.php:142
+#: ../../enterprise/tools/ipam/ipam_excel.php:208
+#: ../../enterprise/include/functions_ipam.php:1995
+msgid "Unmanaged %"
+msgstr "No gestionadas %"
+
+#: ../../enterprise/tools/ipam/ipam_excel.php:143
+#: ../../enterprise/tools/ipam/ipam_excel.php:209
+#: ../../enterprise/include/functions_ipam.php:1996
+msgid "Reserved IPs"
+msgstr "IPs reservadas"
+
+#: ../../enterprise/tools/ipam/ipam_excel.php:144
+#: ../../enterprise/tools/ipam/ipam_excel.php:210
+#: ../../enterprise/include/functions_ipam.php:1997
+msgid "Reserved %"
+msgstr "Reservado %"
+
+#: ../../enterprise/tools/ipam/ipam_excel.php:145
+#: ../../enterprise/tools/ipam/ipam_excel.php:211
+#: ../../enterprise/include/functions_ipam.php:1998
+msgid "Not reserved %"
+msgstr "No reservadas %"
+
+#: ../../enterprise/tools/ipam/ipam_excel.php:212
+#: ../../enterprise/tools/ipam/ipam_vlan_config.php:342
+#: ../../enterprise/tools/ipam/ipam_vlan_config.php:674
+#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:398
+#: ../../godmode/massive/massive_edit_agents.php:798
+#: ../../godmode/agentes/module_manager_editor_common.php:567
+#: ../../godmode/agentes/agent_manager.php:198
+#: ../../godmode/groups/configure_group.php:238
+msgid "Custom ID"
+msgstr "ID personalizado"
+
+#: ../../enterprise/tools/ipam/ipam_vlan_config.php:45
+#: ../../enterprise/tools/ipam/ipam_vlan_config.php:268
+msgid "There is no VLAN name. Please introduce a name"
+msgstr "No hay nombre de vlan. Añada un nombre"
+
+#: ../../enterprise/tools/ipam/ipam_vlan_config.php:49
+#: ../../enterprise/tools/ipam/ipam_vlan_config.php:87
+#: ../../enterprise/tools/ipam/ipam_vlan_config.php:272
+msgid "Custom ID is not valid"
+msgstr "El ID personalizado no es válido"
+
+#: ../../enterprise/tools/ipam/ipam_vlan_config.php:66
+msgid "Vlan created"
+msgstr "Vlan creada"
+
+#: ../../enterprise/tools/ipam/ipam_vlan_config.php:68
+msgid "Vlan not created"
+msgstr "Vlan no creada"
+
+#: ../../enterprise/tools/ipam/ipam_vlan_config.php:72
+#: ../../enterprise/tools/ipam/ipam_vlan_config.php:296
+msgid "VLAN name exists in database, please select another name"
+msgstr ""
+"El nombre de la vlan ya existe en la base de datos, seleccione otro nombre"
+
+#: ../../enterprise/tools/ipam/ipam_vlan_config.php:83
+msgid "There is no vlan name. Please introduce a name"
+msgstr "No hay nombre de vlan. Añada un nombre"
+
+#: ../../enterprise/tools/ipam/ipam_vlan_config.php:109
+msgid "Vlan updated"
+msgstr "Vlan actualizada"
+
+#: ../../enterprise/tools/ipam/ipam_vlan_config.php:111
+msgid "Vlan not updated"
+msgstr "Vlan no actualizada"
+
+#: ../../enterprise/tools/ipam/ipam_vlan_config.php:115
+msgid "Vlan name exists in database, please select other name"
+msgstr ""
+"El nombre de la vlan ya existe en la base de datos, seleccione otro nombre"
+
+#: ../../enterprise/tools/ipam/ipam_vlan_config.php:135
+msgid "Could not be deleted, please select vlan"
+msgstr "No se ha podido borrar, seleccione vlan"
+
+#: ../../enterprise/tools/ipam/ipam_vlan_config.php:163
+msgid "Network name cannot be repeated in this Vlan"
+msgstr "El nombre de la red no se puede repetir en esta vlan"
+
+#: ../../enterprise/tools/ipam/ipam_vlan_config.php:170
+#: ../../enterprise/tools/ipam/ipam_supernet_config.php:436
+msgid "Successfully added networks"
+msgstr "Redes añadidas correctamente"
+
+#: ../../enterprise/tools/ipam/ipam_vlan_config.php:174
+#: ../../enterprise/tools/ipam/ipam_supernet_config.php:440
+msgid "Network could not be added"
+msgstr "No se ha podido añadir la red"
+
+#: ../../enterprise/tools/ipam/ipam_vlan_config.php:179
+msgid "Network name could not be added, please select network"
+msgstr "No se ha podido añadir el nombre de la red, seleccione una red"
+
+#: ../../enterprise/tools/ipam/ipam_vlan_config.php:184
+msgid "Vlan name could not be added, please select vlan"
+msgstr "No se ha podido añadir el nombre de la vlan, seleccione vlan"
+
+#: ../../enterprise/tools/ipam/ipam_vlan_config.php:212
+msgid "Could not be deleted, please select VLAN and network"
+msgstr "No se ha podido eliminar, seleccione una VLAN y una red"
+
+#: ../../enterprise/tools/ipam/ipam_vlan_config.php:219
+#, php-format
+msgid "Failed to delete %d/%d networks from VLAN"
+msgstr "Error al eliminar redes %d/%d de VLAN"
+
+#: ../../enterprise/tools/ipam/ipam_vlan_config.php:223
+msgid "Successfully deleted network from VLAN"
+msgstr "Red eliminada correctamente de VLAN"
+
+#: ../../enterprise/tools/ipam/ipam_vlan_config.php:225
+#, php-format
+msgid "Successfully deleted %d/%d networks from VLAN"
+msgstr "Redes %d/%d eliminadas correctamente de VLAN"
+
+#: ../../enterprise/tools/ipam/ipam_vlan_config.php:228
+#: ../../enterprise/tools/ipam/ipam_supernet_config.php:495
+msgid "No items selected"
+msgstr "No hay elementos seleccionados"
+
+#: ../../enterprise/tools/ipam/ipam_vlan_config.php:303
+#, php-format
+msgid "%s VLAN networks have been created"
+msgstr "%s redes VLAN creadas"
+
+#: ../../enterprise/tools/ipam/ipam_vlan_config.php:305
+msgid "Could not create VLAN networks"
+msgstr "No se pudieron crear redes VLAN"
+
+#: ../../enterprise/tools/ipam/ipam_vlan_config.php:316
+#: ../../enterprise/tools/ipam/ipam_supernet_config.php:701
+#: ../../enterprise/tools/ipam/ipam_list.php:447
+#: ../../enterprise/extensions/csv_import_group/main.php:68
+msgid "The CSV file must have the fields in the following order: "
+msgstr "El archivo CSV debe tener los campos en el siguiente orden:"
+
+#: ../../enterprise/tools/ipam/ipam_vlan_config.php:339
+#: ../../enterprise/tools/ipam/ipam_vlan_network.php:39
+#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:58
+#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:62
+#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:67
+#: ../../enterprise/tools/ipam/ipam_list.php:151
+#: ../../enterprise/tools/ipam/ipam_list.php:602
+msgid "Vlan"
+msgstr "Vlan"
+
+#: ../../enterprise/tools/ipam/ipam_vlan_config.php:366
+#: ../../enterprise/tools/ipam/ipam_vlan_config.php:822
+msgid "Update Vlan"
+msgstr "Actualizar vlan"
+
+#: ../../enterprise/tools/ipam/ipam_vlan_config.php:373
+#: ../../enterprise/tools/ipam/ipam_vlan_config.php:917
+msgid "New Vlan"
+msgstr "Nueva vlan"
+
+#: ../../enterprise/tools/ipam/ipam_vlan_config.php:393
+#: ../../enterprise/tools/ipam/ipam_network.php:115
+#: ../../enterprise/tools/ipam/ipam_supernet_config.php:719
+#: ../../enterprise/tools/ipam/ipam_list.php:50
+#: ../../enterprise/include/class/CSVImportAgents.class.php:144
+#: ../../enterprise/extensions/csv_import_group/main.php:84
+msgid "Upload file"
+msgstr "Subir archivo"
+
+#: ../../enterprise/tools/ipam/ipam_vlan_config.php:402
+#: ../../enterprise/tools/ipam/ipam_network.php:124
+#: ../../enterprise/tools/ipam/ipam_supernet_config.php:728
+#: ../../enterprise/tools/ipam/ipam_list.php:59
+#: ../../enterprise/include/class/CSVImportAgents.class.php:161
+#: ../../enterprise/include/class/DeploymentCenter.class.php:1400
+#: ../../enterprise/extensions/csv_import_group/main.php:87
+msgid "Separator"
+msgstr "Separador"
+
+#: ../../enterprise/tools/ipam/ipam_vlan_config.php:415
+#: ../../enterprise/tools/ipam/ipam_network.php:137
+#: ../../enterprise/tools/ipam/ipam_supernet_config.php:741
+#: ../../enterprise/tools/ipam/ipam_list.php:72
+#: ../../enterprise/extensions/csv_import_group/main.php:100
+msgid "Upload CSV file"
+msgstr "Subir archivo CSV"
+
+#: ../../enterprise/tools/ipam/ipam_vlan_config.php:435
+msgid "Search filter by name"
+msgstr "Filtro de búsqueda por nombre"
+
+#: ../../enterprise/tools/ipam/ipam_vlan_config.php:688
+#: ../../enterprise/tools/ipam/ipam_supernet_config.php:1071
+msgid "Networks"
+msgstr "Redes"
+
+#: ../../enterprise/tools/ipam/ipam_vlan_config.php:702
+#: ../../enterprise/tools/ipam/ipam_supernet_config.php:1176
+#: ../../enterprise/tools/ipam/ipam_supernet_config.php:1306
+#: ../../enterprise/include/ajax/ipam.ajax.php:691
+#: ../../enterprise/include/ajax/ipam.ajax.php:748
+#: ../../enterprise/include/ajax/ipam.ajax.php:779
+#: ../../enterprise/include/ajax/ipam.ajax.php:826
+msgid "No assigned networks"
+msgstr "Redes no asignadas"
+
+#: ../../enterprise/tools/ipam/ipam_vlan_config.php:736
+msgid "Delete network to vlan"
+msgstr "Borrar una red de vlan"
+
+#: ../../enterprise/tools/ipam/ipam_vlan_config.php:796
+msgid "Manage networks in VLAN"
+msgstr "Administrar redes en VLAN"
+
+#: ../../enterprise/tools/ipam/ipam_vlan_config.php:816
+msgid "Not assigned networks"
+msgstr "Redes no asignadas"
+
+#: ../../enterprise/tools/ipam/ipam_vlan_config.php:829
+#: ../../enterprise/tools/ipam/ipam_vlan_config.php:848
+msgid "Add network to Vlan"
+msgstr "Añadir red a vlan"
+
+#: ../../enterprise/tools/ipam/ipam_vlan_config.php:832
+msgid "Create network"
+msgstr "Crear red"
+
+#: ../../enterprise/tools/ipam/ipam_vlan_config.php:865
+msgid "Delete Vlan"
+msgstr "Eliminar vlan"
+
+#: ../../enterprise/tools/ipam/ipam_vlan_config.php:906
+#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:459
+msgid "No vlans found"
+msgstr "No se han encontrado vlans"
+
+#: ../../enterprise/tools/ipam/ipam_network_location_config.php:40
+#: ../../godmode/modules/manage_nc_groups.php:64
+msgid "Could not be created. Blank name"
+msgstr "No pudo ser creado. Nombre en blanco"
+
+#: ../../enterprise/tools/ipam/ipam_network_location_config.php:61
+#: ../../enterprise/godmode/reporting/graph_template_editor.php:155
+#: ../../godmode/modules/manage_nc_groups.php:95
+#: ../../godmode/events/event_edit_filter.php:205
+#: ../../godmode/netflow/nf_edit_form.php:118
+msgid "Not updated. Blank name"
+msgstr "No actualizado; nombre en blanco"
+
+#: ../../enterprise/tools/ipam/ipam_network_location_config.php:72
+#: ../../godmode/setup/news.php:108
+#: ../../godmode/modules/manage_nc_groups.php:119
+#: ../../godmode/events/event_edit_filter.php:216
+#: ../../godmode/netflow/nf_edit_form.php:140
+msgid "Not updated. Error updating data"
+msgstr "No se ha podido actualizar. Error al actualizar los datos."
+
+#: ../../enterprise/tools/ipam/ipam_network_location_config.php:110
+#, php-format
+msgid "%d/%d items deleted"
+msgstr "Elementos %d/%d eliminados"
+
+#: ../../enterprise/tools/ipam/ipam_network_location_config.php:112
+msgid "Failed to delete items"
+msgstr "Error al eliminar elementos"
+
+#: ../../enterprise/tools/ipam/ipam_network_location_config.php:167
+msgid "Search filter by name or network address"
+msgstr "Filtro de búsqueda por nombre o dirección de red"
+
+#: ../../enterprise/tools/ipam/ipam_network_location_config.php:273
+msgid "No locations found"
+msgstr "No se encontraron ubicaciones"
+
+#: ../../enterprise/tools/ipam/ipam_network_location_config.php:309
+msgid "There are no defined network locations"
+msgstr "No hay ubicaciones de red definidas"
+
+#: ../../enterprise/tools/ipam/ipam_supernet_network.php:82
+#: ../../enterprise/tools/ipam/ipam_supernet_config.php:536
+#: ../../enterprise/include/ajax/ipam.ajax.php:613
+msgid "Supernet"
+msgstr "Superred"
+
+#: ../../enterprise/tools/ipam/ipam_ajax.php:285
+msgid "There is not an available IP."
+msgstr "No hay una IP disponible"
+
+#: ../../enterprise/tools/ipam/ipam_ajax.php:287
+msgid "Next available IP Address is:"
+msgstr "La siguiente IP disponible es:"
+
+#: ../../enterprise/tools/ipam/ipam_ajax.php:313
+msgid "Reserve this IP now"
+msgstr "Reservar esta IP ahora"
+
+#: ../../enterprise/tools/ipam/ipam_ajax.php:329
+msgid "Manage this IP now"
+msgstr "Gestionar esta IP ahora"
+
+#: ../../enterprise/tools/ipam/ipam_ajax.php:374
+msgid "Operating system"
+msgstr "Sistema operativo"
+
+#: ../../enterprise/tools/ipam/ipam_ajax.php:384
+msgid "This agent has other IPs"
+msgstr "Este agente tiene otras IPs."
+
+#: ../../enterprise/tools/ipam/ipam_ajax.php:393
+msgid "Generate events"
+msgstr "Generar eventos"
+
+#: ../../enterprise/tools/ipam/ipam_ajax.php:406
+#: ../../enterprise/tools/ipam/ipam_massive.php:103
+#: ../../enterprise/tools/ipam/ipam_network.php:400
+#: ../../enterprise/include/functions_ipam.php:1571
+#: ../../enterprise/include/functions_ipam.php:2042
+msgid "Managed"
+msgstr "Gestionado"
+
+#: ../../enterprise/tools/ipam/ipam_ajax.php:432
+#: ../../enterprise/tools/ipam/ipam_massive.php:103
+#: ../../enterprise/tools/ipam/ipam_network.php:401
+#: ../../enterprise/include/functions_ipam.php:1577
+#: ../../enterprise/include/functions_ipam.php:1734
+#: ../../enterprise/include/functions_ipam.php:2043
+msgid "Reserved"
+msgstr "Reservado"
+
+#: ../../enterprise/tools/ipam/ipam_ajax.php:445
+msgid "Leases Dhcp"
+msgstr "Periodo de concesión Dhcp"
+
+#: ../../enterprise/tools/ipam/ipam_ajax.php:455
+msgid "leased mode"
+msgstr "Modo de concesión"
+
+#: ../../enterprise/tools/ipam/ipam_ajax.php:468
+msgid "leased expiration"
+msgstr "Concesión caducada"
+
+#: ../../enterprise/tools/ipam/ipam_ajax.php:489
+#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:424
+msgid "Created"
+msgstr "Creado"
+
+#: ../../enterprise/tools/ipam/ipam_ajax.php:499
+msgid "Edited"
+msgstr "Modificado"
+
+#: ../../enterprise/tools/ipam/ipam_ajax.php:509
+msgid "Tracking"
+msgstr "Seguimiento"
+
+#: ../../enterprise/tools/ipam/ipam_ajax.php:524
+msgid "Ping"
+msgstr "Ping"
+
+#: ../../enterprise/tools/ipam/ipam_ajax.php:565
+msgid "Ping to host"
+msgstr "Ping a un host"
+
+#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:58
+msgid "succesfully created"
+msgstr "creado correctamente"
+
+#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:62
+msgid "not created"
+msgstr "no creado"
+
+#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:67
+msgid "exists in bbdd, please select other name"
+msgstr "existe en la base de datos, seleccione otro nombre"
+
+#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:72
+msgid "please, select VLAN to be created"
+msgstr "seleccione una VLAN para crear"
+
+#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:231
+msgid "Please enter adress, for search vlans"
+msgstr "Añada una dirección para buscar vlans"
+
+#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:337
+msgid "privacy pass"
+msgstr "pase privado"
+
+#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:374
+#: ../../godmode/wizards/HostDevices.class.php:1248
+msgid "Context"
+msgstr "Contexto"
+
+#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:397
+msgid "Run"
+msgstr "Ejecutar"
+
+#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:409
+msgid "Vlan name"
+msgstr "Nombre de vlan"
+
+#: ../../enterprise/tools/ipam/ipam_massive.php:82
+msgid "Addresses"
+msgstr "Direcciones"
+
+#: ../../enterprise/tools/ipam/ipam_network.php:163
+msgid "No addresses found on this network"
+msgstr "No se han encontrado direcciones en esta red"
+
+#: ../../enterprise/tools/ipam/ipam_network.php:314
+msgid "Edit address"
+msgstr "Modificar dirección"
+
+#: ../../enterprise/tools/ipam/ipam_network.php:327
+msgid "Disabled address"
+msgstr "Deshabilitar direción"
+
+#: ../../enterprise/tools/ipam/ipam_network.php:327
+msgid "This address will not be updated by the server"
+msgstr "Esta dirección no será actualizada por el servidor."
+
+#: ../../enterprise/tools/ipam/ipam_network.php:414
+#: ../../enterprise/include/functions_reporting_csv.php:1936
+#: ../../enterprise/include/functions_reporting.php:2318
+#: ../../enterprise/include/functions_ipam.php:2038
+#: ../../godmode/wizards/DiscoveryTaskList.class.php:1391
+msgid "Alive"
+msgstr "Activo"
+
+#: ../../enterprise/tools/ipam/ipam_network.php:423
+#: ../../godmode/wizards/DiscoveryTaskList.class.php:1396
+msgid "Not alive"
+msgstr "Inactivo"
+
+#: ../../enterprise/tools/ipam/ipam_network.php:454
+#: ../../enterprise/tools/ipam/ipam_network.php:533
+#: ../../enterprise/tools/ipam/ipam_network.php:575
+msgid "Change to automatic mode"
+msgstr "Cambiar a modo automático"
+
+#: ../../enterprise/tools/ipam/ipam_network.php:463
+#: ../../enterprise/tools/ipam/ipam_network.php:542
+#: ../../enterprise/tools/ipam/ipam_network.php:584
+msgid "Change to manual mode"
+msgstr "Cambiar a modo manual"
+
+#: ../../enterprise/tools/ipam/ipam_network.php:663
+msgid "Add comments"
+msgstr "Añadir comentarios"
+
+#: ../../enterprise/tools/ipam/ipam_network.php:691
+msgid "Update agent address"
+msgstr "Actualizar dirección de agente"
+
+#: ../../enterprise/tools/ipam/ipam_network.php:857
+msgid "Please, uncheck auto option to set manual agent."
+msgstr "Desmarcar la opción automática para establecer agente manual"
+
+#: ../../enterprise/tools/ipam/ipam_action.php:121
+#: ../../enterprise/tools/ipam/ipam_action.php:240
+#: ../../enterprise/tools/ipam/ipam_supernet_config.php:227
+#: ../../enterprise/tools/ipam/ipam_supernet_config.php:327
+#: ../../enterprise/tools/ipam/ipam_list.php:383
+msgid "The location is not filled, please add a location."
+msgstr "La ubicación no está indicada. Por favor, añade una ubicación."
+
+#: ../../enterprise/tools/ipam/ipam_action.php:138
+#: ../../enterprise/tools/ipam/ipam_action.php:270
+#: ../../enterprise/tools/ipam/ipam_list.php:400
+msgid "Incorrect format in Subnet field"
+msgstr "Formato incorrecto en el campo Subred"
+
+#: ../../enterprise/tools/ipam/ipam_action.php:198
+#, php-format
+msgid "Network could not be added to supernet %s (%s)"
+msgstr "No se pudo agregar la red a la superred %s (%s)"
+
+#: ../../enterprise/tools/ipam/ipam_action.php:202
+#, php-format
+msgid "Network added to supernet %s (%s)"
+msgstr "Red agregada a la %s de superred (%s)"
+
+#: ../../enterprise/tools/ipam/ipam_action.php:207
+#, php-format
+msgid "Network name already exists in supernet %s (%s)"
+msgstr "El nombre de red ya existe en la superred %s (%s)"
+
+#: ../../enterprise/tools/ipam/ipam_action.php:219
+#: ../../enterprise/tools/ipam/ipam_list.php:425
+#, php-format
+msgid "Could not be created: %s"
+msgstr "No se ha podido crear: %s"
+
+#: ../../enterprise/tools/ipam/ipam_calculator.php:64
+#: ../../enterprise/tools/ipam/ipam_calculator.php:66
+#: ../../enterprise/tools/ipam/ipam_calculator.php:87
+#: ../../enterprise/tools/ipam/ipam_calculator.php:90
+#: ../../enterprise/tools/ipam/ipam_calculator.php:93
+#: ../../enterprise/tools/ipam/ipam_calculator.php:96
+msgid "Example:"
+msgstr "Ejemplo:"
+
+#: ../../enterprise/tools/ipam/ipam_calculator.php:70
+msgid "Bit mask"
+msgstr "Máscara de bit"
+
+#: ../../enterprise/tools/ipam/ipam_calculator.php:71
+msgid "Net mask"
+msgstr "Máscara de red"
+
+#: ../../enterprise/tools/ipam/ipam_calculator.php:74
+msgid "Mask format"
+msgstr "Formato de máscara"
+
+#: ../../enterprise/tools/ipam/ipam_calculator.php:105
+msgid "Calculate"
+msgstr "Calcular"
+
+#: ../../enterprise/tools/ipam/ipam_calculator.php:112
+msgid "Address field is empty"
+msgstr "El campo Dirección está vacío."
+
+#: ../../enterprise/tools/ipam/ipam_calculator.php:120
+msgid "Mask field is empty"
+msgstr "El campo Máscara está vacío."
+
+#: ../../enterprise/tools/ipam/ipam_calculator.php:139
+#: ../../enterprise/tools/ipam/ipam_calculator.php:152
+msgid "Incorrect address format"
+msgstr "Formato de dirección incorrecto"
+
+#: ../../enterprise/tools/ipam/ipam_calculator.php:144
+#: ../../enterprise/tools/ipam/ipam_calculator.php:157
+#: ../../enterprise/tools/ipam/ipam_calculator.php:162
+msgid "Incorrect mask format"
+msgstr "Formato de máscara incorrecto"
+
+#: ../../enterprise/tools/ipam/ipam_calculator.php:190
+msgid "Network mask"
+msgstr "Máscara de red"
+
+#: ../../enterprise/tools/ipam/ipam_calculator.php:211
+msgid "Network wildcard"
+msgstr "Red wildcard"
+
+#: ../../enterprise/tools/ipam/ipam_calculator.php:220
+msgid "Network address"
+msgstr "Dirección de red"
+
+#: ../../enterprise/tools/ipam/ipam_calculator.php:229
+msgid "Broadcast address"
+msgstr "Dirección de difusión"
+
+#: ../../enterprise/tools/ipam/ipam_calculator.php:238
+msgid "First valid IP"
+msgstr "Primera IP válida"
+
+#: ../../enterprise/tools/ipam/ipam_calculator.php:247
+msgid "Last valid IP"
+msgstr "Última IP válida"
+
+#: ../../enterprise/tools/ipam/ipam_calculator.php:257
+msgid "Hosts/Net"
+msgstr "Hosts/Red"
+
+#: ../../enterprise/tools/ipam/ipam_supernet_config.php:52
+#: ../../enterprise/tools/ipam/ipam_supernet_config.php:100
+msgid "There is no supernet name. Please introduce a name"
+msgstr "No hay nombre de superred. Añada un nombre."
+
+#: ../../enterprise/tools/ipam/ipam_supernet_config.php:56
+#: ../../enterprise/tools/ipam/ipam_supernet_config.php:104
+msgid "There is no supernet address. Please introduce a address"
+msgstr "No hay dirección de superred. Añada una dirección."
+
+#: ../../enterprise/tools/ipam/ipam_supernet_config.php:60
+#: ../../enterprise/tools/ipam/ipam_supernet_config.php:108
+msgid "There is no supernet mask. Please introduce a mask"
+msgstr "No hay máscara de superred. Añada una máscara"
+
+#: ../../enterprise/tools/ipam/ipam_supernet_config.php:64
+msgid "There is no valid address. Please introduce a address"
+msgstr "No hay dirección válida. Añada una dirección."
+
+#: ../../enterprise/tools/ipam/ipam_supernet_config.php:68
+msgid "There is no valid mask. Please introduce a mask"
+msgstr "No hay máscara válida. Añada una máscara"
+
+#: ../../enterprise/tools/ipam/ipam_supernet_config.php:83
+msgid "Supernet created"
+msgstr "Superred creada."
+
+#: ../../enterprise/tools/ipam/ipam_supernet_config.php:85
+msgid "Supernet not created"
+msgstr "Superred no creada"
+
+#: ../../enterprise/tools/ipam/ipam_supernet_config.php:89
+#: ../../enterprise/tools/ipam/ipam_supernet_config.php:135
+msgid "Supernet name exists in bbdd, please select other name"
+msgstr ""
+"El nombre de la superred existe en la base de datos, seleccione otro nombre."
+
+#: ../../enterprise/tools/ipam/ipam_supernet_config.php:129
+msgid "Supernet updated"
+msgstr "Superred actualizada"
+
+#: ../../enterprise/tools/ipam/ipam_supernet_config.php:131
+msgid "Supernet not updated"
+msgstr "Superred no actualizada"
+
+#: ../../enterprise/tools/ipam/ipam_supernet_config.php:156
+msgid "Could not be deleted, please select supernet"
+msgstr "No se ha podido borrar, seleccione una superred"
+
+#: ../../enterprise/tools/ipam/ipam_supernet_config.php:395
+#, php-format
+msgid "Successfully created %d networks"
+msgstr "Redes %d creadas con éxito"
+
+#: ../../enterprise/tools/ipam/ipam_supernet_config.php:399
+msgid "Failed to create networks"
+msgstr "Error al crear redes"
+
+#: ../../enterprise/tools/ipam/ipam_supernet_config.php:402
+msgid "Entered range address is not valid"
+msgstr "La dirección de intervalo introducida no es válida"
+
+#: ../../enterprise/tools/ipam/ipam_supernet_config.php:429
+msgid "Network name cannot be repeated in this supernet"
+msgstr "El nombre de la red no puede repetirse en la superred"
+
+#: ../../enterprise/tools/ipam/ipam_supernet_config.php:445
+msgid "No networks to be added to supernet"
+msgstr "No hay redes a agregar a la superred"
+
+#: ../../enterprise/tools/ipam/ipam_supernet_config.php:450
+msgid "supernet name could not be added, please select supernet"
+msgstr "No se ha podido añadir el nombre de la superred, seleccione superred"
+
+#: ../../enterprise/tools/ipam/ipam_supernet_config.php:479
+msgid "Could not be deleted, please select supernet and network"
+msgstr "No se ha podido eliminar, seleccione una red y una superred"
+
+#: ../../enterprise/tools/ipam/ipam_supernet_config.php:486
+#, php-format
+msgid "Failed to delete %d/%d networks from supernet"
+msgstr "Error al eliminar las redes %d/%d de la superred"
+
+#: ../../enterprise/tools/ipam/ipam_supernet_config.php:490
+msgid "Successfully deleted network from supernet"
+msgstr "Red eliminada correctamente de la superred"
+
+#: ../../enterprise/tools/ipam/ipam_supernet_config.php:492
+#, php-format
+msgid "Successfully deleted %d/%d networks from supernet"
+msgstr "Redes %d/%d eliminadas correctamente de la superred"
+
+#: ../../enterprise/tools/ipam/ipam_supernet_config.php:582
+msgid "Subnetting Mask"
+msgstr "Máscara de subred"
+
+#: ../../enterprise/tools/ipam/ipam_supernet_config.php:605
+#: ../../enterprise/tools/ipam/ipam_supernet_config.php:777
+#: ../../enterprise/tools/ipam/ipam_supernet_config.php:1064
+#: ../../enterprise/tools/ipam/ipam_list.php:129
+#: ../../enterprise/tools/ipam/ipam_list.php:595
+msgid "Site"
+msgstr "Sitio"
+
+#: ../../enterprise/tools/ipam/ipam_supernet_config.php:640
+#: ../../enterprise/tools/ipam/ipam_supernet_config.php:1313
+msgid "Update Supernet"
+msgstr "Actualizar superred"
+
+#: ../../enterprise/tools/ipam/ipam_supernet_config.php:647
+#: ../../enterprise/tools/ipam/ipam_supernet_config.php:1451
+msgid "New Supernet"
+msgstr "Nueva superred"
+
+#: ../../enterprise/tools/ipam/ipam_supernet_config.php:688
+#, php-format
+msgid "%s supernets created"
+msgstr "%s superredes creadas"
+
+#: ../../enterprise/tools/ipam/ipam_supernet_config.php:690
+msgid "supernets creation failed"
+msgstr "Error en la creación de superredes"
+
+#: ../../enterprise/tools/ipam/ipam_supernet_config.php:763
+#: ../../enterprise/tools/ipam/ipam_list.php:93
+msgid "Search filter by name, network address or description"
+msgstr "Filtro de búsqueda por nombre, dirección de red o descripción"
+
+#: ../../enterprise/tools/ipam/ipam_supernet_config.php:790
+msgid "Min. networks range"
+msgstr "Rango mínimo de redes"
+
+#: ../../enterprise/tools/ipam/ipam_supernet_config.php:793
+msgid "Max. networks range"
+msgstr "Alcance máx. de las redes"
+
+#: ../../enterprise/tools/ipam/ipam_supernet_config.php:1060
+msgid "Address / Masks"
+msgstr "Dirección / Máscaras"
+
+#: ../../enterprise/tools/ipam/ipam_supernet_config.php:1062
+msgid "Subnetting mask"
+msgstr "Máscara de subred"
+
+#: ../../enterprise/tools/ipam/ipam_supernet_config.php:1063
+msgid "Networks range"
+msgstr "Intervalo de red IP"
+
+#: ../../enterprise/tools/ipam/ipam_supernet_config.php:1237
+msgid "Delete network in supernet"
+msgstr "Eliminar red de superred"
+
+#: ../../enterprise/tools/ipam/ipam_supernet_config.php:1286
+msgid "Manage networks in supernet"
+msgstr "Administrar redes en superred"
+
+#: ../../enterprise/tools/ipam/ipam_supernet_config.php:1320
+msgid "Add network to supernet"
+msgstr "Añadir red a superred"
+
+#: ../../enterprise/tools/ipam/ipam_supernet_config.php:1323
+msgid "Next network"
+msgstr "Siguiente red"
+
+#: ../../enterprise/tools/ipam/ipam_supernet_config.php:1355
+msgid "Delete Supernet"
+msgstr "Borrar superred"
+
+#: ../../enterprise/tools/ipam/ipam_supernet_config.php:1444
+msgid "No Supernet found"
+msgstr "Superred no encontrada"
+
+#: ../../enterprise/tools/ipam/ipam.php:52 ../../extensions/files_repo.php:122
+#: ../../extensions/files_repo.php:210
+msgid "Operation view"
+msgstr "Vista de operación"
+
+#: ../../enterprise/tools/ipam/ipam.php:78
+#: ../../enterprise/tools/ipam/ipam.php:356
+msgid "Subnetworks calculator"
+msgstr "Calculadora de subredes"
+
+#: ../../enterprise/tools/ipam/ipam.php:96
+msgid "Vlan config"
+msgstr "Configuración de vlan"
+
+#: ../../enterprise/tools/ipam/ipam.php:114
+msgid "Vlan wizard"
+msgstr "Asistente de vlan"
+
+#: ../../enterprise/tools/ipam/ipam.php:133
+msgid "Supernet treeview"
+msgstr "Vísta de árbol de superredes"
+
+#: ../../enterprise/tools/ipam/ipam.php:152
+msgid "Network locations"
+msgstr "Ubicaciones de red"
+
+#: ../../enterprise/tools/ipam/ipam.php:171
+#: ../../enterprise/tools/ipam/ipam.php:411
+#: ../../enterprise/tools/ipam/ipam_editor.php:224
+#: ../../enterprise/include/ajax/ipam.ajax.php:418
+msgid "Sites"
+msgstr "Sitios"
+
+#: ../../enterprise/tools/ipam/ipam.php:196
+msgid "Vlan statistics"
+msgstr "Estadísticas de vlan"
+
+#: ../../enterprise/tools/ipam/ipam.php:216
+#: ../../enterprise/tools/ipam/ipam.php:381
+msgid "Supernet config"
+msgstr "Configuración de superred"
+
+#: ../../enterprise/tools/ipam/ipam.php:237
+#: ../../enterprise/tools/ipam/ipam.php:396
+msgid "Supernet statistics"
+msgstr "Estadísticas de superred"
+
+#: ../../enterprise/tools/ipam/ipam.php:257
+msgid "Supernet map"
+msgstr "Mapa de superred"
+
+#: ../../enterprise/tools/ipam/ipam.php:280
+#: ../../enterprise/tools/ipam/ipam_list.php:685
+msgid "Manage addresses"
+msgstr "Administrar direcciones"
+
+#: ../../enterprise/tools/ipam/ipam.php:300
+#: ../../enterprise/tools/ipam/ipam.php:361
+#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:692
+#: ../../godmode/massive/massive_operations.php:390
+#: ../../godmode/massive/massive_edit_plugins.php:921
+msgid "Massive operations"
+msgstr "Operaciones masivas"
+
+#: ../../enterprise/tools/ipam/ipam.php:320
+#: ../../enterprise/tools/ipam/ipam_list.php:694
+msgid "Addresses view"
+msgstr "Vista de direcciones"
+
+#: ../../enterprise/tools/ipam/ipam.php:352
+msgid "/tools/ipam/ipam_network.php"
+msgstr "/tools/ipam/ipam_network.php"
+
+#: ../../enterprise/tools/ipam/ipam.php:366
+msgid "VLAN Config"
+msgstr "Configuración de VLAN"
+
+#: ../../enterprise/tools/ipam/ipam.php:371
+msgid "VLAN Wizard"
+msgstr "Asistente de VLAN"
+
+#: ../../enterprise/tools/ipam/ipam.php:376
+msgid "VLAN Statistics"
+msgstr "Estadísticas VLAN"
+
+#: ../../enterprise/tools/ipam/ipam.php:386
+msgid "Network location config"
+msgstr "Configuración de ubicación de red"
+
+#: ../../enterprise/tools/ipam/ipam.php:391
+msgid "Supernet wizard"
+msgstr "Asistente de superredes"
+
+#: ../../enterprise/tools/ipam/ipam.php:401
+msgid "Supernet Map"
+msgstr "Mapa de superred"
+
+#: ../../enterprise/tools/ipam/ipam.php:406
+msgid "Supernet Treeview"
+msgstr "Superred creada"
+
+#: ../../enterprise/tools/ipam/ipam.php:432
+msgid "Operation View"
+msgstr "Vista de operación"
+
+#: ../../enterprise/tools/ipam/ipam.php:449 ../../godmode/menu.php:380
+msgid "Admin tools"
+msgstr "Herramientas administrativas"
+
+#: ../../enterprise/tools/ipam/ipam_supernet_treeview.php:94
+msgid "Found supernets"
+msgstr "Superredes encontradas"
+
+#: ../../enterprise/tools/ipam/ipam_list.php:97
+#: ../../enterprise/tools/ipam/ipam_list.php:588
+#: ../../enterprise/tools/ipam/ipam_editor.php:191
+#: ../../enterprise/include/ajax/ipam.ajax.php:385
+#: ../../enterprise/include/functions_ipam.php:1369
+#: ../../enterprise/include/functions_ipam.php:1983
+#: ../../godmode/events/event_responses.editor.php:123
+msgid "Location"
+msgstr "Ubicación"
+
+#: ../../enterprise/tools/ipam/ipam_list.php:434
+#, php-format
+msgid "%s networks created"
+msgstr "%s redes creadas"
+
+#: ../../enterprise/tools/ipam/ipam_list.php:436
+msgid "Networks creation failed"
+msgstr "Error en la creación de redes"
+
+#: ../../enterprise/tools/ipam/ipam_list.php:501
+msgid "No networks found"
+msgstr "No se ha encontrado ninguna red"
+
+#: ../../enterprise/tools/ipam/ipam_list.php:609
+#: ../../enterprise/tools/ipam/ipam_editor.php:243
+#: ../../enterprise/include/ajax/ipam.ajax.php:437
+msgid "Vrf"
+msgstr "Vrf"
+
+#: ../../enterprise/tools/ipam/ipam_list.php:625
+msgid "IPs"
+msgstr "IPs"
+
+#: ../../enterprise/tools/ipam/ipam_list.php:708
+msgid "Edit network"
+msgstr "Modificar red"
+
+#: ../../enterprise/tools/ipam/ipam_list.php:719
+msgid "Delete network"
+msgstr "Eliminar red"
+
+#: ../../enterprise/tools/ipam/ipam_sites.php:70
+msgid "Successfully saved"
+msgstr "Guardado correctamente"
+
+#: ../../enterprise/tools/ipam/ipam_sites.php:76
+#, php-format
+msgid "Failed to save site %s"
+msgstr "Error al guardar el sitio %s"
+
+#: ../../enterprise/tools/ipam/ipam_sites.php:132
+#, php-format
+msgid "Failed to delete site %s"
+msgstr "Error al eliminar el sitio %s"
+
+#: ../../enterprise/tools/ipam/ipam_editor.php:56
+msgid "Network not found"
+msgstr "Red no encontrada"
+
+#: ../../enterprise/tools/ipam/ipam_editor.php:122
+msgid "Format: IP/Mask"
+msgstr "Formato: IP/Máscara"
+
+#: ../../enterprise/tools/ipam/ipam_editor.php:136
+msgid "Examples"
+msgstr "Ejemplos"
+
+#: ../../enterprise/tools/ipam/ipam_editor.php:192
+#: ../../enterprise/include/ajax/ipam.ajax.php:386
+msgid "For example: Central Data Center"
+msgstr "Por ejemplo: Central General de Datos"
+
+#: ../../enterprise/tools/ipam/ipam_editor.php:225
+#: ../../enterprise/include/ajax/ipam.ajax.php:419
+msgid "For example: Pandora"
+msgstr "Por ejemplo: Pandora"
+
+#: ../../enterprise/tools/ipam/ipam_editor.php:244
+#: ../../enterprise/include/ajax/ipam.ajax.php:438
+msgid "Virtual Routing and Forwarding"
+msgstr "Enrutamiento y reenvío virtual"
+
+#: ../../enterprise/tools/ipam/ipam_editor.php:262
+#: ../../enterprise/include/ajax/ipam.ajax.php:456
+msgid "Include statistical monitors"
+msgstr "Incluir monitores estadísticos"
+
+#: ../../enterprise/tools/ipam/ipam_editor.php:277
+#: ../../enterprise/include/ajax/ipam.ajax.php:471
+msgid "Lightweight mode"
+msgstr "Modo ligero"
+
+#: ../../enterprise/tools/ipam/ipam_editor.php:278
+#: ../../enterprise/include/ajax/ipam.ajax.php:472
+msgid "Use quicker network scan"
+msgstr "Usar escaneado de red rápido"
+
+#: ../../enterprise/tools/ipam/ipam_editor.php:294
+#: ../../enterprise/include/ajax/ipam.ajax.php:488
+msgid "Target group for monitoring agent"
+msgstr "Grupo de destino para agente de monitorización"
+
+#: ../../enterprise/tools/ipam/ipam_editor.php:315
+#: ../../enterprise/include/ajax/ipam.ajax.php:509
+msgid "Scan interval"
+msgstr "Comprobar intervalo"
+
+#: ../../enterprise/tools/ipam/ipam_editor.php:316
+#: ../../enterprise/include/ajax/ipam.ajax.php:510
+msgid "0 for manually scan"
+msgstr "0 para comprobación manual"
+
+#: ../../enterprise/tools/ipam/ipam_editor.php:330
+#: ../../enterprise/include/ajax/ipam.ajax.php:524
+msgid "The list of users can manage the networks in the IPAM."
+msgstr "La lista de usuarios puede administrar las redes en el IPAM."
+
+#: ../../enterprise/tools/ipam/ipam_editor.php:331
+#: ../../enterprise/include/ajax/ipam.ajax.php:525
+msgid " Only the admin users can manage networks and edit the networks"
+msgstr ""
+" Solo los usuarios administradores pueden administrar redes y editar las redes"
+
+#: ../../enterprise/tools/ipam/ipam_editor.php:332
+#: ../../enterprise/include/ajax/ipam.ajax.php:526
+msgid "Operator users"
+msgstr "Usuarios del operador"
+
+#: ../../enterprise/tools/ipam/ipam_editor.php:338
+#: ../../enterprise/include/ajax/ipam.ajax.php:532
+msgid "All users"
+msgstr "Todos los usuarios"
+
+#: ../../enterprise/views/ncm/agent/details.php:89
+msgid "Script type"
+msgstr "Tipo de script"
+
+#: ../../enterprise/views/ncm/agent/details.php:91
+msgid "Execution last timestamp"
+msgstr "Última marca de tiempo de ejecución"
+
+#: ../../enterprise/views/ncm/agent/details.php:107
+msgid "Retrieve running configuration"
+msgstr "Recuperar la configuración en ejecución"
+
+#: ../../enterprise/views/ncm/agent/details.php:120
+#: ../../enterprise/views/ncm/agent/details.php:383
+msgid "Restore from backup"
+msgstr "Restaurar desde la copia de seguridad"
+
+#: ../../enterprise/views/ncm/agent/details.php:133
+#: ../../enterprise/views/ncm/agent/details.php:325
+#: ../../enterprise/include/lib/NetworkManager.php:85
+msgid "Retrieve firmware version"
+msgstr "Recuperar la versión del firmware"
+
+#: ../../enterprise/views/ncm/agent/details.php:172
+msgid "Running without a backup"
+msgstr "Ejecución sin copia de seguridad"
+
+#: ../../enterprise/views/ncm/agent/details.php:181
+msgid "Latest configuration retrieved is different from backed one"
+msgstr ""
+"La última configuración recuperada es diferente de la que tiene copia de "
+"seguridad"
+
+#: ../../enterprise/views/ncm/agent/details.php:184
+msgid "Backup up to date with latest configuration"
+msgstr "Copia de seguridad actualizada con la configuración más reciente"
+
+#: ../../enterprise/views/ncm/agent/details.php:208
+msgid "Configuration backup status"
+msgstr "Estado de la copia de seguridad de la configuración"
+
+#: ../../enterprise/views/ncm/agent/details.php:238
+msgid "Last on demand execution"
+msgstr "Última ejecución bajo demanda"
+
+#: ../../enterprise/views/ncm/agent/details.php:246
+#, php-format
+msgid "Customize %s"
+msgstr "Personalizar %s"
+
+#: ../../enterprise/views/ncm/agent/details.php:250
+msgid "Execute snippet"
+msgstr "Ejecutar snippet"
+
+#: ../../enterprise/views/ncm/agent/details.php:265
+#: ../../enterprise/meta/include/functions_wizard_meta.php:1542
+#: ../../enterprise/meta/include/functions_wizard_meta.php:1635
+#: ../../enterprise/meta/include/functions_wizard_meta.php:1760
+#: ../../enterprise/meta/include/functions_wizard_meta.php:1835
+#: ../../enterprise/meta/monitoring/wizard/wizard.module.web.php:103
+#: ../../enterprise/meta/monitoring/wizard/wizard.module.local.php:110
+#: ../../enterprise/meta/monitoring/wizard/wizard.agent.php:66
+#: ../../enterprise/meta/monitoring/wizard/wizard.module.network.php:122
+msgid "Preview"
+msgstr "Vista previa"
+
+#: ../../enterprise/views/ncm/agent/details.php:314
+#, php-format
+msgid "Current firmware version: %s"
+msgstr "Versión actual del firmware: %s"
+
+#: ../../enterprise/views/ncm/agent/details.php:339
+#, php-format
+msgid "Configuration backup present, %s"
+msgstr "Copia de seguridad de configuración presente, %s"
+
+#: ../../enterprise/views/ncm/agent/details.php:346
+msgid "There is no configuration backup"
+msgstr "No hay copia de seguridad de configuración"
+
+#: ../../enterprise/views/ncm/agent/details.php:359
+msgid "Backup latest retrieved configuration"
+msgstr "Copia de seguridad de la última configuración recuperada"
+
+#: ../../enterprise/views/ncm/agent/details.php:372
+#: ../../enterprise/include/class/ManageBackups.class.php:302
+#: ../../extensions/files_repo/files_repo_list.php:123
+msgid "Download"
+msgstr "Descargar"
+
+#: ../../enterprise/views/ncm/agent/details.php:401
+#, php-format
+msgid "Latest operation \"%s\" was executed %s ago with result: %s %s"
+msgstr "La última operación \"%s\" se ejecutó hace %s con el resultado: %s %s"
+
+#: ../../enterprise/views/ncm/agent/details.php:414
+#, php-format
+msgid "Script executions queued: %d"
+msgstr "Ejecuciones de scripts en cola: %d"
+
+#: ../../enterprise/views/ncm/agent/details.php:424
+#, php-format
+msgid "Configuration backup schedule: %s"
+msgstr "Programación de copia de seguridad de la configuración: %s"
+
+#: ../../enterprise/views/ncm/agent/details.php:441
+msgid "Device details"
+msgstr "Detalles del dispositivo"
+
+#: ../../enterprise/views/ncm/agent/details.php:483
+msgid "Configuration timestamp"
+msgstr "Marca de tiempo de configuración"
+
+#: ../../enterprise/views/ncm/agent/details.php:484
+msgid "Diff"
+msgstr "Diferencia"
+
+#: ../../enterprise/views/ncm/agent/details.php:490
+msgid "No changes with current backup"
+msgstr "Sin cambios en la copia de seguridad actual"
+
+#: ../../enterprise/views/ncm/agent/details.php:494
+msgid "This is the latest configuration retrieved"
+msgstr "Esta es la última configuración recuperada"
+
+#: ../../enterprise/views/ncm/agent/details.php:507
+#: ../../enterprise/views/ncm/agent/details.php:511
+msgid "This is the current backup."
+msgstr "Esta es la copia de seguridad actual."
+
+#: ../../enterprise/views/ncm/agent/details.php:523
+msgid "Review this configuration"
+msgstr "Revisar esta configuración"
+
+#: ../../enterprise/views/ncm/agent/details.php:534
+msgid "There is no backup to compare with"
+msgstr "No hay ninguna copia de seguridad con la que comparar"
+
+#: ../../enterprise/views/ncm/agent/details.php:545
+msgid "Backup this configuration"
+msgstr "Hacer copia de seguridad de esta configuración"
+
+#: ../../enterprise/views/ncm/agent/details.php:563
+msgid "Configurations registry"
+msgstr "Registro de configuraciones"
+
+#: ../../enterprise/views/ncm/agent/details.php:574
+msgid "Diff between: backup - selected"
+msgstr "Diferencia entre: copia de seguridad - seleccionada"
+
+#: ../../enterprise/views/ncm/agent/details.php:624
+msgid "Retrieve firmware version?"
+msgstr "¿Recuperar la versión del firmware?"
+
+#: ../../enterprise/views/ncm/agent/details.php:625
+msgid ""
+"This action will connect to the device to retrieve firmware version. Are you "
+"sure?"
+msgstr ""
+"Esta acción conectará con dispositivo para recuperar la versión del firmware. "
+"¿Está seguro?"
+
+#: ../../enterprise/views/ncm/agent/details.php:635
+msgid "Get running config?"
+msgstr "Obtener running-config"
+
+#: ../../enterprise/views/ncm/agent/details.php:636
+msgid ""
+"This action will connect to the device to retrieve latest configuration. Are "
+"you sure?"
+msgstr ""
+"Esta acción se conectará al dispositivo para recuperar la configuración más "
+"reciente. ¿Estás seguro?"
+
+#: ../../enterprise/views/ncm/agent/details.php:647
+msgid "Backup latest config?"
+msgstr "¿Copia de seguridad de la última configuración?"
+
+#: ../../enterprise/views/ncm/agent/details.php:648
+msgid ""
+"This action will overwrite current backup to use latest retrieved "
+"configuration. Are you sure?"
+msgstr ""
+"Esta acción sobrescribirá la copia de seguridad actual para utilizar la última "
+"configuración recuperada. ¿Estás seguro?"
+
+#: ../../enterprise/views/ncm/agent/details.php:656
+msgid "Backup target config?"
+msgstr "¿Configuración de destino de copia de seguridad?"
+
+#: ../../enterprise/views/ncm/agent/details.php:657
+msgid ""
+"This action will overwrite current backup to use selected configuration. Are "
+"you sure?"
+msgstr ""
+"Esta acción sobreescribirá la copia de seguridad actual para utilizar la "
+"configuración seleccionada. ¿Está seguro?"
+
+#: ../../enterprise/views/ncm/agent/details.php:668
+msgid "Restore device configuration?"
+msgstr "¿Restaurar la configuración del dispositivo?"
+
+#: ../../enterprise/views/ncm/agent/details.php:669
+msgid ""
+"This action will overwrite device configuration with latest backup. Are you "
+"sure?"
+msgstr ""
+"Esta acción sobrescribirá la configuración del dispositivo con la copia de "
+"seguridad más reciente. ¿Estás seguro?"
+
+#: ../../enterprise/views/ncm/agent/details.php:688
+msgid "Customize script execution"
+msgstr "Personalizar la ejecución del script"
+
+#: ../../enterprise/views/ncm/agent/manage.php:57
+msgid "For instance Cisco"
+msgstr "Por ejemplo, Cisco"
+
+#: ../../enterprise/views/ncm/agent/manage.php:59
+msgid "Device manufacturer"
+msgstr "Fabricante del dispositivo"
+
+#: ../../enterprise/views/ncm/agent/manage.php:87
+msgid "For instance Catalyst 9400"
+msgstr "Por ejemplo, Catalyst 9400"
+
+#: ../../enterprise/views/ncm/agent/manage.php:89
+msgid "Device model"
+msgstr "Modelo del dispositivo"
+
+#: ../../enterprise/views/ncm/agent/manage.php:102
+#: ../../godmode/agentes/module_manager_editor_network.php:482
+msgid "Connection method"
+msgstr "Modo de conexión"
+
+#: ../../enterprise/views/ncm/agent/manage.php:107
+msgid "connect using SSH"
+msgstr "conectarse mediante SSH"
+
+#: ../../enterprise/views/ncm/agent/manage.php:108
+msgid "connect using telnet"
+msgstr "conectarse mediante telnet"
+
+#: ../../enterprise/views/ncm/agent/manage.php:131
+msgid "Credentials to access device"
+msgstr "Credenciales para acceder al dispositivo"
+
+#: ../../enterprise/views/ncm/agent/manage.php:144
+msgid "Credentials to administrate device"
+msgstr "Credenciales para administrar el dispositivo"
+
+#: ../../enterprise/views/ncm/agent/manage.php:177
+msgid "NCM template to be used"
+msgstr "Plantilla NCM que se utilizará"
+
+#: ../../enterprise/views/ncm/agent/manage.php:190
+msgid "Backup schedule (if defined)"
+msgstr "Programación de copia de seguridad (si se define)"
+
+#: ../../enterprise/views/ncm/agent/manage.php:195
+msgid "No schedule"
+msgstr "No programado"
+
+#: ../../enterprise/views/ncm/agent/manage.php:197
+msgid "Once a day"
+msgstr "Una vez al día"
+
+#: ../../enterprise/views/ncm/agent/manage.php:198
+msgid "Once a week"
+msgstr "Una vez a la semana"
+
+#: ../../enterprise/views/ncm/agent/manage.php:199
+msgid "Once a month"
+msgstr "Una vez al mes"
+
+#: ../../enterprise/views/ncm/agent/manage.php:218
+msgid "Launch event if configuration changes"
+msgstr "Iniciar evento si cambia la configuración"
+
+#: ../../enterprise/views/ncm/agent/manage.php:243
+msgid "NCM state"
+msgstr "Estado de NCM"
+
+#: ../../enterprise/views/ncm/agent/modalOnDemandScript.php:63
+msgid "Select firmware file to update to"
+msgstr "Seleccione el archivo de firmware al que desea actualizar"
+
+#: ../../enterprise/views/ncm/agent/modalOnDemandScript.php:75
+msgid "Transfer from url"
+msgstr "Transferir desde url"
+
+#: ../../enterprise/views/ncm/agent/modalOnDemandScript.php:86
+msgid "Target file name"
+msgstr "Nombre del archivo de destino"
+
+#: ../../enterprise/views/ncm/agent/modalOnDemandScript.php:105
+msgid "Customize execution"
+msgstr "Personalizar la ejecución"
+
+#: ../../enterprise/views/ncm/snippets/edit.php:42
+#: ../../enterprise/views/ncm/snippets/list.php:32
+msgid "Snippets"
+msgstr "Snippets"
+
+#: ../../enterprise/views/ncm/snippets/edit.php:73
+#: ../../enterprise/views/ncm/firmwares/edit.php:72
+#: ../../enterprise/views/ncm/templates/edit.php:73
+msgid "Script not defined"
+msgstr "Script no definido"
+
+#: ../../enterprise/views/ncm/snippets/edit.php:91
+#: ../../enterprise/views/ncm/templates/edit.php:160
+#: ../../enterprise/views/ncm/templates/edit.php:188
+#: ../../enterprise/views/ncm/templates/edit.php:216
+#: ../../enterprise/views/ncm/templates/edit.php:244
+#: ../../enterprise/views/ncm/templates/edit.php:271
+#: ../../enterprise/views/ncm/templates/edit.php:298
+msgid "Script details"
+msgstr "Detalles del script"
+
+#: ../../enterprise/views/ncm/firmwares/edit.php:41
+msgid "Firmware"
+msgstr "Firmware"
+
+#: ../../enterprise/views/ncm/firmwares/edit.php:101
+msgid ""
+"Comma separated, a vendors list compatible with scripts defined within "
+"firmware."
+msgstr ""
+"Separado por comas, una lista de proveedores compatible con scripts definidos "
+"dentro del firmware."
+
+#: ../../enterprise/views/ncm/firmwares/edit.php:106
+#: ../../enterprise/views/ncm/vendors/edit.php:35
+#: ../../enterprise/views/ncm/vendors/list.php:32
+#: ../../enterprise/views/ncm/templates/edit.php:107
+#: ../../enterprise/views/ncm/templates/list.php:74
+msgid "Vendors"
+msgstr "Fabricantes"
+
+#: ../../enterprise/views/ncm/firmwares/edit.php:129
+msgid ""
+"Comma separated, a model list compatible with scripts defined within firmware."
+msgstr ""
+"Separado por comas, una lista de modelos compatibles con scripts definidos "
+"dentro del firmware."
+
+#: ../../enterprise/views/ncm/firmwares/edit.php:133
+#: ../../enterprise/views/ncm/firmwares/list.php:76
+#: ../../enterprise/views/ncm/templates/edit.php:134
+#: ../../enterprise/views/ncm/templates/list.php:75
+#: ../../enterprise/views/ncm/models/list.php:32
+msgid "Models"
+msgstr "Modelos"
+
+#: ../../enterprise/views/ncm/firmwares/edit.php:149
+msgid "Current binary file will be overwritten, are you sure?"
+msgstr "El archivo binario actual se sobrescribirá, ¿está seguro?"
+
+#: ../../enterprise/views/ncm/firmwares/edit.php:154
+msgid "Binary file"
+msgstr "Archivo binario"
+
+#: ../../enterprise/views/ncm/firmwares/list.php:32
+msgid "Firmwares"
+msgstr "Firmwares"
+
+#: ../../enterprise/views/ncm/firmwares/list.php:75
+#: ../../enterprise/views/ncm/devices/list.php:118
+#: ../../enterprise/views/ncm/models/edit.php:88
+#: ../../enterprise/views/ncm/models/list.php:72
+msgid "Vendor"
+msgstr "Fabricante"
+
+#: ../../enterprise/views/ncm/vendors/edit.php:89
+msgid "icon"
+msgstr "icono"
+
+#: ../../enterprise/views/ncm/devices/list.php:32
+#: ../../enterprise/views/ncm/templates/edit.php:42
+#: ../../enterprise/views/ncm/models/edit.php:37
+msgid "Devices"
+msgstr "Dispositivos"
+
+#: ../../enterprise/views/ncm/devices/list.php:69
+msgid ""
+"WARNING: This is a new feature and is still at an early stage. It is available "
+"with limited features, use it with caution and send us your feedback to "
+"improve these current capabilities."
+msgstr ""
+"ADVERTENCIA: Esta es una nueva característica y todavía se encuentra en una "
+"etapa temprana. Está disponible con funciones limitadas, úselo con precaución "
+"y envíenos sus comentarios para mejorar estas capacidades actuales."
+
+#: ../../enterprise/views/ncm/devices/list.php:72
+msgid ""
+"Network configuration manager is used to keep configurations and software "
+"versions of any network device in your infrastructure under your control."
+msgstr ""
+"El administrador de configuración de red se utiliza para mantener las "
+"configuraciones y versiones de software de cualquier dispositivo de red en su "
+"infraestructura bajo su control."
+
+#: ../../enterprise/views/ncm/devices/list.php:77
+msgid ""
+"To start using it, navigatenavigate to your desired agent, tab Network Config "
+"Manager, and enable the ncm features,\n"
+"        you will be asked for the vendor and model of the device."
+msgstr ""
+"Para comenzar a usarlo, navegue por el agente que desee, seleccione "
+"Administrador de configuración de red y habilite las funciones de ncm,\n"
+"        se le pedirá el proveedor y el modelo del dispositivo."
+
+#: ../../enterprise/views/ncm/devices/list.php:84
+msgid "Define a NCM template"
+msgstr "Definir una plantilla de NCM"
+
+#: ../../enterprise/views/ncm/devices/list.php:87
+msgid "Configure agents to use NCM templates"
+msgstr "Configurar agentes para usar plantillas NCM"
+
+#: ../../enterprise/views/ncm/devices/list.php:119
+msgid "Model"
+msgstr "Modelo"
+
+#: ../../enterprise/views/ncm/devices/list.php:121
+msgid "Last queued task"
+msgstr "Última tarea en cola"
+
+#: ../../enterprise/views/ncm/devices/list.php:123
+#: ../../enterprise/include/functions_tasklist.php:158
+#: ../../enterprise/godmode/reporting/reporting_builder.template.php:520
+#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:136
+#: ../../enterprise/godmode/alerts/alert_inventory_list.php:224
+#: ../../enterprise/godmode/policies/policy_alerts.php:354
+#: ../../godmode/massive/massive_copy_modules.php:185
+#: ../../godmode/wizards/DiscoveryTaskList.class.php:612
+#: ../../godmode/alerts/alert_list.list.php:485
+msgid "Operations"
+msgstr "Operaciones"
+
+#: ../../enterprise/views/ncm/templates/edit.php:102
+msgid ""
+"Comma separated, a vendors list compatible with scripts defined within "
+"template."
+msgstr ""
+"Separado por comas, una lista de proveedores compatible con scripts definidos "
+"dentro de la plantilla."
+
+#: ../../enterprise/views/ncm/templates/edit.php:130
+msgid ""
+"Comma separated, a model list compatible with scripts defined within template."
+msgstr ""
+"Separado por comas, una lista de modelos compatibles con scripts definidos "
+"dentro de la plantilla."
+
+#: ../../enterprise/views/ncm/templates/edit.php:148
+msgid "This script will be used to test devices availability"
+msgstr ""
+"Este script se utilizará para probar la disponibilidad de los dispositivos"
+
+#: ../../enterprise/views/ncm/templates/edit.php:153
+msgid "Script: Test"
+msgstr "Script: prueba"
+
+#: ../../enterprise/views/ncm/templates/edit.php:176
+msgid "This script will be used to retrieve configuration from devices"
+msgstr ""
+"Este script se utilizará para recuperar la configuración de los dispositivos"
+
+#: ../../enterprise/views/ncm/templates/edit.php:181
+msgid "Script: Get configuration"
+msgstr "Script: obtener configuración"
+
+#: ../../enterprise/views/ncm/templates/edit.php:204
+msgid ""
+"This script will be used to apply configuration, previously backed up, to "
+"devices"
+msgstr ""
+"Este script se utilizará para aplicar la configuración, previamente "
+"respaldada, a los dispositivos"
+
+#: ../../enterprise/views/ncm/templates/edit.php:209
+msgid "Script: set configuration"
+msgstr "Script: establecer la configuración"
+
+#: ../../enterprise/views/ncm/templates/edit.php:232
+msgid "This script will be used to retrieve firmware version from devices"
+msgstr ""
+"Este script se utilizará para recuperar la versión del firmware de los "
+"dispositivos"
+
+#: ../../enterprise/views/ncm/templates/edit.php:237
+msgid "Script: get firmware"
+msgstr "Script: obtener firmware"
+
+#: ../../enterprise/views/ncm/templates/edit.php:259
+msgid "This script will be used to upgrade firmware version of the devices"
+msgstr ""
+"Este script se utilizará para actualizar la versión de firmware de los "
+"dispositivos"
+
+#: ../../enterprise/views/ncm/templates/edit.php:264
+msgid "Script: set firmware"
+msgstr "Script: establecer firmware"
+
+#: ../../enterprise/views/ncm/templates/edit.php:286
+msgid "This script will be executed on the devices when selecting CUSTOM task"
+msgstr ""
+"Este script se ejecutará en los dispositivos al seleccionar la tarea CUSTOM"
+
+#: ../../enterprise/views/ncm/templates/edit.php:291
+msgid "Script: custom task"
+msgstr "Script: tarea personalizada"
+
+#: ../../enterprise/views/ncm/templates/list.php:76
+msgid "Scripts defined"
+msgstr "Scripts definidos"
+
+#: ../../enterprise/views/cluster/edit.php:41
+#: ../../enterprise/views/cluster/edit.php:68
+#: ../../enterprise/views/cluster/view.php:44
+#: ../../enterprise/views/cluster/view.php:63
+msgid "Cluster list"
+msgstr "Lista de clústers"
+
+#: ../../enterprise/views/cluster/edit.php:57
+msgid "cluster "
+msgstr "clúster "
+
+#: ../../enterprise/views/cluster/edit.php:88
+msgid "View this cluster"
+msgstr "Ver clúster"
+
+#: ../../enterprise/views/cluster/view.php:50
+#: ../../enterprise/views/cluster/view.php:81
+msgid "Cluster details"
+msgstr "Detalles del clúster"
+
+#: ../../enterprise/views/cluster/view.php:74
+msgid "Edit this cluster"
+msgstr "Editar el clúster"
+
+#: ../../enterprise/views/cluster/view.php:223
+msgid "Force cluster status calculation"
+msgstr "Forzar cálculo del estado del clúster"
+
+#: ../../enterprise/views/cluster/view.php:314
+msgid "Cluster agent"
+msgstr "Agente del clúster"
+
+#: ../../enterprise/views/cluster/list.php:122
+msgid "New cluster"
+msgstr "Nuevo clúster"
+
+#: ../../enterprise/operation/log/elasticsearch_interface.php:31
+#: ../../enterprise/operation/log/log_viewer.php:377
+#: ../../enterprise/operation/log/log_viewer.php:417
+#: ../../enterprise/operation/menu.php:181
+#: ../../enterprise/meta/general/main_menu.php:247
+#: ../../enterprise/meta/general/main_header.php:143
+#: ../../enterprise/meta/include/functions_meta.php:293
+#: ../../enterprise/meta/advanced/metasetup.php:80
+#: ../../enterprise/meta/advanced/metasetup.php:223
+msgid "Log viewer"
+msgstr "Visor de logs"
+
+#: ../../enterprise/operation/log/elasticsearch_interface.php:39
+#: ../../enterprise/operation/log/log_viewer.php:391
+#: ../../enterprise/operation/menu.php:211
+msgid "Elasticsearch Interface"
+msgstr "Interfaz de ElasticSearch"
+
+#: ../../enterprise/operation/log/elasticsearch_interface.php:49
+msgid ""
+"This is a view to interface with Elasticsearch directly from WEB console. \n"
+"Please note that you can damage your Elasticsearch if you don`t know exactly "
+"what are you are doing. \n"
+"This view is intended to be used only by users with a knowledge of "
+"Elasticsearch"
+msgstr ""
+"Esta es una vista de la interfaz de ElasticSearch directamente desde la "
+"consola WEB. \n"
+"Tenga en cuenta que puede provocar fallos en ElasticSearch si no sabe lo que "
+"está haciendo con exactitud. \n"
+"Esta vista esta destinada a aquellos usuarios que conocen bien ElasticSearch"
+
+#: ../../enterprise/operation/log/log_viewer.php:405
+#: ../../enterprise/operation/log/log_viewer.php:424
+#: ../../enterprise/operation/log/log_viewer.php:435
+msgid "Log sources"
+msgstr "Fuentes de log"
+
+#: ../../enterprise/operation/log/log_viewer.php:477
+#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:189
+#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:244
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3504
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3579
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3735
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3806
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:4240
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:4385
+msgid "Exact match"
+msgstr "Coincidencia exacta"
+
+#: ../../enterprise/operation/log/log_viewer.php:478
+msgid "All words"
+msgstr "Todas las palabras"
+
+#: ../../enterprise/operation/log/log_viewer.php:479
+msgid "Any word"
+msgstr "Cualquier palabra"
+
+#: ../../enterprise/operation/log/log_viewer.php:482
+msgid "Search mode"
+msgstr "Modo de búsqueda"
+
+#: ../../enterprise/operation/log/log_viewer.php:529
+msgid "Full context"
+msgstr "Contexto completo"
+
+#: ../../enterprise/operation/log/log_viewer.php:667
+#: ../../enterprise/operation/log/log_viewer.php:668
+msgid "Edit sources"
+msgstr "Editar fuentes"
+
+#: ../../enterprise/operation/log/log_viewer.php:711
+msgid "Show log entries"
+msgstr "Mostrar entradas de log"
+
+#: ../../enterprise/operation/log/log_viewer.php:712
+msgid "Graph log results"
+msgstr "Resultados de logs de gráficas"
+
+#: ../../enterprise/operation/log/log_viewer.php:714
+msgid "Display mode"
+msgstr "Modo de visualización"
+
+#: ../../enterprise/operation/log/log_viewer.php:727
+msgid "Use capture model"
+msgstr "Usar modelo de captura"
+
+#: ../../enterprise/operation/log/log_viewer.php:757
+msgid "Create new model"
+msgstr "Crear nuevo modelo"
+
+#: ../../enterprise/operation/log/log_viewer.php:761
+#: ../../godmode/reporting/graph_builder.main.php:220
+msgid "Horizontal bars"
+msgstr "Barras horizontales"
+
+#: ../../enterprise/operation/log/log_viewer.php:762
+#: ../../godmode/reporting/graph_builder.main.php:221
+msgid "Vertical bars"
+msgstr "Barras verticales"
+
+#: ../../enterprise/operation/log/log_viewer.php:764
+msgid "Graph type"
+msgstr "Tipo de gráfica"
+
+#: ../../enterprise/operation/log/log_viewer.php:779
+msgid "Advanced options "
+msgstr "Opciones avanzadas "
+
+#: ../../enterprise/operation/log/log_viewer.php:899
+msgid ""
+"The maximum limit of rows has been exceeded. Please enter an email to send the "
+"csv file"
+msgstr ""
+"El límite máximo de filas se ha superado. Añada un correo electrónico para "
+"enviar el archivo CSV"
+
+#: ../../enterprise/operation/log/log_viewer.php:901
+msgid "e-mail address"
+msgstr "dirección de correo electrónico"
+
+#: ../../enterprise/operation/log/log_viewer.php:904
+msgid ""
+"WARNING: If your email size exceeds your mail attachment size limit, the file "
+"will be saved in the local attachment folder."
+msgstr ""
+"ADVERTENCIA: Si el tamaño del correo electrónico supera el límite de tamaño de "
+"archivo adjunto, el archivo se guardará en la carpeta de adjuntos local."
+
+#: ../../enterprise/operation/log/log_viewer.php:1022
+msgid "The start date cannot be greater than the end date"
+msgstr "La fecha de inicio no puede ser posterior a la fecha de finalización."
+
+#: ../../enterprise/operation/log/log_viewer.php:1450
+msgid "Add new capture model"
+msgstr "Añadir nuevo modelo de captura"
+
+#: ../../enterprise/operation/log/log_viewer.php:1453
+msgid "Edit capture model"
+msgstr "Editar modelo de captura"
+
+#: ../../enterprise/operation/log/log_viewer.php:1536
+msgid "Error create new model"
+msgstr "Error al crear nuevo modelo"
+
+#: ../../enterprise/operation/log/log_viewer.php:1563
+msgid "Error delete model"
+msgstr "Error al borrar modelo"
+
+#: ../../enterprise/operation/log/log_viewer.php:1609
+msgid "Error update model"
+msgstr "Error al actualizar modelo"
+
+#: ../../enterprise/operation/services/services.treeview_services.php:111
+#: ../../enterprise/operation/services/services.list.php:284
+#: ../../enterprise/operation/services/services.table_services.php:206
+msgid "Show only favourites"
+msgstr "Mostrar solo favoritos"
+
+#: ../../enterprise/operation/services/services.treeview_services.php:151
+msgid "No favourite services defined."
+msgstr "No hay servicios favoritos definidos."
+
+#: ../../enterprise/operation/services/services.treeview_services.php:153
+#: ../../enterprise/operation/services/services.list.php:447
+#: ../../enterprise/operation/services/services.list.php:456
+#: ../../enterprise/operation/services/services.table_services.php:359
+#: ../../enterprise/operation/services/services.table_services.php:365
+msgid "No services defined."
+msgstr "No hay servicios definidos"
+
+#: ../../enterprise/operation/services/services.treeview_services.php:181
+#: ../../enterprise/operation/services/services.list.php:719
+#: ../../enterprise/operation/services/services.table_services.php:450
+msgid "Create Service"
+msgstr "Crear servicio"
+
+#: ../../enterprise/operation/services/services.treeview_services.php:247
+#: ../../godmode/groups/group_list.php:1035
+msgid "Found groups"
+msgstr "Grupos encontrados"
+
+#: ../../enterprise/operation/services/services.service.php:55
+#: ../../enterprise/operation/services/services.service_map.php:62
+#: ../../enterprise/godmode/services/services.service.php:303
+#: ../../enterprise/godmode/services/services.service.php:346
+msgid "Not found"
+msgstr "No encontrado"
+
+#: ../../enterprise/operation/services/services.service.php:90
+msgid "No Services"
+msgstr "Sin servicios"
+
+#: ../../enterprise/operation/services/services.service.php:203
+#: ../../enterprise/operation/services/services.list.php:586
+msgid "SLA graph"
+msgstr "Gráfico SLA"
+
+#: ../../enterprise/operation/services/services.service.php:227
+msgid "List of elements"
+msgstr "Lista de elementos"
+
+#: ../../enterprise/operation/services/services.list.php:62
+msgid "List of services"
+msgstr "de los Servicios"
+
+#: ../../enterprise/operation/services/services.list.php:100
+msgid "Services successfully deleted"
+msgstr "Servicios eliminados correctamente"
+
+#: ../../enterprise/operation/services/services.list.php:101
+#, php-format
+msgid "Error while deleting services: %s"
+msgstr "Error al eliminar servicios: %s"
+
+#: ../../enterprise/operation/services/services.list.php:104
+#: ../../enterprise/include/functions_visual_map.php:683
+msgid "No services selected"
+msgstr "Ningún servicio seleccionado"
+
+#: ../../enterprise/operation/services/services.list.php:118
+msgid "Service deleted successfully"
+msgstr "Servicio eliminado correctamente"
+
+#: ../../enterprise/operation/services/services.list.php:119
+#, php-format
+msgid "Error deleting service %s"
+msgstr "Error al eliminar el servicio %s"
+
+#: ../../enterprise/operation/services/services.list.php:127
+msgid "Service forced successfully"
+msgstr "Servicio forzado correctamente"
+
+#: ../../enterprise/operation/services/services.list.php:128
+msgid "Error service forced"
+msgstr "Error al forzar el servicio"
+
+#: ../../enterprise/operation/services/services.list.php:276
+#: ../../enterprise/operation/services/services.table_services.php:198
+#: ../../enterprise/godmode/services/services.service.php:651
+#: ../../enterprise/godmode/massive/massive_create_services.php:699
+msgid "Smart"
+msgstr "Inteligente"
+
+#: ../../enterprise/operation/services/services.list.php:278
+#: ../../enterprise/operation/services/services.table_services.php:200
+#: ../../enterprise/godmode/servers/HA_cluster.php:175
+#: ../../enterprise/godmode/services/services.service.php:643
+#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:880
+#: ../../enterprise/godmode/massive/massive_create_services.php:690
+#: ../../godmode/massive/massive_edit_modules.php:933
+#: ../../godmode/alerts/alert_view.php:407
+msgid "Mode"
+msgstr "Modo"
+
+#: ../../enterprise/operation/services/services.list.php:298
+#: ../../enterprise/operation/services/services.table_services.php:220
+msgid "Show only root services"
+msgstr "Mostrar solo los servicios root"
+
+#: ../../enterprise/operation/services/services.list.php:590
+msgid "Status graph"
+msgstr "Gráfica de estados"
+
+#: ../../enterprise/operation/services/services.table_services.php:45
+#: ../../godmode/groups/group_list.php:355
+msgid "Table view"
+msgstr "Vista de tabla"
+
+#: ../../enterprise/operation/services/services.php:90
+#: ../../enterprise/operation/services/services.php:182
+#: ../../enterprise/godmode/services/services.elements.php:697
+#: ../../enterprise/godmode/services/services.service.php:388
+msgid "Services list"
+msgstr "Lista de servicios"
+
+#: ../../enterprise/operation/services/services.php:105
+#: ../../enterprise/godmode/services/services.elements.php:711
+#: ../../enterprise/godmode/services/services.service.php:402
+msgid "Config Service"
+msgstr "Configurar servicios"
+
+#: ../../enterprise/operation/services/services.php:123
+#: ../../enterprise/godmode/services/services.elements.php:728
+#: ../../enterprise/godmode/services/services.service.php:419
+msgid "Config Elements"
+msgstr "Configurar elementos"
+
+#: ../../enterprise/operation/services/services.php:136
+#: ../../enterprise/godmode/services/services.elements.php:740
+#: ../../enterprise/godmode/services/services.service.php:431
+msgid "Bulk service elements operations"
+msgstr "Operaciones de elementos de servicio masivos"
+
+#: ../../enterprise/operation/services/services.php:152
+#: ../../enterprise/godmode/services/services.elements.php:755
+#: ../../enterprise/godmode/services/services.service.php:446
+msgid "View Service"
+msgstr "Ver servicio"
+
+#: ../../enterprise/operation/services/services.php:197
+msgid "Service table view"
+msgstr "Vista de tabla de servicios"
+
+#: ../../enterprise/operation/services/services.php:212
+msgid "Service tree view"
+msgstr "Vista de árbol de servicios"
+
+#: ../../enterprise/operation/services/services.php:229
+msgid "Bulk creation"
+msgstr "Creación masiva"
+
+#: ../../enterprise/operation/reporting/custom_reporting.php:14
+#: ../../enterprise/godmode/reporting/reporting_builder.template.php:503
+msgid "PDF"
+msgstr "PDF"
+
+#: ../../enterprise/operation/reporting/custom_reporting.php:16
+#: ../../enterprise/godmode/reporting/reporting_builder.template.php:504
+msgid "JSON"
+msgstr "JSON"
+
+#: ../../enterprise/operation/reporting/custom_reporting.php:72
+#: ../../enterprise/godmode/reporting/reporting_builder.template.php:589
+msgid "Export to JSON"
+msgstr "Exportar a JSON"
+
+#: ../../enterprise/operation/reporting/custom_reporting.php:90
+#: ../../enterprise/operation/reporting/custom_reporting.php:164
+#: ../../enterprise/include/functions_reporting.php:8218
+msgid "Send by email"
+msgstr "Enviar por correo electrónico"
+
+#: ../../enterprise/operation/reporting/custom_reporting.php:101
+#: ../../enterprise/include/functions_reporting.php:8150
+msgid "ID Report"
+msgstr "ID Informe"
+
+#: ../../enterprise/operation/reporting/custom_reporting.php:124
+#: ../../enterprise/include/functions_cron.php:186
+#: ../../enterprise/include/functions_cron.php:236
+#: ../../enterprise/include/functions_reporting.php:8178
+msgid "Send to emails (separated by comma)"
+msgstr "Enviar a emails (separados por comas)"
+
+#: ../../enterprise/operation/reporting/custom_reporting.php:144
+#: ../../enterprise/operation/reporting/custom_reporting.php:158
+#: ../../enterprise/include/functions_cron.php:800
+#: ../../enterprise/include/functions_cron.php:833
+#: ../../enterprise/include/functions_reporting.php:8198
+#: ../../enterprise/include/functions_reporting.php:8212
+msgid "This is an optional field"
+msgstr "Este campo es opcional"
+
+#: ../../enterprise/operation/reporting/custom_reporting.php:200
+#: ../../enterprise/include/functions_reporting.php:8306
+msgid "Send by email "
+msgstr "Enviar por correo electrónico "
+
+#: ../../enterprise/operation/menu.php:32
+msgid "Cluster View"
+msgstr "Visor de clústers"
+
+#: ../../enterprise/operation/menu.php:45
+#: ../../enterprise/godmode/reporting/aws_view.php:106
+#: ../../enterprise/godmode/reporting/aws_view.php:139
+msgid "AWS View"
+msgstr "Vista AWS"
+
+#: ../../enterprise/operation/menu.php:143
+msgid "Transactional map"
+msgstr "Mapa transaccional"
+
+#: ../../enterprise/operation/menu.php:160
+#: ../../enterprise/godmode/reporting/mysql_builder.php:79
+#: ../../enterprise/godmode/reporting/mysql_builder.php:206
+msgid "Custom SQL"
+msgstr "SQL personalizado"
+
+#: ../../enterprise/operation/menu.php:170
+#: ../../enterprise/operation/snmpconsole/snmp_view.php:82
+#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor_form.php:24
+#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:44
+msgid "SNMP trap editor"
+msgstr "Editor de traps SNMP"
+
+#: ../../enterprise/operation/menu.php:191
+#: ../../enterprise/operation/agentes/tag_view.php:41
+msgid "Tag view"
+msgstr "Visor de etiquetas"
+
+#: ../../enterprise/operation/menu.php:200
+#: ../../enterprise/include/class/ManageBackups.class.php:121
+msgid "DB Backup Manager"
+msgstr "Backup Manager de la BBDD"
+
+#: ../../enterprise/operation/agentes/policy_view.php:38
+msgid "This agent has no policy assigned"
+msgstr "Este agente no tiene ninguna política asignada."
+
+#: ../../enterprise/operation/agentes/policy_view.php:58
+#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:38
+#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:38
+#: ../../enterprise/godmode/massive/massive_edit_tags_policy.php:40
+#: ../../enterprise/godmode/massive/massive_add_alerts_policy.php:38
+#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:40
+#: ../../enterprise/godmode/massive/massive_tags_edit_policy.php:40
+#: ../../enterprise/godmode/policies/policy_agents.php:326
+#: ../../enterprise/godmode/policies/policy_queue.php:218
+#: ../../enterprise/godmode/policies/policy_linking.php:117
+#: ../../enterprise/godmode/policies/policy_modules.php:476
+#: ../../enterprise/godmode/policies/policies.php:268
+#: ../../enterprise/godmode/policies/policy_external_alerts.php:309
+#: ../../enterprise/godmode/policies/configure_policy.php:81
+#: ../../enterprise/godmode/policies/policy_inventory_modules.php:91
+#: ../../enterprise/godmode/policies/policy_alerts.php:64
+#: ../../enterprise/godmode/policies/policy_collections.php:50
+#: ../../enterprise/godmode/policies/policy_plugins.php:38
+#, php-format
+msgid ""
+"This node is configured with centralized mode. All policies information is "
+"read only. Go to %s to manage it."
+msgstr ""
+"Este nodo esta configurado con el modo centralizado. Toda la información de "
+"las políticas está en modo lectura. Vaya a %s para administrarlo."
+
+#: ../../enterprise/operation/agentes/policy_view.php:69
+#: ../../enterprise/godmode/policies/policy_agents.php:856
+#: ../../enterprise/godmode/policies/policy_agents.php:1371
+msgid "Last application"
+msgstr "Última aplicación"
+
+#: ../../enterprise/operation/agentes/policy_view.php:83
+#: ../../enterprise/godmode/policies/policy_agents.php:1102
+#: ../../enterprise/godmode/policies/policy_agents.php:1427
+msgid "Policy applied"
+msgstr "Política aplicada"
+
+#: ../../enterprise/operation/agentes/policy_view.php:89
+msgid "Policy outdate"
+msgstr "Política obsoleta"
+
+#: ../../enterprise/operation/agentes/policy_view.php:159
+#: ../../enterprise/operation/agentes/policy_view.php:169
+msgid "Toggle the collection table"
+msgstr "Cambiar la tabla de la colección"
+
+#: ../../enterprise/operation/agentes/policy_view.php:164
+#: ../../enterprise/operation/agentes/collection_view.php:76
+#: ../../enterprise/godmode/agentes/collection_manager.php:207
+msgid "Dir"
+msgstr "Dir"
+
+#: ../../enterprise/operation/agentes/policy_view.php:165
+msgid "Descripttion"
+msgstr "Descripción"
+
+#: ../../enterprise/operation/agentes/policy_view.php:173
+msgid "Show Collection"
+msgstr "Mostrar colecciones"
+
+#: ../../enterprise/operation/agentes/policy_view.php:195
+#: ../../enterprise/operation/agentes/policy_view.php:196
+#: ../../enterprise/operation/agentes/collection_view.php:108
+#: ../../enterprise/godmode/agentes/collection_manager.php:129
+#: ../../enterprise/godmode/agentes/collection_manager.php:130
+#: ../../enterprise/godmode/agentes/collection_manager.php:254
+msgid "Show files"
+msgstr "Mostrar archivos"
+
+#: ../../enterprise/operation/agentes/policy_view.php:217
+#: ../../enterprise/operation/agentes/policy_view.php:218
+#: ../../enterprise/operation/agentes/collection_view.php:128
+#: ../../enterprise/operation/agentes/collection_view.php:129
+#: ../../enterprise/godmode/policies/policy_collections.php:224
+#: ../../enterprise/godmode/policies/policy_collections.php:296
+msgid "Outdate"
+msgstr "Obsoleto"
+
+#: ../../enterprise/operation/agentes/policy_view.php:253
+#: ../../enterprise/operation/agentes/policy_view.php:265
+msgid "Toggle the alert table"
+msgstr "Cambia a la tabla de alertas"
+
+#: ../../enterprise/operation/agentes/policy_view.php:269
+msgid "Show Alert"
+msgstr "Mostrar alertas"
+
+#: ../../enterprise/operation/agentes/policy_view.php:390
+#: ../../enterprise/operation/agentes/policy_view.php:402
+msgid "Toggle the module table"
+msgstr "Cambiar a la tabla de alertas"
+
+#: ../../enterprise/operation/agentes/policy_view.php:394
+msgid "Relationship"
+msgstr "Relación"
+
+#: ../../enterprise/operation/agentes/policy_view.php:394
+#: ../../enterprise/godmode/policies/policy_agents.php:849
+msgid "R."
+msgstr "R."
+
+#: ../../enterprise/operation/agentes/policy_view.php:406
+msgid "Show Modules"
+msgstr "Mostrar módulos"
+
+#: ../../enterprise/operation/agentes/policy_view.php:425
+msgid "(Un-adopted)"
+msgstr "(Desadoptados)"
+
+#: ../../enterprise/operation/agentes/policy_view.php:428
+msgid "(Adopted)"
+msgstr "(Adoptados)"
+
+#: ../../enterprise/operation/agentes/policy_view.php:433
+msgid "(Un-adopted) (Unlinked)"
+msgstr "(Desadoptados)(Desvinculados)"
+
+#: ../../enterprise/operation/agentes/policy_view.php:436
+msgid "(Adopted) (Unlinked)"
+msgstr "(Adoptados)(Desvinculados)"
+
+#: ../../enterprise/operation/agentes/policy_view.php:457
+#: ../../godmode/agentes/module_manager.php:1086
+msgid "Non initialized module"
+msgstr "Módulo no iniciado"
+
+#: ../../enterprise/operation/agentes/manage_transmap_creation_phases_data.php:34
+#: ../../enterprise/operation/agentes/manage_transmap_creation.php:115
+#: ../../enterprise/operation/agentes/manage_transmap_creation.php:332
+#: ../../enterprise/operation/agentes/manage_transmap_creation.php:417
+#: ../../enterprise/operation/agentes/manage_transmap.php:56
+msgid "Transactions List"
+msgstr "Lista de transacciones"
+
+#: ../../enterprise/operation/agentes/manage_transmap_creation_phases_data.php:42
+#: ../../enterprise/operation/agentes/manage_transmap_creation.php:139
+#: ../../enterprise/operation/agentes/manage_transmap_creation.php:441
+#: ../../enterprise/operation/agentes/manage_transmap.php:96
+msgid "Edit Transaction"
+msgstr "Editar transacción"
+
+#: ../../enterprise/operation/agentes/manage_transmap_creation_phases_data.php:50
+msgid "Go back to phases list"
+msgstr "Volver a lista de fases"
+
+#: ../../enterprise/operation/agentes/manage_transmap_creation_phases_data.php:56
+msgid "Transactional Map - Phase - "
+msgstr "Mapa transaccional - Fase - "
+
+#: ../../enterprise/operation/agentes/manage_transmap_creation_phases_data.php:74
+#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:424
+#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:466
+msgid "Launch script"
+msgstr "Lanzar script"
+
+#: ../../enterprise/operation/agentes/manage_transmap_creation_phases_data.php:77
+#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1057
+#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:500
+#: ../../godmode/massive/massive_edit_modules.php:1135
+#: ../../godmode/agentes/module_manager_editor_common.php:1138
+msgid "Retries"
+msgstr "Reintentos"
+
+#: ../../enterprise/operation/agentes/manage_transmap_creation_phases_data.php:80
+#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1044
+#: ../../godmode/massive/massive_edit_modules.php:1122
+#: ../../godmode/agentes/module_manager_editor_common.php:1135
+msgid "Timeout"
+msgstr "Tiempo de espera"
+
+#: ../../enterprise/operation/agentes/collection_view.php:60
+#: ../../enterprise/godmode/agentes/collection_manager.php:37
+msgid "This agent have not a remote configuration, please set it."
+msgstr "Este agente no se ha configurado remotamente. Por favor, configúralo."
+
+#: ../../enterprise/operation/agentes/collection_view.php:66
+msgid "No collection assigned to this agent"
+msgstr "No se ha asignado ninguna colección a este agente."
+
+#: ../../enterprise/operation/agentes/collection_view.php:139
+#: ../../enterprise/operation/agentes/collection_view.php:140
+#: ../../enterprise/meta/advanced/collections.data.php:383
+#: ../../enterprise/meta/advanced/collections.data.php:384
+#: ../../enterprise/meta/advanced/collections.php:405
+#: ../../enterprise/meta/advanced/collections.php:406
+#: ../../enterprise/godmode/agentes/collection_manager.php:175
+#: ../../enterprise/godmode/agentes/collection_manager.php:176
+#: ../../enterprise/godmode/agentes/collection_manager.php:290
+#: ../../enterprise/godmode/agentes/collection_manager.php:291
+#: ../../enterprise/godmode/agentes/collections.data.php:477
+#: ../../enterprise/godmode/agentes/collections.data.php:478
+#: ../../enterprise/godmode/agentes/collections.php:385
+#: ../../enterprise/godmode/agentes/collections.php:386
+msgid "The collection directory does not exist."
+msgstr "El directorio donde se guardan las colecciones no existe."
+
+#: ../../enterprise/operation/agentes/url_route_analyzer.php:39
+msgid "No agent selected"
+msgstr "No hay ningún agente seleccionado."
+
+#: ../../enterprise/operation/agentes/url_route_analyzer.php:42
+msgid "Route not found"
+msgstr "Ruta no encontrada"
+
+#: ../../enterprise/operation/agentes/wux_console_view.php:224
+msgid "Selected transaction has no stats"
+msgstr "La transacción seleccionada no tiene estadísticas."
+
+#: ../../enterprise/operation/agentes/wux_console_view.php:242
+msgid "No WUX transactions found."
+msgstr "Ninguna transacción WUX encontrada"
+
+#: ../../enterprise/operation/agentes/wux_console_view.php:261
+#: ../../enterprise/operation/agentes/ux_console_view.php:133
+msgid "Transaction"
+msgstr "Transacción"
+
+#: ../../enterprise/operation/agentes/wux_console_view.php:286
+#: ../../enterprise/operation/agentes/ux_console_view.php:142
+msgid "Show transaction"
+msgstr "Mostrar transacción"
+
+#: ../../enterprise/operation/agentes/wux_console_view.php:332
+#: ../../enterprise/operation/agentes/ux_console_view.php:266
+msgid "Global results"
+msgstr "Resultados globales"
+
+#: ../../enterprise/operation/agentes/wux_console_view.php:357
+msgid "Failed: "
+msgstr "Fallo: "
+
+#: ../../enterprise/operation/agentes/wux_console_view.php:378
+msgid "Success: "
+msgstr "Éxito: "
+
+#: ../../enterprise/operation/agentes/wux_console_view.php:384
+msgid "Total transaction time: "
+msgstr "Tiempo total de la transacción: "
+
+#: ../../enterprise/operation/agentes/wux_console_view.php:398
+#, php-format
+msgid "Execution results for transaction %s"
+msgstr "Resultados de ejecución de la transacción %s"
+
+#: ../../enterprise/operation/agentes/wux_console_view.php:527
+msgid "View all stats"
+msgstr "Ver todas las estadísticas"
+
+#: ../../enterprise/operation/agentes/wux_console_view.php:570
+#: ../../enterprise/operation/agentes/ux_console_view.php:332
+msgid "Transaction history"
+msgstr "Histórico de transacciones"
+
+#: ../../enterprise/operation/agentes/wux_console_view.php:611
+msgid "Invalid transaction."
+msgstr "Transacción no válida"
+
+#: ../../enterprise/operation/agentes/transactional_map.php:61
+msgid "List of transactions"
+msgstr "Lista de transacciones"
+
+#: ../../enterprise/operation/agentes/transactional_map.php:74
+#: ../../enterprise/operation/agentes/manage_transmap_creation.php:173
+#: ../../enterprise/operation/agentes/manage_transmap_creation.php:353
+#: ../../enterprise/operation/agentes/manage_transmap_creation.php:475
+#: ../../enterprise/operation/agentes/manage_transmap.php:176
+msgid "Transactional Map"
+msgstr "Mapa transaccional"
+
+#: ../../enterprise/operation/agentes/transactional_map.php:149
+msgid "Name can't be empty"
+msgstr "El nombre no se puede quedar en blanco."
+
+#: ../../enterprise/operation/agentes/transactional_map.php:206
+msgid "Transaction name"
+msgstr "Nombre de la transacción"
+
+#: ../../enterprise/operation/agentes/transactional_map.php:209
+msgid "Running status"
+msgstr "Estado de ejecución"
+
+#: ../../enterprise/operation/agentes/transactional_map.php:211
+msgid "Time spent"
+msgstr "Tiempo utilizado"
+
+#: ../../enterprise/operation/agentes/transactional_map.php:254
+msgid "Stopped"
+msgstr "Detenido"
+
+#: ../../enterprise/operation/agentes/transactional_map.php:260
+msgid "Starting"
+msgstr "Iniciando"
+
+#: ../../enterprise/operation/agentes/transactional_map.php:260
+msgid "Stopping"
+msgstr "Deteniendo"
+
+#: ../../enterprise/operation/agentes/transactional_map.php:265
+#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:554
+#: ../../godmode/agentes/planned_downtime.list.php:616
+#: ../../godmode/agentes/planned_downtime.list.php:688
+msgid "Running"
+msgstr "Ejecutándose"
+
+#: ../../enterprise/operation/agentes/transactional_map.php:439
+msgid "Edit phases"
+msgstr "Editar fases"
+
+#: ../../enterprise/operation/agentes/transactional_map.php:461
+msgid "Go to `Status` module"
+msgstr "Vaya al módulo 'Estado'"
+
+#: ../../enterprise/operation/agentes/transactional_map.php:492
+msgid "Error in phases section"
+msgstr "Error en la sección de fases"
+
+#: ../../enterprise/operation/agentes/transactional_map.php:512
+#: ../../enterprise/operation/agentes/manage_transmap_creation.php:340
+msgid "Create Transaction"
+msgstr "Crear transacción"
+
+#: ../../enterprise/operation/agentes/manage_transmap_creation.php:63
+msgid "Please, reset the transaction"
+msgstr "Por favor, reinicia la transacción."
+
+#: ../../enterprise/operation/agentes/manage_transmap_creation.php:102
+msgid "Successfully data updated"
+msgstr "Datos actualizados correctamente"
+
+#: ../../enterprise/operation/agentes/manage_transmap_creation.php:103
+msgid "Could not be data updated"
+msgstr "Error al actualizar los datos"
+
+#: ../../enterprise/operation/agentes/manage_transmap_creation.php:127
+#: ../../enterprise/operation/agentes/manage_transmap_creation.php:429
+#: ../../enterprise/operation/agentes/manage_transmap.php:84
+msgid "Edit main data"
+msgstr "Editar datos principales"
+
+#: ../../enterprise/operation/agentes/manage_transmap_creation.php:152
+#: ../../enterprise/operation/agentes/manage_transmap_creation.php:454
+#: ../../enterprise/operation/agentes/manage_transmap.php:109
+msgid "View Transaction"
+msgstr "Ver transacción"
+
+#: ../../enterprise/operation/agentes/manage_transmap_creation.php:160
+msgid "Create Phase"
+msgstr "Fase de creación"
+
+#: ../../enterprise/operation/agentes/manage_transmap_creation.php:185
+msgid "Index"
+msgstr "Índice"
+
+#: ../../enterprise/operation/agentes/manage_transmap_creation.php:188
+msgid "Dependencies"
+msgstr "Dependencias"
+
+#: ../../enterprise/operation/agentes/manage_transmap_creation.php:189
+msgid "Enables"
+msgstr "Activa"
+
+#: ../../enterprise/operation/agentes/manage_transmap_creation.php:219
+#: ../../enterprise/include/ajax/transactional.ajax.php:174
+msgid "The phase does not have a defined script"
+msgstr "La fase no tiene un script definido."
+
+#: ../../enterprise/operation/agentes/manage_transmap_creation.php:254
+msgid "Not valid dependencies field"
+msgstr "Campo de dependencias no válido"
+
+#: ../../enterprise/operation/agentes/manage_transmap_creation.php:260
+msgid "Not valid enables field"
+msgstr "Campo de activación no válido"
+
+#: ../../enterprise/operation/agentes/manage_transmap_creation.php:275
+#: ../../enterprise/include/ajax/transactional.ajax.php:211
+msgid "Edit Data"
+msgstr "Editar datos"
+
+#: ../../enterprise/operation/agentes/manage_transmap_creation.php:367
+#: ../../enterprise/operation/agentes/manage_transmap_creation.php:493
+msgid "Loop interval"
+msgstr "Intervalo del bucle"
+
+#: ../../enterprise/operation/agentes/manage_transmap_creation.php:462
+msgid "Transactional Map - Edit Transaction"
+msgstr "Mapa transaccional - Editar transacción"
+
+#: ../../enterprise/operation/agentes/agent_inventory.php:61
+msgid "This agent has not modules inventory"
+msgstr "Este agente no tiene módulos de inventario."
+
+#: ../../enterprise/operation/agentes/agent_inventory.php:162
+#: ../../enterprise/operation/agentes/agent_inventory.php:163
+msgid "Diff view"
+msgstr "Vista de diferencia"
+
+#: ../../enterprise/operation/agentes/agent_inventory.diff_view.php:44
+msgid "Unsucessful get module inventory data."
+msgstr "No se han podido obtener datos del módulo de inventario."
+
+#: ../../enterprise/operation/agentes/agent_inventory.diff_view.php:173
+#: ../../enterprise/operation/agentes/agent_inventory.diff_view.php:176
+#: ../../mobile/operation/modules.php:799 ../../mobile/operation/tactical.php:239
+#: ../../mobile/operation/events.php:871
+#: ../../mobile/operation/module_graph.php:477
+#: ../../mobile/operation/agents.php:463
+#: ../../godmode/reporting/visual_console_builder.wizard.php:538
+msgid "Loading..."
+msgstr "Cargando…"
+
+#: ../../enterprise/operation/agentes/manage_transmap.php:153
+msgid "Return to windowed mode"
+msgstr "Volver al modo ventana"
+
+#: ../../enterprise/operation/agentes/manage_transmap.php:182
+msgid "Transaction not found"
+msgstr "Transacción no encontrada"
+
+#: ../../enterprise/operation/agentes/manage_transmap.php:185
+msgid "Master lock file not found (No data to show)"
+msgstr "Archivo de bloqueo maestro no encontrado (no hay datos que mostrar)"
+
+#: ../../enterprise/operation/agentes/manage_transmap.php:188
+msgid "Transaction is stopped"
+msgstr "Transacción detenida"
+
+#: ../../enterprise/operation/agentes/manage_transmap.php:191
+msgid "Error, please check the transaction phases"
+msgstr "Error. Por favor, comprueba las fases de la transacción."
+
+#: ../../enterprise/operation/agentes/ux_console_view.php:43
+msgid "No ux transaction selected."
+msgstr "Ninguna transacción UX seleccionada"
+
+#: ../../enterprise/operation/agentes/ux_console_view.php:124
+msgid "No ux transactions found."
+msgstr "Ninguna transacción UX encontrada"
+
+#: ../../enterprise/operation/agentes/ux_console_view.php:168
+msgid "Execution results for transaction "
+msgstr "Resultados de ejecución para la transacción "
+
+#: ../../enterprise/operation/agentes/ver_agente.php:215
+#: ../../enterprise/include/functions_groups.php:81
+#: ../../enterprise/meta/advanced/collections.php:289
+#: ../../enterprise/godmode/agentes/collections.php:327
+#: ../../godmode/agentes/configurar_agente.php:701
+msgid "Collection"
+msgstr "Colección"
+
+#: ../../enterprise/operation/agentes/ver_agente.php:258
+msgid "URL Route Analyzer"
+msgstr "Analizador de ruta de URL"
+
+#: ../../enterprise/operation/agentes/ver_agente.php:274
+msgid "UX Console"
+msgstr "Consola UX"
+
+#: ../../enterprise/operation/agentes/ver_agente.php:290
+msgid "WUX Console"
+msgstr "Consola WUX"
+
+#: ../../enterprise/operation/inventory/inventory.php:275
+msgid "You must select at least one filter."
+msgstr "Debe seleccionar al menos un filtro."
+
+#: ../../enterprise/operation/inventory/inventory.php:420
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2075
+msgid "Last"
+msgstr "Último"
+
+#: ../../enterprise/operation/inventory/inventory.php:424
+msgid "Order by agent"
+msgstr "Ordenar por agente"
+
+#: ../../enterprise/operation/inventory/inventory.php:466
+msgid "Export this list to CSV"
+msgstr "Exportar esta lista a CSV"
+
+#: ../../enterprise/include/functions_cron.php:178
+#: ../../enterprise/include/functions_cron.php:256
+#: ../../enterprise/include/functions_cron.php:331
+#: ../../enterprise/include/functions_cron.php:375
+msgid "Report to build"
+msgstr "Informe a crear"
+
+#: ../../enterprise/include/functions_cron.php:199
+#: ../../enterprise/include/functions_cron.php:249
+#: ../../enterprise/include/functions_cron.php:275
+msgid "Report Type"
+msgstr "Tipo de informe"
+
+#: ../../enterprise/include/functions_cron.php:206
+#: ../../enterprise/include/functions_cron.php:353
+msgid "Template to build"
+msgstr "Plantilla a crear"
+
+#: ../../enterprise/include/functions_cron.php:224
+msgid "Regexp agent filter"
+msgstr "Filtro de agente RegEx"
+
+#: ../../enterprise/include/functions_cron.php:264
+#: ../../enterprise/include/functions_cron.php:286
+#: ../../enterprise/include/functions_cron.php:376
+msgid "Save to disk into path"
+msgstr "Guardar disco en la ruta"
+
+#: ../../enterprise/include/functions_cron.php:265
+msgid "The apache user should have read-write access on this folder. Ex: "
+msgstr ""
+"El usuario de Apache debería tener acceso de lectura y escritura en esta "
+"carpeta. Por ejemplo: "
+
+#: ../../enterprise/include/functions_cron.php:271
+msgid "File name prefix"
+msgstr "Prefijo del nombre del archivo"
+
+#: ../../enterprise/include/functions_cron.php:291
+msgid "Active backups"
+msgstr "Copias de seguridad activas"
+
+#: ../../enterprise/include/functions_cron.php:306
+#: ../../enterprise/include/functions_cron.php:332
+#: ../../enterprise/include/functions_cron.php:354
+msgid "Send to email"
+msgstr "Enviar a correo electrónico"
+
+#: ../../enterprise/include/functions_cron.php:315
+msgid "Function name"
+msgstr "Nombre de la función"
+
+#: ../../enterprise/include/functions_cron.php:333
+msgid "Send custom report by email"
+msgstr "Enviar un informe personalizado por email"
+
+#: ../../enterprise/include/functions_cron.php:355
+msgid "Send custom report (from template) by email"
+msgstr "Enviar informe personalizado (desde plantilla) por email"
+
+#: ../../enterprise/include/functions_cron.php:377
+msgid "Save custom report to disk"
+msgstr "Guardar el informe personalizado en el disco"
+
+#: ../../enterprise/include/functions_cron.php:397
+msgid "Backup Pandora database"
+msgstr "Copia de seguridad de la BD de Pandora FMS"
+
+#: ../../enterprise/include/functions_cron.php:417
+msgid "Execute custom script"
+msgstr "Ejecutar script personalizado"
+
+#: ../../enterprise/include/functions_cron.php:499
+msgid "Not scheduled"
+msgstr "No programado"
+
+#: ../../enterprise/include/functions_cron.php:502
+#: ../../enterprise/include/lib/NetworkManager.php:182
+#: ../../godmode/agentes/module_manager_editor_prediction.php:181
+#: ../../godmode/agentes/planned_downtime.editor.php:643
+msgid "Weekly"
+msgstr "Semanalmente"
+
+#: ../../enterprise/include/functions_cron.php:503
+#: ../../godmode/agentes/module_manager_editor_prediction.php:182
+#: ../../godmode/agentes/planned_downtime.editor.php:644
+msgid "Monthly"
+msgstr "Mensualmente"
+
+#: ../../enterprise/include/functions_cron.php:504
+msgid "Yearly"
+msgstr "Anualmente"
+
+#: ../../enterprise/include/functions_cron.php:1531
+msgid "Scheduled report had an attempt to send an email without attachments."
+msgstr ""
+"El informe programado tenía un intento de enviar un correo electrónico sin "
+"archivos adjuntos."
+
+#: ../../enterprise/include/functions_cron.php:1534
+msgid "Scheduled report had an attempt to send an email with some attachments."
+msgstr ""
+"El informe programado tenía un intento de enviar un correo electrónico con "
+"algunos archivos adjuntos."
+
+#: ../../enterprise/include/functions_cron.php:1778
+msgid "Attached to this email there's a CSV file of the logs"
+msgstr "Hay un archivo CSV de los logs adjunto a este correo electrónico"
+
+#: ../../enterprise/include/functions_cron.php:1788
+msgid "logs csv"
+msgstr "Logs en CSV"
+
+#: ../../enterprise/include/functions_cron.php:2207
+#, php-format
+msgid "Error while executing task: %s, running %s, reason %s"
+msgstr "Error al ejecutar la tarea: %s, ejecución de %s, motivo %s"
+
+#: ../../enterprise/include/functions_cron.php:2221
+#: ../../enterprise/include/functions_cron.php:2231
+msgid "Error while executing task"
+msgstr "Error al ejecutar tarea "
+
+#: ../../enterprise/include/functions_enterprise_api.php:1119
+msgid "Is not metaconsole"
+msgstr "No es la metaconsola"
+
+#: ../../enterprise/include/functions_enterprise_api.php:2580
+msgid "Error getting alert actions."
+msgstr "Error al obtener acciones de alertas."
+
+#: ../../enterprise/include/functions_enterprise_api.php:3553
+#: ../../enterprise/include/functions_enterprise_api.php:3607
+#, php-format
+msgid "%d agents added to apply queue."
+msgstr "%d agentes añadidos a la cola de aplicar."
+
+#: ../../enterprise/include/functions_enterprise_api.php:3576
+#: ../../enterprise/include/functions_policies.php:4857
+#, php-format
+msgid "Successfully applied to node %s."
+msgstr "Aplicado correctamente al nodo %s."
+
+#: ../../enterprise/include/functions_enterprise_api.php:3578
+#: ../../enterprise/include/functions_policies.php:4859
+#, php-format
+msgid "Successfully applied to nodes: %s."
+msgstr "Aplicado correctamente a los nodos: %s."
+
+#: ../../enterprise/include/functions_enterprise_api.php:3617
+#, php-format
+msgid "Id policy %d already pending to apply."
+msgstr "ID de política %d ya pendiente de aplicar."
+
+#: ../../enterprise/include/functions_enterprise_api.php:3619
+#, php-format
+msgid "Id policy %d already pending to apply in Id agent %d."
+msgstr "ID de política %d ya pendiente de aplicar en el ID de agente %d."
+
+#: ../../enterprise/include/functions_enterprise_api.php:4035
+#: ../../enterprise/include/functions_enterprise_api.php:4062
+msgid ""
+"Error adding web analysis module to policy. Id_module_type is not correct for "
+"web analysis modules."
+msgstr ""
+"Error al añadir el módulo de análisis web a la política. Id_module_type no es "
+"correcto para los módulos de análisis web."
+
+#: ../../enterprise/include/functions_enterprise_api.php:4044
+msgid ""
+"Network Module could not be added to policy. Id_module_type is not correct for "
+"network modules."
+msgstr ""
+"No se ha podido añadir el módulo de red a la política. Id_module_type no es "
+"correcto para módulos de red."
+
+#: ../../enterprise/include/functions_enterprise_api.php:4053
+msgid ""
+"Error adding web module to policy. Id_module_type is not correct for web "
+"modules."
+msgstr ""
+"Error al añadir módulo web a la política. Id_module_type no es correcto para "
+"módulos web."
+
+#: ../../enterprise/include/functions_enterprise_api.php:4074
+msgid "Error adding module to policy configuration_data is not a valid base64."
+msgstr ""
+"Error al añadir módulo a la configuración de la política, configuration_data "
+"no es una base64 válida."
+
+#: ../../enterprise/include/functions_enterprise_api.php:6075
+msgid "The agent could not be added to the policy."
+msgstr "No se ha podido añadir el agente a la política."
+
+#: ../../enterprise/include/functions_enterprise_api.php:6292
+#, php-format
+msgid "Failed Updated remote config files %d"
+msgstr "Error al actualizar los archivos de configuración remota %d"
+
+#: ../../enterprise/include/functions_enterprise_api.php:6302
+#, php-format
+msgid "Updated remote config files: %d => %d"
+msgstr "Archivos de configuración remota actualizados: %d => %d"
+
+#: ../../enterprise/include/functions_reporting_csv.php:416
+msgid "Event report agent"
+msgstr "Informe de los eventos de un agente"
+
+#: ../../enterprise/include/functions_reporting_csv.php:418
+msgid "Event report group"
+msgstr "Informe de los eventos de un grupo"
+
+#: ../../enterprise/include/functions_reporting_csv.php:442
+msgid "Event report module"
+msgstr "Informe de los eventos de un módulo"
+
+#: ../../enterprise/include/functions_reporting_csv.php:502
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2614
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2604
+msgid "Time in OK status"
+msgstr "Tiempo en estado OK"
+
+#: ../../enterprise/include/functions_reporting_csv.php:510
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2630
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2620
+msgid "Time in unknown status"
+msgstr "Tiempo en estado desconocido"
+
+#: ../../enterprise/include/functions_reporting_csv.php:514
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2642
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2632
+msgid "Time of not initialized module"
+msgstr "Tiempo de módulo no inicializado"
+
+#: ../../enterprise/include/functions_reporting_csv.php:518
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2654
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2644
+msgid "Time of downtime"
+msgstr "Tiempo de parada"
+
+#: ../../enterprise/include/functions_reporting_csv.php:521
+#: ../../enterprise/include/functions_reporting_csv.php:1429
+msgid "% OK"
+msgstr "% OK"
+
+#: ../../enterprise/include/functions_reporting_csv.php:534
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2732
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2720
+msgid "Checks in OK status"
+msgstr "Comprobaciones en estado OK"
+
+#: ../../enterprise/include/functions_reporting_csv.php:538
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2744
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2744
+msgid "Unknown checks"
+msgstr "Comprobaciones desconocidas"
+
+#: ../../enterprise/include/functions_reporting_csv.php:662
+msgid "Maximum value"
+msgstr "Valor máximo"
+
+#: ../../enterprise/include/functions_reporting_csv.php:667
+msgid "Minimum value"
+msgstr "Valor mínimo"
+
+#: ../../enterprise/include/functions_reporting_csv.php:670
+msgid "Average value"
+msgstr "Valor medio"
+
+#: ../../enterprise/include/functions_reporting_csv.php:718
+msgid "Sec. group"
+msgstr "Grupo sec."
+
+#: ../../enterprise/include/functions_reporting_csv.php:718
+msgid "Custom Field"
+msgstr "Campo personalizado"
+
+#: ../../enterprise/include/functions_reporting_csv.php:817
+msgid "Serialized data "
+msgstr "Datos serializados "
+
+#: ../../enterprise/include/functions_reporting_csv.php:856
+msgid "Last Value "
+msgstr "Último valor "
+
+#: ../../enterprise/include/functions_reporting_csv.php:983
+msgid "Uknown agents"
+msgstr "Agentes desconocidos"
+
+#: ../../enterprise/include/functions_reporting_csv.php:983
+msgid "Last 8 hours events"
+msgstr "Eventos en las últimas 8 horas"
+
+#: ../../enterprise/include/functions_reporting_csv.php:1115
+msgid "Illegal query or any other error"
+msgstr "Consulta ilegal o cualquier otro error"
+
+#: ../../enterprise/include/functions_reporting_csv.php:1220
+#: ../../enterprise/include/functions_reporting_csv.php:1222
+#: ../../enterprise/include/functions_reporting_csv.php:1228
+#: ../../enterprise/include/functions_reporting_csv.php:1230
+msgid "Minimum Value"
+msgstr "Valor mínimo"
+
+#: ../../enterprise/include/functions_reporting_csv.php:1275
+#: ../../enterprise/include/functions_reporting_csv.php:1277
+#: ../../enterprise/include/functions_reporting_csv.php:1283
+#: ../../enterprise/include/functions_reporting_csv.php:1285
+msgid "Maximun Value"
+msgstr "Valor máximo"
+
+#: ../../enterprise/include/functions_reporting_csv.php:1394
+msgid "AVG"
+msgstr "Media"
+
+#: ../../enterprise/include/functions_reporting_csv.php:1429
+msgid "% Wrong"
+msgstr "% Mal"
+
+#: ../../enterprise/include/functions_reporting_csv.php:1444
+msgid "Simple Graph"
+msgstr "Gráfico simple"
+
+#: ../../enterprise/include/functions_reporting_csv.php:1504
+#: ../../enterprise/include/functions_reporting_csv.php:1550
+#: ../../enterprise/include/functions_reporting_csv.php:1623
+#: ../../enterprise/include/functions_reporting_csv.php:1742
+#: ../../enterprise/include/functions_reporting_csv.php:2050
+msgid "SLA Max"
+msgstr "SLA máximo"
+
+#: ../../enterprise/include/functions_reporting_csv.php:1505
+#: ../../enterprise/include/functions_reporting_csv.php:1551
+#: ../../enterprise/include/functions_reporting_csv.php:1624
+#: ../../enterprise/include/functions_reporting_csv.php:1743
+#: ../../enterprise/include/functions_reporting_csv.php:2051
+msgid "SLA Min"
+msgstr "SLA mínimo"
+
+#: ../../enterprise/include/functions_reporting_csv.php:1507
+#: ../../enterprise/include/functions_reporting_csv.php:1553
+msgid "Time Total "
+msgstr "Tiempo total "
+
+#: ../../enterprise/include/functions_reporting_csv.php:1508
+#: ../../enterprise/include/functions_reporting_csv.php:1554
+msgid "Time OK "
+msgstr "Tiempo OK "
+
+#: ../../enterprise/include/functions_reporting_csv.php:1509
+#: ../../enterprise/include/functions_reporting_csv.php:1555
+msgid "Time Error "
+msgstr "Tiempo de error "
+
+#: ../../enterprise/include/functions_reporting_csv.php:1510
+#: ../../enterprise/include/functions_reporting_csv.php:1556
+msgid "Time Unknown "
+msgstr "Tiempo en desconocido "
+
+#: ../../enterprise/include/functions_reporting_csv.php:1511
+#: ../../enterprise/include/functions_reporting_csv.php:1557
+msgid "Time Not Init "
+msgstr "Tiempo no iniciado "
+
+#: ../../enterprise/include/functions_reporting_csv.php:1512
+#: ../../enterprise/include/functions_reporting_csv.php:1558
+msgid "Time Downtime "
+msgstr "Tiempo en parada planificada "
+
+#: ../../enterprise/include/functions_reporting_csv.php:1513
+#: ../../enterprise/include/functions_reporting_csv.php:1559
+msgid "Checks Total "
+msgstr "Comprobaciones totales "
+
+#: ../../enterprise/include/functions_reporting_csv.php:1514
+#: ../../enterprise/include/functions_reporting_csv.php:1560
+msgid "Checks OK "
+msgstr "Comprobaciones OK "
+
+#: ../../enterprise/include/functions_reporting_csv.php:1515
+#: ../../enterprise/include/functions_reporting_csv.php:1561
+msgid "Checks Error "
+msgstr "Comprobaciones con error "
+
+#: ../../enterprise/include/functions_reporting_csv.php:1516
+#: ../../enterprise/include/functions_reporting_csv.php:1562
+msgid "Checks Unknown "
+msgstr "Comprobaciones en desconocido "
+
+#: ../../enterprise/include/functions_reporting_csv.php:1517
+#: ../../enterprise/include/functions_reporting_csv.php:1563
+msgid "Checks Not Init "
+msgstr "Comprobaciones en no iniciado "
+
+#: ../../enterprise/include/functions_reporting_csv.php:1518
+#: ../../enterprise/include/functions_reporting_csv.php:1564
+msgid "SLA "
+msgstr "SLA "
+
+#: ../../enterprise/include/functions_reporting_csv.php:1519
+#: ../../enterprise/include/functions_reporting_csv.php:1565
+msgid "Status "
+msgstr "Estado "
+
+#: ../../enterprise/include/functions_reporting_csv.php:1611
+#: ../../enterprise/include/functions_reporting_csv.php:1727
+#: ../../enterprise/include/functions_reporting_csv.php:1967
+#: ../../enterprise/include/functions_reporting_csv.php:2035
+msgid "Subtitle"
+msgstr "Subtítulo"
+
+#: ../../enterprise/include/functions_reporting_csv.php:1626
+#: ../../enterprise/include/functions_reporting_csv.php:1758
+#: ../../enterprise/include/functions_reporting_csv.php:2066
+msgid "Time Total Month"
+msgstr "Tiempo total del mes"
+
+#: ../../enterprise/include/functions_reporting_csv.php:1627
+#: ../../enterprise/include/functions_reporting_csv.php:1759
+#: ../../enterprise/include/functions_reporting_csv.php:2067
+msgid "Time OK Month"
+msgstr "Tiempo OK del mes"
+
+#: ../../enterprise/include/functions_reporting_csv.php:1628
+#: ../../enterprise/include/functions_reporting_csv.php:1760
+#: ../../enterprise/include/functions_reporting_csv.php:2068
+msgid "Time Error Month"
+msgstr "Tiempo en error del mes"
+
+#: ../../enterprise/include/functions_reporting_csv.php:1629
+#: ../../enterprise/include/functions_reporting_csv.php:1761
+#: ../../enterprise/include/functions_reporting_csv.php:2069
+msgid "Time Unknown Month"
+msgstr "Tiempo en desconocido del mes"
+
+#: ../../enterprise/include/functions_reporting_csv.php:1630
+#: ../../enterprise/include/functions_reporting_csv.php:1762
+#: ../../enterprise/include/functions_reporting_csv.php:2070
+msgid "Time Downtime Month"
+msgstr "Tiempo en parada planificada del mes"
+
+#: ../../enterprise/include/functions_reporting_csv.php:1631
+#: ../../enterprise/include/functions_reporting_csv.php:1763
+#: ../../enterprise/include/functions_reporting_csv.php:2071
+msgid "Time Not Init Month"
+msgstr "Tiempo en no iniciado del mes"
+
+#: ../../enterprise/include/functions_reporting_csv.php:1632
+#: ../../enterprise/include/functions_reporting_csv.php:1764
+#: ../../enterprise/include/functions_reporting_csv.php:2072
+msgid "Checks Total Month"
+msgstr "Comprobaciones totales del mes"
+
+#: ../../enterprise/include/functions_reporting_csv.php:1633
+#: ../../enterprise/include/functions_reporting_csv.php:1765
+#: ../../enterprise/include/functions_reporting_csv.php:2073
+msgid "Checks OK Month"
+msgstr "Comprobaciones OK del mes"
+
+#: ../../enterprise/include/functions_reporting_csv.php:1634
+#: ../../enterprise/include/functions_reporting_csv.php:1766
+#: ../../enterprise/include/functions_reporting_csv.php:2074
+msgid "Checks Error Month"
+msgstr "Comprobaciones en error del mes"
+
+#: ../../enterprise/include/functions_reporting_csv.php:1635
+#: ../../enterprise/include/functions_reporting_csv.php:1767
+#: ../../enterprise/include/functions_reporting_csv.php:2075
+msgid "Checks Unknown Month"
+msgstr "Comprobaciones en desconocido del mes"
+
+#: ../../enterprise/include/functions_reporting_csv.php:1636
+#: ../../enterprise/include/functions_reporting_csv.php:1768
+#: ../../enterprise/include/functions_reporting_csv.php:2076
+msgid "Checks Not Init Month"
+msgstr "Comprobaciones en no iniciado del mes"
+
+#: ../../enterprise/include/functions_reporting_csv.php:1637
+#: ../../enterprise/include/functions_reporting_csv.php:1769
+#: ../../enterprise/include/functions_reporting_csv.php:2077
+msgid "SLA Month"
+msgstr "SLA mensual"
+
+#: ../../enterprise/include/functions_reporting_csv.php:1638
+#: ../../enterprise/include/functions_reporting_csv.php:1770
+#: ../../enterprise/include/functions_reporting_csv.php:2078
+msgid "Status Month"
+msgstr "Estado del mes"
+
+#: ../../enterprise/include/functions_reporting_csv.php:1660
+#: ../../enterprise/include/functions_reporting.php:2023
+msgid "Day"
+msgstr "Día"
+
+#: ../../enterprise/include/functions_reporting_csv.php:1661
+#: ../../enterprise/include/functions_reporting_csv.php:1816
+msgid "Time Total Day"
+msgstr "Tiempo total del día"
+
+#: ../../enterprise/include/functions_reporting_csv.php:1662
+#: ../../enterprise/include/functions_reporting_csv.php:1817
+msgid "Time OK Day"
+msgstr "Tiempo en OK del día"
+
+#: ../../enterprise/include/functions_reporting_csv.php:1663
+#: ../../enterprise/include/functions_reporting_csv.php:1818
+msgid "Time Error Day"
+msgstr "Tiempo en error del día"
+
+#: ../../enterprise/include/functions_reporting_csv.php:1664
+#: ../../enterprise/include/functions_reporting_csv.php:1819
+msgid "Time Unknown Day"
+msgstr "Tiempo en desconocido del día"
+
+#: ../../enterprise/include/functions_reporting_csv.php:1665
+#: ../../enterprise/include/functions_reporting_csv.php:1820
+msgid "Time Not Init Day"
+msgstr "Tiempo en no iniciado del día"
+
+#: ../../enterprise/include/functions_reporting_csv.php:1666
+#: ../../enterprise/include/functions_reporting_csv.php:1821
+msgid "Time Downtime Day"
+msgstr "Tiempo en parada planificada del día"
+
+#: ../../enterprise/include/functions_reporting_csv.php:1667
+#: ../../enterprise/include/functions_reporting_csv.php:1822
+msgid "Time Out Day"
+msgstr "Tiempo fuera del día"
+
+#: ../../enterprise/include/functions_reporting_csv.php:1668
+#: ../../enterprise/include/functions_reporting_csv.php:1823
+msgid "Checks Total Day"
+msgstr "Comprobaciones totales del día"
+
+#: ../../enterprise/include/functions_reporting_csv.php:1669
+#: ../../enterprise/include/functions_reporting_csv.php:1824
+msgid "Checks OK Day"
+msgstr "Comprobaciones en OK del día"
+
+#: ../../enterprise/include/functions_reporting_csv.php:1670
+#: ../../enterprise/include/functions_reporting_csv.php:1825
+msgid "Checks Error Day"
+msgstr "Comprobaciones en error del día"
+
+#: ../../enterprise/include/functions_reporting_csv.php:1671
+#: ../../enterprise/include/functions_reporting_csv.php:1826
+msgid "Checks Unknown Day"
+msgstr "Comprobaciones en desconocido del día"
+
+#: ../../enterprise/include/functions_reporting_csv.php:1672
+#: ../../enterprise/include/functions_reporting_csv.php:1827
+msgid "Checks Not Init Day"
+msgstr "Comprobaciones en no iniciado del día"
+
+#: ../../enterprise/include/functions_reporting_csv.php:1673
+#: ../../enterprise/include/functions_reporting_csv.php:1828
+msgid "SLA Day"
+msgstr "SLA diario"
+
+#: ../../enterprise/include/functions_reporting_csv.php:1674
+#: ../../enterprise/include/functions_reporting_csv.php:1829
+msgid "SLA Fixed Day"
+msgstr "SLA de día fijo"
+
+#: ../../enterprise/include/functions_reporting_csv.php:1675
+#: ../../enterprise/include/functions_reporting_csv.php:1830
+msgid "Date From Day"
+msgstr "Fecha desde día"
+
+#: ../../enterprise/include/functions_reporting_csv.php:1676
+#: ../../enterprise/include/functions_reporting_csv.php:1831
+msgid "Date To Day"
+msgstr "Fecha hasta día"
+
+#: ../../enterprise/include/functions_reporting_csv.php:1677
+#: ../../enterprise/include/functions_reporting_csv.php:1832
+msgid "Status Day"
+msgstr "Estado del día"
+
+#: ../../enterprise/include/functions_reporting_csv.php:1738
+#: ../../enterprise/include/functions_reporting_csv.php:2046
+msgid "Month Number"
+msgstr "Número de mes"
+
+#: ../../enterprise/include/functions_reporting_csv.php:1739
+#: ../../enterprise/include/functions_reporting_csv.php:2047
+msgid "Year"
+msgstr "Año"
+
+#: ../../enterprise/include/functions_reporting_csv.php:1789
+msgid "Time Total week"
+msgstr "Tiempo total de la semana"
+
+#: ../../enterprise/include/functions_reporting_csv.php:1790
+msgid "Time OK week"
+msgstr "Tiempo en OK de la semana"
+
+#: ../../enterprise/include/functions_reporting_csv.php:1791
+msgid "Time Error week"
+msgstr "Tiempo en error de la semana"
+
+#: ../../enterprise/include/functions_reporting_csv.php:1792
+msgid "Time Unknown week"
+msgstr "Tiempo en desconocido de la semana"
+
+#: ../../enterprise/include/functions_reporting_csv.php:1793
+msgid "Time Downtime week"
+msgstr "Tiempo en parada planificada de la semana"
+
+#: ../../enterprise/include/functions_reporting_csv.php:1794
+msgid "Time Not Init week"
+msgstr "Tiempo en no iniciado de la semana"
+
+#: ../../enterprise/include/functions_reporting_csv.php:1795
+msgid "Checks Total week"
+msgstr "Comprobaciones totales de la semana"
+
+#: ../../enterprise/include/functions_reporting_csv.php:1796
+msgid "Checks OK week"
+msgstr "Comprobaciones en OK de la semana"
+
+#: ../../enterprise/include/functions_reporting_csv.php:1797
+msgid "Checks Error week"
+msgstr "Comprobaciones en error de la semana"
+
+#: ../../enterprise/include/functions_reporting_csv.php:1798
+msgid "Checks Unknown week"
+msgstr "Comprobaciones en desconocido de la semana"
+
+#: ../../enterprise/include/functions_reporting_csv.php:1799
+msgid "Status week"
+msgstr "Estado de la semana"
+
+#: ../../enterprise/include/functions_reporting_csv.php:1815
+msgid "Day Week"
+msgstr "Día de la semana"
+
+#: ../../enterprise/include/functions_reporting_csv.php:1867
+msgid "S.L.A. Services"
+msgstr "Servicios S.L.A"
+
+#: ../../enterprise/include/functions_reporting_csv.php:1885
+msgid "Lost sercice "
+msgstr "Servicio perdido "
+
+#: ../../enterprise/include/functions_reporting_csv.php:1886
+msgid "Service "
+msgstr "Servicio "
+
+#: ../../enterprise/include/functions_reporting_csv.php:1887
+msgid "Limit "
+msgstr "Límite "
+
+#: ../../enterprise/include/functions_reporting_csv.php:1888
+msgid "SLA Compilance "
+msgstr "Cumplimiento SLA "
+
+#: ../../enterprise/include/functions_reporting_csv.php:1889
+msgid "Unknown "
+msgstr "Desconocido "
+
+#: ../../enterprise/include/functions_reporting_csv.php:1890
+msgid "Ok "
+msgstr "Ok "
+
+#: ../../enterprise/include/functions_reporting_csv.php:1891
+msgid "Fail "
+msgstr "Error "
+
+#: ../../enterprise/include/functions_reporting_csv.php:1892
+msgid "Result "
+msgstr "Resultado "
+
+#: ../../enterprise/include/functions_reporting_csv.php:1917
+msgid "IPAM Networks"
+msgstr "Redes IPAM"
+
+#: ../../enterprise/include/functions_reporting_csv.php:1977
+msgid "SLA max"
+msgstr "SLA máximo"
+
+#: ../../enterprise/include/functions_reporting_csv.php:1978
+msgid "SLA min"
+msgstr "SLA mínimo"
+
+#: ../../enterprise/include/functions_reporting_csv.php:1979
+msgid "SLA limit"
+msgstr "Límite de SLA"
+
+#: ../../enterprise/include/functions_reporting_csv.php:1982
+msgid "Time Error"
+msgstr "Tiempo de error"
+
+#: ../../enterprise/include/functions_reporting_csv.php:1988
+msgid "Checks Error"
+msgstr "Comprobaciones en error"
+
+#: ../../enterprise/include/functions_reporting_csv.php:1990
+#: ../../enterprise/include/functions_reporting.php:5066
+msgid "Checks Not Init"
+msgstr "Comprobaciones en no iniciado"
+
+#: ../../enterprise/include/functions_reporting_csv.php:1992
+msgid "SLA Fixed"
+msgstr "SLA fijo"
+
+#: ../../enterprise/include/functions_reporting_csv.php:2097
+msgid "Time Total day"
+msgstr "Tiempo total del día"
+
+#: ../../enterprise/include/functions_reporting_csv.php:2098
+msgid "Time OK day"
+msgstr "Tiempo en OK del día"
+
+#: ../../enterprise/include/functions_reporting_csv.php:2099
+msgid "Time Error day"
+msgstr "Tiempo en error del día"
+
+#: ../../enterprise/include/functions_reporting_csv.php:2100
+msgid "Time Unknown day"
+msgstr "Tiempo en desconocido del día"
+
+#: ../../enterprise/include/functions_reporting_csv.php:2101
+msgid "Time Downtime day"
+msgstr "Tiempo en parada planificada del día"
+
+#: ../../enterprise/include/functions_reporting_csv.php:2102
+msgid "Time Not Init day"
+msgstr "Tiempo en no iniciado del día"
+
+#: ../../enterprise/include/functions_reporting_csv.php:2103
+msgid "Checks Total day"
+msgstr "Comprobaciones totales del día"
+
+#: ../../enterprise/include/functions_reporting_csv.php:2104
+msgid "Checks OK day"
+msgstr "Comprobaciones en OK del día"
+
+#: ../../enterprise/include/functions_reporting_csv.php:2105
+msgid "Checks Error day"
+msgstr "Comprobaciones en error del día"
+
+#: ../../enterprise/include/functions_reporting_csv.php:2106
+msgid "Checks Unknown day"
+msgstr "Comprobaciones en desconocido del día"
+
+#: ../../enterprise/include/functions_reporting_csv.php:2107
+msgid "Status day"
+msgstr "Estado del día"
+
+#: ../../enterprise/include/functions_reporting_csv.php:2123
+#: ../../enterprise/include/functions_events.php:230
+msgid "Hours"
+msgstr "Horas"
+
+#: ../../enterprise/include/functions_reporting_csv.php:2124
+msgid "Time Total hours"
+msgstr "Tiempo total en horas"
+
+#: ../../enterprise/include/functions_reporting_csv.php:2125
+msgid "Time OK hours"
+msgstr "Tiempo en OK en horas"
+
+#: ../../enterprise/include/functions_reporting_csv.php:2126
+msgid "Time Error hours"
+msgstr "Tiempo en error en horas"
+
+#: ../../enterprise/include/functions_reporting_csv.php:2127
+msgid "Time Unknown hours"
+msgstr "Tiempo en desconocido en horas"
+
+#: ../../enterprise/include/functions_reporting_csv.php:2128
+msgid "Time Not Init hours"
+msgstr "Tiempo en no iniciado en horas"
+
+#: ../../enterprise/include/functions_reporting_csv.php:2129
+msgid "Time Downtime hours"
+msgstr "Tiempo en parada planificada en horas"
+
+#: ../../enterprise/include/functions_reporting_csv.php:2130
+msgid "Time Out hours"
+msgstr "Tiempo fuera en horas"
+
+#: ../../enterprise/include/functions_reporting_csv.php:2131
+msgid "Checks Total hours"
+msgstr "Comprobaciones totales en horas"
+
+#: ../../enterprise/include/functions_reporting_csv.php:2132
+msgid "Checks OK hours"
+msgstr "Comprobaciones en OK en horas"
+
+#: ../../enterprise/include/functions_reporting_csv.php:2133
+msgid "Checks Error hours"
+msgstr "Comprobaciones en error en horas"
+
+#: ../../enterprise/include/functions_reporting_csv.php:2134
+msgid "Checks Unknown hours"
+msgstr "Comprobaciones en desconocido en horas"
+
+#: ../../enterprise/include/functions_reporting_csv.php:2135
+msgid "Checks Not Init hours"
+msgstr "Comprobaciones en no iniciado en horas"
+
+#: ../../enterprise/include/functions_reporting_csv.php:2136
+msgid "SLA hours"
+msgstr "SLA horas"
+
+#: ../../enterprise/include/functions_reporting_csv.php:2137
+msgid "SLA Fixed hours"
+msgstr "SLA horario fijo"
+
+#: ../../enterprise/include/functions_reporting_csv.php:2138
+msgid "Date From hours"
+msgstr "Desde"
+
+#: ../../enterprise/include/functions_reporting_csv.php:2139
+msgid "Date To hours"
+msgstr "Hasta"
+
+#: ../../enterprise/include/functions_reporting_csv.php:2140
+msgid "Status hours"
+msgstr "Estado horas"
+
+#: ../../enterprise/include/functions_reporting_csv.php:2267
+msgid "Simple Baseline Graph"
+msgstr "Gráfica simple base"
+
+#: ../../enterprise/include/functions_reporting_csv.php:2334
+#: ../../enterprise/meta/include/functions_wizard_meta.php:311
+msgid "Agent modules"
+msgstr "Módulos de agentes"
+
+#: ../../enterprise/include/functions_reporting_csv.php:2465
+msgid "Actions Triggered"
+msgstr "Acciones disparadas"
+
+#: ../../enterprise/include/functions_reporting_csv.php:2465
+msgid "Template Triggered"
+msgstr "Plantillas disparadas"
+
+#: ../../enterprise/include/functions_reporting_csv.php:2502
+msgid "Event Report Log"
+msgstr "Log de informes de eventos"
+
+#: ../../enterprise/include/functions_reporting_csv.php:2605
+msgid "Netflow data chart"
+msgstr "Gráfico de datos de Netflow"
+
+#: ../../enterprise/include/functions_reporting_csv.php:2660
+msgid "Netflow summary"
+msgstr "Resumen de Netflow"
+
+#: ../../enterprise/include/functions_reporting_csv.php:2680
+msgid "Avg. bits/sec"
+msgstr "Promedio de bits/seg."
+
+#: ../../enterprise/include/functions_reporting_csv.php:2680
+msgid "Avg. packets/sec"
+msgstr "Promedio de paquetes/seg."
+
+#: ../../enterprise/include/functions_reporting_csv.php:2680
+msgid "Avg. bytes/packet"
+msgstr "Promedio de bytes/paquete"
+
+#: ../../enterprise/include/functions_reporting_csv.php:2681
+msgid "Dst. IP"
+msgstr "IP de destino"
+
+#: ../../enterprise/include/functions_reporting_csv.php:2707
+msgid "Agent/module status"
+msgstr "Estado del agente/módulo"
+
+#: ../../enterprise/include/functions_reporting_csv.php:2808
+msgid "Average Throughput (bits/sec)"
+msgstr "Rendimiento medio (bits/seg)"
+
+#: ../../enterprise/include/ajax/log_viewer.ajax.php:65
+msgid "Capture regexp"
+msgstr "Regexp de captura"
+
+#: ../../enterprise/include/ajax/log_viewer.ajax.php:75
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1249
+#: ../../enterprise/meta/event/custom_events.php:160
+msgid "Fields"
+msgstr "Campos"
+
+#: ../../enterprise/include/ajax/log_viewer.ajax.php:175
+msgid "Empty ip or port"
+msgstr "IP o puerto vacío"
+
+#: ../../enterprise/include/ajax/log_viewer.ajax.php:192
+msgid "Curl Error: "
+msgstr "Error curl: "
+
+#: ../../enterprise/include/ajax/servers.ajax.php:99
+#: ../../enterprise/include/ajax/servers.ajax.php:157
+#: ../../enterprise/include/ajax/servers.ajax.php:283
+#: ../../enterprise/include/functions_ipam.php:1343
+#: ../../enterprise/godmode/servers/credential_boxes_satellite.php:248
+#: ../../enterprise/godmode/servers/manage_credential_boxes.php:57
+msgid "Subnet"
+msgstr "Subred"
+
+#: ../../enterprise/include/ajax/servers.ajax.php:139
+#: ../../enterprise/godmode/servers/credential_boxes_satellite.php:293
+#: ../../enterprise/godmode/servers/list_satellite.php:69
+msgid "No Data"
+msgstr "No hay datos"
+
+#: ../../enterprise/include/ajax/url_route_analyzer.ajax.php:33
+msgid "Global time: "
+msgstr "Hora global: "
+
+#: ../../enterprise/include/ajax/ipam.ajax.php:249
+msgid "Current Networks"
+msgstr "Redes actuales"
+
+#: ../../enterprise/include/ajax/ipam.ajax.php:296
+msgid "Please, create networks to assign to "
+msgstr "Cree redes que asgignar a "
+
+#: ../../enterprise/include/ajax/ipam.ajax.php:300
+msgid "No networks to assign to supernet"
+msgstr "No hay redes que asignar a la superred"
+
+#: ../../enterprise/include/ajax/ipam.ajax.php:302
+msgid "Please, create networks to assign to"
+msgstr "Creer redes que asignar a"
+
+#: ../../enterprise/include/ajax/ipam.ajax.php:307
+msgid "Create and add networks in bulk"
+msgstr "Crear y agregar redes de forma masiva"
+
+#: ../../enterprise/include/ajax/ipam.ajax.php:316
+msgid "Starting network"
+msgstr "Iniciando red"
+
+#: ../../enterprise/include/ajax/ipam.ajax.php:316
+msgid ""
+"The networks will be created/added starting from this address in the "
+"subnetting range given by the mask. Use CIDR format (e.g.: 192.168.72.0/22). "
+"If no value was provided, it uses the starting address of the supernet by "
+"default."
+msgstr ""
+"Las redes se crearán/agregarán a partir de esta dirección en el rango de "
+"subredes dado por la máscara. Utilice el formato CIDR (por ejemplo: "
+"192.168.72.0/22). Si no se proporcionó ningún valor, utilizará la dirección "
+"inicial de la superred de forma predeterminada."
+
+#: ../../enterprise/include/ajax/ipam.ajax.php:320
+msgid "Max. number"
+msgstr "Número máximo"
+
+#: ../../enterprise/include/ajax/ipam.ajax.php:320
+msgid ""
+"Maximum number of networks to be created/added from starting address of the "
+"range specified above"
+msgstr ""
+"Número máximo de redes que se crearán/agregarán desde la dirección inicial del "
+"rango especificado anteriormente"
+
+#: ../../enterprise/include/ajax/ipam.ajax.php:622
+msgid "Go to supernet edition"
+msgstr "Ir a la edición de superred"
+
+#: ../../enterprise/include/ajax/ipam.ajax.php:664
+msgid "Go to network edition"
+msgstr "Ir a la edición de red"
+
+#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:94
+#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:253
+msgid "Group name"
+msgstr "Nombre del grupo"
+
+#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:118
+msgid "OS name"
+msgstr "Nombre del SO"
+
+#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:128
+#: ../../enterprise/godmode/services/services.elements.php:220
+msgid "Custom field name"
+msgstr "Nombre de campo personalizado"
+
+#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:130
+#: ../../enterprise/godmode/services/services.elements.php:232
+msgid "Custom field value"
+msgstr "Campo de valor personalizado"
+
+#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:136
+msgid "IP Network range"
+msgstr "Intervalo de red IP"
+
+#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:141
+msgid "Script"
+msgstr "Script"
+
+#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:143
+msgid "Arguments"
+msgstr "Argumentos"
+
+#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:149
+msgid "Unknown option"
+msgstr "Opción desconocida"
+
+#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:188
+#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:877
+msgid "Update rule"
+msgstr "Actualizar regla"
+
+#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:190
+#: ../../enterprise/meta/advanced/agents_setup.autoprovision_rules.php:201
+msgid "Create rule"
+msgstr "Crear regla"
+
+#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:213
+#: ../../enterprise/godmode/modules/manage_inventory_modules.php:63
+#: ../../enterprise/godmode/agentes/agent_autoconfiguration.php:129
+#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:323
+#, php-format
+msgid ""
+"This console is not manager of this environment, please manage this feature "
+"from centralized manager console. Go to %s to manage it."
+msgstr ""
+"Esta consola no es el administrador de este entorno, administre esta función "
+"desde la consola del administrador centralizado. Vaya a %s para gestionarlo."
+
+#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:257
+msgid "IP range"
+msgstr "Intervalo IP"
+
+#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:258
+msgid "Script output (> 0)"
+msgstr "Salida del script (> 0)"
+
+#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:272
+#: ../../enterprise/meta/include/functions_autoprovision.php:642
+#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:375
+#: ../../extensions/quick_shell.php:190
+msgid "Method"
+msgstr "Método"
+
+#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:394
+#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:634
+msgid "Op"
+msgstr "Op"
+
+#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:422
+#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:464
+msgid "Launch custom event"
+msgstr "Lanzar evento personalizado"
+
+#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:423
+#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:465
+msgid "Launch alert action"
+msgstr "Lanzar acción de alerta"
+
+#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:455
+#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:567
+#: ../../godmode/snmpconsole/snmp_alert.php:1023
+#: ../../godmode/snmpconsole/snmp_alert.php:1220
+msgid "Alert action"
+msgstr "Acción de alerta"
+
+#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:475
+#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:587
+msgid "Script path"
+msgstr "Ruta del script"
+
+#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:479
+#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:591
+msgid "Script argument"
+msgstr "Argumento del script"
+
+#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:491
+#: ../../godmode/alerts/alert_list.list.php:688
+#: ../../godmode/alerts/alert_list.list.php:1169
+msgid "Update action"
+msgstr "Actualizar acción"
+
+#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:508
+#: ../../enterprise/godmode/alerts/alert_inventory_list.php:344
+#: ../../enterprise/godmode/alerts/alert_inventory_list.php:350
+#: ../../enterprise/godmode/alerts/alert_inventory_list.php:444
+#: ../../enterprise/godmode/policies/policy_external_alerts.php:508
+#: ../../enterprise/godmode/policies/policy_alerts.php:754
+#: ../../godmode/snmpconsole/snmp_alert.php:1317
+#: ../../godmode/alerts/alert_list.list.php:899
+#: ../../godmode/alerts/alert_list.list.php:906
+#: ../../godmode/alerts/alert_list.list.php:1132
+msgid "Add action"
+msgstr "Añadir acción"
+
+#: ../../enterprise/include/ajax/top_n_widget.ajax.php:79
+msgid "avg"
+msgstr "media"
+
+#: ../../enterprise/include/ajax/top_n_widget.ajax.php:80
+#: ../../godmode/reporting/reporting_builder.item_editor.php:4267
+msgid "max"
+msgstr "máx"
+
+#: ../../enterprise/include/ajax/top_n_widget.ajax.php:81
+#: ../../godmode/reporting/reporting_builder.item_editor.php:4268
+msgid "min"
+msgstr "mín"
+
+#: ../../enterprise/include/ajax/top_n_widget.ajax.php:82
+#: ../../godmode/reporting/reporting_builder.item_editor.php:4269
+msgid "sum"
+msgstr "suma"
+
+#: ../../enterprise/include/class/SAPView.class.php:146
+#: ../../enterprise/include/class/SAPView.class.php:190
+msgid "SAP View"
+msgstr "Vista SAP"
+
+#: ../../enterprise/include/class/SAPView.class.php:164
+msgid "SAP data not found."
+msgstr "Datos SAP no encontrados."
+
+#: ../../enterprise/include/class/SAPView.class.php:258
+msgid "Refresh Every"
+msgstr "Refrescar cada"
+
+#: ../../enterprise/include/class/SAPView.class.php:259
+#: ../../enterprise/include/class/SAPView.class.php:296
+#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:562
+#: ../../enterprise/include/class/Aws.cloud.php:1343
+#: ../../enterprise/include/class/Aws.S3.php:531
+#: ../../enterprise/include/class/MySQL.app.php:583
+#: ../../enterprise/include/class/Oracle.app.php:568
+#: ../../enterprise/include/class/DB2.app.php:561
+#: ../../enterprise/include/class/SAP.app.php:540
+#: ../../enterprise/include/class/VMware.app.php:693
+msgid "The minimum recomended interval is 5 minutes"
+msgstr "El intervalo mínimo recomendado es de 5 minutos"
+
+#: ../../enterprise/include/class/SAPView.class.php:295
+msgid "Graph Interval"
+msgstr "Intervalo de gráfica"
+
+#: ../../enterprise/include/class/SAPView.class.php:626
+msgid ""
+"SAP view offers you to see the most important modules Discovery Server is "
+"usually configured to retry. You have not configured a Discovery SAP R3 task "
+"yet, please visit"
+msgstr ""
+"La vista SAP le ofrece los módulos más importantes. El servidor Discovery "
+"normalmente está configurado para hacer reintentos. Si aún no ha configurado "
+"la tarea Discovery SAP R3, visite"
+
+#: ../../enterprise/include/class/SAPView.class.php:626
+#: ../../enterprise/extensions/vmware/vmware_view.php:1240
+#: ../../enterprise/extensions/vmware/vmware_view.php:1526
+msgid "this link"
+msgstr "este enlace"
+
+#: ../../enterprise/include/class/SAPView.class.php:626
+msgid "to start monitoring your SAP infrastructure."
+msgstr "para comenzar a monitorizar su infraestructura SAP"
+
+#: ../../enterprise/include/class/SAPView.class.php:633
+msgid "Discover SAP"
+msgstr "Descubrir SAP"
+
+#: ../../enterprise/include/class/CSVImportAgents.class.php:114
+#: ../../enterprise/godmode/menu.php:159
+#: ../../godmode/wizards/HostDevices.class.php:159
+msgid "Import CSV"
+msgstr "Importar CSV"
+
+#: ../../enterprise/include/class/CSVImportAgents.class.php:121
+msgid "The CSV file must have the fields in the following order:"
+msgstr "El archivo CSV debe tener los campos en el siguiente orden:"
+
+#: ../../enterprise/include/class/CSVImportAgents.class.php:122
+msgid "Agent alias, IP address, OS id, Interval, Group id, Description"
+msgstr ""
+"Alias de agente, dirección IP, ID del SO, Intervalo, ID de grupo, Descripción"
+
+#: ../../enterprise/include/class/CSVImportAgents.class.php:177
+msgid "Alias as name"
+msgstr "Alias como nombre"
+
+#: ../../enterprise/include/class/CSVImportAgents.class.php:242
+msgid "No data or wrong separator"
+msgstr "No hay datos o separador incorrecto"
+
+#: ../../enterprise/include/class/CSVImportAgents.class.php:248
+#, php-format
+msgid "Agent %s duplicated."
+msgstr "Agente %s duplicado"
+
+#: ../../enterprise/include/class/CSVImportAgents.class.php:255
+#, php-format
+msgid "Id group %s doesn't exist in %s"
+msgstr "El ID de grupo %s no existe en %s"
+
+#: ../../enterprise/include/class/CSVImportAgents.class.php:263
+msgid "General failure."
+msgstr "Fallo general."
+
+#: ../../enterprise/include/class/CSVImportAgents.class.php:284
+msgid "No input file detected"
+msgstr "N se ha detectado archivo de entrada"
+
+#: ../../enterprise/include/class/CSVImportAgents.class.php:373
+msgid "Agent processed successfully"
+msgstr "Agente procesado correctamente"
+
+#: ../../enterprise/include/class/CSVImportAgents.class.php:379
+msgid "Some errors while processing CSV."
+msgstr "Algunos errores al procesar CSV."
+
+#: ../../enterprise/include/class/CSVImportAgents.class.php:382
+msgid "All agents processed correctly"
+msgstr "Todos los agentes procesados correctamente"
+
+#: ../../enterprise/include/class/CSVImportAgents.class.php:389
+#, php-format
+msgid "Line %s"
+msgstr "Línea %s"
+
+#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:171
+msgid ""
+"This Microsoft SQL Server configuration has been already defined. Please edit "
+"it or create a new one."
+msgstr ""
+"La configuración del servidor Microsoft SQL ya se ha definido. Edite o cree "
+"una nueva."
+
+#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:213
+msgid "You must provide a valid Microsoft SQL Server server IP or FQDN."
+msgstr "Debe añadir una IP de servidor Microsoft SQL o FQDN."
+
+#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:277
+msgid "Failed to find discovery Microsoft SQL Server task."
+msgstr ""
+"No se ha podido encontrar la tarea de descubrimiento del servidor Microsoft "
+"SQL."
+
+#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:388
+#: ../../enterprise/include/class/MySQL.app.php:403
+#: ../../enterprise/include/class/Oracle.app.php:393
+#: ../../enterprise/include/class/DB2.app.php:386
+#: ../../enterprise/include/class/SAP.app.php:336
+#: ../../enterprise/include/class/VMware.app.php:486
+msgid "Application"
+msgstr "Aplicación"
+
+#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:406
+#: ../../enterprise/godmode/menu.php:173
+msgid "Microsoft SQL Server"
+msgstr "Servidor Microsoft SQL"
+
+#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:472
+#: ../../enterprise/include/class/Aws.cloud.php:1234
+#: ../../enterprise/include/class/Aws.S3.php:435
+#: ../../enterprise/include/class/MySQL.app.php:475
+#: ../../enterprise/include/class/Oracle.app.php:477
+#: ../../enterprise/include/class/DB2.app.php:470
+#: ../../enterprise/include/class/SAP.app.php:644
+#: ../../enterprise/include/class/VMware.app.php:763
+msgid "This group will be used also to classify discovered agents"
+msgstr "Este grupo se usará para clasificar los agentes encontrados"
+
+#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:487
+msgid "Microsoft SQL Server targets"
+msgstr "Objetivos del servidor Microsoft SQL"
+
+#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:488
+msgid ""
+"SERVER:PORT\\INSTANCE, comma separated or line by line, as many targets as you "
+"need."
+msgstr ""
+"SERVIDOR:PUERTO\\INSTANCIA, separados por coma o línea por línea, tantos "
+"objetivos como necesite."
+
+#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:488
+#: ../../enterprise/include/class/Oracle.app.php:494
+#: ../../enterprise/include/class/DB2.app.php:487
+msgid "Use # symbol to comment a line."
+msgstr "Use el símbolo # para comentar una línea."
+
+#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:635
+#: ../../enterprise/include/class/MySQL.app.php:656
+#: ../../enterprise/include/class/Oracle.app.php:641
+#: ../../enterprise/include/class/DB2.app.php:634
+msgid "Target agent"
+msgstr "Agente objetivo"
+
+#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:636
+#: ../../enterprise/include/class/Oracle.app.php:642
+#: ../../enterprise/include/class/DB2.app.php:635
+msgid ""
+"Defines a target agent where this task will store data detected, if you have "
+"defined multiple targets, define a comma separated list of names here or leave "
+"in blank to use target as name."
+msgstr ""
+"Define un objetivo de agente donde la tarea almacenará los datos detectados. "
+"Si ha definido varios objetivos, defina una lista de nombres separados por "
+"coma o déjelo en blanco para usar el objetivo como nombre."
+
+#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:655
+#: ../../enterprise/include/class/MySQL.app.php:676
+#: ../../enterprise/include/class/Oracle.app.php:661
+#: ../../enterprise/include/class/DB2.app.php:654
+msgid "Custom module prefix"
+msgstr "Prefijo de módulo personalizado"
+
+#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:656
+#: ../../enterprise/include/class/MySQL.app.php:677
+#: ../../enterprise/include/class/Oracle.app.php:662
+#: ../../enterprise/include/class/DB2.app.php:655
+msgid ""
+"Defines a custom prefix to be concatenated before module names generated by "
+"this task."
+msgstr ""
+"Define un prefijo personalizado para concatenar antes de los nombres de "
+"módulos generados por esta tarea."
+
+#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:674
+#: ../../enterprise/include/class/MySQL.app.php:757
+#: ../../enterprise/include/class/Oracle.app.php:680
+msgid "Check engine uptime"
+msgstr "Comprobar disponibilidad del motor"
+
+#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:690
+#: ../../enterprise/include/class/MySQL.app.php:773
+#: ../../enterprise/include/class/Oracle.app.php:696
+msgid "Retrieve query statistics"
+msgstr "Obtener estadísticas de consultas"
+
+#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:706
+#: ../../enterprise/include/class/MySQL.app.php:789
+#: ../../enterprise/include/class/Oracle.app.php:712
+msgid "Analyze connections"
+msgstr "Analizar conexiones"
+
+#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:722
+#: ../../enterprise/include/class/MySQL.app.php:837
+#: ../../enterprise/include/class/Oracle.app.php:776
+#: ../../enterprise/include/class/DB2.app.php:753
+msgid "Execute custom queries"
+msgstr "Ejecutar consultas personalizadas"
+
+#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:774
+#: ../../enterprise/include/class/MySQL.app.php:889
+#: ../../enterprise/include/class/Oracle.app.php:930
+#: ../../enterprise/include/class/DB2.app.php:821
+msgid "Custom queries"
+msgstr "Consultas personalizadas"
+
+#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:775
+#: ../../enterprise/include/class/MySQL.app.php:890
+#: ../../enterprise/include/class/Oracle.app.php:931
+#: ../../enterprise/include/class/DB2.app.php:822
+msgid "Define here your custom queries."
+msgstr "Defina aquí sus consultas personalizadas."
+
+#: ../../enterprise/include/class/Aws.cloud.php:113
+#: ../../enterprise/include/class/Azure.cloud.php:148
+#: ../../enterprise/include/class/Google.cloud.php:142
+msgid "Cloud message"
+msgstr "Mensaje en la nube"
+
+#: ../../enterprise/include/class/Aws.cloud.php:115
+#: ../../enterprise/include/class/Aws.cloud.php:162
+#: ../../enterprise/include/class/Azure.cloud.php:150
+#: ../../enterprise/include/class/Azure.cloud.php:194
+#: ../../enterprise/include/class/Google.cloud.php:144
+#: ../../enterprise/include/class/Google.cloud.php:188
+#: ../../enterprise/godmode/menu.php:193
+#: ../../enterprise/godmode/wizards/Cloud.class.php:186
+#: ../../enterprise/godmode/wizards/Cloud.class.php:195
+msgid "Cloud"
+msgstr "Nube"
+
+#: ../../enterprise/include/class/Aws.cloud.php:158
+#: ../../enterprise/include/class/Azure.cloud.php:190
+#: ../../enterprise/include/class/DeploymentCenter.class.php:590
+#: ../../enterprise/include/class/Google.cloud.php:184
+#: ../../enterprise/godmode/wizards/Applications.class.php:157
+#: ../../enterprise/godmode/wizards/Cloud.class.php:182
+#: ../../godmode/servers/discovery.php:59 ../../godmode/menu.php:62
+#: ../../godmode/wizards/HostDevices.class.php:190
+msgid "Discovery"
+msgstr "Discovery"
+
+#: ../../enterprise/include/class/Aws.cloud.php:343
+msgid "Recon"
+msgstr "Reconocimento"
+
+#: ../../enterprise/include/class/Aws.cloud.php:344
+msgid "Costs"
+msgstr "Costes"
+
+#: ../../enterprise/include/class/Aws.cloud.php:346
+msgid "Instances"
+msgstr "Instancias"
+
+#: ../../enterprise/include/class/Aws.cloud.php:441
+msgid "Amazon EC2"
+msgstr "Amazon EC2"
+
+#: ../../enterprise/include/class/Aws.cloud.php:446
+msgid "Amazon RDS"
+msgstr "Amazon RDS"
+
+#: ../../enterprise/include/class/Aws.cloud.php:451
+msgid "S3 Buckets"
+msgstr "S3 Buckets"
+
+#: ../../enterprise/include/class/Aws.cloud.php:471
+#: ../../godmode/wizards/HostDevices.class.php:696
+msgid "NetScan"
+msgstr "NetScan"
+
+#: ../../enterprise/include/class/Aws.cloud.php:500
+#: ../../enterprise/include/class/Aws.S3.php:554
+#: ../../enterprise/include/class/VMware.app.php:547
+msgid ""
+"This kind of task uses multipurpose plugins in order to generate monitoring "
+"data, configure your desired tentacle target."
+msgstr ""
+"Este tipo de tarea usa plugins multi función para generar datos de "
+"monitorización, configure el objetivo Tentacle deseado."
+
+#: ../../enterprise/include/class/Aws.cloud.php:510
+msgid "Discovery task name"
+msgstr "Nombre de la tarea de discovery"
+
+#: ../../enterprise/include/class/Aws.cloud.php:540
+#: ../../enterprise/include/class/Aws.S3.php:559
+#: ../../enterprise/include/class/VMware.app.php:614
+#: ../../enterprise/include/class/Azure.cloud.php:797
+msgid "Tentacle options"
+msgstr "Opciones de Tentacle"
+
+#: ../../enterprise/include/class/Aws.cloud.php:566
+#: ../../enterprise/include/class/Aws.S3.php:584
+#: ../../enterprise/include/class/VMware.app.php:643
+#: ../../enterprise/include/class/Azure.cloud.php:823
+#: ../../enterprise/godmode/servers/manage_export_form.php:129
+msgid "Extra options"
+msgstr "Opciones adicionales"
+
+#: ../../enterprise/include/class/Aws.cloud.php:614
+msgid "Total cost"
+msgstr "Coste total"
+
+#: ../../enterprise/include/class/Aws.cloud.php:631
+msgid "Cost by region"
+msgstr "Coste por región"
+
+#: ../../enterprise/include/class/Aws.cloud.php:645
+msgid "Cost interval"
+msgstr "Intervalo de coste"
+
+#: ../../enterprise/include/class/Aws.cloud.php:671
+#: ../../enterprise/include/class/Azure.cloud.php:928
+msgid "Scan and general monitoring."
+msgstr "Escaneo y monitorización general."
+
+#: ../../enterprise/include/class/Aws.cloud.php:688
+#: ../../enterprise/include/class/Azure.cloud.php:941
+msgid "Cpu performance summary"
+msgstr "Resumen del rendimiento de CPU"
+
+#: ../../enterprise/include/class/Aws.cloud.php:698
+#: ../../enterprise/include/class/Azure.cloud.php:949
+#: ../../enterprise/include/class/Google.cloud.php:911
+msgid "IOPS performance summary"
+msgstr "Resumen del rendimiento de IOPS"
+
+#: ../../enterprise/include/class/Aws.cloud.php:708
+#: ../../enterprise/include/class/Azure.cloud.php:957
+#: ../../enterprise/include/class/Google.cloud.php:919
+msgid "Disk performance summary"
+msgstr "Resumen del rendimiento de disco"
+
+#: ../../enterprise/include/class/Aws.cloud.php:718
+#: ../../enterprise/include/class/Azure.cloud.php:965
+#: ../../enterprise/include/class/Google.cloud.php:927
+msgid "Network performance summary"
+msgstr "Resumen del rendimiento de la red"
+
+#: ../../enterprise/include/class/Aws.cloud.php:742
+#: ../../enterprise/include/class/Aws.cloud.php:1274
+#: ../../enterprise/include/class/Azure.cloud.php:872
+#: ../../enterprise/include/class/Google.cloud.php:822
+msgid "No instances found."
+msgstr "No se han encontrado instancias."
+
+#: ../../enterprise/include/class/Aws.cloud.php:773
+msgid "Select EC2 instances"
+msgstr "Seleccionar instancias EC2"
+
+#: ../../enterprise/include/class/Aws.cloud.php:789
+msgid "Storage"
+msgstr "Almacenamiento"
+
+#: ../../enterprise/include/class/Aws.cloud.php:799
+msgid "Elastic IP Adresses"
+msgstr "Direcciones IP elásticas"
+
+#: ../../enterprise/include/class/Aws.cloud.php:982
+msgid "You must select at least one RDS instance."
+msgstr "Debe seleccionar al menos una instancia RDS"
+
+#: ../../enterprise/include/class/Aws.cloud.php:987
+msgid ""
+"You cannot monitor RDS instances from different types. Please define several "
+"tasks for several types."
+msgstr ""
+"No puede monitorizar las instancias RDS desde diferentes tipos. Defina varias "
+"tareas para diferentes tipos."
+
+#: ../../enterprise/include/class/Aws.cloud.php:994
+msgid "Discovery.Cloud.AWS.RDS"
+msgstr "Discovery.Cloud.AWS.RDS"
+
+#: ../../enterprise/include/class/Aws.cloud.php:1160
+msgid "RDS"
+msgstr "RDS"
+
+#: ../../enterprise/include/class/Aws.cloud.php:1165
+msgid "DB monitoring"
+msgstr "Monitorización de base de datos"
+
+#: ../../enterprise/include/class/Aws.cloud.php:1175
+msgid "AWS RDS"
+msgstr "AWS RDS"
+
+#: ../../enterprise/include/class/Aws.cloud.php:1249
+msgid "Global DB User"
+msgstr "Usuario de la base de datos global"
+
+#: ../../enterprise/include/class/Aws.cloud.php:1259
+msgid "Global DB password"
+msgstr "Contraseña de la base de datos global"
+
+#: ../../enterprise/include/class/Aws.cloud.php:1349
+msgid "Select RDS instances"
+msgstr "Seleccionar instancias RDS"
+
+#: ../../enterprise/include/class/Aws.cloud.php:1492
+#: ../../enterprise/include/class/Azure.cloud.php:355
+#: ../../enterprise/include/class/Google.cloud.php:349
+#, php-format
+msgid "%s not found or not executable"
+msgstr "%s no encontrado o no ejecutable"
+
+#: ../../enterprise/include/class/Aws.cloud.php:1652
+msgid "Invalid group"
+msgstr "Grupo no válido"
+
+#: ../../enterprise/include/class/Aws.cloud.php:1710
+msgid "Cannot update the recon database"
+msgstr "No se ha podido actualizar la base de datos de reconocimiento"
+
+#: ../../enterprise/include/class/Aws.cloud.php:1732
+msgid "Engine not supported"
+msgstr "Motor no compatible"
+
+#: ../../enterprise/include/class/AgentRepository.class.php:262
+#: ../../enterprise/include/class/DeploymentCenter.class.php:956
+msgid "Deploying"
+msgstr "Desplegar"
+
+#: ../../enterprise/include/class/AgentRepository.class.php:336
+msgid "Time in seconds before deployment is cancelled."
+msgstr "Tiempo en segundos antes de que se cancele la implementación."
+
+#: ../../enterprise/include/class/AgentRepository.class.php:354
+#: ../../enterprise/include/class/AgentRepository.class.php:631
+#: ../../enterprise/include/class/AgentRepository.class.php:681
+#: ../../enterprise/include/class/DeploymentCenter.class.php:757
+#: ../../enterprise/include/class/DeploymentCenter.class.php:825
+#: ../../enterprise/include/class/DeploymentCenter.class.php:1301
+#: ../../enterprise/include/class/DeploymentCenter.class.php:1397
+msgid "Architecture"
+msgstr "Arquitectura"
+
+#: ../../enterprise/include/class/AgentRepository.class.php:375
+msgid "Transfer timeout"
+msgstr "Tiempo de espera de transferencia"
+
+#: ../../enterprise/include/class/AgentRepository.class.php:383
+msgid "Installation file"
+msgstr "Archivo de instalación"
+
+#: ../../enterprise/include/class/AgentRepository.class.php:423
+msgid "Agent version is required"
+msgstr "Se requiere versión de agente"
+
+#: ../../enterprise/include/class/AgentRepository.class.php:429
+#: ../../enterprise/include/class/DeploymentCenter.class.php:245
+msgid "Target OS is required"
+msgstr "Se requiere SO de destion"
+
+#: ../../enterprise/include/class/AgentRepository.class.php:431
+#: ../../enterprise/include/class/DeploymentCenter.class.php:247
+msgid "Target architecture is required"
+msgstr "Se requiere arquitectura de destino"
+
+#: ../../enterprise/include/class/AgentRepository.class.php:440
+#: ../../enterprise/include/class/NetworkConfigManager.class.php:2089
+msgid "Cannot create target dir ["
+msgstr "No se ha podido crear el dir de destino ["
+
+#: ../../enterprise/include/class/AgentRepository.class.php:461
+#, php-format
+msgid "Invalid installation file for %s"
+msgstr "Archivo de instalación para %s no válido"
+
+#: ../../enterprise/include/class/AgentRepository.class.php:490
+msgid "Installation files not modified"
+msgstr "Archivos de instalación no modificados"
+
+#: ../../enterprise/include/class/AgentRepository.class.php:509
+msgid "Installation files updated"
+msgstr "Archivos de instalación actualizados"
+
+#: ../../enterprise/include/class/AgentRepository.class.php:512
+#: ../../enterprise/meta/include/functions_wizard_meta.php:2341
+msgid "Agent successfully updated"
+msgstr "Agente actualizado correctamente"
+
+#: ../../enterprise/include/class/AgentRepository.class.php:516
+msgid "You must provide installation files to create a new entry."
+msgstr "Añada archivos de instalación para crear una nueva entrada."
+
+#: ../../enterprise/include/class/AgentRepository.class.php:537
+msgid "This agent has been already defined."
+msgstr "El agente ya ha sido definido."
+
+#: ../../enterprise/include/class/AgentRepository.class.php:553
+msgid "Agent successfully registered and uploaded"
+msgstr "Agente registrado y actualizado correctamente"
+
+#: ../../enterprise/include/class/AgentRepository.class.php:591
+#: ../../enterprise/include/class/DeploymentCenter.class.php:335
+msgid "Target successfully deleted"
+msgstr "Objetivo borrado correctamente"
+
+#: ../../enterprise/include/class/AgentRepository.class.php:613
+#: ../../enterprise/godmode/menu.php:126
+msgid "Software agents repository"
+msgstr "Repositorio de agentes software"
+
+#: ../../enterprise/include/class/AgentRepository.class.php:633
+msgid "Uploaded by"
+msgstr "Subido por"
+
+#: ../../enterprise/include/class/AgentRepository.class.php:634
+msgid "Upload date"
+msgstr "Fecha de subida"
+
+#: ../../enterprise/include/class/AgentRepository.class.php:713
+msgid "Add new software"
+msgstr "Añadir nuevo software"
+
+#: ../../enterprise/include/class/AgentRepository.class.php:900
+msgid "Add new Software agent"
+msgstr "Añadir nuevo agente software"
+
+#: ../../enterprise/include/class/AgentRepository.class.php:903
+msgid "Update Software agent"
+msgstr "Actualizar agente software"
+
+#: ../../enterprise/include/class/LogSource.class.php:455
+msgid "Source is required"
+msgstr "Fuente requerida"
+
+#: ../../enterprise/include/class/LogSource.class.php:562
+msgid "id cannot be empty"
+msgstr "El Id no puede estar vacío"
+
+#: ../../enterprise/include/class/LogSource.class.php:610
+#, php-format
+msgid "Log monitoring is disabled. %s"
+msgstr "La monitorización de logs está desactivada. %s"
+
+#: ../../enterprise/include/class/LogSource.class.php:680
+#: ../../enterprise/include/class/LogSource.class.php:846
+msgid "Add log source"
+msgstr "Añadir fuente de logs"
+
+#: ../../enterprise/include/class/LogSource.class.php:715
+msgid "Source name"
+msgstr "Nombre de la fuente"
+
+#: ../../enterprise/include/class/LogSource.class.php:850
+msgid "Update log source"
+msgstr "Actualizar fuente del log"
+
+#: ../../enterprise/include/class/Aws.S3.php:60
+msgid "Aws S3"
+msgstr "Aws S3"
+
+#: ../../enterprise/include/class/Aws.S3.php:214
+msgid "You must select something."
+msgstr "Debe seleccionar algo."
+
+#: ../../enterprise/include/class/Aws.S3.php:236
+msgid "Discovery.Cloud.AWS.S3"
+msgstr "Discovery.Cloud.AWS.S3"
+
+#: ../../enterprise/include/class/Aws.S3.php:294
+msgid "Unknown task"
+msgstr "Tarea desconocida"
+
+#: ../../enterprise/include/class/Aws.S3.php:313
+msgid "Unknown section."
+msgstr "Sección desconocida."
+
+#: ../../enterprise/include/class/Aws.S3.php:339
+msgid "S3"
+msgstr "S3"
+
+#: ../../enterprise/include/class/Aws.S3.php:344
+msgid "Bucket monitoring"
+msgstr "Monitorización de buckets."
+
+#: ../../enterprise/include/class/Aws.S3.php:454
+msgid "No buckets found."
+msgstr "No se han encontrado buckets."
+
+#: ../../enterprise/include/class/Aws.S3.php:598
+msgid "Select Buckets to be monitored"
+msgstr "Seleccionar buckets a monitorizar"
+
+#: ../../enterprise/include/class/Aws.S3.php:633
+msgid "Monitor bucket size"
+msgstr "Monitorizar tamaño de bucket"
+
+#: ../../enterprise/include/class/Aws.S3.php:643
+msgid "Monitor bucket total items"
+msgstr "Monitorizar elementos totales de bucket"
+
+#: ../../enterprise/include/class/MySQL.app.php:173
+msgid ""
+"This MySQL configuration has been already defined. Please edit it or create a "
+"new one."
+msgstr "Ya se ha definido esta configuración MySQL. Edítela o cree una nueva."
+
+#: ../../enterprise/include/class/MySQL.app.php:216
+msgid "You must provide a valid MySQL server IP or FQDN."
+msgstr "Añada una IP de servidor MySQL válida o FQDN."
+
+#: ../../enterprise/include/class/MySQL.app.php:221
+msgid "You must provide a valid port number."
+msgstr "Añada un número de puerto válido."
+
+#: ../../enterprise/include/class/MySQL.app.php:233
+msgid "Discovery.Application.MySQL"
+msgstr "Discovery.Application.MySQL"
+
+#: ../../enterprise/include/class/MySQL.app.php:285
+msgid "Failed to find discovery MySQL task."
+msgstr "No se ha encontrado la tarea discovery MySQL."
+
+#: ../../enterprise/include/class/MySQL.app.php:420
+#: ../../enterprise/godmode/setup/setup.php:178
+msgid "MySQL"
+msgstr "MySQL"
+
+#: ../../enterprise/include/class/MySQL.app.php:491
+msgid "MySQL server IP"
+msgstr "IP del servidor MySQL"
+
+#: ../../enterprise/include/class/MySQL.app.php:492
+msgid "Comma separated, as many targets as you need."
+msgstr "Tantos objetivos como desee, separados por comas."
+
+#: ../../enterprise/include/class/MySQL.app.php:511
+msgid "MySQL server Port"
+msgstr "Puerto del servidor MySQL"
+
+#: ../../enterprise/include/class/MySQL.app.php:657
+msgid ""
+"Defines a target agent where this task will store data detected, if you have "
+"defined multiple targets, define a comma separated list of names here or leave "
+"in blank to use server IP address/ FQDN."
+msgstr ""
+"Define un agente de destino donde la tarea almacenará los datos detectados. Si "
+"tiene varios objetivos definidos, defina una lista de nombres separados por "
+"coma aquí o déjelo en blanco para usar la dirección IP/FQDN del servidor."
+
+#: ../../enterprise/include/class/MySQL.app.php:698
+msgid "Scan databases"
+msgstr "Bases de datos de escaneo"
+
+#: ../../enterprise/include/class/MySQL.app.php:714
+msgid "Create agent per database"
+msgstr "Crear agente por base de datos"
+
+#: ../../enterprise/include/class/MySQL.app.php:735
+msgid "Custom database agent prefix"
+msgstr "Prefijo de agente de base de datos personalizado"
+
+#: ../../enterprise/include/class/MySQL.app.php:736
+msgid ""
+"Defines a custom prefix to be concatenated before database agent names "
+"generated by this task."
+msgstr ""
+"Define un prefijo personalizado a concatenar antes de los nombres de agentes "
+"de base de datos generados por esta tarea."
+
+#: ../../enterprise/include/class/MySQL.app.php:805
+msgid "Retrieve InnoDB statistics"
+msgstr "Obtener estadísticas InnoDB"
+
+#: ../../enterprise/include/class/MySQL.app.php:821
+#: ../../enterprise/include/class/Oracle.app.php:760
+#: ../../enterprise/include/class/DB2.app.php:737
+msgid "Retrieve cache statistics"
+msgstr "Obtener estadísticas de bases de datos"
+
+#: ../../enterprise/include/class/Oracle.app.php:172
+msgid ""
+"This Oracle configuration has been already defined. Please edit it or create a "
+"new one."
+msgstr "Esta configuración Oracle ya se ha definido. Edítela o cree una nueva."
+
+#: ../../enterprise/include/class/Oracle.app.php:214
+msgid "You must provide a valid Oracle server IP or FQDN."
+msgstr "Añada una IP de servidor o FQDN de Oracle válidos."
+
+#: ../../enterprise/include/class/Oracle.app.php:226
+msgid "Discovery.Application.Oracle"
+msgstr "Discovery.Application.Oracle"
+
+#: ../../enterprise/include/class/Oracle.app.php:277
+msgid "Failed to find discovery Oracle task."
+msgstr "No se ha podido encontrar la tarea discovery Oracle."
+
+#: ../../enterprise/include/class/Oracle.app.php:411
+#: ../../enterprise/godmode/setup/setup.php:179
+#: ../../enterprise/godmode/menu.php:175
+msgid "Oracle"
+msgstr "Oracle"
+
+#: ../../enterprise/include/class/Oracle.app.php:493
+msgid "Oracle target strings"
+msgstr "Cadenas objetivo de Oracle"
+
+#: ../../enterprise/include/class/Oracle.app.php:494
+msgid ""
+"SERVER:PORT/SID, comma separated or line by line, as many targets as you need."
+msgstr ""
+"SERVER:PORT/SID, separados por coma o línea por línea, tantos objetivos como "
+"precise."
+
+#: ../../enterprise/include/class/Oracle.app.php:728
+msgid "Calculate fragmentation ratio"
+msgstr "Calcular la tasa de fragmentación"
+
+#: ../../enterprise/include/class/Oracle.app.php:744
+msgid "Monitor tablespaces"
+msgstr "Espacio de tablas del monitor"
+
+#: ../../enterprise/include/class/DB2.app.php:165
+msgid ""
+"This DB2 configuration has been already defined. Please edit it or create a "
+"new one."
+msgstr "Esta configuración DB2 ya se ha definido. Edite o cree una nueva."
+
+#: ../../enterprise/include/class/DB2.app.php:207
+msgid "You must provide a valid DB2 server IP or FQDN."
+msgstr "Debe proveer una IP de servidor DB2 válida o FQDN."
+
+#: ../../enterprise/include/class/DB2.app.php:219
+msgid "Discovery.Application.DB2"
+msgstr "Discovery.Aplicación.DB2"
+
+#: ../../enterprise/include/class/DB2.app.php:270
+msgid "Failed to find discovery DB2 task."
+msgstr "No se ha podido encontrar la tarea DB2 de discovery."
+
+#: ../../enterprise/include/class/DB2.app.php:404
+#: ../../enterprise/godmode/menu.php:178
+msgid "DB2"
+msgstr "DB2"
+
+#: ../../enterprise/include/class/DB2.app.php:486
+msgid "DB2 target strings"
+msgstr "Cadenas objetivo de DB2"
+
+#: ../../enterprise/include/class/DB2.app.php:487
+msgid ""
+"SERVER:PORT/DATABASE, comma separated or line by line, as many targets as you "
+"need."
+msgstr ""
+"SERVIDOR:PUERTO/BASE DE DATOS, separados por coma o línea por línea, tantos "
+"objetivos como desee."
+
+#: ../../enterprise/include/class/DB2.app.php:673
+msgid "Get database summary"
+msgstr "Obtener resumen de base de datos"
+
+#: ../../enterprise/include/class/DB2.app.php:689
+msgid "Check transactional log utilization"
+msgstr "Comprobar uso de logs transaccionales"
+
+#: ../../enterprise/include/class/DB2.app.php:705
+msgid "Get number of connections"
+msgstr "Obtener número de conexiones"
+
+#: ../../enterprise/include/class/DB2.app.php:721
+msgid "Check DB size"
+msgstr "Comprobar tamaño de la base de datos"
+
+#: ../../enterprise/include/class/SAP.app.php:154
+msgid ""
+"This SAP configuration has been already defined. Please edit it or create a "
+"new one."
+msgstr "Ya se ha definido esta configuración SAP. Edítela o cree una nueva."
+
+#: ../../enterprise/include/class/SAP.app.php:195
+msgid "You must specify at last one SAP hostname."
+msgstr "Especifique al menos un nombre de host SAP."
+
+#: ../../enterprise/include/class/SAP.app.php:206
+msgid "Discovery.Application.SAP"
+msgstr "Discovery.Application.SAP"
+
+#: ../../enterprise/include/class/SAP.app.php:262
+msgid "Failed to find discovery SAP task."
+msgstr "No se ha encontrado la tarea de discovery SAP."
+
+#: ../../enterprise/include/class/SAP.app.php:286
+msgid "Select at least a module."
+msgstr "Seleccione al menos un módulo."
+
+#: ../../enterprise/include/class/SAP.app.php:354
+msgid "SAP R3"
+msgstr "SAP R3"
+
+#: ../../enterprise/include/class/SAP.app.php:371
+#: ../../enterprise/include/class/DeploymentCenter.class.php:482
+#: ../../enterprise/include/class/DeploymentCenter.class.php:490
+#: ../../enterprise/include/class/DeploymentCenter.class.php:498
+#: ../../enterprise/include/class/DeploymentCenter.class.php:657
+#: ../../enterprise/extensions/vmware/vmware_view.php:1737
+msgid "here"
+msgstr "aquí"
+
+#: ../../enterprise/include/class/SAP.app.php:547
+msgid "SAP Hostname"
+msgstr "Nombre del host SAP"
+
+#: ../../enterprise/include/class/SAP.app.php:571
+msgid "SAP Client"
+msgstr "Cliente SAP"
+
+#: ../../enterprise/include/class/SAP.app.php:585
+msgid "SAP System Number"
+msgstr "Número del sistema SAP"
+
+#: ../../enterprise/include/class/SAP.app.php:604
+#: ../../enterprise/include/class/SAP.app.php:607
+#: ../../enterprise/include/class/DeploymentCenter.class.php:1135
+#: ../../enterprise/include/class/DeploymentCenter.class.php:1138
+#: ../../enterprise/include/class/DeploymentCenter.class.php:1265
+#: ../../enterprise/include/class/DeploymentCenter.class.php:1268
+#: ../../godmode/wizards/HostDevices.class.php:1434
+#: ../../godmode/wizards/HostDevices.class.php:1437
+msgid "No credentials available"
+msgstr "No hay credenciales disponibles"
+
+#: ../../enterprise/include/class/SAP.app.php:605
+#: ../../enterprise/include/class/DeploymentCenter.class.php:1136
+#: ../../enterprise/include/class/DeploymentCenter.class.php:1266
+#: ../../godmode/wizards/HostDevices.class.php:1435
+#: ../../godmode/agentes/module_manager_editor_network.php:474
+msgid "Manage credentials"
+msgstr "Gestionar credenciales"
+
+#: ../../enterprise/include/class/SAP.app.php:617
+#: ../../enterprise/include/class/SAP.app.php:631
+msgid "SAP Credentials"
+msgstr "Credenciales SAP"
+
+#: ../../enterprise/include/class/SAP.app.php:617
+#: ../../enterprise/include/class/SAP.app.php:631
+msgid "Optional"
+msgstr "Opcional"
+
+#: ../../enterprise/include/class/SAP.app.php:764
+#, php-format
+msgid ""
+"Module 180 must be customized before being used, please use advanced options "
+"to define the module following the documentation:<br> %s"
+msgstr ""
+"El módulo 180 debe personalizarse antes de usarse, use las opciones avanzadas "
+"para definir el módulo siguiendo la documentación:<br> %s"
+
+#: ../../enterprise/include/class/SAP.app.php:785
+msgid "Available modules"
+msgstr "Módulos disponibles"
+
+#: ../../enterprise/include/class/SAP.app.php:821
+msgid "Add monitors"
+msgstr "Añadir monitores"
+
+#: ../../enterprise/include/class/SAP.app.php:834
+msgid "Remove monitors"
+msgstr "Eliminar monitores"
+
+#: ../../enterprise/include/class/SAP.app.php:845
+#: ../../enterprise/godmode/massive/massive_edit_service_elements.php:350
+#: ../../enterprise/godmode/massive/massive_delete_service_elements.php:241
+#: ../../enterprise/godmode/massive/massive_add_service_elements.php:594
+#: ../../enterprise/godmode/massive/massive_create_services.php:1235
+msgid "Selected modules"
+msgstr "Módulos seleccionados"
+
+#: ../../enterprise/include/class/SAP.app.php:885
+msgid "Define your custom SAP modules."
+msgstr "Defina sus módulos SAP personalizados."
+
+#: ../../enterprise/include/class/SAP.app.php:884
+msgid "Advanced module configuration"
+msgstr "Configuración de módulos avanzada"
+
+#: ../../enterprise/include/class/SAP.app.php:894
+msgid "Custom module definitions"
+msgstr "Definiciones de módulos personalizadas"
+
+#: ../../enterprise/include/class/SAP.app.php:895
+msgid ""
+"Each line is a module definition using following format: module name ; "
+"module_type ; SAP check definition."
+msgstr ""
+"Cada línea es una definición de módulo con el siguiente formato: nombre del "
+"módulo ; tipo_de_módulo ; definición de comprobación SAP."
+
+#: ../../enterprise/include/class/ManageBackups.class.php:106
+#, php-format
+msgid "%s database backup manager"
+msgstr "%s de copia de seguridad de la base de datos"
+
+#: ../../enterprise/include/class/ManageBackups.class.php:129
+#, php-format
+msgid ""
+"To schedule a periodic (or one-time) backup task you can do it through %s."
+msgstr ""
+"Para programar una tarea de copia de seguridad periódica (o única), puede "
+"hacerlo a través de %s."
+
+#: ../../enterprise/include/class/ManageBackups.class.php:189
+msgid "Path backups"
+msgstr "Ruta de la copia de seguridad"
+
+#: ../../enterprise/include/class/ManageBackups.class.php:314
+msgid "Rollback to this backup"
+msgstr "Revertir a esta copia de seguridad"
+
+#: ../../enterprise/include/class/ManageBackups.class.php:323
+msgid "Lost"
+msgstr "Perdido"
+
+#: ../../enterprise/include/class/ManageBackups.class.php:330
+msgid "In Progress"
+msgstr "En Progreso"
+
+#: ../../enterprise/include/class/ManageBackups.class.php:361
+msgid "The backup was successfully deleted"
+msgstr "La copia de seguridad se ha eliminado correctamente"
+
+#: ../../enterprise/include/class/ManageBackups.class.php:367
+msgid "Missed id parameter"
+msgstr "Parámetro de identificación omitido"
+
+#: ../../enterprise/include/class/ManageBackups.class.php:386
+msgid "Something was wrong with the rollback action."
+msgstr "Algo andaba mal con la acción de reversión."
+
+#: ../../enterprise/include/class/ManageBackups.class.php:389
+msgid "Missed id parameter."
+msgstr "Parámetro id omitido."
+
+#: ../../enterprise/include/class/ManageBackups.class.php:437
+msgid ""
+"Are you sure you want to delete this database backup file? Once deleted you "
+"will not be able to recover it."
+msgstr ""
+"¿Está seguro de que desea eliminar este archivo de copia de seguridad de la "
+"base de datos? Una vez eliminado no podrás recuperarlo."
+
+#: ../../enterprise/include/class/ManageBackups.class.php:439
+msgid "Do you like perform a database restoration?"
+msgstr "¿Desea realizar una restauración de base de datos?"
+
+#: ../../enterprise/include/class/Omnishell.class.php:214
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:414
+msgid "Please follow the wizard."
+msgstr "Siga las instrucciones del asistente."
+
+#: ../../enterprise/include/class/Omnishell.class.php:226
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:427
+msgid "You have no acess to edit this command."
+msgstr "No tiene acceso para editar este comando."
+
+#: ../../enterprise/include/class/Omnishell.class.php:261
+msgid "Failed to save command."
+msgstr "Error al guardar comando."
+
+#: ../../enterprise/include/class/Omnishell.class.php:272
+msgid "Command not found."
+msgstr "Comando no encontrado."
+
+#: ../../enterprise/include/class/Omnishell.class.php:349
+#: ../../enterprise/include/class/Omnishell.class.php:610
+msgid "You must install php-yaml in order to use this feature."
+msgstr "Instale php-yaml para usar esta funcionalidad."
+
+#: ../../enterprise/include/class/Omnishell.class.php:362
+#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:4081
+#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:4202
+#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:4362
+#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:543
+#: ../../enterprise/meta/advanced/policymanager.queue.php:261
+#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:443
+#: ../../enterprise/godmode/policies/policy_queue.php:671
+#: ../../enterprise/godmode/policies/policy_queue.php:674
+msgid "Finished"
+msgstr "Terminado"
+
+#: ../../enterprise/include/class/Omnishell.class.php:363
+#: ../../enterprise/include/class/Omnishell.class.php:1087
+#: ../../enterprise/include/class/DatabaseHA.class.php:214
+#: ../../godmode/wizards/DiscoveryTaskList.class.php:1845
+msgid "Pending"
+msgstr "Pendiente"
+
+#: ../../enterprise/include/class/Omnishell.class.php:364
+msgid "Not Started"
+msgstr "No iniciado"
+
+#: ../../enterprise/include/class/Omnishell.class.php:401
+#: ../../enterprise/include/functions_ipam.php:1411
+#: ../../enterprise/include/functions_ipam.php:1418
+#: ../../enterprise/include/functions_ipam.php:1423
+#: ../../enterprise/meta/advanced/policymanager.queue.php:260
+#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:702
+#: ../../enterprise/godmode/policies/policy_queue.php:650
+#: ../../godmode/wizards/DiscoveryTaskList.class.php:606
+msgid "Progress"
+msgstr "Progreso"
+
+#: ../../enterprise/include/class/Omnishell.class.php:442
+msgid "Commands status"
+msgstr "Estado de los comandos"
+
+#: ../../enterprise/include/class/Omnishell.class.php:487
+msgid "Create command"
+msgstr "Crear comando"
+
+#: ../../enterprise/include/class/Omnishell.class.php:506
+msgid "Selected command definitions will be erased"
+msgstr "Las definiciones de los comandos seleccionadas se eliminarán."
+
+#: ../../enterprise/include/class/Omnishell.class.php:688
+msgid "Time out"
+msgstr "Tiempo fuera de servicio"
+
+#: ../../enterprise/include/class/Omnishell.class.php:697
+msgid "Retries "
+msgstr "Reintentos "
+
+#: ../../enterprise/include/class/Omnishell.class.php:708
+msgid "Preconditions "
+msgstr "Condiciones previas "
+
+#: ../../enterprise/include/class/Omnishell.class.php:709
+msgid "All commands defined line per line must success to execute main commands"
+msgstr ""
+"Todos los comandos definidos en cada línea deben ser correctos para ejecutar "
+"los comandos principales"
+
+#: ../../enterprise/include/class/Omnishell.class.php:721
+msgid "Execute commands "
+msgstr "Ejecutar comandos "
+
+#: ../../enterprise/include/class/Omnishell.class.php:722
+msgid "Define as many lines as commands you want to execute"
+msgstr "Definir tantas líneas como comandos desee ejecutar"
+
+#: ../../enterprise/include/class/Omnishell.class.php:734
+msgid "Postconditions "
+msgstr "Condiciones posteriores "
+
+#: ../../enterprise/include/class/Omnishell.class.php:735
+msgid ""
+"All commands defined line per line must success to consider command success"
+msgstr ""
+"Todos los comandos definidos en cada línea deben ser correctos para que el "
+"comando se considere correcto"
+
+#: ../../enterprise/include/class/Omnishell.class.php:825
+#: ../../enterprise/include/class/Omnishell.class.php:904
+#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:264
+#: ../../enterprise/godmode/reporting/graph_template_wizard.php:217
+#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:391
+#: ../../enterprise/godmode/reporting/reporting_builder.template.php:749
+#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:239
+#: ../../enterprise/godmode/policies/policy_agents.php:499
+#: ../../enterprise/godmode/policies/policy_agents.php:513
+msgid "Filter agent"
+msgstr "Filtrar agente"
+
+#: ../../enterprise/include/class/Omnishell.class.php:835
+#: ../../godmode/agentes/planned_downtime.editor.php:799
+msgid "Available agents"
+msgstr "Agentes disponibles"
+
+#: ../../enterprise/include/class/Omnishell.class.php:867
+#: ../../enterprise/godmode/reporting/reporting_builder.template.php:857
+msgid "Add agents"
+msgstr "Añadir agentes"
+
+#: ../../enterprise/include/class/Omnishell.class.php:880
+msgid "Remove agents"
+msgstr "Eliminar agentes"
+
+#: ../../enterprise/include/class/Omnishell.class.php:915
+#: ../../enterprise/godmode/massive/massive_edit_service_elements.php:335
+#: ../../enterprise/godmode/massive/massive_delete_service_elements.php:226
+#: ../../enterprise/godmode/massive/massive_add_service_elements.php:579
+#: ../../enterprise/godmode/massive/massive_create_services.php:1220
+msgid "Selected agents"
+msgstr "Agentes seleccionados"
+
+#: ../../enterprise/include/class/Omnishell.class.php:1157
+msgid "Selected command definition will be erased"
+msgstr "La definición de comando seleccionada se eliminará"
+
+#: ../../enterprise/include/class/Omnishell.class.php:1243
+msgid "Command viewer"
+msgstr "Visor de comandos"
+
+#: ../../enterprise/include/class/Omnishell.class.php:1251
+msgid "Detailed view"
+msgstr "Vista detallada"
+
+#: ../../enterprise/include/class/Omnishell.class.php:1392
+msgid "Not an array of ids"
+msgstr "No un conjunto de IDs"
+
+#: ../../enterprise/include/class/Omnishell.class.php:1450
+msgid "There are no targets for this remote command"
+msgstr "No hay objetivos para este comando remoto"
+
+#: ../../enterprise/include/class/Omnishell.class.php:1457
+msgid "Command does not exist"
+msgstr "El comando no existe"
+
+#: ../../enterprise/include/class/Omnishell.class.php:1553
+#: ../../enterprise/include/lib/Metaconsole/Node.php:141
+#: ../../enterprise/include/lib/Metaconsole/Node.php:190
+#: ../../enterprise/include/lib/Metaconsole/Node.php:241
+#: ../../enterprise/include/lib/Metaconsole/Node.php:336
+#: ../../enterprise/include/lib/Metaconsole/Node.php:389
+#: ../../enterprise/meta/advanced/metasetup.consoles.php:99
+msgid "success"
+msgstr "con éxito"
+
+#: ../../enterprise/include/class/Omnishell.class.php:1556
+msgid "timed out"
+msgstr "tiempo de espera agotado"
+
+#: ../../enterprise/include/class/Omnishell.class.php:1559
+msgid "failed"
+msgstr "error"
+
+#: ../../enterprise/include/class/Omnishell.class.php:1575
+msgid "Waiting results..."
+msgstr "Esperando resultados..."
+
+#: ../../enterprise/include/class/Omnishell.class.php:1594
+msgid "RCMD does not exist"
+msgstr "RCMD no existe"
+
+#: ../../enterprise/include/class/VMware.app.php:230
+msgid ""
+"This VMware configuration has been already defined. Please edit it or create a "
+"new one."
+msgstr "Ya se ha definido la configuración VMware. Edítela o cree una nueva."
+
+#: ../../enterprise/include/class/VMware.app.php:274
+msgid "You must provide a valid V-Center IP or FQDN."
+msgstr "Añada una IP V-Center o FQDN válida."
+
+#: ../../enterprise/include/class/VMware.app.php:291
+msgid "Discovery.Application.VMware"
+msgstr "Discovery.Application.VMware"
+
+#: ../../enterprise/include/class/VMware.app.php:310
+msgid "Please select a valid group"
+msgstr "Seleccione un grupo válido"
+
+#: ../../enterprise/include/class/VMware.app.php:369
+msgid "Failed to find discovery VMware task."
+msgstr "No se ha podido encontrar la tarea de discovery VMware."
+
+#: ../../enterprise/include/class/VMware.app.php:384
+msgid "Threads must be equal or greater than 1."
+msgstr "Los hilos deben ser igual o mayor que 1."
+
+#: ../../enterprise/include/class/VMware.app.php:503
+#: ../../enterprise/godmode/menu.php:176
+msgid "VMware"
+msgstr "VMware"
+
+#: ../../enterprise/include/class/VMware.app.php:656
+msgid "Datacenter user"
+msgstr "Usuario del datacenter"
+
+#: ../../enterprise/include/class/VMware.app.php:707
+msgid "V-Center IP"
+msgstr "V-Center IP"
+
+#: ../../enterprise/include/class/VMware.app.php:718
+msgid "Datacenter name"
+msgstr "Nombre del centro de datos"
+
+#: ../../enterprise/include/class/VMware.app.php:719
+msgid ""
+"This name must match with the name wich appears when you log in you VMware "
+"manager"
+msgstr ""
+"El nombre debe coincidir con el nombre que aparece al iniciar sesión en el "
+"gestor de VMware."
+
+#: ../../enterprise/include/class/VMware.app.php:749
+msgid "Encrypt passwords"
+msgstr "Cifrar contraseñas"
+
+#: ../../enterprise/include/class/VMware.app.php:870
+msgid "Max threads"
+msgstr "Máximo de hilos"
+
+#: ../../enterprise/include/class/VMware.app.php:879
+msgid "Re-scan interval"
+msgstr "Intervalo de re-escaneo"
+
+#: ../../enterprise/include/class/VMware.app.php:880
+msgid "Enables re-scan entities process every interval defined."
+msgstr ""
+"Hace posible que las entidades de re-escaneo procesen todos los intervalos "
+"definidos."
+
+#: ../../enterprise/include/class/VMware.app.php:913
+msgid "Retry send"
+msgstr "Reintentar envío"
+
+#: ../../enterprise/include/class/VMware.app.php:923
+msgid "Event mode"
+msgstr "Modo de evento"
+
+#: ../../enterprise/include/class/VMware.app.php:923
+msgid "Only for VCenter."
+msgstr "Solo para VCenter."
+
+#: ../../enterprise/include/class/VMware.app.php:933
+msgid "Virtual network monitoring"
+msgstr "Monitorización de redes virtuales"
+
+#: ../../enterprise/include/class/VMware.app.php:964
+msgid "Extra settings"
+msgstr "Ajustes adicionales"
+
+#: ../../enterprise/include/class/VMware.app.php:965
+msgid "This RAW block will be directly added to config file."
+msgstr "Este bloque RAM se añadirá directamente al archivo de configuración."
+
+#: ../../enterprise/include/class/VMware.app.php:1259
+msgid "Include datastores"
+msgstr "Incluir almacenes de datos"
+
+#: ../../enterprise/include/class/VMware.app.php:1269
+msgid "Include datacenters"
+msgstr "Incluir centros de datos"
+
+#: ../../enterprise/include/class/VMware.app.php:1279
+msgid "Include esxs"
+msgstr "Incluir esxs"
+
+#: ../../enterprise/include/class/VMware.app.php:1289
+msgid "Include vms"
+msgstr "Incluir vms"
+
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:473
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:532
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:591
+msgid "Alert not found."
+msgstr "Alerta no encontrada."
+
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:480
+msgid "Invalid json data"
+msgstr "Datos json no válidos"
+
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:575
+msgid "Rules updated."
+msgstr "Reglas actualizadas."
+
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:578
+msgid "JSON decoding error. Please call support."
+msgstr "Error de decodificación JSON. Póngase en contacto con soporte."
+
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:897
+msgid "Pass"
+msgstr "Pasar"
+
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:898
+msgid "Drop"
+msgstr "Soltar"
+
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:924
+msgid "Module alert"
+msgstr "Alerta de módulos"
+
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:944
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2018
+msgid "Load from template"
+msgstr "Cargar desde la plantilla"
+
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:961
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2197
+#: ../../godmode/alerts/configure_alert_template.php:625
+#: ../../godmode/alerts/alert_view.php:258
+msgid "Use special days list"
+msgstr "Utilizar lista de días especiales"
+
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:978
+#: ../../godmode/alerts/configure_alert_template.php:661
+msgid "Schedule"
+msgstr "Programar"
+
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:981
+#: ../../godmode/alerts/configure_alert_template.php:665
+msgid "No alert has been scheduled yet"
+msgstr "Aún no se ha programado ninguna alerta"
+
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1003
+msgid "Execute alert"
+msgstr "Ejecutar alerta"
+
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1006
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3457
+msgid "from"
+msgstr "desde"
+
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1026
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3475
+msgid "times in"
+msgstr "veces en"
+
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1036
+msgid "threshold"
+msgstr "umbral"
+
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1046
+msgid "Rule evaluation mode"
+msgstr "Modo de evaluación de reglas"
+
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1046
+msgid "Pass - All alerts are evaluated. Drop - It stops when 1 alert matches."
+msgstr ""
+"Pass - Se analizan todas las alertas. Drop - Para cuando coincide 1 alerta."
+
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1063
+msgid "Grouped by"
+msgstr "Agrupados por"
+
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1080
+#: ../../enterprise/godmode/alerts/alert_inventory_builder.php:270
+#: ../../godmode/snmpconsole/snmp_alert.php:1043
+#: ../../godmode/alerts/configure_alert_template.php:749
+msgid "Disable event"
+msgstr "Deshabilitar evento"
+
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1202
+msgid ""
+"The templates shown are only for correlative alerts, event alert (legacy) will "
+"be deprecated in the future"
+msgstr ""
+"Las plantillas mostradas solo sirven para las alertas correlativas, la alerta "
+"de eventos (heredada) se despreciará en el futuro"
+
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1212
+msgid "Available items"
+msgstr "Elementos disponibles"
+
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1213
+msgid "Block"
+msgstr "Bloquear"
+
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1261
+#: ../../enterprise/include/lib/AlertCorrelation.class.php:1044
+msgid "Log content"
+msgstr "Contenido de log"
+
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1266
+#: ../../enterprise/include/lib/AlertCorrelation.class.php:1047
+msgid "Log source"
+msgstr "Fuente de log"
+
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1271
+#: ../../enterprise/include/lib/AlertCorrelation.class.php:1050
+msgid "Log agent"
+msgstr "Agente de log"
+
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1329
+#: ../../enterprise/include/lib/AlertCorrelation.class.php:1056
+msgid "Event content"
+msgstr "Contenido de evento"
+
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1334
+#: ../../enterprise/include/lib/AlertCorrelation.class.php:1053
+msgid "Event user comment"
+msgstr "Comentario de usuario de evento"
+
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1339
+#: ../../enterprise/include/lib/AlertCorrelation.class.php:1059
+msgid "Event agent"
+msgstr "Agente de evento"
+
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1344
+#: ../../enterprise/include/lib/AlertCorrelation.class.php:1062
+msgid "Event module"
+msgstr "Módulo de evento"
+
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1349
+#: ../../enterprise/include/lib/AlertCorrelation.class.php:1065
+msgid "Event module alerts"
+msgstr "Alertas de módulos de eventos"
+
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1354
+#: ../../enterprise/include/lib/AlertCorrelation.class.php:1068
+msgid "Event group"
+msgstr "Grupo de eventos"
+
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1360
+msgid "Event group (recursive)"
+msgstr "Recursividad del grupo de eventos"
+
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1366
+#: ../../enterprise/include/lib/AlertCorrelation.class.php:1074
+msgid "Event severity"
+msgstr "Prioridad de evento"
+
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1371
+#: ../../enterprise/include/lib/AlertCorrelation.class.php:1077
+msgid "Event tag"
+msgstr "Etiqueta de evento"
+
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1376
+#: ../../enterprise/include/lib/AlertCorrelation.class.php:1080
+msgid "Event user"
+msgstr "Usuario de evento"
+
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1406
+msgid "Operators"
+msgstr "Operadores"
+
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1411
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1455
+#: ../../enterprise/include/lib/AlertCorrelation.class.php:1393
+msgid "greater than"
+msgstr "%1$s debe ser mayor que %2$d (incluido)"
+
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1416
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1459
+#: ../../enterprise/include/lib/AlertCorrelation.class.php:1397
+#: ../../enterprise/include/lib/AlertCorrelation.class.php:1405
+msgid "less than"
+msgstr "menor que"
+
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1421
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1463
+#: ../../enterprise/include/lib/AlertCorrelation.class.php:1401
+msgid "greater or equal than"
+msgstr "Mayor o igual (>=)"
+
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1426
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1467
+msgid "less or equal than"
+msgstr "menor o igual (<=)"
+
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1431
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1471
+#: ../../enterprise/include/lib/AlertCorrelation.class.php:1409
+msgid "is equal"
+msgstr "es igual"
+
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1436
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1475
+#: ../../enterprise/include/lib/AlertCorrelation.class.php:1413
+msgid "is different"
+msgstr "es diferente "
+
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1441
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1479
+#: ../../enterprise/include/lib/AlertCorrelation.class.php:1417
+msgid "is like (regex)"
+msgstr "es como (regex)"
+
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1446
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1483
+#: ../../enterprise/include/lib/AlertCorrelation.class.php:1421
+msgid "is not like (regex)"
+msgstr "no es como (regex)"
+
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1516
+msgid "Modifiers"
+msgstr "Modificadores"
+
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1521
+msgid "within an interval (seconds)"
+msgstr "dentro de un intervalo (segundos)"
+
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1526
+msgid "repeated at least"
+msgstr "tiene al menos"
+
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1566
+msgid "Matches on both true"
+msgstr "Coincidencias en ambos verdaderos"
+
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1572
+msgid "Matches when any is false"
+msgstr "Coincidencias cuando alguna es falsa"
+
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1578
+msgid "Matches on any true"
+msgstr "Coincidencias en cualquier verdadero"
+
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1584
+msgid "Matches when both are false"
+msgstr "Coincidencias cuando ambas son falsas"
+
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1590
+msgid "Matches when only one is true"
+msgstr "Coincidencias cuando solo una es verdadera"
+
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1596
+msgid "Matches when both are either true or false"
+msgstr "Coincidencias cuando ambas son verdaderas o falsas"
+
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1632
+msgid "Rule definition"
+msgstr "Definición de reglas"
+
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1921
+msgid "Remove rule"
+msgstr "Eliminar regla"
+
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1932
+msgid "Remove item"
+msgstr "Eliminar elemento"
+
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1943
+#: ../../enterprise/include/functions_HA_cluster.php:64
+msgid "Cleanup"
+msgstr "Limpiar"
+
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2044
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2689
+#: ../../godmode/alerts/configure_alert_template.php:928
+#: ../../godmode/alerts/alert_commands.php:100
+#: ../../godmode/alerts/alert_commands.php:105
+#: ../../godmode/alerts/alert_commands.php:121
+#: ../../godmode/alerts/alert_commands.php:127
+#: ../../godmode/alerts/alert_view.php:484
+#: ../../godmode/alerts/alert_view.php:603
+#, php-format
+msgid "Field %s"
+msgstr "Campo %s"
+
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2111
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2113
+msgid "Triggering Condition"
+msgstr "Términos de disparo"
+
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2201
+#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:122
+#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:313
+#: ../../enterprise/godmode/alerts/alert_inventory_builder.php:230
+#: ../../godmode/snmpconsole/snmp_alert.php:996
+#: ../../godmode/alerts/configure_alert_template.php:676
+#: ../../godmode/alerts/alert_templates.php:91
+#: ../../godmode/alerts/alert_view.php:262
+msgid "Time threshold"
+msgstr "Umbral de tiempo"
+
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2206
+#: ../../godmode/alerts/alert_view.php:266
+msgid "Number of alerts"
+msgstr "Número de alertas"
+
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2294
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2557
+#: ../../godmode/alerts/alert_view.php:403
+#: ../../godmode/alerts/configure_alert_action.php:305
+msgid "Firing"
+msgstr "Disparado"
+
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2409
+msgid "There are no defined actions for this alert"
+msgstr "No hay acciones definidas para esta alerta"
+
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2480
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3454
+msgid "Number of alerts match"
+msgstr "Número de coincidencias de alerta"
+
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2558
+#: ../../godmode/alerts/alert_view.php:404
+msgid "Recovering"
+msgstr "Recuperado"
+
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2575
+msgid ""
+"Select the desired action and mode to view the Triggering fields for this "
+"action"
+msgstr ""
+"Seleccione la acción y el modo deseados para ver los campos de disparo de esta "
+"acción"
+
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2592
+#: ../../godmode/alerts/alert_view.php:395
+msgid "Select the action"
+msgstr "Seleccione la acción"
+
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2650
+#: ../../godmode/alerts/configure_alert_template.php:918
+#: ../../godmode/alerts/alert_view.php:435
+#: ../../godmode/alerts/alert_view.php:569
+msgid "Firing fields"
+msgstr "Campos de disparado"
+
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2652
+#: ../../godmode/alerts/alert_view.php:437
+msgid ""
+"Fields passed to the command executed by this action when the alert is fired"
+msgstr ""
+"Campos pasados al comando ejecutado por esta acción cuando la alerta es "
+"disparada"
+
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2658
+#: ../../godmode/alerts/alert_view.php:443
+#: ../../godmode/alerts/alert_view.php:566
+msgid "Fields configured on the command associated to the action"
+msgstr "Campos configurados en el comando asociado a la acción"
+
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2661
+msgid "Alerts fields"
+msgstr "Campos de alertas"
+
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2663
+msgid "Triggering fields configured in Alerts"
+msgstr "Campos de disparo configurados en Alertas"
+
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2666
+#: ../../godmode/alerts/alert_view.php:451
+msgid "Action fields"
+msgstr "Campos de la acción"
+
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2668
+#: ../../godmode/alerts/alert_view.php:453
+msgid "Triggering fields configured in action"
+msgstr "Campos de disparado configurados en la acción"
+
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2671
+#: ../../godmode/alerts/alert_view.php:457
+msgid "Executed on firing"
+msgstr "Ejecutado en disparado"
+
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2673
+#: ../../godmode/alerts/alert_view.php:459
+#: ../../godmode/alerts/alert_view.php:571
+msgid "Fields used on execution when the alert is fired"
+msgstr "Campos usados en la ejecución cuando la alerta es disparada"
+
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2722
+msgid "Correlated alerts"
+msgstr "Alertas correladas"
+
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2746
+msgid "Alert succesfully deleted"
+msgstr "Alerta eliminada correctamente"
+
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2755
+msgid "Alerts validated"
+msgstr "Alerta validada"
+
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2758
+msgid "Failed to process validation"
+msgstr "No se ha podido efectuar la validación"
+
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2808
+#: ../../enterprise/godmode/modules/local_components.php:547
+#: ../../godmode/modules/manage_network_components.php:659
+msgid "Free Search"
+msgstr "Búsqueda libre"
+
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2843
+#: ../../enterprise/meta/event/custom_events.php:69
+#: ../../enterprise/meta/event/custom_events.php:88
+#: ../../enterprise/meta/general/main_menu.php:398
+#: ../../enterprise/meta/general/main_header.php:291
+#: ../../godmode/reporting/reporting_builder.list_items.php:222
+#: ../../godmode/events/events.php:90 ../../godmode/events/events.php:110
+msgid "Filters"
+msgstr "Filtros"
+
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2900
+#: ../../enterprise/include/functions_ipam.php:1643
+#: ../../enterprise/meta/include/functions_autoprovision.php:473
+#: ../../enterprise/meta/include/functions_autoprovision.php:640
+#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:190
+#: ../../godmode/reporting/reporting_builder.list_items.php:440
+#: ../../godmode/reporting/reporting_builder.list_items.php:740
+#: ../../godmode/reporting/graph_builder.graph_editor.php:217
+#: ../../godmode/reporting/graph_builder.graph_editor.php:318
+msgid "Sort"
+msgstr "Ordenar"
+
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2903
+msgid "Matched"
+msgstr "Coincidencias"
+
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2926
+#: ../../enterprise/include/class/CommandCenter.class.php:329
+msgid "Sort elements"
+msgstr "Clasificar elementos"
+
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2971
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3357
+msgid "No associated actions"
+msgstr "No hay acciones asociadas"
+
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3005
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3021
+msgid "Add Actions"
+msgstr "Añadir acciones"
+
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3076
+msgid "There are no defined correlated alerts"
+msgstr "No hay alertas correlacionadas definidas"
+
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3212
+msgid "Are you sure you want to disable the alert"
+msgstr "¿Está seguro de que quiere desactivar la alerta?"
+
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3219
+msgid "Are you sure you want to enable the alert"
+msgstr "¿Está seguro de que quiere activar la alerta?"
+
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3226
+msgid "Disabled Alert"
+msgstr "Alerta desactivada"
+
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3268
+msgid "Are you sure you want to standby the alert"
+msgstr "¿Está seguro de que quiere poner la alerta en suspensión?"
+
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3275
+msgid "Are you sure you want to activate the alert"
+msgstr "¿Está seguro de que quiere activar la alerta?"
+
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3283
+msgid "Standby Alert"
+msgstr "Alerta en suspensión"
+
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3332
+#: ../../enterprise/godmode/policies/policy_external_alerts.php:465
+#: ../../enterprise/godmode/policies/policy_alerts.php:434
+#: ../../godmode/alerts/alert_list.list.php:642
+msgid "Until"
+msgstr "Hasta"
+
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3355
+msgid "Delete Actions"
+msgstr "Eliminar acciones"
+
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3534
+msgid "Successfully added action"
+msgstr "Acción añadida correctamente"
+
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3572
+msgid "Successfully delete action"
+msgstr "Acción eliminada correctamente"
+
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3985
+msgid "Choosetime"
+msgstr "Elegir hora"
+
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:4208
+msgid "Drop Here"
+msgstr "Caer aquí"
+
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:4266
+#: ../../godmode/alerts/configure_alert_template.php:1495
+msgid "Simple"
+msgstr "Simple"
+
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:4267
+#: ../../godmode/alerts/configure_alert_template.php:1496
+msgid "Detailed"
+msgstr "Detallado"
+
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:4322
+#: ../../godmode/alerts/configure_alert_template.php:1551
+msgid "Drag out to remove"
+msgstr "Arrastre hacia afuera para eliminar"
+
+#: ../../enterprise/include/class/NetworkConfigManager.class.php:375
+msgid "Perform action"
+msgstr "Realizar acción"
+
+#: ../../enterprise/include/class/NetworkConfigManager.class.php:628
+#: ../../enterprise/godmode/modules/local_components.php:690
+#: ../../enterprise/godmode/reporting/reporting_builder.template.php:627
+#: ../../enterprise/godmode/policies/policy_modules.php:1555
+#: ../../godmode/modules/manage_network_components.php:859
+#: ../../godmode/modules/manage_network_components.php:860
+#: ../../godmode/reporting/reporting_builder.php:1196
+#: ../../godmode/snmpconsole/snmp_alert.php:1303
+#: ../../godmode/snmpconsole/snmp_alert.php:1304
+#: ../../godmode/agentes/module_manager.php:1166
+#: ../../godmode/alerts/alert_actions.php:435
+#: ../../godmode/alerts/alert_templates.php:431
+msgid "Duplicate"
+msgstr "Duplicar"
+
+#: ../../enterprise/include/class/NetworkConfigManager.class.php:1442
+msgid "NCM devices"
+msgstr "Dispositivos NCM"
+
+#: ../../enterprise/include/class/NetworkConfigManager.class.php:1456
+msgid "NCM templates"
+msgstr "Plantillas NCM"
+
+#: ../../enterprise/include/class/NetworkConfigManager.class.php:1470
+msgid "Registered vendors"
+msgstr "Fabricantes registrados"
+
+#: ../../enterprise/include/class/NetworkConfigManager.class.php:1484
+msgid "Registered models"
+msgstr "Modelos registrados"
+
+#: ../../enterprise/include/class/NetworkConfigManager.class.php:1498
+msgid "Registered snippets"
+msgstr "Snippets registrados"
+
+#: ../../enterprise/include/class/NetworkConfigManager.class.php:1512
+msgid "Registered firmwares"
+msgstr "Firmwares registrados"
+
+#: ../../enterprise/include/class/NetworkConfigManager.class.php:1548
+msgid "No agents with NCM features enabled yet"
+msgstr "Aún no hay agentes con funciones de NCM habilitadas"
+
+#: ../../enterprise/include/class/NetworkConfigManager.class.php:1679
+#: ../../enterprise/include/class/NetworkConfigManager.class.php:2189
+#: ../../enterprise/include/class/NetworkConfigManager.class.php:2240
+#, php-format
+msgid "Template not found: %s"
+msgstr "Plantilla no encontrada: %s"
+
+#: ../../enterprise/include/class/NetworkConfigManager.class.php:1704
+msgid "Template created"
+msgstr "Plantilla creada"
+
+#: ../../enterprise/include/class/NetworkConfigManager.class.php:1704
+msgid "Template updated"
+msgstr "Plantilla actualizada"
+
+#: ../../enterprise/include/class/NetworkConfigManager.class.php:1770
+#: ../../enterprise/include/class/NetworkConfigManager.class.php:2314
+#, php-format
+msgid "Vendor not found: %s"
+msgstr "Fabricante no encontrado: %s"
+
+#: ../../enterprise/include/class/NetworkConfigManager.class.php:1801
+msgid "Failed saving vendor: "
+msgstr "Fallo al guardar fabricante:"
+
+#: ../../enterprise/include/class/NetworkConfigManager.class.php:1860
+#, php-format
+msgid "model not found: %s"
+msgstr "modelo no encontrado: %s"
+
+#: ../../enterprise/include/class/NetworkConfigManager.class.php:1882
+#: ../../enterprise/include/class/NetworkConfigManager.class.php:2653
+msgid "you must select a valid vendor"
+msgstr "Debe seleccionar un fabricante válido"
+
+#: ../../enterprise/include/class/NetworkConfigManager.class.php:1895
+msgid "Failed saving model: "
+msgstr "Fallo al guardar el modelo: "
+
+#: ../../enterprise/include/class/NetworkConfigManager.class.php:1955
+#, php-format
+msgid "snippet not found: %s"
+msgstr "Snippet no encontrado: %s"
+
+#: ../../enterprise/include/class/NetworkConfigManager.class.php:1986
+msgid "Failed saving snippet: "
+msgstr "Error al guardar el snippet: "
+
+#: ../../enterprise/include/class/NetworkConfigManager.class.php:2049
+#, php-format
+msgid "firmware not found: %s"
+msgstr "firmware no encontrado: %s"
+
+#: ../../enterprise/include/class/NetworkConfigManager.class.php:2076
+msgid "Firmware file missing"
+msgstr "Falta el archivo de firmware"
+
+#: ../../enterprise/include/class/NetworkConfigManager.class.php:2108
+#, php-format
+msgid "Failed to store file in %s"
+msgstr "Error al almacenar el archivo en %s"
+
+#: ../../enterprise/include/class/NetworkConfigManager.class.php:2125
+msgid "Failed saving firmware: "
+msgstr "Error al guardar el firmware: "
+
+#: ../../enterprise/include/class/NetworkConfigManager.class.php:2152
+msgid ""
+"Upload only official binary files from your device provide in raw format (not "
+"compressed)"
+msgstr ""
+"Cargue solo archivos binarios oficiales desde su dispositivo en formato RAW "
+"(no comprimido)"
+
+#: ../../enterprise/include/class/NetworkConfigManager.class.php:2201
+#: ../../godmode/modules/manage_network_templates.php:83
+msgid "Template successfully deleted"
+msgstr "Plantilla borrada correctamente"
+
+#: ../../enterprise/include/class/NetworkConfigManager.class.php:2256
+msgid "Template successfully duplicated"
+msgstr "Plantilla duplicada correctamente"
+
+#: ../../enterprise/include/class/NetworkConfigManager.class.php:2279
+#, php-format
+msgid "Model not found: %s"
+msgstr "Modelo no encontrado: %s"
+
+#: ../../enterprise/include/class/NetworkConfigManager.class.php:2291
+msgid "Model successfully deleted"
+msgstr "Modelo eliminado correctamente"
+
+#: ../../enterprise/include/class/NetworkConfigManager.class.php:2326
+msgid "Vendor successfully deleted"
+msgstr "Fabriante eliminado correctamente"
+
+#: ../../enterprise/include/class/NetworkConfigManager.class.php:2349
+#, php-format
+msgid "Snippet not found: %s"
+msgstr "Snippet no encontrado: %s"
+
+#: ../../enterprise/include/class/NetworkConfigManager.class.php:2361
+msgid "Snippet successfully deleted"
+msgstr "Snippet eliminado correctamente"
+
+#: ../../enterprise/include/class/NetworkConfigManager.class.php:2384
+#, php-format
+msgid "Firmware not found: %s"
+msgstr "Firmware no encontrado: %s"
+
+#: ../../enterprise/include/class/NetworkConfigManager.class.php:2396
+msgid "Firmware successfully deleted"
+msgstr "Firmware eliminado correctamente"
+
+#: ../../enterprise/include/class/NetworkConfigManager.class.php:2475
+msgid ""
+"Not executed yet, no content to display, define your own in following textarea."
+msgstr ""
+"Aún no se ha ejecutado, no hay contenido que mostrar, defina el suyo propio en "
+"el siguiente área de texto."
+
+#: ../../enterprise/include/class/NetworkConfigManager.class.php:2484
+msgid ""
+"Following content is already queued to be executed! You must wait until "
+"execution is finished before being able to modify this."
+msgstr ""
+"¡El siguiente contenido ya está en cola para ser ejecutado! Debe esperar hasta "
+"que finalice la ejecución antes de poder modificarla."
+
+#: ../../enterprise/include/class/NetworkConfigManager.class.php:2576
+msgid "Check progress"
+msgstr "Comprobar el progreso"
+
+#: ../../enterprise/include/class/NetworkConfigManager.class.php:2585
+#, php-format
+msgid "Script scheduled %s %s"
+msgstr "Script programado %s %s"
+
+#: ../../enterprise/include/class/NetworkConfigManager.class.php:2643
+#, php-format
+msgid "Error retrieving template: %s"
+msgstr "Error al recuperar la plantilla: %s"
+
+#: ../../enterprise/include/class/NetworkConfigManager.class.php:2649
+msgid "you must select a template"
+msgstr "Debe seleccionar una plantilla"
+
+#: ../../enterprise/include/class/NetworkConfigManager.class.php:2651
+msgid "you must select a valid model"
+msgstr "Debe seleccionar un modelo válido"
+
+#: ../../enterprise/include/class/NetworkConfigManager.class.php:2655
+msgid "you must select a valid port"
+msgstr "Debe seleccionar un puerto válido"
+
+#: ../../enterprise/include/class/NetworkConfigManager.class.php:2689
+#, php-format
+msgid "Failed to update%s"
+msgstr "No se pudo actualizar %s"
+
+#: ../../enterprise/include/class/NetworkConfigManager.class.php:2721
+msgid "No configuration registers to backup"
+msgstr "No hay registros de configuración para realizar copias de seguridad"
+
+#: ../../enterprise/include/class/NetworkConfigManager.class.php:2729
+#: ../../enterprise/include/class/NetworkConfigManager.class.php:2745
+msgid "Successfully backed up"
+msgstr "Copia de copia de ha realizada"
+
+#: ../../enterprise/include/class/NetworkConfigManager.class.php:2780
+msgid "Invalid id given"
+msgstr "ID no válido"
+
+#: ../../enterprise/include/class/NetworkConfigManager.class.php:2815
+msgid ""
+"Is highly recommendable to execute this kind of operation from agent details "
+"to preview the script content"
+msgstr ""
+"Es muy recomendable ejecutar este tipo de operación desde los detalles del "
+"agente para obtener una vista previa del contenido del script"
+
+#: ../../enterprise/include/class/NetworkConfigManager.class.php:2824
+msgid "This operation is not ready yet! Keep up to date with latest updates"
+msgstr ""
+"¡Esta operación aún no está lista! Manténgase al día con las últimas "
+"actualizaciones"
+
+#: ../../enterprise/include/class/NetworkConfigManager.class.php:2833
+msgid "Invalid action"
+msgstr "Acción no válida"
+
+#: ../../enterprise/include/class/NetworkConfigManager.class.php:2852
+#: ../../enterprise/include/class/DatabaseHA.class.php:190
+msgid "Successfully scheduled"
+msgstr "Programado correctamente"
+
+#: ../../enterprise/include/class/NetworkConfigManager.class.php:2853
+msgid "Failed to schedule action."
+msgstr "Error al programar la acción."
+
+#: ../../enterprise/include/class/Azure.cloud.php:248
+#: ../../enterprise/include/class/Google.cloud.php:242
+msgid "Task details"
+msgstr "Detalles de la tarea"
+
+#: ../../enterprise/include/class/Azure.cloud.php:249
+#: ../../enterprise/include/class/Google.cloud.php:243
+msgid "Instance explorer"
+msgstr "Buscador de instancias"
+
+#: ../../enterprise/include/class/Azure.cloud.php:250
+#: ../../enterprise/include/class/Google.cloud.php:244
+msgid "Metrics"
+msgstr "Métricas"
+
+#: ../../enterprise/include/class/Azure.cloud.php:307
+msgid "Microsoft Compute"
+msgstr "Microsoft Compute"
+
+#: ../../enterprise/include/class/Azure.cloud.php:468
+#: ../../enterprise/include/class/Google.cloud.php:470
+msgid "Group not found."
+msgstr "Grupo no encontrado"
+
+#: ../../enterprise/include/class/Azure.cloud.php:598
+#: ../../enterprise/include/class/Azure.cloud.php:646
+#: ../../enterprise/include/class/Google.cloud.php:597
+#: ../../enterprise/include/class/Google.cloud.php:643
+msgid "Unauthorized access"
+msgstr "Acceso no autorizado"
+
+#: ../../enterprise/include/class/Azure.cloud.php:909
+#: ../../enterprise/include/class/Google.cloud.php:865
+msgid "Select target virtual machines"
+msgstr "Seleccionar máquinas virtuales de destino"
+
+#: ../../enterprise/include/class/DeploymentCenter.class.php:235
+msgid "IP address is required"
+msgstr "Se requiere dirección IP"
+
+#: ../../enterprise/include/class/DeploymentCenter.class.php:249
+msgid "Credentials to use are required"
+msgstr "Se requieren credenciales de uso"
+
+#: ../../enterprise/include/class/DeploymentCenter.class.php:251
+msgid "Desired agent version is required"
+msgstr "Se requiere la versión de agente deseada"
+
+#: ../../enterprise/include/class/DeploymentCenter.class.php:262
+msgid "Target already defined."
+msgstr "Objetivo ya definido."
+
+#: ../../enterprise/include/class/DeploymentCenter.class.php:288
+msgid "Target successfully added"
+msgstr "Objetivo añadido correctamente"
+
+#: ../../enterprise/include/class/DeploymentCenter.class.php:309
+msgid "Target successfully updated"
+msgstr "Objetivo actualizado correctamente"
+
+#: ../../enterprise/include/class/DeploymentCenter.class.php:352
+msgid "You should specify a Discovery server"
+msgstr "Especifique un servidor Discovery"
+
+#: ../../enterprise/include/class/DeploymentCenter.class.php:354
+msgid "You must select some targets to deploy"
+msgstr "Seleccione algunos de los objetivos a desplegar"
+
+#: ../../enterprise/include/class/DeploymentCenter.class.php:384
+#: ../../enterprise/include/class/DeploymentCenter.class.php:1095
+msgid "Failed to schedule"
+msgstr "No se ha podido programar"
+
+#: ../../enterprise/include/class/DeploymentCenter.class.php:399
+msgid "Deploy scheduled"
+msgstr "Despliegue programado"
+
+#: ../../enterprise/include/class/DeploymentCenter.class.php:425
+msgid "CSV file is needed"
+msgstr "Se necesita archivo CSV"
+
+#: ../../enterprise/include/class/DeploymentCenter.class.php:480
+#, php-format
+msgid ""
+"Credential identifier %s does not exist, please, add it to your repository %s "
+msgstr ""
+"El identificador de credenciales %s no existe, añádalo a su repositorio %s "
+
+#: ../../enterprise/include/class/DeploymentCenter.class.php:488
+#, php-format
+msgid "OS %s does not math any existing, please, add it to OS list %s"
+msgstr ""
+"El sistema operativo %s no coincide con ninguno existente, añádalo a la lista "
+"de sistemas operativos %s"
+
+#: ../../enterprise/include/class/DeploymentCenter.class.php:496
+#, php-format
+msgid ""
+"Sofware agent version with id %s does not exist, please, add it to your "
+"repository %s "
+msgstr ""
+"La versión del agente software con el ID %s no existe, añádalo al repositorio "
+"%s "
+
+#: ../../enterprise/include/class/DeploymentCenter.class.php:518
+msgid "No target could be added. "
+msgstr "No se ha podido añadir ningún objetivo. "
+
+#: ../../enterprise/include/class/DeploymentCenter.class.php:613
+#: ../../enterprise/godmode/menu.php:163
+#: ../../godmode/wizards/HostDevices.class.php:165
+#: ../../godmode/wizards/DiscoveryTaskList.class.php:823
+msgid "Agent deployment"
+msgstr "Despliegue de agentes"
+
+#: ../../enterprise/include/class/DeploymentCenter.class.php:621
+msgid "Deployment center"
+msgstr "Centro de despliegue"
+
+#: ../../enterprise/include/class/DeploymentCenter.class.php:637
+msgid "There are no targets defined yet, please add some."
+msgstr "Aún no hay objetivos definidos, añada alguno."
+
+#: ../../enterprise/include/class/DeploymentCenter.class.php:644
+#, php-format
+msgid "Please set %s to make software available for targets."
+msgstr "Programe %s para que el software esté disponible para los objetivos."
+
+#: ../../enterprise/include/class/DeploymentCenter.class.php:656
+#, php-format
+msgid "There are no software agents in your repository yet, please add some %s."
+msgstr "No hay agentes software en el repositorio, añada algunos %s."
+
+#: ../../enterprise/include/class/DeploymentCenter.class.php:675
+#: ../../enterprise/include/class/DeploymentCenter.class.php:1751
+msgid "Scan for targets"
+msgstr "Escaneo de objetivos"
+
+#: ../../enterprise/include/class/DeploymentCenter.class.php:684
+msgid "Add target"
+msgstr "Añadir destino"
+
+#: ../../enterprise/include/class/DeploymentCenter.class.php:693
+msgid "Load targets"
+msgstr "Cargar destinos"
+
+#: ../../enterprise/include/class/DeploymentCenter.class.php:758
+msgid "Key identifier"
+msgstr "Identificador de clave"
+
+#: ../../enterprise/include/class/DeploymentCenter.class.php:759
+#: ../../enterprise/include/class/DeploymentCenter.class.php:1222
+#: ../../enterprise/include/class/DeploymentCenter.class.php:1359
+msgid "Target server IP"
+msgstr "IP del servidor de destino"
+
+#: ../../enterprise/include/class/DeploymentCenter.class.php:760
+msgid "Agent version installed"
+msgstr "Verison de agente instalada"
+
+#: ../../enterprise/include/class/DeploymentCenter.class.php:761
+msgid "Agent version desired"
+msgstr "Versión de agente deseada"
+
+#: ../../enterprise/include/class/DeploymentCenter.class.php:762
+msgid "Installation date"
+msgstr "Fecha de instalación"
+
+#: ../../enterprise/include/class/DeploymentCenter.class.php:763
+msgid "Last error"
+msgstr "Último error"
+
+#: ../../enterprise/include/class/DeploymentCenter.class.php:811
+msgid "Server IP"
+msgstr "IP del servidor"
+
+#: ../../enterprise/include/class/DeploymentCenter.class.php:836
+msgid "State"
+msgstr "Estado"
+
+#: ../../enterprise/include/class/DeploymentCenter.class.php:868
+msgid "Deploy agent to targets"
+msgstr "Desplegar agentes a destinos"
+
+#: ../../enterprise/include/class/DeploymentCenter.class.php:1042
+msgid "You must define a network."
+msgstr "Defina una red."
+
+#: ../../enterprise/include/class/DeploymentCenter.class.php:1044
+msgid "You must select at least one credential to test."
+msgstr "Seleccione al menos un credencial a probar."
+
+#: ../../enterprise/include/class/DeploymentCenter.class.php:1046
+msgid "You must select a Discovery server."
+msgstr "Seleccione un servidor Discovery."
+
+#: ../../enterprise/include/class/DeploymentCenter.class.php:1048
+msgid "Please select a desired software agent version."
+msgstr "Seleccione la version deseada del agente software."
+
+#: ../../enterprise/include/class/DeploymentCenter.class.php:1050
+msgid "Please specify a server IP."
+msgstr "Especifique una IP de servidor."
+
+#: ../../enterprise/include/class/DeploymentCenter.class.php:1070
+#: ../../enterprise/include/class/DeploymentCenter.class.php:1103
+msgid "Discovery task list"
+msgstr "Lista de tareas Discovery"
+
+#: ../../enterprise/include/class/DeploymentCenter.class.php:1069
+#, php-format
+msgid "This network is already being scanned. See progress at %s"
+msgstr "Ya se está escaneando la red. Ver progreso en %s"
+
+#: ../../enterprise/include/class/DeploymentCenter.class.php:1102
+#, php-format
+msgid "Network scheduled to be scanned. You can see progress at %s"
+msgstr "Escaneo de red programado. Puede ver el progreso en %s."
+
+#: ../../enterprise/include/class/DeploymentCenter.class.php:1150
+msgid "Network/mask"
+msgstr "Red/Máscara"
+
+#: ../../enterprise/include/class/DeploymentCenter.class.php:1159
+msgid "Scan from"
+msgstr "Escanear desde"
+
+#: ../../enterprise/include/class/DeploymentCenter.class.php:1178
+#: ../../godmode/wizards/HostDevices.class.php:1447
+msgid "Credentials to try with"
+msgstr "Credenciales con los que probar"
+
+#: ../../enterprise/include/class/DeploymentCenter.class.php:1189
+#: ../../enterprise/include/class/DeploymentCenter.class.php:1316
+#: ../../enterprise/include/class/DeploymentCenter.class.php:1326
+#: ../../enterprise/meta/include/functions_wizard_meta.php:974
+#: ../../enterprise/meta/include/functions_wizard_meta.php:1058
+#: ../../extensions/api_checker.php:195
+#: ../../godmode/wizards/HostDevices.class.php:1470
+msgid "Credentials"
+msgstr "Credenciales"
+
+#: ../../enterprise/include/class/DeploymentCenter.class.php:1212
+#: ../../enterprise/include/class/DeploymentCenter.class.php:1349
+msgid "Desired agent version"
+msgstr "Versión de agente deseada"
+
+#: ../../enterprise/include/class/DeploymentCenter.class.php:1396
+msgid "CSV format"
+msgstr "Formato CVS"
+
+#: ../../enterprise/include/class/DeploymentCenter.class.php:1397
+msgid "Target agent version"
+msgstr "Version de agente objetivo"
+
+#: ../../enterprise/include/class/DeploymentCenter.class.php:1397
+#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1120
+#: ../../godmode/modules/manage_network_components_form_network.php:242
+#: ../../godmode/massive/massive_edit_modules.php:1198
+#: ../../godmode/agentes/module_manager_editor_network.php:459
+msgid "Credential identifier"
+msgstr "Credencial"
+
+#: ../../enterprise/include/class/DeploymentCenter.class.php:1397
+msgid "Target server ip"
+msgstr "IP del servidor objetivo"
+
+#: ../../enterprise/include/class/DeploymentCenter.class.php:1416
+msgid "CSV file"
+msgstr "Archivo CSV"
+
+#: ../../enterprise/include/class/DeploymentCenter.class.php:1476
+msgid "Select desired targets to be deployed"
+msgstr "Seleccionar objetivos a desplegar"
+
+#: ../../enterprise/include/class/DeploymentCenter.class.php:1479
+msgid "Deploy from"
+msgstr "Desplegar desde"
+
+#: ../../enterprise/include/class/DeploymentCenter.class.php:1494
+msgid "Available targets"
+msgstr "Objetivos disponibles"
+
+#: ../../enterprise/include/class/DeploymentCenter.class.php:1670
+msgid "Add new target"
+msgstr "Añadir nuevo objetivo"
+
+#: ../../enterprise/include/class/DeploymentCenter.class.php:1673
+msgid "Update target"
+msgstr "Actualizar objetivo"
+
+#: ../../enterprise/include/class/DeploymentCenter.class.php:1719
+msgid "Import targets from CSV"
+msgstr "Importar objetivos desde CSV"
+
+#: ../../enterprise/include/class/DeploymentCenter.class.php:1752
+#: ../../godmode/modules/manage_network_components_form_wizard.php:636
+msgid "Scan"
+msgstr "Escanear"
+
+#: ../../enterprise/include/class/DeploymentCenter.class.php:1786
+msgid "Select targets"
+msgstr "Seleccionar objetivos"
+
+#: ../../enterprise/include/class/DeploymentCenter.class.php:1787
+#: ../../enterprise/include/functions_HA_cluster.php:46
+msgid "Deploy"
+msgstr "Desplegar"
+
+#: ../../enterprise/include/class/DatabaseHA.class.php:137
+#: ../../enterprise/include/class/DatabaseHA.class.php:241
+#: ../../enterprise/include/class/DatabaseHA.class.php:423
+#: ../../enterprise/include/class/DatabaseHA.class.php:433
+#: ../../enterprise/include/class/DatabaseHA.class.php:525
+#: ../../enterprise/include/class/DatabaseHA.class.php:534
+#: ../../enterprise/include/class/DatabaseHA.class.php:651
+#: ../../enterprise/include/class/DatabaseHA.class.php:660
+msgid "Error, please refresh page"
+msgstr "Error, vuelva a cargar la página"
+
+#: ../../enterprise/include/class/DatabaseHA.class.php:142
+msgid "Action already scheduled"
+msgstr "Acción ya programada"
+
+#: ../../enterprise/include/class/DatabaseHA.class.php:148
+msgid "Unavailable action"
+msgstr "Acción no disponible"
+
+#: ../../enterprise/include/class/DatabaseHA.class.php:160
+msgid "A node is already being synchronized, please wait until process finish."
+msgstr "Ya se está sincronizando un nodo, espere hasta que el proceso termine."
+
+#: ../../enterprise/include/class/DatabaseHA.class.php:172
+msgid "Please verify resync configuration is set before use this feature."
+msgstr ""
+"Compruebe la configuración de resincronización antes de usar esta funcionalidad"
+
+#: ../../enterprise/include/class/DatabaseHA.class.php:220
+msgid "Uninitialized"
+msgstr "No iniciado"
+
+#: ../../enterprise/include/class/DatabaseHA.class.php:476
+#: ../../enterprise/include/class/DatabaseHA.class.php:575
+#: ../../enterprise/include/class/DatabaseHA.class.php:1251
+msgid "This is not a cluster node"
+msgstr "Este no es un nodo de cluster"
+
+#: ../../enterprise/include/class/DatabaseHA.class.php:480
+#: ../../enterprise/include/class/DatabaseHA.class.php:1255
+msgid "Failed to retrieve master position"
+msgstr "No se ha podido obtener la posición de maestro"
+
+#: ../../enterprise/include/class/DatabaseHA.class.php:494
+#: ../../enterprise/include/class/DatabaseHA.class.php:1268
+msgid "Failed to retrieve slave information"
+msgstr "No se ha podido obtener la información de esclavo"
+
+#: ../../enterprise/include/class/DatabaseHA.class.php:611
+msgid "Master"
+msgstr "Principal"
+
+#: ../../enterprise/include/class/DatabaseHA.class.php:614
+msgid "Slave"
+msgstr "Esclavo"
+
+#: ../../enterprise/include/class/DatabaseHA.class.php:823
+#: ../../enterprise/include/class/DatabaseHA.class.php:1006
+msgid "DB Replication user"
+msgstr "Usuario de replicación de la base de datos"
+
+#: ../../enterprise/include/class/DatabaseHA.class.php:824
+msgid "User configured for Master to Slaves replication"
+msgstr "Usuario configurado para replicación Maestro - Esclavo"
+
+#: ../../enterprise/include/class/DatabaseHA.class.php:834
+#: ../../enterprise/include/class/DatabaseHA.class.php:1015
+msgid "DB Replication user password"
+msgstr "Contraseña de usuario de replicación de la base de datos"
+
+#: ../../enterprise/include/class/DatabaseHA.class.php:835
+msgid "User password"
+msgstr "Contraseña de usuario"
+
+#: ../../enterprise/include/class/DatabaseHA.class.php:845
+msgid "Resync data dir"
+msgstr "Resincronizar directorio de datos"
+
+#: ../../enterprise/include/class/DatabaseHA.class.php:846
+msgid "Directory where mysql files are stored (must be common to all nodes)"
+msgstr ""
+"Directorio donde se guardan los archivos MySQL (debe ser común a todos los "
+"nodos)"
+
+#: ../../enterprise/include/class/DatabaseHA.class.php:856
+msgid "Resync tmp directory"
+msgstr "Resincronizar directorio tmp"
+
+#: ../../enterprise/include/class/DatabaseHA.class.php:857
+msgid ""
+"Temporary working directory where to store the backups that will be used to re-"
+"synchronize a slave node"
+msgstr ""
+"Directorio funcional temporal donde guardar las copias de seguridad que se "
+"utilizarán para re-sincronizar un módulo esclavo"
+
+#: ../../enterprise/include/class/DatabaseHA.class.php:867
+msgid "Resync MySQL user"
+msgstr "Resincronizar usuario MySQL"
+
+#: ../../enterprise/include/class/DatabaseHA.class.php:868
+msgid ""
+"User of the system that owns the MySQL files, necessary for the adjustment of "
+"permissions (by default mysql)"
+msgstr ""
+"Usuario del sistema que posee los archivos MySQL, necesario para el ajuste de "
+"los permisos (por defecto MySQL)"
+
+#: ../../enterprise/include/class/DatabaseHA.class.php:878
+msgid "Resync MySQL group"
+msgstr "Resincronizar grupo MySQL"
+
+#: ../../enterprise/include/class/DatabaseHA.class.php:879
+msgid ""
+"System group that owns the MySQL files, needed for permissions setting "
+"(default mysql)"
+msgstr ""
+"Grupo del sistema que posee los archivos MySQL, necesario para los ajustes de "
+"permisos (MySQL por defecto)"
+
+#: ../../enterprise/include/class/DatabaseHA.class.php:940
+msgid "IP or FQDN"
+msgstr "IP o FQDN"
+
+#: ../../enterprise/include/class/DatabaseHA.class.php:941
+msgid ""
+"This action only registers an already configured node. This action does not "
+"configure any resource."
+msgstr ""
+"Esta acción solo registra un nodo ya configurado. Esta acción no configura "
+"ninguna fuente."
+
+#: ../../enterprise/include/class/DatabaseHA.class.php:951
+msgid "Cluster node label (pcs)"
+msgstr "Etiqueta de nodo de cluster (pcs)"
+
+#: ../../enterprise/include/class/DatabaseHA.class.php:959
+#: ../../enterprise/meta/advanced/metasetup.consoles.php:602
+msgid "DB port"
+msgstr "Puerto de la BD"
+
+#: ../../enterprise/include/class/DatabaseHA.class.php:967
+msgid "SSH user"
+msgstr "Usuario SSH"
+
+#: ../../enterprise/include/class/DatabaseHA.class.php:975
+msgid "SSH port"
+msgstr "Puerto SSH"
+
+#: ../../enterprise/include/class/DatabaseHA.class.php:983
+msgid "SSH key"
+msgstr "Clave SSH"
+
+#: ../../enterprise/include/class/DatabaseHA.class.php:991
+msgid "SSH public key"
+msgstr "Clave SSH pública"
+
+#: ../../enterprise/include/class/DatabaseHA.class.php:1043
+msgid "Missed parameters"
+msgstr "Parámetros omitidos"
+
+#: ../../enterprise/include/class/DatabaseHA.class.php:1090
+msgid "You must specify a host"
+msgstr "Especifique un host"
+
+#: ../../enterprise/include/class/DatabaseHA.class.php:1092
+msgid "DB port must be a positive integer"
+msgstr "El puerto de la base de datos debe ser un valor positivo"
+
+#: ../../enterprise/include/class/DatabaseHA.class.php:1094
+msgid "SSH port must be a positive integer"
+msgstr "El puerto SSH debe ser un integrante positivo"
+
+#: ../../enterprise/include/class/DatabaseHA.class.php:1096
+msgid "You must specify a SSH user"
+msgstr "Especifique el usuario SSH"
+
+#: ../../enterprise/include/class/DatabaseHA.class.php:1098
+msgid "You must specify a replication DB user"
+msgstr "Especifique un usuario de replicación de base de datos"
+
+#: ../../enterprise/include/class/DatabaseHA.class.php:1100
+msgid "You must specify a replication DB pass"
+msgstr "Especifique una contraseña de replicación de base de datos"
+
+#: ../../enterprise/include/class/DatabaseHA.class.php:1102
+msgid "You must specify a public key path"
+msgstr "Especifique una ruta de clave pública"
+
+#: ../../enterprise/include/class/DatabaseHA.class.php:1104
+msgid "You must specify a private path"
+msgstr "Especifique una ruta privada"
+
+#: ../../enterprise/include/class/DatabaseHA.class.php:1154
+msgid "Successfully "
+msgstr "Correctamente "
+
+#: ../../enterprise/include/class/Google.cloud.php:301
+msgid "Compute Engine"
+msgstr "Compute Engine"
+
+#: ../../enterprise/include/class/Google.cloud.php:877
+msgid "This options only applies to zone (region) agents."
+msgstr "Esta opción solo aplica a los agentes de la zona (región)."
+
+#: ../../enterprise/include/class/Google.cloud.php:890
+msgid "Scan and general monitoring"
+msgstr "Escanear y monitorización general"
+
+#: ../../enterprise/include/class/Google.cloud.php:903
+msgid "CPU performance summary"
+msgstr "Resumen del funcionamiento de la CPU"
+
+#: ../../enterprise/include/class/CommandCenter.class.php:146
+msgid "Command center"
+msgstr "command center"
+
+#: ../../enterprise/include/class/CommandCenter.class.php:160
+msgid "Could not be start merge process, no nodes in the metaconsole "
+msgstr ""
+"No se pudo iniciar el proceso de combinación, no hay nodos en la metaconsola "
+
+#: ../../enterprise/include/class/CommandCenter.class.php:169
+#: ../../enterprise/include/functions_groups.php:49
+msgid "Metaconsole"
+msgstr "Metaconsola"
+
+#: ../../enterprise/include/class/CommandCenter.class.php:265
+#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:903
+msgid ""
+"Memory limit is recomended to be unlimited in metaconsole, please set to -1 in "
+"php.ini."
+msgstr ""
+"Se recomienda que el límite de memoria sea ilimitado en la metaconsola, "
+"establezca en -1 en php.ini."
+
+#: ../../enterprise/include/class/CommandCenter.class.php:312
+msgid "Nodes priority order"
+msgstr "Orden de prioridad de los nodos"
+
+#: ../../enterprise/include/class/CommandCenter.class.php:317
+#: ../../enterprise/meta/advanced/metasetup.consoles.php:830
+#: ../../enterprise/godmode/setup/setup_metaconsole.php:270
+msgid "DB"
+msgstr "BD"
+
+#: ../../enterprise/include/class/CommandCenter.class.php:318
+#: ../../enterprise/meta/advanced/metasetup.consoles.php:831
+#: ../../enterprise/godmode/setup/setup_metaconsole.php:271
+msgid "API"
+msgstr "API"
+
+#: ../../enterprise/include/class/CommandCenter.class.php:366
+msgid "Unify databases"
+msgstr "Unificar bases de datos"
+
+#: ../../enterprise/include/class/CommandCenter.class.php:383
+msgid "merge process"
+msgstr "proceso de combinación"
+
+#: ../../enterprise/include/class/CommandCenter.class.php:391
+msgid "Process detail of node"
+msgstr "Detalle del proceso del nodo"
+
+#: ../../enterprise/include/class/CommandCenter.class.php:392
+msgid "Errors of node"
+msgstr "Errores de nodo"
+
+#: ../../enterprise/include/class/CommandCenter.class.php:421
+msgid "Unexpected end of process"
+msgstr "Fin inesperado del proceso"
+
+#: ../../enterprise/include/class/CommandCenter.class.php:422
+msgid "Please retry"
+msgstr "Por favor reinténtelo"
+
+#: ../../enterprise/include/class/CommandCenter.class.php:443
+msgid "Critical issues while merging"
+msgstr "Problemas críticos durante la fusión"
+
+#: ../../enterprise/include/class/CommandCenter.class.php:444
+msgid "Please restore your backups"
+msgstr "Restaure sus copias de seguridad"
+
+#: ../../enterprise/include/class/CommandCenter.class.php:455
+#: ../../enterprise/include/class/CommandCenter.class.php:1119
+msgid "Error message"
+msgstr "Mensaje de error"
+
+#: ../../enterprise/include/class/CommandCenter.class.php:457
+msgid "Process details"
+msgstr "Detalles del proceso"
+
+#: ../../enterprise/include/class/CommandCenter.class.php:458
+msgid ""
+"System is not unified yet, something is wrong, please troubleshoot the errors "
+"and retry the merge process. Your data have not been modified."
+msgstr ""
+"El sistema aún no está unificado, algo está mal, solucione los errores y "
+"vuelva a intentar el proceso de fusión. Sus datos no han sido modificados."
+
+#: ../../enterprise/include/class/CommandCenter.class.php:459
+msgid "Errors while merging"
+msgstr "Errores al fusionar"
+
+#: ../../enterprise/include/class/CommandCenter.class.php:460
+msgid "The process has been completed correctly"
+msgstr "El proceso se ha completado correctamente"
+
+#: ../../enterprise/include/class/CommandCenter.class.php:462
+msgid "System is merging your environment, please wait"
+msgstr "El sistema está fusionando su entorno, espere"
+
+#: ../../enterprise/include/class/CommandCenter.class.php:464
+#: ../../enterprise/include/class/CommandCenter.class.php:884
+msgid "Initialice merge"
+msgstr "Inicializar fusión"
+
+#: ../../enterprise/include/class/CommandCenter.class.php:465
+#: ../../enterprise/include/class/CommandCenter.class.php:890
+msgid "Apply merge"
+msgstr "Aplicar combinación"
+
+#: ../../enterprise/include/class/CommandCenter.class.php:466
+msgid "Finished merge"
+msgstr "Fusión finalizada"
+
+#: ../../enterprise/include/class/CommandCenter.class.php:467
+#: ../../enterprise/include/class/CommandCenter.class.php:896
+msgid "Restore merge"
+msgstr "Restaurar combinación"
+
+#: ../../enterprise/include/class/CommandCenter.class.php:469
+msgid "Succesfully"
+msgstr "Éxito"
+
+#: ../../enterprise/include/class/CommandCenter.class.php:470
+msgid "Pending operations"
+msgstr "Operaciones pendientes"
+
+#: ../../enterprise/include/class/CommandCenter.class.php:472
+msgid "Error. Synchronization aborted. Backup restored"
+msgstr "Error. Sincronización anulada. Copia de seguridad restaurada"
+
+#: ../../enterprise/include/class/CommandCenter.class.php:542
+#: ../../enterprise/include/class/CommandCenter.class.php:548
+msgid "Update priority nodes"
+msgstr "Actualizar nodos prioritarios"
+
+#: ../../enterprise/include/class/CommandCenter.class.php:543
+msgid "Successfully updated priority order nodes"
+msgstr "Nodos de orden de prioridad actualizados correctamente"
+
+#: ../../enterprise/include/class/CommandCenter.class.php:549
+msgid "Could not be updated priority order nodes"
+msgstr "No se pudieron actualizar los nodos de orden de prioridad"
+
+#: ../../enterprise/include/class/CommandCenter.class.php:565
+msgid ""
+"By unifying databases all information across your infrastructure will be "
+"merged to gain integrity"
+msgstr ""
+"Al unificar las bases de datos, toda la información de su infraestructura se "
+"fusionará para obtener integridad."
+
+#: ../../enterprise/include/class/CommandCenter.class.php:578
+#: ../../enterprise/include/class/CommandCenter.class.php:588
+msgid "Blocked"
+msgstr "Bloqueado"
+
+#: ../../enterprise/include/class/CommandCenter.class.php:579
+msgid "This process already running"
+msgstr "Este proceso ya se está ejecutando"
+
+#: ../../enterprise/include/class/CommandCenter.class.php:589
+msgid "You cannot start a new merge because system is merging events data."
+msgstr ""
+"No puede iniciar una nueva combinación porque el sistema está combinando datos "
+"de eventos."
+
+#: ../../enterprise/include/class/CommandCenter.class.php:597
+msgid "Press OK button to start the process"
+msgstr "Presione el botón OK para iniciar el proceso"
+
+#: ../../enterprise/include/class/CommandCenter.class.php:599
+msgid ""
+"There are backups from a previous merging process, are you sure you want to "
+"overwrite those backups? Press OK button to ignore this message and start the "
+"process."
+msgstr ""
+"Hay copias de seguridad de un proceso de fusión anterior, ¿está seguro de que "
+"desea sobrescribir esas copias de seguridad? Presione el botón OK para ignorar "
+"este mensaje e iniciar el proceso."
+
+#: ../../enterprise/include/class/CommandCenter.class.php:647
+msgid "System is merging events..."
+msgstr "El sistema está fusionando eventos..."
+
+#: ../../enterprise/include/class/CommandCenter.class.php:654
+msgid "Already working..."
+msgstr "Ya funcionando..."
+
+#: ../../enterprise/include/class/CommandCenter.class.php:760
+#: ../../enterprise/include/class/CommandCenter.class.php:761
+msgid "Initilize"
+msgstr "Initilizar"
+
+#: ../../enterprise/include/class/CommandCenter.class.php:866
+#: ../../enterprise/include/class/CommandCenter.class.php:1054
+msgid "Waiting"
+msgstr "Esperando"
+
+#: ../../enterprise/include/class/CommandCenter.class.php:873
+msgid "Process detail"
+msgstr "Detalle del proceso"
+
+#: ../../enterprise/include/class/CommandCenter.class.php:878
+msgid "Display errors"
+msgstr "Mostrar errores"
+
+#: ../../enterprise/include/class/CommandCenter.class.php:909
+msgid "There are no nodes to do the merge process."
+msgstr "No hay nodos para realizar el proceso de combinación."
+
+#: ../../enterprise/include/class/CommandCenter.class.php:1017
+msgid "merge events"
+msgstr "eventos de combinación"
+
+#: ../../enterprise/include/class/CommandCenter.class.php:1060
+msgid "Retry process"
+msgstr "Reintentar proceso"
+
+#: ../../enterprise/include/class/CommandCenter.class.php:1065
+msgid "Display events errors"
+msgstr "Mostrar errores de eventos"
+
+#: ../../enterprise/include/class/CommandCenter.class.php:1078
+msgid "Events History"
+msgstr "Historial de eventos"
+
+#: ../../enterprise/include/class/CommandCenter.class.php:1140
+msgid "merge process events"
+msgstr "eventos del proceso de combinación"
+
+#: ../../enterprise/include/functions_tasklist.php:58
+msgid ""
+"Discovery relies on a proper setup of cron, the time-based scheduling service"
+msgstr ""
+"El Discovery se basa en la correcta configuración de cron, el servicio de "
+"programación en función del tiempo"
+
+#: ../../enterprise/include/functions_tasklist.php:77
+msgid "Please check process is no locked."
+msgstr "Compruebe que el proceso no está bloqueado"
+
+#: ../../enterprise/include/functions_tasklist.php:143
+#: ../../enterprise/include/functions_tasklist.php:688
+msgid "There are no console task defined yet."
+msgstr "Aún no hay tareas de consola definidas."
+
+#: ../../enterprise/include/functions_tasklist.php:569
+msgid "Task disabled"
+msgstr "Tarea deshabilitada"
+
+#: ../../enterprise/include/functions_tasklist.php:693
+msgid "Console Tasks"
+msgstr "Tareas de consola"
+
+#: ../../enterprise/include/reset_pass.php:98
+#: ../../enterprise/meta/include/reset_pass.php:93
+msgid "User to reset password"
+msgstr "Usuario de la contraseña a resetear"
+
+#: ../../enterprise/include/reset_pass.php:123
+#: ../../enterprise/include/process_reset_pass.php:136
+#: ../../enterprise/meta/include/reset_pass.php:122
+#: ../../enterprise/meta/include/process_reset_pass.php:132
+msgid "Back to login"
+msgstr "Volver a identificarse"
+
+#: ../../enterprise/include/reset_pass.php:174
+#: ../../enterprise/include/reset_pass.php:177
+#: ../../enterprise/meta/include/reset_pass.php:165
+#: ../../enterprise/meta/include/reset_pass.php:168
+msgid "Reset password failed"
+msgstr "Error al restablecer la contraseña"
+
+#: ../../enterprise/include/lib/RCMDFile.class.php:203
+msgid "You do not have grants to access this feature"
+msgstr "No tiene permisos de acceso a esta funcionalidad"
+
+#: ../../enterprise/include/lib/RCMDFile.class.php:548
+msgid "There was a problem creating RCMD"
+msgstr "Ha habido un problema al crear RCMD"
+
+#: ../../enterprise/include/lib/RCMDFile.class.php:693
+#: ../../enterprise/include/lib/RCMDFile.class.php:717
+msgid "There was a problem deleting RCMD"
+msgstr "Ha habido un problema al eliminar RCMD"
+
+#: ../../enterprise/include/lib/RCMDFile.class.php:865
+msgid "No agent configuration file"
+msgstr "No hay archivo de configuración de agente"
+
+#: ../../enterprise/include/lib/RCMDFile.class.php:873
+msgid "you don't have write permissions in the configuration file"
+msgstr "no tiene permisos de escritura en el archivo de configuración"
+
+#: ../../enterprise/include/lib/RCMDFile.class.php:914
+msgid "This agent is already a target"
+msgstr "Este agente ya es un objetivo"
+
+#: ../../enterprise/include/lib/RCMDFile.class.php:945
+#, php-format
+msgid "You do not have grants to access in this agent %s"
+msgstr "No tiene permisos para acceder a este agente %s"
+
+#: ../../enterprise/include/lib/RCMDFile.class.php:1011
+msgid "There was a problem creating RCMD files"
+msgstr "Ha habido un problema al crear los archivos RCMD"
+
+#: ../../enterprise/include/lib/RCMDFile.class.php:1058
+msgid "There was a problem creating target"
+msgstr "Ha habido un problema al crear un objetivo"
+
+#: ../../enterprise/include/lib/RCMDFile.class.php:1092
+msgid "There was a problem adding items in the configuration file"
+msgstr "Ha habido un problema al añadir elementos al archivo de configuración"
+
+#: ../../enterprise/include/lib/RCMDFile.class.php:1118
+#: ../../enterprise/include/lib/RCMDFile.class.php:1285
+msgid "No agent has been selected"
+msgstr "No se han seleccionado agentes"
+
+#: ../../enterprise/include/lib/RCMDFile.class.php:1151
+msgid "Target doesn't exist"
+msgstr "El objetivo no existe"
+
+#: ../../enterprise/include/lib/RCMDFile.class.php:1223
+msgid "There was a problem deleting tokens in the configuration file"
+msgstr "Ha habido un problema al eliminar los tokes del archivo de configuración"
+
+#: ../../enterprise/include/lib/RCMDFile.class.php:1259
+msgid "There was a problem deleting target from DB"
+msgstr "Ha habido un problema al eliminar el objetivo de la base de datos"
+
+#: ../../enterprise/include/lib/RCMDFile.class.php:1417
+msgid "Yaml is empty"
+msgstr "Yaml está vacío"
+
+#: ../../enterprise/include/lib/RCMDFile.class.php:1426
+msgid "Doesn't have a valid YAML format"
+msgstr "No tiene un formato YAML válido"
+
+#: ../../enterprise/include/lib/RCMDFile.class.php:1444
+#, php-format
+msgid "%s field is not allowed"
+msgstr "El campo %s no está permitido"
+
+#: ../../enterprise/include/lib/Service.php:152
+msgid "Service module does not match pointed one"
+msgstr "El módulo de servicio no coincide con el señalado"
+
+#: ../../enterprise/include/lib/Service.php:158
+#, php-format
+msgid "Service module not found %s <br>"
+msgstr "Módulo de servicio no encontrado %s <br>"
+
+#: ../../enterprise/include/lib/Service.php:177
+msgid "Service module SLA not found"
+msgstr "No se encontró el SLA del módulo de servicio"
+
+#: ../../enterprise/include/lib/Service.php:183
+#, php-format
+msgid "SLA service module not found %s<br>"
+msgstr "Módulo de servicio SLA no encontrado %s<br>"
+
+#: ../../enterprise/include/lib/Service.php:202
+msgid "Service module SLA does not match pointed one"
+msgstr "El SLA del módulo de servicio no corresponde con el señalado"
+
+#: ../../enterprise/include/lib/Service.php:208
+#, php-format
+msgid "SLA service value module not found %s<br>"
+msgstr "Módulo del valor del servicio SLA no encontrado %s<br>"
+
+#: ../../enterprise/include/lib/Service.php:221
+#, php-format
+msgid "Service agent not found %s<br>"
+msgstr "Agente de servicio no encontrado %s<br>"
+
+#: ../../enterprise/include/lib/Service.php:232
+#, php-format
+msgid "Service children could not be fully retrieved: %s<br>"
+msgstr "Los hijos de servicios no se han podido extraer completamente: %s<br>"
+
+#: ../../enterprise/include/lib/Service.php:313
+msgid ""
+" Cannot switch from SMART to MANUAL if there are dynamic elements attached to "
+"the service. Please erase dynamic elements before change to MANUAL"
+msgstr ""
+" No se puede cambiar de INTELIGENTE a MANUAL si hay elementos dinámicos "
+"adjuntos al servicio. Elimine los elementos dinámicos antes de cambiar a MANUAL"
+
+#: ../../enterprise/include/lib/Service.php:771
+#, php-format
+msgid "Failed to update CPS for moduleValue for service %s: "
+msgstr "Error al actualizar CPS para moduleValue para el %s de servicio: "
+
+#: ../../enterprise/include/lib/Service.php:1384
+msgid "Error: id agent must be defined."
+msgstr "Error: defina el id de agente"
+
+#: ../../enterprise/include/lib/Service.php:1460
+msgid " error: Target agent does not exist."
+msgstr " error: el agente objetivo no existe."
+
+#: ../../enterprise/include/lib/Policy.php:281
+#, php-format
+msgid "Invalid operation %s"
+msgstr "Operación no válida %s"
+
+#: ../../enterprise/include/lib/Policy.php:1168
+#, php-format
+msgid "Policy already defined: \"%s\""
+msgstr "La política ya se ha definido: \"%s\""
+
+#: ../../enterprise/include/lib/ClusterViewer/ClusterWizard.php:182
+msgid "Cluster already defined, please use another name."
+msgstr "Este clúster ya ha sido definido, use otro nombre."
+
+#: ../../enterprise/include/lib/ClusterViewer/ClusterWizard.php:779
+msgid "Cluster name"
+msgstr "Nombre del clúster"
+
+#: ../../enterprise/include/lib/ClusterViewer/ClusterWizard.php:780
+msgid ""
+"An agent with the same name of the cluster will be created, as well a special "
+"service with the same name"
+msgstr ""
+"Se creará un agente con el mismo nombre que el clúster y un servicio especial "
+"con el mismo nombre."
+
+#: ../../enterprise/include/lib/ClusterViewer/ClusterWizard.php:794
+msgid "Cluster type"
+msgstr "Tipo de clúster"
+
+#: ../../enterprise/include/lib/ClusterViewer/ClusterWizard.php:795
+msgid ""
+"AA is a cluster where all members are working. In AP cluster only master "
+"member is working"
+msgstr ""
+"AA es un clúster donde funcionan todos los miembros. En un clúster AP solo "
+"trabaja el miembro maestro."
+
+#: ../../enterprise/include/lib/ClusterViewer/ClusterWizard.php:803
+msgid "Active - Active"
+msgstr "Activo - Activo"
+
+#: ../../enterprise/include/lib/ClusterViewer/ClusterWizard.php:804
+msgid "Active - Pasive"
+msgstr "Activo - Pasivo"
+
+#: ../../enterprise/include/lib/ClusterViewer/ClusterWizard.php:824
+msgid "Target cluster agent will be stored under this group"
+msgstr "El agente del clúster objetivo se guardará bajo este grupo"
+
+#: ../../enterprise/include/lib/ClusterViewer/ClusterWizard.php:841
+msgid ""
+"You must select a Prediction Server to perform all cluster status calculations"
+msgstr ""
+"Debe seleccionar un Servidor de Predicción para llevar a cabo todos los "
+"cálculos de estado de clúster"
+
+#: ../../enterprise/include/lib/ClusterViewer/ClusterWizard.php:1016
+msgid "critical if"
+msgstr "crítico si"
+
+#: ../../enterprise/include/lib/ClusterViewer/ClusterWizard.php:1025
+#: ../../enterprise/include/lib/ClusterViewer/ClusterWizard.php:1048
+#, php-format
+msgid "% of balanced modules are down (equal or greater)."
+msgstr "% de los módulos equilibrados están caídos (igual o mayor)."
+
+#: ../../enterprise/include/lib/ClusterViewer/ClusterWizard.php:1063
+msgid "Please, set threholds for all active-active modules"
+msgstr "Ponga umbrales para todos los módulos activo-activo"
+
+#: ../../enterprise/include/lib/ClusterViewer/ClusterWizard.php:1167
+msgid "Please, check all active-passive modules critical for this cluster"
+msgstr "Compruebe todos los módulos activo-pasivo críticos para este clúster"
+
+#: ../../enterprise/include/lib/ClusterViewer/ClusterWizard.php:1169
+msgid ""
+"If a critical balanced module is going to critical status, then cluster will "
+"be critical."
+msgstr ""
+"Si un módulo equilibrado crítico pasa a estado crítico, el clúster entrará en "
+"estado crítico."
+
+#: ../../enterprise/include/lib/ClusterViewer/ClusterManager.php:224
+msgid "Cluster not found: "
+msgstr "Clúster no encontrado: "
+
+#: ../../enterprise/include/lib/ClusterViewer/ClusterManager.php:233
+msgid "Cluster agent not found: "
+msgstr "Agente del clúster no encontrado: "
+
+#: ../../enterprise/include/lib/ClusterViewer/ClusterManager.php:270
+#, php-format
+msgid "Error while deleting, reason: %s"
+msgstr "Error al eliminar, motivo: %s"
+
+#: ../../enterprise/include/lib/ClusterViewer/ClusterManager.php:278
+msgid "Cluster successfully deleted."
+msgstr "Clúster eliminado con éxito."
+
+#: ../../enterprise/include/lib/ClusterViewer/ClusterManager.php:304
+#, php-format
+msgid "Error while forcing, reason: %s"
+msgstr "Error al forzar, motivo: %s"
+
+#: ../../enterprise/include/lib/ClusterViewer/ClusterManager.php:312
+msgid "Cluster successfully forced."
+msgstr "Clúster forzado con éxito."
+
+#: ../../enterprise/include/lib/ClusterViewer/ClusterManager.php:568
+msgid "Not set"
+msgstr "No configurado"
+
+#: ../../enterprise/include/lib/ClusterViewer/ClusterManager.php:578
+msgid "Active-Active"
+msgstr "Activo-Activo"
+
+#: ../../enterprise/include/lib/ClusterViewer/ClusterManager.php:580
+msgid "Active-Passive"
+msgstr "Activo-Pasivo"
+
+#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:171
+msgid "Activating node"
+msgstr "Activación del nodo"
+
+#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:205
+#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:361
+#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:673
+#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:800
+#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1071
+#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1165
+#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1517
+#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1814
+#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2183
+#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3107
+#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3388
+#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3542
+#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3617
+#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3922
+#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:4147
+msgid "Connect node"
+msgstr "Conectar nodo"
+
+#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:580
+msgid "Create table tmerge_error"
+msgstr "Creando tabla tmerge_error"
+
+#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:606
+msgid "Create table tmerge_steps"
+msgstr "Creando tabla tmerge_steps"
+
+#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:631
+msgid "Create table tmerge_queries"
+msgstr "Creando tabla tmerge_queries"
+
+#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:772
+#, php-format
+msgid "%s console"
+msgstr "%s consola"
+
+#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:777
+msgid "Check cron task"
+msgstr "Comprobar tarea cron"
+
+#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:778
+msgid "Please login into this node before using this feature"
+msgstr "Inicie sesión en este nodo antes de utilizar esta función"
+
+#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:860
+msgid "memory_limit current value"
+msgstr "valor actual de memory_limit "
+
+#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:867
+msgid ""
+"Check current packages, all nodes and metaconsole, are not in the same version"
+msgstr ""
+"Compruebe que los paquetes actuales, todos los nodos y la metaconsola, no "
+"están en la misma versión"
+
+#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:879
+msgid "Check Minor release, All nodes and metaconsole, do not have the same mr"
+msgstr ""
+"Comprobar versión menor, Todos los nodos y metaconsola, no tienen el mismo mr"
+
+#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:891
+msgid "Max size collection, all nodes and metaconsole, are not equal"
+msgstr ""
+"Colección de tamaño máximo, todos los nodos y metaconsola, no son iguales"
+
+#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:916
+#, php-format
+msgid ""
+"Post max size, nodes cannot be smaller than the size of the metaconsole %s"
+msgstr ""
+"Tamaño máximo posterior, los nodos no pueden ser más pequeños que el tamaño de "
+"la metaconsola %s"
+
+#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:931
+#, php-format
+msgid ""
+"Upload max file size, nodes cannot be smaller than the size of the metaconsole "
+"%s"
+msgstr ""
+"Upload max file size: los nodos no pueden ser más pequeños que el tamaño de la "
+"metaconsola %s"
+
+#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:993
+#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1009
+msgid "Problems with the backup directory"
+msgstr "Problemas con el directorio de copia de seguridad"
+
+#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:994
+msgid "Cannot create \"merge_backups\" folder in attachment directory"
+msgstr ""
+"No se puede crear la carpeta \"merge_backups\" en el directorio de datos "
+"adjuntos"
+
+#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1010
+msgid "The \"merge_backpus\" directory does not have the correct permissions"
+msgstr "El directorio \"merge_backpus\" no tiene los permisos correctos"
+
+#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1020
+msgid "Extension ZIP"
+msgstr "Extensión ZIP"
+
+#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1021
+msgid "The ZIP extension is not loaded, please install this dependency"
+msgstr "La extensión ZIP no está cargada, instale esta dependencia"
+
+#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1122
+msgid "Inserts backups, disable foreings keys, exceptions in tmerge_queries"
+msgstr ""
+"Inserta copias de seguridad, deshabilita claves de antecesos, excepciones en "
+"tmerge_queries"
+
+#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1148
+msgid "Resets foreing keys and exceptions and ends the merge preparation process"
+msgstr ""
+"Restablece las claves previas y las excepciones y finaliza el proceso de "
+"preparación de la combinación"
+
+#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1195
+msgid "Enable exceptions in tmerge_queries"
+msgstr "Habilitar excepciones en tmerge_queries"
+
+#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1219
+msgid "Enable foreing keys in tmerge_queries"
+msgstr "Habilitar claves de anteo en tmerge_queries"
+
+#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1498
+#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1783
+msgid "Preparation of all nodes for the table merge process"
+msgstr "Preparación de todos los nodos para el proceso de combinación de tablas"
+
+#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1574
+msgid "This table does not have the id"
+msgstr "Esta tabla no tiene el identificador"
+
+#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1575
+msgid "Prepare merge request"
+msgstr "Preparar la solicitud de combinación"
+
+#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1901
+msgid "Inserts truncate, autoincrement and inserts in tmerge_queries"
+msgstr "Inserta truncado, autoincremento e inserto en tmerge_queries"
+
+#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2071
+msgid "Inserts updates in tmerge_queries"
+msgstr "Inserta actualizaciones en tmerge_queries"
+
+#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2108
+msgid "Merging collections files"
+msgstr "Fusión de archivos de colecciones"
+
+#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2164
+#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2310
+#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2481
+#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3094
+#, php-format
+msgid "Api call: %s"
+msgstr "Llamada api: %s"
+
+#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2222
+#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2223
+msgid "Problems while backing up collections from: "
+msgstr "Problemas al realizar copias de seguridad de colecciones de: "
+
+#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2240
+#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2244
+#, php-format
+msgid "Problems downloading collections from %s"
+msgstr "Problemas para descargar colecciones de %s"
+
+#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2256
+#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2260
+#, php-format
+msgid "Problems unzipping collection file from %s"
+msgstr "Problemas al descomprimir el archivo de recopilación de %s"
+
+#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2539
+msgid "Start phase merge"
+msgstr "Combinación de fases de inicio"
+
+#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2551
+msgid "Create backups"
+msgstr "Crear copia de seguridad"
+
+#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2619
+#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2620
+msgid "Problems creating the backup conf agents"
+msgstr "Problemas al crear los agentes conf de copia de seguridad"
+
+#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2630
+#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2868
+#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3238
+msgid "Class agent"
+msgstr "Clase de agente "
+
+#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2654
+#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2666
+msgid "Disable_foreing"
+msgstr "Disable_foreing"
+
+#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2678
+msgid "Truncate table"
+msgstr "Tabla truncada"
+
+#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2696
+msgid "Autoincrement"
+msgstr "Autoincremento"
+
+#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2708
+msgid "Inserts"
+msgstr "Postizos"
+
+#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2726
+msgid "Disabling constraints"
+msgstr "Desactivación de restricciones"
+
+#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2744
+msgid "Updates"
+msgstr "Actualizaciones"
+
+#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2767
+msgid "Restoring constraints"
+msgstr "Restauración de restricciones"
+
+#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2785
+msgid "Enable exceptions"
+msgstr "Habilitar excepciones"
+
+#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2803
+msgid "Enable foreings keys"
+msgstr "Habilitar claves foreign"
+
+#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2820
+#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2821
+msgid "Update conf agent policies"
+msgstr "Actualizar directivas de agente conf"
+
+#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2857
+#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2858
+msgid "Error updating agent conf"
+msgstr "Error al actualizar el agente conf"
+
+#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2879
+msgid "Synchronizing collections"
+msgstr "Sincronización de colecciones"
+
+#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2891
+#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2892
+msgid "Error synchronizing collections"
+msgstr "Error al sincronizar las colecciones al nodo %s"
+
+#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2929
+#: ../../enterprise/include/lib/Metaconsole/Node.php:1765
+msgid "Final step"
+msgstr "Paso final"
+
+#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2930
+#: ../../enterprise/include/lib/Metaconsole/Node.php:1766
+msgid "Database merged"
+msgstr "Base de datos combinada"
+
+#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2988
+msgid "Problems unzipping collections at: "
+msgstr "Problemas para descomprimir colecciones en: "
+
+#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2989
+#, php-format
+msgid "File is not a valid zip file \"%s\""
+msgstr "El archivo no es un archivo zip válido \"%s\""
+
+#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3147
+msgid "Restoring database backup"
+msgstr "Restaurar una copia de seguridad"
+
+#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3173
+#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:4419
+msgid "Problems creating the backup"
+msgstr "Problemas al crear la copia de seguridad"
+
+#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3186
+msgid "Restore backups conf agents"
+msgstr "Restore backups conf agents"
+
+#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3223
+msgid "Problems restoring the backup conf agents"
+msgstr "Problemas para restaurar los agentes conf de copia de seguridad"
+
+#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3225
+#, php-format
+msgid "Agent \"%s\" with md5 file \"%s\""
+msgstr "Agente \"%s\" con el archivo md5 \"%s\""
+
+#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3251
+msgid "Restore collections"
+msgstr "Restaurar colecciones"
+
+#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3266
+#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3267
+msgid "Error Synch collections"
+msgstr "Colecciones de sincronización de errores"
+
+#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3484
+#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3724
+msgid "Insert info steps"
+msgstr "Insertar pasos de información"
+
+#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3649
+msgid "Node not ready"
+msgstr "Nodo no listo"
+
+#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3650
+msgid "Pending to be unified"
+msgstr "Pendiente de ser unificado"
+
+#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3889
+#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3894
+#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3946
+#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3951
+msgid "Initialize"
+msgstr "Iniciar"
+
+#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:4093
+msgid "Backup"
+msgstr "Copia de seguridad"
+
+#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:4124
+msgid "Applying"
+msgstr "Trabajo"
+
+#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:4350
+msgid "Error updating events"
+msgstr "Error al actualizar eventos"
+
+#: ../../enterprise/include/lib/Metaconsole/Node.php:145
+msgid "auth error."
+msgstr "Error de autenticación."
+
+#: ../../enterprise/include/lib/Metaconsole/Node.php:149
+msgid "connection error."
+msgstr "error de conexión."
+
+#: ../../enterprise/include/lib/Metaconsole/Node.php:153
+msgid "could not resolve the host."
+msgstr "no se ha podido resolver el host."
+
+#: ../../enterprise/include/lib/Metaconsole/Node.php:157
+#: ../../enterprise/include/lib/Metaconsole/Node.php:206
+#: ../../enterprise/include/lib/Metaconsole/Node.php:253
+#: ../../enterprise/include/lib/Metaconsole/Node.php:509
+msgid "unknown error."
+msgstr "error desconocido."
+
+#: ../../enterprise/include/lib/Metaconsole/Node.php:194
+msgid "missing credentials."
+msgstr "faltan credenciales."
+
+#: ../../enterprise/include/lib/Metaconsole/Node.php:198
+msgid "cannot connect to host."
+msgstr "no se puede conectar con el host."
+
+#: ../../enterprise/include/lib/Metaconsole/Node.php:202
+msgid "database does not exist."
+msgstr "la base de datos no existe."
+
+#: ../../enterprise/include/lib/Metaconsole/Node.php:245
+msgid "failed to connect to node database."
+msgstr "no se ha podido conectar con la base de datos del nodo."
+
+#: ../../enterprise/include/lib/Metaconsole/Node.php:249
+msgid "MR version mistmatch."
+msgstr "No coincide con la versión MR."
+
+#: ../../enterprise/include/lib/Metaconsole/Node.php:288
+#, php-format
+msgid "last event replication: %s"
+msgstr "última replicación de evento: %s"
+
+#: ../../enterprise/include/lib/Metaconsole/Node.php:294
+msgid "server connection failed"
+msgstr "Error en la conexión con el servidor"
+
+#: ../../enterprise/include/lib/Metaconsole/Node.php:298
+#: ../../enterprise/include/lib/Metaconsole/Node.php:344
+#: ../../enterprise/include/lib/Metaconsole/Node.php:405
+msgid "unknown error"
+msgstr "error desconocido"
+
+#: ../../enterprise/include/lib/Metaconsole/Node.php:310
+msgid "Last event replication"
+msgstr "Replicación del último evento"
+
+#: ../../enterprise/include/lib/Metaconsole/Node.php:340
+msgid "agent cache failed"
+msgstr "error en el caché de agente"
+
+#: ../../enterprise/include/lib/Metaconsole/Node.php:393
+msgid "node is not recognized as metaconsole node."
+msgstr "el nodo no se reconoce como nodo de Metaconsola."
+
+#: ../../enterprise/include/lib/Metaconsole/Node.php:397
+msgid "node license missmatch."
+msgstr "el nodo de la licencia no coincide."
+
+#: ../../enterprise/include/lib/Metaconsole/Node.php:401
+msgid "cannot connect to node"
+msgstr "no se puede conectar con el nodo"
+
+#: ../../enterprise/include/lib/Metaconsole/Node.php:433
+msgid "Database is up to date with this Metaconsole"
+msgstr "La base de datos está actualizada con esta metaconsola"
+
+#: ../../enterprise/include/lib/Metaconsole/Node.php:443
+msgid "Node not found"
+msgstr "Nodo no encontrado"
+
+#: ../../enterprise/include/lib/Metaconsole/Node.php:448
+#, php-format
+msgid ""
+"There are %d queries pending to be applied, click in the eye to see results"
+msgstr ""
+"Hay %d consultas pendientes de aplicar, haga clic en el ojo para ver los "
+"resultados"
+
+#: ../../enterprise/include/lib/Metaconsole/Node.php:457
+msgid "Database synchronization state and pending tasks"
+msgstr "Estado de sincronización de la base de datos y tareas pendientes"
+
+#: ../../enterprise/include/lib/Metaconsole/Node.php:592
+msgid "Operation and table"
+msgstr "Funcionamiento y tabla"
+
+#: ../../enterprise/include/lib/Metaconsole/Node.php:707
+#, php-format
+msgid ""
+"Failed synchronizing %s, please check node PHP configuration issues and "
+"collection max sizes"
+msgstr ""
+"Error al sincronizar %s, verifique los problemas de configuración de PHP del "
+"nodo y los tamaños máximos de colección"
+
+#: ../../enterprise/include/lib/Metaconsole/Node.php:1232
+msgid ""
+"The elimination of this node will lead to the suppression of its agents from "
+"metaconsole and all the configuration assigned to them. "
+msgstr ""
+"La eliminación de este nodo conllevará la supresión de sus agentes de la "
+"metaconsola y de toda la configuración que se les asigne. "
+
+#: ../../enterprise/include/lib/Metaconsole/Node.php:1236
+msgid "The rules for this node may stop working. "
+msgstr "Y las reglas para este nodo podrían dejar de funcionar. "
+
+#: ../../enterprise/include/lib/Metaconsole/Node.php:1240
+msgid ""
+"The deleted node will lose its license, and you must license it manually "
+"again. "
+msgstr ""
+"El nodo eliminado perderá su licencia y debe volver a licenciarlo manualmente. "
+
+#: ../../enterprise/include/lib/Metaconsole/Node.php:1747
+#, php-format
+msgid "Failed to overwrite node data: %s"
+msgstr "Error al sobrescribir los datos del nodo: %s"
+
+#: ../../enterprise/include/lib/AlertCorrelation.class.php:798
+#: ../../enterprise/include/lib/AlertCorrelation.class.php:812
+msgid "There was a problem creating Action"
+msgstr "Ha habido un problema al crear la acción"
+
+#: ../../enterprise/include/lib/AlertCorrelation.class.php:849
+#: ../../enterprise/include/lib/AlertCorrelation.class.php:862
+msgid "There was a problem updating Action"
+msgstr "Ha habido un problema al actualizar la acción"
+
+#: ../../enterprise/include/lib/AlertCorrelation.class.php:898
+#: ../../enterprise/include/lib/AlertCorrelation.class.php:912
+msgid "There was a problem deleting Action"
+msgstr "Ha habido un problema al eliminar la acción"
+
+#: ../../enterprise/include/lib/AlertCorrelation.class.php:953
+msgid "There was a problem standby alert"
+msgstr "Ha habido un problema en la alerta en suspensión"
+
+#: ../../enterprise/include/lib/AlertCorrelation.class.php:962
+msgid "There was a problem standby off alert"
+msgstr ""
+"Ha ocurrido un problema al deshabilitar el modo suspensión de las alertas"
+
+#: ../../enterprise/include/lib/AlertCorrelation.class.php:1005
+msgid "There was a problem enabled alert"
+msgstr "Ha habido un problema en la alerta habilitada"
+
+#: ../../enterprise/include/lib/AlertCorrelation.class.php:1015
+msgid "There was a problem disabled alert"
+msgstr "Ha habido un problema en la alerta deshabilitada"
+
+#: ../../enterprise/include/lib/AlertCorrelation.class.php:1071
+msgid "Event group Recursive"
+msgstr "Recursividad del grupo de eventos"
+
+#: ../../enterprise/include/lib/AlertCorrelation.class.php:1089
+msgid "Time window"
+msgstr "Ventana de tiempo"
+
+#: ../../enterprise/include/lib/AlertCorrelation.class.php:1623
+msgid "Failed to cleanup old rules."
+msgstr "No se han podido limpiar las reglas antiguas."
+
+#: ../../enterprise/include/lib/AlertCorrelation.class.php:1631
+#, php-format
+msgid "Failed SQL: %s"
+msgstr "SQL erróneo: %s"
+
+#: ../../enterprise/include/lib/AlertCorrelation.class.php:1636
+#, php-format
+msgid "Failed to apply rule: %s."
+msgstr "Error al aplicar la regla: %s"
+
+#: ../../enterprise/include/lib/AlertCorrelation.class.php:1784
+msgid "any"
+msgstr "cualquier"
+
+#: ../../enterprise/include/lib/NetworkManager/Template.php:192
+msgid "Error linking script: "
+msgstr "Error al vincular el script: "
+
+#: ../../enterprise/include/lib/NetworkManager/NetworkAgent.php:197
+msgid "No template assigned"
+msgstr "Sin plantilla asignada"
+
+#: ../../enterprise/include/lib/NetworkManager/NetworkAgent.php:227
+msgid "NCM Agent without template assigned."
+msgstr "Agente de NCM sin plantilla asignada."
+
+#: ../../enterprise/include/lib/NetworkManager/NetworkAgent.php:233
+msgid "Current selected template does not match vendor configured."
+msgstr ""
+"La plantilla seleccionada actual no coincide con la configuración del "
+"fabricante."
+
+#: ../../enterprise/include/lib/NetworkManager/NetworkAgent.php:240
+msgid "Current selected template does not match model configured."
+msgstr "La plantilla seleccionada actual no coincide con el modelo configurado."
+
+#: ../../enterprise/include/lib/NetworkManager/NetworkAgent.php:549
+#: ../../enterprise/include/lib/NetworkManager/NetworkAgent.php:579
+#, php-format
+msgid "No %s script available for this agent, check template %s"
+msgstr "No hay %s script disponible para este agente, compruebe la plantilla %s"
+
+#: ../../enterprise/include/lib/Policy/Inventory.php:156
+#, php-format
+msgid "inventory module already registered: \"%d\""
+msgstr "módulo de inventario ya registrado: \"%d\""
+
+#: ../../enterprise/include/lib/Policy/Inventory.php:181
+#, php-format
+msgid "Failed to update, already exists: \"%d\""
+msgstr "No se ha podido actualizar, ya existe: \"%d\""
+
+#: ../../enterprise/include/lib/Policy/Queue.php:378
+#, php-format
+msgid "Already queued in %s"
+msgstr "Ya está en cola en %s"
+
+#: ../../enterprise/include/lib/Policy/Module.php:227
+#, php-format
+msgid "Failed to update: \"%s\""
+msgstr "No se ha podido actualizar: \"%s\""
+
+#: ../../enterprise/include/lib/ServiceElement.php:611
+#, php-format
+msgid "This filters will cause slowdown on server (%s ms)"
+msgstr "Estos filtros provocarán enlentecimiento del servidor (%s ms)"
+
+#: ../../enterprise/include/lib/ServiceElement.php:625
+#, php-format
+msgid "Regular expression is not valid: %s."
+msgstr "La expresión regular no es válida: %s."
+
+#: ../../enterprise/include/lib/ServiceElement.php:864
+#, php-format
+msgid " error while decoding rules: %s"
+msgstr " error al decodificar las normas: %s"
+
+#: ../../enterprise/include/lib/ServiceElement.php:1271
+#, php-format
+msgid " error: Failed to delete element: %s"
+msgstr " error: No se ha podido eliminar el elemento: %s"
+
+#: ../../enterprise/include/lib/Core/SSH.php:163
+msgid "php-ssh2 not available"
+msgstr "php-ssh2 no disponible"
+
+#: ../../enterprise/include/lib/Core/SSH.php:184
+msgid "Failed to connect"
+msgstr "No se ha podido conectar"
+
+#: ../../enterprise/include/lib/Core/SSH.php:239
+#, php-format
+msgid "Unable to open public key file %s"
+msgstr "No se ha podido abrir el archivo de clave pública %s"
+
+#: ../../enterprise/include/lib/Core/SSH.php:257
+msgid "Failed to login to target"
+msgstr "No se ha podido iniciar sesión en el objetivo"
+
+#: ../../enterprise/include/lib/Agent.php:99
+msgid " error, invalid agent."
+msgstr " error, agente no válido."
+
+#: ../../enterprise/include/lib/Agent.php:663
+#, php-format
+msgid "Log module \"%s\" does not exist"
+msgstr "El módulo de log \"%s\" no existe"
+
+#: ../../enterprise/include/lib/Agent.php:685
+#, php-format
+msgid "Plugin \"%s\" does not exist"
+msgstr "el plugin \"%s\" no existe"
+
+#: ../../enterprise/include/lib/Agent.php:817
+#, php-format
+msgid "Log module \"%s\" does not exist, %s skipped"
+msgstr "El módulo de log \"%s\" no existe, se ha omitido %s"
+
+#: ../../enterprise/include/lib/Agent.php:852
+#, php-format
+msgid "Plugin \"%s\" does not exist, %s skipped"
+msgstr "El plugin \"%s\" no existe, se ha omitido %s"
+
+#: ../../enterprise/include/lib/Agent.php:923
+#, php-format
+msgid "Log module %s already defined"
+msgstr "El módulo de log %s ya está definido"
+
+#: ../../enterprise/include/lib/Agent.php:940
+#, php-format
+msgid "Invalid module type %s"
+msgstr "Typo de módulo %s no válido"
+
+#: ../../enterprise/include/lib/Agent.php:970
+#, php-format
+msgid "Plugin %s already defined"
+msgstr "El plugin %s ya está definido"
+
+#: ../../enterprise/include/lib/Agent.php:984
+msgid "Invalid plugin definition"
+msgstr "Definición de plugin no válida"
+
+#: ../../enterprise/include/lib/NetworkManager.php:83
+msgid "Retrieve config"
+msgstr "Recuperar configuración"
+
+#: ../../enterprise/include/lib/NetworkManager.php:84
+msgid "Restore backed up config"
+msgstr "Restaurar configuración de copia de seguridad"
+
+#: ../../enterprise/include/lib/NetworkManager.php:86
+msgid "Send firmware"
+msgstr "Enviar firmware"
+
+#: ../../enterprise/include/lib/NetworkManager.php:88
+#: ../../godmode/setup/setup_general.php:408
+msgid "On demand"
+msgstr "Por demanda"
+
+#: ../../enterprise/include/lib/NetworkManager.php:93
+msgid "Executing test"
+msgstr "Ejecutando prueba"
+
+#: ../../enterprise/include/lib/NetworkManager.php:94
+msgid "Retrieving config"
+msgstr "Recuperando configuración"
+
+#: ../../enterprise/include/lib/NetworkManager.php:95
+msgid "Restoring backup"
+msgstr "Restaurando copia de seguridad"
+
+#: ../../enterprise/include/lib/NetworkManager.php:96
+msgid "Retrieving firmware version"
+msgstr "Recuperando la versión del firmware"
+
+#: ../../enterprise/include/lib/NetworkManager.php:97
+msgid "Sending firmware update"
+msgstr "Enviando actualización de firmware"
+
+#: ../../enterprise/include/lib/NetworkManager.php:98
+msgid "Executing custom script"
+msgstr "Ejecutando scripts personalizados"
+
+#: ../../enterprise/include/lib/NetworkManager.php:99
+msgid "Executing on demand script"
+msgstr "Ejecutando scripts bajo demanda"
+
+#: ../../enterprise/include/lib/NetworkManager.php:186
+msgid "Montly"
+msgstr "Mensualmente"
+
+#: ../../enterprise/include/functions_services.php:108
+msgid "There is no information about"
+msgstr "No hay información sobre"
+
+#: ../../enterprise/include/functions_services.php:113
+msgid "Service does not exist."
+msgstr "El servicio no existe."
+
+#: ../../enterprise/include/functions_services.php:125
+msgid "module that stores the service"
+msgstr "módulo que almacena el servicio"
+
+#: ../../enterprise/include/functions_services.php:137
+msgid "module that stores SLA service"
+msgstr "módulo que almacena el servicio SLA"
+
+#: ../../enterprise/include/functions_services.php:150
+msgid "agent that stores the service"
+msgstr "agente que almacena el servicio"
+
+#: ../../enterprise/include/functions_services.php:163
+msgid "agent that stores SLA service"
+msgstr "agente que almacena el servicio SLA"
+
+#: ../../enterprise/include/functions_services.php:184
+msgid "alert critical SLA service"
+msgstr "alerta crítica de servicio SLA"
+
+#: ../../enterprise/include/functions_services.php:205
+msgid "alert warning service"
+msgstr "servicio en estado de advertencia"
+
+#: ../../enterprise/include/functions_services.php:226
+msgid "alert critical service"
+msgstr "servicio en alerta crítica"
+
+#: ../../enterprise/include/functions_services.php:247
+msgid "alert unknown service"
+msgstr "servicio en estado desconocido"
+
+#: ../../enterprise/include/functions_services.php:528
+#, php-format
+msgid "Module automatic create for the service %s"
+msgstr "Módulo automático creado para el servicio %s"
+
+#: ../../enterprise/include/functions_services.php:728
+#: ../../enterprise/godmode/services/services.service.php:279
+msgid "Error updating service: "
+msgstr "Error al actualizar el servicio: "
+
+#: ../../enterprise/include/functions_services.php:1368
+#: ../../enterprise/include/functions_services.php:1370
+#: ../../enterprise/include/functions_services.php:1404
+#: ../../enterprise/include/functions_services.php:1405
+#: ../../enterprise/include/functions_services.php:1407
+#: ../../enterprise/include/functions_services.php:1458
+#: ../../enterprise/include/functions_services.php:1460
+#: ../../enterprise/include/functions_reporting.php:5797
+msgid "Nonexistent"
+msgstr "No existe"
+
+#: ../../enterprise/include/functions_services.php:1432
+msgid "Normal (Alert)"
+msgstr "Normal (Alerta)"
+
+#: ../../enterprise/include/functions_services.php:1436
+msgid "Critical (Alert)"
+msgstr "Crítico (Alerta)"
+
+#: ../../enterprise/include/functions_services.php:1444
+msgid "Warning (Alert)"
+msgstr "Advertencia (Alerta)"
+
+#: ../../enterprise/include/functions_services.php:1582
+msgid "There are no service elements defined"
+msgstr "No hay servicios de elementos definidos"
+
+#: ../../enterprise/include/functions_services.php:1606
+msgid "Weight Critical"
+msgstr "Peso crítico"
+
+#: ../../enterprise/include/functions_services.php:1607
+msgid "Weight Warning"
+msgstr "Peso de advertencia"
+
+#: ../../enterprise/include/functions_services.php:1608
+msgid "Weight Unknown"
+msgstr "Peso desconocido"
+
+#: ../../enterprise/include/functions_services.php:1609
+msgid "Weight Ok"
+msgstr "Peso OK"
+
+#: ../../enterprise/include/functions_services.php:1672
+#: ../../enterprise/include/functions_services.php:1717
+#: ../../enterprise/include/functions_services.php:1785
+msgid "Nonexistent. This element should be deleted"
+msgstr "Inexistente. Este elemento debería eliminarse."
+
+#: ../../enterprise/include/functions_services.php:1700
+#: ../../enterprise/include/functions_services.php:1767
+#: ../../enterprise/include/functions_services.php:1813
+msgid "This element does not affect service weigth because is disabled."
+msgstr "El elemento no afecta al peso del servicio porque está deshabilitado."
+
+#: ../../enterprise/include/functions_services.php:1828
+#, php-format
+msgid "Dynamic element (%d) '%s' does not match any target"
+msgstr "El elemento dinámico (%d) '%s' no coincide con ningún objetivo"
+
+#: ../../enterprise/include/functions_services.php:1837
+#, php-format
+msgid "Dynamic element (%d) '%s' causes an error: %s"
+msgstr "El elemento dinámico (%d) '%s' provoca un error: %s"
+
+#: ../../enterprise/include/functions_services.php:1849
+msgid "Dynamic element"
+msgstr "Elemento dinámico"
+
+#: ../../enterprise/include/functions_services.php:1855
+#, php-format
+msgid "agents like \"%s\""
+msgstr "agentes como \"%s\""
+
+#: ../../enterprise/include/functions_services.php:1860
+#, php-format
+msgid "modules like \"%s\""
+msgstr "módulos como \"%s\""
+
+#: ../../enterprise/include/functions_services.php:1989
+msgid "NOT INITIALIZED"
+msgstr "NO INICIADO"
+
+#: ../../enterprise/include/functions_services.php:2015
+#: ../../enterprise/godmode/services/services.elements.php:806
+msgid "Edit service elements"
+msgstr "Editar elementos del servicio"
+
+#: ../../enterprise/include/functions_services.php:2023
+msgid "Delete service element"
+msgstr "Eliminar elemento de servicio"
+
+#: ../../enterprise/include/functions_services.php:2082
+msgid "FAIL"
+msgstr "FALLO"
+
+#: ../../enterprise/include/auth/saml.php:119
+#, php-format
+msgid "Pandora FMS SAML authentication error: %s"
+msgstr "Error de autenticación Pandora FMS SAML: %s"
+
+#: ../../enterprise/include/auth/saml.php:184
+msgid "Force log out"
+msgstr "Forzar desconexión"
+
+#: ../../enterprise/include/functions_events.php:219
+msgid "Id source events"
+msgstr "Eventos fuente de ID"
+
+#: ../../enterprise/include/functions_events.php:245
+#: ../../enterprise/include/functions_events.php:267
+msgid "More than 5 tags"
+msgstr "Más de 5 etiquetas"
+
+#: ../../enterprise/include/functions_metaconsole.php:1408
+#: ../../enterprise/include/functions_metaconsole.php:1441
+#: ../../enterprise/include/functions_metaconsole.php:1474
+#: ../../enterprise/include/functions_metaconsole.php:1507
+#: ../../enterprise/include/functions_metaconsole.php:1540
+#: ../../enterprise/include/functions_metaconsole.php:1573
+#: ../../enterprise/include/functions_metaconsole.php:1604
+#: ../../enterprise/include/functions_metaconsole.php:1637
+#: ../../enterprise/meta/include/functions_wizard_meta.php:239
+#: ../../enterprise/meta/include/functions_wizard_meta.php:685
+#: ../../enterprise/godmode/setup/setup_log_collector.php:49
+#: ../../enterprise/godmode/modules/configure_local_component.php:503
+#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:183
+#: ../../godmode/agentes/module_manager_editor_web.php:172
+msgid "Check"
+msgstr "Comprobar"
+
+#: ../../enterprise/include/functions_metaconsole.php:2943
+#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:163
+msgid "Target server ip address is set"
+msgstr "Dirección IP del servidor de destino configurada"
+
+#: ../../enterprise/include/functions_metaconsole.php:2950
+#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:159
+msgid "There are differences between MR versions"
+msgstr "Hay diferencias entre las versiones de las actualizaciones menores"
+
+#: ../../enterprise/include/functions_metaconsole.php:2957
+msgid "Agent alerts action does not exist in target node"
+msgstr "La acción de alertas de agentes no existe en el nodo objetivo."
+
+#: ../../enterprise/include/functions_metaconsole.php:2964
+msgid "Agent alerts template does not exist in target node"
+msgstr "La plantilla de alertas de agente no existe en el nodo objetivo"
+
+#: ../../enterprise/include/functions_metaconsole.php:2971
+msgid "Agent inventory does not exist in target node"
+msgstr "El inventario de agente no existe en el nodo objetivo"
+
+#: ../../enterprise/include/functions_metaconsole.php:2978
+msgid "Exists agent conf please remove configuration file from target node."
+msgstr ""
+"Existe archivo de configuración de agente, elimine el fichero del nodo "
+"objetivo."
+
+#: ../../enterprise/include/functions_metaconsole.php:2985
+msgid "Agent collections does not exist in target node"
+msgstr "Las colecciones de agente no existen en el nodo objetivo"
+
+#: ../../enterprise/include/functions_metaconsole.php:2992
+msgid "Agent plugins does not exist in target node"
+msgstr "El plugin de agente no existe en el nodo objetivo"
+
+#: ../../enterprise/include/functions_metaconsole.php:2999
+msgid ""
+"Agent policies definitions does not match  with defined ones in target node"
+msgstr ""
+"Las definiciones de políticas de agentes no coinciden con las definidas en el "
+"nodo objetivo"
+
+#: ../../enterprise/include/functions_metaconsole.php:3006
+msgid "Agent group does not exist in target node"
+msgstr "El grupo de agente no existe en el nodo objetivo"
+
+#: ../../enterprise/include/functions_metaconsole.php:3013
+msgid "Agent already exists in target node"
+msgstr "El agente ya existe en el nodo objetivo"
+
+#: ../../enterprise/include/functions_metaconsole.php:3037
+msgid "The agent: has not been added due to problems in the insertion"
+msgstr "El agente: no se ha añadido por problemas en la inserción"
+
+#: ../../enterprise/include/functions_metaconsole.php:3042
+msgid "The agent: has already been added to the migration queue"
+msgstr "El agente: ya se ha añadido a la cola de migración"
+
+#: ../../enterprise/include/functions_metaconsole.php:3120
+msgid "Cannot "
+msgstr "No puede "
+
+#: ../../enterprise/include/functions_login.php:22
+msgid "You must change password:"
+msgstr "Tienes que cambiar la contraseña:"
+
+#: ../../enterprise/include/functions_login.php:38
+msgid "Password must be different from the 3 previous changes."
+msgstr "La contraseña debe ser diferente a los 3 cambios anteriores."
+
+#: ../../enterprise/include/functions_login.php:50
+msgid "Old pass: "
+msgstr "Contraseña antigua: "
+
+#: ../../enterprise/include/functions_login.php:53
+msgid "New pass: "
+msgstr "Contraseña nueva: "
+
+#: ../../enterprise/include/functions_login.php:57
+msgid "Confirm: "
+msgstr "Confirmar: "
+
+#: ../../enterprise/include/functions_login.php:63
+msgid "Change"
+msgstr "Cambiar"
+
+#: ../../enterprise/include/functions_login.php:97
+msgid "Login blocked"
+msgstr "Inicio de sesión bloqueado"
+
+#: ../../enterprise/include/functions_login.php:105
+msgid "User has been blocked. Try again in "
+msgstr "Tu usuario ha sido bloqueado. Vuelve a intentarlo en "
+
+#: ../../enterprise/include/functions_login.php:105
+msgid " minutes"
+msgstr " minutos"
+
+#: ../../enterprise/include/functions_login.php:138
+msgid "Login successfully"
+msgstr "Inicio de sesión correcto"
+
+#: ../../enterprise/include/functions_login.php:146
+msgid "User pass successfully updated"
+msgstr "La contraseña se ha actualizado correctamente."
+
+#: ../../enterprise/include/functions_login.php:252
+msgid "Password must be different from the "
+msgstr "La contraseña debe ser diferente de "
+
+#: ../../enterprise/include/functions_login.php:252
+msgid " previous changes."
+msgstr " los cambios anteriores."
+
+#: ../../enterprise/include/functions_login.php:265
+msgid "Password must be different"
+msgstr "La contraseña no puede ser la misma."
+
+#: ../../enterprise/include/functions_login.php:276
+msgid "Password too short"
+msgstr "La contraseña es demasiado corta"
+
+#: ../../enterprise/include/functions_login.php:288
+msgid "Password must contain numbers"
+msgstr "La contraseña tiene que contener números."
+
+#: ../../enterprise/include/functions_login.php:301
+msgid "Password must contain symbols"
+msgstr "La contraseña tiene que contener símbolos."
+
+#: ../../enterprise/include/functions_login.php:324
+msgid "Invalid old password"
+msgstr "Contraseña antigua no válida"
+
+#: ../../enterprise/include/functions_login.php:361
+msgid "Password confirm does not match"
+msgstr "Las contraseñas no coinciden."
+
+#: ../../enterprise/include/functions_login.php:368
+msgid "Password empty"
+msgstr "La contraseña está vacía."
+
+#: ../../enterprise/include/functions_snmp.php:65
+msgid "Trap status agent recovered"
+msgstr "Estado del trap de agente recuperado"
+
+#: ../../enterprise/include/functions_aws.php:381
+msgid "$"
+msgstr "$"
+
+#: ../../enterprise/include/functions_aws.php:491
+msgid "Current deployments"
+msgstr "Despliegues actuales"
+
+#: ../../enterprise/include/functions_aws.php:525
+msgid "Cost analysis"
+msgstr "Análisis de costes"
+
+#: ../../enterprise/include/functions_aws.php:528
+msgid "Current cost estimation"
+msgstr "Estimación actual de costes"
+
+#: ../../enterprise/include/functions_aws.php:530
+msgid "Previous period cost"
+msgstr "Coste del periodo anterior"
+
+#: ../../enterprise/include/functions_aws.php:589
+msgid "Reservation status"
+msgstr "Estado de reserva"
+
+#: ../../enterprise/include/functions_enterprise.php:460
+#: ../../enterprise/meta/include/functions_wizard_meta.php:613
+#: ../../enterprise/meta/include/functions_wizard_meta.php:670
+#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1066
+#: ../../godmode/massive/massive_edit_modules.php:1141
+#: ../../godmode/agentes/module_manager_editor_web.php:93
+msgid "Web checks"
+msgstr "Comprobaciones web"
+
+#: ../../enterprise/include/functions_enterprise.php:464
+msgid "Tree view by tags"
+msgstr "Vista de árbol por etiquetas"
+
+#: ../../enterprise/include/functions_enterprise.php:494
+msgid ""
+"If the interval of days until events data purge is shorter than the events "
+"data history storage interval, data will be lost. It is recommended that the "
+"storage frequency is higher than the purge frequency."
+msgstr ""
+"Si el intervalo de días hasta la purga de datos de eventos es inferior que el "
+"intervalo de almacenamiento de histórico de datos de eventos, se perderán los "
+"datos. Se recomienda configurar una frecuencia de almacenamiento inferior a la "
+"frecuencia de purga."
+
+#: ../../enterprise/include/functions_enterprise.php:496
+msgid ""
+"Problems with event days purge and event days that pass data to history DB."
+msgstr ""
+"Problemas con la fecha de purga de eventos y la fecha de traspaso de "
+"información a histórico."
+
+#: ../../enterprise/include/functions_enterprise.php:507
+msgid ""
+"If days purge is less than history days pass to history db, you will have a "
+"problems and you lost data. Recommended that days purge will more taller than "
+"days to history DB"
+msgstr ""
+"Si la fecha de purga es menor a la fecha de traspaso a histórico, los datos se "
+"perderán. Recomendamos poner una fecha de purga mayor a la del traspaso de "
+"datos a histórico."
+
+#: ../../enterprise/include/functions_enterprise.php:509
+msgid "Problems with days purge and days that pass data to history DB"
+msgstr ""
+"Problemas con la fecha de purga y la fecha de traspaso de información al "
+"histórico"
+
+#: ../../enterprise/include/functions_inventory.php:85
+#: ../../enterprise/include/functions_inventory.php:837
+msgid "No changes found"
+msgstr "No se han encontrado cambios"
+
+#: ../../enterprise/include/functions_inventory.php:184
+msgid "Get CSV file"
+msgstr "Obtener archivo CSV"
+
+#: ../../enterprise/include/functions_local_components.php:174
+#: ../../enterprise/meta/advanced/collections.data.php:117
+#: ../../enterprise/godmode/agentes/collections.data.php:217
+msgid "Empty name"
+msgstr "Nombre vacío"
+
+#: ../../enterprise/include/functions_local_components.php:179
+msgid "Empty configuration"
+msgstr "Configuración vacía"
+
+#: ../../enterprise/include/functions_local_components.php:184
+msgid "Empty OS"
+msgstr "SO vacío"
+
+#: ../../enterprise/include/functions_log.php:279
+#: ../../enterprise/include/functions_log.php:282
+msgid "Lines"
+msgstr "Líneas"
+
+#: ../../enterprise/include/functions_HA_cluster.php:49
+msgid "Recover"
+msgstr "Recuperar"
+
+#: ../../enterprise/include/functions_HA_cluster.php:52
+msgid "Promote"
+msgstr "Promover"
+
+#: ../../enterprise/include/functions_HA_cluster.php:55
+msgid "Demote"
+msgstr "Degradar"
+
+#: ../../enterprise/include/functions_HA_cluster.php:67
+msgid "Resync"
+msgstr "Volver a sincronizar"
+
+#: ../../enterprise/include/functions_HA_cluster.php:261
+msgid "Public Key Authentication Failed"
+msgstr "Error en la autenticación de clave pública"
+
+#: ../../enterprise/include/functions_HA_cluster.php:268
+msgid "Connection failed"
+msgstr "Conexion fallida"
+
+#: ../../enterprise/include/functions_HA_cluster.php:491
+msgid "Register"
+msgstr "Registrar"
+
+#: ../../enterprise/include/functions_HA_cluster.php:493
+msgid "Register new node"
+msgstr "Registrar nuevo nodo"
+
+#: ../../enterprise/include/functions_reporting.php:71
+#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:198
+msgid "Wizard SLA"
+msgstr "Wizard SLA"
+
+#: ../../enterprise/include/functions_reporting.php:82
+#: ../../enterprise/godmode/reporting/reporting_builder.global.php:74
+msgid "Global"
+msgstr "Global"
+
+#: ../../enterprise/include/functions_reporting.php:93
+msgid "Advance options"
+msgstr "Opciones avanzadas"
+
+#: ../../enterprise/include/functions_reporting.php:117
+msgid "Templates list"
+msgstr "Lista de plantillas"
+
+#: ../../enterprise/include/functions_reporting.php:152
+msgid "Templates Wizard"
+msgstr "Asistente de plantillas"
+
+#: ../../enterprise/include/functions_reporting.php:1232
+msgid "Availability item created from wizard."
+msgstr "Elemento disponible creado desde el asistente"
+
+#: ../../enterprise/include/functions_reporting.php:1903
+#: ../../enterprise/include/functions_reporting.php:2959
+#: ../../enterprise/include/functions_reporting.php:3947
+msgid "Planned Downtimes"
+msgstr "Paradas planificadas"
+
+#: ../../enterprise/include/functions_reporting.php:1910
+msgid "Ignore time"
+msgstr "Tiempo ignorado"
+
+#: ../../enterprise/include/functions_reporting.php:1930
+msgid "SLA Compliance per days"
+msgstr "Cumplimiento de SLA por días"
+
+#: ../../enterprise/include/functions_reporting.php:2021
+msgid "Summary of SLA Failures"
+msgstr "Resumen de los fallos de SLA"
+
+#: ../../enterprise/include/functions_reporting.php:2041
+#: ../../enterprise/include/functions_reporting.php:2042
+msgid "Out of SLA limits"
+msgstr "Sin límites SLS"
+
+#: ../../enterprise/include/functions_reporting.php:2047
+#: ../../enterprise/include/functions_reporting.php:2048
+msgid "IN of SLA limits"
+msgstr "Límite del IN de SLA"
+
+#: ../../enterprise/include/functions_reporting.php:2969
+#: ../../enterprise/include/functions_reporting.php:3210
+#: ../../enterprise/include/functions_reporting.php:3957
+msgid "Planned Downtime"
+msgstr "Tiempo de inactividad planificado"
+
+#: ../../enterprise/include/functions_reporting.php:2999
+msgid "T. Total"
+msgstr "Tiempo total"
+
+#: ../../enterprise/include/functions_reporting.php:3000
+#: ../../enterprise/include/functions_reporting.php:3984
+msgid "T. OK"
+msgstr "Tiempo OK"
+
+#: ../../enterprise/include/functions_reporting.php:3001
+#: ../../enterprise/include/functions_reporting.php:3985
+msgid "T. Error"
+msgstr "Tiempo error"
+
+#: ../../enterprise/include/functions_reporting.php:3002
+#: ../../enterprise/include/functions_reporting.php:3986
+msgid "T. Unknown"
+msgstr "Tiempo desconocido"
+
+#: ../../enterprise/include/functions_reporting.php:3003
+#: ../../enterprise/include/functions_reporting.php:3987
+msgid "T. Not_init"
+msgstr "Tiempo no iniciado"
+
+#: ../../enterprise/include/functions_reporting.php:3004
+#: ../../enterprise/include/functions_reporting.php:3988
+msgid "T. Downtime"
+msgstr "Tiempo en parada planificada"
+
+#: ../../enterprise/include/functions_reporting.php:3005
+#: ../../enterprise/include/functions_reporting.php:3989
+msgid "SLA %"
+msgstr "SLA %"
+
+#: ../../enterprise/include/functions_reporting.php:4211
+msgid "Ignore Planned Downtime"
+msgstr "Ignorar parada planeada"
+
+#: ../../enterprise/include/functions_reporting.php:4904
+msgid "Max/Min Critical"
+msgstr "Máx./Mín. Crítico"
+
+#: ../../enterprise/include/functions_reporting.php:4905
+msgid "Max/Min Warning"
+msgstr "Máx./Mín. Advertencia"
+
+#: ../../enterprise/include/functions_reporting.php:4906
+msgid "Total checks ok/total"
+msgstr "Comprobaciones totales ok/total"
+
+#: ../../enterprise/include/functions_reporting.php:4907
+msgid "% time ok"
+msgstr "% tiempo ok"
+
+#: ../../enterprise/include/functions_reporting.php:4967
+msgid "Time Critical"
+msgstr "Tiempo Crítico"
+
+#: ../../enterprise/include/functions_reporting.php:5062
+msgid "Checks Critical"
+msgstr "Comprobaciones Crítico"
+
+#: ../../enterprise/include/functions_reporting.php:5582
+msgid "There are no SLAs defined."
+msgstr "No hay SLAs definidos"
+
+#: ../../enterprise/include/functions_reporting.php:6218
+msgid "Scheduled shutdow"
+msgstr "Parada planeada"
+
+#: ../../enterprise/include/functions_reporting.php:6584
+#: ../../enterprise/include/functions_reporting.php:7474
+#, php-format
+msgid "Graph agents(%s) - %s"
+msgstr "Gráficos de agentes (%s) - %s"
+
+#: ../../enterprise/include/functions_reporting.php:7382
+#, php-format
+msgid "Graph agent(%s) - %s"
+msgstr "Gráfico de agente(%s) - %s"
+
+#: ../../enterprise/include/functions_reporting.php:7829
+msgid "There is not data for the selected conditions"
+msgstr "No hay datos para las condiciones seleccionadas"
+
+#: ../../enterprise/include/functions_reporting.php:8021
+#: ../../enterprise/include/functions_reporting.php:8087
+msgid "Template editor"
+msgstr "Editor de plantillas"
+
+#: ../../enterprise/include/functions_reporting.php:8517
+msgid "Configuration changes"
+msgstr "Cambios en la configuración"
+
+#: ../../enterprise/include/functions_reporting.php:8534
+msgid "No NCM capabilities detected"
+msgstr "No se han detectado capacidades de NCM"
+
+#: ../../enterprise/include/process_reset_pass.php:118
+#: ../../enterprise/meta/include/process_reset_pass.php:114
+msgid "Repeat password"
+msgstr "Repetir contraseña"
+
+#: ../../enterprise/include/process_reset_pass.php:124
+#: ../../enterprise/meta/include/process_reset_pass.php:120
+msgid "Change password"
+msgstr "Cambiar contraseña"
+
+#: ../../enterprise/include/functions_visual_map.php:203
+#: ../../enterprise/include/functions_visual_map.php:268
+msgid "Crit:"
+msgstr "Crítico"
+
+#: ../../enterprise/include/functions_visual_map.php:207
+#: ../../enterprise/include/functions_visual_map.php:272
+msgid "Warn:"
+msgstr "Advertencia"
+
+#: ../../enterprise/include/functions_visual_map.php:211
+#: ../../enterprise/include/functions_visual_map.php:276
+msgid "Ok:"
+msgstr "OK"
+
+#: ../../enterprise/include/functions_visual_map.php:215
+#: ../../enterprise/include/functions_visual_map.php:280
+#: ../../enterprise/meta/include/functions_autoprovision.php:765
+msgid "Value:"
+msgstr "Valor:"
+
+#: ../../enterprise/include/functions_visual_map.php:672
+msgid "None of the services was added"
+msgstr "No se añadió ningún servicio"
+
+#: ../../enterprise/include/functions_visual_map.php:674
+#, php-format
+msgid "%d services couldn't be added"
+msgstr "%d servicios no se han podido añadir"
+
+#: ../../enterprise/include/functions_visual_map.php:680
+msgid "There was an error retrieving the visual map information"
+msgstr "Error al recuperar la información del mapa visual"
+
+#: ../../enterprise/include/functions_transactional.php:631
+msgid "Error in dependencies field"
+msgstr "Error en el campo de las dependencias"
+
+#: ../../enterprise/include/functions_transactional.php:640
+msgid "Error in enables field"
+msgstr "Error al activar el campo"
+
+#: ../../enterprise/include/functions_setup.php:44
+#: ../../enterprise/include/functions_setup.php:108
+#: ../../enterprise/godmode/menu.php:295 ../../godmode/setup/setup.php:317
+#: ../../godmode/extensions.php:140
+msgid "Enterprise"
+msgstr "Enterprise"
+
+#: ../../enterprise/include/functions_setup.php:79
+#: ../../enterprise/include/functions_setup.php:125
+msgid "Log collector"
+msgstr "Colector de logs"
+
+#: ../../enterprise/include/functions_setup.php:151
+msgid "Metaconsole link status"
+msgstr "Estado del link de la metaconsola"
+
+#: ../../enterprise/include/functions_setup.php:183
+msgid "DB connection"
+msgstr "Conexión a la base de datos"
+
+#: ../../enterprise/include/functions_setup.php:192
+#: ../../enterprise/meta/advanced/metasetup.consoles.php:834
+msgid "Agent cache"
+msgstr "Caché de agente"
+
+#: ../../enterprise/include/functions_setup.php:201
+#: ../../enterprise/meta/advanced/policymanager.sync.php:328
+#: ../../enterprise/meta/advanced/metasetup.consoles.php:835
+#: ../../enterprise/godmode/servers/HA_cluster.php:166
+msgid "Sync"
+msgstr "Sincronizar"
+
+#: ../../enterprise/include/functions_setup.php:205
+msgid "This console is joining a metaconsole."
+msgstr "Esta consola se unirá a una Metaconsola"
+
+#: ../../enterprise/include/functions_setup.php:213
+msgid "This console is not joining any metaconsole."
+msgstr "Esta consola no se unirá a ninguna Metaconsola"
+
+#: ../../enterprise/include/functions_backup.php:162
+msgid "Command mysqldump not found."
+msgstr "Comando Mysqldump no encontrado"
+
+#: ../../enterprise/include/functions_backup.php:177
+msgid "The mysqldump execution goes wrong."
+msgstr "La ejecución de mysqldump ha salido mal."
+
+#: ../../enterprise/include/functions_backup.php:190
+msgid ""
+"In order to make backups it is necessary to check if the configuration is "
+"correct."
+msgstr ""
+"Para poder realizar copias de seguridad es necesario comprobar si la "
+"configuración es correcta."
+
+#: ../../enterprise/include/functions_backup.php:256
+msgid "No description"
+msgstr "Sin descripción"
+
+#: ../../enterprise/include/functions_backup.php:408
+msgid "Restoring a backup"
+msgstr "Restaurar una copia de seguridad"
+
+#: ../../enterprise/include/functions_backup.php:410
+#, php-format
+msgid "Restoring a %s database backup must be done manually."
+msgstr ""
+"La restauración de la copia de seguridad de la base de datos de %s debe "
+"llevarse a cabo manualmente."
+
+#: ../../enterprise/include/functions_backup.php:412
+msgid ""
+"It's a complex operation that needs human intervation to avoid system failures "
+"and data loosing"
+msgstr ""
+"Esta operación es compleja y necesita intervención humana para evitar fallos "
+"en el sistema y pérdida de datos."
+
+#: ../../enterprise/include/functions_backup.php:414
+msgid "To restore the selected backup, please follow these steps"
+msgstr ""
+"Para restaurar la copia de seguridad seleccionada sigue los siguientes pasos."
+
+#: ../../enterprise/include/functions_backup.php:420
+msgid "Open a root shell in your system located at "
+msgstr "Abre un root shell en tu sistema localizado en "
+
+#: ../../enterprise/include/functions_backup.php:424
+msgid "Connect to MySQL database using the following command"
+msgstr "Usa el siguiente comando para conectar con la base de datos de MySQL"
+
+#: ../../enterprise/include/functions_backup.php:430
+msgid "Create a new database"
+msgstr "Crear una nueva base de datos"
+
+#: ../../enterprise/include/functions_backup.php:454
+msgid "Restore the backup"
+msgstr "Restaurar la copia de seguridad"
+
+#: ../../enterprise/include/functions_backup.php:469
+msgid "Modify console configuration to use this new database"
+msgstr ""
+"Modifica la configuración de la consola para usar esta nueva base de datos"
+
+#: ../../enterprise/include/functions_backup.php:470
+msgid "Open configuration file"
+msgstr "Abrir el archivo de configuración"
+
+#: ../../enterprise/include/functions_backup.php:473
+#: ../../enterprise/include/functions_backup.php:483
+msgid "Find"
+msgstr "Encontrar"
+
+#: ../../enterprise/include/functions_backup.php:475
+#: ../../enterprise/include/functions_backup.php:485
+msgid "and replace with"
+msgstr "y reemplazar con"
+
+#: ../../enterprise/include/functions_backup.php:480
+msgid "Modify servers configuration to use this new database"
+msgstr ""
+"Modifica la configuración de los servidores para usar esta nueva base de datos"
+
+#: ../../enterprise/include/functions_backup.php:481
+msgid "Find servers configuration file and replace the following lines"
+msgstr ""
+"Accede al archivo de configuración de los servidores y reemplázalo por las "
+"siguientes líneas"
+
+#: ../../enterprise/include/functions_backup.php:490
+msgid "Restart the servers and login again into the console"
+msgstr "Reinicia los servidores y vuelve a identificarte en la consola"
+
+#: ../../enterprise/include/functions_ipam.php:288
+msgid "Export to Excel"
+msgstr "Exportar a Excel"
+
+#: ../../enterprise/include/functions_ipam.php:395
+msgid "Assign next free IP"
+msgstr "Asignar la siguiente IP libre"
+
+#: ../../enterprise/include/functions_ipam.php:413
+msgid "Next available IP"
+msgstr "Siguiente IP disponible"
+
+#: ../../enterprise/include/functions_ipam.php:1565
+msgid "Occupied"
+msgstr "Ocupado"
+
+#: ../../enterprise/include/functions_ipam.php:1567
+#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:139
+msgid "Available"
+msgstr "Disponible"
+
+#: ../../enterprise/include/functions_ipam.php:1573
+msgid "Not managed"
+msgstr "No gestionado"
+
+#: ../../enterprise/include/functions_ipam.php:1579
+msgid "Not Reserved"
+msgstr "No reservado"
+
+#: ../../enterprise/include/functions_ipam.php:1589
+msgid "Occupancy statistics"
+msgstr "Estadísticas de ocupación"
+
+#: ../../enterprise/include/functions_ipam.php:1646
+msgid "DESC"
+msgstr "Descendiente"
+
+#: ../../enterprise/include/functions_ipam.php:1647
+msgid "ASC"
+msgstr "Ascendente"
+
+#: ../../enterprise/include/functions_ipam.php:1648
+msgid "A -> Z"
+msgstr "A -> Z"
+
+#: ../../enterprise/include/functions_ipam.php:1649
+msgid "Z -> A"
+msgstr "Z -> A"
+
+#: ../../enterprise/include/functions_ipam.php:1650
+#: ../../enterprise/include/functions_ipam.php:1651
+msgid "Last check"
+msgstr "Ultima comprobación"
+
+#: ../../enterprise/include/functions_ipam.php:1650
+msgid "Newer -> Older"
+msgstr "Más reciente -> Más antiguo"
+
+#: ../../enterprise/include/functions_ipam.php:1651
+msgid "Older -> Newer"
+msgstr "Más antiguo -> Más reciente"
+
+#: ../../enterprise/include/functions_ipam.php:1678
+msgid "Exact address match"
+msgstr "Coincide la dirección exacta"
+
+#: ../../enterprise/include/functions_ipam.php:1682
+msgid "S.O"
+msgstr "S.O"
+
+#: ../../enterprise/include/functions_ipam.php:1695
+msgid "Big"
+msgstr "Grande"
+
+#: ../../enterprise/include/functions_ipam.php:1696
+msgid "Tiny"
+msgstr "Pequeño"
+
+#: ../../enterprise/include/functions_ipam.php:1697
+msgid "Icons style"
+msgstr "Estilo de iconos"
+
+#: ../../enterprise/include/functions_ipam.php:1714
+msgid "Show not alive hosts"
+msgstr "Mostrar máquinas inactivas"
+
+#: ../../enterprise/include/functions_ipam.php:1722
+msgid "Show only managed addresses"
+msgstr "Mostrar solo direcciones administradas"
+
+#: ../../enterprise/include/functions_ipam.php:1730
+msgid "Reserved addresses"
+msgstr "Direcciones reservadas"
+
+#: ../../enterprise/include/functions_ipam.php:1735
+msgid "Unreserved"
+msgstr "No reservado"
+
+#: ../../enterprise/include/functions_ipam.php:1745
+msgid "Last Contact"
+msgstr "Último contacto"
+
+#: ../../enterprise/include/functions_ipam.php:1788
+msgid "Filter options"
+msgstr "Opciones de filtro"
+
+#: ../../enterprise/include/functions_ipam.php:1979
+msgid "id Network"
+msgstr "ID de red"
+
+#: ../../enterprise/include/functions_ipam.php:1984
+msgid "ID recon task"
+msgstr "Tarea de reconocimiento de ID"
+
+#: ../../enterprise/include/functions_ipam.php:1985
+msgid "Scan Interval"
+msgstr "Intervalo de escaneo"
+
+#: ../../enterprise/include/functions_ipam.php:1986
+msgid "Users Operator"
+msgstr "Operador de usuarios"
+
+#: ../../enterprise/include/functions_ipam.php:1987
+msgid "Total Ips"
+msgstr "IPs totales"
+
+#: ../../enterprise/include/functions_ipam.php:1988
+msgid "Last Update"
+msgstr "Última actualización"
+
+#: ../../enterprise/include/functions_ipam.php:2041
+msgid "OS Name"
+msgstr "Nombre del OS"
+
+#: ../../enterprise/include/functions_ipam.php:2045
+msgid "Last updated"
+msgstr "Última actualización"
+
+#: ../../enterprise/include/functions_ipam.php:2046
+msgid "Last modified"
+msgstr "Última modificación"
+
+#: ../../enterprise/include/functions_ipam.php:2047
+msgid "Dhcp Leased"
+msgstr "Dhcp prestado"
+
+#: ../../enterprise/include/functions_ipam.php:2048
+msgid "Dhcp Leased Mode"
+msgstr "Modo Dhcp prestado"
+
+#: ../../enterprise/include/functions_ipam.php:2049
+msgid "Dhcp Leased Expiration"
+msgstr "Caducidad de Dhcp prestado"
+
+#: ../../enterprise/include/functions_ipam.php:2050
+msgid "Mac address"
+msgstr "Dirección Mac"
+
+#: ../../enterprise/include/functions_reporting_pdf.php:1838
+msgid "Contents"
+msgstr "Contenido"
+
+#: ../../enterprise/include/functions_collection.php:39
+#, php-format
+msgid "Collection %d does not exist"
+msgstr "La colección %d no existe"
+
+#: ../../enterprise/include/functions_collection.php:48
+msgid "Collection dir does not exist."
+msgstr "El directorio donde se guardan las colecciones no existe."
+
+#: ../../enterprise/include/functions_collection.php:57
+#, php-format
+msgid "Failed to create collection path: %s"
+msgstr "Error al crear la colección en la ruta: %s"
+
+#: ../../enterprise/include/functions_collection.php:66
+msgid "Target collection path is not writable"
+msgstr "No se ha podido escribir en en el directorio de colecciones remotas"
+
+#: ../../enterprise/include/functions_collection.php:80
+msgid "Failed to create zip file for collection"
+msgstr "Error al crear el archivo zip para la colección"
+
+#: ../../enterprise/include/functions_collection.php:87
+#, php-format
+msgid "File of collection is bigger than the limit (%s bytes)"
+msgstr "El archivo de colección es más grande que el límite (%s bytes)"
+
+#: ../../enterprise/include/functions_servicemap.php:80
+msgid "Failed to retrieve service elements: "
+msgstr "Error al recuperar elementos de servicio: "
+
+#: ../../enterprise/include/functions_hostdevices.php:45
+msgid "Remote commands enabled"
+msgstr "Comandos remotos habilitados"
+
+#: ../../enterprise/include/functions_ui.php:79
+msgid "Select inventory module"
+msgstr "Seleccionar módulo de inventario"
+
+#: ../../enterprise/include/functions_ui.php:92
+#: ../../enterprise/godmode/agentes/inventory_manager.php:222
+msgid "Target"
+msgstr "Destino"
+
+#: ../../enterprise/include/functions_ui.php:96
+msgid "Use custom fields"
+msgstr "Usar campos personalizados"
+
+#: ../../enterprise/include/functions_ui.php:179
+msgid "Field name"
+msgstr "Nombre del campo"
+
+#: ../../enterprise/include/functions_ui.php:179
+msgid "It's a password"
+msgstr "Es una contraseña"
+
+#: ../../enterprise/include/functions_ui.php:179
+msgid "Add field"
+msgstr "Añadir campo"
+
+#: ../../enterprise/include/functions_license.php:119
+msgid "Perpetual"
+msgstr "Perpetuo"
+
+#: ../../enterprise/include/functions_license.php:119
+msgid "Subscription"
+msgstr "Suscripción"
+
+#: ../../enterprise/include/functions_license.php:120
+msgid "Expires"
+msgstr "Caduca"
+
+#: ../../enterprise/include/functions_policies.php:675
+#, php-format
+msgid "%s success"
+msgstr "%s éxito"
+
+#: ../../enterprise/include/functions_policies.php:675
+#, php-format
+msgid "%s failed"
+msgstr "%s falló"
+
+#: ../../enterprise/include/functions_policies.php:680
+msgid "Policy cleaned from nodes: "
+msgstr "Directiva limpiada de nodos: "
+
+#: ../../enterprise/include/functions_policies.php:934
+#, php-format
+msgid "Failed to connect to node %s"
+msgstr "Error al conectarse al %s de nodo"
+
+#: ../../enterprise/include/functions_policies.php:3504
+msgid "Policy linkation"
+msgstr "Vinculación de políticas"
+
+#: ../../enterprise/include/functions_policies.php:3509
+msgid "Module linked"
+msgstr "Módulo enlazado"
+
+#: ../../enterprise/include/functions_policies.php:3514
+#: ../../enterprise/include/functions_policies.php:3534
+msgid "Unlink from policy"
+msgstr "Módulo desenlazado de la política"
+
+#: ../../enterprise/include/functions_policies.php:3519
+msgid "Module unlinked"
+msgstr "Módulo desenlazado"
+
+#: ../../enterprise/include/functions_policies.php:3524
+#: ../../enterprise/include/functions_policies.php:3544
+msgid "Relink to policy"
+msgstr "Volver a enlazar a la política"
+
+#: ../../enterprise/include/functions_policies.php:3529
+msgid "Module pending to link"
+msgstr "Módulo pendiente de enlazar"
+
+#: ../../enterprise/include/functions_policies.php:3529
+#: ../../godmode/agentes/module_manager_editor.php:548
+msgid "Module will be linked in the next application"
+msgstr "El módulo será enlazado en la próxima aplicación."
+
+#: ../../enterprise/include/functions_policies.php:3539
+msgid "Module pending to unlink"
+msgstr "Módulo pendiente de desenlazar"
+
+#: ../../enterprise/include/functions_policies.php:3539
+#: ../../godmode/agentes/module_manager_editor.php:562
+msgid "Module will be unlinked in the next application"
+msgstr "El módulo será desenlazado en la próxima aplicación."
+
+#: ../../enterprise/include/functions_policies.php:3709
+#: ../../enterprise/godmode/menu.php:108
+msgid "Manage policies"
+msgstr "Gestionar políticas"
+
+#: ../../enterprise/include/functions_policies.php:3730
+#: ../../enterprise/godmode/policies/policy.php:102
+#: ../../godmode/agentes/configurar_agente.php:526
+msgid "Agent wizard"
+msgstr "Asistente de agente"
+
+#: ../../enterprise/include/functions_policies.php:3735
+#: ../../godmode/setup/snmp_wizard.php:31
+#: ../../godmode/agentes/configurar_agente.php:538
+#: ../../godmode/agentes/configurar_agente.php:759
+msgid "SNMP Wizard"
+msgstr "Asistente SNMP"
+
+#: ../../enterprise/include/functions_policies.php:3738
+#: ../../godmode/agentes/configurar_agente.php:548
+#: ../../godmode/agentes/configurar_agente.php:765
+msgid "SNMP Interfaces wizard"
+msgstr "Asistente de interfaces SNMP"
+
+#: ../../enterprise/include/functions_policies.php:3741
+#: ../../godmode/agentes/configurar_agente.php:558
+#: ../../godmode/agentes/configurar_agente.php:771
+msgid "WMI Wizard"
+msgstr "Asistente WMI"
+
+#: ../../enterprise/include/functions_policies.php:3753
+#: ../../enterprise/meta/include/functions_components_meta.php:113
+#: ../../enterprise/meta/include/functions_components_meta.php:160
+#: ../../enterprise/godmode/modules/manage_inventory_modules.php:45
+#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:37
+#: ../../enterprise/godmode/menu.php:90
+#: ../../enterprise/godmode/alerts/alert_inventory_builder.php:198
+#: ../../enterprise/godmode/policies/policy_inventory_modules.php:70
+#: ../../enterprise/godmode/policies/policy_inventory_modules.php:282
+msgid "Inventory modules"
+msgstr "Módulos de inventario"
+
+#: ../../enterprise/include/functions_policies.php:3769
+#: ../../enterprise/godmode/policies/policies.php:523
+#: ../../enterprise/godmode/policies/policy_external_alerts.php:52
+msgid "External alerts"
+msgstr "Alertas externas"
+
+#: ../../enterprise/include/functions_policies.php:3781
+#: ../../enterprise/godmode/policies/policy_linking.php:157
+#: ../../enterprise/godmode/policies/policies.php:501
+msgid "Linking"
+msgstr "Enlazando"
+
+#: ../../enterprise/include/functions_policies.php:3811
+#: ../../enterprise/godmode/policies/policy.php:60
+#: ../../enterprise/godmode/policies/policies.php:527
+msgid "Queue"
+msgstr "Cola"
+
+#: ../../enterprise/include/functions_policies.php:3830
+#: ../../enterprise/godmode/agentes/configurar_agente.php:112
+#: ../../enterprise/godmode/policies/policy.php:82
+#: ../../godmode/agentes/configurar_agente.php:717
+msgid "Agent plugins"
+msgstr "Plugins del agente"
+
+#: ../../enterprise/include/functions_policies.php:4058
+msgid "Create a new policy map"
+msgstr "Crear un nuevo mapa de políticas"
+
+#: ../../enterprise/include/functions_policies.php:4446
+#: ../../extensions/resource_registration.php:1098
+msgid "Error, please install the PHP libXML in the system."
+msgstr "Error: por favor, instale la librería PHP LibXML en el sistema."
+
+#: ../../enterprise/include/functions_policies.php:4458
+#, php-format
+msgid ""
+"This extension makes registration of policies enterprise. <br>You can get more "
+"policies in our <a href=\"%s\">Public Resource Library</a>"
+msgstr ""
+"Esta extensión permite registrar las políticas Enterprise. <br>Puedes "
+"conseguir más políticas en nuestra <a href='%s'>Librería de recursos pública</"
+"a>."
+
+#: ../../enterprise/include/functions_policies.php:4465
+#: ../../extensions/resource_registration.php:1133
+msgid "Group filter: "
+msgstr "Filtro de grupo: "
+
+#: ../../enterprise/include/functions_policies.php:4490
+#: ../../extensions/resource_registration.php:1150
+msgid ""
+"Error uploading resource. Check if the selected file is a valid resource "
+"template in .ptr format"
+msgstr ""
+"Error al cargar el recurso. Compruebe si el archivo seleccionado es una "
+"plantilla de recursos válida en formato .ptr"
+
+#: ../../enterprise/include/functions_policies.php:4516
+msgid "Policy does not exist"
+msgstr "La política no existe"
+
+#: ../../enterprise/include/functions_policies.php:4906
+msgid "This will not produce any action."
+msgstr "Esto no generará ninguna acción."
+
+#: ../../enterprise/include/functions_policies.php:4935
+#, php-format
+msgid "Error connecting with node %s."
+msgstr "Error al conectar con el nodo %s."
+
+#: ../../enterprise/include/functions_policies.php:4942
+#, php-format
+msgid "This policy is being applied on node %s."
+msgstr "Esta política se está aplicando en el nodo %s."
+
+#: ../../enterprise/include/functions_policies.php:4980
+msgid "Error syncronizing ."
+msgstr "Error de sincronización."
+
+#: ../../enterprise/meta/screens/screens.php:37
+#: ../../enterprise/meta/general/main_menu.php:338
+#: ../../enterprise/meta/general/logon_ok.php:84
+#: ../../enterprise/meta/general/main_header.php:232
+msgid "Screens"
+msgstr "Pantallas"
+
+#: ../../enterprise/meta/screens/screens.visualmap.php:71
+msgid "Create visualmap"
+msgstr "Crear mapa visual"
+
+#: ../../enterprise/meta/screens/screens.visualmap.php:297
+#: ../../godmode/reporting/visual_console_builder.php:844
+msgid "New visual console"
+msgstr "Nueva consola visual"
+
+#: ../../enterprise/meta/event/custom_events.php:50 ../../godmode/menu.php:264
+#: ../../godmode/events/events.php:68
+msgid "Event responses"
+msgstr "Respuestas de evento"
+
+#: ../../enterprise/meta/event/custom_events.php:98
+msgid "The user is not in neither group with EW profile"
+msgstr "El usuario no se encuentra en ninguno de los grupos con el perfil EW."
+
+#: ../../enterprise/meta/event/custom_events.php:175
+#: ../../godmode/events/custom_events.php:129
+#: ../../godmode/agentes/status_monitor_custom_fields.php:164
+msgid "Fields available"
+msgstr "Campos disponibles"
+
+#: ../../enterprise/meta/event/custom_events.php:177
+#: ../../godmode/events/custom_events.php:149
+#: ../../godmode/agentes/status_monitor_custom_fields.php:186
+msgid "Fields selected"
+msgstr "Campos seleccionados"
+
+#: ../../enterprise/meta/event/custom_events.php:187
+#: ../../godmode/events/custom_events.php:136
+#: ../../godmode/agentes/status_monitor_custom_fields.php:171
+msgid "Add fields to select"
+msgstr "Añadir campos para seleccionar"
+
+#: ../../enterprise/meta/event/custom_events.php:197
+#: ../../godmode/events/custom_events.php:144
+#: ../../godmode/agentes/status_monitor_custom_fields.php:180
+msgid "Delete fields to select"
+msgstr "Eliminar campos para seleccionar"
+
+#: ../../enterprise/meta/event/custom_events.php:207
+#: ../../godmode/events/custom_events.php:74
+msgid "Show event fields"
+msgstr "Mostrar campos de eventos"
+
+#: ../../enterprise/meta/event/custom_events.php:248
+#: ../../godmode/events/custom_events.php:203
+#: ../../godmode/agentes/status_monitor_custom_fields.php:240
+msgid "There must be at least one custom field. Timestamp will be set by default"
+msgstr ""
+"Debe haber al menos un campo personalizado. La marca horaria está establecida "
+"por defecto."
+
+#: ../../enterprise/meta/general/metaconsole_no_activated.php:24
+msgid ""
+"Metaconsole needs previous activation from regular console, please contact "
+"system administrator if you need assistance. <br>"
+msgstr ""
+"La Metaconsola necesita una activación previa desde una consola regular. "
+"Contacta con el administrador del sistema si necesitas asistencia. <br>"
+
+#: ../../enterprise/meta/general/main_menu.php:200
+#: ../../enterprise/meta/general/main_header.php:109
+msgid "Groups view"
+msgstr "Visor de grupos"
+
+#: ../../enterprise/meta/general/main_menu.php:212
+#: ../../enterprise/meta/general/main_header.php:121
+msgid "Monitors view"
+msgstr "Visor de monitores"
+
+#: ../../enterprise/meta/general/main_menu.php:218
+#: ../../enterprise/meta/general/main_header.php:127
+msgid "Custom fields view"
+msgstr "Vista de campos personalizados"
+
+#: ../../enterprise/meta/general/main_menu.php:276
+#: ../../enterprise/meta/general/main_header.php:174
+msgid "Create new report"
+msgstr "Crear un nuevo informe"
+
+#: ../../enterprise/meta/general/main_menu.php:286
+#: ../../enterprise/meta/general/main_header.php:190
+msgid "Report templates"
+msgstr "Plantillas de informes"
+
+#: ../../enterprise/meta/general/main_menu.php:353
+#: ../../enterprise/meta/general/main_header.php:247
+#: ../../godmode/reporting/visual_console_favorite.php:118
+msgid "Favourite Visual Console"
+msgstr "Consola visual favorita"
+
+#: ../../enterprise/meta/general/main_menu.php:361
+#: ../../enterprise/meta/general/main_header.php:255
+msgid "Template Visual Console"
+msgstr "Consola visual de plantillas"
+
+#: ../../enterprise/meta/general/main_menu.php:368
+#: ../../enterprise/meta/general/main_header.php:262
+msgid "Wizard Visual Console"
+msgstr "Consola visual de asistente"
+
+#: ../../enterprise/meta/general/main_menu.php:389
+#: ../../enterprise/meta/general/main_header.php:281
+msgid "Live view"
+msgstr "Vista en vivo"
+
+#: ../../enterprise/meta/general/main_menu.php:407
+#: ../../enterprise/godmode/menu.php:257
+msgid "Alert correlation"
+msgstr "Correlación de alertas"
+
+#: ../../enterprise/meta/general/main_menu.php:427
+#: ../../enterprise/meta/general/main_menu.php:508
+msgid "Centralised management"
+msgstr "Gestión centralizada"
+
+#: ../../enterprise/meta/general/main_menu.php:434
+#: ../../enterprise/meta/general/main_menu.php:534
+#: ../../enterprise/meta/general/main_header.php:315
+#: ../../enterprise/meta/general/main_header.php:417
+msgid "Agent management"
+msgstr "Gestión de agentes"
+
+#: ../../enterprise/meta/general/main_menu.php:440
+#: ../../enterprise/meta/general/main_menu.php:540
+#: ../../enterprise/meta/general/main_header.php:327
+#: ../../enterprise/meta/general/main_header.php:423
+#: ../../enterprise/godmode/modules/local_components.php:157
+#: ../../enterprise/godmode/modules/manage_inventory_modules.php:45
+#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:37
+#: ../../godmode/modules/module_list.php:29
+#: ../../godmode/modules/manage_network_components.php:290
+#: ../../godmode/modules/manage_network_templates.php:39
+#: ../../godmode/modules/manage_network_templates_form.php:32
+#: ../../godmode/modules/manage_nc_groups.php:40
+msgid "Module management"
+msgstr "Gestión de módulos"
+
+#: ../../enterprise/meta/general/main_menu.php:446
+#: ../../enterprise/meta/general/main_menu.php:563
+#: ../../enterprise/meta/general/main_header.php:333
+#: ../../enterprise/meta/general/main_header.php:439
+msgid "Alert management"
+msgstr "Gestión de alertas"
+
+#: ../../enterprise/meta/general/main_menu.php:452
+#: ../../enterprise/meta/general/main_header.php:339
+msgid "Component management"
+msgstr "Gestión de componentes"
+
+#: ../../enterprise/meta/general/main_menu.php:464
+#: ../../enterprise/meta/general/main_menu.php:554
+#: ../../enterprise/meta/general/main_header.php:345
+msgid "Policy management"
+msgstr "Gestión de políticas"
+
+#: ../../enterprise/meta/general/main_menu.php:470
+#: ../../enterprise/meta/general/main_header.php:351
+msgid "Category management"
+msgstr "Gestión de categorías"
+
+#: ../../enterprise/meta/general/main_menu.php:476
+#: ../../enterprise/meta/general/main_menu.php:547
+#: ../../enterprise/meta/general/main_header.php:357
+#: ../../enterprise/meta/general/main_header.php:430
+msgid "Server management"
+msgstr "Gestión de servidores"
+
+#: ../../enterprise/meta/general/main_menu.php:482 ../../godmode/menu.php:183
+#: ../../godmode/massive/massive_operations.php:329
+msgid "Bulk operations"
+msgstr "Operaciones masivas"
+
+#: ../../enterprise/meta/general/main_menu.php:488
+msgid "Agent operations"
+msgstr "Operaciones del agente"
+
+#: ../../enterprise/meta/general/main_menu.php:496
+#: ../../enterprise/meta/general/main_header.php:363
+msgid "Command Center"
+msgstr "command center"
+
+#: ../../enterprise/meta/general/main_menu.php:584
+#: ../../enterprise/meta/general/main_header.php:369 ../../godmode/menu.php:371
+msgid "License"
+msgstr "Licencia"
+
+#: ../../enterprise/meta/general/main_menu.php:590
+#: ../../enterprise/meta/general/main_header.php:375
+msgid "Metasetup"
+msgstr "Metasetup"
+
+#: ../../enterprise/meta/general/main_menu.php:626
+#: ../../enterprise/meta/general/main_header.php:458
+#: ../../godmode/extensions.php:28
+msgid "Extensions"
+msgstr "Extensiones"
+
+#: ../../enterprise/meta/general/main_menu.php:667 ../../godmode/menu.php:388
+msgid "System audit log"
+msgstr "Logs de auditoría del sistema"
+
+#: ../../enterprise/meta/general/main_header.php:492
+msgid "Audit Logs"
+msgstr "Registros de auditoría"
+
+#: ../../enterprise/meta/general/footer.php:33
+#, php-format
+msgid "%s %s - Build %s - MR %s"
+msgstr "%s %s - Desarrollo %s - MR %s"
+
+#: ../../enterprise/meta/general/footer.php:38
+msgid "Page generated at"
+msgstr "Página generada en"
+
+#: ../../enterprise/meta/general/login_page.php:58
+#: ../../enterprise/meta/include/reset_pass.php:41
+#: ../../enterprise/meta/include/process_reset_pass.php:41
+msgid "Go to Pandora FMS Support"
+msgstr "Ir a soporte de Pandora FMS"
+
+#: ../../enterprise/meta/general/login_page.php:60
+#: ../../enterprise/meta/general/login_page.php:71
+#: ../../enterprise/meta/include/reset_pass.php:43
+#: ../../enterprise/meta/include/reset_pass.php:54
+#: ../../enterprise/meta/include/process_reset_pass.php:43
+#: ../../enterprise/meta/include/process_reset_pass.php:54
+msgid "Go to "
+msgstr "Ir a "
+
+#: ../../enterprise/meta/general/login_page.php:69
+#: ../../enterprise/meta/include/reset_pass.php:52
+#: ../../enterprise/meta/include/process_reset_pass.php:52
+msgid "Go to Pandora FMS Wiki"
+msgstr "Ir a la Wiki de Pandora FMS"
+
+#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:92
+#: ../../godmode/alerts/alert_templates.php:61
+msgid "Everyday"
+msgstr "Cada día"
+
+#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:104
+#: ../../godmode/alerts/alert_templates.php:73
+msgid "Every"
+msgstr "Cada"
+
+#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:115
+#: ../../godmode/alerts/alert_templates.php:84
+msgid "and"
+msgstr "y"
+
+#: ../../enterprise/meta/include/ajax/wizard.ajax.php:56
+msgid "Agent succesfully deleted"
+msgstr "Agente eliminado correctamente"
+
+#: ../../enterprise/meta/include/ajax/wizard.ajax.php:58
+msgid "Could not delete agent"
+msgstr "No se pudo borrar el agente"
+
+#: ../../enterprise/meta/include/reset_pass.php:139
+#: ../../enterprise/meta/include/process_reset_pass.php:142
+#, php-format
+msgid "%s NEXT GENERATION"
+msgstr "%s SIGUIENTE GENERACIÓN"
+
+#: ../../enterprise/meta/include/functions_autoprovision.php:378
+msgid "Round Robin"
+msgstr "Round Robin"
+
+#: ../../enterprise/meta/include/functions_autoprovision.php:383
+msgid "Less loaded"
+msgstr "Menos cargado"
+
+#: ../../enterprise/meta/include/functions_autoprovision.php:422
+msgid ""
+"It uses the Round-robin planning method to distribute, \n"
+"                in an equitable way and in a rational order, all the new "
+"Pandora software agents that reach the Metaconsole.\n"
+"                The distribution of the agents will be done in a circular way, "
+"assigning the corresponding server to each new agent.\n"
+"            "
+msgstr ""
+"Utiliza el método de planificación Round-robin para distribuir, \n"
+"                de forma equitativa y en un orden racional, todos los nuevos "
+"agentes de software de Pandora que llegan a la Metaconsola.\n"
+"                La distribución de los agentes se realizará de forma circular, "
+"asignando el servidor correspondiente a cada nuevo agente.\n"
+"            "
+
+#: ../../enterprise/meta/include/functions_autoprovision.php:430
+msgid ""
+"The new agents will be dynamically assigned to those servers with less load."
+msgstr ""
+"Los nuevos agentes se asignarán dinámicamente a aquellos servidores con menos "
+"carga."
+
+#: ../../enterprise/meta/include/functions_autoprovision.php:435
+msgid ""
+"In the customized classification, we will be able to define our own "
+"classification rules, \n"
+"                based on certain parameters retrieved from the information "
+"reported by the agent (name of the agent and its IP address).\n"
+"            "
+msgstr ""
+"En la clasificación personalizada, podremos definir nuestras propias reglas de "
+"clasificación, \n"
+"                basado en ciertos parámetros recuperados de la información "
+"reportada por el agente (nombre del agente y su dirección IP).\n"
+"            "
+
+#: ../../enterprise/meta/include/functions_autoprovision.php:529
+msgid ""
+"There is no custom entries defined. Click on \"Create custom entry\" to add "
+"the first."
+msgstr ""
+"Ninguna entrada personalizada definida. Haz clic en \"Crear entrada "
+"personalizada\" para añadir la primera."
+
+#: ../../enterprise/meta/include/functions_autoprovision.php:534
+msgid "Create custom entry"
+msgstr "Crear entrada personalizada"
+
+#: ../../enterprise/meta/include/functions_autoprovision.php:561
+msgid "Provisioning configuration"
+msgstr "Configuración de aprovisionamiento"
+
+#: ../../enterprise/meta/include/functions_autoprovision.php:566
+#: ../../enterprise/meta/advanced/collections.data.php:332
+#: ../../enterprise/godmode/agentes/collections.data.php:425
+#: ../../godmode/setup/os.builder.php:35
+#: ../../godmode/reporting/visual_console_builder.data.php:106
+msgid "Name:"
+msgstr "Nombre:"
+
+#: ../../enterprise/meta/include/functions_autoprovision.php:572
+msgid "Configuration:"
+msgstr "Configuración:"
+
+#: ../../enterprise/meta/include/functions_autoprovision.php:610
+msgid ""
+"There is no rules configured for this custom entry. Click on Add button to "
+"create the first."
+msgstr ""
+"No hay reglas configuradas en esta entrada personalizada. Haz clic en el botón "
+"Añadir para crear la primera."
+
+#: ../../enterprise/meta/include/functions_autoprovision.php:723
+msgid "There was an error when editing the rule."
+msgstr "Error al editar la regla"
+
+#: ../../enterprise/meta/include/functions_autoprovision.php:737
+msgid "Operation:"
+msgstr "Operación:"
+
+#: ../../enterprise/meta/include/functions_autoprovision.php:751
+msgid "Method:"
+msgstr "Método:"
+
+#: ../../enterprise/meta/include/functions_autoprovision.php:816
+msgid "Move up"
+msgstr "Subir"
+
+#: ../../enterprise/meta/include/functions_autoprovision.php:824
+msgid "Move down"
+msgstr "Bajar"
+
+#: ../../enterprise/meta/include/functions_relations.php:49
+msgid "Invalid file content"
+msgstr "Contenido del archivo no válido"
+
+#: ../../enterprise/meta/include/functions_relations.php:54
+msgid "No relations found"
+msgstr "No se han encontrado relaciones"
+
+#: ../../enterprise/meta/include/functions_relations.php:80
+#: ../../enterprise/meta/include/functions_relations.php:91
+#: ../../enterprise/meta/include/functions_relations.php:102
+#, php-format
+msgid "The relation type: %s to %s -> %s was not saved"
+msgstr "El tipo de relación: %s a %s -> %s no se ha guardado"
+
+#: ../../enterprise/meta/include/functions_relations.php:123
+#, php-format
+msgid "The relation %s -> %s was not saved"
+msgstr "La relación  %s -> %s no se ha guardado"
+
+#: ../../enterprise/meta/include/functions_relations.php:133
+msgid "File imported successfully"
+msgstr "El archivo se ha importado con éxito"
+
+#: ../../enterprise/meta/include/functions_relations.php:136
+msgid "Error inserting relations"
+msgstr "Error al insertar relaciones"
+
+#: ../../enterprise/meta/include/functions_relations.php:165
+msgid "Empty string"
+msgstr "Cadena vacía"
+
+#: ../../enterprise/meta/include/functions_relations.php:170
+msgid "Empty custom node address"
+msgstr "Dirección del nodo personalizada vacía"
+
+#: ../../enterprise/meta/include/functions_relations.php:208
+#, php-format
+msgid ""
+"The relation type: %s to %s -> %s was not saved. This relationship already "
+"exists in the database"
+msgstr ""
+"El tipo de relación: %s a %s -> %s no se ha guardado. Esta relación ya existe "
+"en la base de datos"
+
+#: ../../enterprise/meta/include/functions_relations.php:230
+#, php-format
+msgid "Error inserting the relation %s -> %s"
+msgstr "Error al insertar la relación %s -> %s"
+
+#: ../../enterprise/meta/include/functions_relations.php:238
+msgid "Relation created successfully"
+msgstr "Relación creada con éxito"
+
+#: ../../enterprise/meta/include/functions_relations.php:263
+msgid "Error deleting the relation"
+msgstr "Error al eliminar la relación"
+
+#: ../../enterprise/meta/include/functions_relations.php:269
+msgid "Relation deleted successfully"
+msgstr "Relación eliminada con éxito"
+
+#: ../../enterprise/meta/include/functions_users_meta.php:186
+#: ../../enterprise/meta/include/functions_users_meta.php:212
+#: ../../godmode/menu.php:130 ../../godmode/users/user_list.php:225
+#: ../../godmode/users/configure_user.php:234
+#: ../../godmode/users/configure_profile.php:66
+#: ../../godmode/users/profile_list.php:74
+msgid "Profile management"
+msgstr "Gestionar perfiles"
+
+#: ../../enterprise/meta/include/functions_users_meta.php:200
+msgid "User synchronization"
+msgstr "Sincronización de usuarios"
+
+#: ../../enterprise/meta/include/functions_users_meta.php:216
+msgid "Group synchronization"
+msgstr "Sincronización de grupos"
+
+#: ../../enterprise/meta/include/functions_ui_meta.php:53
+#, php-format
+msgid "%s - the Flexible Monitoring System"
+msgstr "%s - Flexible Monitoring System"
+
+#: ../../enterprise/meta/include/functions_meta.php:49
+msgid "No admin user"
+msgstr "No hay usuario administrador"
+
+#: ../../enterprise/meta/include/functions_meta.php:112
+msgid "Centralized management"
+msgstr "Gestión centralizada"
+
+#: ../../enterprise/meta/include/functions_meta.php:148
+#: ../../enterprise/meta/advanced/metasetup.setup.php:158
+#: ../../godmode/setup/setup_general.php:98
+msgid "Phantomjs bin directory"
+msgstr "Directorio Phantomjs bin"
+
+#: ../../enterprise/meta/include/functions_meta.php:198
+msgid "Netflow disable custom live view filters"
+msgstr "Desactivar filtros personalizados en la vista en vivo de Netflow"
+
+#: ../../enterprise/meta/include/functions_meta.php:248
+#: ../../enterprise/meta/advanced/metasetup.setup.php:283
+#: ../../enterprise/godmode/setup/setup.php:378
+msgid "Enable update manager"
+msgstr "Habilitar gestor de actualizaciones"
+
+#: ../../enterprise/meta/include/functions_meta.php:262
+msgid "Customizable section"
+msgstr "Sección personalizable"
+
+#: ../../enterprise/meta/include/functions_meta.php:283
+msgid "Agent API"
+msgstr "API del agente"
+
+#: ../../enterprise/meta/include/functions_meta.php:303
+#: ../../enterprise/meta/advanced/metasetup.setup.php:324
+#: ../../godmode/setup/setup_general.php:467
+msgid "Enable console log"
+msgstr "Habilitar log de consola"
+
+#: ../../enterprise/meta/include/functions_meta.php:313
+#: ../../enterprise/meta/advanced/metasetup.setup.php:345
+#: ../../godmode/setup/setup_general.php:478
+msgid "Enable audit log"
+msgstr "Habilitar auditoría de logs"
+
+#: ../../enterprise/meta/include/functions_meta.php:323
+msgid "Policy add max. agents"
+msgstr "Máx. de agentes a añadir en la política"
+
+#: ../../enterprise/meta/include/functions_meta.php:332
+msgid "Sync items warn detection"
+msgstr "Sincronización de elementos de advertencia de detección"
+
+#: ../../enterprise/meta/include/functions_meta.php:470
+msgid "IP ElasticSearch"
+msgstr "IP ElasticSearch"
+
+#: ../../enterprise/meta/include/functions_meta.php:480
+msgid "Port ElasticSearch"
+msgstr "Puerto ElasticSearch"
+
+#: ../../enterprise/meta/include/functions_meta.php:592
+msgid "2FA_all_users"
+msgstr "2FA_all_users"
+
+#: ../../enterprise/meta/include/functions_meta.php:715
+#: ../../enterprise/meta/include/functions_meta.php:727
+#: ../../enterprise/godmode/setup/setup_auth.php:337
+#: ../../enterprise/godmode/setup/setup_auth.php:385
+#: ../../enterprise/godmode/setup/setup_auth.php:1180
+msgid "Auto enable node access"
+msgstr "Auto-habilitar acceso al nodo"
+
+#: ../../enterprise/meta/include/functions_meta.php:858
+msgid "SAML profile parameters"
+msgstr "Parámetros de perfil SAML"
+
+#: ../../enterprise/meta/include/functions_meta.php:1029
+#: ../../godmode/setup/setup_auth.php:267
+msgid "Secondary start TLS"
+msgstr "TLS de inicio secundario"
+
+#: ../../enterprise/meta/include/functions_meta.php:1135
+#, php-format
+msgid "%s host"
+msgstr "Host %s"
+
+#: ../../enterprise/meta/include/functions_meta.php:1189
+msgid "Babel Enterprise host"
+msgstr "Servidor de Babel Enterprise"
+
+#: ../../enterprise/meta/include/functions_meta.php:1318
+msgid "Graph color (min)"
+msgstr "Color del gráfico (mín.)"
+
+#: ../../enterprise/meta/include/functions_meta.php:1328
+msgid "Graph color (avg)"
+msgstr "Color del gráfico (med.)"
+
+#: ../../enterprise/meta/include/functions_meta.php:1338
+msgid "Graph color (max)"
+msgstr "Color del gráfico (máx.)"
+
+#: ../../enterprise/meta/include/functions_meta.php:1362
+#: ../../enterprise/meta/advanced/metasetup.visual.php:252
+#: ../../godmode/setup/setup_visuals.php:869
+msgid "Number of elements in Custom Graph"
+msgstr "Número de elementos en gráfica personalizada"
+
+#: ../../enterprise/meta/include/functions_meta.php:1403
+#: ../../enterprise/meta/advanced/metasetup.visual.php:1036
+#: ../../godmode/setup/setup_visuals.php:1135
+msgid "Interval description"
+msgstr "Descripción del intervalo"
+
+#: ../../enterprise/meta/include/functions_meta.php:1488
+msgid "full scale charts"
+msgstr "Gráficas a escala completa"
+
+#: ../../enterprise/meta/include/functions_meta.php:1498
+msgid "type mode type charts"
+msgstr "tipo de gráfica"
+
+#: ../../enterprise/meta/include/functions_meta.php:1508
+#: ../../enterprise/meta/advanced/metasetup.visual.php:969
+#: ../../godmode/setup/setup_visuals.php:1126
+msgid "Graph image height for HTML reports"
+msgstr "Altura de la imagen de la gráfica en informes HTML"
+
+#: ../../enterprise/meta/include/functions_meta.php:1518
+msgid "type mode zoom charts"
+msgstr "zoom de gráfica"
+
+#: ../../enterprise/meta/include/functions_meta.php:1528
+#: ../../enterprise/meta/advanced/metasetup.visual.php:826
+#: ../../godmode/setup/setup_visuals.php:563
+msgid "Visual effects and animation"
+msgstr "Efectos visuales y animación"
+
+#: ../../enterprise/meta/include/functions_meta.php:1538
+msgid "Type of charts"
+msgstr "Tipo de gráficos"
+
+#: ../../enterprise/meta/include/functions_meta.php:1548
+#: ../../enterprise/meta/advanced/metasetup.visual.php:367
+msgid "Metaconsole elements"
+msgstr "Elementos de la Metaconsola"
+
+#: ../../enterprise/meta/include/functions_meta.php:1558
+#: ../../enterprise/meta/advanced/metasetup.visual.php:454
+#: ../../godmode/setup/setup_visuals.php:1247
+msgid "Show only the group name"
+msgstr "Mostrar solo el nombre del grupo"
+
+#: ../../enterprise/meta/include/functions_meta.php:1588
+msgid "Custom logo (white background)"
+msgstr "Logo personalizado (fondo blanco)"
+
+#: ../../enterprise/meta/include/functions_meta.php:1688
+#: ../../enterprise/meta/advanced/metasetup.visual.php:775
+#: ../../godmode/setup/setup_visuals.php:495
+msgid "Docs URL (login)"
+msgstr "URL de documentos (inicio de sesión)"
+
+#: ../../enterprise/meta/include/functions_meta.php:1698
+#: ../../enterprise/meta/advanced/metasetup.visual.php:785
+#: ../../godmode/setup/setup_visuals.php:501
+msgid "Support URL (login)"
+msgstr "URL soporte (inicio de sesión)"
+
+#: ../../enterprise/meta/include/functions_meta.php:1708
+msgid "Custom background login"
+msgstr "Fondo personalizado del inicio de sesión"
+
+#: ../../enterprise/meta/include/functions_meta.php:1718
+msgid "Custom product name"
+msgstr "Nombre de producto personalizado"
+
+#: ../../enterprise/meta/include/functions_meta.php:1728
+msgid "Custom copyright notice"
+msgstr "Aviso de copyright personalizado"
+
+#: ../../enterprise/meta/include/functions_meta.php:1929
+#: ../../enterprise/meta/advanced/metasetup.performance.php:83
+msgid "Active events history"
+msgstr "Histórico de eventos activos"
+
+#: ../../enterprise/meta/include/functions_meta.php:1969
+msgid "Default block size migration agents"
+msgstr "Tamaño del bloque de migración de agentes por defecto"
+
+#: ../../enterprise/meta/include/functions_meta.php:1981
+msgid "Default block size execution event"
+msgstr "Evento de ejecución en bloque por defecto"
+
+#: ../../enterprise/meta/include/functions_meta.php:1992
+msgid "Default row limit in csv log"
+msgstr "Límite de líneas por defecto en el log CSV"
+
+#: ../../enterprise/meta/include/functions_meta.php:2038
+msgid "Node address default"
+msgstr "Dirección del nodo por defecto"
+
+#: ../../enterprise/meta/include/functions_wizard_meta.php:364
+msgid "Add selected modules to agent"
+msgstr "Añadir los módulos seleccionados al agente"
+
+#: ../../enterprise/meta/include/functions_wizard_meta.php:402
+msgid "Undo changes"
+msgstr "Deshacer los cambios"
+
+#: ../../enterprise/meta/include/functions_wizard_meta.php:496
+#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:754
+#: ../../godmode/massive/massive_edit_modules.php:818
+#: ../../godmode/agentes/module_manager_editor_wmi.php:60
+#: ../../godmode/agentes/module_manager_editor_network.php:95
+msgid "Force primary key"
+msgstr "Forzar clave primaria"
+
+#: ../../enterprise/meta/include/functions_wizard_meta.php:593
+msgid "Latency"
+msgstr "Latencia"
+
+#: ../../enterprise/meta/include/functions_wizard_meta.php:594
+msgid "Response"
+msgstr "Respuesta"
+
+#: ../../enterprise/meta/include/functions_wizard_meta.php:596
+#: ../../godmode/agentes/module_manager_editor_web.php:199
+msgid "Check type"
+msgstr "Comprueba el tipo"
+
+#: ../../enterprise/meta/include/functions_wizard_meta.php:649
+msgid "String to check"
+msgstr "Cadena para comprobar"
+
+#: ../../enterprise/meta/include/functions_wizard_meta.php:655
+msgid "Add check"
+msgstr "Añadir comprobación"
+
+#: ../../enterprise/meta/include/functions_wizard_meta.php:664
+msgid "Delete check"
+msgstr "Eliminar comprobación"
+
+#: ../../enterprise/meta/include/functions_wizard_meta.php:677
+#: ../../enterprise/godmode/modules/configure_local_component.php:494
+#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:180
+#: ../../godmode/agentes/module_manager_editor_web.php:164
+msgid "Load basic"
+msgstr "cargar básicos"
+
+#: ../../enterprise/meta/include/functions_wizard_meta.php:683
+#: ../../godmode/agentes/module_manager_editor_web.php:170
+msgid "Load a basic structure on Web Checks"
+msgstr "Cargar una estructura básica en las comprobaciones web"
+
+#: ../../enterprise/meta/include/functions_wizard_meta.php:691
+#: ../../godmode/agentes/module_manager_editor_web.php:178
+msgid "Check the correct structure of the WebCheck"
+msgstr "Cargar la estructura correcta de las comprobaciones web"
+
+#: ../../enterprise/meta/include/functions_wizard_meta.php:698
+#: ../../godmode/agentes/module_manager_editor_web.php:253
+msgid "First line must be \"task_begin\""
+msgstr "La primera línea tiene que ser \"task_begin\"."
+
+#: ../../enterprise/meta/include/functions_wizard_meta.php:699
+#: ../../godmode/agentes/module_manager_editor_web.php:254
+msgid "Webchecks configuration is empty"
+msgstr "La configuración de comprobaciones web está vacía."
+
+#: ../../enterprise/meta/include/functions_wizard_meta.php:700
+#: ../../enterprise/meta/include/functions_wizard_meta.php:701
+#: ../../godmode/agentes/module_manager_editor_web.php:255
+#: ../../godmode/agentes/module_manager_editor_web.php:256
+msgid "Last line must be \"task_end\""
+msgstr "La última línea tiene que ser \"task_end\"."
+
+#: ../../enterprise/meta/include/functions_wizard_meta.php:702
+#: ../../enterprise/godmode/modules/configure_local_component.php:513
+#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:203
+#: ../../godmode/agentes/module_manager_editor_web.php:257
+msgid "There is a line with a unknown token 'token_fail'."
+msgstr "Hay una línea con un token desconocido \"token_fail\"."
+
+#: ../../enterprise/meta/include/functions_wizard_meta.php:703
+#: ../../godmode/agentes/module_manager_editor_web.php:259
+msgid "Web checks are built correctly"
+msgstr "Las comprobaciones web se han efectuado correctamente."
+
+#: ../../enterprise/meta/include/functions_wizard_meta.php:959
+#: ../../enterprise/meta/include/functions_wizard_meta.php:1050
+#: ../../enterprise/meta/include/functions_wizard_meta.php:1262
+msgid "Various"
+msgstr "Varios"
+
+#: ../../enterprise/meta/include/functions_wizard_meta.php:985
+#: ../../enterprise/meta/include/functions_wizard_meta.php:994
+#: ../../enterprise/meta/include/functions_wizard_meta.php:1070
+#: ../../enterprise/meta/include/functions_wizard_meta.php:1079
+#: ../../enterprise/meta/include/functions_wizard_meta.php:1273
+#: ../../enterprise/meta/include/functions_wizard_meta.php:1282
+#: ../../enterprise/meta/include/functions_wizard_meta.php:1510
+#: ../../enterprise/meta/include/functions_wizard_meta.php:1519
+#: ../../enterprise/meta/include/functions_wizard_meta.php:1595
+#: ../../enterprise/meta/include/functions_wizard_meta.php:1604
+#: ../../enterprise/meta/include/functions_wizard_meta.php:1715
+#: ../../enterprise/meta/include/functions_wizard_meta.php:1724
+#: ../../enterprise/meta/include/functions_wizard_meta.php:1740
+#: ../../enterprise/godmode/modules/configure_local_component.php:338
+#: ../../enterprise/godmode/modules/configure_local_component.php:381
+#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:547
+#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:638
+#: ../../godmode/modules/manage_network_components_form_wizard.php:395
+#: ../../godmode/modules/manage_network_components_form_wizard.php:437
+#: ../../godmode/modules/manage_network_components_form_common.php:192
+#: ../../godmode/modules/manage_network_components_form_common.php:233
+#: ../../godmode/massive/massive_edit_modules.php:610
+#: ../../godmode/massive/massive_edit_modules.php:701
+#: ../../godmode/agentes/module_manager_editor_common.php:459
+#: ../../godmode/agentes/module_manager_editor_common.php:520
+msgid "Inverse interval"
+msgstr "Intervalo inverso"
+
+#: ../../enterprise/meta/include/functions_wizard_meta.php:1090
+#: ../../enterprise/meta/include/functions_wizard_meta.php:1622
+#: ../../godmode/agentes/module_manager_editor_web.php:224
+msgid "Proxy URL"
+msgstr "Proxy URL"
+
+#: ../../enterprise/meta/include/functions_wizard_meta.php:1095
+msgid "Web configuration"
+msgstr "Configuración web"
+
+#: ../../enterprise/meta/include/functions_wizard_meta.php:1289
+#: ../../enterprise/meta/include/functions_wizard_meta.php:1302
+#: ../../enterprise/meta/include/functions_wizard_meta.php:1731
+#: ../../enterprise/meta/include/functions_wizard_meta.php:1738
+msgid "Str: "
+msgstr "Cadena: "
+
+#: ../../enterprise/meta/include/functions_wizard_meta.php:1298
+#: ../../enterprise/meta/include/functions_wizard_meta.php:1311
+msgid " Inverse interval "
+msgstr " Intervalo inverso "
+
+#: ../../enterprise/meta/include/functions_wizard_meta.php:1371
+msgid "Alerts in module"
+msgstr "Alertas en el módulo"
+
+#: ../../enterprise/meta/include/functions_wizard_meta.php:1618
+msgid "Checks"
+msgstr "Comprobaciones"
+
+#: ../../enterprise/meta/include/functions_wizard_meta.php:1829
+msgid "Deleted modules"
+msgstr "Módulos eliminados"
+
+#: ../../enterprise/meta/include/functions_wizard_meta.php:2017
+#: ../../enterprise/meta/include/functions_wizard_meta.php:2117
+#: ../../enterprise/meta/include/functions_wizard_meta.php:2672
+#: ../../enterprise/meta/include/functions_wizard_meta.php:2791
+#: ../../enterprise/meta/include/functions_wizard_meta.php:2882
+#: ../../enterprise/meta/include/functions_wizard_meta.php:3077
+msgid "Another module already exists with the same name"
+msgstr "Ya existe otro módulo con el mismo nombre."
+
+#: ../../enterprise/meta/include/functions_wizard_meta.php:2029
+#: ../../enterprise/meta/include/functions_wizard_meta.php:2124
+#: ../../enterprise/meta/include/functions_wizard_meta.php:2684
+#, php-format
+msgid "Error adding module %s"
+msgstr "Error al añadir el módulo %s"
+
+#: ../../enterprise/meta/include/functions_wizard_meta.php:2038
+#: ../../enterprise/meta/include/functions_wizard_meta.php:2133
+msgid "There was an error creating the alerts, the operation has been cancelled"
+msgstr "Error al crear las alertas; operación cancelada"
+
+#: ../../enterprise/meta/include/functions_wizard_meta.php:2067
+#: ../../enterprise/meta/include/functions_wizard_meta.php:2162
+#: ../../enterprise/godmode/policies/policy_modules.php:919
+msgid "Successfully added module."
+msgstr "Módulo añadido correctamente"
+
+#: ../../enterprise/meta/include/functions_wizard_meta.php:2222
+#, php-format
+msgid "Could not create agent %s"
+msgstr "No se pudieron crear agentes %s"
+
+#: ../../enterprise/meta/include/functions_wizard_meta.php:2235
+msgid "Agent successfully added"
+msgstr "Agentes añadidos correctamente"
+
+#: ../../enterprise/meta/include/functions_wizard_meta.php:2256
+#: ../../enterprise/meta/include/functions_wizard_meta.php:2374
+#, php-format
+msgid "%s Modules created"
+msgstr "%s módulos creados"
+
+#: ../../enterprise/meta/include/functions_wizard_meta.php:2332
+#, php-format
+msgid "Could not update agent %s"
+msgstr "No se pudo actualizar el agente %s"
+
+#: ../../enterprise/meta/include/functions_wizard_meta.php:2380
+#, php-format
+msgid "%s Modules deleted"
+msgstr "%s módulos eliminados"
+
+#: ../../enterprise/meta/include/functions_wizard_meta.php:2696
+msgid ""
+"There was an error creating the alerts, the operation has been cancelled ."
+msgstr "Error al crear las alertas; operación cancelada"
+
+#: ../../enterprise/meta/include/functions_wizard_meta.php:2726
+msgid "Module successfully added."
+msgstr "Módulo añadido correctamente"
+
+#: ../../enterprise/meta/include/functions_wizard_meta.php:2798
+#: ../../enterprise/meta/include/functions_wizard_meta.php:2889
+#: ../../enterprise/meta/include/functions_wizard_meta.php:3084
+#, php-format
+msgid "Error updating module %s"
+msgstr "Error al actualizar el módulo %s"
+
+#: ../../enterprise/meta/include/functions_wizard_meta.php:2820
+#: ../../enterprise/meta/include/functions_wizard_meta.php:2911
+#: ../../enterprise/meta/include/functions_wizard_meta.php:3106
+msgid "There was an error updating the alerts, the operation has been cancelled"
+msgstr "Error al actualizar las alertas, operación cancelada"
+
+#: ../../enterprise/meta/include/functions_wizard_meta.php:2841
+#: ../../enterprise/meta/include/functions_wizard_meta.php:2932
+#: ../../enterprise/meta/include/functions_wizard_meta.php:3127
+msgid "Successfully updated module."
+msgstr "Módulo actualizado correctamente"
+
+#: ../../enterprise/meta/include/functions_wizard_meta.php:3507
+msgid "Manage agent modules"
+msgstr "Gestionar módulos de agentes"
+
+#: ../../enterprise/meta/include/functions_alerts_meta.php:137
+#: ../../enterprise/meta/include/functions_alerts_meta.php:168
+#: ../../godmode/menu.php:237
+msgid "Commands"
+msgstr "Comandos"
+
+#: ../../enterprise/meta/include/functions_alerts_meta.php:141
+msgid "Calendar"
+msgstr "Calendario"
+
+#: ../../enterprise/meta/include/functions_agents_meta.php:478
+#: ../../enterprise/meta/include/functions_agents_meta.php:542
+#: ../../enterprise/meta/include/functions_agents_meta.php:577
+msgid "Agents movement"
+msgstr "Movimiento de agentes"
+
+#: ../../enterprise/meta/include/functions_agents_meta.php:489
+#: ../../enterprise/meta/include/functions_agents_meta.php:557
+msgid "Provisioning management"
+msgstr "Gestión de aprovisionamiento"
+
+#: ../../enterprise/meta/include/functions_agents_meta.php:500
+#: ../../enterprise/meta/include/functions_agents_meta.php:567
+#: ../../enterprise/godmode/agentes/agent_autoconfiguration.php:103
+#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:301
+#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:422
+#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:680
+msgid "Agent autoconfiguration"
+msgstr "Autoconfiguración de agente"
+
+#: ../../enterprise/meta/include/functions_agents_meta.php:511
+#: ../../enterprise/meta/include/functions_agents_meta.php:547
+#: ../../enterprise/meta/include/functions_agents_meta.php:552
+msgid "Group management"
+msgstr "Gestionar grupos"
+
+#: ../../enterprise/meta/include/functions_agents_meta.php:522
+msgid "Tree group"
+msgstr "Árbol de grupos"
+
+#: ../../enterprise/meta/include/functions_agents_meta.php:562
+msgid "Provisioning rules management"
+msgstr "Gestión de reglas de aprovisionamiento"
+
+#: ../../enterprise/meta/include/functions_agents_meta.php:572
+msgid "Colecctions"
+msgstr "Colecciones"
+
+#: ../../enterprise/meta/include/functions_agents_meta.php:605
+msgid "Agents Management"
+msgstr "Gestión de agentes"
+
+#: ../../enterprise/meta/include/functions_groups_meta.php:114
+#, php-format
+msgid "Error Duplicate name (%s) "
+msgstr "Error al duplicar nombre (%s) "
+
+#: ../../enterprise/meta/include/functions_groups_meta.php:132
+#, php-format
+msgid "(Error Duplicate ID (%d) ) "
+msgstr "(Error ID Duplicado (%d) ) "
+
+#: ../../enterprise/meta/include/functions_groups_meta.php:153
+msgid "Error Duplicate name"
+msgstr "Error al duplicar nombre"
+
+#: ../../enterprise/meta/include/functions_groups_meta.php:174
+#: ../../enterprise/meta/advanced/policymanager.sync.php:247
+#: ../../godmode/groups/group_list.php:667
+#, php-format
+msgid "Error connecting to %s"
+msgstr "Error al conectar con %s"
+
+#: ../../enterprise/meta/include/functions_components_meta.php:80
+#: ../../enterprise/meta/include/functions_components_meta.php:135
+#: ../../godmode/menu.php:80
+msgid "Component groups"
+msgstr "Grupos de componentes"
+
+#: ../../enterprise/meta/include/functions_components_meta.php:88
+#: ../../enterprise/meta/include/functions_components_meta.php:139
+#: ../../enterprise/godmode/menu.php:99 ../../godmode/menu.php:153
+msgid "Local components"
+msgstr "Componentes locales"
+
+#: ../../enterprise/meta/include/functions_components_meta.php:96
+#: ../../enterprise/meta/include/functions_components_meta.php:143
+msgid "Network components"
+msgstr "Componentes de red"
+
+#: ../../enterprise/meta/include/functions_components_meta.php:104
+#: ../../enterprise/meta/include/functions_components_meta.php:147
+msgid "Plugin management"
+msgstr "Gestión de plugins"
+
+#: ../../enterprise/meta/include/functions_components_meta.php:124
+#: ../../enterprise/meta/include/functions_components_meta.php:164
+#: ../../godmode/servers/plugin.php:295
+#: ../../godmode/servers/plugin_registration.php:99
+msgid "Plugin registration"
+msgstr "Registro de plugins"
+
+#: ../../enterprise/meta/include/functions_components_meta.php:153
+msgid "Create plugin"
+msgstr "Crear plugin"
+
+#: ../../enterprise/meta/include/functions_components_meta.php:155
+msgid "Edit plugin"
+msgstr "Editar plugin"
+
+#: ../../enterprise/meta/monitoring/custom_fields_csv.php:102
+#: ../../godmode/massive/massive_edit_modules.php:468
+msgid "Agent Status"
+msgstr "Estado de agente"
+
+#: ../../enterprise/meta/monitoring/custom_fields_csv.php:136
+msgid "No init"
+msgstr "No iniciados"
+
+#: ../../enterprise/meta/monitoring/group_view.php:55
+msgid "Group View"
+msgstr "Vista de grupo"
+
+#: ../../enterprise/meta/monitoring/group_view.php:151
+msgid "Summary by status"
+msgstr "Resumen por estados"
+
+#: ../../enterprise/meta/monitoring/group_view.php:160
+#: ../../enterprise/meta/monitoring/group_view.php:172
+msgid "% Agents not init"
+msgstr "% agentes no iniciados"
+
+#: ../../enterprise/meta/monitoring/group_view.php:163
+msgid "% Agents Warning"
+msgstr "% Agentes en advertencia"
+
+#: ../../enterprise/meta/monitoring/group_view.php:166
+msgid "% Agents OK"
+msgstr "% Agentes OK"
+
+#: ../../enterprise/meta/monitoring/group_view.php:169
+msgid "% Agents Unknown"
+msgstr "% monitores en estado desconocido"
+
+#: ../../enterprise/meta/monitoring/group_view.php:177
+msgid "% Monitors Critical"
+msgstr "% monitores en estado crítico"
+
+#: ../../enterprise/meta/monitoring/group_view.php:180
+msgid "% Monitors Warning"
+msgstr "% monitores en estado de advertencia"
+
+#: ../../enterprise/meta/monitoring/group_view.php:183
+msgid "% Monitors OK"
+msgstr "% monitores en estado OK"
+
+#: ../../enterprise/meta/monitoring/group_view.php:186
+msgid "% Monitors Unknown"
+msgstr "% módulos en estado desconocido"
+
+#: ../../enterprise/meta/monitoring/group_view.php:189
+msgid "% Monitors Not init"
+msgstr "% módulos no iniciados"
+
+#: ../../enterprise/meta/monitoring/group_view.php:217
+#: ../../enterprise/meta/monitoring/group_view.php:223
+msgid "This data doesn't show in realtime"
+msgstr "Estos datos no se muestran en tiempo real"
+
+#: ../../enterprise/meta/monitoring/group_view.php:234
+msgid "Group or Tag"
+msgstr "Grupo o etiqueta"
+
+#: ../../enterprise/meta/monitoring/custom_fields_view.php:54
+msgid "Custom fields View"
+msgstr "Vista de campos personalizados"
+
+#: ../../enterprise/meta/monitoring/custom_fields_view.php:66
+msgid "Custom Fields View"
+msgstr "Vista de campos personalizados"
+
+#: ../../enterprise/meta/monitoring/custom_fields_view.php:187
+msgid "Status agents"
+msgstr "Agentes de estado"
+
+#: ../../enterprise/meta/monitoring/custom_fields_view.php:203
+msgid "Status module"
+msgstr "Módulo de estado"
+
+#: ../../enterprise/meta/monitoring/custom_fields_view.php:266
+msgid "Custom Fields Data"
+msgstr "Datos de campos personalizados"
+
+#: ../../enterprise/meta/monitoring/custom_fields_view.php:672
+msgid "Total counters"
+msgstr "Contadores totales"
+
+#: ../../enterprise/meta/monitoring/custom_fields_view.php:675
+msgid "Total Agents"
+msgstr "Agentes totales"
+
+#: ../../enterprise/meta/monitoring/custom_fields_view.php:684
+msgid "Total Modules"
+msgstr "Módulos totales"
+
+#: ../../enterprise/meta/monitoring/custom_fields_view.php:705
+msgid "I.P"
+msgstr "IP"
+
+#: ../../enterprise/meta/monitoring/custom_fields_view.php:727
+msgid "There are no custom search defined."
+msgstr "No hay búsquedas personalizadas definidas."
+
+#: ../../enterprise/meta/monitoring/tactical.php:251
+msgid "Report of state"
+msgstr "Informe de estado"
+
+#: ../../enterprise/meta/monitoring/tactical.php:279
+msgid "Report of events"
+msgstr "Informe de eventos"
+
+#: ../../enterprise/meta/monitoring/tactical.php:284
+msgid "Info of state in events"
+msgstr "Información de estado en eventos"
+
+#: ../../enterprise/meta/monitoring/tactical.php:302
+msgid "More events"
+msgstr "Más eventos"
+
+#: ../../enterprise/meta/monitoring/wizard/wizard.php:50
+#: ../../enterprise/meta/advanced/massive_operations.php:54
+#, php-format
+msgid ""
+"You should centralise management in order to use Wizard section. Please go to "
+"%s"
+msgstr ""
+"Debe centralizar la administración para utilizar la sección Asistente. Por "
+"favor, vaya a %s"
+
+#: ../../enterprise/meta/monitoring/wizard/wizard.php:134
+msgid "The alert you are trying to add is already in the list of alerts"
+msgstr ""
+"La alerta que estás intentando añadir ya se encuentra en la lista de alertas."
+
+#: ../../enterprise/meta/monitoring/wizard/wizard.php:144
+msgid ""
+"Are you sure? If the agent is on a policy, it will be removed from the policy."
+msgstr ""
+"¿Está seguro? Si el agente esta incluido en una política, se eliminará de "
+"dicha política."
+
+#: ../../enterprise/meta/monitoring/wizard/wizard.php:145
+#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:384
+#: ../../godmode/reporting/graph_builder.graph_editor.php:367
+msgid "Please, select a module"
+msgstr "Por favor, selecciona un módulo."
+
+#: ../../enterprise/meta/monitoring/wizard/wizard.php:146
+msgid "Please, select an alert"
+msgstr "Por favor, selecciona una alerta."
+
+#: ../../enterprise/meta/monitoring/wizard/wizard.php:147
+msgid "Please, select an agent"
+msgstr "Por favor, selecciona un agente."
+
+#: ../../enterprise/meta/monitoring/wizard/wizard.php:153
+msgid "No agent name specified"
+msgstr "No se especificó el nombre del agente."
+
+#: ../../enterprise/meta/monitoring/wizard/wizard.php:154
+msgid "Another agent already exists with the same name"
+msgstr "Ya hay otro agente con ese nombre."
+
+#: ../../enterprise/meta/monitoring/wizard/wizard.php:155
+#: ../../enterprise/meta/monitoring/wizard/wizard.php:213
+#: ../../enterprise/meta/monitoring/wizard/wizard.module.web.php:147
+#: ../../enterprise/meta/monitoring/wizard/wizard.module.local.php:156
+#: ../../enterprise/meta/monitoring/wizard/wizard.update_agent.php:46
+#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:131
+#: ../../enterprise/meta/monitoring/wizard/wizard.update_module.php:92
+#: ../../enterprise/meta/monitoring/wizard/wizard.module.network.php:195
+#, php-format
+msgid "Cannot connect to %s instance."
+msgstr "No se ha podido conectar con la instancia de %s."
+
+#: ../../enterprise/meta/monitoring/wizard/wizard.php:156
+#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:430
+#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:433
+#: ../../godmode/agentes/module_manager_editor_common.php:627
+#: ../../godmode/agentes/module_manager_editor_common.php:629
+#, php-format
+msgid "Agent interval x %s"
+msgstr "Intervalo del agente x %s"
+
+#: ../../enterprise/meta/monitoring/wizard/wizard.module.web.php:101
+#: ../../enterprise/meta/monitoring/wizard/wizard.module.local.php:108
+#: ../../enterprise/meta/monitoring/wizard/wizard.module.network.php:120
+msgid "Advanced configuration"
+msgstr "Configuración avanzada"
+
+#: ../../enterprise/meta/monitoring/wizard/wizard.module.web.php:117
+#: ../../enterprise/meta/monitoring/wizard/wizard.module.local.php:126
+#: ../../enterprise/meta/monitoring/wizard/wizard.update_module.php:39
+#: ../../enterprise/meta/monitoring/wizard/wizard.module.network.php:142
+#: ../../enterprise/godmode/policies/policy_modules.php:380
+msgid "Edit module"
+msgstr "Editar módulo"
+
+#: ../../enterprise/meta/monitoring/wizard/wizard.module.web.php:231
+msgid "Please, set a name"
+msgstr "Por favor, introduce un nombre."
+
+#: ../../enterprise/meta/monitoring/wizard/wizard.module.web.php:238
+#: ../../enterprise/meta/monitoring/wizard/wizard.module.local.php:229
+#: ../../enterprise/meta/monitoring/wizard/wizard.module.network.php:281
+msgid "Invalid characters founded in module name"
+msgstr "Se han encontrado caracteres no válidos en el nombre del módulo."
+
+#: ../../enterprise/meta/monitoring/wizard/wizard.module.web.php:252
+msgid "Please, set an interval"
+msgstr "Por favor, introduce un intervalo."
+
+#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:237
+#: ../../godmode/menu.php:71 ../../godmode/agentes/configurar_agente.php:818
+#: ../../godmode/agentes/configurar_agente.php:840
+#: ../../godmode/agentes/modificar_agente.php:108
+msgid "Manage agents"
+msgstr "Gestionar agentes"
+
+#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:286
+msgid "Select the agent to be edited or deleted"
+msgstr "Selecciona el agente que quieras editar o eliminar"
+
+#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:295
+#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:391
+#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:461
+#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:730
+#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:812
+#: ../../mobile/operation/agent.php:148 ../../mobile/operation/modules.php:241
+#: ../../mobile/operation/visualmaps.php:189
+#: ../../mobile/operation/visualmap.php:255
+#: ../../mobile/operation/tactical.php:102 ../../mobile/operation/alerts.php:199
+#: ../../mobile/operation/events.php:614
+#: ../../mobile/operation/module_graph.php:364
+#: ../../mobile/operation/module_graph.php:377
+#: ../../mobile/operation/agents.php:209 ../../mobile/operation/groups.php:82
+#: ../../godmode/alerts/configure_alert_action.php:395
+#: ../../godmode/groups/configure_group.php:272
+msgid "Back"
+msgstr "Atrás"
+
+#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:335
+msgid "Manage modules"
+msgstr "Gestionar módulos"
+
+#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:381
+msgid "Select the agent where the module will be created"
+msgstr "Selecciona el agente donde quieres crear el módulo"
+
+#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:394
+msgid "Create Module"
+msgstr "Crear módulo"
+
+#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:451
+msgid "Select the module to be edited or deleted"
+msgstr "Selecciona el módulo para editarlo o borrarlo"
+
+#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:506
+#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:546
+msgid "Error creating alert"
+msgstr "Error al crear una alerta"
+
+#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:510
+msgid "Alert could not be created"
+msgstr "No se pudo crear la alerta"
+
+#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:530
+msgid "Perform create alert"
+msgstr "Realizar crear alerta"
+
+#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:534
+msgid "Alert created correctly"
+msgstr "Alerta creada correctamente"
+
+#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:550
+msgid "Alert template must be setted"
+msgstr "La plantilla de alerta debe estar configurada"
+
+#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:589
+#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:622
+msgid "Error updating alert"
+msgstr "Alerta de actualización de error"
+
+#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:593
+msgid "Something gone wrong with alert update"
+msgstr "Algo salió mal con la actualización de alertas"
+
+#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:604
+msgid "Perform update alert"
+msgstr "Realizar alerta de actualización"
+
+#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:608
+msgid "Alert updated correctly"
+msgstr "Alerta actualizada correctamente"
+
+#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:626
+msgid "Template must be set."
+msgstr "Se debe establecer la plantilla."
+
+#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:651
+#: ../../enterprise/meta/monitoring/wizard/wizard.manage_alert.php:104
+#: ../../godmode/snmpconsole/snmp_alert.php:91
+msgid "Create alert"
+msgstr "Crear alerta"
+
+#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:656
+#: ../../godmode/alerts/alert_list.php:494
+#: ../../godmode/alerts/alert_list.php:496
+#: ../../godmode/users/configure_profile.php:291
+msgid "Manage alerts"
+msgstr "Gestionar alertas"
+
+#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:719
+msgid "Select the module where the alert will be created"
+msgstr "Selecciona el módulo donde se creará la alerta"
+
+#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:801
+msgid "Select the alert to be edited or deleted"
+msgstr "Selecciona la alerta que quieres editar o eliminar"
+
+#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:148
+#: ../../godmode/modules/manage_network_components_form_wizard.php:335
+#: ../../godmode/massive/massive_delete_modules.php:323
+#: ../../godmode/massive/massive_edit_modules.php:309
+msgid "Module type"
+msgstr "Tipo módulo"
+
+#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:148
+msgid "Web check"
+msgstr "Comprobación web"
+
+#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:245
+msgid "Module description"
+msgstr "Descripción del módulo"
+
+#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:267
+msgid "Step by step wizard"
+msgstr "Wizard paso a paso"
+
+#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:275
+#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:280
+msgid "Click Create to continue"
+msgstr "Haz clic en Crear para continuar"
+
+#: ../../enterprise/meta/monitoring/wizard/wizard.manage_alert.php:73
+#: ../../enterprise/godmode/alerts/alert_inventory_list.php:337
+msgid "Edit alert"
+msgstr "Editar alerta"
+
+#: ../../enterprise/meta/monitoring/wizard/wizard.manage_alert.php:248
+msgid "Create new template"
+msgstr "Crear nueva plantilla"
+
+#: ../../enterprise/meta/monitoring/wizard/wizard.manage_alert.php:280
+msgid "Create new action"
+msgstr "Crear nueva acción"
+
+#: ../../enterprise/meta/monitoring/wizard/wizard.agent.php:80
+msgid "Edit agent"
+msgstr "Editar agente"
+
+#: ../../enterprise/meta/monitoring/wizard/wizard.agent.php:198
+#: ../../enterprise/meta/monitoring/wizard/wizard.module.network.php:280
+msgid "Please, set a valid IP/Name address"
+msgstr "Por favor, introduce una IP/Nombre de dirección válido."
+
+#: ../../enterprise/meta/monitoring/wizard/wizard.agent.php:209
+msgid "Please, select a group first"
+msgstr "Por favor, seleccione primero un grupo"
+
+#: ../../enterprise/meta/advanced/agents_setup.autoprovision.php:72
+#, php-format
+msgid "Provisioning custom data <b>%s</b> successfully deleted."
+msgstr ""
+"Datos personalizados de aprovisionamiento <b>%s</b> borrados correctamente."
+
+#: ../../enterprise/meta/advanced/agents_setup.autoprovision.php:79
+#, php-format
+msgid "Cannot delete custom data <b>%s</b>."
+msgstr "Error al borrar los datos personalizados <b>%s</b>"
+
+#: ../../enterprise/meta/advanced/agents_setup.autoprovision.php:92
+msgid "There was an error when moving the custom provisioning data."
+msgstr "Error al mover los datos de aprovisionamiento personalizado"
+
+#: ../../enterprise/meta/advanced/metasetup.auth.php:27
+msgid ""
+"Be aware that group synchronization can change the group configuration of the "
+"node"
+msgstr ""
+"Tenga en cuenta que la sincronización de grupos puede cambiar la configuración "
+"de grupo del nodo"
+
+#: ../../enterprise/meta/advanced/metasetup.auth.php:47
+#: ../../enterprise/meta/advanced/metasetup.relations.php:96
+#: ../../enterprise/meta/advanced/metasetup.performance.php:47
+#: ../../enterprise/meta/advanced/metasetup.setup.php:79
+#: ../../enterprise/meta/advanced/metasetup.password.php:46
+#: ../../enterprise/meta/advanced/metasetup.log.php:41
+#: ../../enterprise/meta/advanced/metasetup.visual.php:51
+#, php-format
+msgid "Could not be update: Error in %s"
+msgstr "No se puede actualizar: error en %s"
+
+#: ../../enterprise/meta/advanced/metasetup.auth.php:54
+#: ../../enterprise/meta/advanced/metasetup.relations.php:103
+#: ../../enterprise/meta/advanced/metasetup.performance.php:54
+#: ../../enterprise/meta/advanced/metasetup.setup.php:86
+#: ../../enterprise/meta/advanced/metasetup.consoles.php:219
+#: ../../enterprise/meta/advanced/metasetup.password.php:53
+#: ../../enterprise/meta/advanced/metasetup.log.php:48
+#: ../../enterprise/meta/advanced/metasetup.visual.php:58
+#: ../../enterprise/godmode/setup/setup_metaconsole.php:85
+msgid "Successfully update"
+msgstr "Actualizado correctamente"
+
+#: ../../enterprise/meta/advanced/policymanager.sync.php:255
+#, php-format
+msgid "Error creating %s policies"
+msgstr "Error al crear las políticas %s"
+
+#: ../../enterprise/meta/advanced/policymanager.sync.php:259
+#, php-format
+msgid "Created %s policies"
+msgstr "%s políticas creadas"
+
+#: ../../enterprise/meta/advanced/policymanager.sync.php:264
+#, php-format
+msgid "Error creating/updating %s/%s policy modules"
+msgstr "Error al crear/actualizar %s/%s módulos de políticas"
+
+#: ../../enterprise/meta/advanced/policymanager.sync.php:268
+#, php-format
+msgid "Created/Updated %s/%s policy modules"
+msgstr "Creados/actualizados %s/%s módulos de políticas"
+
+#: ../../enterprise/meta/advanced/policymanager.sync.php:273
+#, php-format
+msgid "Error deleting %s policy modules"
+msgstr "Error al eliminar %s módulos de políticas"
+
+#: ../../enterprise/meta/advanced/policymanager.sync.php:277
+#, php-format
+msgid "Deleted %s policy modules"
+msgstr "Eliminados %s módulos de políticas"
+
+#: ../../enterprise/meta/advanced/policymanager.sync.php:282
+#, php-format
+msgid "Error creating %s policy alerts"
+msgstr "Error al crear %s alertas de políticas"
+
+#: ../../enterprise/meta/advanced/policymanager.sync.php:286
+#, php-format
+msgid "Created %s policy alerts"
+msgstr "Alertas de políticas %s creadas correctamente"
+
+#: ../../enterprise/meta/advanced/policymanager.sync.php:291
+#, php-format
+msgid "Error deleting %s policy alerts"
+msgstr "Error al eliminar %s alertas de políticas"
+
+#: ../../enterprise/meta/advanced/policymanager.sync.php:295
+#, php-format
+msgid "Deleted %s policy alerts"
+msgstr "%s alertas de políticas eliminadas correctamente"
+
+#: ../../enterprise/meta/advanced/policymanager.sync.php:321
+#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:199
+#: ../../godmode/massive/massive_copy_modules.php:239
+msgid "Targets"
+msgstr "Destinos"
+
+#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:124
+#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:127
+#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:131
+#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:135
+#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:139
+#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:143
+#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:147
+#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:151
+msgid "Agent: "
+msgstr "Agente: "
+
+#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:124
+msgid " already exists in target node"
+msgstr " ya existe en el nodo de destino"
+
+#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:127
+msgid " group does not exist in target node"
+msgstr " grupo no existe en el nodo de destino"
+
+#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:131
+msgid " policies definitions does not match  with defined ones in target node"
+msgstr ""
+" definiciones de políticas no concuerdan con aquellas definidas en el nodo de "
+"destino."
+
+#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:135
+msgid " plugins does not exist in target node"
+msgstr " plugins no existen en el nodo de destino."
+
+#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:139
+msgid " collections does not exist in target node"
+msgstr " colecciones no existen en el nodo de destino"
+
+#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:143
+msgid " inventory does not exist in target node"
+msgstr " inventario no existe en el nodo de destino"
+
+#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:147
+msgid " alerts template does not exist in target node"
+msgstr " modelo de alertas no existe en el nodo de destino"
+
+#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:151
+msgid " alerts action does not exist in target node"
+msgstr " acción de alertas no existe en el nodo de destino"
+
+#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:155
+msgid "Exists agent conf for agent: "
+msgstr "Existe una configuración para el agente: "
+
+#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:155
+msgid " please remove configuration file from target node."
+msgstr " por favor, borra el archivo de configuración del nodo de destino."
+
+#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:267
+#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:269
+msgid "The agent: "
+msgstr "El agente: "
+
+#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:267
+msgid " has been successfully added to the migration queue "
+msgstr " se añadió correctamente a la cola de migración "
+
+#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:269
+msgid " has not been added due to problems in the insertion"
+msgstr " no se añadió por problemas de inserción"
+
+#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:272
+#, php-format
+msgid "The agent: %d has already been added to the migration queue"
+msgstr "El agente: %d ya se ha añadido a la cola de migración"
+
+#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:292
+msgid "Problems delete queue"
+msgstr "Error al borrar la cola"
+
+#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:312
+msgid "Move Agents"
+msgstr "Mover agentes"
+
+#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:328
+msgid "Source Server"
+msgstr "Servidor de origen"
+
+#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:330
+msgid "Destination Server"
+msgstr "Servidor de destino"
+
+#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:364
+msgid "Agents to move"
+msgstr "Agentes para desplazar"
+
+#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:385
+msgid "Add agents to destination server"
+msgstr "Añadir agentes al servidor de destino"
+
+#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:394
+msgid "Remove agents to doesn't move to destination server"
+msgstr "Si eliminas los agentes, no se desplazarán al servidor de destino"
+
+#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:413
+msgid "Discard history data"
+msgstr "Descartar datos de histórico"
+
+#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:426
+msgid "Agents do not exist in target server."
+msgstr "Los agentes no existen en el servidor de destino."
+
+#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:427
+msgid "Check group is synchronized with target server."
+msgstr "Comprueba que el grupo está sincronizado con el servidor de destino."
+
+#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:428
+msgid "All policies needed are synchronized with target server."
+msgstr ""
+"Todas las políticas necesarias se sincronizaron con el servidor de destino."
+
+#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:429
+msgid "All remote plugins needed are synchronized with target server."
+msgstr ""
+"Todos los plugins necesarios se sincronizaron con el servidor de destino."
+
+#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:430
+msgid "All collections needed are syncronized with target server."
+msgstr ""
+"Todas las colecciones necesarias se sincronizaron con el servidor de destino."
+
+#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:431
+msgid ""
+"All remote inventory definitions needed are syncronized with target server."
+msgstr ""
+"Todos los inventarios necesarios se sincronizaron con el servidor de destino."
+
+#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:432
+msgid ""
+"All alert templates definitions needed are syncronized with target server."
+msgstr ""
+"Todas las definiciones de modelos de alertas necesarias se sincronizaron con "
+"el servidor de destino."
+
+#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:433
+msgid "All alert actions needed are syncronized with target server."
+msgstr ""
+"Todas las acciones de alertas necesarias se sincronizaron con el servidor de "
+"destino."
+
+#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:434
+msgid "Agents conf does not exists in target server."
+msgstr "La configuración del agente no existe en el servidor de destino."
+
+#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:435
+#, php-format
+msgid "Both %s servers must be in the same version"
+msgstr "Ambos servidores %s deben estar en la misma versión"
+
+#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:436
+msgid "Check target server ip address is set"
+msgstr "Comprueba que la IP del servidor de destino está configurada."
+
+#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:446
+msgid "Move"
+msgstr "Mover"
+
+#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:462
+msgid "Source node"
+msgstr "Nodo de origen"
+
+#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:463
+msgid "Target node"
+msgstr "Nodo de destino"
+
+#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:467
+msgid "Active db only"
+msgstr "BD activa solamente"
+
+#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:520
+msgid "Creating modules in target node"
+msgstr "Creando módulos en el nodo de destino"
+
+#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:524
+msgid "Disabling agent in source node and enabling in target one"
+msgstr ""
+"Deshabilitando el agente en el nodo de origen y habilitándolo en el nodo de "
+"destino"
+
+#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:528
+msgid "Transferring data"
+msgstr "Transfiriendo datos"
+
+#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:533
+msgid "Creating agent in target node"
+msgstr "Creando agente en el nodo de destino"
+
+#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:549
+msgid "Queued"
+msgstr "En espera"
+
+#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:679
+msgid "checking migration requirements"
+msgstr "Comprobando requisitos de migración"
+
+#: ../../enterprise/meta/advanced/policymanager.apply.php:129
+#: ../../enterprise/godmode/policies/policy.php:198
+#: ../../enterprise/godmode/policies/policy.php:246
+msgid "Duplicated or incompatible operation in the queue"
+msgstr "Operación duplicada o incompatible en la cola"
+
+#: ../../enterprise/meta/advanced/policymanager.apply.php:137
+#: ../../enterprise/meta/advanced/policymanager.apply.php:141
+#: ../../enterprise/godmode/policies/policy.php:186
+#: ../../enterprise/godmode/policies/policy.php:241
+msgid "Operation successfully added to the queue"
+msgstr "Operación añadida correctamente a la cola"
+
+#: ../../enterprise/meta/advanced/policymanager.apply.php:141
+#: ../../enterprise/meta/advanced/policymanager.apply.php:149
+msgid "Only database"
+msgstr "Bases de datos solamente"
+
+#: ../../enterprise/meta/advanced/policymanager.apply.php:145
+#: ../../enterprise/meta/advanced/policymanager.apply.php:149
+#: ../../enterprise/meta/advanced/policymanager.apply.php:153
+#: ../../enterprise/godmode/policies/policy.php:192
+#: ../../enterprise/godmode/policies/policy.php:242
+msgid "Operation cannot be added to the queue"
+msgstr "La operación no se puede añadir a la cola."
+
+#: ../../enterprise/meta/advanced/policymanager.apply.php:186
+msgid "Apply Policies"
+msgstr "Aplicar políticas"
+
+#: ../../enterprise/meta/advanced/policymanager.apply.php:200
+#: ../../enterprise/godmode/servers/HA_cluster.php:97
+#: ../../mobile/include/functions_web.php:28 ../../godmode/setup/os.php:225
+#: ../../godmode/reporting/visual_console_builder.wizard.php:333
+#: ../../godmode/menu.php:278
+msgid "Servers"
+msgstr "Servidores"
+
+#: ../../enterprise/meta/advanced/agents_setup.php:64
+msgid "Propagation"
+msgstr "Propagación"
+
+#: ../../enterprise/meta/advanced/policymanager.php:58
+msgid "Policy Manager"
+msgstr "Gestor de políticas"
+
+#: ../../enterprise/meta/advanced/policymanager.php:75
+msgid "Apply policies"
+msgstr "Aplicar políticas"
+
+#: ../../enterprise/meta/advanced/policymanager.php:79
+#: ../../enterprise/meta/advanced/policymanager.php:97
+msgid "Policies queue"
+msgstr "Cola de políticas"
+
+#: ../../enterprise/meta/advanced/policymanager.php:93
+msgid "Policies apply"
+msgstr "Aplicar políticas"
+
+#: ../../enterprise/meta/advanced/policymanager.queue.php:58
+#: ../../enterprise/godmode/policies/policy_queue.php:96
+msgid "Operation successfully deleted from the queue"
+msgstr "Operación eliminada correctamente de la cola"
+
+#: ../../enterprise/meta/advanced/policymanager.queue.php:59
+#: ../../enterprise/godmode/policies/policy_queue.php:97
+msgid "Operation cannot be deleted from the queue"
+msgstr "La operación no puede ser eliminada de la cola."
+
+#: ../../enterprise/meta/advanced/policymanager.queue.php:218
+#: ../../enterprise/godmode/policies/policy_queue.php:609
+msgid "Apply (database and files)"
+msgstr "Aplicar (base de datos y archivos)"
+
+#: ../../enterprise/meta/advanced/policymanager.queue.php:219
+#: ../../enterprise/meta/advanced/policymanager.queue.php:315
+#: ../../enterprise/godmode/policies/policy_queue.php:610
+#: ../../enterprise/godmode/policies/policy_queue.php:718
+msgid "Apply (only database)"
+msgstr "Aplicar (solo en la base de datos)"
+
+#: ../../enterprise/meta/advanced/policymanager.queue.php:229
+#: ../../enterprise/godmode/policies/policy_queue.php:620
+msgid "Complete"
+msgstr "Completo"
+
+#: ../../enterprise/meta/advanced/policymanager.queue.php:230
+#: ../../enterprise/godmode/policies/policy_queue.php:621
+msgid "Incomplete"
+msgstr "Incompleto"
+
+#: ../../enterprise/meta/advanced/policymanager.queue.php:298
+#: ../../enterprise/godmode/policies/policy_queue.php:688
+msgid "Policy "
+msgstr "Política "
+
+#: ../../enterprise/meta/advanced/policymanager.queue.php:339
+#: ../../enterprise/godmode/policies/policy_queue.php:748
+#: ../../enterprise/godmode/policies/policy_queue.php:757
+msgid "Policy applying timeout"
+msgstr "Tiempo de espera de la aplicación de la política"
+
+#: ../../enterprise/meta/advanced/policymanager.queue.php:353
+#: ../../enterprise/godmode/policies/policy_queue.php:776
+msgid "Delete from queue"
+msgstr "Eliminar de la cola"
+
+#: ../../enterprise/meta/advanced/policymanager.queue.php:371
+msgid "Empty queue."
+msgstr "Cola vacía"
+
+#: ../../enterprise/meta/advanced/metasetup.mail.php:79
+#: ../../godmode/update_manager/update_manager.setup.php:168
+#: ../../godmode/update_manager/update_manager.setup.php:243
+msgid "Succesful Update the url config vars."
+msgstr "Variables de configuración de la URL actualizadas correctamente."
+
+#: ../../enterprise/meta/advanced/metasetup.mail.php:80
+#: ../../godmode/update_manager/update_manager.setup.php:169
+#: ../../godmode/update_manager/update_manager.setup.php:244
+msgid "Unsuccesful Update the url config vars."
+msgstr "Error al actualizar las variables de configuración de la URL."
+
+#: ../../enterprise/meta/advanced/metasetup.mail.php:98
+msgid ""
+"Please notice that some providers like Gmail or Office365 need to setup/enable "
+"manually external connections using SMTP and you need to use STARTTLS on port "
+"587.\n"
+"\n"
+"If you have manual settings in your pandora_server.conf, please note these "
+"settings will ignore this console setup."
+msgstr ""
+"Tenga en cuenta que algunos proveedores como Gmail o Office 365 necesitan "
+"ajustar/habilitar conexiones externas manualmente utilizando SMTP y necesita "
+"usar STARTTLS en el puerto 587.\n"
+"\n"
+"Si tiene configuraciones manuales en su pandora_server.conf, tenga presente "
+"que dichos ajustes ignorarán los ajustes de la consola."
+
+#: ../../enterprise/meta/advanced/metasetup.mail.php:104
+#: ../../godmode/setup/setup_general.php:518
+msgid "Mail configuration"
+msgstr "Configuración de email"
+
+#: ../../enterprise/meta/advanced/servers.php:39
+#: ../../godmode/servers/modificar_server.php:180
+msgid "Server deleted successfully"
+msgstr "Servidor eliminado correctamente"
+
+#: ../../enterprise/meta/advanced/servers.php:41
+#: ../../godmode/servers/modificar_server.php:182
+msgid "There was a problem deleting the server"
+msgstr "Hubo un problema al eliminar el servidor"
+
+#: ../../enterprise/meta/advanced/agents_setup.autoprovision_rules.php:64
+msgid "Cannot create an unnamed rule."
+msgstr "No se pudo crear una regla sin nombre."
+
+#: ../../enterprise/meta/advanced/agents_setup.autoprovision_rules.php:75
+#: ../../enterprise/meta/advanced/agents_setup.autoprovision_rules.php:105
+msgid "Error creating provisioning rule."
+msgstr "Error al crear la regla de aprovisionamiento"
+
+#: ../../enterprise/meta/advanced/agents_setup.autoprovision_rules.php:91
+#: ../../enterprise/meta/advanced/agents_setup.autoprovision_rules.php:119
+msgid "Error updating provisioning rule."
+msgstr "Error al actualizar la regla de aprovisionamiento"
+
+#: ../../enterprise/meta/advanced/agents_setup.autoprovision_rules.php:125
+msgid "Error deleting provisioning rule."
+msgstr "Error al borrar la regla de aprovisionamiento."
+
+#: ../../enterprise/meta/advanced/agents_setup.autoprovision_rules.php:135
+msgid "There was an error rule when moving the provisioning."
+msgstr "Error al mover la regla de aprovisionamiento."
+
+#: ../../enterprise/meta/advanced/agents_setup.autoprovision_rules.php:202
+msgid "Edit rule"
+msgstr "Editar regla"
+
+#: ../../enterprise/meta/advanced/metasetup.relations.php:239
+msgid "Node Address Default"
+msgstr "Dirección del nodo por defecto"
+
+#: ../../enterprise/meta/advanced/metasetup.relations.php:271
+#: ../../enterprise/meta/advanced/metasetup.relations.php:388
+msgid "This value will be the one returned by the API"
+msgstr "Este será el valor devuelto por la API"
+
+#: ../../enterprise/meta/advanced/metasetup.relations.php:305
+msgid "Import file"
+msgstr "Importar archivo"
+
+#: ../../enterprise/meta/advanced/metasetup.relations.php:319
+msgid "Ip Gateway"
+msgstr "Puerta de enlace de la IP"
+
+#: ../../enterprise/meta/advanced/metasetup.relations.php:320
+#: ../../enterprise/meta/advanced/metasetup.relations.php:564
+msgid "Imei"
+msgstr "IMEI"
+
+#: ../../enterprise/meta/advanced/metasetup.relations.php:351
+msgid "Relation"
+msgstr "Relación"
+
+#: ../../enterprise/meta/advanced/metasetup.relations.php:361
+#: ../../enterprise/meta/advanced/metasetup.relations.php:440
+msgid "Node Address"
+msgstr "Dirección del nodo"
+
+#: ../../enterprise/meta/advanced/metasetup.relations.php:398
+msgid "Insert relation"
+msgstr "Insertar relación"
+
+#: ../../enterprise/meta/advanced/metasetup.relations.php:406
+msgid "Show list relations"
+msgstr "Mostrar lista de relaciones"
+
+#: ../../enterprise/meta/advanced/metasetup.relations.php:462
+msgid "Show Filters"
+msgstr "Mostrar filtros"
+
+#: ../../enterprise/meta/advanced/metasetup.relations.php:549
+msgid "Node address"
+msgstr "Dirección del nodo"
+
+#: ../../enterprise/meta/advanced/metasetup.relations.php:562
+msgid "Gateway"
+msgstr "Puerta de enlace"
+
+#: ../../enterprise/meta/advanced/metasetup.relations.php:642
+msgid "There are no relations yet"
+msgstr "Aún no hay relaciones"
+
+#: ../../enterprise/meta/advanced/servers.build_table.php:34
+#: ../../godmode/servers/servers.build_table.php:52
+msgid "There are no servers configured into the database"
+msgstr "No hay ningún servidor configurado en la base de datos"
+
+#: ../../enterprise/meta/advanced/servers.build_table.php:65
+#: ../../godmode/servers/servers.build_table.php:84
+msgid "Lag"
+msgstr "Retraso"
+
+#: ../../enterprise/meta/advanced/servers.build_table.php:65
+#: ../../godmode/servers/servers.build_table.php:84
+msgid "Avg. Delay(sec)/Modules delayed"
+msgstr "Media de retraso (seg.)/Módulos retrasados"
+
+#: ../../enterprise/meta/advanced/servers.build_table.php:66
+#: ../../godmode/servers/servers.build_table.php:85
+msgid "T/Q"
+msgstr "H/C"
+
+#: ../../enterprise/meta/advanced/servers.build_table.php:66
+#: ../../godmode/servers/servers.build_table.php:85
+msgid "Threads / Queued modules currently"
+msgstr "Hilos/Cola actual de módulos"
+
+#: ../../enterprise/meta/advanced/servers.build_table.php:91
+#: ../../godmode/servers/servers.build_table.php:134
+msgid "This is a master server"
+msgstr "Este es un servidor maestro"
+
+#: ../../enterprise/meta/advanced/servers.build_table.php:106
+#: ../../enterprise/meta/advanced/servers.build_table.php:112
+#: ../../godmode/servers/servers.build_table.php:153
+#: ../../godmode/servers/servers.build_table.php:159
+msgid "of"
+msgstr "de"
+
+#: ../../enterprise/meta/advanced/servers.build_table.php:134
+#: ../../godmode/servers/servers.build_table.php:260
+msgid "Modules run by this server will stop working. Do you want to continue?"
+msgstr ""
+"Los módulos ejecutados por este servidor podrían dejar de funcionar. ¿Quieres "
+"continuar?"
+
+#: ../../enterprise/meta/advanced/servers.build_table.php:160
+#: ../../godmode/servers/servers.build_table.php:287
+msgid "Tactical server information"
+msgstr "Vista táctica del servidor"
+
+#: ../../enterprise/meta/advanced/component_management.php:56
+msgid "Module groups Management"
+msgstr "Gestor de grupos de módulo"
+
+#: ../../enterprise/meta/advanced/component_management.php:60
+msgid "OS Management"
+msgstr "Administración de SO"
+
+#: ../../enterprise/meta/advanced/metasetup.translate_string.php:129
+#: ../../enterprise/extensions/translate_string.php:253
+msgid "Translation added successfully"
+msgstr "Traducción añadida correctamente"
+
+#: ../../enterprise/meta/advanced/metasetup.translate_string.php:131
+#: ../../enterprise/extensions/translate_string.php:255
+msgid "Translation string could not be created"
+msgstr "No se ha podido crear la cadena de traducción"
+
+#: ../../enterprise/meta/advanced/metasetup.translate_string.php:144
+#: ../../enterprise/extensions/translate_string.php:268
+msgid "Translation updated successfully"
+msgstr "Traducción actualizada correctamente"
+
+#: ../../enterprise/meta/advanced/metasetup.translate_string.php:146
+#: ../../enterprise/extensions/translate_string.php:270
+msgid "Translation string could not be updated"
+msgstr "No se ha podido actualizar la cadena de traducción"
+
+#: ../../enterprise/meta/advanced/metasetup.translate_string.php:187
+#: ../../enterprise/meta/advanced/metasetup.translate_string.php:188
+#: ../../enterprise/extensions/translate_string.php:313
+#: ../../enterprise/extensions/translate_string.php:314
+#: ../../enterprise/godmode/agentes/collection_manager.php:42
+#: ../../enterprise/godmode/agentes/collections.php:309
+#: ../../enterprise/godmode/policies/policies.php:326
+#: ../../enterprise/godmode/policies/policy_collections.php:248
+msgid "Free text for search (*)"
+msgstr "Texto libre para buscar (*)"
+
+#: ../../enterprise/meta/advanced/metasetup.translate_string.php:206
+#: ../../enterprise/extensions/translate_string.php:334
+msgid "Original string"
+msgstr "Cadena original"
+
+#: ../../enterprise/meta/advanced/metasetup.translate_string.php:207
+#: ../../enterprise/extensions/translate_string.php:335
+msgid "Translation in selected language"
+msgstr "Traducción en el idioma seleccionado"
+
+#: ../../enterprise/meta/advanced/metasetup.translate_string.php:208
+#: ../../enterprise/extensions/translate_string.php:336
+msgid "Customize translation"
+msgstr "Personalizar traducción"
+
+#: ../../enterprise/meta/advanced/collections.editor.php:79
+#: ../../enterprise/meta/advanced/collections.data.php:320
+msgid "This console is not manager of this environment."
+msgstr "Esta consola no es el administrador de este entorno."
+
+#: ../../enterprise/meta/advanced/collections.editor.php:128
+#: ../../enterprise/meta/advanced/collections.editor.php:195
+#: ../../enterprise/godmode/agentes/collections.editor.php:161
+#: ../../enterprise/godmode/agentes/collections.editor.php:226
+msgid "Back to file explorer"
+msgstr "Volver al explorador de archivos"
+
+#: ../../enterprise/meta/advanced/collections.editor.php:217
+#: ../../enterprise/godmode/agentes/collections.editor.php:248
+#: ../../godmode/servers/plugin.php:192
+msgid "Compatibility mode"
+msgstr "Modo de compatibilidad"
+
+#: ../../enterprise/meta/advanced/collections.editor.php:269
+#: ../../enterprise/godmode/agentes/collections.editor.php:299
+msgid "Correct update file."
+msgstr "Actualización correcta del archivo"
+
+#: ../../enterprise/meta/advanced/collections.editor.php:270
+#: ../../enterprise/godmode/agentes/collections.editor.php:300
+msgid "Incorrect update file."
+msgstr "Error al actualizar el archivo"
+
+#: ../../enterprise/meta/advanced/collections.editor.php:403
+#: ../../enterprise/godmode/agentes/collections.editor.php:447
+msgid "Please, first save a new collection before to upload files."
+msgstr "Por favor, antes de subir archivos, guarda una nueva colección."
+
+#: ../../enterprise/meta/advanced/metasetup.performance.php:74
+#: ../../godmode/setup/setup.php:125 ../../godmode/setup/setup.php:260
+#: ../../godmode/menu.php:334
+msgid "Performance"
+msgstr "Rendimiento"
+
+#: ../../enterprise/meta/advanced/metasetup.performance.php:94
+msgid "Migration block size"
+msgstr "Tamaño del bloque de migración"
+
+#: ../../enterprise/meta/advanced/metasetup.performance.php:104
+#: ../../godmode/setup/performance.php:612
+msgid "Events response max. execution"
+msgstr "Máx. tiempo de ejecución de respuesta de eventos"
+
+#: ../../enterprise/meta/advanced/metasetup.performance.php:106
+msgid "Number of events that will perform the desired action at the same time"
+msgstr "Número de eventos que llevarán a cabo la acción deseada a la vez."
+
+#: ../../enterprise/meta/advanced/metasetup.performance.php:142
+#: ../../godmode/setup/performance.php:658
+#, php-format
+msgid ""
+"%s web2image cache system cleanup. It is always cleaned up after perform an "
+"upgrade"
+msgstr ""
+"%s limpieza del sistema de caché web2image. Siempre se limpia después de "
+"realizar una actualización"
+
+#: ../../enterprise/meta/advanced/metasetup.performance.php:147
+#: ../../godmode/setup/performance.php:665
+msgid "PhantomJS cache cleanup "
+msgstr "Limpieza de caché de PhantomJS "
+
+#: ../../enterprise/meta/advanced/metasetup.performance.php:154
+#: ../../godmode/setup/performance.php:672
+msgid "No scheduled"
+msgstr "No programado"
+
+#: ../../enterprise/meta/advanced/metasetup.performance.php:155
+#: ../../godmode/setup/performance.php:673
+msgid "Each week"
+msgstr "Cada semana"
+
+#: ../../enterprise/meta/advanced/metasetup.performance.php:156
+#: ../../godmode/setup/performance.php:674
+msgid "Each day"
+msgstr "Cada día"
+
+#: ../../enterprise/meta/advanced/cron_main.php:75
+#: ../../enterprise/extensions/cron.php:156
+msgid "Cron jobs"
+msgstr "Tareas cron"
+
+#: ../../enterprise/meta/advanced/cron_main.php:87
+#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:551
+msgid "Add new job"
+msgstr "Añadir nueva tarea"
+
+#: ../../enterprise/meta/advanced/cron_main.php:173
+#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:244
+msgid "Only administrator users can create this type of functions"
+msgstr "Solo los usuarios administradores pueden crear este tipo de funciones."
+
+#: ../../enterprise/meta/advanced/cron_main.php:244
+#: ../../enterprise/meta/advanced/cron_main.php:278
+#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:356
+msgid "Edit job"
+msgstr "Editar tarea"
+
+#: ../../enterprise/meta/advanced/cron_main.php:333
+msgid ""
+"In order to make backups it is necessary to have mysqldump on your console."
+msgstr "Para hacer una copia de seguridad, debe tener mysquldump en la consola."
+
+#: ../../enterprise/meta/advanced/cron_main.php:407
+msgid "Date format in Pandora is year/month/day"
+msgstr "El formato de fecha de Pandora FMS es año/mes/día"
+
+#: ../../enterprise/meta/advanced/cron_main.php:418
+msgid "Time format in Pandora is hours(24h):minutes:seconds"
+msgstr "El formato de hora en Pandora FMS es horas(24h):minutos:segundos"
+
+#: ../../enterprise/meta/advanced/collections.data.php:76
+#: ../../enterprise/godmode/agentes/collections.data.php:174
+msgid ""
+"Unable to create the collection. Another collection with the same short name."
+msgstr ""
+"No se ha podido crear la colección. Hay otra colección con el mismo nombre "
+"corto."
+
+#: ../../enterprise/meta/advanced/collections.data.php:97
+#: ../../enterprise/meta/advanced/collections.data.php:117
+#: ../../enterprise/godmode/agentes/collections.data.php:197
+#: ../../enterprise/godmode/agentes/collections.data.php:217
+msgid "Unable to create the collection"
+msgstr "Error al crear la colección"
+
+#: ../../enterprise/meta/advanced/collections.data.php:97
+#: ../../enterprise/godmode/agentes/collections.data.php:197
+msgid "Invalid characters in short name"
+msgstr "Caracteres no válidos en el nombre"
+
+#: ../../enterprise/meta/advanced/collections.data.php:111
+#: ../../enterprise/godmode/agentes/collections.data.php:59
+#: ../../enterprise/godmode/agentes/collections.data.php:167
+#: ../../enterprise/godmode/agentes/collections.data.php:191
+#: ../../enterprise/godmode/agentes/collections.data.php:211
+#: ../../enterprise/godmode/agentes/collections.data.php:238
+#: ../../enterprise/godmode/agentes/collections.data.php:294
+msgid "Manager configuration &gt; New"
+msgstr "Gestionar la configuración &gt; Nuevo"
+
+#: ../../enterprise/meta/advanced/collections.data.php:142
+#: ../../enterprise/meta/advanced/collections.data.php:190
+#: ../../enterprise/godmode/agentes/collections.data.php:244
+#: ../../enterprise/godmode/agentes/collections.data.php:302
+msgid "Unable to create the collection."
+msgstr "Error al crear la colección"
+
+#: ../../enterprise/meta/advanced/collections.data.php:163
+#: ../../enterprise/meta/advanced/collections.data.php:309
+#: ../../enterprise/godmode/agentes/collections.data.php:270
+msgid "Correct create collection"
+msgstr "Colección de ficheros creada correctamente"
+
+#: ../../enterprise/meta/advanced/collections.data.php:231
+#: ../../enterprise/godmode/agentes/collections.editor.php:84
+#: ../../enterprise/godmode/agentes/collections.data.php:106
+#: ../../enterprise/godmode/agentes/collections.data.php:262
+#: ../../enterprise/godmode/agentes/collections.data.php:351
+#: ../../enterprise/godmode/agentes/collections.data.php:367
+#: ../../enterprise/godmode/agentes/collections.data.php:375
+msgid "Manager configuration &gt; Edit "
+msgstr "Gestionar la configuración &gt; Editar "
+
+#: ../../enterprise/meta/advanced/collections.data.php:287
+#: ../../enterprise/godmode/agentes/collections.data.php:358
+msgid "Unable to edit the collection, empty name."
+msgstr "Error al crear colección: nombre vacío"
+
+#: ../../enterprise/meta/advanced/collections.data.php:300
+#: ../../enterprise/godmode/agentes/collections.data.php:373
+msgid "Unable to edit the collection."
+msgstr "Error al editar la colección"
+
+#: ../../enterprise/meta/advanced/collections.data.php:345
+#: ../../enterprise/godmode/agentes/collections.data.php:438
+msgid "Recreate file"
+msgstr "Volver a crear el archivo"
+
+#: ../../enterprise/meta/advanced/collections.data.php:373
+#: ../../enterprise/meta/advanced/collections.data.php:374
+#: ../../enterprise/godmode/agentes/collection_manager.php:166
+#: ../../enterprise/godmode/agentes/collection_manager.php:167
+#: ../../enterprise/godmode/agentes/collection_manager.php:281
+#: ../../enterprise/godmode/agentes/collection_manager.php:282
+#: ../../enterprise/godmode/agentes/collections.data.php:467
+#: ../../enterprise/godmode/agentes/collections.data.php:468
+msgid "Need to regenerate"
+msgstr "Necesita volver a regenerarse"
+
+#: ../../enterprise/meta/advanced/collections.data.php:397
+#: ../../enterprise/godmode/agentes/collections.data.php:492
+msgid "Group:"
+msgstr "Grupo:"
+
+#: ../../enterprise/meta/advanced/collections.data.php:420
+#: ../../enterprise/godmode/agentes/collections.data.php:514
+msgid "Short name:"
+msgstr "Nombre corto:"
+
+#: ../../enterprise/meta/advanced/collections.data.php:426
+#: ../../enterprise/godmode/agentes/collections.data.php:519
+msgid ""
+"The collection's short name is the name of dir in attachment dir and the "
+"package collection."
+msgstr ""
+"El nombre corto de la colección es el nombre del directorio en el directorio "
+"de adjuntos y la colección de paquetes."
+
+#: ../../enterprise/meta/advanced/collections.data.php:426
+#: ../../enterprise/godmode/agentes/collections.data.php:519
+msgid "Short name must contain only alphanumeric characters, - or _ ."
+msgstr "Los nombres cortos deben contener solo caracteres alfanuméricos, - o _."
+
+#: ../../enterprise/meta/advanced/collections.data.php:426
+#: ../../enterprise/godmode/agentes/collections.data.php:519
+msgid "Empty for default short name fc_X where X is the collection id."
+msgstr ""
+"Déjalo vacío para el nombre corto por defecto (fc_X) donde X es el ID de la "
+"colección."
+
+#: ../../enterprise/meta/advanced/license_meta.php:52
+#: ../../godmode/setup/license.php:80
+msgid "Failed to Update license file"
+msgstr "Error al actualizar el archivo de licencia"
+
+#: ../../enterprise/meta/advanced/license_meta.php:59
+msgid "Metaconsole and all nodes license updated"
+msgstr "Licencia de la Metaconsola y todos sus módulos actualizada correctamente"
+
+#: ../../enterprise/meta/advanced/license_meta.php:61
+#, php-format
+msgid "Metaconsole license updated but %d of %d node synchronization failed"
+msgstr ""
+"Licencia de la Metaconsola actualizada pero %d de %d de los nodos no se "
+"sincronizaron correctamente"
+
+#: ../../enterprise/meta/advanced/metasetup.php:55
+msgid "Consoles Setup"
+msgstr "Configuración de consolas"
+
+#: ../../enterprise/meta/advanced/metasetup.php:63
+#: ../../enterprise/meta/advanced/metasetup.php:216
+msgid "General setup"
+msgstr "Configuración general"
+
+#: ../../enterprise/meta/advanced/metasetup.php:71
+#: ../../enterprise/meta/advanced/metasetup.php:219
+msgid "Passwords setup"
+msgstr "Configuración de contraseñas"
+
+#: ../../enterprise/meta/advanced/metasetup.php:91
+#: ../../enterprise/meta/advanced/metasetup.php:227
+#: ../../godmode/setup/setup.php:113 ../../godmode/setup/setup.php:255
+#: ../../godmode/menu.php:331
+msgid "Authentication"
+msgstr "Autentificación"
+
+#: ../../enterprise/meta/advanced/metasetup.php:101
+#: ../../enterprise/meta/advanced/metasetup.php:231
+msgid "Visual setup"
+msgstr "Configuración visual"
+
+#: ../../enterprise/meta/advanced/metasetup.php:109
+#: ../../enterprise/meta/advanced/metasetup.php:235
+msgid "Performance setup"
+msgstr "Configuración del rendimiento"
+
+#: ../../enterprise/meta/advanced/metasetup.php:117
+#: ../../enterprise/meta/advanced/metasetup.php:239
+#: ../../godmode/setup/file_manager.php:46 ../../godmode/menu.php:399
+msgid "File manager"
+msgstr "Gestor de archivos"
+
+#: ../../enterprise/meta/advanced/metasetup.php:125
+#: ../../enterprise/meta/advanced/metasetup.php:243
+msgid "Strings translation"
+msgstr "Traducción de cadenas"
+
+#: ../../enterprise/meta/advanced/metasetup.php:133
+#: ../../enterprise/meta/advanced/metasetup.php:247
+msgid "Mail"
+msgstr "Correo electrónico"
+
+#: ../../enterprise/meta/advanced/metasetup.php:141
+#: ../../enterprise/meta/advanced/metasetup.php:251
+#: ../../godmode/setup/setup.php:204 ../../godmode/setup/setup.php:300
+#: ../../godmode/menu.php:355
+msgid "Notifications"
+msgstr "Notificaciones"
+
+#: ../../enterprise/meta/advanced/metasetup.php:153
+msgid "Relations rules"
+msgstr "Normas de relación"
+
+#: ../../enterprise/meta/advanced/metasetup.php:166
+msgid "Options Update Manager"
+msgstr "Opciones del Administrador de actualizaciones"
+
+#: ../../enterprise/meta/advanced/metasetup.php:174
+msgid "Options Update Journal"
+msgstr "Opciones del Update Journal"
+
+#: ../../enterprise/meta/advanced/metasetup.php:182
+msgid "Offline Update Manager"
+msgstr "Administrador de actualizaciones offline"
+
+#: ../../enterprise/meta/advanced/metasetup.php:190
+msgid "Online Update Manager"
+msgstr "Administrador de actualizaciones online"
+
+#: ../../enterprise/meta/advanced/metasetup.php:211
+msgid "Consoles setup"
+msgstr "Configuración de las consolas"
+
+#: ../../enterprise/meta/advanced/metasetup.php:255
+msgid "Relations Rules"
+msgstr "Normas de relación"
+
+#: ../../enterprise/meta/advanced/metasetup.php:259
+msgid "Online Update Options"
+msgstr "Opciones de actualización online"
+
+#: ../../enterprise/meta/advanced/metasetup.php:263
+msgid "Online Update Journal"
+msgstr "Update Journal en línea"
+
+#: ../../enterprise/meta/advanced/metasetup.php:268
+msgid "Online Update Offline"
+msgstr "Actualización sin conexión"
+
+#: ../../enterprise/meta/advanced/metasetup.php:275
+msgid "Online Update Online"
+msgstr "Actualización en línea"
+
+#: ../../enterprise/meta/advanced/metasetup.setup.php:108
+#: ../../enterprise/godmode/modules/configure_local_component.php:164
+#: ../../godmode/modules/manage_network_components_form_common.php:52
+#: ../../godmode/alerts/configure_alert_template.php:933
+#: ../../godmode/alerts/configure_alert_template.php:974
+#: ../../godmode/alerts/configure_alert_template.php:1137
+#: ../../godmode/alerts/alert_commands.php:141
+#: ../../godmode/alerts/alert_commands.php:182
+#: ../../godmode/users/configure_user.php:1210
+msgid "Basic"
+msgstr "Básico"
+
+#: ../../enterprise/meta/advanced/metasetup.setup.php:145
+#: ../../godmode/setup/setup_general.php:126
+msgid "Database"
+msgstr "Base de datos"
+
+#: ../../enterprise/meta/advanced/metasetup.setup.php:149
+#, php-format
+msgid ""
+"If SSL is not properly configured, you will lose access to the %s Console. Do "
+"you want to continue?"
+msgstr ""
+"Si el SSL no esta correctamente configurado, perderá el acceso a la consola "
+"%s. ¿Desea continuar?"
+
+#: ../../enterprise/meta/advanced/metasetup.setup.php:152
+msgid "Directory where temporary data is stored."
+msgstr "Directorio donde se almacenan los datos temporales"
+
+#: ../../enterprise/meta/advanced/metasetup.setup.php:158
+msgid "Directory where phantomjs binary file exists and has execution grants."
+msgstr ""
+"Directorio que contiene en archivo binario phantomjs con permisos de ejecución."
+
+#: ../../enterprise/meta/advanced/metasetup.setup.php:193
+#: ../../godmode/setup/setup_general.php:296
+msgid "Change timezone"
+msgstr "Cambiar zona horaria"
+
+#: ../../enterprise/meta/advanced/metasetup.setup.php:198
+#, php-format
+msgid ""
+"Set this value when you need your %s to be accessible via a public URL (for "
+"example using Apache mod_proxy settings)."
+msgstr ""
+"Ajuste este valor cuando necesite que %s esté accesible a través de una URL "
+"pública (por ejemplo usando los ajustes mod_proxy de Apache)."
+
+#: ../../enterprise/meta/advanced/metasetup.setup.php:202
+msgid "Force using defined public URL)."
+msgstr "Forzar usando la URL pública definida."
+
+#: ../../enterprise/meta/advanced/metasetup.setup.php:209
+#, php-format
+msgid ""
+"If public URL is not properly configured, you will lose access to the %s "
+"Console. Do you want to continue?"
+msgstr ""
+"Si la URL no está correctamente configurada, no tendrá acceso a la consola %s. "
+"¿Desea continuar?"
+
+#: ../../enterprise/meta/advanced/metasetup.setup.php:218
+msgid ""
+"Disable the definition of custom filters in the live view. Only existing "
+"filters can be used."
+msgstr ""
+"Desactiva la definición de filtros personalizados en la vista activa. Solo "
+"pueden usarse los filtros existentes."
+
+#: ../../enterprise/meta/advanced/metasetup.setup.php:222
+msgid "The string modules with several lines show as command output"
+msgstr ""
+"Los módulos de tipo cadena de texto con varias líneas se mostrarán como una "
+"salida de comando."
+
+#: ../../enterprise/meta/advanced/metasetup.setup.php:227
+msgid "Customize sections"
+msgstr "Personalizar secciones"
+
+#: ../../enterprise/meta/advanced/metasetup.setup.php:248
+msgid "Disabled sections"
+msgstr "Secciones desactivadas"
+
+#: ../../enterprise/meta/advanced/metasetup.setup.php:250
+msgid "Enabled sections"
+msgstr "Activar secciones"
+
+#: ../../enterprise/meta/advanced/metasetup.setup.php:255
+msgid "Push selected sections to enable it"
+msgstr "Selecciona las secciones elegidas para activarlo"
+
+#: ../../enterprise/meta/advanced/metasetup.setup.php:257
+msgid "Pop selected sections to disable it"
+msgstr "Deshacer selección de las secciones para desactivarlo"
+
+#: ../../enterprise/meta/advanced/metasetup.setup.php:267
+msgid "Please be careful if you put a password put https access."
+msgstr ""
+"Por favor, ten cuidado. Si tienes que introducir una contraseña pon acceso "
+"https."
+
+#: ../../enterprise/meta/advanced/metasetup.setup.php:289
+#: ../../enterprise/godmode/setup/setup.php:98
+msgid " Bytes"
+msgstr " Bytes"
+
+#: ../../enterprise/meta/advanced/metasetup.setup.php:291
+msgid "Max. agents to add in policy concurrently"
+msgstr "Máx. de agentes a añadir a una política simultáneamente"
+
+#: ../../enterprise/meta/advanced/metasetup.setup.php:291
+msgid ""
+"Maximum allowed number of agents to be added in policy concurrently (adding a "
+"high number of agents at a time can lead to performance issues)"
+msgstr ""
+"Número máximo de agentes permitido a añadir a una política simultáneamente "
+"(añadir un gran número de agentes de una vex puede causar problemas de "
+"funcionamiento)"
+
+#: ../../enterprise/meta/advanced/metasetup.setup.php:294
+msgid "Synchronization queue items warn detection"
+msgstr "Los elementos de la cola de sincronización advierten a la detección"
+
+#: ../../enterprise/meta/advanced/metasetup.setup.php:294
+msgid "Number of items in synchronization queue before be notified, per node"
+msgstr ""
+"Número de elementos en la cola de sincronización antes de ser notificados, por "
+"nodo"
+
+#: ../../enterprise/meta/advanced/metasetup.setup.php:298
+msgid "Enable Agent API"
+msgstr "Habilitar API del agente"
+
+#: ../../enterprise/meta/advanced/metasetup.setup.php:320
+msgid "Enable log viewer"
+msgstr "Habilitar el visor de logs"
+
+#: ../../enterprise/meta/advanced/metasetup.setup.php:324
+msgid "Log location: pandora_console/log/console.log"
+msgstr "Localización de logs:  pandora_console/log/console.log"
+
+#: ../../enterprise/meta/advanced/metasetup.setup.php:345
+msgid "Log location: pandora_console/log/audit.log"
+msgstr "Localización de logs:  pandora_console/log/audit.log"
+
+#: ../../enterprise/meta/advanced/metasetup.consoles.php:105
+#, php-format
+msgid "Node %s is not recognized as metaconsole node."
+msgstr "El nodo %s no ha sido reconocido como nodo de la Metaconsola."
+
+#: ../../enterprise/meta/advanced/metasetup.consoles.php:112
+#, php-format
+msgid "Node %s license missmatch."
+msgstr "El nodo %s no coincide en la licencia."
+
+#: ../../enterprise/meta/advanced/metasetup.consoles.php:119
+#, php-format
+msgid "Cannot connect to node %s"
+msgstr "No puede conectarse al nodo %s"
+
+#: ../../enterprise/meta/advanced/metasetup.consoles.php:126
+#, php-format
+msgid "Unknown error synchronizing %s"
+msgstr "Error desconocido al sincronizar %s"
+
+#: ../../enterprise/meta/advanced/metasetup.consoles.php:136
+#, php-format
+msgid "Synchronized %d nodes, but some failed to synchronize %s"
+msgstr "Nodos %d sincronizados, pero algunos no han podido sincronizarse %s"
+
+#: ../../enterprise/meta/advanced/metasetup.consoles.php:143
+#, php-format
+msgid "Successfully synchronized all nodes (%d)"
+msgstr "Todos los nodos se han sincronizado correctamente (%d)"
+
+#: ../../enterprise/meta/advanced/metasetup.consoles.php:210
+msgid "Node synchronization process failed"
+msgstr "Error al sincronizar con el nodo"
+
+#: ../../enterprise/meta/advanced/metasetup.consoles.php:210
+#: ../../enterprise/meta/advanced/metasetup.consoles.php:324
+msgid ""
+"If you are trying to migrate this node to a new metaconsole, please use the "
+"form available at Settings > Enterprise at node console."
+msgstr ""
+"Si intenta migrar este nodo a una Metaconsola nueva, use el formulario "
+"disponible en Configuración > Enterprise en la consola de nodos."
+
+#: ../../enterprise/meta/advanced/metasetup.consoles.php:220
+#: ../../enterprise/godmode/setup/setup_metaconsole.php:86
+msgid "Could not be update"
+msgstr "No se pudo actualizar"
+
+#: ../../enterprise/meta/advanced/metasetup.consoles.php:260
+msgid "Could not be created, duplicated register found."
+msgstr "No se pudo crear, se encontró un registro duplicado."
+
+#: ../../enterprise/meta/advanced/metasetup.consoles.php:322
+msgid "Node synchronization process failed: "
+msgstr "Error al sincronizar con el nodo"
+
+#: ../../enterprise/meta/advanced/metasetup.consoles.php:322
+#: ../../godmode/setup/license.php:101
+msgid "Unknown error"
+msgstr "Error desconocido"
+
+#: ../../enterprise/meta/advanced/metasetup.consoles.php:343
+msgid "Successfully registered"
+msgstr "Registrado con éxito"
+
+#: ../../enterprise/meta/advanced/metasetup.consoles.php:344
+#, php-format
+msgid "Could not be registered %s"
+msgstr "No se pudo registrar %s"
+
+#: ../../enterprise/meta/advanced/metasetup.consoles.php:370
+msgid "Successfully delete"
+msgstr "Borrado correctamente"
+
+#: ../../enterprise/meta/advanced/metasetup.consoles.php:371
+msgid "Could not be delete"
+msgstr "No se puede eliminar"
+
+#: ../../enterprise/meta/advanced/metasetup.consoles.php:413
+#, php-format
+msgid "Could not be disabled: %s"
+msgstr "No se pudo deshabilitar: %s"
+
+#: ../../enterprise/meta/advanced/metasetup.consoles.php:429
+#, php-format
+msgid ""
+"System is centralised, but you just modify nodes registered, please go to %s "
+"to perform a database merge process."
+msgstr ""
+"El sistema está centralizado, pero solo modifica los nodos registrados, vaya a "
+"%s para realizar un proceso de combinación de bases de datos."
+
+#: ../../enterprise/meta/advanced/metasetup.consoles.php:432
+msgid "This node will not be usable until unifying the environment"
+msgstr "Este nodo no será utilizable hasta unificar el entorno"
+
+#: ../../enterprise/meta/advanced/metasetup.consoles.php:507
+#, php-format
+msgid "%s Metaconsole item edition"
+msgstr "Edición de elemento de Metaconsola %s"
+
+#: ../../enterprise/meta/advanced/metasetup.consoles.php:513
+msgid "Custom label to identify this setup."
+msgstr "Etiqueta personalizada para identificar esta configuración."
+
+#: ../../enterprise/meta/advanced/metasetup.consoles.php:516
+#: ../../enterprise/meta/advanced/metasetup.consoles.php:839
+#: ../../enterprise/godmode/setup/setup_metaconsole.php:206
+msgid "Console URL"
+msgstr "URL de la consola"
+
+#: ../../enterprise/meta/advanced/metasetup.consoles.php:516
+#, php-format
+msgid "Full path to %s console (without index.php). Example %s"
+msgstr "Ruta completa de la consola %s (sin index.php). Ejemplo %s"
+
+#: ../../enterprise/meta/advanced/metasetup.consoles.php:519
+#: ../../enterprise/godmode/setup/setup_metaconsole.php:202
+msgid "Auth token"
+msgstr "Hash de autentificación"
+
+#: ../../enterprise/meta/advanced/metasetup.consoles.php:520
+#, php-format
+msgid ""
+"Token previously configured on the destination %s console in order to use "
+"delegated authentification."
+msgstr ""
+"Token previamente configurado en la consola %s de destino para usar la "
+"autenticación delegada."
+
+#: ../../enterprise/meta/advanced/metasetup.consoles.php:544
+#: ../../enterprise/godmode/setup/setup_metaconsole.php:233
+msgid "Console User"
+msgstr "Usuario de la consola"
+
+#: ../../enterprise/meta/advanced/metasetup.consoles.php:553
+#: ../../enterprise/godmode/setup/setup_metaconsole.php:237
+msgid "Console Password"
+msgstr "Contraseña de la consola"
+
+#: ../../enterprise/meta/advanced/metasetup.consoles.php:564
+#: ../../enterprise/meta/advanced/metasetup.consoles.php:840
+#: ../../enterprise/godmode/setup/setup_metaconsole.php:215
+#: ../../enterprise/godmode/setup/setup_metaconsole.php:275
+msgid "DB Host"
+msgstr "Host de la BD"
+
+#: ../../enterprise/meta/advanced/metasetup.consoles.php:573
+#: ../../enterprise/godmode/setup/setup_metaconsole.php:219
+msgid "DB Name"
+msgstr "Nombre de la BD"
+
+#: ../../enterprise/meta/advanced/metasetup.consoles.php:582
+#: ../../enterprise/godmode/setup/setup_metaconsole.php:224
+msgid "DB User"
+msgstr "Usuario de la BD"
+
+#: ../../enterprise/meta/advanced/metasetup.consoles.php:591
+#: ../../enterprise/godmode/setup/setup_metaconsole.php:228
+msgid "DB Password"
+msgstr "Contraseña de la BD"
+
+#: ../../enterprise/meta/advanced/metasetup.consoles.php:613
+msgid "Define database connection from Pandora FMS node to this Metaconsole"
+msgstr ""
+"Definir conexión con la base de datos desde el nodo de Pandora FMs a esta "
+"Metaconsola."
+
+#: ../../enterprise/meta/advanced/metasetup.consoles.php:635
+msgid "Metaconsole DB Host"
+msgstr "Host de la base de datos de la Metaconsola"
+
+#: ../../enterprise/meta/advanced/metasetup.consoles.php:644
+msgid "Metaconsole DB Name"
+msgstr "Nombre de base de datos de la Metaconsola"
+
+#: ../../enterprise/meta/advanced/metasetup.consoles.php:653
+msgid "Metaconsole DB User"
+msgstr "Usuario de la base de datos de la Metaconsola"
+
+#: ../../enterprise/meta/advanced/metasetup.consoles.php:662
+msgid "Metaconsole DB Password"
+msgstr "Contraseña de la base de datos de la Metaconsola"
+
+#: ../../enterprise/meta/advanced/metasetup.consoles.php:673
+#: ../../enterprise/godmode/setup/setup.php:250
+msgid "Metaconsole DB port"
+msgstr "Puerto BD Metaconsola"
+
+#: ../../enterprise/meta/advanced/metasetup.consoles.php:726
+msgid "Register empty node"
+msgstr "Registrar nodo vacío"
+
+#: ../../enterprise/meta/advanced/metasetup.consoles.php:732
+msgid "Register node with data to merge"
+msgstr "Nodo de registro con datos para combinar"
+
+#: ../../enterprise/meta/advanced/metasetup.consoles.php:769
+msgid "Node data will be wiped out"
+msgstr "Los datos del nodo se borrarán"
+
+#: ../../enterprise/meta/advanced/metasetup.consoles.php:770
+msgid ""
+"Information contained in this node is not needed. Node information will be "
+"erased, and replaced with new data from this metaconsole automatically after "
+"register the node. Are you sure?"
+msgstr ""
+"La información contenida en este nodo no es necesaria. La información del nodo "
+"se borrará y se reemplazará con nuevos datos de esta metaconsola "
+"automáticamente después de registrar el nodo. ¿Estás seguro?"
+
+#: ../../enterprise/meta/advanced/metasetup.consoles.php:786
+msgid "Node data will be merged"
+msgstr "Los datos del nodo se fusionarán"
+
+#: ../../enterprise/meta/advanced/metasetup.consoles.php:787
+msgid ""
+"Information contained in this node is useful. After register the node, you "
+"must launch a merge process from command center, which will combine "
+"information in current environment with information contained in this new "
+"node. Are you sure?"
+msgstr ""
+"La información contenida en este nodo es útil. Después de registrar el nodo, "
+"debe iniciar un proceso de combinación desde el centro de comandos, que "
+"combinará la información del entorno actual con la información contenida en "
+"este nuevo nodo. ¿Estás seguro?"
+
+#: ../../enterprise/meta/advanced/metasetup.consoles.php:832
+#: ../../enterprise/godmode/setup/setup_metaconsole.php:272
+msgid "Compatibility"
+msgstr "Compatibilidad"
+
+#: ../../enterprise/meta/advanced/metasetup.consoles.php:833
+msgid "Event replication"
+msgstr "Replicación de eventos"
+
+#: ../../enterprise/meta/advanced/metasetup.consoles.php:836
+msgid "Database sync"
+msgstr "Sincronización de bases de datos"
+
+#: ../../enterprise/meta/advanced/metasetup.consoles.php:903
+msgid "New node"
+msgstr "Nuevo nodo"
+
+#: ../../enterprise/meta/advanced/metasetup.consoles.php:935
+msgid "Synchronize all"
+msgstr "Sincronizar todo"
+
+#: ../../enterprise/meta/advanced/metasetup.password.php:73
+msgid "Passwords"
+msgstr "Contraseñas"
+
+#: ../../enterprise/meta/advanced/metasetup.password.php:102
+#: ../../enterprise/godmode/setup/setup.php:484
+msgid " Caracters"
+msgstr " Caracteres"
+
+#: ../../enterprise/meta/advanced/metasetup.password.php:105
+msgid "Set 0 if never expire."
+msgstr "Introduce 0 para que nunca expire."
+
+#: ../../enterprise/meta/advanced/metasetup.password.php:106
+#: ../../enterprise/godmode/setup/setup.php:513
+msgid " Days"
+msgstr " Días"
+
+#: ../../enterprise/meta/advanced/metasetup.password.php:110
+#: ../../enterprise/godmode/setup/setup.php:533
+msgid " Minutes"
+msgstr " Minutos"
+
+#: ../../enterprise/meta/advanced/metasetup.password.php:113
+msgid "Two attempts minimum"
+msgstr "2 intentos mínimo"
+
+#: ../../enterprise/meta/advanced/metasetup.password.php:114
+#: ../../enterprise/godmode/setup/setup.php:544
+msgid " Attempts"
+msgstr " Intentos"
+
+#: ../../enterprise/meta/advanced/collections.php:111
+msgid "Collection has been deleted"
+msgstr "Se ha eliminado la colección"
+
+#: ../../enterprise/meta/advanced/collections.php:122
+#: ../../enterprise/meta/advanced/collections.php:138
+#: ../../enterprise/godmode/agentes/collection_manager.php:94
+#: ../../enterprise/godmode/agentes/collections.php:188
+#: ../../enterprise/godmode/agentes/collections.php:210
+msgid "Successful create collection package."
+msgstr "Paquete de la colección creado correctamente"
+
+#: ../../enterprise/meta/advanced/collections.php:139
+#: ../../enterprise/godmode/agentes/collection_manager.php:95
+#: ../../enterprise/godmode/agentes/collections.php:211
+msgid "Can not create collection package."
+msgstr "No se puede crear el paquete de la colección"
+
+#: ../../enterprise/meta/advanced/collections.php:154
+msgid "To manage collections you must activate centralized management"
+msgstr "Para administrar colecciones, active la gestión centralizada"
+
+#: ../../enterprise/meta/advanced/collections.php:167
+#: ../../enterprise/meta/advanced/collections.php:173
+#: ../../godmode/users/user_list.php:402 ../../godmode/users/user_list.php:406
+msgid "Search by username, fullname or email"
+msgstr "Buscar por nombre de usuario, nombre completo o email"
+
+#: ../../enterprise/meta/advanced/collections.php:199
+#: ../../godmode/users/user_list.php:451
+msgid "Users control filter"
+msgstr "Filtro de control de usuarios"
+
+#: ../../enterprise/meta/advanced/collections.php:208
+#: ../../enterprise/godmode/agentes/collections.php:245
+msgid "Error: The main directory of collections does not exist."
+msgstr "Error: el directorio principal de las colecciones no existe"
+
+#: ../../enterprise/meta/advanced/collections.php:312
+#: ../../enterprise/godmode/agentes/collection_manager.php:110
+#: ../../enterprise/godmode/agentes/collections.php:328
+#: ../../enterprise/godmode/policies/policy_collections.php:170
+#: ../../enterprise/godmode/policies/policy_collections.php:264
+msgid "Short Name"
+msgstr "Nombre corto"
+
+#: ../../enterprise/meta/advanced/collections.php:373
+#: ../../enterprise/godmode/agentes/collections.php:360
+msgid "Are you sure to delete?"
+msgstr "¿Estás seguro de que quieres eliminarlo?"
+
+#: ../../enterprise/meta/advanced/collections.php:378
+#: ../../enterprise/meta/advanced/collections.php:379
+#: ../../enterprise/godmode/agentes/collections.php:361
+msgid "Delete collection"
+msgstr "Eliminar colección"
+
+#: ../../enterprise/meta/advanced/collections.php:388
+#: ../../enterprise/godmode/agentes/collections.php:368
+msgid "Are you sure to re-apply?"
+msgstr "¿Estás seguro de que quieres volver a aplicarlo?"
+
+#: ../../enterprise/meta/advanced/collections.php:389
+#: ../../enterprise/godmode/agentes/collections.php:369
+msgid "Re-Apply changes"
+msgstr "Volver a aplicar los cambios"
+
+#: ../../enterprise/meta/advanced/collections.php:396
+#: ../../enterprise/godmode/agentes/collections.php:376
+msgid "Are you sure to apply?"
+msgstr "¿Estás seguro de que quieres aplicarlo?"
+
+#: ../../enterprise/meta/advanced/collections.php:397
+#: ../../enterprise/godmode/agentes/collections.php:377
+msgid "Apply changes"
+msgstr "Aplicar cambios"
+
+#: ../../enterprise/meta/advanced/metasetup.visual.php:98
+#: ../../godmode/setup/setup.php:137 ../../godmode/setup/setup.php:266
+#: ../../godmode/menu.php:337
+msgid "Visual styles"
+msgstr "Estilos visuales"
+
+#: ../../enterprise/meta/advanced/metasetup.visual.php:109
+#: ../../godmode/setup/setup_visuals.php:1257
+msgid "Example"
+msgstr "Ejemplo"
+
+#: ../../enterprise/meta/advanced/metasetup.visual.php:136
+#: ../../godmode/setup/setup_visuals.php:1275
+msgid "Timestamp, time comparison, or compact mode"
+msgstr "Marca horaria, comparación horaria o modo compacto"
+
+#: ../../enterprise/meta/advanced/metasetup.visual.php:139
+#: ../../godmode/setup/setup_visuals.php:1277
+msgid "Comparation in rollover"
+msgstr "Fecha en comparación"
+
+#: ../../enterprise/meta/advanced/metasetup.visual.php:148
+#: ../../godmode/setup/setup_visuals.php:1278
+msgid "Timestamp in rollover"
+msgstr "Fecha literal"
+
+#: ../../enterprise/meta/advanced/metasetup.visual.php:157
+#: ../../godmode/setup/setup_visuals.php:1279
+msgid "Compact mode"
+msgstr "Modo compacto"
+
+#: ../../enterprise/meta/advanced/metasetup.visual.php:197
+msgid "Data precision for reports and visual consoles"
+msgstr "Precisión de datos para informes y consolas visuales"
+
+#: ../../enterprise/meta/advanced/metasetup.visual.php:200
+msgid "Precision must be a integer number between 0 and 5"
+msgstr "La precisión debe ser un número entero entre 0 y 5"
+
+#: ../../enterprise/meta/advanced/metasetup.visual.php:219
+msgid "Show percentile 95 in graphs"
+msgstr "Mostrar el percentil 95 en los gráficos"
+
+#: ../../enterprise/meta/advanced/metasetup.visual.php:291
+#: ../../godmode/setup/setup_visuals.php:951
+msgid "On Boolean graphs"
+msgstr "En gráficos booleanos"
+
+#: ../../enterprise/meta/advanced/metasetup.visual.php:294
+msgid "Graph TIP view"
+msgstr "Visor de gráfico TIP"
+
+#: ../../enterprise/meta/advanced/metasetup.visual.php:295
+msgid "This option may cause performance issues"
+msgstr "Esta opción puede generar problemas de rendimiento"
+
+#: ../../enterprise/meta/advanced/metasetup.visual.php:309
+#: ../../godmode/setup/setup_visuals.php:970
+msgid "Show only average by default"
+msgstr "Mostrar solo la media por defecto"
+
+#: ../../enterprise/meta/advanced/metasetup.visual.php:310
+#: ../../godmode/setup/setup_visuals.php:971
+msgid "Show MAX/AVG/MIN by default"
+msgstr "Mostrar MÁX/MEDIA/MÍN por defecto"
+
+#: ../../enterprise/meta/advanced/metasetup.visual.php:312
+#: ../../godmode/setup/setup_visuals.php:967
+msgid "Graph mode"
+msgstr "Modo de gráfico"
+
+#: ../../enterprise/meta/advanced/metasetup.visual.php:332
+#: ../../godmode/setup/setup_visuals.php:986
+msgid "Zoom graphs:"
+msgstr "Gráficas ampliadas:"
+
+#: ../../enterprise/meta/advanced/metasetup.visual.php:346
+#: ../../godmode/setup/setup_visuals.php:901
+msgid "Type of module charts"
+msgstr "Tipo de gráficos de módulos"
+
+#: ../../enterprise/meta/advanced/metasetup.visual.php:369
+msgid "The number of elements retrieved for each instance in some views."
+msgstr "Número de elementos recuperados para cada instancia en algunas vistas"
+
+#: ../../enterprise/meta/advanced/metasetup.visual.php:390
+msgid "Add new custom value to intervals"
+msgstr "Añadir nuevo valor personalizado para intervalos"
+
+#: ../../enterprise/meta/advanced/metasetup.visual.php:505
+msgid ""
+"You can place your favicon into the folder images/custom_favicon/. This file "
+"should be in .ico format with a size of 16x16."
+msgstr ""
+"Puede poner su favicon en la carpeta images/custom_favicon/. Este archivo debe "
+"estar en formato .ico y tener un tamaño de 16x16."
+
+#: ../../enterprise/meta/advanced/metasetup.visual.php:531
+#: ../../godmode/setup/setup_visuals.php:212
+msgid "Custom background logo"
+msgstr "Fondo del logo personalizado"
+
+#: ../../enterprise/meta/advanced/metasetup.visual.php:533
+msgid "You can place your custom images into the folder images/backgrounds/"
+msgstr "Puedes poner tus propias imágenes en el directorio images/backgrounds/"
+
+#: ../../enterprise/meta/advanced/metasetup.visual.php:576
+#: ../../godmode/setup/setup_visuals.php:279
+msgid "Custom logo (menu)"
+msgstr "Logo personalizado (menu)"
+
+#: ../../enterprise/meta/advanced/metasetup.visual.php:607
+#: ../../godmode/setup/setup_visuals.php:284
+msgid "Custom logo collapsed (menu)"
+msgstr "Icono menú reducido"
+
+#: ../../enterprise/meta/advanced/metasetup.visual.php:638
+#: ../../godmode/setup/setup_visuals.php:289
+msgid "Custom logo (header white background)"
+msgstr "Logo personalizado (fondo blanco de cabecera)"
+
+#: ../../enterprise/meta/advanced/metasetup.visual.php:667
+#: ../../godmode/setup/setup_visuals.php:328
+msgid "Custom logo (login)"
+msgstr "Logo personalizado (inicio de sesión)"
+
+#: ../../enterprise/meta/advanced/metasetup.visual.php:696
+#: ../../godmode/setup/setup_visuals.php:367
+msgid "Custom Splash (login)"
+msgstr "Splash personalizado (inicio de sesión)"
+
+#: ../../enterprise/meta/advanced/metasetup.visual.php:746
+#: ../../godmode/setup/setup_visuals.php:471
+msgid "Title (header)"
+msgstr "Título (encabezado)"
+
+#: ../../enterprise/meta/advanced/metasetup.visual.php:750
+#: ../../godmode/setup/setup_visuals.php:476
+msgid "Subtitle (header)"
+msgstr "Subtítulo (encabezado)"
+
+#: ../../enterprise/meta/advanced/metasetup.visual.php:754
+#: ../../godmode/setup/setup_visuals.php:482
+msgid "Title 1 (login)"
+msgstr "Título 1 (inicio de sesión)"
+
+#: ../../enterprise/meta/advanced/metasetup.visual.php:765
+#: ../../godmode/setup/setup_visuals.php:489
+msgid "Title 2 (login)"
+msgstr "Título 2 (inicio de sesión)"
+
+#: ../../enterprise/meta/advanced/metasetup.visual.php:815
+msgid "Graphs font family"
+msgstr "Familia tipográfica de las gráficas"
+
+#: ../../enterprise/meta/advanced/metasetup.visual.php:836
+#: ../../godmode/setup/setup_visuals.php:1020
+msgid "Legacy Visual Console View"
+msgstr "Vista de la consola visual heredada"
+
+#: ../../enterprise/meta/advanced/metasetup.visual.php:838
+msgid "To use the old view when using the Visual Console visor"
+msgstr "Para usar la vista antigua al utilizar el visor de la Consola visual"
+
+#: ../../enterprise/meta/advanced/metasetup.visual.php:857
+#: ../../godmode/setup/setup_visuals.php:1038
+msgid "Default cache expiration"
+msgstr "Caducidad del caché por defecto"
+
+#: ../../enterprise/meta/advanced/metasetup.visual.php:877
+msgid "This interval will affect to Visual Console pages"
+msgstr "Este intervalo afectará todas las páginas de la consola visual."
+
+#: ../../enterprise/meta/advanced/metasetup.visual.php:903
+#: ../../godmode/setup/setup_visuals.php:1451
+msgid "Data multiplier to use in graphs/data"
+msgstr "Multiplicador de datos para usar en gráficas/datos"
+
+#: ../../enterprise/meta/advanced/metasetup.visual.php:907
+#: ../../godmode/setup/setup_visuals.php:1453
+msgid "Use 1024 when module unit are bytes"
+msgstr "Utilizar 1024 cuando la unidad del módulo sea bytes"
+
+#: ../../enterprise/meta/advanced/metasetup.visual.php:908
+#: ../../godmode/setup/setup_visuals.php:1454
+msgid "Use always 1000"
+msgstr "Utilizar siempre 1000"
+
+#: ../../enterprise/meta/advanced/metasetup.visual.php:909
+#: ../../godmode/setup/setup_visuals.php:1455
+msgid "Use always 1024"
+msgstr "Utilizar siempre 1024"
+
+#: ../../enterprise/meta/advanced/metasetup.visual.php:933
+msgid "Reports configuration"
+msgstr "Configuración de informes"
+
+#: ../../enterprise/meta/advanced/metasetup.visual.php:939
+#: ../../godmode/setup/setup_visuals.php:1097
+msgid "Show report info with description"
+msgstr "Mostrar la información del informe con la descripción"
+
+#: ../../enterprise/meta/advanced/metasetup.visual.php:940
+msgid ""
+"Custom report description info. It will be applied to all reports and "
+"templates by default."
+msgstr ""
+"Descripción del informe personalizado. Será aplicado a todas las plantillas e "
+"informes por defecto."
+
+#: ../../enterprise/meta/advanced/metasetup.visual.php:951
+#: ../../godmode/setup/setup_visuals.php:1106
+msgid "Custom report front page"
+msgstr "Portada de informe personalizado"
+
+#: ../../enterprise/meta/advanced/metasetup.visual.php:952
+msgid ""
+"Custom report front page. It will be applied to all reports and templates by "
+"default."
+msgstr ""
+"Portada de informe personalizado. Se aplicará por defecto a todos los informes "
+"y plantillas."
+
+#: ../../enterprise/meta/advanced/metasetup.visual.php:971
+msgid ""
+"This is the height in pixels of the module graph or custom graph in the "
+"reports (only: HTML)"
+msgstr ""
+"Esta es la altura en pixeles de la gráfica de módulos o la gráfica "
+"personalizada en los informes (solo HTML)"
+
+#: ../../enterprise/meta/advanced/metasetup.visual.php:1038
+msgid ""
+"A long interval description is for example 10 hours, 20 minutes 33 seconds”, a "
+"short one is 10h 20m 33s"
+msgstr ""
+"Una descripción larga del intervalo dura por ejemplo 10 horas, 20 minutos 33 "
+"segundos”, una corta es 10h 20m 33s"
+
+#: ../../enterprise/meta/advanced/metasetup.visual.php:1054
+#: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:128
+#: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:131
+msgid ""
+"The path of custom logos is 'images/custom_logo' in the console installation. "
+"You can upload more files (ONLY JPEG AND PNG) with the upload tool."
+msgstr ""
+"La ruta de los logos personalizados es \"images/custom_logo\" en la "
+"instalación de la consola. Puede añadir más archivos (SOLO JPEG Y PNG) con la "
+"herramienta de añadir."
+
+#: ../../enterprise/meta/advanced/metasetup.visual.php:1318
+#: ../../godmode/setup/setup_visuals.php:1752
+msgid "Logo preview"
+msgstr "Logo de vista previa"
+
+#: ../../enterprise/meta/advanced/metasetup.visual.php:1340
+#: ../../godmode/setup/setup_visuals.php:1782
+msgid "Splash Preview"
+msgstr "Vista previa de Splash"
+
+#: ../../enterprise/meta/advanced/metasetup.visual.php:1345
+#: ../../godmode/setup/setup_visuals.php:1806
+msgid "Background preview"
+msgstr "Vista previa del fondo"
+
+#: ../../enterprise/meta/advanced/links.php:47 ../../godmode/setup/links.php:42
+msgid "There was a problem creating link"
+msgstr "Error al crear el enlace"
+
+#: ../../enterprise/meta/advanced/links.php:60
+msgid "The link was not updated, the data is identical"
+msgstr "No se ha actualizado el link, los datos son idénticos"
+
+#: ../../enterprise/meta/advanced/links.php:68 ../../godmode/setup/links.php:61
+msgid "There was a problem modifying link"
+msgstr "Error al modificar el enlace"
+
+#: ../../enterprise/meta/advanced/links.php:82 ../../godmode/setup/links.php:74
+msgid "There was a problem deleting link"
+msgstr "Error al borrar el enlace"
+
+#: ../../enterprise/meta/advanced/links.php:100
+msgid "Link Name error"
+msgstr "Error en el nombre de link"
+
+#: ../../enterprise/meta/advanced/links.php:127
+#: ../../enterprise/meta/advanced/links.php:156 ../../godmode/setup/links.php:116
+#: ../../godmode/setup/links.php:145
+msgid "Link name"
+msgstr "Nombre del enlace"
+
+#: ../../enterprise/meta/advanced/links.php:130
+#: ../../enterprise/godmode/policies/policy_linking.php:204
+#: ../../godmode/setup/links.php:119
+msgid "Link"
+msgstr "Enlace"
+
+#: ../../enterprise/meta/advanced/links.php:152 ../../godmode/setup/links.php:141
+msgid "There isn't links"
+msgstr "No hay enlaces"
+
+#: ../../enterprise/meta/index.php:848
+#, php-format
+msgid ""
+"System is not centralised, please go to %s to perform a database merge process."
+msgstr ""
+"El sistema no está centralizado, vaya a %s para realizar un proceso de fusión "
+"de bases de datos."
+
+#: ../../enterprise/meta/index.php:916
+#, php-format
+msgid "There are nodes with different MR than this (%d):"
+msgstr "Hay nodos con RM diferente a esta (%d):"
+
+#: ../../enterprise/meta/agentsearch.php:121
+msgid "Search results for"
+msgstr "Buscar resultados para"
+
+#: ../../enterprise/meta/agentsearch.php:301
+msgid "There are no agents included in this group"
+msgstr "No hay ningún agente en este grupo"
+
+#: ../../enterprise/meta/agentsearch.php:450
+msgid "There are no policies included in this group"
+msgstr "No hay políticas incluidas en este grupo"
+
+#: ../../enterprise/extensions/disabled/check_acls.php:16
+msgid "ACL users for this agent"
+msgstr "Usuarios ACL para este agente"
+
+#: ../../enterprise/extensions/disabled/check_acls.php:49
+#: ../../enterprise/extensions/disabled/check_acls.php:136
+msgid "Agents reading"
+msgstr "Lectura de agentes"
+
+#: ../../enterprise/extensions/disabled/check_acls.php:51
+#: ../../enterprise/extensions/disabled/check_acls.php:138
+msgid "Agents disable"
+msgstr "Deshabilitar agentes"
+
+#: ../../enterprise/extensions/disabled/check_acls.php:52
+#: ../../enterprise/extensions/disabled/check_acls.php:139
+msgid "Alerts editing"
+msgstr "Edición de alertas"
+
+#: ../../enterprise/extensions/disabled/check_acls.php:53
+#: ../../enterprise/extensions/disabled/check_acls.php:140
+#: ../../godmode/menu.php:125
+msgid "Users management"
+msgstr "Gestión de usuarios"
+
+#: ../../enterprise/extensions/disabled/check_acls.php:54
+#: ../../enterprise/extensions/disabled/check_acls.php:141
+msgid "Database management"
+msgstr "Gestión de la BD"
+
+#: ../../enterprise/extensions/disabled/check_acls.php:55
+#: ../../enterprise/extensions/disabled/check_acls.php:142
+msgid "Alerts management"
+msgstr "Gestión de alertas"
+
+#: ../../enterprise/extensions/disabled/check_acls.php:56
+#: ../../enterprise/extensions/disabled/check_acls.php:143
+msgid "Reports reading"
+msgstr "Lectura de informes"
+
+#: ../../enterprise/extensions/disabled/check_acls.php:57
+#: ../../enterprise/extensions/disabled/check_acls.php:144
+msgid "Reports writing"
+msgstr "Escritura de informes"
+
+#: ../../enterprise/extensions/disabled/check_acls.php:58
+#: ../../enterprise/extensions/disabled/check_acls.php:145
+msgid "Reports management"
+msgstr "Gestión de informes"
+
+#: ../../enterprise/extensions/disabled/check_acls.php:59
+#: ../../enterprise/extensions/disabled/check_acls.php:146
+msgid "Events reading"
+msgstr "Lectura de eventos"
+
+#: ../../enterprise/extensions/disabled/check_acls.php:60
+#: ../../enterprise/extensions/disabled/check_acls.php:147
+msgid "Events writing"
+msgstr "Escritura de eventos"
+
+#: ../../enterprise/extensions/disabled/check_acls.php:61
+#: ../../enterprise/extensions/disabled/check_acls.php:148
+msgid "Events management"
+msgstr "Gestión de eventos"
+
+#: ../../enterprise/extensions/disabled/check_acls.php:62
+#: ../../enterprise/extensions/disabled/check_acls.php:149
+msgid "Systems management"
+msgstr "Gestión de sistemas"
+
+#: ../../enterprise/extensions/disabled/check_acls.php:112
+msgid "There are no defined users"
+msgstr "No hay usuarios definidos"
+
+#: ../../enterprise/extensions/disabled/check_acls.php:134
+#: ../../godmode/menu.php:117
+msgid "Module tags"
+msgstr "Etiquetas de módulos"
+
+#: ../../enterprise/extensions/disabled/check_acls.php:197
+msgid "ACL module tags for the modules in this agent"
+msgstr "Etiquetas del módulo de ACL para los módulos de este agente"
+
+#: ../../enterprise/extensions/disabled/check_acls.php:208
+msgid "Only admin users can see this section."
+msgstr "Solo los usuarios administradores pueden ver esta sección."
+
+#: ../../enterprise/extensions/disabled/check_acls.php:215
+msgid "Check ACL"
+msgstr "Comprobar ACL"
+
+#: ../../enterprise/extensions/csv_import_group/main.php:23
+#: ../../enterprise/extensions/csv_import_group.php:69
+msgid "CSV import group"
+msgstr "Importar grupos de CSV"
+
+#: ../../enterprise/extensions/csv_import_group/main.php:48
+#, php-format
+msgid "Created group %s"
+msgstr "Grupo creado %s"
+
+#: ../../enterprise/extensions/csv_import_group/main.php:49
+#, php-format
+msgid "Could not create group %s"
+msgstr "No se pudo crear el grupo %s"
+
+#: ../../enterprise/extensions/csv_import_group/main.php:56
+msgid "File processed"
+msgstr "Archivo procesado"
+
+#: ../../enterprise/extensions/csv_import_group/main.php:59
+msgid "Please syncronize groups to nodes"
+msgstr "Sincronice los grupos con los nodos"
+
+#: ../../enterprise/extensions/resource_registration/functions.php:61
+#, php-format
+msgid "Error create '%s' policy, the name exist and there aren't free name."
+msgstr ""
+"Error al crear la política '%s', el nombre ya existe. Ese nombre no está "
+"disponible."
+
+#: ../../enterprise/extensions/resource_registration/functions.php:69
+#, php-format
+msgid "Warning create '%s' policy, the name exist, the policy have a name %s."
+msgstr ""
+"Política de advertencia '%s' creada, el nombre existe, la política tiene el "
+"nombre %s."
+
+#: ../../enterprise/extensions/resource_registration/functions.php:78
+msgid "Error the policy haven't name."
+msgstr "Error: la política no tiene nombre."
+
+#: ../../enterprise/extensions/resource_registration/functions.php:99
+#, php-format
+msgid "Success create '%s' policy."
+msgstr "Política '%s' creada correctamente"
+
+#: ../../enterprise/extensions/resource_registration/functions.php:100
+#, php-format
+msgid "Error create '%s' policy."
+msgstr "Error al crear la política '%s'"
+
+#: ../../enterprise/extensions/resource_registration/functions.php:142
+#, php-format
+msgid "Error add '%s' agent. The agent does not exist"
+msgstr "Error al añadir el agente '%s'. El agente no existe"
+
+#: ../../enterprise/extensions/resource_registration/functions.php:147
+#, php-format
+msgid "Success add '%s' agent."
+msgstr "Agente '%s' añadido correctamente"
+
+#: ../../enterprise/extensions/resource_registration/functions.php:148
+#, php-format
+msgid "Error add '%s' agent."
+msgstr "Error al añadir el agente '%s'"
+
+#: ../../enterprise/extensions/resource_registration/functions.php:167
+msgid "The collection does not exist"
+msgstr "La colección no existe"
+
+#: ../../enterprise/extensions/resource_registration/functions.php:172
+#, php-format
+msgid "Success add '%s' collection."
+msgstr "Colección '%s' añadida correctamente"
+
+#: ../../enterprise/extensions/resource_registration/functions.php:173
+#, php-format
+msgid "Error add '%s' collection."
+msgstr "Error al añadir colección '%s'"
+
+#: ../../enterprise/extensions/resource_registration/functions.php:191
+#, php-format
+msgid "Success add '%s' agent plugin."
+msgstr "Plugin de agente '%s' añadido correctamente"
+
+#: ../../enterprise/extensions/resource_registration/functions.php:192
+#, php-format
+msgid "Error add '%s' agent plugin."
+msgstr "Error al añadir el plugin de agente '%s'"
+
+#: ../../enterprise/extensions/resource_registration/functions.php:205
+msgid "Error add the module, haven't type."
+msgstr "Error al añadir el módulo. No tiene tipo."
+
+#: ../../enterprise/extensions/resource_registration/functions.php:411
+#: ../../enterprise/extensions/resource_registration/functions.php:480
+#: ../../enterprise/extensions/resource_registration/functions.php:581
+#: ../../enterprise/extensions/resource_registration/functions.php:637
+msgid "Error add the module, error in tag component."
+msgstr "Error al añadir el módulo, error en el componente etiqueta."
+
+#: ../../enterprise/extensions/resource_registration/functions.php:693
+msgid "Error add the module plugin importation, plugin is not registered"
+msgstr "Error al importar el plugin del módulo; el plugin no está registrado."
+
+#: ../../enterprise/extensions/resource_registration/functions.php:703
+#, php-format
+msgid "Success add '%s' module."
+msgstr "Módulo '%s' añadido correctamente"
+
+#: ../../enterprise/extensions/resource_registration/functions.php:704
+#, php-format
+msgid "Error add '%s' module."
+msgstr "Error al añadir el módulo '%s'"
+
+#: ../../enterprise/extensions/resource_registration/functions.php:718
+#, php-format
+msgid "Error add the alert, the template '%s' don't exist."
+msgstr "Error al añadir la alerta, la plantilla '%s' no existe."
+
+#: ../../enterprise/extensions/resource_registration/functions.php:731
+#: ../../enterprise/extensions/resource_registration/functions.php:749
+#, php-format
+msgid "Error add the alert, the module '%s' don't exist."
+msgstr "Error al añadir la alerta, el módulo  '%s' no existe."
+
+#: ../../enterprise/extensions/resource_registration/functions.php:771
+#, php-format
+msgid "Success add '%s' alert."
+msgstr "Alerta  '%s' añadida correctamente"
+
+#: ../../enterprise/extensions/resource_registration/functions.php:772
+#, php-format
+msgid "Error add '%s' alert."
+msgstr "Error al añadir alerta  '%s'"
+
+#: ../../enterprise/extensions/resource_registration/functions.php:798
+#, php-format
+msgid "Error add the alert, the action '%s' don't exist."
+msgstr "Error al añadir alerta; la acción '%s' no existe."
+
+#: ../../enterprise/extensions/resource_registration/functions.php:817
+#, php-format
+msgid "Success add '%s' action."
+msgstr "Acción '%s' añadida correctamente"
+
+#: ../../enterprise/extensions/resource_registration/functions.php:818
+#: ../../extensions/resource_registration.php:436
+#: ../../extensions/resource_registration.php:458
+#: ../../extensions/resource_registration.php:469
+#, php-format
+msgid "Error add '%s' action."
+msgstr "Error al añadir la acción '%s'"
+
+#: ../../enterprise/extensions/resource_registration/functions.php:854
+msgid "The inventory module does not exist"
+msgstr "El módulo de inventario no existe"
+
+#: ../../enterprise/extensions/resource_registration/functions.php:859
+#, php-format
+msgid "Success add '%s' inventory module."
+msgstr "Éxito agregar el módulo de inventario '%s'."
+
+#: ../../enterprise/extensions/resource_registration/functions.php:860
+#, php-format
+msgid "Error add '%s' inventory module."
+msgstr "Error al agregar el módulo de inventario '%s'."
+
+#: ../../enterprise/extensions/translate_string.php:168
+#: ../../enterprise/extensions/translate_string.php:380
+msgid "Translate string"
+msgstr "Traducir cadena"
+
+#: ../../enterprise/extensions/vmware.php:46
+msgid "Failed to initialize VMware extension."
+msgstr "Error al inicializar la extensión VMware"
+
+#: ../../enterprise/extensions/vmware.php:89
+msgid "VMware View"
+msgstr "Vista VMware"
+
+#: ../../enterprise/extensions/csv_import_group.php:50
+#, php-format
+msgid ""
+"This node is configured with centralized mode. All group information is read "
+"only. Go to %s to import the CSV."
+msgstr ""
+"Este nodo se configura con el modo centralizado. Toda la información del grupo "
+"es de solo lectura. Vaya a %s para importar el CSV."
+
+#: ../../enterprise/extensions/csv_import_group.php:83
+msgid "CSV group import"
+msgstr "Importación de grupo CSV"
+
+#: ../../enterprise/extensions/resource_exportation/functions.php:20
+msgid "Export agents"
+msgstr "Exportar agentes"
+
+#: ../../enterprise/extensions/vmware/vmware_view.php:61
+msgid "Top 5 VMs CPU Usage"
+msgstr "Top 5 VMs del uso de CPU"
+
+#: ../../enterprise/extensions/vmware/vmware_view.php:70
+msgid "Top 5 VMs Memory Usage"
+msgstr "Top 5 VMs del uso de memoria"
+
+#: ../../enterprise/extensions/vmware/vmware_view.php:82
+msgid "Top 5 VMs Provisioning Usage"
+msgstr "Top 5 VMs en uso de aprovisionamiento"
+
+#: ../../enterprise/extensions/vmware/vmware_view.php:91
+msgid "Top 5 VMs Network Usage"
+msgstr "Top 5 VMs del uso de la red"
+
+#: ../../enterprise/extensions/vmware/vmware_view.php:684
+msgid "Host ESX"
+msgstr "Host ESX"
+
+#: ../../enterprise/extensions/vmware/vmware_view.php:1036
+msgid "CPU Usage"
+msgstr "Uso de CPU"
+
+#: ../../enterprise/extensions/vmware/vmware_view.php:1046
+msgid "Memory Usage"
+msgstr "Uso de memoria"
+
+#: ../../enterprise/extensions/vmware/vmware_view.php:1056
+msgid "Disk I/O Rate"
+msgstr "Ratio lectura/escritura de disco"
+
+#: ../../enterprise/extensions/vmware/vmware_view.php:1066
+msgid "Network Usage"
+msgstr "Uso de red"
+
+#: ../../enterprise/extensions/vmware/vmware_view.php:1169
+msgid "Settings updated "
+msgstr "Ajustes actualizados "
+
+#: ../../enterprise/extensions/vmware/vmware_view.php:1171
+msgid "No changes in settings "
+msgstr "No hay cambios en los ajustes "
+
+#: ../../enterprise/extensions/vmware/vmware_view.php:1179
+msgid "CPU usage graphs"
+msgstr "Gráficas de uso de CPU"
+
+#: ../../enterprise/extensions/vmware/vmware_view.php:1180
+#: ../../enterprise/extensions/vmware/vmware_view.php:1186
+#: ../../enterprise/extensions/vmware/vmware_view.php:1192
+#: ../../enterprise/extensions/vmware/vmware_view.php:1198
+msgid "Force minimum value"
+msgstr "Forzar valor mínimo"
+
+#: ../../enterprise/extensions/vmware/vmware_view.php:1182
+#: ../../enterprise/extensions/vmware/vmware_view.php:1188
+#: ../../enterprise/extensions/vmware/vmware_view.php:1194
+#: ../../enterprise/extensions/vmware/vmware_view.php:1200
+msgid "Force maximum value"
+msgstr "Forzar valor máximo"
+
+#: ../../enterprise/extensions/vmware/vmware_view.php:1185
+msgid "Memory usage graphs"
+msgstr "Gráficos de uso de memoria"
+
+#: ../../enterprise/extensions/vmware/vmware_view.php:1191
+msgid "Provisioning Usage graphs"
+msgstr "Gráficos de uso de aprovisionamiento"
+
+#: ../../enterprise/extensions/vmware/vmware_view.php:1197
+msgid "Network usage graphs"
+msgstr "Gráficos de uso de red"
+
+#: ../../enterprise/extensions/vmware/vmware_view.php:1208
+msgid "Map items"
+msgstr "Elementos del mapa"
+
+#: ../../enterprise/extensions/vmware/vmware_view.php:1209
+msgid "Show datastores"
+msgstr "Mostrar datastores"
+
+#: ../../enterprise/extensions/vmware/vmware_view.php:1216
+msgid "Show ESXis"
+msgstr "Mostrar ESXis"
+
+#: ../../enterprise/extensions/vmware/vmware_view.php:1223
+msgid "Show VMs"
+msgstr "Mostrar VMs"
+
+#: ../../enterprise/extensions/vmware/vmware_view.php:1230
+msgid "Font size (px)"
+msgstr "Tamaño de fuente (px)"
+
+#: ../../enterprise/extensions/vmware/vmware_view.php:1232
+msgid "Node radius (px)"
+msgstr "Radio del nodo (px)"
+
+#: ../../enterprise/extensions/vmware/vmware_view.php:1234
+msgid "Node separation (rate)"
+msgstr "Separación de nodos (tasa)"
+
+#: ../../enterprise/extensions/vmware/vmware_view.php:1239
+msgid ""
+"Looking for VMware configuration? You can configure several tasks using "
+"Discovery Applications."
+msgstr ""
+"¿Está buscando la configuración VMware? Puede configurar varias tareas usando "
+"las aplicaciones de Discovery."
+
+#: ../../enterprise/extensions/vmware/vmware_view.php:1247
+msgid "Graph settings"
+msgstr "Ajustes de gráfico"
+
+#: ../../enterprise/extensions/vmware/vmware_view.php:1252
+msgid "Map settings"
+msgstr "Ajustes del mapa"
+
+#: ../../enterprise/extensions/vmware/vmware_view.php:1296
+#: ../../enterprise/extensions/vmware/vmware_view.php:1368
+msgid "Welcome"
+msgstr "Bienvenid@"
+
+#: ../../enterprise/extensions/vmware/vmware_view.php:1327
+msgid "ESX Detail"
+msgstr "Detalle de ESX"
+
+#: ../../enterprise/extensions/vmware/vmware_view.php:1358
+msgid "ESX details"
+msgstr "Detalles de ESX"
+
+#: ../../enterprise/extensions/vmware/vmware_view.php:1363
+msgid "VMware view options"
+msgstr "Opciones de la vista de VMware"
+
+#: ../../enterprise/extensions/vmware/vmware_view.php:1399
+msgid "VMWare"
+msgstr "VMware"
+
+#: ../../enterprise/extensions/vmware/vmware_view.php:1504
+msgid ""
+"Some ESX Hosts are not up to date, please check VMware plugin configuration."
+msgstr ""
+"Algunos hosts ESX no están actualizados. Compruebe la configuración del plugin "
+"VMware."
+
+#: ../../enterprise/extensions/vmware/vmware_view.php:1506
+msgid "VMware plugin is working."
+msgstr "El plugin de VMware está en funcionamiento."
+
+#: ../../enterprise/extensions/vmware/vmware_view.php:1515
+msgid "View VMware map"
+msgstr "Vista del mapa VMware"
+
+#: ../../enterprise/extensions/vmware/vmware_view.php:1516
+msgid "View VMware dashboard"
+msgstr "Vista del panel VMware"
+
+#: ../../enterprise/extensions/vmware/vmware_view.php:1517
+msgid "View ESX Host statistics from"
+msgstr "Ver estadísticas del host ESX desde"
+
+#: ../../enterprise/extensions/vmware/vmware_view.php:1524
+msgid "There are no VMware information detected in this environment."
+msgstr "No se ha detectado información VMware en este entorno."
+
+#: ../../enterprise/extensions/vmware/vmware_view.php:1525
+msgid "You can configure several tasks using Discovery Applications at "
+msgstr "Puede configurar diversas tareas usando las aplicaciones Discovery en "
+
+#: ../../enterprise/extensions/vmware/vmware_view.php:1734
+#, php-format
+msgid ""
+"This map is a quick representation of all your VMware entities detected. You "
+"can create a custom VMware map by defining a network map based on your VMware "
+"discovery task %s"
+msgstr ""
+"Este mapa es una representación rápida de todas las entidades VMWare "
+"detectadas. Puede crear un mapa VMWare personalizado definiendo un mapa de red "
+"basado en sus tareas de descubrimiento VMWare %s"
+
+#: ../../enterprise/extensions/vmware/vmware_view.php:1744
+msgid "Show Datastores"
+msgstr "Mostrar datastores"
+
+#: ../../enterprise/extensions/vmware/vmware_view.php:1747
+msgid "Show ESX"
+msgstr "Mostrar ESX"
+
+#: ../../enterprise/extensions/vmware/vmware_view.php:1750
+msgid "Show VM"
+msgstr "Mostrar VM"
+
+#: ../../enterprise/extensions/vmware/vmware_view.php:1754
+#: ../../godmode/reporting/visual_console_builder.wizard.php:215
+msgid "Font"
+msgstr "Fuente"
+
+#: ../../enterprise/extensions/vmware/vmware_view.php:1772
+msgid "View options"
+msgstr "Ver opciones"
+
+#: ../../enterprise/extensions/vmware/vmware_manager.php:227
+msgid "Power Status: "
+msgstr "Estado: "
+
+#: ../../enterprise/extensions/vmware/vmware_manager.php:273
+msgid "Change Status"
+msgstr "Cambiar estado:"
+
+#: ../../enterprise/load_html_extra.php:202
+msgid "Activate license"
+msgstr "Activar la licencia"
+
+#: ../../enterprise/load_html_extra.php:203
+msgid "Your <b>request key</b> is:"
+msgstr "Tu <b>clave</b> es:"
+
+#: ../../enterprise/load_html_extra.php:206
+#, php-format
+msgid ""
+"You can activate it manually <a href=\"%s\" target=\"_blank\">here</a> or "
+"automatically filling the form below:"
+msgstr ""
+"Lo puedes activar manualmente <a href=\"%s\" target= \"_blank\">aquí</a> o "
+"automáticamente rellenando el siguiente formulario:"
+
+#: ../../enterprise/load_html_extra.php:213
+msgid "Auth Key:"
+msgstr "Clave de autentificación:"
+
+#: ../../enterprise/load_html_extra.php:221
+#: ../../enterprise/load_html_extra.php:240
+msgid "Online validation"
+msgstr "Validación en línea"
+
+#: ../../enterprise/load_html_extra.php:233
+msgid "ERROR:"
+msgstr "ERROR:"
+
+#: ../../enterprise/load_html_extra.php:233
+msgid "When connecting to licence server."
+msgstr "Al conectar con el servidor de licencias."
+
+#: ../../enterprise/load_enterprise.php:559 ../../godmode/setup/license.php:83
+msgid "License updated"
+msgstr "Licencia actualizada"
+
+#: ../../enterprise/load_enterprise.php:560
+msgid "Failed while updating license."
+msgstr "Error al actualizar la licencia."
+
+#: ../../enterprise/load_enterprise.php:585
+#: ../../enterprise/load_enterprise.php:650
+msgid "Invalid licence."
+msgstr "Licencia no válida"
+
+#: ../../enterprise/load_enterprise.php:585
+msgid "Please contact your system administrator."
+msgstr "Por favor, contacta con el administrador del sistema."
+
+#: ../../enterprise/load_enterprise.php:650
+#, php-format
+msgid "Please contact %s for a valid licence."
+msgstr "Póngase en contacto con %s para obtener una licencia válida."
+
+#: ../../enterprise/load_enterprise.php:651
+#, php-format
+msgid "Or disable %s enterprise"
+msgstr "O desabilite %s enterprise"
+
+#: ../../enterprise/load_enterprise.php:753
+#: ../../enterprise/load_enterprise.php:1048
+msgid "Request new licence"
+msgstr "Solicitar una nueva licencia"
+
+#: ../../enterprise/load_enterprise.php:832
+msgid ""
+"<strong style=\"font-size: 11pt\">Metaconsole unreached</strong> <br><br> This "
+"node has a metaconsole license and cannot contact with the metaconsole."
+msgstr ""
+"<strong style=\"font-size: 11pt\">No se pudo conectar con la Metaconsola</"
+"strong> <br><br> Este nodo tiene una licencia de Metaconsola pero no pudo "
+"establecer contacto."
+
+#: ../../enterprise/load_enterprise.php:849
+#: ../../enterprise/load_enterprise.php:855
+#: ../../enterprise/load_enterprise.php:871
+#, php-format
+msgid ""
+"<strong style=\"font-size: 11pt\">License exceeded</strong> <br><br> This "
+"license allows %d agents and you have %d agents configured."
+msgstr ""
+"<strong style=\"font-size: 11pt\">Ha excedido los términos de la licencia</"
+"strong> <br><br> Esta licencia permite %d agentes y tiene %d agentes "
+"configurados."
+
+#: ../../enterprise/load_enterprise.php:850
+#: ../../enterprise/load_enterprise.php:857
+#: ../../enterprise/load_enterprise.php:866
+#: ../../enterprise/load_enterprise.php:873
+#: ../../enterprise/load_enterprise.php:885
+#, php-format
+msgid "Please contact %s to extend the license."
+msgstr "Póngase en contacto con %s para ampliar la licencia."
+
+#: ../../enterprise/load_enterprise.php:856
+#: ../../enterprise/load_enterprise.php:858
+#: ../../enterprise/load_enterprise.php:872
+#: ../../enterprise/load_enterprise.php:874
+#: ../../enterprise/load_enterprise.php:901
+#: ../../enterprise/load_enterprise.php:907
+msgid ""
+"This console will work in limited mode. Enterprise features will not function."
+msgstr ""
+"Esta consola funcionará en modo limitado. Las funcionalidades Enterprise no "
+"funcionarán."
+
+#: ../../enterprise/load_enterprise.php:865
+#, php-format
+msgid ""
+"<strong cstyle=\"font-size: 11pt\">License exceeded</strong> <br><br> This "
+"license allows %d agents and you have %d agents configured."
+msgstr ""
+"<strong cstyle=\"font-size: 11pt\">Licencia superada</strong> <br><br> Esta "
+"licencia permite %d agentes y tiene %d agentes configurados."
+
+#: ../../enterprise/load_enterprise.php:884
+#, php-format
+msgid ""
+"<strong style=\"font-size: 11pt\">License exceeded</strong> <br><br> This "
+"license allows %d modules and you have %d modules configured."
+msgstr ""
+"<strong style=\"font-size: 11pt\">Ha excedido los términos de la licencia</"
+"strong> <br><br> Esta licencia permite %d módulos y tiene %d módulos "
+"configurados."
+
+#: ../../enterprise/load_enterprise.php:894
+#: ../../enterprise/load_enterprise.php:900
+msgid ""
+"<strong style=\"font-size: 11pt\">This license has expired.</strong> "
+"<br><br>You can not get updates until you renew the license."
+msgstr ""
+"<strong style=\"font-size: 11pt\">Licencia caducada.</strong> <br><br>No "
+"podrás actualizar Pandora FMS hasta que no renueves la licencia."
+
+#: ../../enterprise/load_enterprise.php:895
+#: ../../enterprise/load_enterprise.php:902
+#, php-format
+msgid "Please contact %s to renew the license."
+msgstr "Póngase en contacto con %s para renovar la licencia."
+
+#: ../../enterprise/load_enterprise.php:905
+#: ../../enterprise/load_enterprise.php:1044
+msgid "Renew"
+msgstr "Renovar"
+
+#: ../../enterprise/load_enterprise.php:914
+#, php-format
+msgid ""
+"<strong style=\"font-size: 11pt\">This license is outside of support.</strong> "
+"<br><br>This %s installation will continue working normally and without "
+"limitations, but without support or updates."
+msgstr ""
+"<strong style=\"font-size: 11pt\">Esta licencia no incluye soporte.</strong> "
+"<br><br>La instalación de %s continuará funcionando con normalidad y sin "
+"límites, pero sin soporte ni actualizaciones."
+
+#: ../../enterprise/godmode/setup/setup.php:48
+msgid "Yes and change status"
+msgstr "Sí y cambiar estado"
+
+#: ../../enterprise/godmode/setup/setup.php:56
+msgid "Yes without changing status"
+msgstr "Sí, sin cambiar estado"
+
+#: ../../enterprise/godmode/setup/setup.php:124
+msgid "Seconds"
+msgstr "Segundos"
+
+#: ../../enterprise/godmode/setup/setup.php:144
+msgid "Last replication at"
+msgstr "Última replicación a"
+
+#: ../../enterprise/godmode/setup/setup.php:146
+msgid "No replication yet"
+msgstr "Sin replicación todavía"
+
+#: ../../enterprise/godmode/setup/setup.php:160
+msgid "Only validated events"
+msgstr "Solo eventos validados"
+
+#: ../../enterprise/godmode/setup/setup.php:175
+msgid "Metaconsole DB engine"
+msgstr "Motor BD de la Metaconsola"
+
+#: ../../enterprise/godmode/setup/setup.php:193
+msgid "Metaconsole DB host"
+msgstr "Host BD Metaconsola"
+
+#: ../../enterprise/godmode/setup/setup.php:207
+msgid "Metaconsole DB name"
+msgstr "Nombre BD Metaconsola"
+
+#: ../../enterprise/godmode/setup/setup.php:221
+msgid "Metaconsole DB user"
+msgstr "Usuario BD Metaconsola"
+
+#: ../../enterprise/godmode/setup/setup.php:235
+msgid "Metaconsole DB password"
+msgstr "Contraseña BD Metaconsola"
+
+#: ../../enterprise/godmode/setup/setup.php:275
+msgid "Events Configuration Information"
+msgstr "Información de configuración de evntos"
+
+#: ../../enterprise/godmode/setup/setup.php:277
+msgid ""
+" If you are replicating events, events validated or deleted on the metaconsole "
+"WILL NOT be deleted or validated here. This option is just to allow local "
+"pandora users to see events, but not to operate with them. Operation, when "
+"event replication is enabled, should be done only in metaconsole"
+msgstr ""
+" Si está replicando eventos, los eventos validados o eliminados en la "
+"Metaconsola NO se eliminarán o validarán aquí. Esta opción solo permite a los "
+"usuarios locales de Pandora FMS ver los eventos, pero gestionarlos.\r\n"
+"Su gestión solo puede llevarse a cabo en la Metaconsola cuando la replicación "
+"de eventos está activa."
+
+#: ../../enterprise/godmode/setup/setup.php:345
+msgid "Out of black list"
+msgstr "Fuera de la lista negra"
+
+#: ../../enterprise/godmode/setup/setup.php:347
+msgid "In black list"
+msgstr "En la lista negra"
+
+#: ../../enterprise/godmode/setup/setup.php:352
+msgid "Push selected modules into blacklist"
+msgstr "Mover los módulos seleccionados a la lista negra"
+
+#: ../../enterprise/godmode/setup/setup.php:354
+msgid "Pop selected modules out of blacklist"
+msgstr "Sacar los módulos seleccionados de la lista negra"
+
+#: ../../enterprise/godmode/setup/setup.php:389
+msgid "Critical threshold for occupied addresses"
+msgstr "Umbral crítico para las direcciones ocupadas"
+
+#: ../../enterprise/godmode/setup/setup.php:401
+msgid "Warning threshold for occupied addresses"
+msgstr "Umbral de advertencia para las direcciones ocupadas"
+
+#: ../../enterprise/godmode/setup/setup.php:429
+msgid "Enterprise options"
+msgstr "Opciones Enterprise"
+
+#: ../../enterprise/godmode/setup/setup.php:589
+#, php-format
+msgid ""
+"Password related configuration only applies when local %s authentication is "
+"selected."
+msgstr ""
+"La configuración relacionada con la contraseña solo aplica cuando la "
+"autenticación local %s está seleccionada."
+
+#: ../../enterprise/godmode/setup/setup.php:598
+msgid "Enterprise password policy"
+msgstr "Política de contraseña Enterprise"
+
+#: ../../enterprise/godmode/setup/setup_history.php:84
+msgid "Method does not exist"
+msgstr "El método no existe"
+
+#: ../../enterprise/godmode/setup/setup_history.php:223
+msgid "Configure connection target"
+msgstr "Configurar objetivo de la conexión"
+
+#: ../../enterprise/godmode/setup/setup_history.php:237
+msgid "Active to historical settings"
+msgstr "Ajustes de activa a histórica"
+
+#: ../../enterprise/godmode/setup/setup_history.php:241
+#, php-format
+msgid ""
+"Data will be available in active database as time as days you specify here. "
+"Older information will be sent to historical database. Note data will be "
+"purged from active database after %d days."
+msgstr ""
+"Los datos estarán activos en la base de datos activa tanto tiempo como "
+"especifique aquí. La información más antigua se enviará a la base de datos "
+"histórica. Los datos se purgarán de la base de datos activa después de %d días."
+
+#: ../../enterprise/godmode/setup/setup_history.php:247
+msgid "Data days old to keep in active database"
+msgstr "Antigüedad de los datos a mantener en la base de datos activa"
+
+#: ../../enterprise/godmode/setup/setup_history.php:262
+msgid ""
+"Number of rows to be sent to historical database each 'delay' seconds. If you "
+"experience issues running pandora_db, try decreasing this value."
+msgstr ""
+"Número de filas a enviar a la base de datos histórica cada 'retraso' en "
+"segundos. Si tiene problemas al ejecutar pandora_db, pruebe a reducir este "
+"valor."
+
+#: ../../enterprise/godmode/setup/setup_history.php:266
+msgid "Transference block size (Step)"
+msgstr "Tamaño del bloque de transferencia (Step)"
+
+#: ../../enterprise/godmode/setup/setup_history.php:271
+msgid "Delay between transferences (seconds)"
+msgstr "Retraso entre transferencias (segundos)"
+
+#: ../../enterprise/godmode/setup/setup_history.php:276
+msgid "Historical data settings"
+msgstr "Ajustes de datos de histórico"
+
+#: ../../enterprise/godmode/setup/setup_history.php:278
+msgid "Maximum historical data age (days)"
+msgstr "Antigüedad máxima de los datos de histórico (días)"
+
+#: ../../enterprise/godmode/setup/setup_history.php:283
+msgid "Maximum historical string data age (days)"
+msgstr "Antigüedad máxima de los datos de cadenas de histórico (días)"
+
+#: ../../enterprise/godmode/setup/setup_history.php:288
+msgid "Data older than 'days' is compacted in order to improve disk utilization."
+msgstr ""
+"Los datos de más antigüedad de 'días' se compactan para mejorar la utilización "
+"del disco."
+
+#: ../../enterprise/godmode/setup/setup_history.php:293
+msgid ""
+"Automatically create partitions on specific database IDB files (tagente_datos, "
+"tagente_datos_string, tevento). Monthly partitions."
+msgstr ""
+"Crear automáticamente particiones en archivos específicos de la base de datos "
+"IDB (tagent_data, tagent_data_string, tevent). Particiones mensuales."
+
+#: ../../enterprise/godmode/setup/setup_history.php:297
+msgid "Automatic partition of big tables."
+msgstr "Partición automática de grandes tablas."
+
+#: ../../enterprise/godmode/setup/setup_history.php:308
+msgid "Historical events settings"
+msgstr "Ajustes de eventos de histórico"
+
+#: ../../enterprise/godmode/setup/setup_history.php:319
+#, php-format
+msgid ""
+"Events will remain in active database a maximum of specified days, then they "
+"will be transferred to historical database. Note events will be purged from "
+"active database after %d days."
+msgstr ""
+"Los eventos permanecerán en la base de datos activa un máximo de días "
+"especificados, después se transferirán a la base de datos histórica. Los "
+"eventos se purgarán de la base de datos activa después de %d días."
+
+#: ../../enterprise/godmode/setup/setup_history.php:325
+msgid "Events days old to keep in active database"
+msgstr "Antigüedad de eventos para permanecer en la base de datos activa"
+
+#: ../../enterprise/godmode/setup/setup_history.php:340
+msgid "Events will be purged from historical database after specified days."
+msgstr ""
+"Los eventos se purgarán de la base de datos histórica después del número de "
+"días especificado."
+
+#: ../../enterprise/godmode/setup/setup_history.php:344
+msgid "Maximum historical events age (days)"
+msgstr "Antigüedad máxima de los eventos de histórico (días)"
+
+#: ../../enterprise/godmode/setup/setup_history.php:361
+msgid "Enable historical events"
+msgstr "Habilitar eventos de histórico"
+
+#: ../../enterprise/godmode/setup/setup_history.php:373
+msgid "Customize settings"
+msgstr "Personalizar configuración"
+
+#: ../../enterprise/godmode/setup/setup_history.php:385
+msgid "Enable historical database"
+msgstr "Habilitar base de datos histórica"
+
+#: ../../enterprise/godmode/setup/setup_history.php:407
+msgid "History database connection is available."
+msgstr "La conexión con la base de datos histórica está disponible."
+
+#: ../../enterprise/godmode/setup/setup_history.php:414
+#, php-format
+msgid "History database connection failed: %s"
+msgstr "No se ha podido conectar con la base de datos histórica: %s"
+
+#: ../../enterprise/godmode/setup/setup_history.php:430
+msgid "History database schema is installed."
+msgstr "Es esquema de la base de datos histórica está instalado."
+
+#: ../../enterprise/godmode/setup/setup_history.php:439
+#, php-format
+msgid "Database is not installed: %s"
+msgstr "Base de datos no instalada: %s"
+
+#: ../../enterprise/godmode/setup/setup_history.php:444
+msgid "Install database schema"
+msgstr "Instalar esquema de base de datos"
+
+#: ../../enterprise/godmode/setup/setup_history.php:445
+msgid "This action will install the schema into the target, are you sure?"
+msgstr "Esta acción instalará el esquema en el objetivo, ¿está seguro?"
+
+#: ../../enterprise/godmode/setup/setup_history.php:467
+msgid "History database schema is up to date with active database."
+msgstr ""
+"El esquema de la base de datos histórica está actualizado con la base de datos "
+"activa."
+
+#: ../../enterprise/godmode/setup/setup_history.php:476
+#, php-format
+msgid "Database is not updated: %s"
+msgstr "La base de datos no está actualizada: %s"
+
+#: ../../enterprise/godmode/setup/setup_history.php:491
+msgid "Current schema: "
+msgstr "Esquema actual: "
+
+#: ../../enterprise/godmode/setup/setup_history.php:498
+msgid "Upgrade database schema"
+msgstr "Actualizar el esquema de la base de datos"
+
+#: ../../enterprise/godmode/setup/setup_history.php:499
+msgid ""
+"This action will schedule the installation or upgrade of database schema into "
+"the target, are you sure?"
+msgstr ""
+"Esta acción programará la instalación o la actualización del esquema de la "
+"base de datos en el objetivo, ¿está seguro?"
+
+#: ../../enterprise/godmode/setup/setup_history.php:513
+#: ../../godmode/setup/performance.php:684
+msgid "Database maintenance status"
+msgstr "Estado de mantenimiento de la base de datos"
+
+#: ../../enterprise/godmode/setup/setup_history.php:532
+msgid ""
+"By enabling historical database, target connection will be tested. If needed, "
+"database schema will be applied on your selected target, do you want to "
+"proceed?"
+msgstr ""
+"Al habilitar la base de datos histórica, se probará la conexión con el "
+"objetivo. Si lo necesita, el esquema de la base de datos se aplicará al "
+"objetivo seleccionado, ¿desea proceder?"
+
+#: ../../enterprise/godmode/setup/setup_history.php:533
+msgid ""
+"Changing historical database target, schema will be recreated in new one, but "
+"old data will remain in previous node, unlinked from this console and not "
+"maintained, do you want to proceed?"
+msgstr ""
+"Al cambiar el objetivo de la base de datos histórica, el esquema se recreará "
+"en uno nuevo, pero los datos antiguos permanecerán en el nodo anterior, sin "
+"estar enlazados con la consola y sin estar mantenidos, ¿desea proceder?"
+
+#: ../../enterprise/godmode/setup/setup_history.php:535
+#, php-format
+msgid ""
+"Disabling historical database, you will not keep any data older than %d days. "
+"Are you sure?"
+msgstr ""
+"Al deshabilitar la base de datos histórica, no tendrá datos de mayor "
+"antigüedad que %d días. ¿Está seguro?"
+
+#: ../../enterprise/godmode/setup/setup_history.php:539
+#, php-format
+msgid ""
+"Historical database allows you to keep data older than %d days. This action "
+"will produce no changes. Historical database will remain disabled."
+msgstr ""
+"La base de datos histórica le permite mantener datos de más antigüedad que %d "
+"días. Está acción no producirá cambios. La base de datos histórica permanecerá "
+"deshabilitada."
+
+#: ../../enterprise/godmode/setup/setup_history.php:544
+msgid ""
+"By changing historical database target, the new connection will be tested. If "
+"needed, database schema will be applied on your selected target. Information "
+"stored in previous configuration will be IGNORED, do you want to proceed?"
+msgstr ""
+"Al cambiar el objetivo de la base de datos histórica, se probará la nueva "
+"conexión. Si lo necesita, el esquema de la base de datos se aplicará en el "
+"objetivo seleccionado. La información almacenada en configuraciones previas "
+"será IGNORADA, ¿desea proceder?"
+
+#: ../../enterprise/godmode/setup/setup_history.php:547
+msgid "Please ensure all fields matches your needs."
+msgstr "Asegúrese de que todos los campos coinciden con sus necesidades."
+
+#: ../../enterprise/godmode/setup/setup_history.php:681
+msgid "Update scheduled."
+msgstr "Actualizar programados."
+
+#: ../../enterprise/godmode/setup/setup_metaconsole.php:31
+msgid "Metaconsole setup"
+msgstr "Configuración de la Metaconsola"
+
+#: ../../enterprise/godmode/setup/setup_metaconsole.php:195
+msgid "Pandora FMS Metaconsole item edition"
+msgstr "Edición de elementos de la Metaconsola de Pandora FMS"
+
+#: ../../enterprise/godmode/setup/setup_metaconsole.php:202
+msgid ""
+"Token previously configured on the destination Pandora console in order to use "
+"delegated authentification."
+msgstr ""
+"Token configurado anteriormente en la consola de destino de Pandora FMS con el "
+"fin de utilizar la autentificación delegada."
+
+#: ../../enterprise/godmode/setup/setup_metaconsole.php:274
+msgid "Console URLxxxxxx"
+msgstr "Consola URLxxxxxx"
+
+#: ../../enterprise/godmode/setup/setup_auth.php:34
+msgid "Active directory"
+msgstr "Directorio activo"
+
+#: ../../enterprise/godmode/setup/setup_auth.php:35
+msgid "SAML"
+msgstr "SAML"
+
+#: ../../enterprise/godmode/setup/setup_auth.php:87
+msgid "Force automatically create profile user"
+msgstr "Forzar creación automática de perfil de usuario"
+
+#: ../../enterprise/godmode/setup/setup_auth.php:92
+msgid "Local command"
+msgstr "Comando local"
+
+#: ../../enterprise/godmode/setup/setup_auth.php:95
+msgid "PHP function"
+msgstr "Función PHP"
+
+#: ../../enterprise/godmode/setup/setup_auth.php:172
+#: ../../enterprise/godmode/setup/setup_auth.php:456
+#: ../../enterprise/godmode/setup/setup_auth.php:1251
+msgid "Profiles selected"
+msgstr "Perfiles seleccionados"
+
+#: ../../enterprise/godmode/setup/setup_auth.php:173
+#: ../../enterprise/godmode/setup/setup_auth.php:457
+#: ../../enterprise/godmode/setup/setup_auth.php:1252
+msgid "Groups selected"
+msgstr "Grupos seleccionados"
+
+#: ../../enterprise/godmode/setup/setup_auth.php:174
+#: ../../enterprise/godmode/setup/setup_auth.php:458
+#: ../../enterprise/godmode/setup/setup_auth.php:1253
+#: ../../enterprise/godmode/modules/configure_local_component.php:581
+#: ../../godmode/modules/manage_network_components_form_common.php:382
+#: ../../godmode/agentes/module_manager_editor_common.php:1014
+msgid "Tags selected"
+msgstr "Etiquetas seleccionadas"
+
+#: ../../enterprise/godmode/setup/setup_auth.php:176
+#: ../../enterprise/godmode/setup/setup_auth.php:233
+msgid "LDAP Attributes"
+msgstr "Atributos LDAP"
+
+#: ../../enterprise/godmode/setup/setup_auth.php:177
+#: ../../enterprise/godmode/setup/setup_auth.php:234
+#: ../../enterprise/godmode/setup/setup_auth.php:460
+#: ../../enterprise/godmode/setup/setup_auth.php:512
+#: ../../enterprise/godmode/setup/setup_auth.php:1255
+#: ../../enterprise/godmode/setup/setup_auth.php:1309
+#: ../../godmode/setup/snmp_wizard.php:44
+msgid "OP"
+msgstr "OP"
+
+#: ../../enterprise/godmode/setup/setup_auth.php:229
+#: ../../enterprise/godmode/setup/setup_auth.php:508
+#: ../../enterprise/godmode/setup/setup_auth.php:1305 ../../godmode/menu.php:136
+#: ../../godmode/users/profile_list.php:323
+#: ../../godmode/groups/configure_group.php:122
+#: ../../godmode/groups/group_list.php:380
+msgid "Profiles"
+msgstr "Perfiles"
+
+#: ../../enterprise/godmode/setup/setup_auth.php:242
+#: ../../enterprise/godmode/setup/setup_auth.php:519
+#: ../../enterprise/godmode/setup/setup_auth.php:1316
+msgid "Select profile"
+msgstr "Seleccionar perfil"
+
+#: ../../enterprise/godmode/setup/setup_auth.php:287
+#: ../../enterprise/godmode/setup/setup_auth.php:557
+#: ../../enterprise/godmode/setup/setup_auth.php:1359
+msgid "Add new permissions"
+msgstr "Agregar nuevos permisos"
+
+#: ../../enterprise/godmode/setup/setup_auth.php:385
+#: ../../enterprise/godmode/setup/setup_auth.php:1180
+msgid "New users will be able to log in to the nodes."
+msgstr "Los usuarios nuevos podrán conectarse en los nodos."
+
+#: ../../enterprise/godmode/setup/setup_auth.php:459
+#: ../../enterprise/godmode/setup/setup_auth.php:511
+#: ../../enterprise/godmode/setup/setup_auth.php:1254
+#: ../../enterprise/godmode/setup/setup_auth.php:1308
+msgid "AD Groups"
+msgstr "Grupos AD"
+
+#: ../../enterprise/godmode/setup/setup_auth.php:738
+#: ../../enterprise/godmode/setup/setup_auth.php:854
+msgid "You must select a profile from the list of profiles."
+msgstr "Selecciona un perfil de la lista de perfiles"
+
+#: ../../enterprise/godmode/setup/setup_auth.php:743
+#: ../../enterprise/godmode/setup/setup_auth.php:859
+msgid "You must select a group from the list of groups."
+msgstr "Seleccione un grupo de la lista de grupos"
+
+#: ../../enterprise/godmode/setup/setup_auth.php:1084
+msgid "SimpleSAML path"
+msgstr "Ruta de SimpleSAML"
+
+#: ../../enterprise/godmode/setup/setup_auth.php:1085
+msgid "Directory where your 'simplesamlphp' folder is located."
+msgstr "Directorio donde se encuentra la carpeta 'simplesamlphp'."
+
+#: ../../enterprise/godmode/setup/setup_auth.php:1091
+msgid "SAML source"
+msgstr "SAML de origen"
+
+#: ../../enterprise/godmode/setup/setup_auth.php:1092
+msgid "Authsource name, e.g. 'example-userpass'"
+msgstr "Nombre authsource, por ejemplo: 'example-userpass'"
+
+#: ../../enterprise/godmode/setup/setup_auth.php:1099
+msgid "SAML user id attribute"
+msgstr "Atribito de ID de usuario SAML"
+
+#: ../../enterprise/godmode/setup/setup_auth.php:1104
+msgid "SAML mail attribute"
+msgstr "Atributo de correo SAML"
+
+#: ../../enterprise/godmode/setup/setup_auth.php:1105
+msgid ""
+"SAML field where search for the user email (while autocreate remote users is "
+"enabled)"
+msgstr ""
+"Campo SAML donde buscar el correo electrónico del usuario (mientras auto crear "
+"usuarios remotos esté activado)"
+
+#: ../../enterprise/godmode/setup/setup_auth.php:1112
+msgid "SAML group name attribute"
+msgstr "Atributo de nombre de grupo SAML"
+
+#: ../../enterprise/godmode/setup/setup_auth.php:1113
+msgid ""
+"SAML field where search for the group name (while autocreate remote users is "
+"enabled)"
+msgstr ""
+"Campo SAML donde buscar el nombre del grupo (mientras auto crear usuarios "
+"remotos esté activado)"
+
+#: ../../enterprise/godmode/setup/setup_auth.php:1120
+msgid "Simple attribute / Multivalue attribute"
+msgstr "Atributo simple/atributo con valores múltiples"
+
+#: ../../enterprise/godmode/setup/setup_auth.php:1125
+msgid "SAML profiles and tag attribute"
+msgstr "Atributo de perfiles y etiquetas SAML"
+
+#: ../../enterprise/godmode/setup/setup_auth.php:1130
+msgid "Profile attribute"
+msgstr "Atributo de perfil"
+
+#: ../../enterprise/godmode/setup/setup_auth.php:1135
+msgid "Tag attribute"
+msgstr "Atributo de etiqueta"
+
+#: ../../enterprise/godmode/setup/setup_auth.php:1140
+msgid "SAML profile and tags prefix"
+msgstr "Prefijo de perfiles y etiquetas SAML"
+
+#: ../../enterprise/godmode/setup/setup_log_collector.php:37
+msgid "ElasticSearch IP"
+msgstr "IP de ElasticSearch"
+
+#: ../../enterprise/godmode/setup/setup_log_collector.php:37
+msgid "IP of ElasticSearch server"
+msgstr "IP del servidor ElasticSearch"
+
+#: ../../enterprise/godmode/setup/setup_log_collector.php:39
+msgid "ElasticSearch Port"
+msgstr "Puerto ElasticSearch"
+
+#: ../../enterprise/godmode/setup/setup_log_collector.php:39
+msgid "Port of ElasticSearch server"
+msgstr "Puerto del servidor ElasticSearch"
+
+#: ../../enterprise/godmode/setup/setup_log_collector.php:48
+msgid "ElasticSearch Status"
+msgstr "Estado de ElasticSearch"
+
+#: ../../enterprise/godmode/setup/edit_skin.php:44
+#: ../../enterprise/godmode/setup/setup_skins.php:38
+msgid "Skins configuration"
+msgstr "Configuración de apariencia"
+
+#: ../../enterprise/godmode/setup/edit_skin.php:47
+msgid "Successfully updated skin"
+msgstr "Apariencia actualizada correctamente"
+
+#: ../../enterprise/godmode/setup/edit_skin.php:49
+#: ../../enterprise/godmode/setup/edit_skin.php:67
+msgid "Error updating skin"
+msgstr "Error al actualizar la apariencia"
+
+#: ../../enterprise/godmode/setup/edit_skin.php:197
+msgid "Error creating skin"
+msgstr "Error al crear la apariencia"
+
+#: ../../enterprise/godmode/setup/edit_skin.php:201
+msgid "Successfully created skin"
+msgstr "Apariencia creada correctamente"
+
+#: ../../enterprise/godmode/setup/edit_skin.php:241
+#: ../../enterprise/godmode/setup/setup_skins.php:126
+msgid "Relative path"
+msgstr "Ruta relativa"
+
+#: ../../enterprise/godmode/setup/edit_skin.php:242
+msgid ""
+"Zip file with skin subdirectory. The name of the zip file only can have "
+"alphanumeric characters."
+msgstr ""
+"Archivo zip con subdirectorio apariencia. El nombre del archivo zip solo puede "
+"tener caracteres alfanuméricos."
+
+#: ../../enterprise/godmode/setup/edit_skin.php:267
+msgid "Group/s"
+msgstr "Grupo(s)"
+
+#: ../../enterprise/godmode/setup/setup_module_library.php:68
+#: ../../enterprise/godmode/wizards/Cloud.class.php:381
+#: ../../godmode/module_library/module_library_view.php:163
+msgid "Invalid username or password"
+msgstr "Usuario o contraseña no válidos"
+
+#: ../../enterprise/godmode/setup/setup_module_library.php:69
+#: ../../godmode/module_library/module_library_view.php:162
+msgid "Problem with authentication. Check your internet connection"
+msgstr "Problema de autenticación. Compruebe su conexión a Internet."
+
+#: ../../enterprise/godmode/setup/setup_skins.php:77
+msgid "Error deleting skin"
+msgstr "Error al borrar la apariencia"
+
+#: ../../enterprise/godmode/setup/setup_skins.php:79
+msgid "Successfully deleted skin"
+msgstr "Apariencia eliminada correctamente"
+
+#: ../../enterprise/godmode/setup/setup_skins.php:125
+msgid "Skin name"
+msgstr "Nombre de la apariencia"
+
+#: ../../enterprise/godmode/setup/setup_skins.php:153
+msgid "There are no defined skins"
+msgstr "No hay apariencia definida"
+
+#: ../../enterprise/godmode/setup/setup_skins.php:159
+msgid "Create skin"
+msgstr "Crear apariencia"
+
+#: ../../enterprise/godmode/setup/setup_acl.php:46
+msgid "Enterprise ACL setup"
+msgstr "Configuración ACL Enterprise"
+
+#: ../../enterprise/godmode/setup/setup_acl.php:69
+msgid "ACL element was deleted successfully"
+msgstr "El elemento ACL se eliminó correctamente"
+
+#: ../../enterprise/godmode/setup/setup_acl.php:71
+msgid "There was a problem delete ACL element"
+msgstr "Hubo un problema al eliminar el elemento ACL"
+
+#: ../../enterprise/godmode/setup/setup_acl.php:417
+msgid "This record already exists in the database"
+msgstr "Este registro ya existe en la base de datos."
+
+#: ../../enterprise/godmode/setup/setup_acl.php:422
+msgid "ACL element is added successfully"
+msgstr "El elemento ACL se agrega correctamente"
+
+#: ../../enterprise/godmode/setup/setup_acl.php:424
+msgid "There was a problem adding ACL element"
+msgstr "Hubo un problema al agregar el elemento ACL"
+
+#: ../../enterprise/godmode/setup/setup_acl.php:464
+#: ../../enterprise/godmode/setup/setup_acl.php:539
+msgid "Add new ACL element to profile"
+msgstr "Añadir nuevo elemento ACL al perfil"
+
+#: ../../enterprise/godmode/setup/setup_acl.php:469
+#: ../../enterprise/godmode/setup/setup_acl.php:544
+#: ../../enterprise/godmode/setup/setup_acl.php:592
+msgid "Section"
+msgstr "Sección"
+
+#: ../../enterprise/godmode/setup/setup_acl.php:476
+#: ../../enterprise/godmode/setup/setup_acl.php:694
+msgid "Mobile"
+msgstr "Móvil"
+
+#: ../../enterprise/godmode/setup/setup_acl.php:480
+#: ../../enterprise/godmode/setup/setup_acl.php:690
+msgid "Head search"
+msgstr "Búsqueda de encabezado"
+
+#: ../../enterprise/godmode/setup/setup_acl.php:497
+#: ../../enterprise/godmode/setup/setup_acl.php:548
+#: ../../enterprise/godmode/setup/setup_acl.php:593
+msgid "Section 2"
+msgstr "Sección 2"
+
+#: ../../enterprise/godmode/setup/setup_acl.php:514
+#: ../../enterprise/godmode/setup/setup_acl.php:552
+#: ../../enterprise/godmode/setup/setup_acl.php:594
+msgid "Section 3"
+msgstr "Sección 3"
+
+#: ../../enterprise/godmode/setup/setup_acl.php:538
+msgid "Hidden"
+msgstr "Oculto"
+
+#: ../../enterprise/godmode/setup/setup_acl.php:570
+msgid "Filter by profile"
+msgstr "Filtrar por perfil"
+
+#: ../../enterprise/godmode/setup/setup_acl.php:749
+#: ../../enterprise/godmode/setup/setup_acl.php:759
+msgid "Invalid"
+msgstr "No válido"
+
+#: ../../enterprise/godmode/servers/manage_export_form.php:59
+#: ../../enterprise/godmode/servers/manage_export.php:43
+#: ../../enterprise/godmode/menu.php:247
+msgid "Export targets"
+msgstr "Servidores de exportación"
+
+#: ../../enterprise/godmode/servers/manage_export_form.php:91
+#: ../../enterprise/godmode/servers/manage_export.php:138
+msgid "Preffix"
+msgstr "Prefijo"
+
+#: ../../enterprise/godmode/servers/manage_export_form.php:103
+#: ../../enterprise/godmode/servers/manage_export.php:141
+msgid "Transfer mode"
+msgstr "Modo de transferencia"
+
+#: ../../enterprise/godmode/servers/manage_export_form.php:125
+msgid "Target directory"
+msgstr "Directorio objetivo"
+
+#: ../../enterprise/godmode/servers/credential_boxes_satellite.php:35
+msgid "Credential Boxes List"
+msgstr "Lista de casillas de credenciales"
+
+#: ../../enterprise/godmode/servers/credential_boxes_satellite.php:42
+msgid "Credential Boxes"
+msgstr "Casillas de credenciales"
+
+#: ../../enterprise/godmode/servers/manage_export.php:69
+msgid "Error updating export target"
+msgstr "Error al actualizar el servidor de exportación"
+
+#: ../../enterprise/godmode/servers/manage_export.php:71
+msgid "Successfully updated export target"
+msgstr "Servidor de exportación actualizado correctamente"
+
+#: ../../enterprise/godmode/servers/manage_export.php:82
+msgid "Error deleting export target"
+msgstr "Error al borrar el servidor de exportación"
+
+#: ../../enterprise/godmode/servers/manage_export.php:84
+msgid ""
+"Successfully deleted export target.  All the linked modules will be "
+"automatically unattached"
+msgstr ""
+"Objetivo de exportación eliminado correctamente. Todos los módulos enlazados "
+"se desvincularán automáticamente"
+
+#: ../../enterprise/godmode/servers/manage_export.php:107
+msgid ""
+"Can't be created export target: User and password must be filled with FTP mode"
+msgstr ""
+"No pudo crearse un servidor de exportación: el usuario y la contraseña deben "
+"ser completados con el modo de FTP."
+
+#: ../../enterprise/godmode/servers/manage_export.php:126
+msgid "There are no defined export targets"
+msgstr "No hay servidores de exportación definidos"
+
+#: ../../enterprise/godmode/servers/list_satellite.php:27
+msgid "Satellite Server"
+msgstr "Servidor Satélite"
+
+#: ../../enterprise/godmode/servers/HA_cluster.php:59
+#: ../../enterprise/godmode/servers/HA_cluster.php:83
+msgid "View nodes"
+msgstr "Ver nodos"
+
+#: ../../enterprise/godmode/servers/HA_cluster.php:80
+msgid "Manage Pandora DB HA"
+msgstr "Gestionar la alta disponibilidad de la base de datos de Pandora FMS"
+
+#: ../../enterprise/godmode/servers/HA_cluster.php:101
+msgid "Manage Database HA"
+msgstr "Gestionar la base de datos de alta disponibilidad"
+
+#: ../../enterprise/godmode/servers/HA_cluster.php:136
+msgid ""
+"Make the cluster forget failed operations from history of\n"
+" the resource and re-detect its current state. This can be\n"
+" useful to purge knowledge of past failures that have since\n"
+" been resolved. If a resource id is not specified then all\n"
+" resources / stonith devices will be cleaned up. If a node\n"
+" is not specified then resources / stonith devices on all\n"
+" nodes will be cleaned up"
+msgstr ""
+"Hacer que el cluster olvide las operaciones fallidas del historial de\n"
+" recurso y redetectar su estado actual. Esto puede ser\n"
+" útil para purgar los datos de fallos anteriores que se han\n"
+" resuelto dede entonces. Si no se especifica ID de recurso, entonces todos "
+"los\n"
+" recursos / dispositivos stonith se limpiarán. Si no\n"
+" se especifica, entonces los recursos / dispositivos stonith de todos los\n"
+" nodos se limparán"
+
+#: ../../enterprise/godmode/servers/HA_cluster.php:162
+msgid "Node label"
+msgstr "Etiqueta de nodo"
+
+#: ../../enterprise/godmode/servers/HA_cluster.php:164
+msgid "DB Repl."
+msgstr "Replicación de la base de datos."
+
+#: ../../enterprise/godmode/servers/HA_cluster.php:165
+msgid "DB Status"
+msgstr "Estado BD"
+
+#: ../../enterprise/godmode/servers/HA_cluster.php:167
+#: ../../extensions/quick_shell.php:195
+#: ../../godmode/agentes/module_manager_editor_network.php:478
+msgid "SSH"
+msgstr "SSH"
+
+#: ../../enterprise/godmode/servers/HA_cluster.php:168
+msgid "DB Role"
+msgstr "Función de la base de datos"
+
+#: ../../enterprise/godmode/servers/HA_cluster.php:169
+msgid "Cluster Role"
+msgstr "Función del clúster"
+
+#: ../../enterprise/godmode/servers/HA_cluster.php:171
+msgid "Seconds behind master"
+msgstr "Segundos después del maestro"
+
+#: ../../enterprise/godmode/servers/HA_cluster.php:172
+msgid "Virtual IP"
+msgstr "IP virtual"
+
+#: ../../enterprise/godmode/servers/HA_cluster.php:173
+msgid "SQL version"
+msgstr "Versión SQL"
+
+#: ../../enterprise/godmode/servers/HA_cluster.php:174
+msgid "DB version"
+msgstr "Versión de la base de datos"
+
+#: ../../enterprise/godmode/servers/HA_cluster.php:176
+msgid "Pending action"
+msgstr "Acción pendiente"
+
+#: ../../enterprise/godmode/servers/HA_cluster.php:301
+msgid "Show/ edit node"
+msgstr "Mostrar/editar nodo"
+
+#: ../../enterprise/godmode/servers/HA_cluster.php:317
+msgid "Put node into standby status"
+msgstr "Poner nodo en suspensión"
+
+#: ../../enterprise/godmode/servers/HA_cluster.php:332
+msgid "Force node resync"
+msgstr "Forzar re-sincronización de nodos"
+
+#: ../../enterprise/godmode/servers/HA_cluster.php:359
+msgid "Put node into online status"
+msgstr "Poner nodo en estado online"
+
+#: ../../enterprise/godmode/servers/HA_cluster.php:374
+msgid "Show cluster details"
+msgstr "Mostrar detalles del cluster"
+
+#: ../../enterprise/godmode/servers/HA_cluster.php:392
+msgid "Remove node from this list"
+msgstr "Eliminar nodo de la lista"
+
+#: ../../enterprise/godmode/servers/HA_cluster.php:428
+msgid "Register node"
+msgstr "Registrar nodo"
+
+#: ../../enterprise/godmode/servers/HA_cluster.php:466
+msgid ""
+"Target node will be erased from this list but not removed from cluster. Do you "
+"want to continue?"
+msgstr ""
+"El nodo objetivo se eliminará de la lista pero no del cluster. ¿Desea "
+"continuar?"
+
+#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:148
+msgid "Error: The conf file of server is not readble."
+msgstr "Error: el archivo de configuración del servidor no se puede leer."
+
+#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:152
+msgid "Error: The conf file of server is not writable."
+msgstr "Error: no se puede escribir en el archivo de configuración del servidor"
+
+#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:348
+msgid "Delete remote conf server files"
+msgstr "Eliminar archivos de servidor de configuración remotos"
+
+#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:349
+#: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:249
+#: ../../godmode/agentes/agent_manager.php:495
+msgid "Delete remote configuration file"
+msgstr "Borrar el archivo de configuración remota"
+
+#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:349
+msgid ""
+"Delete this conf file implies that server will send back local config to "
+"console"
+msgstr ""
+"Eliminar este archivo de configuración significa que el servidor devolverá la "
+"configuración local a la consola"
+
+#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:567
+msgid "ICMP server"
+msgstr "Servidor ICPM"
+
+#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:642
+msgid "Network timeout"
+msgstr "Tiempo de espera de red"
+
+#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:650
+#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:666
+msgid " Seconds"
+msgstr " Segundos"
+
+#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:658
+msgid "Plugin timeout"
+msgstr "Tiempo de espera del plugin"
+
+#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:674
+msgid "SNMP console threads"
+msgstr "Hilos de la consola SNMP"
+
+#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:690
+msgid "Network threads"
+msgstr "Hilos de red"
+
+#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:706
+msgid "Plugin threads"
+msgstr "Hilos de plugin"
+
+#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:722
+msgid "Recon threads"
+msgstr "Hilos de recon"
+
+#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:738
+msgid "Dataserver threads"
+msgstr "Hilos del servidor de datos"
+
+#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:754
+msgid "Web threads"
+msgstr "Hilos web"
+
+#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:770
+msgid "SNMP threads"
+msgstr "Hilos SNMP"
+
+#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:786
+msgid "ICMP threads"
+msgstr "Hilos ICMP"
+
+#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:816
+msgid "Autocreate group"
+msgstr "Autocrear grupo"
+
+#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:832
+msgid "Autocreate group force"
+msgstr "Forzar auto-creación de grupo"
+
+#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:847
+msgid "Autocreate"
+msgstr "Autocrear"
+
+#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:865
+msgid "Server features"
+msgstr "funcionalidades del servidor"
+
+#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:872
+msgid "Optimization settings"
+msgstr "Ajustes de optimización"
+
+#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:879
+msgid "Other server settings"
+msgstr "Otros ajustes de servidor"
+
+#: ../../enterprise/godmode/servers/manage_credential_boxes.php:20
+msgid "Add Credential Box"
+msgstr "Añadir casilla de credenciales"
+
+#: ../../enterprise/godmode/modules/configure_local_component.php:141
+msgid "Update Local Component"
+msgstr "Actualizar el componente local"
+
+#: ../../enterprise/godmode/modules/configure_local_component.php:143
+msgid "Create Local Component"
+msgstr "Crear componente local"
+
+#: ../../enterprise/godmode/modules/configure_local_component.php:162
+#: ../../godmode/modules/manage_network_components_form_common.php:50
+#: ../../godmode/alerts/configure_alert_template.php:1134
+msgid "Wizard level"
+msgstr "Nivel del asistente"
+
+#: ../../enterprise/godmode/modules/configure_local_component.php:192
+msgid "Throw unknown events"
+msgstr "Generar eventos desconocidos"
+
+#: ../../enterprise/godmode/modules/configure_local_component.php:292
+#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:489
+#: ../../godmode/modules/manage_network_components_form_common.php:146
+#: ../../godmode/massive/massive_edit_modules.php:552
+msgid "Dynamic Interval"
+msgstr "Intervalo dinámico"
+
+#: ../../enterprise/godmode/modules/configure_local_component.php:298
+#: ../../godmode/modules/manage_network_components_form_common.php:152
+#: ../../godmode/agentes/module_manager_editor_common.php:691
+msgid "Advanced options Dynamic Threshold"
+msgstr "Opciones avanzadas rango dinámico"
+
+#: ../../enterprise/godmode/modules/configure_local_component.php:303
+#: ../../godmode/modules/manage_network_components_form_common.php:157
+msgid "Dynamic Min. "
+msgstr "Dinámico mínimo "
+
+#: ../../enterprise/godmode/modules/configure_local_component.php:305
+#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:493
+#: ../../godmode/modules/manage_network_components_form_common.php:159
+#: ../../godmode/massive/massive_edit_modules.php:556
+msgid "Dynamic Max."
+msgstr "Dinámico máximo"
+
+#: ../../enterprise/godmode/modules/configure_local_component.php:307
+#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:495
+#: ../../godmode/modules/manage_network_components_form_common.php:161
+#: ../../godmode/massive/massive_edit_modules.php:558
+msgid "Dynamic Two Tailed: "
+msgstr "El segundo rango dínámico falla: "
+
+#: ../../enterprise/godmode/modules/configure_local_component.php:343
+#: ../../enterprise/godmode/modules/configure_local_component.php:386
+#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:567
+#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:658
+#: ../../godmode/modules/manage_network_components_form_wizard.php:399
+#: ../../godmode/modules/manage_network_components_form_wizard.php:441
+#: ../../godmode/modules/manage_network_components_form_common.php:196
+#: ../../godmode/modules/manage_network_components_form_common.php:237
+#: ../../godmode/massive/massive_edit_modules.php:630
+#: ../../godmode/massive/massive_edit_modules.php:722
+#: ../../godmode/agentes/module_manager_editor_common.php:464
+#: ../../godmode/agentes/module_manager_editor_common.php:526
+msgid "Percentage"
+msgstr "Porcentaje"
+
+#: ../../enterprise/godmode/modules/configure_local_component.php:391
+#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:873
+#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:232
+#: ../../godmode/modules/manage_network_components_form_common.php:243
+#: ../../godmode/massive/massive_edit_modules.php:930
+#: ../../godmode/agentes/module_manager_editor_common.php:780
+msgid "FF threshold"
+msgstr "Umbral FF"
+
+#: ../../enterprise/godmode/modules/configure_local_component.php:394
+#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:941
+#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:235
+#: ../../godmode/modules/manage_network_components_form_common.php:246
+#: ../../godmode/massive/massive_edit_modules.php:994
+#: ../../godmode/agentes/module_manager_editor_common.php:782
+msgid "Keep counters"
+msgstr "Mantener los contadores"
+
+#: ../../enterprise/godmode/modules/configure_local_component.php:402
+#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:885
+#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:900
+#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:252
+#: ../../godmode/modules/manage_network_components_form_common.php:260
+#: ../../godmode/massive/massive_edit_modules.php:938
+#: ../../godmode/massive/massive_edit_modules.php:953
+#: ../../godmode/agentes/module_manager_editor_common.php:799
+msgid "All state changing"
+msgstr "Todos los cambios de estado"
+
+#: ../../enterprise/godmode/modules/configure_local_component.php:417
+#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:884
+#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:910
+#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:274
+#: ../../godmode/modules/manage_network_components_form_common.php:276
+#: ../../godmode/massive/massive_edit_modules.php:937
+#: ../../godmode/massive/massive_edit_modules.php:963
+#: ../../godmode/agentes/module_manager_editor_common.php:821
+msgid "Each state changing"
+msgstr "Cada cambio de estado"
+
+#: ../../enterprise/godmode/modules/configure_local_component.php:418
+#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:911
+#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:275
+#: ../../godmode/modules/manage_network_components_form_common.php:277
+#: ../../godmode/massive/massive_edit_modules.php:964
+#: ../../godmode/agentes/module_manager_editor_common.php:822
+msgid "To normal"
+msgstr "A normal"
+
+#: ../../enterprise/godmode/modules/configure_local_component.php:427
+#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:921
+#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:289
+#: ../../godmode/modules/manage_network_components_form_common.php:286
+#: ../../godmode/massive/massive_edit_modules.php:974
+#: ../../godmode/agentes/module_manager_editor_common.php:836
+msgid "To warning"
+msgstr "A advertencia"
+
+#: ../../enterprise/godmode/modules/configure_local_component.php:436
+#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:931
+#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:303
+#: ../../godmode/modules/manage_network_components_form_common.php:295
+#: ../../godmode/massive/massive_edit_modules.php:984
+#: ../../godmode/agentes/module_manager_editor_common.php:850
+msgid "To critical"
+msgstr "A crítico"
+
+#: ../../enterprise/godmode/modules/configure_local_component.php:450
+#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:963
+#: ../../godmode/massive/massive_edit_modules.php:1028
+#: ../../godmode/agentes/module_manager_editor_common.php:880
+msgid "FF timeout"
+msgstr "FF tiempo de espera"
+
+#: ../../enterprise/godmode/modules/configure_local_component.php:458
+#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:964
+#: ../../godmode/massive/massive_edit_modules.php:1038
+msgid ""
+"Timeout in secs from start of flip flop counting. If this value is exceeded, "
+"FF counter is reset. Set to 0 for no timeout."
+msgstr ""
+"Tiempo de espera en segundos desde el comiendo del contador flip flop. Si se "
+"excede este valor, el contador FF será reiniciado. Poner 0 para no tener "
+"tiempo de espera"
+
+#: ../../enterprise/godmode/modules/configure_local_component.php:459
+msgid "This value can be set only in the async modules."
+msgstr "Solo debe establecerse este valor en los módulos asíncronos."
+
+#: ../../enterprise/godmode/modules/configure_local_component.php:461
+#: ../../godmode/modules/manage_network_components_form_common.php:309
+msgid "Any value below this number is discarted"
+msgstr "Cualquier valor por debajo de este número será descartado."
+
+#: ../../enterprise/godmode/modules/configure_local_component.php:466
+#: ../../godmode/modules/manage_network_components_form_common.php:311
+msgid "Any value over this number is discarted"
+msgstr "Cualquier valor por encima de este número será descartado."
+
+#: ../../enterprise/godmode/modules/configure_local_component.php:473
+#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:716
+#: ../../godmode/setup/snmp_wizard.php:43
+#: ../../godmode/modules/manage_network_components_form_plugin.php:49
+#: ../../godmode/modules/manage_network_components_form_wmi.php:55
+#: ../../godmode/modules/manage_network_components_form_network.php:178
+#: ../../godmode/massive/massive_edit_modules.php:780
+#: ../../godmode/agentes/module_manager_editor_common.php:649
+msgid "Post process"
+msgstr "Posprocesado"
+
+#: ../../enterprise/godmode/modules/configure_local_component.php:500
+#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:180
+msgid "Load a basic structure on data configuration"
+msgstr "Cargar una estructura básica en la configuración de datos"
+
+#: ../../enterprise/godmode/modules/configure_local_component.php:503
+#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:183
+msgid "Check the correct structure of the data configuration"
+msgstr "Comprobar la estructura correcta de la configuración de datos"
+
+#: ../../enterprise/godmode/modules/configure_local_component.php:506
+#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:196
+msgid "First line must be \"module_begin\""
+msgstr "La primera línea tiene que ser \"module_begin\"."
+
+#: ../../enterprise/godmode/modules/configure_local_component.php:507
+#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:197
+msgid "Data configuration is empty"
+msgstr "La configuración de datos está vacía."
+
+#: ../../enterprise/godmode/modules/configure_local_component.php:508
+#: ../../enterprise/godmode/modules/configure_local_component.php:512
+#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:198
+#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:202
+msgid "Last line must be \"module_end\""
+msgstr "La última línea tiene que ser \"module_end\"."
+
+#: ../../enterprise/godmode/modules/configure_local_component.php:509
+#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:199
+msgid ""
+"Name is missed. Please add a line with \"module_name yourmodulename\" to data "
+"configuration"
+msgstr ""
+"Falta el nombre. Por favor, introduce una línea con \"module_name "
+"yourmodulename\" a la configuración de datos."
+
+#: ../../enterprise/godmode/modules/configure_local_component.php:510
+#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:200
+msgid ""
+"Type is missed. Please add a line with \"module_type yourmoduletype\" to data "
+"configuration"
+msgstr ""
+"Falta el tipo. Por favor, introduce una línea con \"module_type yourmoduletype"
+"\" a la configuración de datos."
+
+#: ../../enterprise/godmode/modules/configure_local_component.php:511
+#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:201
+msgid "Type is wrong. Please set a correct type"
+msgstr "El tipo es incorrecto. Por favor, introduce un tipo correcto."
+
+#: ../../enterprise/godmode/modules/configure_local_component.php:514
+#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:204
+msgid "Error in the syntax, please check the data configuration."
+msgstr "Error en la sintaxis; comprueba la configuración de datos."
+
+#: ../../enterprise/godmode/modules/configure_local_component.php:515
+#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:205
+msgid "Data configuration are built correctly"
+msgstr "La configuración de datos se ha efectuado correctamente."
+
+#: ../../enterprise/godmode/modules/configure_local_component.php:523
+#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1016
+#: ../../godmode/modules/manage_network_components_form_common.php:323
+#: ../../godmode/massive/massive_edit_modules.php:1092
+#: ../../godmode/agentes/module_manager_editor_common.php:1093
+msgid "Critical instructions"
+msgstr "Instrucciones de crítico"
+
+#: ../../enterprise/godmode/modules/configure_local_component.php:523
+#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1016
+#: ../../godmode/modules/manage_network_components_form_common.php:323
+#: ../../godmode/massive/massive_edit_modules.php:1092
+msgid "Instructions when the status is critical"
+msgstr "Instrucciones en caso de que se encuentre en estado crítico"
+
+#: ../../enterprise/godmode/modules/configure_local_component.php:528
+#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1020
+#: ../../godmode/modules/manage_network_components_form_common.php:327
+#: ../../godmode/massive/massive_edit_modules.php:1096
+#: ../../godmode/agentes/module_manager_editor_common.php:1098
+msgid "Warning instructions"
+msgstr "Instrucciones de advertencia"
+
+#: ../../enterprise/godmode/modules/configure_local_component.php:528
+#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1020
+#: ../../godmode/modules/manage_network_components_form_common.php:327
+#: ../../godmode/massive/massive_edit_modules.php:1096
+msgid "Instructions when the status is warning"
+msgstr "Instrucciones en caso de que se encuentre en estado de advertencia"
+
+#: ../../enterprise/godmode/modules/configure_local_component.php:533
+#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1024
+#: ../../godmode/modules/manage_network_components_form_common.php:331
+#: ../../godmode/massive/massive_edit_modules.php:1100
+#: ../../godmode/agentes/module_manager_editor_common.php:1102
+msgid "Unknown instructions"
+msgstr "Instrucciones de desconocido"
+
+#: ../../enterprise/godmode/modules/configure_local_component.php:533
+#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1024
+#: ../../godmode/modules/manage_network_components_form_common.php:331
+#: ../../godmode/massive/massive_edit_modules.php:1100
+msgid "Instructions when the status is unknown"
+msgstr "Instrucciones en caso de que se encuentre en estado desconocido"
+
+#: ../../enterprise/godmode/modules/configure_local_component.php:542
+#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:984
+#: ../../godmode/modules/manage_network_components_form_common.php:342
+#: ../../godmode/massive/massive_edit_modules.php:1060
+#: ../../godmode/agentes/module_manager_editor_common.php:1143
+#: ../../godmode/module_library/module_library_view.php:123
+msgid "Category"
+msgstr "Categoría"
+
+#: ../../enterprise/godmode/modules/configure_local_component.php:561
+#: ../../godmode/modules/manage_network_components_form_common.php:362
+#: ../../godmode/agentes/module_manager_editor_common.php:906
+msgid "Tags available"
+msgstr "Etiquetas disponibles"
+
+#: ../../enterprise/godmode/modules/configure_local_component.php:579
+#: ../../godmode/modules/manage_network_components_form_common.php:380
+#: ../../godmode/agentes/module_manager_editor_common.php:1001
+msgid "Add tags to module"
+msgstr "Añadir etiquetas al módulo"
+
+#: ../../enterprise/godmode/modules/configure_local_component.php:580
+#: ../../godmode/modules/manage_network_components_form_common.php:381
+#: ../../godmode/agentes/module_manager_editor_common.php:1010
+msgid "Delete tags to module"
+msgstr "Eliminar etiquetas del módulo"
+
+#: ../../enterprise/godmode/modules/configure_local_component.php:603
+msgid "Macros"
+msgstr "Macros"
+
+#: ../../enterprise/godmode/modules/configure_local_component.php:978
+#: ../../godmode/modules/manage_network_components_form_common.php:706
+#: ../../godmode/agentes/module_manager_editor_common.php:1994
+msgid "Normal Status"
+msgstr "Estado normal"
+
+#: ../../enterprise/godmode/modules/configure_local_component.php:979
+#: ../../godmode/modules/manage_network_components_form_common.php:707
+#: ../../godmode/agentes/module_manager_editor_common.php:1995
+msgid "Warning Status"
+msgstr "Estado de advertencia"
+
+#: ../../enterprise/godmode/modules/configure_local_component.php:980
+#: ../../godmode/modules/manage_network_components_form_common.php:708
+#: ../../godmode/agentes/module_manager_editor_common.php:1996
+msgid "Critical Status"
+msgstr "Estado crítico"
+
+#: ../../enterprise/godmode/modules/configure_local_component.php:983
+#: ../../godmode/modules/manage_network_components_form_common.php:710
+#: ../../godmode/agentes/module_manager_editor_common.php:1998
+msgid "Please introduce a maximum warning higher than the minimun warning"
+msgstr ""
+"Por favor, introduce un máximo de advertencia mayor que el mínimo de "
+"advertencia."
+
+#: ../../enterprise/godmode/modules/configure_local_component.php:985
+#: ../../godmode/modules/manage_network_components_form_common.php:711
+#: ../../godmode/agentes/module_manager_editor_common.php:1999
+msgid "Please introduce a maximum critical higher than the minimun critical"
+msgstr "Por favor introduce un máximo de crítico mayor que el mínimo de crítico."
+
+#: ../../enterprise/godmode/modules/configure_local_component.php:987
+msgid "Please introduce a positicve percentage value"
+msgstr "Introduzca un valor porcentual positivo"
+
+#: ../../enterprise/godmode/modules/local_components.php:141
+#: ../../godmode/modules/manage_network_components.php:196
+#: ../../godmode/alerts/configure_alert_template.php:191
+#, php-format
+msgid "Successfully created from %s"
+msgstr "Creado correctamente desde %s"
+
+#: ../../enterprise/godmode/modules/local_components.php:157
+msgid "Local component management"
+msgstr "Gestión de componentes locales"
+
+#: ../../enterprise/godmode/modules/local_components.php:263
+#, php-format
+msgid ""
+"This node is configured with centralized mode. All local components are read "
+"only. Go to %s to manage them."
+msgstr ""
+"Este nodo esta configurado con el modo centralizado. Toda la información de "
+"las políticas está en modo lectura. Vaya a %s para administrarlo."
+
+#: ../../enterprise/godmode/modules/local_components.php:443
+#: ../../enterprise/godmode/modules/manage_inventory_modules.php:217
+#: ../../enterprise/godmode/modules/manage_inventory_modules.php:250
+#: ../../godmode/modules/manage_network_components.php:578
+#: ../../godmode/modules/manage_network_templates.php:114
+#: ../../godmode/modules/manage_nc_groups.php:194
+msgid "Successfully multiple deleted"
+msgstr "Supresión múltiple correcta"
+
+#: ../../enterprise/godmode/modules/local_components.php:444
+#: ../../enterprise/godmode/modules/manage_inventory_modules.php:218
+#: ../../enterprise/godmode/modules/manage_inventory_modules.php:251
+#: ../../godmode/modules/manage_network_components.php:579
+#: ../../godmode/modules/manage_network_templates.php:115
+#: ../../godmode/modules/manage_nc_groups.php:195
+msgid "Not deleted. Error deleting multiple data"
+msgstr "No borrado. Error al borrar datos múltiples."
+
+#: ../../enterprise/godmode/modules/local_components.php:548
+msgid "Search by name, description or data, list matches."
+msgstr "Búsqueda de lista de concidencias por nombre, descripción o datos."
+
+#: ../../enterprise/godmode/modules/manage_inventory_modules.php:40
+msgid "To manage inventory plugin you must activate centralized management"
+msgstr "Para administrar el plugin de inventario active la gestión centralizada"
+
+#: ../../enterprise/godmode/modules/manage_inventory_modules.php:117
+msgid "Successfully created inventory module"
+msgstr "Inventario de módulo creado correctamente"
+
+#: ../../enterprise/godmode/modules/manage_inventory_modules.php:118
+msgid "Error creating inventory module"
+msgstr "Error al crear módulo del inventario"
+
+#: ../../enterprise/godmode/modules/manage_inventory_modules.php:143
+#: ../../enterprise/godmode/agentes/inventory_manager.php:128
+#: ../../enterprise/godmode/policies/policy_inventory_modules.php:216
+msgid "Successfully updated inventory module"
+msgstr "Módulo del inventario actualizado correctamente"
+
+#: ../../enterprise/godmode/modules/manage_inventory_modules.php:144
+#: ../../enterprise/godmode/agentes/inventory_manager.php:130
+#: ../../enterprise/godmode/policies/policy_inventory_modules.php:225
+msgid "Error updating inventory module"
+msgstr "Error al actualizar el módulo del inventario"
+
+#: ../../enterprise/godmode/modules/manage_inventory_modules.php:162
+#: ../../enterprise/godmode/modules/manage_inventory_modules.php:183
+#: ../../enterprise/godmode/agentes/inventory_manager.php:100
+msgid "Successfully deleted inventory module"
+msgstr "Módulo del inventario eliminado correctamente"
+
+#: ../../enterprise/godmode/modules/manage_inventory_modules.php:163
+#: ../../enterprise/godmode/modules/manage_inventory_modules.php:184
+#: ../../enterprise/godmode/agentes/inventory_manager.php:102
+msgid "Error deleting inventory module"
+msgstr "Error al eliminar el módulo del inventario"
+
+#: ../../enterprise/godmode/modules/manage_inventory_modules.php:275
+#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:114
+msgid "Interpreter"
+msgstr "Intérprete"
+
+#: ../../enterprise/godmode/modules/manage_inventory_modules.php:284
+msgid "No inventory modules defined"
+msgstr "No hay módulos de inventario definidos"
+
+#: ../../enterprise/godmode/modules/manage_inventory_modules.php:305
+msgid "Local module"
+msgstr "Módulo local"
+
+#: ../../enterprise/godmode/modules/manage_inventory_modules.php:307
+msgid "Remote/Local"
+msgstr "Remoto/Local"
+
+#: ../../enterprise/godmode/modules/manage_inventory_modules.php:353
+msgid ""
+"The configurations of inventory modules from the nodes have been unified.\n"
+"\t\tFrom this point on, changes to the inventory scripts must be made through "
+"this screen."
+msgstr ""
+"Las configuraciones de los módulos de inventario de los nodos se han "
+"unificado.\n"
+"\t\tA partir de este momento, los cambios en los scripts de inventario deben "
+"realizarse a través de esta pantalla."
+
+#: ../../enterprise/godmode/modules/manage_inventory_modules.php:355
+msgid "You can find more information at:"
+msgstr "Encontrará más información en:"
+
+#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:71
+#: ../../enterprise/godmode/agentes/inventory_manager.php:165
+msgid "Inventory module error"
+msgstr "Error del módulo del inventario"
+
+#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:116
+msgid "Left blank for the LOCAL inventory modules"
+msgstr "Dejar en blanco para los módulos de inventario LOCALES"
+
+#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:118
+msgid "Block Mode"
+msgstr "Modo bloqueo"
+
+#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:122
+msgid "separate fields with "
+msgstr "Separar campos con "
+
+#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:126
+msgid ""
+"Here is placed the script for the REMOTE inventory modules Local inventory "
+"modules don't use this field"
+msgstr ""
+"Aquí se coloca el script para los módulos de inventario REMOTOS. Los módulos "
+"de inventario locales no usan este campo."
+
+#: ../../enterprise/godmode/services/services.elements.php:72
+msgid "Invalid service"
+msgstr "Servicio no válido"
+
+#: ../../enterprise/godmode/services/services.elements.php:250
+msgid "Add custom field match"
+msgstr "Añadir coincidencia de campo personalizado"
+
+#: ../../enterprise/godmode/services/services.elements.php:256
+msgid "Both 'name' and 'value' must be defined to filter. Ignored otherwise."
+msgstr ""
+"Tanto el 'nombre' como el 'valor' deben estar definidos para filtrar. Si no, "
+"serán ignorados."
+
+#: ../../enterprise/godmode/services/services.elements.php:261
+msgid "MySQL Regular expressions case sensitive."
+msgstr ""
+"Las expresiones regulares de MySQL diferencian entre mayúsculas y minúsculas"
+
+#: ../../enterprise/godmode/services/services.elements.php:267
+msgid "Matching objects type"
+msgstr "Tipo de elementos que coinciden"
+
+#: ../../enterprise/godmode/services/services.elements.php:282
+msgid "Filter by group"
+msgstr "Filtrar por grupo"
+
+#: ../../enterprise/godmode/services/services.elements.php:294
+msgid "Use regular expresions selectors"
+msgstr "Use selectores de expresiones regulares"
+
+#: ../../enterprise/godmode/services/services.elements.php:302
+msgid "Having agent name"
+msgstr "Con nombre de agente"
+
+#: ../../enterprise/godmode/services/services.elements.php:310
+msgid "Having module name"
+msgstr "Con nombre de módulo"
+
+#: ../../enterprise/godmode/services/services.elements.php:320
+msgid "Having custom fields"
+msgstr "Tener campos personalizados"
+
+#: ../../enterprise/godmode/services/services.elements.php:331
+msgid "Apply rules on this server"
+msgstr "Aplicar reglas a este servidor"
+
+#: ../../enterprise/godmode/services/services.elements.php:350
+msgid "Weights"
+msgstr "Pesos"
+
+#: ../../enterprise/godmode/services/services.elements.php:355
+msgid "In smart mode weights are automatically calculated."
+msgstr "En el modo inteligente, los pesos se calculan automáticamente."
+
+#: ../../enterprise/godmode/services/services.elements.php:453
+#: ../../enterprise/godmode/services/services.elements.php:461
+#: ../../enterprise/godmode/services/services.elements.php:468
+msgid "Selected agent not found."
+msgstr "Agente seleccionado no encontrado."
+
+#: ../../enterprise/godmode/services/services.elements.php:474
+#: ../../enterprise/godmode/services/services.elements.php:485
+#, php-format
+msgid "Selected module not found in %s."
+msgstr "El módulo seleccionado no se ha encontrado en %s."
+
+#: ../../enterprise/godmode/services/services.elements.php:494
+msgid "Selected service not found."
+msgstr "Servicio seleccionado no encontrado."
+
+#: ../../enterprise/godmode/services/services.elements.php:511
+msgid "Selected service could generate a loop"
+msgstr "El servicio seleccionado podría generar un bucle"
+
+#: ../../enterprise/godmode/services/services.elements.php:521
+#, php-format
+msgid "Failed adding service child: %s"
+msgstr "No se ha podido añadir el servicio hijo: %s"
+
+#: ../../enterprise/godmode/services/services.elements.php:560
+#, php-format
+msgid "Selected rules are not valid: %s."
+msgstr "Las reglas seleccionadas no son válidas: %s."
+
+#: ../../enterprise/godmode/services/services.elements.php:568
+msgid "Invalid element type."
+msgstr "Tipo de elemento no válido."
+
+#: ../../enterprise/godmode/services/services.elements.php:594
+msgid "Element registered successfully"
+msgstr "Elemento registrado correctamente."
+
+#: ../../enterprise/godmode/services/services.elements.php:640
+#, php-format
+msgid "Error deleting element: %s"
+msgstr "Error al eliminar el elemento: %s"
+
+#: ../../enterprise/godmode/services/services.elements.php:842
+msgid "Add element"
+msgstr "Añadir elemento"
+
+#: ../../enterprise/godmode/services/services.elements.php:853
+msgid "Edit element"
+msgstr "Editar elemento"
+
+#: ../../enterprise/godmode/services/services.service.php:107
+msgid "Service already exists."
+msgstr "El servicio ya existe."
+
+#: ../../enterprise/godmode/services/services.service.php:118
+#: ../../enterprise/godmode/massive/massive_create_services.php:110
+msgid "No name specified for the service"
+msgstr "Ningún nombre especificado para el servicio"
+
+#: ../../enterprise/godmode/services/services.service.php:129
+#: ../../enterprise/godmode/massive/massive_create_services.php:116
+msgid "No description specified for the service"
+msgstr "Ninguna descripción especificada para el servicio"
+
+#: ../../enterprise/godmode/services/services.service.php:140
+#: ../../enterprise/godmode/massive/massive_create_services.php:122
+msgid "You must specify an agent to store the service"
+msgstr "Especifique un agente para guardar el servicio"
+
+#: ../../enterprise/godmode/services/services.service.php:197
+msgid "Error creating service: "
+msgstr "Error al crear el servicio: "
+
+#: ../../enterprise/godmode/services/services.service.php:206
+#: ../../enterprise/godmode/services/services.service.php:310
+msgid "New Service"
+msgstr "Nuevo servicio"
+
+#: ../../enterprise/godmode/services/services.service.php:212
+msgid "Service created successfully"
+msgstr "Servicio creado correctamente"
+
+#: ../../enterprise/godmode/services/services.service.php:290
+msgid "Service updated successfully"
+msgstr "Servicio actualizado correctamente"
+
+#: ../../enterprise/godmode/services/services.service.php:361
+msgid "Dynamic elements are not affected by cascade protection"
+msgstr "La protección en cascada no se aplica a los elementos dinámicos"
+
+#: ../../enterprise/godmode/services/services.service.php:511
+msgid "No Services or concrete action"
+msgstr "Sin servicios o acción concreta"
+
+#: ../../enterprise/godmode/services/services.service.php:530
+msgid "Random name"
+msgstr "Nombre aleatorio"
+
+#: ../../enterprise/godmode/services/services.service.php:562
+#: ../../enterprise/godmode/massive/massive_create_services.php:659
+msgid ""
+"This group will be used also to control access to this service and its "
+"elements."
+msgstr ""
+"Este grupo se usará también para controlar el acceso a este servicio y a sus "
+"elementos."
+
+#: ../../enterprise/godmode/services/services.service.php:578
+msgid "Server assigned"
+msgstr "Servidor asignado"
+
+#: ../../enterprise/godmode/services/services.service.php:579
+msgid "Selected Prediction server will be assigned to evaluate the service."
+msgstr ""
+"Se asignará el servidor de predicción seleccionado para evaluar el servicio"
+
+#: ../../enterprise/godmode/services/services.service.php:600
+msgid "Evaluation interval"
+msgstr "Intervalo de evaluación"
+
+#: ../../enterprise/godmode/services/services.service.php:626
+#: ../../enterprise/godmode/massive/massive_create_services.php:674
+msgid "Agent to store data"
+msgstr "Agentes para almacenar datos"
+
+#: ../../enterprise/godmode/services/services.service.php:668
+#: ../../enterprise/godmode/massive/massive_create_services.php:716
+msgid "In smart mode, thresholds are percentual."
+msgstr "En modo inteligente, los umbrales son porcentuales"
+
+#: ../../enterprise/godmode/services/services.service.php:718
+#: ../../enterprise/godmode/massive/massive_create_services.php:799
+msgid "Unknown elements as critical"
+msgstr "Elementos desconocidos como críticos"
+
+#: ../../enterprise/godmode/services/services.service.php:748
+#: ../../enterprise/godmode/massive/massive_create_services.php:829
+msgid "Cascade protection enabled"
+msgstr "Protección en cascada habilitada"
+
+#: ../../enterprise/godmode/services/services.service.php:758
+msgid "General Data"
+msgstr "Datos generales"
+
+#: ../../enterprise/godmode/services/services.service.php:768
+#: ../../enterprise/godmode/massive/massive_create_services.php:842
+msgid "Calculate continuous SLA"
+msgstr "Calcular SLA continuo"
+
+#: ../../enterprise/godmode/services/services.service.php:778
+#: ../../enterprise/godmode/massive/massive_create_services.php:852
+msgid "S.L.A. interval"
+msgstr "Intervalo SLA"
+
+#: ../../enterprise/godmode/services/services.service.php:792
+#: ../../enterprise/godmode/massive/massive_create_services.php:866
+msgid "S.L.A. limit"
+msgstr "Límite SLA"
+
+#: ../../enterprise/godmode/services/services.service.php:813
+msgid ""
+"Here are described the alert templates, which will use their default actions.\n"
+"\t\tYou can modify the default behaviour editing alerts in the agent who "
+"stores data and alert definitions about the service and the SLA status."
+msgstr ""
+"Aquí se describen las plantillas de alertas, que utilizarán sus acciones por "
+"defecto.\n"
+"\t\tPuedes modificar el comportambiento de las alertas de edición de "
+"comportamiento por defecto en el agente que almacena definiciones de datos y "
+"alerta sobre el servicio y el estado de SLA."
+
+#: ../../enterprise/godmode/services/services.service.php:839
+#: ../../enterprise/godmode/massive/massive_create_services.php:896
+msgid "Warning service alert"
+msgstr "Alerta de servicio en advertencia"
+
+#: ../../enterprise/godmode/services/services.service.php:851
+#: ../../enterprise/godmode/massive/massive_create_services.php:908
+msgid "Critical service alert"
+msgstr "Alerta de servicio en crítico"
+
+#: ../../enterprise/godmode/services/services.service.php:863
+#: ../../enterprise/godmode/massive/massive_create_services.php:920
+msgid "Unknown service alert"
+msgstr "Alerta de servicio en desconocido"
+
+#: ../../enterprise/godmode/services/services.service.php:875
+#: ../../enterprise/godmode/massive/massive_create_services.php:932
+msgid "S.L.A. critical service alert"
+msgstr "Alerta de servicio en crítico de S.L.A"
+
+#: ../../enterprise/godmode/services/services.service.php:970
+msgid ""
+"This change in the service configuration will delete the history of the "
+"service modules. Do you wish to continue?"
+msgstr ""
+"Este cambio en la configuración del servicio borrará el historial de módulos "
+"de servicio. ¿Desea contiinuar?"
+
+#: ../../enterprise/godmode/services/services.service.php:972
+msgid ""
+"This change in the service configuration will prevent the SLA modules from "
+"being created. Do you wish to continue?"
+msgstr ""
+"Este cambio en la configuración del servicio impedirá que se creen módulos "
+"SLA. ¿Desea continuar?"
+
+#: ../../enterprise/godmode/services/services.massive.meta.php:56
+#: ../../enterprise/godmode/services/services.massive.elements.php:93
+#: ../../godmode/massive/massive_edit_agents.php:952
+#: ../../godmode/agentes/agent_manager.php:502
+msgid "Not available"
+msgstr "No disponible"
+
+#: ../../enterprise/godmode/services/services.massive.elements.php:56
+#: ../../enterprise/godmode/massive/massive_operations.php:157
+msgid "Bulk service elements adition"
+msgstr "Adición de elementos de servicio masivos"
+
+#: ../../enterprise/godmode/services/services.massive.elements.php:57
+#: ../../enterprise/godmode/massive/massive_operations.php:159
+msgid "Bulk service elements deletion"
+msgstr "Eliminación masiva de elementos de servicio"
+
+#: ../../enterprise/godmode/services/services.massive.elements.php:61
+#: ../../enterprise/godmode/massive/massive_operations.php:158
+msgid "Bulk service elements edition"
+msgstr "Edición de elementos de servicio masivos"
+
+#: ../../enterprise/godmode/reporting/visual_console_template.php:63
+#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:62
+#: ../../godmode/reporting/map_builder.php:75
+#: ../../godmode/reporting/map_builder.php:121
+#: ../../godmode/reporting/visual_console_favorite.php:72
+msgid "Visual Console List"
+msgstr "Lista de la consola visual"
+
+#: ../../enterprise/godmode/reporting/visual_console_template.php:75
+#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:74
+#: ../../godmode/reporting/map_builder.php:87
+#: ../../godmode/reporting/visual_console_favorite.php:84
+msgid "Visual Favourite Console"
+msgstr "Consola visual favorita"
+
+#: ../../enterprise/godmode/reporting/visual_console_template.php:88
+#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:87
+#: ../../godmode/reporting/map_builder.php:100
+#: ../../godmode/reporting/visual_console_favorite.php:97
+msgid "Visual Console Template"
+msgstr "Plantilla de la consola visual"
+
+#: ../../enterprise/godmode/reporting/visual_console_template.php:100
+#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:99
+#: ../../godmode/reporting/map_builder.php:112
+#: ../../godmode/reporting/visual_console_favorite.php:109
+msgid "Visual Console Template Wizard"
+msgstr "Asistente de plantilla de consola visual"
+
+#: ../../enterprise/godmode/reporting/visual_console_template.php:141
+#: ../../enterprise/godmode/reporting/visual_console_template.php:157
+msgid "visual console has not been selected"
+msgstr "no se ha seleccionado consola visual"
+
+#: ../../enterprise/godmode/reporting/visual_console_template.php:147
+msgid "Error. Error created template"
+msgstr "Error. Error al crear la plantilla"
+
+#: ../../enterprise/godmode/reporting/visual_console_template.php:149
+msgid "Error. Template name cannot be repeated"
+msgstr "Error. El nombre de la plantilla no se puede repetir"
+
+#: ../../enterprise/godmode/reporting/visual_console_template.php:151
+msgid "Successfully created template"
+msgstr "Plantilla creada correctamente"
+
+#: ../../enterprise/godmode/reporting/visual_console_template.php:163
+msgid "Error. Error delete template"
+msgstr "Error. Error al borrar plantilla"
+
+#: ../../enterprise/godmode/reporting/visual_console_template.php:165
+msgid "Successfully delete template"
+msgstr "Plantilla borrada correctamente"
+
+#: ../../enterprise/godmode/reporting/visual_console_template.php:187
+msgid "Create From"
+msgstr "Crear desde"
+
+#: ../../enterprise/godmode/reporting/visual_console_template.php:198
+msgid "There is not any visual console created. Please, create one firstly."
+msgstr "No hay consolas visuales creadas. Cree una primero."
+
+#: ../../enterprise/godmode/reporting/visual_console_template.php:254
+#: ../../enterprise/godmode/reporting/graph_template_list.php:257
+#: ../../enterprise/godmode/reporting/reporting_builder.template.php:166
+#: ../../enterprise/godmode/reporting/reporting_builder.template.php:667
+msgid "Create template"
+msgstr "Crear plantilla"
+
+#: ../../enterprise/godmode/reporting/visual_console_template.php:260
+msgid "Create New Template"
+msgstr "Crear nueva plantilla"
+
+#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:108
+msgid "Template Wizard"
+msgstr "Asistente de plantillas"
+
+#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:156
+#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:198
+msgid "Sucessfully applied"
+msgstr "Aplicado correctamente"
+
+#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:158
+#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:200
+msgid "Could not be applied"
+msgstr "No se pudo aplicar."
+
+#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:200
+msgid "Visual console name"
+msgstr "Nombre de la consola visual"
+
+#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:200
+msgid ""
+"You can use macro _agentalias_ here. Left in blank if you want to use default "
+"name: Template name - agent alias"
+msgstr ""
+"Puede usar macro _agentalias_ aquí. En caso de estar vacío, use el nombre por "
+"defecto: Nombre de plantilla - alias de agente"
+
+#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:236
+#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:288
+msgid "Target group"
+msgstr "Grupo objetivo"
+
+#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:281
+#: ../../enterprise/godmode/reporting/graph_template_wizard.php:228
+#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:415
+#: ../../enterprise/godmode/reporting/reporting_builder.template.php:832
+msgid "Agents available"
+msgstr "Agentes disponibles"
+
+#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:287
+#: ../../enterprise/godmode/reporting/graph_template_wizard.php:234
+#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:425
+#: ../../enterprise/godmode/reporting/reporting_builder.template_editor.php:208
+#: ../../enterprise/godmode/reporting/reporting_builder.template.php:834
+msgid "Agents to apply"
+msgstr "Agentes para aplicar"
+
+#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:304
+#: ../../enterprise/godmode/reporting/graph_template_wizard.php:259
+#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:466
+msgid "Add agents to template"
+msgstr "Añadir agentes a la plantilla"
+
+#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:306
+#: ../../enterprise/godmode/reporting/graph_template_wizard.php:263
+#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:478
+msgid "Undo agents to template"
+msgstr "Deshacer añadir agentes a la plantilla"
+
+#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:324
+#: ../../enterprise/godmode/reporting/graph_template_wizard.php:281
+#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:499
+msgid "Apply template"
+msgstr "Aplicar plantilla"
+
+#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:631
+#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:661
+#: ../../enterprise/godmode/reporting/graph_template_wizard.php:443
+#: ../../enterprise/godmode/reporting/graph_template_wizard.php:475
+#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:830
+#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:861
+msgid "Please set template distinct than "
+msgstr "Por favor, introduce una plantilla distinta a "
+
+#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:635
+#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:834
+msgid "Please set agent distinct than "
+msgstr "Por favor, escoge un agente distinto a "
+
+#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:656
+#: ../../enterprise/godmode/reporting/graph_template_wizard.php:470
+#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:856
+msgid ""
+"This will be delete all reports created in previous template applications. Do "
+"you want to continue?"
+msgstr ""
+"Esta acción eliminará todos los informes creados en aplicaciones anteriores de "
+"plantillas. ¿Quieres continuar?"
+
+#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:207
+#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:226
+#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:245
+#: ../../godmode/reporting/reporting_builder.list_items.php:378
+#: ../../godmode/reporting/reporting_builder.list_items.php:397
+#: ../../godmode/reporting/reporting_builder.list_items.php:416
+msgid "Ascendent"
+msgstr "Ascencente"
+
+#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:214
+#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:233
+#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:252
+#: ../../godmode/reporting/reporting_builder.list_items.php:385
+#: ../../godmode/reporting/reporting_builder.list_items.php:404
+#: ../../godmode/reporting/reporting_builder.list_items.php:420
+msgid "Descent"
+msgstr "Descendente"
+
+#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:258
+#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:215
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1722
+#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:111
+#: ../../godmode/reporting/reporting_builder.list_items.php:424
+#: ../../godmode/reporting/create_container.php:364
+#: ../../godmode/reporting/create_container.php:473
+#: ../../godmode/reporting/create_container.php:527
+#: ../../godmode/reporting/reporting_builder.item_editor.php:1212
+msgid "Time lapse"
+msgstr "Intervalo de tiempo"
+
+#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:259
+#: ../../godmode/reporting/reporting_builder.list_items.php:425
+msgid "Name or Description"
+msgstr "Nombre o descripción"
+
+#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:312
+#: ../../godmode/netflow/nf_item_list.php:228
+#: ../../godmode/netflow/nf_item_list.php:230
+msgid "Move to up"
+msgstr "Subir"
+
+#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:325
+#: ../../godmode/netflow/nf_item_list.php:226
+#: ../../godmode/netflow/nf_item_list.php:231
+msgid "Move to down"
+msgstr "Bajar"
+
+#: ../../enterprise/godmode/reporting/aws_view.php:53
+msgid "Instance"
+msgstr "Instancia"
+
+#: ../../enterprise/godmode/reporting/aws_view.php:55
+msgid "IO read"
+msgstr "Lectura IO"
+
+#: ../../enterprise/godmode/reporting/aws_view.php:56
+msgid "IO write"
+msgstr "Escritura IO"
+
+#: ../../enterprise/godmode/reporting/aws_view.php:57
+msgid "Disk read"
+msgstr "Lectura de disco"
+
+#: ../../enterprise/godmode/reporting/aws_view.php:58
+msgid "Disk write"
+msgstr "Escritura en disco"
+
+#: ../../enterprise/godmode/reporting/aws_view.php:59
+msgid "Network in"
+msgstr "Entrada de red"
+
+#: ../../enterprise/godmode/reporting/aws_view.php:60
+msgid "Network out"
+msgstr "Salida de red"
+
+#: ../../enterprise/godmode/reporting/aws_view.php:134
+msgid "Failed to retrieve AWS information using selected account."
+msgstr ""
+"No se ha podido obtener información de AWS a través de la cuenta seleccionada."
+
+#: ../../enterprise/godmode/reporting/aws_view.php:153
+msgid "AWS credentials not validated."
+msgstr "No se han validado los credenciales de AWS."
+
+#: ../../enterprise/godmode/reporting/aws_view.php:168
+msgid "Discovery Cloud: AWS"
+msgstr "Discovery Cloud: AWS"
+
+#: ../../enterprise/godmode/reporting/aws_view.php:177
+msgid "Please, select an account: "
+msgstr "Seleccione una cuenta: "
+
+#: ../../enterprise/godmode/reporting/aws_view.php:186
+msgid "CREATE CLOUD MONITORING DISCOVERY TASK"
+msgstr "CREAR TAREA DE DISCOVERY DE MONITORIZACIÓN EN LA NUBE"
+
+#: ../../enterprise/godmode/reporting/aws_view.php:189
+msgid ""
+"Within this view you will find information collected using Discovery Cloud AWS "
+"task. You will be able to see the most relevant information about your "
+"infrastructure, such as the current cost of your contracted services, the "
+"number of instances per region or resource usage metrics. In order to collect "
+"this information you must create a Cloud Monitoring Discovery task."
+msgstr ""
+"En esta vista encontrará la información recogida mediante la tarea de "
+"Discovery Cloud AWS. Podrá ver la información más relevante sobre su "
+"infraestructura, como el coste actual de los servicios contratados, el número "
+"de instancias por región o las métricas de uso de los recursos. Para recoger "
+"esta información, cree una tarea de Cloud Monitoring Discovery."
+
+#: ../../enterprise/godmode/reporting/aws_view.php:192
+msgid "Press the create button to begin."
+msgstr "Pinche en el botón \"crear\" para comenzar."
+
+#: ../../enterprise/godmode/reporting/aws_view.php:221
+msgid "Instance table"
+msgstr "Tabla de instancias"
+
+#: ../../enterprise/godmode/reporting/graph_template_wizard.php:80
+#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:147
+msgid "Cleanup sucessfully"
+msgstr "Limpieza correcta"
+
+#: ../../enterprise/godmode/reporting/graph_template_wizard.php:83
+#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:150
+msgid "Cleanup error"
+msgstr "Error al borrar contenido"
+
+#: ../../enterprise/godmode/reporting/graph_template_wizard.php:127
+#: ../../enterprise/godmode/reporting/graph_template_list.php:111
+#: ../../godmode/reporting/graph_container.php:101
+#: ../../godmode/reporting/graph_container.php:109
+#: ../../godmode/reporting/create_container.php:188
+msgid "Graph container"
+msgstr "Contenedor de gráfica"
+
+#: ../../enterprise/godmode/reporting/graph_template_wizard.php:135
+msgid "Wizard template"
+msgstr "Plantilla de Wizard"
+
+#: ../../enterprise/godmode/reporting/graph_template_wizard.php:197
+#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:266
+msgid "Clean up template"
+msgstr "Vaciar la plantilla"
+
+#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:195
+msgid "No item could be applied to report."
+msgstr "No se ha podido aplicar ningún elemento al informe."
+
+#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:198
+msgid "reports"
+msgstr "Informes"
+
+#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:198
+msgid "items"
+msgstr "elementos"
+
+#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:207
+#: ../../godmode/massive/massive_operations.php:347
+msgid ""
+"In order to perform massive operations, PHP needs a correct configuration in "
+"timeout parameters. Please, open your PHP configuration file (php.ini) for "
+"example: <i>sudo vi /etc/php5/apache2/php.ini;</i><br> And set your timeout "
+"parameters to a correct value: <br><i> max_execution_time = 0</i> and "
+"<i>max_input_time = -1</i>"
+msgstr ""
+"Para poder realizar operaciones masivas, PHP necesitas una configuración "
+"correcta de los parámetros de tiempo de espera. Por favor, abre el archivo de "
+"configuración PHP (php.ini), por ejemplo: <i>sudo vi /etc/php5/apache2/php.ini;"
+"</i><br>y fija los parámetros del tiempo de espera en un valor correcto: "
+"<br><i> max_execution_time = 0</i> y <i>max_input_time = -1</i>"
+
+#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:221
+msgid "Create template report wizard"
+msgstr "Asistente de creación de plantillas de informes"
+
+#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:273
+msgid "Create report per agent"
+msgstr "Crear informe por agente"
+
+#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:282
+msgid ""
+"Left in blank if you want to use default name: Template name - agents (num "
+"agents) - Date"
+msgstr ""
+"Déjalo en blanco si quieres usar el nombre por defecto: Nombre plantilla - "
+"agentes (num agentes) - Fecha"
+
+#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:327
+msgid "Filter by"
+msgstr "Filtrar por"
+
+#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:398
+msgid "Filter tag"
+msgstr "Filtro por etiqueta"
+
+#: ../../enterprise/godmode/reporting/mysql_builder.php:66
+msgid "Custom MySQL template builder"
+msgstr "Creador de plantillas MySQL personalizado"
+
+#: ../../enterprise/godmode/reporting/mysql_builder.php:117
+msgid "Create custom SQL"
+msgstr "Crear SQL personalizado"
+
+#: ../../enterprise/godmode/reporting/mysql_builder.php:128
+#: ../../enterprise/godmode/reporting/mysql_builder.php:146
+msgid "Create new custom"
+msgstr "Crear nueva consulta personalizada"
+
+#: ../../enterprise/godmode/reporting/mysql_builder.php:187
+msgid "List of custom MySQL templates"
+msgstr "Listas de plantillas MySQL personalizadas"
+
+#: ../../enterprise/godmode/reporting/mysql_builder.php:193
+msgid "Template builder"
+msgstr "Creador de plantillas"
+
+#: ../../enterprise/godmode/reporting/mysql_builder.php:212
+msgid "Successfully operation"
+msgstr "Operación realizada correctamente"
+
+#: ../../enterprise/godmode/reporting/mysql_builder.php:212
+msgid "Could not be operation"
+msgstr "La operación no pudo completarse."
+
+#: ../../enterprise/godmode/reporting/mysql_builder.php:214
+msgid "Without changes"
+msgstr "Sin cambios"
+
+#: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:81
+msgid "Advance Reporting"
+msgstr "Informes avanzados"
+
+#: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:97
+msgid "Page orientation"
+msgstr "Orientación de página"
+
+#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:65
+msgid "Graph template item editor"
+msgstr "Editor de elementos de plantilla de gráfico"
+
+#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:206
+msgid "Decrease Weight"
+msgstr "Reducir el peso"
+
+#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:206
+msgid "Increase Weight"
+msgstr "Incrementar el peso"
+
+#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:57
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:196
+#: ../../enterprise/godmode/reporting/reporting_builder.global.php:51
+#: ../../godmode/reporting/reporting_builder.item_editor.php:58
+msgid "Only table"
+msgstr "Solo tabla"
+
+#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:58
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:197
+#: ../../enterprise/godmode/reporting/reporting_builder.global.php:52
+#: ../../godmode/reporting/reporting_builder.item_editor.php:59
+msgid "Table & Graph"
+msgstr "Tabla y gráfico"
+
+#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:59
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:198
+#: ../../enterprise/godmode/reporting/reporting_builder.global.php:53
+#: ../../godmode/reporting/reporting_builder.item_editor.php:60
+msgid "Only graph"
+msgstr "Solo gráfico"
+
+#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:224
+msgid "hourly S.L.A."
+msgstr "SLA por horas"
+
+#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:225
+msgid "Availability Graph S.L.A."
+msgstr "Gráfico de disponibilidad SLA"
+
+#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:291
+#: ../../enterprise/godmode/reporting/reporting_builder.global.php:220
+#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:207
+#: ../../godmode/reporting/visual_console_builder.wizard.php:408
+msgid "If you select several agents, only the common modules will be displayed"
+msgstr "Si selecciona varios agentes, solo se mostrarán los módulos comunes"
+
+#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:305
+#: ../../enterprise/godmode/reporting/reporting_builder.global.php:106
+#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:275
+msgid "Elements to apply"
+msgstr "Elementos para aplicar"
+
+#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:354
+msgid "SLA min value"
+msgstr "Valor mínimo de SLA"
+
+#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:354
+#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:360
+#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:366
+msgid "Enter possible range of values in SLA."
+msgstr "Añada el rango de valores posibles de SLA"
+
+#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:355
+msgid "SLA min Value"
+msgstr "Valor mínimo de SLA"
+
+#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:360
+msgid "SLA max value"
+msgstr "Valor máximo SLA"
+
+#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:361
+msgid "SLA max Value"
+msgstr "Valor máximo SLA"
+
+#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:366
+msgid "SLA Limit %"
+msgstr "Límite % SLA"
+
+#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:367
+msgid "SLA Limit Value"
+msgstr "Valor límite de SLA"
+
+#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:372
+msgid "Dynamic SLA"
+msgstr "SLA dinámico"
+
+#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:379
+msgid "Inverse SLA"
+msgstr "SLA inverso"
+
+#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:388
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3030
+#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:448
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3077
+msgid "Failover mode"
+msgstr "Modo conmutación"
+
+#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:389
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3031
+#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:449
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3078
+msgid ""
+"SLA calculation must be performed taking into account the failover modules "
+"assigned to the primary module"
+msgstr ""
+"El SLA debe calcularse teniendo en cuenta los módulos de conmutación asignados "
+"al módulo primario"
+
+#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:406
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3050
+#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:466
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3097
+msgid "Failover type"
+msgstr "Tipo de conmutación"
+
+#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:411
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3055
+#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:471
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3102
+msgid "Failover normal"
+msgstr "Conmutación normal"
+
+#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:423
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3067
+#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:483
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3114
+msgid "Failover simple"
+msgstr "Conmutación simple"
+
+#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:436
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2965
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3022
+msgid "SLA items sorted by fulfillment value"
+msgstr "Elementos de SLA ordenados por valor rellenado"
+
+#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:441
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1816
+#: ../../godmode/reporting/reporting_builder.item_editor.php:1309
+msgid "Only display wrong SLAs"
+msgstr "Mostrar solo los SLA incorrectos"
+
+#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:447
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2576
+#: ../../enterprise/godmode/reporting/reporting_builder.global.php:438
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2566
+msgid "Show graph"
+msgstr "Mostrar gráfico"
+
+#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:467
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3366
+#: ../../enterprise/godmode/reporting/reporting_builder.global.php:465
+#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:783
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3427
+msgid "Show item in landscape format (only PDF)"
+msgstr "Mostrar elemento en formato apaisado (solo PDF)"
+
+#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:481
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3375
+#: ../../enterprise/godmode/reporting/reporting_builder.global.php:481
+#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:799
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3436
+msgid "Page break at the end of the item (only PDF)"
+msgstr "Salto de página después del elemento (solo PDF)"
+
+#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:520
+msgid "Please introduce a SLA max value higher than the SLA min value"
+msgstr "Añada un valor máx. de SLA mayor que el valor mín. del SLA"
+
+#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:644
+msgid "Dynamic SLA can not be Inverse"
+msgstr "El SLA dinámico no puede ser inverso"
+
+#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:649
+msgid "Check Dynamic SLA or introduce a max and min SLA value"
+msgstr "Compruebe el SLA dinámico o añada un nuevo valor SLA mín. y máx."
+
+#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:653
+msgid "SLA Limit value is needed"
+msgstr "Se necesita un valor límite de SLA."
+
+#: ../../enterprise/godmode/reporting/graph_template_editor.php:58
+msgid "Not created. Blank name"
+msgstr "No creado. Nombre vacío."
+
+#: ../../enterprise/godmode/reporting/graph_template_editor.php:94
+msgid "Graph template editor"
+msgstr "Editor de plantillas gráficas"
+
+#: ../../enterprise/godmode/reporting/graph_template_editor.php:173
+msgid "Template updated successfully"
+msgstr "Plantilla actualizada correctamente"
+
+#: ../../enterprise/godmode/reporting/graph_template_editor.php:219
+msgid "3 hours"
+msgstr "3 horas"
+
+#: ../../enterprise/godmode/reporting/graph_template_editor.php:223
+#: ../../godmode/setup/performance.php:532
+msgid "2 days"
+msgstr "2 días"
+
+#: ../../enterprise/godmode/reporting/graph_template_editor.php:224
+msgid "4 days"
+msgstr "4 días"
+
+#: ../../enterprise/godmode/reporting/graph_template_editor.php:225
+#: ../../godmode/setup/performance.php:534
+msgid "Last week"
+msgstr "Última semana"
+
+#: ../../enterprise/godmode/reporting/graph_template_editor.php:227
+#: ../../godmode/setup/performance.php:536
+msgid "Last month"
+msgstr "Último mes"
+
+#: ../../enterprise/godmode/reporting/graph_template_editor.php:228
+msgid "2 months"
+msgstr "2 meses"
+
+#: ../../enterprise/godmode/reporting/graph_template_editor.php:239
+msgid "Stacked"
+msgstr "Apilado"
+
+#: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:115
+msgid "Advance Options"
+msgstr "Opciones avanzadas"
+
+#: ../../enterprise/godmode/reporting/graph_template_list.php:119
+msgid "Graph template management"
+msgstr "Gestión de plantillas gráficas"
+
+#: ../../enterprise/godmode/reporting/graph_template_list.php:203
+#: ../../enterprise/godmode/reporting/reporting_builder.template.php:497
+#: ../../godmode/alerts/alert_list.list.php:56
+msgid "Template name"
+msgstr "Nombre de la plantilla"
+
+#: ../../enterprise/godmode/reporting/graph_template_list.php:252
+msgid "There are no defined graph templates"
+msgstr "No hay plantillas gráficas definidas"
+
+#: ../../enterprise/godmode/reporting/reporting_builder.template_editor.php:170
+#: ../../enterprise/godmode/reporting/reporting_builder.template.php:107
+#: ../../enterprise/godmode/reporting/reporting_builder.template.php:131
+#: ../../enterprise/godmode/reporting/reporting_builder.template.php:193
+msgid "Edit template"
+msgstr "Editar plantilla"
+
+#: ../../enterprise/godmode/reporting/reporting_builder.template_editor.php:209
+#: ../../enterprise/godmode/reporting/reporting_builder.template.php:903
+msgid ""
+"Case insensitive regular expression for agent alias. For example: Network.* "
+"will match with the following agent alias: network_agent1, NetworK CHECKS"
+msgstr ""
+"Expresión regular que no distingue mayúsculas ni minúsculas para el alias de "
+"agente. Por ejemplo: Network.* coincidirá con los siguientes alias de agente: "
+"network_agent1, NetworK CHECKS"
+
+#: ../../enterprise/godmode/reporting/reporting_builder.template_editor.php:222
+#: ../../godmode/reporting/reporting_builder.main.php:226
+msgid "Generate cover page in PDF render"
+msgstr "Generar portada en formato PDF"
+
+#: ../../enterprise/godmode/reporting/reporting_builder.template_editor.php:230
+#: ../../godmode/reporting/reporting_builder.main.php:234
+msgid "Generate index in PDF render"
+msgstr "Generar índice en formato PDF"
+
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1624
+#: ../../godmode/reporting/reporting_builder.php:3660
+msgid "Successfull action"
+msgstr "Acción completada"
+
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1625
+#: ../../godmode/servers/modificar_server.php:157
+#: ../../godmode/servers/modificar_server.php:168
+msgid "Unsuccessfull action"
+msgstr "No se pudo completar la acción"
+
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1642
+#: ../../godmode/reporting/reporting_builder.item_editor.php:972
+msgid "Item Editor"
+msgstr "Editor de elemento"
+
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1744
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:4993
+#: ../../enterprise/godmode/reporting/reporting_builder.global.php:194
+#: ../../enterprise/godmode/reporting/reporting_builder.global.php:797
+#: ../../godmode/reporting/reporting_builder.item_editor.php:1237
+#: ../../godmode/reporting/reporting_builder.item_editor.php:6945
+msgid ""
+"Warning: period 0 reports cannot be used to show information back in time. "
+"Information contained in this kind of reports will be always reporting the "
+"most recent information"
+msgstr ""
+"Advertencia: los informes en período 0 no pueden mostrar la información "
+"pasada. La información contenida en este tipo de informes mostrará siempre la "
+"información más reciente."
+
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1784
+#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:759
+#: ../../godmode/reporting/reporting_builder.item_editor.php:1277
+msgid "Projection period"
+msgstr "Período de proyección"
+
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1803
+#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:734
+#: ../../godmode/reporting/reporting_builder.item_editor.php:1296
+msgid "Data range"
+msgstr "Rango de datos"
+
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1830
+#: ../../godmode/reporting/reporting_builder.item_editor.php:1323
+msgid "Current month"
+msgstr "Mes actual"
+
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1840
+#: ../../godmode/reporting/reporting_builder.item_editor.php:1339
+msgid "Working time"
+msgstr "Tiempo de trabajo"
+
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1905
+#: ../../godmode/reporting/reporting_builder.item_editor.php:1405
+msgid "Time from"
+msgstr "Hora desde"
+
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1923
+#: ../../godmode/reporting/reporting_builder.item_editor.php:1423
+msgid "Time to"
+msgstr "Hora hasta"
+
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1941
+#: ../../godmode/reporting/reporting_builder.item_editor.php:1441
+msgid "Show 24x7 item"
+msgstr "Mostrar elementos 24/7"
+
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1971
+msgid "Select server"
+msgstr "Seleccionar servidor"
+
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1985
+#: ../../godmode/reporting/reporting_builder.item_editor.php:189
+msgid "Local metaconsole"
+msgstr "Metaconsola local"
+
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2056
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3632
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3864
+msgid ""
+"Case insensitive regular expression or string for module name. For example: if "
+"you use this field with \"Module exact match\" enabled then this field has to "
+"be fulfilled with the literally string of the module name, if not you can use "
+"a regular expression. Example: .*usage.* will match: cpu_usage, vram usage in "
+"matchine 1."
+msgstr ""
+"Expresión regular, no sensible a mayúsculas/minúsculas, para buscar el módulo. "
+"Por ejemplo: si usas este campo con \"Coincidencia exacta de módulo\" "
+"activado, entonces este campo tiene que rellenarse con la cadena literal del "
+"nombre del módulo. Si no, usará una expresión regular, por ejemplo: .*usage.* "
+"coincidiría con : cpu_usage, vram usage in machine 1."
+
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2078
+msgid "Module exact match"
+msgstr "Coincidencia exacta de módulo"
+
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2079
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3564
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3640
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3788
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3871
+msgid "Check it if you want to match module name literally"
+msgstr ""
+"Actívala si quieres que haya una coincidencia exacta y literal en el nombre "
+"del módulo."
+
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2095
+msgid "Case insensitive regular expression or string for templates name."
+msgstr ""
+"Expresión regular o cadena sin sensibilidad de mayúsculas y minúsculas para el "
+"nombre de las plantillas."
+
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2118
+msgid "Case insensitive regular expression or string for actions name."
+msgstr ""
+"Expresión regular o cadena sin sensibilidad de mayúsculas y minúsculas para el "
+"nombre de las acciones."
+
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2140
+msgid "Hide items without data"
+msgstr "Ocultar elementos sin datos"
+
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2141
+msgid "Check it if you want not show items without data"
+msgstr "Marcar si no quieres que muestre elementos sin datos"
+
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2198
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2237
+msgid "Max items"
+msgstr "Número máximo de elementos"
+
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2215
+#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:770
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2249
+msgid "Serialized header"
+msgstr "Cabecera serializada"
+
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2216
+#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:770
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2250
+msgid "The separator character is |"
+msgstr "El carácter separador es |"
+
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2231
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2202
+msgid "Custom SQL template"
+msgstr "Plantilla SQL personalizada"
+
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2252
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2223
+msgid "The entities of the fields that contain them must be included."
+msgstr "Las entidades de los campos que los contienen deben estar incluidas."
+
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2277
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2280
+msgid "Protocol must be specified in URL (e.g.: \"https://\")"
+msgstr ""
+"El protocolo debe estar especificado en la URL (por ejemplo: \"https://\")"
+
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2283
+#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:774
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2286
+msgid "Field separator"
+msgstr "Separador de campo"
+
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2284
+#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:774
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2287
+msgid "Separator for different fields in the serialized text chain"
+msgstr "Separador para diferentes campos en la cadena de texto serializada"
+
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2304
+#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:778
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2307
+msgid "Line separator"
+msgstr "Separador de línea"
+
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2305
+#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:778
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2308
+msgid ""
+"Separator in different lines (composed by fields) of the serialized text chain"
+msgstr ""
+"Separador en diferentes líneas (compuestas por campos) de la cadena de texto "
+"serializada"
+
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2325
+#: ../../enterprise/godmode/reporting/reporting_builder.global.php:313
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2328
+msgid "Group by agent"
+msgstr "Agrupar por agente"
+
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2341
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3392
+msgid "Group by"
+msgstr "Agrupar por"
+
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2375
+#: ../../enterprise/godmode/reporting/reporting_builder.global.php:325
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2998
+msgid "Show in the same row"
+msgstr "Mostrar en la misma fila"
+
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2377
+#: ../../enterprise/godmode/reporting/reporting_builder.global.php:326
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3000
+msgid "Show one module per row with all its operations"
+msgstr "Mostrar un módulo por fila con todas sus operaciones"
+
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2469
+#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:523
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2432
+msgid "Graph render"
+msgstr "Representar en gráfica"
+
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2475
+#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:529
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2438
+msgid "Avg, max & min"
+msgstr "Media, máx. y mín."
+
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2476
+#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:530
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2439
+msgid "Max only"
+msgstr "Solo máx."
+
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2477
+#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:531
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2440
+msgid "Min only"
+msgstr "Solo mín."
+
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2478
+#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:532
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2441
+msgid "Avg only"
+msgstr "Solo media"
+
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2491
+#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:559
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2487
+msgid "Full resolution graph (TIP)"
+msgstr "Gráfica a resolución completa (TIP)"
+
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2503
+#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:577
+msgid ""
+"If this option was checked, only adding in elements that type of modules "
+"support this option."
+msgstr ""
+"Si se marca esta casilla, la opción solo es posible si se añaden este tipo de "
+"módulos."
+
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2533
+#: ../../enterprise/godmode/reporting/reporting_builder.global.php:417
+#: ../../enterprise/godmode/alerts/alert_inventory_builder.php:215
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2542
+msgid "Condition"
+msgstr "Condición"
+
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2543
+#: ../../enterprise/godmode/reporting/reporting_builder.global.php:424
+msgid ">="
+msgstr ">="
+
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2550
+#: ../../enterprise/godmode/reporting/reporting_builder.global.php:426
+msgid "<"
+msgstr "<"
+
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2590
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2580
+msgid "Select fields to show"
+msgstr "Seleccionar campos a mostrar"
+
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2669
+#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:354
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2656
+msgid "Show address instead module name"
+msgstr "Mostrar la dirección en lugar del nombre del módulo"
+
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2670
+#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:355
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2657
+msgid "Show the main address of agent."
+msgstr "Mostrar la dirección principal del agente"
+
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2689
+#: ../../enterprise/godmode/reporting/reporting_builder.global.php:450
+#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:332
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2676
+msgid "Show resume"
+msgstr "Mostrar resumen"
+
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2690
+#: ../../enterprise/godmode/reporting/reporting_builder.global.php:450
+msgid ""
+"Show a resume table with max, min, average of total modules on the report "
+"bottom"
+msgstr ""
+"Mostrar una tabla resumen con el máximo, el mínimo y la media de los módulos "
+"totales al final del informe"
+
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2708
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2696
+msgid "<p class= \"mrgn_lft_15px\">Select fields to show</p>"
+msgstr "<p class= \"mrgn_lft_15px\">Seleccione campos a mostrar</p>"
+
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2756
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2756
+msgid "<p class=\"mrgn_lft_15px\">Select fields to show</p>"
+msgstr "<p class=\"mrgn_lft_15px\">Seleccione campos a mostrar</p>"
+
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2772
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2772
+msgid "Agent min values"
+msgstr "Valores mínimos de agente"
+
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2784
+#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:591
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2785
+msgid "Show Summary group"
+msgstr "Mostrar el resumen del grupo"
+
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2801
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3375
+msgid "Show Summary"
+msgstr "Mostrar resumen"
+
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2870
+#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:655
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2871
+msgid "Event Status"
+msgstr "Estado del evento"
+
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2901
+#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:685
+msgid "By agent"
+msgstr "Por agente"
+
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2911
+#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:695
+msgid "By user validator"
+msgstr "Por usuario que validó"
+
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2921
+#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:705
+msgid "By criticity"
+msgstr "Por gravedad"
+
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2931
+#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:715
+msgid "Validated vs unvalidated"
+msgstr "Validados vs sin validar"
+
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2945
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2979
+msgid "Height (dynamic graphs)"
+msgstr "Altura (gráficos dinámicos)"
+
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2985
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2963
+msgid "Query History Database"
+msgstr "Base de datos histórica de consultas"
+
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2997
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3044
+msgid "Priority mode"
+msgstr "Modo de prioridad"
+
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3002
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3049
+msgid "Priority ok mode"
+msgstr "Modo de prioridad ok"
+
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3014
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3061
+msgid "Priority unknown mode"
+msgstr "Modo de prioridad desconocido"
+
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3104
+msgid "Modules to match"
+msgstr "Módulos a comparar"
+
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3106
+msgid "Select the modules to match when create a report for agents"
+msgstr "Selecciona los módulos a comparar al crear el informe para cada agente."
+
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3206
+msgid "Modules to match (Free text)"
+msgstr "Módulos a comparar (texto libre)"
+
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3208
+msgid "Free text to filter the modules of agents when apply this template."
+msgstr ""
+"Texto libre para filtrar los módulos de los agentes cuando se usa esta "
+"plantilla."
+
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3225
+msgid "Create a graph for each agent"
+msgstr "Crear un gráfico por cada agente"
+
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3227
+msgid ""
+"If it is checked, the regexp or name of modules match only each to each to "
+"agent, instead create a big graph with all modules from all agents."
+msgstr ""
+"Si se activa, la expresión regular o el nombre de módulo hará coincidencia en "
+"cada módulo de cada agente, y creará un gráfico que contenga módulos de todos "
+"los agentes."
+
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3254
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3169
+msgid "Calculate for custom intervals"
+msgstr "Calcular intervalos personalizados"
+
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3266
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3181
+msgid "Time lapse intervals"
+msgstr "Intervalos de tiempo transcurrido"
+
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3268
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3184
+msgid ""
+"Lapses of time in which the period is divided to make more precise calculations"
+msgstr ""
+"Lapsos de tiempo en los que el intervalo se divide para obtener cálculos más "
+"precisos"
+
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3313
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3225
+msgid "Table only"
+msgstr "Solo tabla"
+
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3323
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3236
+msgid "Graph only"
+msgstr "Solo gráfico"
+
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3333
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3247
+msgid "Graph and table"
+msgstr "Gráfico y tabla"
+
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3350
+#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:816
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3264
+msgid "Uncompress module"
+msgstr "Descomprimir módulo"
+
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3351
+#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:817
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3265
+msgid "Use uncompressed module data."
+msgstr "Utilizar datos de módulos descomprimidos"
+
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3382
+#: ../../godmode/reporting/reporting_builder.item_editor.php:1165
+msgid "Filter by network"
+msgstr "Filtrar por red"
+
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3412
+#: ../../godmode/reporting/reporting_builder.item_editor.php:1184
+msgid "Show alive IPs only"
+msgstr "Mostrar solo IPs vivas"
+
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3425
+#: ../../godmode/reporting/reporting_builder.item_editor.php:1197
+msgid "Show IPs not assigned to an agent"
+msgstr "Mostrar IP no asignadas a un agente"
+
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3451
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3699
+#: ../../godmode/netflow/nf_item_list.php:282
+msgid "Create item"
+msgstr "Crear elemento"
+
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3509
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3793
+msgid "SLA Min. (value)"
+msgstr "Valor mínimo para el SLA"
+
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3514
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3798
+msgid "SLA Max. (value)"
+msgstr "Valor máximo para el SLA"
+
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3519
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3803
+msgid "SLA Limit (%)"
+msgstr "Límite (%) para el SLA"
+
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3536
+msgid "Please save the SLA template for start to add items in this list."
+msgstr ""
+"Por favor, guarda la plantilla SLA para empezar a añadir elementos a la lista."
+
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3577
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3804
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:4249
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:4394
+msgid "Not literally"
+msgstr "No literal"
+
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3623
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3855
+msgid ""
+"Case insensitive regular expression for agent name. For example: Network* will "
+"match with the following agent names: network_agent1, NetworK CHECKS"
+msgstr ""
+"Expresión regular no sensible a mayúsculas. Por ejemplo: Network* hará "
+"coincidencia con los siguientes nombres de módulos: network_agent1, NetworK "
+"CHECKS"
+
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3639
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3870
+msgid "Literal module name forced"
+msgstr "Nombre de módulo literal forzado"
+
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3760
+msgid "Please save the template to start adding items into the list."
+msgstr ""
+"Por favor, guarda la plantilla para empezar a añadir elementos a la lista."
+
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:4275
+msgid "Name and SLA limit should not be empty"
+msgstr "El nombre y el límite SLA no deberían estar vacíos."
+
+#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:150
+#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:151
+msgid "Push the selected services into the list"
+msgstr "Añade los servicios seleccionados a la lista"
+
+#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:161
+#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:162
+msgid "Remove the services from the list"
+msgstr "Elimina los servicios de la lista"
+
+#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:229
+msgid "Icon preview"
+msgstr "Vista previa del icono"
+
+#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:295
+msgid "The services list is empty"
+msgstr "La lista de servicios esta vacía."
+
+#: ../../enterprise/godmode/reporting/reporting_builder.template.php:181
+msgid "List templates"
+msgstr "Lista de plantillas"
+
+#: ../../enterprise/godmode/reporting/reporting_builder.template.php:565
+#: ../../godmode/reporting/reporting_builder.php:1055
+msgid "HTML view"
+msgstr "Vista HTML"
+
+#: ../../enterprise/godmode/reporting/reporting_builder.template.php:573
+#: ../../godmode/reporting/reporting_builder.php:1065
+msgid "Export to XML"
+msgstr "Exportar a XML"
+
+#: ../../enterprise/godmode/reporting/reporting_builder.template.php:661
+msgid "You haven't created templates yet."
+msgstr "Aun no has creado ninguna plantilla."
+
+#: ../../enterprise/godmode/reporting/reporting_builder.template.php:681
+msgid "Generate a dynamic report"
+msgstr "Generar un informe dinámico"
+
+#: ../../enterprise/godmode/reporting/reporting_builder.template.php:765
+msgid "Set start and end date"
+msgstr "Fije la fecha de inicio y conclusión"
+
+#: ../../enterprise/godmode/reporting/reporting_builder.template.php:815
+msgid "Monthly SLA period"
+msgstr "Periodo SLA mensual"
+
+#: ../../enterprise/godmode/reporting/reporting_builder.template.php:815
+msgid "This field only applies in case of Monthly SLA item."
+msgstr "Este campo solo aplica en el caso de un elemento de SLA mensual."
+
+#: ../../enterprise/godmode/reporting/reporting_builder.template.php:865
+msgid "Undo agents"
+msgstr "Anular agentes"
+
+#: ../../enterprise/godmode/reporting/reporting_builder.template.php:902
+msgid "RegEx agent filter"
+msgstr "Filtro de agente RegEx"
+
+#: ../../enterprise/godmode/reporting/reporting_builder.template.php:918
+msgid "Generate"
+msgstr "Generar"
+
+#: ../../enterprise/godmode/reporting/reporting_builder.template.php:1312
+#: ../../enterprise/godmode/reporting/reporting_builder.template.php:1334
+msgid "Please set agent or agent regex distinct than "
+msgstr "Establezca agente o agente regex diferente a "
+
+#: ../../enterprise/godmode/reporting/reporting_builder.template.php:1342
+msgid "It is not a regular expression "
+msgstr "No es una expresión regular "
+
+#: ../../enterprise/godmode/reporting/reporting_builder.template.php:1344
+msgid "No agent matches regular expression "
+msgstr "Ningún agente coincide con la expresión regular "
+
+#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:298
+msgid "Order:"
+msgstr "Orden:"
+
+#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:334
+msgid ""
+"Show a resume table with max, min, average of total modules on the report "
+"bottom:"
+msgstr ""
+"Muestra una tabla de resumen con el máximo, mínimo y media del total de "
+"módulos en la parte inferior del informe:"
+
+#: ../../enterprise/godmode/menu.php:16
+msgid "Manage Satellite Server"
+msgstr "Gestionar servidor Satélite"
+
+#: ../../enterprise/godmode/menu.php:25
+#: ../../enterprise/godmode/massive/massive_operations.php:99
+msgid "Policies operations"
+msgstr "Operaciones de las políticas"
+
+#: ../../enterprise/godmode/menu.php:36
+#: ../../enterprise/godmode/massive/massive_operations.php:75
+msgid "SNMP operations"
+msgstr "Operaciones SNMP"
+
+#: ../../enterprise/godmode/menu.php:48
+#: ../../enterprise/godmode/massive/massive_operations.php:28
+msgid "Satellite operations"
+msgstr "Operaciones Satélite"
+
+#: ../../enterprise/godmode/menu.php:60
+#: ../../enterprise/godmode/massive/massive_operations.php:53
+msgid "Services operations"
+msgstr "Operaciones de servicios"
+
+#: ../../enterprise/godmode/menu.php:72 ../../enterprise/godmode/menu.php:278
+msgid "Duplicate config"
+msgstr "Duplicar configuración"
+
+#: ../../enterprise/godmode/menu.php:81
+#: ../../godmode/agentes/configurar_agente.php:706
+msgid "Network config manager"
+msgstr "Administrador de configuración de red"
+
+#: ../../enterprise/godmode/menu.php:117
+msgid "Manage agent autoconfiguration"
+msgstr "Administrar autoconfiguración"
+
+#: ../../enterprise/godmode/menu.php:174
+msgid "Mysql"
+msgstr "Mysql"
+
+#: ../../enterprise/godmode/menu.php:179
+#: ../../enterprise/godmode/wizards/Applications.class.php:163
+#: ../../enterprise/godmode/wizards/Applications.class.php:171
+msgid "Applications"
+msgstr "Aplicaciones"
+
+#: ../../enterprise/godmode/menu.php:190
+msgid "Amazon Web Services"
+msgstr "Amazon Web Services"
+
+#: ../../enterprise/godmode/menu.php:191
+msgid "Microsoft Azure"
+msgstr "Microsoft Azure"
+
+#: ../../enterprise/godmode/menu.php:192
+msgid "Google Compute Platform"
+msgstr "Google Compute Platform"
+
+#: ../../enterprise/godmode/menu.php:208
+msgid "New console task"
+msgstr "Nueva tarea de consola"
+
+#: ../../enterprise/godmode/menu.php:218
+msgid "Enterprise ACL Setup"
+msgstr "Configuración ACL Enterprise"
+
+#: ../../enterprise/godmode/menu.php:227
+msgid "Skins"
+msgstr "Apariencia"
+
+#: ../../enterprise/godmode/menu.php:237
+msgid "Manage database HA"
+msgstr "Gestionar la base de datos de alta disponibilidad"
+
+#: ../../enterprise/godmode/menu.php:269
+msgid "Log Collector"
+msgstr "Colector de logs"
+
+#: ../../enterprise/godmode/menu.php:287
+msgid "Password policy"
+msgstr "Política de contraseñas"
+
+#: ../../enterprise/godmode/menu.php:331 ../../godmode/setup/setup.php:190
+#: ../../godmode/setup/setup.php:289
+msgid "Module Library"
+msgstr "Biblioteca de módulos"
+
+#: ../../enterprise/godmode/menu.php:339
+#: ../../enterprise/godmode/alerts/alert_inventory.php:78
+#: ../../enterprise/godmode/alerts/alert_inventory.php:80
+msgid "Inventory alerts"
+msgstr "Alertas de inventario"
+
+#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor_form.php:64
+#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:383
+msgid "Custom OID"
+msgstr "OID personalizado"
+
+#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:225
+#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:237
+msgid "Successfully added trap custom values"
+msgstr "Añadidos correctamente a los valores personalizados del trap"
+
+#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:227
+#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:239
+msgid "Error adding trap custom values"
+msgstr "Error al añadir los valores personalizados del trap"
+
+#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:242
+#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:317
+msgid "This custom OID is preexistent."
+msgstr "El OID personalizado ya existe"
+
+#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:283
+msgid "No change in data"
+msgstr "No hay cambios en los datos"
+
+#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:285
+#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:312
+msgid "Successfully updated trap custom values"
+msgstr "Los valores personalizados del trap se han añadido correctamente."
+
+#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:287
+#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:314
+msgid "Error updating trap custom values"
+msgstr "Error al actualizar los valores personalizados del trap"
+
+#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:330
+msgid "Successfully deleted trap custom values"
+msgstr "Valores personalizados del trap eliminados correctamente"
+
+#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:336
+msgid "Error deleting trap custom values"
+msgstr "Error al eliminar valores personalizados del trap"
+
+#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:342
+#, php-format
+msgid "Uploaded %s/%s traps"
+msgstr "Actualizados %s/%s traps"
+
+#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:346
+msgid "Fail uploaded file"
+msgstr "Error al subir el archivo"
+
+#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:351
+msgid ""
+"MIB files will be loaded and searched for SNMP trap definitions. They will not "
+"be installed on the system! You can use the MIB uploader for that purpose."
+msgstr ""
+"Los archivos MIB se cargarán; se buscaron las definiciones de trap SNMP. ¡No "
+"serán instalados en el sistema! Puedes usar el cargador de MIB para "
+"instalarlos."
+
+#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:360
+msgid "Load MIB"
+msgstr "Cargar MIB"
+
+#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:362
+msgid "Upload MIB"
+msgstr "Actualizar MIB"
+
+#: ../../enterprise/godmode/admin_access_logs.php:78
+msgid "Show extended info"
+msgstr "Mostrar más info"
+
+#: ../../enterprise/godmode/admin_access_logs.php:99
+msgid ""
+"The security check cannot be performed. There are no data in tsession_extended "
+"to check the hash."
+msgstr ""
+"La comprobación de seguridad no se puede realizar. No hay datos en "
+"tsession_extended para verificar el hash."
+
+#: ../../enterprise/godmode/admin_access_logs.php:108
+msgid "Security check is ok."
+msgstr "La comprobación de seguridad está OK."
+
+#: ../../enterprise/godmode/admin_access_logs.php:113
+msgid "Security check is fail."
+msgstr "La comprobación de seguridad ha fallado."
+
+#: ../../enterprise/godmode/admin_access_logs.php:208
+msgid "Extended info:"
+msgstr "Información extendida:"
+
+#: ../../enterprise/godmode/admin_access_logs.php:216
+msgid "Changes:"
+msgstr "Cambios:"
+
+#: ../../enterprise/godmode/massive/massive_edit_service_elements.php:65
+#: ../../enterprise/godmode/massive/massive_delete_service_elements.php:67
+#: ../../enterprise/godmode/massive/massive_add_service_elements.php:71
+msgid "You must select a service"
+msgstr "Debe seleccionar un servicio"
+
+#: ../../enterprise/godmode/massive/massive_edit_service_elements.php:131
+msgid "Failed to process updating elements in services: "
+msgstr "Error al procesar la actualización de elementos de los servicios: "
+
+#: ../../enterprise/godmode/massive/massive_edit_service_elements.php:153
+#: ../../enterprise/godmode/massive/massive_delete_service_elements.php:112
+#: ../../enterprise/godmode/massive/massive_add_service_elements.php:251
+#, php-format
+msgid "%d modules"
+msgstr "%d módulos"
+
+#: ../../enterprise/godmode/massive/massive_edit_service_elements.php:161
+#: ../../enterprise/godmode/massive/massive_delete_service_elements.php:120
+#: ../../enterprise/godmode/massive/massive_add_service_elements.php:259
+#, php-format
+msgid "%d agents"
+msgstr "%d agentes"
+
+#: ../../enterprise/godmode/massive/massive_edit_service_elements.php:169
+#: ../../enterprise/godmode/massive/massive_delete_service_elements.php:128
+#: ../../enterprise/godmode/massive/massive_add_service_elements.php:267
+#, php-format
+msgid "%d services"
+msgstr "%d servicios"
+
+#: ../../enterprise/godmode/massive/massive_edit_service_elements.php:176
+#: ../../enterprise/godmode/massive/massive_delete_service_elements.php:135
+#: ../../enterprise/godmode/massive/massive_add_service_elements.php:274
+msgid "No changes made"
+msgstr "No se realizaron cambios"
+
+#: ../../enterprise/godmode/massive/massive_edit_service_elements.php:252
+#: ../../enterprise/godmode/massive/massive_add_service_elements.php:496
+msgid "In smart services weights are automatically calculated."
+msgstr "En el modo inteligente, los pesos se calculan automáticamente."
+
+#: ../../enterprise/godmode/massive/massive_edit_service_elements.php:257
+#: ../../enterprise/godmode/massive/massive_add_service_elements.php:501
+msgid ""
+"Weights configured are common for every item added to the service, if you want "
+"to customize them, please edit each element at service element editor."
+msgstr ""
+"Los pesos configurados son comunes a todos los elementos añadidos al servicio. "
+"Si desea personalizarlos, edite el servicio."
+
+#: ../../enterprise/godmode/massive/massive_edit_service_elements.php:262
+#: ../../enterprise/godmode/massive/massive_add_service_elements.php:506
+#: ../../enterprise/godmode/massive/massive_create_services.php:1148
+msgid "Service items summary"
+msgstr "Resumen de elementos de servicio"
+
+#: ../../enterprise/godmode/massive/massive_edit_service_elements.php:291
+#: ../../enterprise/godmode/massive/massive_add_service_elements.php:535
+#: ../../enterprise/godmode/massive/massive_create_services.php:1177
+msgid "Unknown weight"
+msgstr "Peso desconocido"
+
+#: ../../enterprise/godmode/massive/massive_edit_service_elements.php:304
+#: ../../enterprise/godmode/massive/massive_add_service_elements.php:548
+#: ../../enterprise/godmode/massive/massive_create_services.php:1190
+msgid "Normal weight"
+msgstr "Peso normal"
+
+#: ../../enterprise/godmode/massive/massive_edit_service_elements.php:320
+#: ../../enterprise/godmode/massive/massive_delete_service_elements.php:211
+#: ../../enterprise/godmode/massive/massive_add_service_elements.php:564
+#: ../../enterprise/godmode/massive/massive_create_services.php:1205
+msgid "Selected services"
+msgstr "Servicios seleccionados"
+
+#: ../../enterprise/godmode/massive/massive_edit_service_elements.php:373
+msgid "Update selected service elements"
+msgstr "Actualizar los elementos de servicio seleccionados"
+
+#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:491
+#: ../../godmode/massive/massive_edit_modules.php:554
+msgid "Dynamic Min."
+msgstr "Mínimo dinámico"
+
+#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:732
+#: ../../godmode/massive/massive_edit_modules.php:796
+msgid "SMNP community"
+msgstr "Comunidad SMNP"
+
+#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:742
+#: ../../godmode/massive/massive_edit_modules.php:806
+#: ../../godmode/agentes/module_manager_editor_network.php:227
+msgid "SNMP OID"
+msgstr "SNMP OID"
+
+#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:804
+#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:808
+#: ../../godmode/massive/massive_edit_modules.php:861
+#: ../../godmode/massive/massive_edit_modules.php:865
+#: ../../godmode/wizards/HostDevices.class.php:1272
+#: ../../godmode/wizards/HostDevices.class.php:1303
+#: ../../godmode/agentes/module_manager_editor_network.php:349
+#: ../../godmode/agentes/module_manager_editor_network.php:371
+msgid "The pass length must be eight character minimum."
+msgstr "La longitud de la contraseña debe ser mínimo de ocho caracteres."
+
+#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:855
+#: ../../godmode/massive/massive_edit_modules.php:912
+#: ../../godmode/agentes/module_manager_editor_common.php:731
+msgid "Export target"
+msgstr "Servidor de exportación"
+
+#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:945
+#: ../../godmode/massive/massive_edit_modules.php:998
+msgid "Active Counters"
+msgstr "Contadores activos"
+
+#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:946
+#: ../../godmode/massive/massive_edit_modules.php:999
+msgid "Inactive Counters"
+msgstr "Contadores inactivos"
+
+#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:961
+#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:480
+#: ../../godmode/massive/massive_edit_modules.php:1014
+#: ../../godmode/agentes/module_manager_editor_common.php:865
+msgid "FF interval"
+msgstr "Intervalo FF"
+
+#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:962
+#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:496
+#: ../../godmode/massive/massive_edit_modules.php:1024
+msgid "Module execution flip flop time interval (in secs)."
+msgstr "Tiempo del intervalo de flip flop de ejecución del módulo (en segundos)."
+
+#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:990
+#: ../../godmode/massive/massive_edit_modules.php:1066
+msgid "Policy linking status"
+msgstr "Estado de enlaces de la política"
+
+#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:990
+#: ../../godmode/massive/massive_edit_modules.php:1066
+msgid "This field only has sense in modules adopted by a policy."
+msgstr "Este campo solo tiene sentido en los módulos aprobados por una política."
+
+#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:991
+#: ../../godmode/massive/massive_edit_modules.php:1067
+msgid "Linked"
+msgstr "Enlazado"
+
+#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1000
+#: ../../godmode/modules/manage_network_components_form_common.php:315
+#: ../../godmode/massive/massive_edit_modules.php:1076
+#: ../../godmode/agentes/module_manager_editor_common.php:764
+msgid "Discard unknown events"
+msgstr "Descartar eventos desconocidos"
+
+#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1029
+#: ../../godmode/massive/massive_edit_modules.php:1105
+msgid "The module still store data but the alerts and events will be stop"
+msgstr ""
+"El módulo todavía almacena datos pero las alertas y los eventos se detendrán."
+
+#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1053
+#: ../../godmode/massive/massive_edit_modules.php:1131
+msgid "Seconds that agent will wait for the execution of the module."
+msgstr "Segundos que el agente tendrá que esperar para la ejecución del módulo"
+
+#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1059
+#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:515
+#: ../../godmode/massive/massive_edit_modules.php:1137
+msgid "Number of retries that the module will attempt to run."
+msgstr "Número de intentos que el módulo intentará activar"
+
+#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1070
+#: ../../godmode/modules/manage_network_components_form_network.php:209
+#: ../../godmode/massive/massive_edit_modules.php:1148
+#: ../../godmode/agentes/module_manager_editor_network.php:281
+msgid "TCP send"
+msgstr "Enviar TCP"
+
+#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1073
+#: ../../godmode/modules/manage_network_components_form_network.php:216
+#: ../../godmode/massive/massive_edit_modules.php:1151
+#: ../../godmode/agentes/module_manager_editor_network.php:295
+msgid "TCP receive"
+msgstr "Recibir TCP"
+
+#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1076
+#: ../../godmode/modules/manage_network_components_form_wmi.php:31
+#: ../../godmode/massive/massive_edit_modules.php:1154
+#: ../../godmode/agentes/module_manager_editor_wmi.php:133
+msgid "WMI query"
+msgstr "Consulta WMI"
+
+#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1079
+#: ../../godmode/modules/manage_network_components_form_wizard.php:684
+#: ../../godmode/modules/manage_network_components_form_wmi.php:33
+#: ../../godmode/massive/massive_edit_modules.php:1157
+#: ../../godmode/agentes/module_manager_editor_wmi.php:151
+msgid "Key string"
+msgstr "Cadena clave"
+
+#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1082
+#: ../../godmode/modules/manage_network_components_form_wmi.php:39
+#: ../../godmode/massive/massive_edit_modules.php:1160
+#: ../../godmode/agentes/module_manager_editor_wmi.php:164
+msgid "Field number"
+msgstr "Campo número"
+
+#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1085
+#: ../../godmode/servers/plugin_registration.php:503
+#: ../../godmode/modules/manage_network_components_form_plugin.php:35
+#: ../../godmode/massive/massive_edit_plugins.php:346
+#: ../../godmode/massive/massive_edit_modules.php:1163
+#: ../../godmode/agentes/module_manager_editor_plugin.php:49
+msgid "Plugin"
+msgstr "Plugin"
+
+#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1135
+#: ../../godmode/modules/manage_network_components_form_network.php:258
+#: ../../godmode/massive/massive_edit_modules.php:1213
+#: ../../godmode/agentes/module_manager_editor_network.php:477
+msgid "Inherited"
+msgstr "Heredado"
+
+#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1136
+#: ../../godmode/modules/manage_network_components_form_network.php:259
+#: ../../godmode/massive/massive_edit_modules.php:1214
+msgid "Linux"
+msgstr "Linux"
+
+#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1137
+#: ../../godmode/modules/manage_network_components_form_network.php:260
+#: ../../godmode/massive/massive_edit_modules.php:1215
+msgid "Windows"
+msgstr "Windows"
+
+#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1140
+#: ../../godmode/modules/manage_network_components_form_network.php:263
+#: ../../godmode/massive/massive_edit_modules.php:1218
+msgid "Target OS"
+msgstr "SO objetivo"
+
+#: ../../enterprise/godmode/massive/massive_operations.php:115
+msgid "Bulk alerts policy add"
+msgstr "Añadir alertas de políticas de forma masiva"
+
+#: ../../enterprise/godmode/massive/massive_operations.php:116
+msgid "Bulk alerts policy delete"
+msgstr "Eliminar alertas de políticas de forma masiva"
+
+#: ../../enterprise/godmode/massive/massive_operations.php:117
+msgid "Bulk tags module policy edit"
+msgstr "Editar las etiquetas de módulos en políticas de forma masiva"
+
+#: ../../enterprise/godmode/massive/massive_operations.php:118
+msgid "Bulk modules policy tags edit"
+msgstr "Editar las etiquetas de módulos en políticas de forma masiva"
+
+#: ../../enterprise/godmode/massive/massive_operations.php:119
+msgid "Bulk modules policy add from agent"
+msgstr "Añadir módulos de forma masiva a la política del agente"
+
+#: ../../enterprise/godmode/massive/massive_operations.php:120
+msgid "Bulk modules policy edit"
+msgstr "Editas política masiva de módulos"
+
+#: ../../enterprise/godmode/massive/massive_operations.php:131
+msgid "Bulk alert SNMP delete"
+msgstr "Eliminar alertas SNMP de forma masiva"
+
+#: ../../enterprise/godmode/massive/massive_operations.php:132
+msgid "Bulk alert SNMP edit"
+msgstr "Editar alertas SNMP de forma masiva"
+
+#: ../../enterprise/godmode/massive/massive_operations.php:143
+msgid "Bulk Satellite modules edit"
+msgstr "Editar módulos Satélite de forma masiva"
+
+#: ../../enterprise/godmode/massive/massive_operations.php:156
+msgid "Bulk services creation"
+msgstr "Creación de servicios masivos"
+
+#: ../../enterprise/godmode/massive/massive_operations.php:160
+msgid "Bulk services deletion"
+msgstr "Borrado de servicios en masa"
+
+#: ../../enterprise/godmode/massive/massive_delete_service_elements.php:90
+msgid "Failed to process deleting services elements: "
+msgstr "Error al procesar la eliminación de elementos de servicios: "
+
+#: ../../enterprise/godmode/massive/massive_delete_service_elements.php:131
+msgid "removed"
+msgstr "borrado"
+
+#: ../../enterprise/godmode/massive/massive_delete_service_elements.php:264
+msgid "Remove selected"
+msgstr "Eliminar lo seleccionado"
+
+#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:88
+msgid "Success: remove the alerts."
+msgstr "Alertas borradas correctamente"
+
+#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:88
+msgid "Failed: remove the alerts for this modules, please check."
+msgstr "Error al borrar las alertas en estos módulos"
+
+#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:125
+#: ../../enterprise/godmode/massive/massive_add_alerts_policy.php:115
+#: ../../enterprise/godmode/policies/policy_alerts.php:642
+#: ../../godmode/massive/massive_add_alerts.php:280
+#: ../../godmode/massive/massive_standby_alerts.php:217
+#: ../../godmode/massive/massive_delete_alerts.php:271
+#: ../../godmode/massive/massive_enable_disable_alerts.php:189
+msgid "Alert template"
+msgstr "Plantilla de alerta"
+
+#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:141
+msgid "Modules agents in policy"
+msgstr "Módulos de agentes en la política"
+
+#: ../../enterprise/godmode/massive/massive_edit_tags_policy.php:92
+#: ../../enterprise/godmode/massive/massive_tags_edit_policy.php:87
+msgid "Successful update the tags"
+msgstr "Etiquetas actualizadas correctamente"
+
+#: ../../enterprise/godmode/massive/massive_edit_tags_policy.php:93
+#: ../../enterprise/godmode/massive/massive_tags_edit_policy.php:88
+msgid "Unsuccessful update the tags"
+msgstr "Error al actualizar las etiquetas"
+
+#: ../../enterprise/godmode/massive/massive_edit_tags_policy.php:143
+msgid "Tags unused"
+msgstr "Etiquetas sin usar"
+
+#: ../../enterprise/godmode/massive/massive_edit_tags_policy.php:183
+msgid "Tags used"
+msgstr "Etiquetas usadas"
+
+#: ../../enterprise/godmode/massive/massive_add_alerts_policy.php:87
+msgid "Success: create the alerts."
+msgstr "Alertas creadas correctamente"
+
+#: ../../enterprise/godmode/massive/massive_add_alerts_policy.php:87
+msgid "Failed: create the alerts for this modules, please check."
+msgstr "Error al crear las alertas para estos módulos. Resuelve el problema."
+
+#: ../../enterprise/godmode/massive/massive_add_alerts_policy.php:131
+msgid "Modules in policy"
+msgstr "Módulos en la política"
+
+#: ../../enterprise/godmode/massive/massive_delete_services.php:50
+#, php-format
+msgid "Failed to delete: %s"
+msgstr "No se ha podido eliminar: %s"
+
+#: ../../enterprise/godmode/massive/massive_add_service_elements.php:112
+#, php-format
+msgid "Problems while adding module element: %d, %s"
+msgstr "Problemas al agregar el elemento del módulo: %d, %s"
+
+#: ../../enterprise/godmode/massive/massive_add_service_elements.php:157
+#, php-format
+msgid "Problems while adding agent element: %d, %s"
+msgstr "Problemas al agregar el elemento agente: %d, %s"
+
+#: ../../enterprise/godmode/massive/massive_add_service_elements.php:205
+#, php-format
+msgid "%s: %d, %s"
+msgstr "%s: %d, %s"
+
+#: ../../enterprise/godmode/massive/massive_add_service_elements.php:228
+msgid "Failed to process adding elements in services: "
+msgstr "Error al procesar la adición de elementos en los servicios: "
+
+#: ../../enterprise/godmode/massive/massive_add_service_elements.php:270
+msgid "added"
+msgstr "añadido"
+
+#: ../../enterprise/godmode/massive/massive_add_service_elements.php:354
+msgid "Item type to be added"
+msgstr "Tipo de artículo que se agregará"
+
+#: ../../enterprise/godmode/massive/massive_add_service_elements.php:371
+#: ../../enterprise/godmode/massive/massive_create_services.php:974
+msgid "Add selected"
+msgstr "Añadir seleccionado"
+
+#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:75
+msgid "Successfully copied "
+msgstr "Copiado correctamente "
+
+#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:82
+msgid " cannot be copied to "
+msgstr " no se puede copiar a "
+
+#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:82
+msgid " policy"
+msgstr " política de"
+
+#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:190
+#: ../../godmode/massive/massive_copy_modules.php:213
+msgid "No modules for this agent"
+msgstr "No existen módulos para este agente"
+
+#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:223
+msgid "To policies"
+msgstr "a políticas"
+
+#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:359
+#: ../../godmode/massive/massive_add_alerts.php:324
+#: ../../godmode/massive/massive_edit_agents.php:1199
+#: ../../godmode/massive/massive_delete_alerts.php:382
+msgid ""
+"Unsucessful sending the data, please contact with your administrator or make "
+"with less elements."
+msgstr ""
+"Error al enviar los datos. Por favor, contacta con el administrador o "
+"inténtalo con menos elementos."
+
+#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:376
+msgid "No destiny policies to copy"
+msgstr "No hay políticas de destino que copiar"
+
+#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:159
+#: ../../godmode/snmpconsole/snmp_alert.php:682
+#, php-format
+msgid "Successfully deleted alerts (%s / %s)"
+msgstr "Alertas eliminadas correctamente (%s / %s)"
+
+#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:167
+#: ../../godmode/snmpconsole/snmp_alert.php:686
+#, php-format
+msgid "Unsuccessfully deleted alerts (%s / %s)"
+msgstr "Error al eliminar las alertas (%s / %s)"
+
+#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:175
+#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:233
+msgid "You must select a SNMP alert"
+msgstr "Seleccione una alerta SNMP"
+
+#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:198
+#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:258
+msgid ""
+"Search by these fields description, OID, Custom Value, SNMP Agent (IP), Single "
+"value, each Custom OIDs/Datas."
+msgstr ""
+"Búsqueda por descripción de los campos, OIS, Valores personalizados, Agentes "
+"(IP) SNMP, Valor único, cada OIDs/Datos personalizado."
+
+#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:217
+msgid "SNMP Alerts to be deleted"
+msgstr "Alertas SNMP para añadir"
+
+#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:289
+#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:403
+msgid "No snmp alert found."
+msgstr "No se ha encontrado la alerta SNMP."
+
+#: ../../enterprise/godmode/massive/massive_create_services.php:210
+#, php-format
+msgid "Failed to create service for agent %s, %s"
+msgstr "No se ha podido crear el servicio para el agente %s, %s"
+
+#: ../../enterprise/godmode/massive/massive_create_services.php:294
+#, php-format
+msgid "Failed to create service for module %s, %s"
+msgstr "No se ha podido crear el servicio para el módulo %s, %s"
+
+#: ../../enterprise/godmode/massive/massive_create_services.php:380
+#, php-format
+msgid "Failed to create service for service %s, %s"
+msgstr "No se ha podido crear el servicio para el servicio %s, %s"
+
+#: ../../enterprise/godmode/massive/massive_create_services.php:435
+#, php-format
+msgid "Agent selected %d not found"
+msgstr "Agente seleccionado %d no encontrado"
+
+#: ../../enterprise/godmode/massive/massive_create_services.php:481
+#, php-format
+msgid "Module selected %d not found"
+msgstr "Módulo seleccionado %d no encontrado"
+
+#: ../../enterprise/godmode/massive/massive_create_services.php:528
+#, php-format
+msgid "Service selected %d not found"
+msgstr "Servicio seleccionado %d no encontrado"
+
+#: ../../enterprise/godmode/massive/massive_create_services.php:562
+#, php-format
+msgid "Failed to create service for agent %s"
+msgstr "No se ha podido crear el servicio para el agente %s"
+
+#: ../../enterprise/godmode/massive/massive_create_services.php:573
+#, php-format
+msgid "Failed to create services: %s"
+msgstr "No se han podido crear los servicios: %s"
+
+#: ../../enterprise/godmode/massive/massive_create_services.php:593
+#, php-format
+msgid "%d services created with %d items"
+msgstr "%d servicios creados con %d elementos"
+
+#: ../../enterprise/godmode/massive/massive_create_services.php:599
+msgid "No services created"
+msgstr "No hay servicios creados"
+
+#: ../../enterprise/godmode/massive/massive_create_services.php:632
+msgid "Service(s) definition"
+msgstr "Definición de servicio(s)"
+
+#: ../../enterprise/godmode/massive/massive_create_services.php:765
+msgid "Create a service per item"
+msgstr "Crear un servicio por elemento"
+
+#: ../../enterprise/godmode/massive/massive_create_services.php:766
+msgid "If enabled multiple services will be created."
+msgstr "Si se habilita, se crearán múltiples servicios."
+
+#: ../../enterprise/godmode/massive/massive_create_services.php:784
+msgid "Services header"
+msgstr "Encabezado de servicios"
+
+#: ../../enterprise/godmode/massive/massive_create_services.php:785
+msgid "All services names created will start with selected name."
+msgstr ""
+"Todos los nombres de servicios creados deben empezar con el nombre "
+"seleccionado."
+
+#: ../../enterprise/godmode/massive/massive_create_services.php:839
+msgid "SLA calculation"
+msgstr "Cálculo de SLA"
+
+#: ../../enterprise/godmode/massive/massive_create_services.php:946
+msgid "Items selected here will be added to the lists at Service items summary."
+msgstr ""
+"Los elementos aquí seleccionados se añadirán a las listas de resumen de "
+"elementos de servicio"
+
+#: ../../enterprise/godmode/massive/massive_create_services.php:949
+msgid "Item(s) definition"
+msgstr "Definición de elemento(s)"
+
+#: ../../enterprise/godmode/massive/massive_create_services.php:957
+msgid "Item type"
+msgstr "Tipo de elemento"
+
+#: ../../enterprise/godmode/massive/massive_create_services.php:1144
+msgid ""
+"Weights configured are common for every item added to the service, if you want "
+"to customize them, please edit the service."
+msgstr ""
+"Los pesos configurados son comunes a todos los elementos añadidos al servicio. "
+"Si desea personalizarlos, edite el servicio."
+
+#: ../../enterprise/godmode/massive/massive_create_services.php:1260
+msgid "Create services"
+msgstr "Crear servicios"
+
+#: ../../enterprise/godmode/massive/massive_tags_edit_policy.php:127
+msgid "Modules unused"
+msgstr "Módulos sin usar"
+
+#: ../../enterprise/godmode/massive/massive_tags_edit_policy.php:167
+msgid "Modules used"
+msgstr "Módulos usados"
+
+#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:217
+#, php-format
+msgid "Successfully updated alerts (%s / %s)"
+msgstr "Alertas actualizadas correctamente (%s / %s)"
+
+#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:225
+#, php-format
+msgid "Unsuccessfully updated alerts (%s / %s)"
+msgstr "No se han podido actualizar las alertas (%s / %s)"
+
+#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:277
+msgid "SNMP Alerts to be edit"
+msgstr "Alertas SNMP para editar"
+
+#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:301
+#: ../../godmode/snmpconsole/snmp_alert.php:735
+msgid "Custom Value/OID"
+msgstr "Valor/OID personalizado"
+
+#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:307
+#: ../../godmode/snmpconsole/snmp_alert.php:785
+msgid "Single value"
+msgstr "Valor único"
+
+#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:309
+#: ../../godmode/snmpconsole/snmp_alert.php:988
+#: ../../godmode/alerts/configure_alert_template.php:691
+msgid "Min. number of alerts"
+msgstr "Número mínimo de alertas"
+
+#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:311
+#: ../../godmode/snmpconsole/snmp_alert.php:991
+#: ../../godmode/alerts/configure_alert_template.php:728
+msgid "Max. number of alerts"
+msgstr "Número máximo de alertas"
+
+#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:326
+#: ../../godmode/snmpconsole/snmp_alert.php:1010
+msgid "Other value"
+msgstr "Otros valores"
+
+#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:211
+#: ../../godmode/massive/massive_delete_modules.php:372
+#: ../../godmode/massive/massive_edit_modules.php:356
+msgid "Agent group"
+msgstr "Grupo de agentes"
+
+#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:242
+msgid "Filter module"
+msgstr "Filtro de módulo"
+
+#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:261
+#: ../../godmode/massive/massive_add_alerts.php:260
+#: ../../godmode/massive/massive_delete_modules.php:551
+#: ../../godmode/massive/massive_add_action_alerts.php:220
+#: ../../godmode/massive/massive_delete_action_alerts.php:241
+#: ../../godmode/massive/massive_delete_alerts.php:335
+#: ../../godmode/massive/massive_edit_modules.php:524
+msgid "When select agents"
+msgstr "Al seleccionar agentes"
+
+#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:423
+msgid "Updated modules on database"
+msgstr "Módulos actualizados en la base de datos"
+
+#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:425
+msgid "Agent configuration files updated"
+msgstr "Archivo de configuración del agente actualizado correctamente"
+
+#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:691
+msgid "No changes have been made."
+msgstr "No ha habido cambios."
+
+#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:179
+msgid "Command Mysqldump is failed."
+msgstr "Error en el comando Mysqldump."
+
+#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:225
+#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:238
+#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:287
+#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:306
+#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:386
+#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:403
+msgid "Failed to create task"
+msgstr "No se ha podido crear la tarea"
+
+#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:293
+msgid "No template selected"
+msgstr "No se ha seleccionado ninguna plantilla"
+
+#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:412
+msgid "I do not know what you want to do"
+msgstr "No sé lo que desea hacer"
+
+#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:429
+#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:611
+msgid "You have no access to manage console tasks."
+msgstr "No puede acceder a la gestión de tareas de la consola."
+
+#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:446
+#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:517
+msgid "Create new console task"
+msgstr "Crear nueva tarea de la consola"
+
+#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:489
+msgid "Updating console task"
+msgstr "Actualizar tarea de la consola"
+
+#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:514
+#: ../../godmode/menu.php:33
+#: ../../godmode/wizards/DiscoveryTaskList.class.php:105
+msgid "Task list"
+msgstr "Lista de tareas"
+
+#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:519
+msgid "Update console task"
+msgstr "Actualizar tarea de la consola"
+
+#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:650
+msgid "Next Execution"
+msgstr "Siguiente ejecución"
+
+#: ../../enterprise/godmode/wizards/Applications.class.php:186
+#: ../../enterprise/godmode/wizards/Cloud.class.php:210
+msgid ""
+"All company names used here are for identification purposes only. Use of these "
+"names, logos, and brands does not imply endorsement."
+msgstr ""
+"Todos los nombres de compañías aquí utilizados tienen fines identificatorios. "
+"El uso de estos nombres, logos y marcas no implica patrocinio alguno."
+
+#: ../../enterprise/godmode/wizards/Cloud.class.php:240
+#: ../../enterprise/godmode/wizards/Cloud.class.php:248
+#, php-format
+msgid "%s credentials"
+msgstr "Credenciales de %s"
+
+#: ../../enterprise/godmode/wizards/Cloud.class.php:264
+msgid ""
+"If a task with the selected credentials is already running, it will be edited. "
+"To create a new one, another account from the credential store must be "
+"selected."
+msgstr ""
+"Si una tarea con las credenciales seleccionadas ya se está ejecutando, se "
+"editará. Para crear una nueva, se debe seleccionar otra cuenta del almacén de "
+"credenciales."
+
+#: ../../enterprise/godmode/wizards/Cloud.class.php:284
+msgid "Manage accounts"
+msgstr "Administrar cuentas"
+
+#: ../../enterprise/godmode/wizards/Cloud.class.php:296
+msgid "Cloud tool full path"
+msgstr "Ruta completa de la herramienta en la nube"
+
+#: ../../enterprise/godmode/wizards/Cloud.class.php:304
+msgid "Account"
+msgstr "Cuenta"
+
+#: ../../enterprise/godmode/wizards/Cloud.class.php:365
+msgid "Select a set of credentials from the list"
+msgstr "Seleccione un conjunto de credenciales de la lista"
+
+#: ../../enterprise/godmode/wizards/Cloud.class.php:378
+#, php-format
+msgid "Path %s is not executable."
+msgstr "La ruta %s no se puede ejecutar."
+
+#: ../../enterprise/godmode/wizards/Cloud.class.php:423
+msgid "Account disconnected"
+msgstr "Cuenta desconectada"
+
+#: ../../enterprise/godmode/wizards/Cloud.class.php:425
+msgid "Failed disconnecting account"
+msgstr "Error al desconectar la cuenta"
+
+#: ../../enterprise/godmode/wizards/Cloud.class.php:503
+msgid "Credentials successfully updated"
+msgstr "Credenciales actualizados correctamente"
+
+#: ../../enterprise/godmode/wizards/Cloud.class.php:505
+msgid "Failed updating credentials process"
+msgstr "Error en el proceso de actualización de credenciales"
+
+#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:58
+#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:61
+msgid "The changes on this field are linked with the configuration data."
+msgstr "Los cambios en este campo están unidos con la configuración de datos."
+
+#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:67
+msgid "Using local component"
+msgstr "Usando componente local"
+
+#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:76
+#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:96
+#: ../../godmode/agentes/module_manager_editor_common.php:118
+#: ../../godmode/agentes/module_manager_editor_common.php:135
+msgid "Manual setup"
+msgstr "Configuración manual"
+
+#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:88
+#: ../../godmode/agentes/module_manager_editor_common.php:127
+msgid "No component was found"
+msgstr "No se encontró ningún componente"
+
+#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:155
+msgid "Show configuration data"
+msgstr "Mostrar datos de configuración"
+
+#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:166
+msgid "Hide configuration data"
+msgstr "Ocultar datos de configuración"
+
+#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:174
+msgid "Data configuration"
+msgstr "Configuración de datos"
+
+#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:24
+msgid "Capacity planning"
+msgstr "Planificación de la capacidad"
+
+#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:26
+msgid "Synthetic arithmetic"
+msgstr "Aritmética sintética"
+
+#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:27
+msgid "Synthetic average"
+msgstr "Media sintética"
+
+#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:28
+msgid "Trending module"
+msgstr "Módulo de tendencias"
+
+#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:114
+msgid "Fixed value"
+msgstr "Valor fijo"
+
+#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:119
+msgid "Add module to operation as add"
+msgstr "Añadir módulo a la operación como suma"
+
+#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:120
+msgid "Add module to operations as deduct"
+msgstr "Añadir módulo a la operación como resta"
+
+#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:121
+msgid "Add module to operations as multiplicate "
+msgstr "Añadir módulo a la operación como multiplicador "
+
+#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:122
+msgid "Add module to operations as divide"
+msgstr "Añadir módulo a la operación como divisor"
+
+#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:123
+msgid "Remove selected modules"
+msgstr "Eliminar los módulos seleccionados"
+
+#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:128
+msgid "Add module to average operation"
+msgstr "Añadir módulo al promedio de la operación"
+
+#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:129
+msgid "Remove selected modules from operations stack"
+msgstr "Eliminar los módulos de las operaciones de apilado"
+
+#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:144
+msgid "Move down selected modules"
+msgstr "Mover hacia abajo los módulos seleccionados"
+
+#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:145
+msgid "Move up selected modules"
+msgstr "Mover hacia arriba los módulos seleccionados"
+
+#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:175
+msgid "Select Service"
+msgstr "Seleccionar servicio"
+
+#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:188
+msgid "Netflow filter"
+msgstr "Filtro de Netflow"
+
+#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:197
+msgid "Select filter"
+msgstr "Seleccionar filtro"
+
+#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:207
+msgid "Percentual value"
+msgstr "Valor porcentual"
+
+#: ../../enterprise/godmode/agentes/inventory_manager.php:84
+#: ../../enterprise/godmode/policies/policy_inventory_modules.php:144
+msgid "Successfully added inventory module"
+msgstr "Módulo añadido al inventario correctamente"
+
+#: ../../enterprise/godmode/agentes/inventory_manager.php:86
+#: ../../enterprise/godmode/policies/policy_inventory_modules.php:153
+msgid "Error adding inventory module"
+msgstr "Error al añadir el módulo al inventario"
+
+#: ../../enterprise/godmode/agentes/inventory_manager.php:89
+#: ../../enterprise/godmode/policies/policy_inventory_modules.php:156
+msgid "The inventory of the module already exists"
+msgstr "El inventario del módulo ya existe"
+
+#: ../../enterprise/godmode/agentes/inventory_manager.php:110
+msgid "Successfully forced inventory module"
+msgstr "Módulo del inventario forzado correctamente"
+
+#: ../../enterprise/godmode/agentes/inventory_manager.php:112
+msgid "Error forcing inventory module"
+msgstr "Error al forzar un módulo del inventario"
+
+#: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:121
+msgid "Error: The conf file of agent is not readble."
+msgstr "Error: el archivo de configuración no se puede leer."
+
+#: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:125
+msgid "Error: The conf file of agent is not writable."
+msgstr "Error: en el archivo de configuración no se puede escribir."
+
+#: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:178
+#: ../../enterprise/godmode/policies/policy_modules.php:387
+msgid "Add module"
+msgstr "Añadir módulo"
+
+#: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:213
+msgid "No module was found"
+msgstr "No se encontraron módulos."
+
+#: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:248
+msgid "Delete remote conf agent files"
+msgstr "Eliminar archivos de agente de configuración remota"
+
+#: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:249
+msgid ""
+"Delete this conf file implies that for restore you must reactive remote config "
+"in the local agent."
+msgstr ""
+"Borrar el archivo .conf implica que para restaurarlo, se debe reactivar la "
+"configuración remota en el agente local."
+
+#: ../../enterprise/godmode/agentes/module_manager.php:48
+msgid "Create a new web analysis module"
+msgstr "Crear un módulo de análisis web nuevo"
+
+#: ../../enterprise/godmode/agentes/agent_autoconfiguration.php:51
+msgid "Cannot delete autoconfiguration"
+msgstr "No se ha podido borrar la autoconfiguración"
+
+#: ../../enterprise/godmode/agentes/agent_autoconfiguration.php:66
+#: ../../godmode/setup/license.php:151 ../../godmode/setup/license.php:154
+msgid "enabled"
+msgstr "activado"
+
+#: ../../enterprise/godmode/agentes/agent_autoconfiguration.php:67
+msgid "enabling"
+msgstr "Habilitando"
+
+#: ../../enterprise/godmode/agentes/agent_autoconfiguration.php:69
+#: ../../godmode/setup/license.php:151 ../../godmode/setup/license.php:154
+msgid "disabled"
+msgstr "desactivado"
+
+#: ../../enterprise/godmode/agentes/agent_autoconfiguration.php:70
+msgid "disabling"
+msgstr "deshabilitando"
+
+#: ../../enterprise/godmode/agentes/agent_autoconfiguration.php:75
+#, php-format
+msgid "Successfully %s"
+msgstr "%s con éxito"
+
+#: ../../enterprise/godmode/agentes/agent_autoconfiguration.php:76
+#, php-format
+msgid "Error %s"
+msgstr "Error %s"
+
+#: ../../enterprise/godmode/agentes/agent_autoconfiguration.php:96
+#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:292
+msgid "Agent autoconfiguration list"
+msgstr "Lista de autoconfiguración de agentes"
+
+#: ../../enterprise/godmode/agentes/agent_autoconfiguration.php:158
+msgid "There are no defined autoconfigurations"
+msgstr "No hay autoconfiguraciones definidas"
+
+#: ../../enterprise/godmode/agentes/agent_autoconfiguration.php:195
+msgid "Add new configuration definition"
+msgstr "Añadir definición de nueva configuración"
+
+#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:55
+msgid "Cannot delete rule from autoconfiguration"
+msgstr "No se ha podido borrar la regla de autoconfiguración"
+
+#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:61
+msgid "Agent Autoconfiguration Information"
+msgstr "Información de la autoconfiguración de agente"
+
+#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:62
+msgid "You must click the Create or Update buttom for a correct configuration!!!"
+msgstr "Pinche en el botón de crear o actualizar para una correcta configuración"
+
+#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:70
+msgid ""
+"Cannot create autoconfiguration from read only console, please create from "
+"metaconsole (centralized management)"
+msgstr ""
+"No se ha podido crear la autoconfiguración desde la consola exclusiva de "
+"lectura, créela desde la Metaconsola (gestión centralizada)"
+
+#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:91
+msgid "Cannot create autoconfiguration in metaconsole"
+msgstr "No se ha podido crear la autoconfiguración en la metaconsola"
+
+#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:99
+msgid "Cannot create unnamed autoconfiguration"
+msgstr "No se ha podido crear una autoconfiguración sin nombre"
+
+#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:109
+msgid ""
+"Cannot udpate autoconfiguration from read only console, please create from "
+"metaconsole (centralized management)"
+msgstr ""
+"No se ha podido actualizar la autoconfiguración desde la consola exclusiva de "
+"lectura, créela desde la Metaconsola (gestión centralizada)"
+
+#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:126
+msgid "Cannot update autoconfiguration"
+msgstr "No se ha podido actualizar la autoconfiguración"
+
+#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:136
+#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:191
+msgid ""
+"Cannot modify autoconfiguration from read only console, please create from "
+"metaconsole (centralized management)"
+msgstr ""
+"No se ha podido crear la autoconfiguración desde la consola exclusiva de "
+"lectura, créela desde la Metaconsola (gestión centralizada)"
+
+#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:335
+msgid "Autoconfiguration"
+msgstr "Autoconfiguración"
+
+#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:405
+msgid "Add rule"
+msgstr "Añadir regla"
+
+#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:410
+msgid "Rules"
+msgstr "Reglas"
+
+#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:432
+msgid "New group"
+msgstr "Nuevo grupo"
+
+#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:619
+#: ../../enterprise/godmode/policies/configure_policy.php:47
+msgid "Add policy"
+msgstr "Añadir política"
+
+#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:651
+msgid "Extra configuration block"
+msgstr "Bloque de configuración extra"
+
+#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:653
+msgid ""
+"Put here any extra configuration you want to be applied to any new agent "
+"matching previously defined rules"
+msgstr ""
+"Añada cualquier configuración extra que desee que se aplique a cualquier "
+"agente nuevo que coincida con las reglas definidas"
+
+#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:686
+#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:717
+msgid "Extra actions"
+msgstr "Acciones extra"
+
+#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:707
+#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:1010
+msgid "Add extra action"
+msgstr "Añadir acción extra"
+
+#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:875
+msgid "Add new rule"
+msgstr "Añadir regla nueva"
+
+#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:1097
+msgid "Update extra action"
+msgstr "Actualizar acción extra"
+
+#: ../../enterprise/godmode/agentes/collection_manager.php:77
+msgid "Succesful add the collection"
+msgstr "Añadido a la colección correctamente"
+
+#: ../../enterprise/godmode/agentes/collection_manager.php:78
+msgid "Unsuccesful add the collection"
+msgstr "No se ha podido añadir a la colección."
+
+#: ../../enterprise/godmode/agentes/collections.editor.php:98
+msgid "Files in "
+msgstr "Archivos en "
+
+#: ../../enterprise/godmode/agentes/collections.editor.php:109
+#: ../../enterprise/godmode/agentes/collections.data.php:395
+#: ../../enterprise/godmode/agentes/collections.php:92
+#, php-format
+msgid ""
+"This console is not manager of this environment, please manage this feature "
+"from %s."
+msgstr ""
+"La consola no administra este entorno, gestione esta funcionalidad desde el "
+"administrador centralizado de %s."
+
+#: ../../enterprise/godmode/agentes/manage_config_remote.php:42
+msgid "Data Copy"
+msgstr "Copia de datos"
+
+#: ../../enterprise/godmode/agentes/manage_config_remote.php:49
+msgid "No selected agents to copy"
+msgstr "No se han seleccionado agentes de destino para la copia"
+
+#: ../../enterprise/godmode/agentes/manage_config_remote.php:62
+msgid "No source agent selected"
+msgstr "No ha seleccionado ningún agente de origen"
+
+#: ../../enterprise/godmode/agentes/manage_config_remote.php:108
+msgid "Making copy of configuration file for"
+msgstr "Creando una copia del archivo de configuración de"
+
+#: ../../enterprise/godmode/agentes/manage_config_remote.php:117
+msgid "Error copying md5 file "
+msgstr "Error al copiar archivo MD5 "
+
+#: ../../enterprise/godmode/agentes/manage_config_remote.php:117
+#: ../../enterprise/godmode/agentes/manage_config_remote.php:119
+msgid " md5 file"
+msgstr " archivo MD5"
+
+#: ../../enterprise/godmode/agentes/manage_config_remote.php:119
+#: ../../enterprise/godmode/agentes/manage_config_remote.php:125
+msgid "Copied "
+msgstr "Copiado "
+
+#: ../../enterprise/godmode/agentes/manage_config_remote.php:123
+msgid "Error copying "
+msgstr "Error al copiar "
+
+#: ../../enterprise/godmode/agentes/manage_config_remote.php:123
+#: ../../enterprise/godmode/agentes/manage_config_remote.php:125
+msgid " config file"
+msgstr " archivo de configuración"
+
+#: ../../enterprise/godmode/agentes/manage_config_remote.php:135
+msgid "Remote configuration management"
+msgstr "Gestión de configuración remota"
+
+#: ../../enterprise/godmode/agentes/manage_config_remote.php:186
+msgid "To agent(s):"
+msgstr "Agente(s) de destino:"
+
+#: ../../enterprise/godmode/agentes/manage_config_remote.php:203
+msgid "Replicate configuration"
+msgstr "Replicar configuración"
+
+#: ../../enterprise/godmode/agentes/collections.agents.php:36
+msgid "Show Agent &gt;"
+msgstr "Mostrar agente"
+
+#: ../../enterprise/godmode/agentes/collections.agents.php:120
+#: ../../enterprise/godmode/agentes/collections.agents.php:124
+msgid "This collection has not been added to any agents"
+msgstr "Esta colección no ha sido añadida a ningún agente."
+
+#: ../../enterprise/godmode/agentes/collections.data.php:384
+msgid "Collection updated successfully"
+msgstr "Collección actualizada con éxito"
+
+#: ../../enterprise/godmode/agentes/collections.data.php:410
+msgid "Please go to the metaconsole and apply this collection"
+msgstr "Por favor, vaya a la metaconsola y aplique esta colección"
+
+#: ../../enterprise/godmode/agentes/collections.data.php:414
+msgid "Error: The collection directory does not exist."
+msgstr "Error: el directorio donde se almacenan las colecciones no existe."
+
+#: ../../enterprise/godmode/agentes/pandora_networkmap_empty.editor.php:93
+#: ../../godmode/agentes/pandora_networkmap_empty.editor.php:95
+msgid "Empty Network maps editor"
+msgstr "Editor de mapas de red vacío"
+
+#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:98
+#: ../../godmode/agentes/module_manager_editor_common.php:238
+msgid "Delete module"
+msgstr "Eliminar módulo"
+
+#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:127
+msgid "Run performance tests"
+msgstr "Realizar pruebas de rendimiento"
+
+#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:138
+msgid "Target web site"
+msgstr "Sitio web de destino"
+
+#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:140
+msgid ""
+"The url specified in this field is mandatory to retrieve performance stats."
+msgstr ""
+"La URL especificada en este campo es obligatoria para recuperar las "
+"estadísticas de rendimiento."
+
+#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:154
+msgid "target web site (http://...)"
+msgstr "sitio web objetivo (http://...)"
+
+#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:161
+msgid "Execute tests from"
+msgstr "Ejecutar pruebas desde"
+
+#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:177
+msgid "Browser"
+msgstr "Explorador"
+
+#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:179
+msgid ""
+"Support for IE and Edge browsers is experimental. Tests might not work as "
+"expected."
+msgstr ""
+"El soporte para IE y navegadores Edge es experimental. Las pruebas podrían no "
+"funcionar según lo esperado."
+
+#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:221
+msgid "Accept insecure certificates"
+msgstr "Aceptar certificados no seguros"
+
+#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:223
+msgid "Only Selenium 3."
+msgstr "Solo Selenium 3."
+
+#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:349
+msgid "Paste your selenium test, exported as HTML, here"
+msgstr "Pega el test de selenium, exportado como HTML, aquí"
+
+#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:362
+msgid "Add file"
+msgstr "Añadir archivo"
+
+#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:370
+msgid "Upload your selenium test in html or side (only Selenium 3) format"
+msgstr ""
+"Actualizar la prueba de selenium en formato html o side (solo Selenium 3)"
+
+#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:454
+#: ../../godmode/agentes/module_manager.php:1105
+msgid ""
+"The policy modules of data type will only update their intervals when policy "
+"is applied."
+msgstr ""
+"Los módulos de política de tipo dato solo actualizarán sus intervalos cuando "
+"la política sea aplicada."
+
+#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:574
+#: ../../enterprise/godmode/policies/policy_modules.php:417
+#: ../../godmode/agentes/module_manager_editor_common.php:1226
+#: ../../godmode/agentes/module_manager_editor.php:750
+msgid "Custom macros"
+msgstr "Macros personalizadas"
+
+#: ../../enterprise/godmode/agentes/plugins_manager.php:66
+msgid "Plug-in updated succesfully"
+msgstr "Plugin actualizado correctamente"
+
+#: ../../enterprise/godmode/agentes/plugins_manager.php:66
+msgid "Plug-in cannot be updated"
+msgstr "El plugin no se pudo actualizar."
+
+#: ../../enterprise/godmode/agentes/plugins_manager.php:74
+msgid "Plug-in deleted succesfully"
+msgstr "Plugin eliminado correctamente"
+
+#: ../../enterprise/godmode/agentes/plugins_manager.php:74
+msgid "Plug-in cannot be deleted"
+msgstr "El plugin no se pudo eliminar."
+
+#: ../../enterprise/godmode/agentes/plugins_manager.php:87
+#: ../../enterprise/godmode/policies/policy_plugins.php:90
+msgid "Plug-in added succesfully"
+msgstr "Plugin añadido correctamente"
+
+#: ../../enterprise/godmode/agentes/plugins_manager.php:87
+#: ../../enterprise/godmode/policies/policy_plugins.php:91
+msgid "Plug-in cannot be added"
+msgstr "El plugin no se puede añadir."
+
+#: ../../enterprise/godmode/agentes/plugins_manager.php:97
+msgid "Plug-in enabled succesfully"
+msgstr "Plugin habilitado correctamente"
+
+#: ../../enterprise/godmode/agentes/plugins_manager.php:98
+msgid "Plug-in cannot be enabled"
+msgstr "El plugin no puede ser habilitado."
+
+#: ../../enterprise/godmode/agentes/plugins_manager.php:109
+msgid "Plug-in disabled succesfully"
+msgstr "Plugin inhabilitado correctamente"
+
+#: ../../enterprise/godmode/agentes/plugins_manager.php:110
+msgid "Plug-in cannot be disabled"
+msgstr "El plugin no puede ser inhabilitado."
+
+#: ../../enterprise/godmode/agentes/plugins_manager.php:127
+#: ../../enterprise/godmode/policies/policy_plugins.php:109
+msgid "If enabled, allows to define a complex module plugin or log."
+msgstr ""
+"Si está habilitado, permite definir un log o complemento de módulo complejo."
+
+#: ../../enterprise/godmode/agentes/plugins_manager.php:142
+#: ../../enterprise/godmode/policies/policy_plugins.php:123
+msgid "New plug-in"
+msgstr "Nuevo plugin"
+
+#: ../../enterprise/godmode/agentes/plugins_manager.php:192
+#: ../../enterprise/godmode/policies/policies.php:535
+#: ../../enterprise/godmode/policies/policy_plugins.php:167
+#: ../../godmode/menu.php:293
+msgid "Plugins"
+msgstr "Plugins"
+
+#: ../../enterprise/godmode/agentes/collections.php:65
+msgid "Success: recreate file"
+msgstr "Archivo creado de nuevo"
+
+#: ../../enterprise/godmode/agentes/collections.php:67
+msgid "Error: recreate file "
+msgstr "El archivo no se pudo volver a crear "
+
+#: ../../enterprise/godmode/agentes/collections.php:82
+#: ../../enterprise/godmode/agentes/collections.php:123
+#: ../../enterprise/godmode/agentes/collections.php:232
+msgid "Collections Management"
+msgstr "Gestión de colecciones"
+
+#: ../../enterprise/godmode/agentes/collections.php:175
+msgid "Manager collection"
+msgstr "Gestor de colecciones"
+
+#: ../../enterprise/godmode/alerts/alert_inventory_list.php:91
+#: ../../godmode/massive/massive_add_alerts.php:168
+#: ../../godmode/massive/massive_add_action_alerts.php:160
+#: ../../godmode/alerts/alert_list.php:271
+msgid "Successfully added"
+msgstr "Añadido correctamente"
+
+#: ../../enterprise/godmode/alerts/alert_inventory_list.php:92
+#: ../../enterprise/godmode/policies/policy_agents.php:251
+#: ../../enterprise/godmode/policies/policy_external_alerts.php:201
+#: ../../enterprise/godmode/policies/policy_alerts.php:280
+#: ../../godmode/massive/massive_add_alerts.php:169
+#: ../../godmode/massive/massive_add_action_alerts.php:75
+#: ../../godmode/massive/massive_add_action_alerts.php:134
+#: ../../godmode/massive/massive_add_action_alerts.php:160
+#: ../../godmode/massive/massive_add_action_alerts.php:163
+#: ../../godmode/massive/massive_add_action_alerts.php:166
+#: ../../godmode/massive/massive_delete_action_alerts.php:175
+#: ../../godmode/alerts/alert_list.php:272
+msgid "Could not be added"
+msgstr "No se pudo añadir"
+
+#: ../../enterprise/godmode/alerts/alert_inventory_list.php:174
+msgid "Inventory alert filters"
+msgstr "Filtros de alerta de inventario"
+
+#: ../../enterprise/godmode/alerts/alert_inventory_list.php:220
+msgid "Alert name"
+msgstr "Nombre de la alerta"
+
+#: ../../enterprise/godmode/alerts/alert_inventory_list.php:319
+#: ../../godmode/alerts/alert_list.list.php:673
+msgid "Delete action"
+msgstr "Eliminar acción"
+
+#: ../../enterprise/godmode/alerts/alert_inventory_list.php:404
+msgid "Disable alert"
+msgstr "Deshabilitar alerta"
+
+#: ../../enterprise/godmode/alerts/alert_inventory_list.php:407
+msgid "Enable alert"
+msgstr "Habilitar alerta"
+
+#: ../../enterprise/godmode/alerts/alert_inventory_list.php:415
+msgid "Delete alert"
+msgstr "Eliminar alerta"
+
+#: ../../enterprise/godmode/alerts/alert_inventory_list.php:427
+msgid "There are no defined inventory alerts"
+msgstr "No hay alertas de inventario definidas"
+
+#: ../../enterprise/godmode/alerts/alert_inventory_builder.php:176
+msgid "Group acl"
+msgstr "ACL de grupo"
+
+#: ../../enterprise/godmode/alerts/alert_inventory_builder.php:256
+msgid "Alert groups"
+msgstr "Grupos de alertas"
+
+#: ../../enterprise/godmode/alerts/alert_inventory_builder.php:278
+#: ../../godmode/snmpconsole/snmp_alert.php:83
+msgid "Update alert"
+msgstr "Actualizar alerta"
+
+#: ../../enterprise/godmode/alerts/alert_inventory.php:67
+msgid "Inventory alert list"
+msgstr "Lista de alertas de inventario"
+
+#: ../../enterprise/godmode/alerts/alert_inventory.php:71
+msgid "Inventory alert builder"
+msgstr "Montador de alertas de inventario"
+
+#: ../../enterprise/godmode/policies/policy_agents.php:62
+#: ../../enterprise/godmode/policies/policy_queue.php:78
+msgid ""
+"Starting with Pandora FMS version 760, assigning an entire group to a policy "
+"will apply it automatically to all the new agents added to that group."
+msgstr ""
+"A partir de Pandora FMS versión 760, la asignación de un grupo completo a una "
+"política la aplicará automáticamente a todos los nuevos agentes añadidos a ese "
+"grupo."
+
+#: ../../enterprise/godmode/policies/policy_agents.php:85
+#: ../../enterprise/godmode/policies/policy_linking.php:41
+#: ../../enterprise/godmode/policies/policy_modules.php:599
+#: ../../enterprise/godmode/policies/policies.php:249
+#: ../../enterprise/godmode/policies/policy_external_alerts.php:77
+#: ../../enterprise/godmode/policies/policy_inventory_modules.php:98
+#: ../../enterprise/godmode/policies/policy_alerts.php:94
+#: ../../enterprise/godmode/policies/policy_collections.php:63
+#: ../../godmode/agentes/module_manager_editor.php:542
+msgid "This policy is applying and cannot be modified"
+msgstr "Esta política se está aplicando y no puede ser modificada"
+
+#: ../../enterprise/godmode/policies/policy_agents.php:102
+msgid ""
+"Successfully added to delete pending agents. Will be deleted in the next "
+"policy application."
+msgstr ""
+"Añadido correctamente a los agentes pendientes de eliminación. Será eliminado "
+"en la próxima aplicación de políticas."
+
+#: ../../enterprise/godmode/policies/policy_agents.php:113
+#: ../../enterprise/godmode/policies/policy_agents.php:129
+#: ../../enterprise/godmode/policies/policy_modules.php:1316
+#: ../../enterprise/godmode/policies/policy_external_alerts.php:150
+#: ../../enterprise/godmode/policies/policy_inventory_modules.php:169
+#: ../../enterprise/godmode/policies/policy_alerts.php:259
+#: ../../enterprise/godmode/policies/policy_collections.php:103
+#: ../../enterprise/godmode/policies/policy_plugins.php:70
+msgid "Successfully reverted deletion"
+msgstr "Eliminación revertida correctamente"
+
+#: ../../enterprise/godmode/policies/policy_agents.php:114
+#: ../../enterprise/godmode/policies/policy_agents.php:130
+#: ../../enterprise/godmode/policies/policy_modules.php:1317
+#: ../../enterprise/godmode/policies/policy_external_alerts.php:151
+#: ../../enterprise/godmode/policies/policy_inventory_modules.php:172
+#: ../../enterprise/godmode/policies/policy_alerts.php:260
+#: ../../enterprise/godmode/policies/policy_collections.php:104
+#: ../../enterprise/godmode/policies/policy_plugins.php:71
+msgid "Could not be reverted"
+msgstr "No pudo ser revertido"
+
+#: ../../enterprise/godmode/policies/policy_agents.php:124
+msgid ""
+"Successfully added to delete pending groups. Will be deleted in the next "
+"policy application."
+msgstr ""
+"Añadido correctamente para eliminar grupos pendientes. Se eliminará en la "
+"siguiente aplicación de política."
+
+#: ../../enterprise/godmode/policies/policy_agents.php:148
+#: ../../enterprise/godmode/policies/policy_agents.php:193
+#: ../../enterprise/godmode/policies/policy_agents.php:261
+msgid "Policy with this id does not exist. "
+msgstr "La política con este id no existe. "
+
+#: ../../enterprise/godmode/policies/policy_agents.php:177
+#: ../../enterprise/godmode/policies/policy_agents.php:310
+msgid "Successfully added to delete queue"
+msgstr "Correctamente añadido a la lista de eliminación"
+
+#: ../../enterprise/godmode/policies/policy_agents.php:178
+#: ../../enterprise/godmode/policies/policy_agents.php:311
+msgid "Could not be added to delete queue"
+msgstr "No se pudo añadir a la lista de eliminación."
+
+#: ../../enterprise/godmode/policies/policy_agents.php:250
+#, php-format
+msgid "Successfully added %d"
+msgstr "Se ha agregado correctamente %d"
+
+#: ../../enterprise/godmode/policies/policy_agents.php:281
+msgid ""
+"Number of agents added to the policy concurrently is too large. This might "
+"cause the operation to fail or lead to performance issues."
+msgstr ""
+"El número de agentes añadidos a la política simultáneamente es demasiado alto. "
+"Esto podría causar fallos o problemas en el funcionamiento."
+
+#: ../../enterprise/godmode/policies/policy_agents.php:288
+msgid "Successfully added to policy"
+msgstr "Agregado correctamente a la directiva"
+
+#: ../../enterprise/godmode/policies/policy_agents.php:289
+msgid "Could not be added to policy"
+msgstr "No se pudo agregar a la directiva"
+
+#: ../../enterprise/godmode/policies/policy_agents.php:407
+msgid "Apply to"
+msgstr "Aplicar a"
+
+#: ../../enterprise/godmode/policies/policy_agents.php:538
+#: ../../enterprise/godmode/policies/policy_agents.php:670
+msgid "Agents in Policy"
+msgstr "Agentes en la política"
+
+#: ../../enterprise/godmode/policies/policy_agents.php:572
+#: ../../enterprise/godmode/policies/policy_agents.php:1217
+msgid "Groups in Policy"
+msgstr "Grupos en la política"
+
+#: ../../enterprise/godmode/policies/policy_agents.php:707
+msgid "Add agents to policy"
+msgstr "Añadir agentes a la política"
+
+#: ../../enterprise/godmode/policies/policy_agents.php:734
+msgid "Delete agents from policy"
+msgstr "Eliminar agentes de la política"
+
+#: ../../enterprise/godmode/policies/policy_agents.php:831
+msgid "Applied"
+msgstr "Aplicado"
+
+#: ../../enterprise/godmode/policies/policy_agents.php:832
+msgid "Not applied"
+msgstr "No aplicado"
+
+#: ../../enterprise/godmode/policies/policy_agents.php:849
+#: ../../godmode/servers/servers.build_table.php:246
+#: ../../godmode/reporting/reporting_builder.item_editor.php:79
+#: ../../godmode/massive/massive_edit_agents.php:945
+#: ../../godmode/agentes/configurar_agente.php:603
+#: ../../godmode/agentes/configurar_agente.php:753
+#: ../../godmode/agentes/agent_manager.php:485
+msgid "Remote configuration"
+msgstr "Configuración remota"
+
+#: ../../enterprise/godmode/policies/policy_agents.php:853
+msgid "Unlinked modules"
+msgstr "Módulos sin enlazar"
+
+#: ../../enterprise/godmode/policies/policy_agents.php:853
+msgid "U."
+msgstr "U."
+
+#: ../../enterprise/godmode/policies/policy_agents.php:857
+#: ../../enterprise/godmode/policies/policy_agents.php:1373
+msgid "Add to delete queue"
+msgstr "Añadir a la lista de eliminación"
+
+#: ../../enterprise/godmode/policies/policy_agents.php:857
+#: ../../enterprise/godmode/policies/policy_agents.php:1373
+msgid "D."
+msgstr "D."
+
+#: ../../enterprise/godmode/policies/policy_agents.php:946
+#: ../../godmode/agentes/agent_manager.php:260
+msgid "This agent can be remotely configured"
+msgstr "Este agente puede ser configurado remotamente"
+
+#: ../../enterprise/godmode/policies/policy_agents.php:953
+msgid "This agent can not be remotely configured"
+msgstr "Este agente no puede ser configurado remotamente."
+
+#: ../../enterprise/godmode/policies/policy_agents.php:1003
+#: ../../enterprise/godmode/policies/policy_agents.php:1482
+msgid "Process deletion"
+msgstr "Borrado del proceso"
+
+#: ../../enterprise/godmode/policies/policy_agents.php:1012
+#: ../../enterprise/godmode/policies/policy_agents.php:1493
+#: ../../enterprise/godmode/policies/policy_queue.php:337
+msgid "Add to apply queue"
+msgstr "Añadir a la cola para aplicarlo"
+
+#: ../../enterprise/godmode/policies/policy_agents.php:1066
+#: ../../enterprise/godmode/policies/policy_agents.php:1535
+#: ../../enterprise/godmode/policies/policy_modules.php:1573
+#: ../../enterprise/godmode/policies/policy_external_alerts.php:533
+#: ../../enterprise/godmode/policies/policy_inventory_modules.php:329
+#: ../../enterprise/godmode/policies/policy_alerts.php:529
+msgid "Undo deletion"
+msgstr "Deshacer eliminación"
+
+#: ../../enterprise/godmode/policies/policy_agents.php:1110
+#: ../../enterprise/godmode/policies/policy_agents.php:1435
+msgid "Need apply"
+msgstr "Necesita aplicarse"
+
+#: ../../enterprise/godmode/policies/policy_agents.php:1122
+#: ../../enterprise/godmode/policies/policy_agents.php:1447
+msgid "Applying policy"
+msgstr "Aplicando política"
+
+#: ../../enterprise/godmode/policies/policy_agents.php:1135
+#: ../../enterprise/godmode/policies/policy_agents.php:1458
+msgid "Deleting from policy"
+msgstr "Eliminando de la política"
+
+#: ../../enterprise/godmode/policies/policy_agents.php:1295
+msgid "Add groups to policy"
+msgstr "Añadir grupos a política"
+
+#: ../../enterprise/godmode/policies/policy_agents.php:1317
+msgid "Delete groups from policy"
+msgstr "Eliminar grupos de política"
+
+#: ../../enterprise/godmode/policies/policy_agents.php:1370
+msgid "Total agents in policy group"
+msgstr "Total de agentes en el grupo de política"
+
+#: ../../enterprise/godmode/policies/policy_agents.php:1370
+msgid "T."
+msgstr "T."
+
+#: ../../enterprise/godmode/policies/policy_queue.php:63
+msgid "No policies with this id"
+msgstr "No hay políticas con este identificador"
+
+#: ../../enterprise/godmode/policies/policy_queue.php:146
+#, php-format
+msgid "%s: Operations successfully deleted from the queue"
+msgstr "%s: Operaciones eliminadas correctamente de la cola"
+
+#: ../../enterprise/godmode/policies/policy_queue.php:153
+msgid "Operations successfully deleted from the queue"
+msgstr "Operaciones eliminadas correctamente de la cola"
+
+#: ../../enterprise/godmode/policies/policy_queue.php:154
+msgid "Operations cannot be deleted from the queue"
+msgstr "Las operaciones no pueden ser eliminadas de la cola."
+
+#: ../../enterprise/godmode/policies/policy_queue.php:261
+#, php-format
+msgid "Some nodes (%s) are unreachebles. Some information may be missing."
+msgstr "Algunos nódulos (%s) están inaccesible. Podría faltar información."
+
+#: ../../enterprise/godmode/policies/policy_queue.php:308
+msgid "Update pending"
+msgstr "Actualización pendiente"
+
+#: ../../enterprise/godmode/policies/policy_queue.php:314
+msgid "Update pending agents"
+msgstr "Actualizar agentes pendientes"
+
+#: ../../enterprise/godmode/policies/policy_queue.php:343
+msgid "Add to apply queue only for database"
+msgstr "Añadir a la cola de aplicación solo de cambios de base de datos"
+
+#: ../../enterprise/godmode/policies/policy_queue.php:354
+msgid "Update pending groups"
+msgstr "Actualizar grupos pendientes"
+
+#: ../../enterprise/godmode/policies/policy_queue.php:368
+msgid "Link pending modules"
+msgstr "Enlazar módulos pendientes"
+
+#: ../../enterprise/godmode/policies/policy_queue.php:376
+msgid "Will be linked in the next policy application"
+msgstr "Se enlazará en la siguiente aplicación de políticas"
+
+#: ../../enterprise/godmode/policies/policy_queue.php:382
+msgid "Unlink pending modules"
+msgstr "Desenlazar módulos pendientes"
+
+#: ../../enterprise/godmode/policies/policy_queue.php:388
+msgid "Will be unlinked in the next policy application"
+msgstr "Será desenlazado en la siguiente aplicación de políticas"
+
+#: ../../enterprise/godmode/policies/policy_queue.php:393
+msgid "Delete pending"
+msgstr "Eliminación pendiente"
+
+#: ../../enterprise/godmode/policies/policy_queue.php:399
+msgid "Delete pending agents"
+msgstr "Eliminar agentes pendientes"
+
+#: ../../enterprise/godmode/policies/policy_queue.php:407
+#: ../../enterprise/godmode/policies/policy_queue.php:422
+#: ../../enterprise/godmode/policies/policy_queue.php:437
+#: ../../enterprise/godmode/policies/policy_queue.php:452
+#: ../../enterprise/godmode/policies/policy_queue.php:467
+#: ../../enterprise/godmode/policies/policy_queue.php:482
+#: ../../enterprise/godmode/policies/policy_queue.php:497
+#: ../../enterprise/godmode/policies/policy_queue.php:512
+msgid "Will be deleted in the next policy application"
+msgstr "Se eliminará en la siguiente aplicación de políticas"
+
+#: ../../enterprise/godmode/policies/policy_queue.php:414
+msgid "Delete pending groups"
+msgstr "Eliminar grupos pendientes"
+
+#: ../../enterprise/godmode/policies/policy_queue.php:429
+msgid "Delete pending modules"
+msgstr "Eliminar módulos pendientes"
+
+#: ../../enterprise/godmode/policies/policy_queue.php:444
+msgid "Delete pending inventory modules"
+msgstr "Eliminar módulos de inventario pendientes"
+
+#: ../../enterprise/godmode/policies/policy_queue.php:459
+msgid "Delete pending alerts"
+msgstr "Eliminar alertas pendientes"
+
+#: ../../enterprise/godmode/policies/policy_queue.php:474
+msgid "Delete pending external alerts"
+msgstr "Eliminar alertas externas pendientes"
+
+#: ../../enterprise/godmode/policies/policy_queue.php:489
+msgid "Delete pending file collections"
+msgstr "Eliminar colecciones de archivos pendientes"
+
+#: ../../enterprise/godmode/policies/policy_queue.php:504
+msgid "Delete pending plugins"
+msgstr "Eliminar plugins pendientes"
+
+#: ../../enterprise/godmode/policies/policy_queue.php:518
+msgid "Advices"
+msgstr "Consejos"
+
+#: ../../enterprise/godmode/policies/policy_queue.php:523
+msgid "Queue summary"
+msgstr "Resumen de cola"
+
+#: ../../enterprise/godmode/policies/policy_queue.php:636
+msgid "Queue filter"
+msgstr "Filtros de cola"
+
+#: ../../enterprise/godmode/policies/policy_queue.php:790
+msgid "Empty queue"
+msgstr "Vaciar cola"
+
+#: ../../enterprise/godmode/policies/policy_queue.php:804
+msgid "This operation could take a long time"
+msgstr "Esta operación podría tardar bastante tiempo."
+
+#: ../../enterprise/godmode/policies/policy_queue.php:815
+msgid "Apply all queues"
+msgstr "Aplicar todas las colas"
+
+#: ../../enterprise/godmode/policies/policy_queue.php:821
+msgid "Clear all items"
+msgstr "Borrar todos los elementos"
+
+#: ../../enterprise/godmode/policies/policy_linking.php:28
+msgid "Linking modules"
+msgstr "Módulos enlazados"
+
+#: ../../enterprise/godmode/policies/policy_linking.php:99
+msgid "Error: Update linking modules to policy"
+msgstr "Error al actualizar los módulos enlazados a la política"
+
+#: ../../enterprise/godmode/policies/policy_linking.php:101
+msgid "Success: Update linking modules to policy"
+msgstr "Módulos enlazados a la política correctamente"
+
+#: ../../enterprise/godmode/policies/policy_linking.php:127
+msgid "Free text for filter (*)"
+msgstr "Texto libre para filtro (*)"
+
+#: ../../enterprise/godmode/policies/policy_linking.php:128
+msgid "Free text for filter"
+msgstr "Texto libre para filtro"
+
+#: ../../enterprise/godmode/policies/policy_linking.php:138
+msgid "Cannot retrieve unlinked modules"
+msgstr "No se han podido obtener módulos no enlazados"
+
+#: ../../enterprise/godmode/policies/policy_linking.php:140
+msgid "There are no defined modules unlinked"
+msgstr "No hay módulos definidos desvinculados"
+
+#: ../../enterprise/godmode/policies/policy_linking.php:142
+msgid "List of modules unlinked"
+msgstr "Lista de módulos sin enlazar"
+
+#: ../../enterprise/godmode/policies/policy_modules.php:299
+msgid ""
+"If you change this description, you must change into the text of Data "
+"configuration."
+msgstr ""
+"Si cambias esta descripción, tienes que cambiarla en el texto de la "
+"configuración de datos."
+
+#: ../../enterprise/godmode/policies/policy_modules.php:372
+msgid "Invalid module type."
+msgstr "Tipo de módulo inválido"
+
+#: ../../enterprise/godmode/policies/policy_modules.php:403
+#: ../../godmode/agentes/module_manager_editor.php:738
+msgid "Base options"
+msgstr "Opciones de base"
+
+#: ../../enterprise/godmode/policies/policy_modules.php:548
+msgid "Could not be added module(s). You must select a policy"
+msgstr "El módulo no se pudo añadir. Tienes que seleccionar una política."
+
+#: ../../enterprise/godmode/policies/policy_modules.php:581
+#, php-format
+msgid "Successfully added module(s) (%s/%s) to policy %s"
+msgstr "Módulo(s) (%s/%s) añadido(s) correctamente a la política %s"
+
+#: ../../enterprise/godmode/policies/policy_modules.php:587
+#, php-format
+msgid "Could not be added module(s) (%s/%s) to policy %s"
+msgstr "El módulo (%s/%s) no se pudo añadir a la política %s"
+
+#: ../../enterprise/godmode/policies/policy_modules.php:623
+msgid "To define plugins please use plugin configuration tab."
+msgstr "Para definir plugins, use la pestaña de configuración de plugins."
+
+#: ../../enterprise/godmode/policies/policy_modules.php:920
+msgid "Could not be added module."
+msgstr "El módulo no se pudo añadir."
+
+#: ../../enterprise/godmode/policies/policy_modules.php:1265
+msgid ""
+"The module type in Data configuration is empty, take from combo box of form."
+msgstr ""
+"El tipo de datos en la configuración está vacío, elige uno del combo del "
+"formulario."
+
+#: ../../enterprise/godmode/policies/policy_modules.php:1269
+msgid ""
+"The module name in Data configuration is empty, take from text field of form."
+msgstr ""
+"El nombre del módulo en la configuración está vacío, elige uno del combo del "
+"formulario."
+
+#: ../../enterprise/godmode/policies/policy_modules.php:1299
+#: ../../enterprise/godmode/policies/policy_modules.php:1312
+#: ../../enterprise/godmode/policies/policy_inventory_modules.php:163
+msgid ""
+"Successfully added to delete pending modules. Will be deleted in the next "
+"policy application."
+msgstr ""
+"Añadido correctamente a la cola de módulos pendientes de eliminación. Será "
+"eliminado en la próxima aplicación de políticas."
+
+#: ../../enterprise/godmode/policies/policy_modules.php:1303
+msgid "Could not be added to deleted all modules."
+msgstr "No se pudo añadir a la lista para eliminar todos los módulos."
+
+#: ../../enterprise/godmode/policies/policy_modules.php:1381
+#: ../../godmode/agentes/configurar_agente.php:2124
+#, php-format
+msgid "copy of %s (%d)"
+msgstr "copia de  %s (%d)"
+
+#: ../../enterprise/godmode/policies/policy_modules.php:1411
+msgid "Successfully duplicate the module."
+msgstr "Módulo duplicado correctamente"
+
+#: ../../enterprise/godmode/policies/policy_modules.php:1492
+msgid "Local component"
+msgstr "Componente local"
+
+#: ../../enterprise/godmode/policies/policy_modules.php:1509
+#: ../../enterprise/godmode/policies/policy_modules.php:1510
+msgid "Disabled module"
+msgstr "Módulo deshabilitado"
+
+#: ../../enterprise/godmode/policies/policy_modules.php:1517
+#: ../../enterprise/godmode/policies/policy_modules.php:1518
+msgid "Enabled module"
+msgstr "Módulo habilitado"
+
+#: ../../enterprise/godmode/policies/policy_modules.php:1528
+#: ../../enterprise/godmode/policies/policy_modules.php:1529
+#: ../../godmode/agentes/module_manager.php:1143
+#: ../../godmode/agentes/module_manager.php:1144
+msgid "Enable module"
+msgstr "Habilitar el módulo"
+
+#: ../../enterprise/godmode/policies/policy_modules.php:1538
+#: ../../enterprise/godmode/policies/policy_modules.php:1539
+#: ../../godmode/agentes/module_manager.php:1153
+#: ../../godmode/agentes/module_manager.php:1154
+msgid "Disable module"
+msgstr "Deshabilitar el módulo"
+
+#: ../../enterprise/godmode/policies/policy_modules.php:1624
+msgid "There are no defined modules"
+msgstr "No hay módulos definidos"
+
+#: ../../enterprise/godmode/policies/policy_modules.php:1643
+#: ../../godmode/massive/massive_copy_modules.php:188
+msgid "Copy modules"
+msgstr "Copiar módulos"
+
+#: ../../enterprise/godmode/policies/policy_modules.php:1644
+msgid "Copy selected modules to policy: "
+msgstr "Copiar módulos seleccionados a la política: "
+
+#: ../../enterprise/godmode/policies/policy_modules.php:1706
+#: ../../godmode/agentes/module_manager_editor.php:822
+msgid "No module name provided"
+msgstr "No se proporcionó ningún nombre de módulo."
+
+#: ../../enterprise/godmode/policies/policy_modules.php:1707
+#: ../../godmode/agentes/module_manager_editor.php:832
+msgid "No target IP provided"
+msgstr "No se proporcionó ninguna IP de destino."
+
+#: ../../enterprise/godmode/policies/policy_modules.php:1708
+#: ../../godmode/agentes/module_manager_editor.php:842
+msgid "No SNMP OID provided"
+msgstr "No se proporcionó ningún OID de SMTP."
+
+#: ../../enterprise/godmode/policies/policy_modules.php:1849
+msgid "Are you sure to copy modules into policy?\\n"
+msgstr "¿Estás seguro de que quieres copiar los módulos en la política?\\n"
+
+#: ../../enterprise/godmode/policies/policy_modules.php:1869
+msgid "Please select any module to copy"
+msgstr "Por favor, selecciona algún módulo para copiar."
+
+#: ../../enterprise/godmode/policies/policies.php:85
+msgid "Policy not found."
+msgstr "No se ha encontrado la política."
+
+#: ../../enterprise/godmode/policies/policies.php:153
+msgid "Policy name already exists"
+msgstr "El nombre de la política ya existe."
+
+#: ../../enterprise/godmode/policies/policies.php:224
+msgid "Policies Management"
+msgstr "Gestión de políticas"
+
+#: ../../enterprise/godmode/policies/policies.php:243
+msgid "All policy agents added to delete queue"
+msgstr "Todos los agentes de las políticas añadidos a la cola de eliminación"
+
+#: ../../enterprise/godmode/policies/policies.php:244
+msgid "Policy agents cannot be added to the delete queue"
+msgstr ""
+"Los agentes de las políticas no se pudieron añadir a la cola de eliminación"
+
+#: ../../enterprise/godmode/policies/policies.php:330
+msgid "a"
+msgstr "a"
+
+#: ../../enterprise/godmode/policies/policies.php:514
+msgid "Agent Wizard"
+msgstr "Asistente de agente"
+
+#: ../../enterprise/godmode/policies/policies.php:595
+msgid "There must be no agents to delete the policy."
+msgstr "No debe haber agentes para borrar la política."
+
+#: ../../enterprise/godmode/policies/policies.php:601
+msgid "A policy with agents cannot be deleted. Purge it first"
+msgstr "Una política con agentes no se puede eliminar. Púrgala primero."
+
+#: ../../enterprise/godmode/policies/policies.php:611
+msgid "Deleting all policy agents"
+msgstr "Eliminando todos los agentes de las políticas"
+
+#: ../../enterprise/godmode/policies/policies.php:616
+msgid "All the policy agents will be deleted"
+msgstr "Todos los agentes de las políticas serán eliminados."
+
+#: ../../enterprise/godmode/policies/policies.php:625
+msgid "Delete all agents"
+msgstr "Eliminar todos los agentes"
+
+#: ../../enterprise/godmode/policies/policy_external_alerts.php:87
+#: ../../godmode/alerts/alert_list.php:173
+msgid "No module specified"
+msgstr "Ningún módulo especificado"
+
+#: ../../enterprise/godmode/policies/policy_external_alerts.php:123
+msgid "Created successfuly"
+msgstr "Creado correctamente"
+
+#: ../../enterprise/godmode/policies/policy_external_alerts.php:127
+msgid "Duplicated alert"
+msgstr "Alerta duplicada"
+
+#: ../../enterprise/godmode/policies/policy_external_alerts.php:145
+#: ../../enterprise/godmode/policies/policy_alerts.php:255
+msgid ""
+"Successfully added to delete pending alerts. Will be deleted in the next "
+"policy application."
+msgstr ""
+"Correctamente añadido a las alertas pendientes de eliminación. Será eliminado "
+"en la próxima aplicación de políticas."
+
+#: ../../enterprise/godmode/policies/policy_external_alerts.php:173
+#: ../../enterprise/godmode/policies/policy_alerts.php:302
+msgid "Deleted action successfuly"
+msgstr "Acción eliminada correctamente"
+
+#: ../../enterprise/godmode/policies/policy_external_alerts.php:200
+#: ../../enterprise/godmode/policies/policy_alerts.php:280
+msgid "Added action successfuly"
+msgstr "Acción añadida correctamente"
+
+#: ../../enterprise/godmode/policies/policy_external_alerts.php:383
+msgid "Modules in policy per agents"
+msgstr "Módulos en política por agentes"
+
+#: ../../enterprise/godmode/policies/policy_external_alerts.php:566
+msgid "There is not external alerts configured in this policy"
+msgstr "No hay alertas externas configuradas en esta política"
+
+#: ../../enterprise/godmode/policies/policy_external_alerts.php:620
+msgid "Modules in policy agents"
+msgstr "Módulos en agentes de política"
+
+#: ../../enterprise/godmode/policies/policy_external_alerts.php:648
+msgid "Alert Template"
+msgstr "Plantilla de alerta"
+
+#: ../../enterprise/godmode/policies/configure_policy.php:122
+msgid "Force Apply"
+msgstr "Forzar aplicación"
+
+#: ../../enterprise/godmode/policies/configure_policy.php:122
+msgid ""
+"Force the creation of modules even if the software agent does not have remote "
+"configuration"
+msgstr ""
+"Forzar la creación de módulos incluso si el agente software no tiene "
+"configuración remota"
+
+#: ../../enterprise/godmode/policies/policy_inventory_modules.php:110
+msgid "Module is not selected"
+msgstr "No se ha seleccionado ningún módulo"
+
+#: ../../enterprise/godmode/policies/policy_inventory_modules.php:296
+msgid "There are no defined inventory modules"
+msgstr "No hay módulos de inventario definidos"
+
+#: ../../enterprise/godmode/policies/policy_alerts.php:178
+#: ../../godmode/massive/massive_standby_alerts.php:132
+#: ../../godmode/alerts/alert_list.php:420
+msgid "Successfully set standby"
+msgstr "Modo standby activado"
+
+#: ../../enterprise/godmode/policies/policy_alerts.php:179
+#: ../../godmode/massive/massive_standby_alerts.php:132
+#: ../../godmode/alerts/alert_list.php:421
+msgid "Could not be set standby"
+msgstr "No se pudo establecer el modo standby"
+
+#: ../../enterprise/godmode/policies/policy_alerts.php:204
+#: ../../godmode/massive/massive_standby_alerts.php:102
+#: ../../godmode/alerts/alert_list.php:447
+msgid "Successfully set off standby"
+msgstr "Se ha desactivado el modo standby"
+
+#: ../../enterprise/godmode/policies/policy_alerts.php:205
+#: ../../godmode/massive/massive_standby_alerts.php:102
+#: ../../godmode/alerts/alert_list.php:448
+msgid "Could not be set off standby"
+msgstr "No se pudo desactivar el modo standby"
+
+#: ../../enterprise/godmode/policies/policy_alerts.php:249
+msgid " created successfuly"
+msgstr " creado correctamente"
+
+#: ../../enterprise/godmode/policies/policy_alerts.php:249
+msgid " could not be created"
+msgstr " no se ha podido crear"
+
+#: ../../enterprise/godmode/policies/policy_alerts.php:613
+msgid "There is not alerts configured in this policy."
+msgstr "No hay alertas configuradas en esta política."
+
+#: ../../enterprise/godmode/policies/policy_alerts.php:653
+msgid "Policy module"
+msgstr "Módulo de la política"
+
+#: ../../enterprise/godmode/policies/policy_alerts.php:731
+#: ../../godmode/alerts/alert_list.list.php:1057
+msgid "Set off standby"
+msgstr "Desactivar modo standby"
+
+#: ../../enterprise/godmode/policies/policy_alerts.php:740
+#: ../../godmode/alerts/alert_list.list.php:1084
+msgid "Set standby"
+msgstr "Activar modo standby"
+
+#: ../../enterprise/godmode/policies/policy_collections.php:99
+msgid ""
+"Successfully added to delete the collection. Will be deleted in the next "
+"policy application."
+msgstr ""
+"Añadido correctamente a la colección. Se eliminará en la próxima aplicación de "
+"política."
+
+#: ../../enterprise/godmode/policies/policy_collections.php:241
+msgid "Collections in policy"
+msgstr "Colecciones en la política"
+
+#: ../../enterprise/godmode/policies/policy_collections.php:245
+msgid "Collections to add"
+msgstr "Colecciones a añadir"
+
+#: ../../enterprise/godmode/policies/policy_collections.php:315
+msgid "No available collection to add"
+msgstr "No hay colecciones a añadir disponibles"
+
+#: ../../enterprise/godmode/policies/policy_plugins.php:56
+msgid ""
+"Successfully added to delete pending plugins. Will be deleted in the next "
+"policy application."
+msgstr ""
+"Correctamente añadido a los plugins pendientes de eliminar. Será eliminado en "
+"la próxima aplicación de políticas."
+
+#: ../../enterprise/godmode/policies/policy_plugins.php:57
+msgid "Cannot be added to delete pending plugins."
+msgstr "No se puede añadir a los plugins pendientes de eliminar."
+
+#: ../../enterprise/godmode/policies/policy_plugins.php:210
+msgid "There are no defined plugins"
+msgstr "No hay plugins definidos"
+
+#: ../../extensions/quick_shell.php:140 ../../extensions/quick_shell.php:244
+msgid "WebService engine has not been started, please check documentation."
+msgstr "El motor WebService aún no se ha iniciado, consulte la documentación."
+
+#: ../../extensions/quick_shell.php:152
+msgid "Retry"
+msgstr "Reintentar"
+
+#: ../../extensions/quick_shell.php:196
+msgid "Telnet"
+msgstr "Telnet"
+
+#: ../../extensions/quick_shell.php:204
+msgid "Connect"
+msgstr "Conectar"
+
+#: ../../extensions/quick_shell.php:232
+msgid "Please use SSH or Telnet."
+msgstr "Use SSH o Telnet."
+
+#: ../../extensions/quick_shell.php:266
+msgid "WebService engine is not working properly, please check documentation."
+msgstr ""
+"El motor WebService no funciona correctamente, consulte la documentación."
+
+#: ../../extensions/quick_shell.php:425
+#, php-format
+msgid "%d Updated"
+msgstr "%d Actualizado"
+
+#: ../../extensions/quick_shell.php:428
+#, php-format
+msgid "%d Updated, please restart WebSocket engine service"
+msgstr "%d Actualizado, reinicie el servicio del motor WebSocket"
+
+#: ../../extensions/quick_shell.php:438
+msgid "Quickshell"
+msgstr "Quickshell"
+
+#: ../../extensions/quick_shell.php:448
+msgid "Gotty path"
+msgstr "Ruta Gotty"
+
+#: ../../extensions/quick_shell.php:458
+msgid "Gotty host"
+msgstr "Host Gotty"
+
+#: ../../extensions/quick_shell.php:468
+msgid "Gotty ssh port"
+msgstr "Puerto SSH Gotty"
+
+#: ../../extensions/quick_shell.php:478
+msgid "Gotty telnet port"
+msgstr "Puerto telnet Gotty"
+
+#: ../../extensions/quick_shell.php:495
+msgid "Gotty user"
+msgstr "Usuario Gotty"
+
+#: ../../extensions/quick_shell.php:505
+msgid "Gotty password"
+msgstr "Contraseña Gotty"
+
+#: ../../extensions/quick_shell.php:545
+msgid "QuickShell"
+msgstr "QuickShell"
+
+#: ../../extensions/disabled/matrix_events.php:30
+msgid "Matrix events"
+msgstr "Eventos matriz"
+
+#: ../../extensions/pandora_logs.php:29
+msgid "Cannot find file"
+msgstr "Archivo no encontrado"
+
+#: ../../extensions/pandora_logs.php:34
+msgid "File is too large than PHP memory allocated in the system."
+msgstr "El archivo supera la capacidad de la memoria PHP alojada en el sistema"
+
+#: ../../extensions/pandora_logs.php:35
+msgid "The preview file is imposible."
+msgstr "No es posible generar una vista previa del archivo"
+
+#: ../../extensions/pandora_logs.php:38 ../../extensions/pandora_logs.php:45
+msgid "The folder /var/log/pandora must have pandora:apache and its content too."
+msgstr ""
+"La carpeta /var/log/pandora debe contener pandora:apache y también su "
+"contenido."
+
+#: ../../extensions/pandora_logs.php:67
+msgid "System logfile viewer"
+msgstr "Visor de archivos de log del sistema"
+
+#: ../../extensions/pandora_logs.php:69
+#, php-format
+msgid "Use this tool to view your %s logfiles directly on the console"
+msgstr ""
+"Utilice esta herramienta para ver los %s ficheros log directamente desde la "
+"consola"
+
+#: ../../extensions/pandora_logs.php:71
+msgid ""
+"You can choose the amount of information shown in general setup (Log size "
+"limit in system logs viewer extension), "
+msgstr ""
+"Puedes elegir la cantidad de información que se muestra en la configuración "
+"general (límite de tamaño de logs en la extensión del visor de logs del "
+"sistema) "
+
+#: ../../extensions/pandora_logs.php:85
+msgid "System logfiles"
+msgstr "Logs del sistema"
+
+#: ../../extensions/users_connected.php:37
+#: ../../extensions/users_connected.php:209
+msgid "Users connected"
+msgstr "Usuarios conectados"
+
+#: ../../extensions/users_connected.php:42
+msgid "This user does not have any associated profile"
+msgstr "Este usuario no tiene ningún perfil/grupo asignado"
+
+#: ../../extensions/users_connected.php:132
+msgid "No other users connected"
+msgstr "No hay otros usuarios conectados"
+
+#: ../../extensions/users_connected.php:145
+msgid "Last login"
+msgstr "Último acceso"
+
+#: ../../extensions/realtime_graphs.php:58
+#: ../../extensions/realtime_graphs.php:268
+msgid "Realtime graphs"
+msgstr "Gráficas en tiempo real"
+
+#: ../../extensions/realtime_graphs.php:134
+#, php-format
+msgid "%s Server CPU"
+msgstr "%s CPU del servidor"
+
+#: ../../extensions/realtime_graphs.php:136
+#, php-format
+msgid "Pending packages from %s Server"
+msgstr "Paquetes del %s servidor pendientes"
+
+#: ../../extensions/realtime_graphs.php:140
+#, php-format
+msgid "%s Server Disk IO Wait"
+msgstr "%s Server Disk IO Wait"
+
+#: ../../extensions/realtime_graphs.php:144
+#, php-format
+msgid "%s Server Apache load"
+msgstr "%s Carga del servidor apache"
+
+#: ../../extensions/realtime_graphs.php:148
+#, php-format
+msgid "%s Server MySQL load"
+msgstr "%s Carga del servidor MySQL"
+
+#: ../../extensions/realtime_graphs.php:152
+#, php-format
+msgid "%s Server load"
+msgstr "%s Carga del servidor"
+
+#: ../../extensions/realtime_graphs.php:155
+msgid "SNMP Interface throughput"
+msgstr "Rendimiento de interfaz SNMP"
+
+#: ../../extensions/realtime_graphs.php:206
+msgid "Refresh interval"
+msgstr "Intervalo de actualización"
+
+#: ../../extensions/realtime_graphs.php:217
+#: ../../godmode/modules/manage_network_components_form_wizard.php:135
+msgid "Incremental"
+msgstr "Incremental"
+
+#: ../../extensions/realtime_graphs.php:222
+msgid "Clear graph"
+msgstr "Limpiar gráfica"
+
+#: ../../extensions/realtime_graphs.php:249
+#: ../../godmode/agentes/module_manager_editor_network.php:43
+msgid "Use this OID"
+msgstr "Usar esta OID"
+
+#: ../../extensions/dbmanager.php:110
+msgid "Database interface"
+msgstr "Interfaz de base de datos"
+
+#: ../../extensions/dbmanager.php:123
+msgid ""
+"Warning, you are accessing the database directly. You can leave the system "
+"inoperative if you run an inappropriate SQL statement"
+msgstr ""
+"Advertencia, está accediendo a la base de datos directamente. Puede dejar el "
+"sistema inoperativo si ejecuta una instrucción SQL inapropiada"
+
+#: ../../extensions/dbmanager.php:161
+#, php-format
+msgid ""
+"This is an advanced extension to interface with %s database directly from WEB "
+"console\n"
+"\t\tusing native SQL sentences. Please note that <b>you can damage</b> your %s "
+"installation\n"
+"\t\tif you don't know </b>exactly</b> what are you are doing,\n"
+"\t\tthis means that you can severily damage your setup using this extension.\n"
+"\t\tThis extension is intended to be used <b>only by experienced users</b>\n"
+"\t\twith a depth knowledge of %s internals."
+msgstr ""
+"Esta es una extensión avanzada de la interfaz con la %s base de datos "
+"directamente desde la consola WEB\n"
+"\t\tusando comandos SQL nativos. Tenga en cuenta que <b>puede perjudicar</b> a "
+"la %s instalación\n"
+"\t\tsi no sabe </b>exactamente</b> lo que hace,\n"
+"\t\testo significa que puede dañar seriamente la configuración al usar esta "
+"extensión.\n"
+"\t\tEsta extensión está destinada  <b>solamente a usuarios expertos</b>\n"
+"\t\tcon amplios conocimientos sobre el funcionamiento %s interno."
+
+#: ../../extensions/dbmanager.php:207
+msgid "Select query target"
+msgstr "Seleccionar destino de consulta"
+
+#: ../../extensions/dbmanager.php:214
+msgid "Execute SQL"
+msgstr "Ejecutar SQL"
+
+#: ../../extensions/dbmanager.php:255
+msgid "Error querying database node"
+msgstr "Error al consultar el nodo de la base de datos"
+
+#: ../../extensions/dbmanager.php:322 ../../godmode/menu.php:433
+msgid "DB interface"
+msgstr "Interfaz de la BD"
+
+#: ../../extensions/files_repo/files_repo_get_file.php:66
+msgid "Unreliable petition"
+msgstr "Petición no fiable"
+
+#: ../../extensions/files_repo/files_repo_get_file.php:66
+msgid "Please contact the administrator"
+msgstr "Por favor, contacta con el administrador"
+
+#: ../../extensions/files_repo/functions_files_repo.php:28
+#: ../../extensions/files_repo/functions_files_repo.php:46
+msgid "Attachment directory is not writable by HTTP Server"
+msgstr "El servidor HTTP no puede escribir en el directorio de adjuntos"
+
+#: ../../extensions/files_repo/functions_files_repo.php:28
+#: ../../extensions/files_repo/functions_files_repo.php:46
+#, php-format
+msgid "Please check that the web server has write rights on the %s directory"
+msgstr ""
+"Por favor, comprueba que el directorio %s del servidor web tiene permisos de "
+"escritura"
+
+#: ../../extensions/files_repo/functions_files_repo.php:248
+msgid "The file could not be copied"
+msgstr "El archivo no ha sido copiado"
+
+#: ../../extensions/files_repo/functions_files_repo.php:251
+msgid "There was an error creating the file"
+msgstr "Se ha producido un error creando el archivo"
+
+#: ../../extensions/files_repo/functions_files_repo.php:295
+msgid "There was an error updating the file"
+msgstr "Se ha producido un error actualizando el archivo"
+
+#: ../../extensions/files_repo/files_repo_form.php:84
+msgid "Only 200 characters are permitted"
+msgstr "Máximo 200 caracteres"
+
+#: ../../extensions/files_repo/files_repo_form.php:95
+#: ../../godmode/extensions.php:138
+msgid "File"
+msgstr "Archivo"
+
+#: ../../extensions/files_repo/files_repo_form.php:98
+#: ../../extensions/files_repo/files_repo_form.php:104
+#: ../../extensions/files_repo/files_repo_list.php:112
+msgid "Public link"
+msgstr "Enlace público"
+
+#: ../../extensions/files_repo/files_repo_list.php:106
+msgid "Copy to clipboard"
+msgstr "Copiar al portapapeles"
+
+#: ../../extensions/db_status.php:25 ../../extensions/db_status.php:453
+#: ../../godmode/menu.php:433
+msgid "DB Schema check"
+msgstr "Comprobación del esquema de la BD"
+
+#: ../../extensions/db_status.php:43
+msgid ""
+"This extension checks the DB is correct. Because sometimes the old DB from a "
+"migration has not some fields in the tables or the data is changed."
+msgstr ""
+"Esta extensión comprueba que la DB es correcta, ya que, en ocasiones, la "
+"antigua DB de una migración no tiene algunos campos en las tablas o los datos "
+"son diferentes."
+
+#: ../../extensions/db_status.php:46
+msgid "At the moment the checks is for MySQL/MariaDB."
+msgstr "Por el momento, las comprobaciones son para MySQL/MariaDB"
+
+#: ../../extensions/db_status.php:52
+msgid "DB settings"
+msgstr "Configuración de la BD"
+
+#: ../../extensions/db_status.php:56
+msgid "DB User with privileges"
+msgstr "Usuario de la BD con privilegios"
+
+#: ../../extensions/db_status.php:58
+msgid "DB Password for this user"
+msgstr "Contraseña de la BD para este usuario"
+
+#: ../../extensions/db_status.php:62
+msgid "DB Hostname"
+msgstr "Nombre del host de la base de datos"
+
+#: ../../extensions/db_status.php:64
+msgid "DB Name (temporal for testing)"
+msgstr "Nombre de la BD (temporal, para pruebas)"
+
+#: ../../extensions/db_status.php:72
+msgid "Execute Test"
+msgstr "Ejecutar la prueba"
+
+#: ../../extensions/db_status.php:108
+msgid "Unsuccessful connected to the DB"
+msgstr "Error al conectarse a la BD"
+
+#: ../../extensions/db_status.php:119
+msgid "Unsuccessful created the testing DB"
+msgstr "Error al crear la BD de prueba"
+
+#: ../../extensions/db_status.php:135
+msgid "Unsuccessful installed tables into the testing DB"
+msgstr "Error al instalar las tablas en la BD de prueba"
+
+#: ../../extensions/db_status.php:219
+#, php-format
+msgid "Success! %s DB contains all tables"
+msgstr "Hecho! %s La base de datos contiene todas las tablas"
+
+#: ../../extensions/db_status.php:221
+#, php-format
+msgid "%s DB could not retrieve all tables. The missing tables are (%s)"
+msgstr ""
+"%s La base de datos no ha podido obtener todas las tablas. Faltan las tablas "
+"(%s)"
+
+#: ../../extensions/db_status.php:235 ../../extensions/db_status.php:246
+#: ../../extensions/db_status.php:349
+msgid "You can execute this SQL query for to fix."
+msgstr "Puede ejecutar esta consulta SQL para arreglarlo"
+
+#: ../../extensions/db_status.php:343
+#, php-format
+msgid "Unsuccessful the table %s has not the field %s"
+msgstr "Error, la tabla %s no contiene todos los campos %s"
+
+#: ../../extensions/db_status.php:408
+msgid "Successful all the tables have the correct fields"
+msgstr "Todas las tablas tienen los campos correctos"
+
+#: ../../extensions/agents_alerts.php:37
+msgid "Agents/Alerts view"
+msgstr "Vista de Agentes/Alertas"
 
 #: ../../extensions/extension_uploader.php:29
 msgid "Uploader extension"
@@ -50726,38 +45212,33 @@ msgstr ""
 msgid "There are no defined groups or module groups"
 msgstr "No hay grupos o grupos de módulos definidos"
 
-#: ../../extensions/insert_data.php:58
-msgid "Insert data"
-msgstr "Insertar datos"
+#: ../../extensions/agents_modules.php:564
+msgid "Agent/module view"
+msgstr "Vista de agente/módulo"
 
-#: ../../extensions/insert_data.php:89
-msgid "You haven't privileges for insert data in the agent."
-msgstr "No tienes privilegios para insertar datos en el agente"
+#: ../../extensions/agents_modules.php:605
+msgid "Filters "
+msgstr "Filtros "
 
-#: ../../extensions/insert_data.php:125
-#, php-format
-msgid "Can't save agent (%s), module (%s) data xml."
-msgstr "No se pudo guardar el agente (%s), módulo (%s) datos XML"
+#: ../../extensions/agents_modules.php:605
+msgid "Secondary groups and agent subgroups will be taken into account."
+msgstr "Los grupos secundarios y los subgrupos de agentes se tendrán en cuenta."
 
-#: ../../extensions/insert_data.php:134
-#, php-format
-msgid "Save agent (%s), module (%s) data xml."
-msgstr "Guardar agente (%s), módulo (%s) datos XML"
+#: ../../extensions/agents_modules.php:765
+msgid "Previous modules"
+msgstr "Módulos anteriores"
 
-#: ../../extensions/insert_data.php:145
-#, php-format
-msgid ""
-"Please check that the directory \"%s\" is writeable by the apache user. <br /"
-"><br />The CSV file format is date;value&lt;newline&gt;date;value&lt;"
-"newline&gt;... The date in CSV is in format Y/m/d H:i:s."
-msgstr ""
-"Por favor, comprueba que el usuario de Apache puede escribir en el directorio "
-"'%s'. <br /><br /> El formato del archivo CSV es date;value&lt;newline&gt;date;"
-"value&lt;newline&gt;... La fecha en CVS está en formato a/m/d H:i:s."
+#: ../../extensions/agents_modules.php:791
+msgid "More modules"
+msgstr "Más módulos"
 
-#: ../../extensions/insert_data.php:273
-msgid "Insert Data"
-msgstr "Insertar datos"
+#: ../../extensions/agents_modules.php:945
+msgid "Cell turns blue when the module is in 'not initialize' status"
+msgstr "Celda azul cuando el módulo está en estado \"no iniciado\""
+
+#: ../../extensions/agents_modules.php:959
+msgid "Agents/Modules view"
+msgstr "Vista de Agentes/Módulos"
 
 #: ../../extensions/files_repo.php:103
 msgid "Extension not installed"
@@ -50783,111 +45264,6 @@ msgstr ""
 msgid "Files repository"
 msgstr "Repositorio de archivos"
 
-#: ../../extensions/dbmanager.php:110
-msgid "Database interface"
-msgstr "Interfaz de base de datos"
-
-#: ../../extensions/dbmanager.php:123
-msgid ""
-"Warning, you are accessing the database directly. You can leave the system "
-"inoperative if you run an inappropriate SQL statement"
-msgstr ""
-"Advertencia, está accediendo a la base de datos directamente. Puede dejar el "
-"sistema inoperativo si ejecuta una instrucción SQL inapropiada"
-
-#: ../../extensions/dbmanager.php:161
-#, php-format
-msgid ""
-"This is an advanced extension to interface with %s database directly from WEB "
-"console\n"
-"\t\tusing native SQL sentences. Please note that <b>you can damage</b> your %s "
-"installation\n"
-"\t\tif you don't know </b>exactly</b> what are you are doing,\n"
-"\t\tthis means that you can severily damage your setup using this extension.\n"
-"\t\tThis extension is intended to be used <b>only by experienced users</b>\n"
-"\t\twith a depth knowledge of %s internals."
-msgstr ""
-"Esta es una extensión avanzada de la interfaz con la %s base de datos "
-"directamente desde la consola WEB\n"
-"\t\tusando comandos SQL nativos. Tenga en cuenta que <b>puede perjudicar</b> a "
-"la %s instalación\n"
-"\t\tsi no sabe </b>exactamente</b> lo que hace,\n"
-"\t\testo significa que puede dañar seriamente la configuración al usar esta "
-"extensión.\n"
-"\t\tEsta extensión está destinada  <b>solamente a usuarios expertos</b>\n"
-"\t\tcon amplios conocimientos sobre el funcionamiento %s interno."
-
-#: ../../extensions/dbmanager.php:207
-msgid "Select query target"
-msgstr "Seleccionar destino de consulta"
-
-#: ../../extensions/dbmanager.php:214
-msgid "Execute SQL"
-msgstr "Ejecutar SQL"
-
-#: ../../extensions/dbmanager.php:255
-msgid "Error querying database node"
-msgstr "Error al consultar el nodo de la base de datos"
-
-#: ../../extensions/pandora_logs.php:29
-msgid "Cannot find file"
-msgstr "Archivo no encontrado"
-
-#: ../../extensions/pandora_logs.php:34
-msgid "File is too large than PHP memory allocated in the system."
-msgstr "El archivo supera la capacidad de la memoria PHP alojada en el sistema"
-
-#: ../../extensions/pandora_logs.php:35
-msgid "The preview file is imposible."
-msgstr "No es posible generar una vista previa del archivo"
-
-#: ../../extensions/pandora_logs.php:38 ../../extensions/pandora_logs.php:45
-msgid "The folder /var/log/pandora must have pandora:apache and its content too."
-msgstr ""
-"La carpeta /var/log/pandora debe contener pandora:apache y también su "
-"contenido."
-
-#: ../../extensions/pandora_logs.php:67
-msgid "System logfile viewer"
-msgstr "Visor de archivos de log del sistema"
-
-#: ../../extensions/pandora_logs.php:69
-#, php-format
-msgid "Use this tool to view your %s logfiles directly on the console"
-msgstr ""
-"Utilice esta herramienta para ver los %s ficheros log directamente desde la "
-"consola"
-
-#: ../../extensions/pandora_logs.php:71
-msgid ""
-"You can choose the amount of information shown in general setup (Log size "
-"limit in system logs viewer extension), "
-msgstr ""
-"Puedes elegir la cantidad de información que se muestra en la configuración "
-"general (límite de tamaño de logs en la extensión del visor de logs del "
-"sistema) "
-
-#: ../../extensions/pandora_logs.php:85
-msgid "System logfiles"
-msgstr "Logs del sistema"
-
-#: ../../extensions/users_connected.php:37
-#: ../../extensions/users_connected.php:209
-msgid "Users connected"
-msgstr "Usuarios conectados"
-
-#: ../../extensions/users_connected.php:42
-msgid "This user does not have any associated profile"
-msgstr "Este usuario no tiene ningún perfil/grupo asignado"
-
-#: ../../extensions/users_connected.php:132
-msgid "No other users connected"
-msgstr "No hay otros usuarios conectados"
-
-#: ../../extensions/users_connected.php:145
-msgid "Last login"
-msgstr "Último acceso"
-
 #: ../../extensions/resource_registration.php:55
 #, php-format
 msgid "Success add '%s' item in report '%s'."
@@ -51047,127 +45423,18 @@ msgstr ""
 "Puede obtener más recursos en nuestra <a href='https://pandorafms.com/Library/"
 "Library/'>Librería de recursos pública</a>"
 
-#: ../../extensions/db_status.php:43
-msgid ""
-"This extension checks the DB is correct. Because sometimes the old DB from a "
-"migration has not some fields in the tables or the data is changed."
-msgstr ""
-"Esta extensión comprueba que la DB es correcta, ya que, en ocasiones, la "
-"antigua DB de una migración no tiene algunos campos en las tablas o los datos "
-"son diferentes."
+#: ../../extensions/resource_exportation.php:50
+#: ../../extensions/resource_exportation.php:420
+msgid "Resource exportation"
+msgstr "Exportación de recursos"
 
-#: ../../extensions/db_status.php:46
-msgid "At the moment the checks is for MySQL/MariaDB."
-msgstr "Por el momento, las comprobaciones son para MySQL/MariaDB"
+#: ../../extensions/resource_exportation.php:423
+msgid "This extension makes exportation of resource template more easy."
+msgstr "Esta extensión facilita la exportación de la plantilla de recursos."
 
-#: ../../extensions/db_status.php:52
-msgid "DB settings"
-msgstr "Configuración de la BD"
-
-#: ../../extensions/db_status.php:56
-msgid "DB User with privileges"
-msgstr "Usuario de la BD con privilegios"
-
-#: ../../extensions/db_status.php:58
-msgid "DB Password for this user"
-msgstr "Contraseña de la BD para este usuario"
-
-#: ../../extensions/db_status.php:62
-msgid "DB Hostname"
-msgstr "Nombre del host de la base de datos"
-
-#: ../../extensions/db_status.php:64
-msgid "DB Name (temporal for testing)"
-msgstr "Nombre de la BD (temporal, para pruebas)"
-
-#: ../../extensions/db_status.php:72
-msgid "Execute Test"
-msgstr "Ejecutar la prueba"
-
-#: ../../extensions/db_status.php:108
-msgid "Unsuccessful connected to the DB"
-msgstr "Error al conectarse a la BD"
-
-#: ../../extensions/db_status.php:119
-msgid "Unsuccessful created the testing DB"
-msgstr "Error al crear la BD de prueba"
-
-#: ../../extensions/db_status.php:135
-msgid "Unsuccessful installed tables into the testing DB"
-msgstr "Error al instalar las tablas en la BD de prueba"
-
-#: ../../extensions/db_status.php:219
-#, php-format
-msgid "Success! %s DB contains all tables"
-msgstr "Hecho! %s La base de datos contiene todas las tablas"
-
-#: ../../extensions/db_status.php:221
-#, php-format
-msgid "%s DB could not retrieve all tables. The missing tables are (%s)"
-msgstr ""
-"%s La base de datos no ha podido obtener todas las tablas. Faltan las tablas "
-"(%s)"
-
-#: ../../extensions/db_status.php:235 ../../extensions/db_status.php:246
-#: ../../extensions/db_status.php:349
-msgid "You can execute this SQL query for to fix."
-msgstr "Puede ejecutar esta consulta SQL para arreglarlo"
-
-#: ../../extensions/db_status.php:343
-#, php-format
-msgid "Unsuccessful the table %s has not the field %s"
-msgstr "Error, la tabla %s no contiene todos los campos %s"
-
-#: ../../extensions/db_status.php:408
-msgid "Successful all the tables have the correct fields"
-msgstr "Todas las tablas tienen los campos correctos"
-
-#: ../../extensions/realtime_graphs.php:58
-#: ../../extensions/realtime_graphs.php:268
-msgid "Realtime graphs"
-msgstr "Gráficas en tiempo real"
-
-#: ../../extensions/realtime_graphs.php:134
-#, php-format
-msgid "%s Server CPU"
-msgstr "%s CPU del servidor"
-
-#: ../../extensions/realtime_graphs.php:136
-#, php-format
-msgid "Pending packages from %s Server"
-msgstr "Paquetes del %s servidor pendientes"
-
-#: ../../extensions/realtime_graphs.php:140
-#, php-format
-msgid "%s Server Disk IO Wait"
-msgstr "%s Server Disk IO Wait"
-
-#: ../../extensions/realtime_graphs.php:144
-#, php-format
-msgid "%s Server Apache load"
-msgstr "%s Carga del servidor apache"
-
-#: ../../extensions/realtime_graphs.php:148
-#, php-format
-msgid "%s Server MySQL load"
-msgstr "%s Carga del servidor MySQL"
-
-#: ../../extensions/realtime_graphs.php:152
-#, php-format
-msgid "%s Server load"
-msgstr "%s Carga del servidor"
-
-#: ../../extensions/realtime_graphs.php:155
-msgid "SNMP Interface throughput"
-msgstr "Rendimiento de interfaz SNMP"
-
-#: ../../extensions/realtime_graphs.php:206
-msgid "Refresh interval"
-msgstr "Intervalo de actualización"
-
-#: ../../extensions/realtime_graphs.php:222
-msgid "Clear graph"
-msgstr "Limpiar gráfica"
+#: ../../extensions/resource_exportation.php:423
+msgid "You can export resource templates in .ptr format."
+msgstr "Puede exportar plantillas de recursos en formato .prt."
 
 #: ../../extensions/api_checker.php:111 ../../extensions/api_checker.php:248
 msgid "API checker"
@@ -51226,168 +45493,38 @@ msgstr "Mostrar URL"
 msgid "Hide URL"
 msgstr "Ocultar URL"
 
-#: ../../extensions/files_repo/files_repo_form.php:84
-msgid "Only 200 characters are permitted"
-msgstr "Máximo 200 caracteres"
+#: ../../extensions/insert_data.php:58
+msgid "Insert data"
+msgstr "Insertar datos"
 
-#: ../../extensions/files_repo/files_repo_form.php:98
-#: ../../extensions/files_repo/files_repo_form.php:104
-#: ../../extensions/files_repo/files_repo_list.php:112
-msgid "Public link"
-msgstr "Enlace público"
+#: ../../extensions/insert_data.php:89
+msgid "You haven't privileges for insert data in the agent."
+msgstr "No tienes privilegios para insertar datos en el agente"
 
-#: ../../extensions/files_repo/functions_files_repo.php:28
-#: ../../extensions/files_repo/functions_files_repo.php:46
-msgid "Attachment directory is not writable by HTTP Server"
-msgstr "El servidor HTTP no puede escribir en el directorio de adjuntos"
-
-#: ../../extensions/files_repo/functions_files_repo.php:28
-#: ../../extensions/files_repo/functions_files_repo.php:46
+#: ../../extensions/insert_data.php:125
 #, php-format
-msgid "Please check that the web server has write rights on the %s directory"
+msgid "Can't save agent (%s), module (%s) data xml."
+msgstr "No se pudo guardar el agente (%s), módulo (%s) datos XML"
+
+#: ../../extensions/insert_data.php:134
+#, php-format
+msgid "Save agent (%s), module (%s) data xml."
+msgstr "Guardar agente (%s), módulo (%s) datos XML"
+
+#: ../../extensions/insert_data.php:145
+#, php-format
+msgid ""
+"Please check that the directory \"%s\" is writeable by the apache user. <br /"
+"><br />The CSV file format is date;value&lt;newline&gt;date;value&lt;"
+"newline&gt;... The date in CSV is in format Y/m/d H:i:s."
 msgstr ""
-"Por favor, comprueba que el directorio %s del servidor web tiene permisos de "
-"escritura"
+"Por favor, comprueba que el usuario de Apache puede escribir en el directorio "
+"'%s'. <br /><br /> El formato del archivo CSV es date;value&lt;newline&gt;date;"
+"value&lt;newline&gt;... La fecha en CVS está en formato a/m/d H:i:s."
 
-#: ../../extensions/files_repo/functions_files_repo.php:248
-msgid "The file could not be copied"
-msgstr "El archivo no ha sido copiado"
-
-#: ../../extensions/files_repo/functions_files_repo.php:251
-msgid "There was an error creating the file"
-msgstr "Se ha producido un error creando el archivo"
-
-#: ../../extensions/files_repo/functions_files_repo.php:295
-msgid "There was an error updating the file"
-msgstr "Se ha producido un error actualizando el archivo"
-
-#: ../../extensions/files_repo/files_repo_list.php:106
-msgid "Copy to clipboard"
-msgstr "Copiar al portapapeles"
-
-#: ../../extensions/files_repo/files_repo_get_file.php:66
-msgid "Unreliable petition"
-msgstr "Petición no fiable"
-
-#: ../../extensions/files_repo/files_repo_get_file.php:66
-msgid "Please contact the administrator"
-msgstr "Por favor, contacta con el administrador"
-
-#: ../../extensions/quick_shell.php:140 ../../extensions/quick_shell.php:244
-msgid "WebService engine has not been started, please check documentation."
-msgstr "El motor WebService aún no se ha iniciado, consulte la documentación."
-
-#: ../../extensions/quick_shell.php:152
-msgid "Retry"
-msgstr "Reintentar"
-
-#: ../../extensions/quick_shell.php:196
-msgid "Telnet"
-msgstr "Telnet"
-
-#: ../../extensions/quick_shell.php:204
-msgid "Connect"
-msgstr "Conectar"
-
-#: ../../extensions/quick_shell.php:232
-msgid "Please use SSH or Telnet."
-msgstr "Use SSH o Telnet."
-
-#: ../../extensions/quick_shell.php:266
-msgid "WebService engine is not working properly, please check documentation."
-msgstr ""
-"El motor WebService no funciona correctamente, consulte la documentación."
-
-#: ../../extensions/quick_shell.php:425
-#, php-format
-msgid "%d Updated"
-msgstr "%d Actualizado"
-
-#: ../../extensions/quick_shell.php:428
-#, php-format
-msgid "%d Updated, please restart WebSocket engine service"
-msgstr "%d Actualizado, reinicie el servicio del motor WebSocket"
-
-#: ../../extensions/quick_shell.php:438
-msgid "Quickshell"
-msgstr "Quickshell"
-
-#: ../../extensions/quick_shell.php:448
-msgid "Gotty path"
-msgstr "Ruta Gotty"
-
-#: ../../extensions/quick_shell.php:458
-msgid "Gotty host"
-msgstr "Host Gotty"
-
-#: ../../extensions/quick_shell.php:468
-msgid "Gotty ssh port"
-msgstr "Puerto SSH Gotty"
-
-#: ../../extensions/quick_shell.php:478
-msgid "Gotty telnet port"
-msgstr "Puerto telnet Gotty"
-
-#: ../../extensions/quick_shell.php:495
-msgid "Gotty user"
-msgstr "Usuario Gotty"
-
-#: ../../extensions/quick_shell.php:505
-msgid "Gotty password"
-msgstr "Contraseña Gotty"
-
-#: ../../extensions/quick_shell.php:545
-msgid "QuickShell"
-msgstr "QuickShell"
-
-#: ../../extensions/disabled/matrix_events.php:30
-msgid "Matrix events"
-msgstr "Eventos matriz"
-
-#: ../../extensions/agents_alerts.php:37
-msgid "Agents/Alerts view"
-msgstr "Vista de Agentes/Alertas"
-
-#: ../../extensions/agents_modules.php:564
-msgid "Agent/module view"
-msgstr "Vista de agente/módulo"
-
-#: ../../extensions/agents_modules.php:605
-msgid "Filters "
-msgstr "Filtros "
-
-#: ../../extensions/agents_modules.php:605
-msgid "Secondary groups and agent subgroups will be taken into account."
-msgstr "Los grupos secundarios y los subgrupos de agentes se tendrán en cuenta."
-
-#: ../../extensions/agents_modules.php:765
-msgid "Previous modules"
-msgstr "Módulos anteriores"
-
-#: ../../extensions/agents_modules.php:791
-msgid "More modules"
-msgstr "Más módulos"
-
-#: ../../extensions/agents_modules.php:945
-msgid "Cell turns blue when the module is in 'not initialize' status"
-msgstr "Celda azul cuando el módulo está en estado \"no iniciado\""
-
-#: ../../extensions/agents_modules.php:959
-msgid "Agents/Modules view"
-msgstr "Vista de Agentes/Módulos"
-
-#: ../../extensions/resource_exportation.php:50
-#: ../../extensions/resource_exportation.php:420
-msgid "Resource exportation"
-msgstr "Exportación de recursos"
-
-#: ../../extensions/resource_exportation.php:423
-msgid "This extension makes exportation of resource template more easy."
-msgstr "Esta extensión facilita la exportación de la plantilla de recursos."
-
-#: ../../extensions/resource_exportation.php:423
-msgid "You can export resource templates in .ptr format."
-msgstr "Puede exportar plantillas de recursos en formato .prt."
+#: ../../extensions/insert_data.php:273
+msgid "Insert Data"
+msgstr "Insertar datos"
 
 #: ../../mobile/operation/agent.php:162
 msgid "No agent found"
@@ -51402,10 +45539,106 @@ msgstr "Módulos por estado"
 msgid "Last %s Events"
 msgstr "Últimos %s eventos"
 
+#: ../../mobile/operation/modules.php:250
+#, php-format
+msgid "Filter Modules by %s"
+msgstr "Filtrar módulos por %s"
+
+#: ../../mobile/operation/modules.php:325 ../../mobile/operation/alerts.php:266
+#: ../../mobile/operation/events.php:718 ../../mobile/operation/agents.php:260
+msgid "Apply Filter"
+msgstr "Aplicar el filtro"
+
+#: ../../mobile/operation/modules.php:659
+msgid "Interval."
+msgstr "Intervalo"
+
+#: ../../mobile/operation/modules.php:661
+msgid "Last update."
+msgstr "Última actualización"
+
+#: ../../mobile/operation/modules.php:772
+#: ../../godmode/agentes/agent_template.php:269
+msgid "No modules"
+msgstr "Sin módulos"
+
+#: ../../mobile/operation/modules.php:885 ../../mobile/operation/alerts.php:379
+#: ../../mobile/operation/events.php:1155 ../../mobile/operation/agents.php:550
+msgid "(Default)"
+msgstr "(Por defecto)"
+
+#: ../../mobile/operation/modules.php:891 ../../mobile/operation/alerts.php:392
+#: ../../mobile/operation/events.php:1188 ../../mobile/operation/agents.php:556
+#, php-format
+msgid "Group: %s"
+msgstr "Grupo: %s"
+
+#: ../../mobile/operation/modules.php:906
+#, php-format
+msgid "Module group: %s"
+msgstr "Grupos de módulos: %s"
+
+#: ../../mobile/operation/modules.php:913 ../../mobile/operation/alerts.php:399
+#: ../../mobile/operation/events.php:1208 ../../mobile/operation/agents.php:563
+#, php-format
+msgid "Status: %s"
+msgstr "Estado: %s"
+
+#: ../../mobile/operation/modules.php:920 ../../mobile/operation/alerts.php:406
+#: ../../mobile/operation/agents.php:570
+#, php-format
+msgid "Free Search: %s"
+msgstr "Búsqueda libre: %s"
+
+#: ../../mobile/operation/modules.php:928
+#, php-format
+msgid "Tag: %s"
+msgstr "Etiqueta: %s"
+
+#: ../../mobile/operation/visualmaps.php:242
+msgid "All visual consoles"
+msgstr "Todas las consolas visuales"
+
+#: ../../mobile/operation/visualmaps.php:254
+msgid "Favourite visual consoles"
+msgstr "Consolas visuales favoritas"
+
+#: ../../mobile/operation/visualmaps.php:263
+msgid "No maps defined"
+msgstr "No hay mapas definidos"
+
+#: ../../mobile/operation/home.php:161 ../../mobile/include/ui.class.php:239
+msgid "Home"
+msgstr "Inicio"
+
 #: ../../mobile/operation/tactical.php:216
 msgid "Last activity"
 msgstr "Última actividad"
 
+#: ../../mobile/operation/alerts.php:125 ../../mobile/operation/alerts.php:126
+#: ../../mobile/operation/alerts.php:256 ../../mobile/operation/alerts.php:257
+#: ../../godmode/alerts/alert_view.php:128
+msgid "Stand by"
+msgstr "En espera"
+
+#: ../../mobile/operation/alerts.php:208
+#, php-format
+msgid "Filter Alerts by %s"
+msgstr "Filtros de alertas por %s"
+
+#: ../../mobile/operation/alerts.php:346
+msgid "Last Fired"
+msgstr "Última vez que se disparó"
+
+#: ../../mobile/operation/alerts.php:357
+msgid "No alerts"
+msgstr "Sin alertas"
+
+#: ../../mobile/operation/alerts.php:385
+#, php-format
+msgid "Standby: %s"
+msgstr "Standby: %s"
+
 #: ../../mobile/operation/events.php:405 ../../mobile/operation/events.php:414
 #: ../../mobile/operation/events.php:643 ../../mobile/operation/events.php:644
 msgid "Preset Filters"
@@ -51436,16 +45669,6 @@ msgstr "Validación fallida"
 msgid "Filter Events by %s"
 msgstr "Filtrar eventos por %s"
 
-#: ../../mobile/operation/events.php:718 ../../mobile/operation/alerts.php:266
-#: ../../mobile/operation/agents.php:260 ../../mobile/operation/modules.php:325
-msgid "Apply Filter"
-msgstr "Aplicar el filtro"
-
-#: ../../mobile/operation/events.php:1155 ../../mobile/operation/alerts.php:379
-#: ../../mobile/operation/agents.php:550 ../../mobile/operation/modules.php:885
-msgid "(Default)"
-msgstr "(Por defecto)"
-
 #: ../../mobile/operation/events.php:1160
 #, php-format
 msgid "Filter: %s"
@@ -51456,23 +45679,11 @@ msgstr "Filtro: %s"
 msgid "Severity: %s"
 msgstr "Gravedad: %s"
 
-#: ../../mobile/operation/events.php:1188 ../../mobile/operation/alerts.php:392
-#: ../../mobile/operation/agents.php:556 ../../mobile/operation/modules.php:891
-#, php-format
-msgid "Group: %s"
-msgstr "Grupo: %s"
-
 #: ../../mobile/operation/events.php:1201
 #, php-format
 msgid "Type: %s"
 msgstr "Tipo: %s"
 
-#: ../../mobile/operation/events.php:1208 ../../mobile/operation/alerts.php:399
-#: ../../mobile/operation/agents.php:563 ../../mobile/operation/modules.php:913
-#, php-format
-msgid "Status: %s"
-msgstr "Estado: %s"
-
 #: ../../mobile/operation/events.php:1215
 #, php-format
 msgid "Free search: %s"
@@ -51483,78 +45694,6 @@ msgstr "Búsqueda libre: %s"
 msgid "Hours: %s"
 msgstr "Horas: %s"
 
-#: ../../mobile/operation/home.php:161 ../../mobile/include/ui.class.php:239
-msgid "Home"
-msgstr "Inicio"
-
-#: ../../mobile/operation/alerts.php:208
-#, php-format
-msgid "Filter Alerts by %s"
-msgstr "Filtros de alertas por %s"
-
-#: ../../mobile/operation/alerts.php:346
-msgid "Last Fired"
-msgstr "Última vez que se disparó"
-
-#: ../../mobile/operation/alerts.php:357
-msgid "No alerts"
-msgstr "Sin alertas"
-
-#: ../../mobile/operation/alerts.php:385
-#, php-format
-msgid "Standby: %s"
-msgstr "Standby: %s"
-
-#: ../../mobile/operation/alerts.php:406 ../../mobile/operation/agents.php:570
-#: ../../mobile/operation/modules.php:920
-#, php-format
-msgid "Free Search: %s"
-msgstr "Búsqueda libre: %s"
-
-#: ../../mobile/operation/agents.php:218
-#, php-format
-msgid "Filter Agents by %s"
-msgstr "Filtros de agentes por %s"
-
-#: ../../mobile/operation/agents.php:454
-msgid "No agents"
-msgstr "Sin agentes"
-
-#: ../../mobile/operation/modules.php:250
-#, php-format
-msgid "Filter Modules by %s"
-msgstr "Filtrar módulos por %s"
-
-#: ../../mobile/operation/modules.php:659
-msgid "Interval."
-msgstr "Intervalo"
-
-#: ../../mobile/operation/modules.php:661
-msgid "Last update."
-msgstr "Última actualización"
-
-#: ../../mobile/operation/modules.php:906
-#, php-format
-msgid "Module group: %s"
-msgstr "Grupos de módulos: %s"
-
-#: ../../mobile/operation/modules.php:928
-#, php-format
-msgid "Tag: %s"
-msgstr "Etiqueta: %s"
-
-#: ../../mobile/operation/visualmaps.php:242
-msgid "All visual consoles"
-msgstr "Todas las consolas visuales"
-
-#: ../../mobile/operation/visualmaps.php:254
-msgid "Favourite visual consoles"
-msgstr "Consolas visuales favoritas"
-
-#: ../../mobile/operation/visualmaps.php:263
-msgid "No maps defined"
-msgstr "No hay mapas definidos"
-
 #: ../../mobile/operation/module_graph.php:359
 #: ../../mobile/operation/module_graph.php:372
 #, php-format
@@ -51586,23 +45725,14 @@ msgstr "Actualizar gráfico"
 msgid "Error get the graph"
 msgstr "Error al obtener el gráfico"
 
-#: ../../mobile/include/system.class.php:156
-msgid ""
-"Access to this page is restricted to authorized users only, please contact "
-"your system administrator if you should need help."
-msgstr ""
-"El acceso a esta página está restringido únicamente a los usuarios "
-"autorizados. Póngase en contacto con el administrador de sistemas si necesita "
-"ayuda."
-
-#: ../../mobile/include/system.class.php:156
+#: ../../mobile/operation/agents.php:218
 #, php-format
-msgid ""
-"Please remember that any attempts to access this page will be recorded on the "
-"%s System Database."
-msgstr ""
-"Recuerde que cualquier intento de acceso a esta página quedara grabado en la "
-"base de datos del sistema de %s."
+msgid "Filter Agents by %s"
+msgstr "Filtros de agentes por %s"
+
+#: ../../mobile/operation/agents.php:454
+msgid "No agents"
+msgstr "Sin agentes"
 
 #: ../../mobile/include/user.class.php:171
 msgid "User cannot log in into this console, please contact administrator"
@@ -51655,10 +45785,23 @@ msgstr "contraseña"
 msgid "Authenticator code"
 msgstr "Código de autentificación"
 
-#: ../../mobile/include/functions_web.php:83
+#: ../../mobile/include/system.class.php:156
+msgid ""
+"Access to this page is restricted to authorized users only, please contact "
+"your system administrator if you should need help."
+msgstr ""
+"El acceso a esta página está restringido únicamente a los usuarios "
+"autorizados. Póngase en contacto con el administrador de sistemas si necesita "
+"ayuda."
+
+#: ../../mobile/include/system.class.php:156
 #, php-format
-msgid "Pandora FMS %s - Build %s"
-msgstr "Pandora FMS %s - Revisión %s"
+msgid ""
+"Please remember that any attempts to access this page will be recorded on the "
+"%s System Database."
+msgstr ""
+"Recuerde que cualquier intento de acceso a esta página quedara grabado en la "
+"base de datos del sistema de %s."
 
 #: ../../mobile/include/ui.class.php:120
 #, php-format
@@ -51699,158 +45842,6105 @@ msgstr "Matriz incorrecta"
 msgid "Incorrect collapsible."
 msgstr "Plegable incorrecto"
 
-#: ../../views/calendar/list.php:39
-msgid "Calendars"
-msgstr "Calendarios"
+#: ../../mobile/include/functions_web.php:83
+#, php-format
+msgid "Pandora FMS %s - Build %s"
+msgstr "Pandora FMS %s - Revisión %s"
 
-#: ../../views/calendar/list.php:65 ../../views/calendar/special_days_edit.php:66
-#: ../../views/calendar/edit.php:66 ../../views/calendar/special_days.php:67
+#: ../../godmode/setup/setup.php:165 ../../godmode/setup/setup.php:283
+#: ../../godmode/setup/setup_integria.php:585 ../../godmode/menu.php:350
+msgid "Integria IMS"
+msgstr "Integria IMS"
+
+#: ../../godmode/setup/setup.php:216
+msgid "Websocket engine"
+msgstr "Motor websocket"
+
+#: ../../godmode/setup/setup.php:234
+msgid "GIS Map connection"
+msgstr "Conexión mapa GIS"
+
+#: ../../godmode/setup/setup.php:295 ../../godmode/menu.php:365
+msgid "Map conections GIS"
+msgstr "Conexión de mapa GIS"
+
+#: ../../godmode/setup/setup.php:305
+msgid "Pandora Websocket Engine"
+msgstr "Motor Websocket Pandora"
+
+#: ../../godmode/setup/setup.php:349
+msgid "Correct update the setup options"
+msgstr "Actualización correcta de las opciones de configuración"
+
+#: ../../godmode/setup/snmp_wizard.php:155
+msgid "Unsucessful update the snmp translation"
+msgstr "No se pudo actualizar la traducción SNMP"
+
+#: ../../godmode/setup/snmp_wizard.php:162
+msgid "Unsucessful update the snmp translation."
+msgstr "No se pudo actualizar la traducción SNMP"
+
+#: ../../godmode/setup/snmp_wizard.php:210
+msgid "Unsucessful delete the snmp translation"
+msgstr "No se pudo borrar la traducción de SNMP"
+
+#: ../../godmode/setup/snmp_wizard.php:217
+msgid "Unsucessful delete the snmp translation."
+msgstr "No se pudo borrar la traducción de SNMP"
+
+#: ../../godmode/setup/snmp_wizard.php:278
+msgid "Unsucessful save the snmp translation"
+msgstr "No se pudo guardar la traducción de SNMP"
+
+#: ../../godmode/setup/snmp_wizard.php:287
+msgid "Unsucessful save the snmp translation."
+msgstr "No se pudo guardar la traducción de SNMP"
+
+#: ../../godmode/setup/os.list.php:56
 #, php-format
 msgid ""
-"This node is configured with centralized mode. All alert calendar information "
+"This node is configured with centralized mode. All OS definitions are read "
+"only. Go to %s to manage them."
+msgstr ""
+"Este nodo esta configurado con el modo centralizado. Toda la información de "
+"las políticas está en modo lectura. Vaya a %s para administrarlo."
+
+#: ../../godmode/setup/os.list.php:141
+msgid "There are no defined operating systems"
+msgstr "No hay sistemas operativos definidos"
+
+#: ../../godmode/setup/os.list.php:147
+msgid "Create OS"
+msgstr "Crear SO"
+
+#: ../../godmode/setup/setup_integria.php:296
+msgid "URL to Integria IMS setup"
+msgstr "URL a la configuración de Integria IMS"
+
+#: ../../godmode/setup/setup_integria.php:296
+msgid ""
+"Full URL to your Integria IMS setup (e.g., http://192.168.1.20/integria, "
+"https://support.mycompany.com)."
+msgstr ""
+"URL completa a su configuración de Integria IMS (por ejemplo, "
+"http://192.168.1.20/integria, https://support.mycompany.com)."
+
+#: ../../godmode/setup/setup_integria.php:302
+msgid "API Password"
+msgstr "Contraseña de la API"
+
+#: ../../godmode/setup/setup_integria.php:309
+#: ../../godmode/setup/setup_ehorus.php:105
+msgid "Request timeout"
+msgstr "Tiempo de espera excedido para la petición"
+
+#: ../../godmode/setup/setup_integria.php:315
+msgid "Sync inventory"
+msgstr "Inventario Sync"
+
+#: ../../godmode/setup/setup_integria.php:348
+#: ../../godmode/setup/setup_integria.php:469
+msgid "Ticket body"
+msgstr "Cuerpo del ticket"
+
+#: ../../godmode/setup/setup_integria.php:603
+msgid "Integria API settings"
+msgstr "Ajustes de la API de Integria"
+
+#: ../../godmode/setup/setup_integria.php:614
+msgid "Alert default values"
+msgstr "Valores por defecto de la API"
+
+#: ../../godmode/setup/setup_integria.php:624
+msgid "Event custom response default values"
+msgstr "Valores por defecto de respuesta de evento personalizados"
+
+#: ../../godmode/setup/setup_integria.php:719
+#: ../../godmode/setup/setup_ehorus.php:254
+msgid "Connection timeout"
+msgstr "La sesión ha caducado."
+
+#: ../../godmode/setup/gis_step_2.php:37
+msgid "GIS Maps connections"
+msgstr "Conexiones mapas GIS"
+
+#: ../../godmode/setup/gis_step_2.php:54
+msgid "Create new map connection"
+msgstr "Crear nueva conexión de mapas"
+
+#: ../../godmode/setup/gis_step_2.php:81
+msgid "Edit map connection"
+msgstr "Editar la conexión de mapas"
+
+#: ../../godmode/setup/gis_step_2.php:213
+msgid "Connection Name"
+msgstr "Nombre de conexión"
+
+#: ../../godmode/setup/gis_step_2.php:219
+msgid "Number of zoom levels"
+msgstr "Número de niveles de zoom"
+
+#: ../../godmode/setup/gis_step_2.php:223
+msgid "Default zoom level"
+msgstr "Nivel de zoom por defecto"
+
+#: ../../godmode/setup/gis_step_2.php:226
+msgid "Basic configuration"
+msgstr "Configuración básica"
+
+#: ../../godmode/setup/gis_step_2.php:231
+msgid "Open Street Maps"
+msgstr "OpenStreetMaps"
+
+#: ../../godmode/setup/gis_step_2.php:232
+msgid "Google Maps"
+msgstr "Google Maps"
+
+#: ../../godmode/setup/gis_step_2.php:234
+msgid "WMS Server"
+msgstr "Servidor WMS"
+
+#: ../../godmode/setup/gis_step_2.php:236
+msgid "Please select the connection type"
+msgstr "Tipo de conexión"
+
+#: ../../godmode/setup/gis_step_2.php:238
+msgid "Map connection type"
+msgstr "Tipo de conexión de mapa"
+
+#: ../../godmode/setup/gis_step_2.php:286
+msgid "Tile Server URL"
+msgstr "URL del servidor tile"
+
+#: ../../godmode/setup/gis_step_2.php:299
+msgid "Google Physical"
+msgstr "Google Physical"
+
+#: ../../godmode/setup/gis_step_2.php:300
+msgid "Google Hybrid"
+msgstr "Google Hybrid"
+
+#: ../../godmode/setup/gis_step_2.php:301
+msgid "Google Satelite"
+msgstr "Google Satélite"
+
+#: ../../godmode/setup/gis_step_2.php:303
+msgid "Google Map Type"
+msgstr "Tipo de mapa de Google"
+
+#: ../../godmode/setup/gis_step_2.php:327
+msgid "Google Maps Key"
+msgstr "Clave de Google Maps"
+
+#: ../../godmode/setup/gis_step_2.php:336
+msgid "Image URL"
+msgstr "URL de la imagen"
+
+#: ../../godmode/setup/gis_step_2.php:343
+msgid "Corners of the area of the image"
+msgstr "Esquinas del área de la imagen"
+
+#: ../../godmode/setup/gis_step_2.php:371
+msgid "Image Size"
+msgstr "Tamaño de imagen"
+
+#: ../../godmode/setup/gis_step_2.php:388
+msgid "WMS Server URL"
+msgstr "URL del servidor WMS"
+
+#: ../../godmode/setup/gis_step_2.php:395
+#: ../../godmode/gis_maps/configure_gis_map.php:552
+msgid "Layers"
+msgstr "Capas"
+
+#: ../../godmode/setup/gis_step_2.php:430
+msgid ""
+"Preview to select the center of the map and the default position of an agent "
+"without gis data"
+msgstr ""
+"Vista previa para elegir el centro del mapa y la posición por defecto de un "
+"agente sin información GIS"
+
+#: ../../godmode/setup/gis_step_2.php:431
+msgid "Load preview map"
+msgstr "Vista previa del mapa"
+
+#: ../../godmode/setup/gis_step_2.php:440
+msgid "Map Center"
+msgstr "Centro del mapa"
+
+#: ../../godmode/setup/gis_step_2.php:441
+msgid "Default position for agents without GIS data"
+msgstr "Posición por defecto para agentes sin información GIS"
+
+#: ../../godmode/setup/gis_step_2.php:443
+msgid "Change in the map"
+msgstr "Cambiar en el mapa"
+
+#: ../../godmode/setup/gis_step_2.php:564 ../../godmode/setup/gis_step_2.php:659
+msgid "Center"
+msgstr "Centro"
+
+#: ../../godmode/setup/gis_step_2.php:624
+msgid "Refresh preview map"
+msgstr "Actualizar vista previa"
+
+#: ../../godmode/setup/setup_visuals.php:79
+msgid "Paginated module view"
+msgstr "Vista del módulo paginada"
+
+#: ../../godmode/setup/setup_visuals.php:106
+msgid "Click to display lateral menus"
+msgstr "Haz clic para mostrar el menú lateral"
+
+#: ../../godmode/setup/setup_visuals.php:120
+msgid "Space between items in Service maps"
+msgstr "Espacio entre nodos para el mapa de servicios"
+
+#: ../../godmode/setup/setup_visuals.php:151
+msgid "Colors"
+msgstr "Colores"
+
+#: ../../godmode/setup/setup_visuals.php:152
+msgid "Faces"
+msgstr "Caras"
+
+#: ../../godmode/setup/setup_visuals.php:153
+msgid "Colors and text"
+msgstr "Colores y texto"
+
+#: ../../godmode/setup/setup_visuals.php:451
+msgid "Custom mobile console icon"
+msgstr "Icono de la consola móvil personalizada"
+
+#: ../../godmode/setup/setup_visuals.php:519
+msgid "Disable logo in graphs"
+msgstr "Deshabilitar el logo en los gráficos"
+
+#: ../../godmode/setup/setup_visuals.php:535
+msgid "Disable helps"
+msgstr "Deshabilitar ayudas"
+
+#: ../../godmode/setup/setup_visuals.php:555
+msgid "Automatically hide submenu"
+msgstr "Ocultar submenú automáticamente"
+
+#: ../../godmode/setup/setup_visuals.php:604
+msgid "Agent icon group"
+msgstr "Grupo de iconos de agente"
+
+#: ../../godmode/setup/setup_visuals.php:622
+msgid "Graphs font size"
+msgstr "Tamaño de fuente de las gráficas"
+
+#: ../../godmode/setup/setup_visuals.php:654
+#: ../../godmode/setup/setup_visuals.php:659
+msgid "Small:"
+msgstr "Pequeño:"
+
+#: ../../godmode/setup/setup_visuals.php:655
+#: ../../godmode/setup/setup_visuals.php:660
+msgid "Normal:"
+msgstr "Normal:"
+
+#: ../../godmode/setup/setup_visuals.php:678
+msgid "Show unit along with value in reports"
+msgstr "Mostrar la unidad junto con el valor en los informes"
+
+#: ../../godmode/setup/setup_visuals.php:824
+msgid "Data precision"
+msgstr "Precisión de datos"
+
+#: ../../godmode/setup/setup_visuals.php:842
+msgid "Data precision in graphs"
+msgstr "Precisión de datos en los gráficos"
+
+#: ../../godmode/setup/setup_visuals.php:918
+msgid "Type of interface charts"
+msgstr "Tipo de las gráficos de interfaces"
+
+#: ../../godmode/setup/setup_visuals.php:946
+msgid "Graph TIP view:"
+msgstr "Vista TIP de la gráfica:"
+
+#: ../../godmode/setup/setup_visuals.php:1059
+msgid "Classic view"
+msgstr "Vista clásica"
+
+#: ../../godmode/setup/setup_visuals.php:1060
+msgid "View of favorites"
+msgstr "Vista de favoritos"
+
+#: ../../godmode/setup/setup_visuals.php:1061
+msgid "Type of view of visual consoles"
+msgstr "Tipo de vista de las consolas visuales"
+
+#: ../../godmode/setup/setup_visuals.php:1065
+msgid "Number of favorite visual consoles to show in the menu"
+msgstr "Nº de consolas visuales favoritas mostradas en el menú"
+
+#: ../../godmode/setup/setup_visuals.php:1083
+msgid "Number of favorite services to show in the menu"
+msgstr "Número de servicios favoritos a mostrar en el menú"
+
+#: ../../godmode/setup/setup_visuals.php:1150
+msgid ""
+"The dir of custom logos is in your www Console in 'images/custom_logo'. You "
+"can upload more files (ONLY JPEG AND PNG) in upload tool in console."
+msgstr ""
+"El dir de los logos personalizados está en su www Consola en 'images/"
+"custom_logo'. Puede añadir más archivos (SOLO JPEG AND PNG) en la herramienta "
+"de actualización de la consola."
+
+#: ../../godmode/setup/setup_visuals.php:1287
+msgid "Custom values post process"
+msgstr "Valores personalizados para postprocesado"
+
+#: ../../godmode/setup/setup_visuals.php:1308
+#: ../../godmode/setup/setup_visuals.php:1376
+msgid "Delete custom values"
+msgstr "Eliminar valores personalizados"
+
+#: ../../godmode/setup/setup_visuals.php:1340
+msgid "Interval values"
+msgstr "Valores del intervalo"
+
+#: ../../godmode/setup/setup_visuals.php:1368
+msgid "Module units"
+msgstr "Unidades de módulo"
+
+#: ../../godmode/setup/setup_visuals.php:1484
+msgid "Behaviour configuration"
+msgstr "Configuración del comportamiento"
+
+#: ../../godmode/setup/setup_visuals.php:1489
+msgid "GIS configuration"
+msgstr "Configuración GIS"
+
+#: ../../godmode/setup/setup_visuals.php:1494
+msgid "Style configuration"
+msgstr "Configuración de estilo"
+
+#: ../../godmode/setup/setup_visuals.php:1499
+msgid "Charts configuration"
+msgstr "Configuración de gráficos"
+
+#: ../../godmode/setup/setup_visuals.php:1504
+msgid "Font and Text configuration"
+msgstr "Configuración de fuente y texto"
+
+#: ../../godmode/setup/setup_visuals.php:1509
+msgid "Visual consoles configuration"
+msgstr "Configuración de las consolas visuales"
+
+#: ../../godmode/setup/setup_visuals.php:1514
+msgid "Reports configuration "
+msgstr "Configuración de informes "
+
+#: ../../godmode/setup/setup_visuals.php:1519
+msgid "Services configuration"
+msgstr "Configuración de servicios"
+
+#: ../../godmode/setup/setup_visuals.php:1524
+msgid "Other configuration"
+msgstr "Otra configuración"
+
+#: ../../godmode/setup/setup_visuals.php:1801
+msgid "Mobile console logo preview"
+msgstr "Vista previa del logo de la consola móvil"
+
+#: ../../godmode/setup/setup_visuals.php:1836
+msgid "Gis icons preview"
+msgstr "Vista previa de los iconos GIS"
+
+#: ../../godmode/setup/setup_visuals.php:1902
+msgid "Status set preview"
+msgstr "Vista previa del estado"
+
+#: ../../godmode/setup/os.php:190
+msgid "List OS"
+msgstr "Lista de sistemas operativos"
+
+#: ../../godmode/setup/os.php:202
+msgid "Builder OS"
+msgstr "Creador de SO"
+
+#: ../../godmode/setup/os.php:211 ../../godmode/setup/os.php:229
+#: ../../godmode/menu.php:369
+msgid "Edit OS"
+msgstr "Editar SO"
+
+#: ../../godmode/setup/os.php:211
+msgid "List of OS"
+msgstr "Lista de sistemas operativos"
+
+#: ../../godmode/setup/os.php:242
+msgid "Fail creating OS"
+msgstr "Error al crear SO"
+
+#: ../../godmode/setup/os.php:250
+msgid "Error updating OS"
+msgstr "Error al actualizar SO"
+
+#: ../../godmode/setup/os.php:254
+msgid "There are agents with this OS."
+msgstr "Existen agentes con este SO"
+
+#: ../../godmode/setup/os.php:258
+msgid "Success deleting"
+msgstr "Borrado correctamente"
+
+#: ../../godmode/setup/os.php:262
+msgid "Error deleting"
+msgstr "Error al borrar"
+
+#: ../../godmode/setup/news.php:29
+msgid "Site news management"
+msgstr "Gestionar noticias del sitio"
+
+#: ../../godmode/setup/news.php:152 ../../godmode/setup/links.php:92
+msgid "Name error"
+msgstr "Error de nombre"
+
+#: ../../godmode/setup/news.php:191
+msgid "Modal screen"
+msgstr "Pantalla modal"
+
+#: ../../godmode/setup/news.php:194
+msgid "Expire"
+msgstr "Caduca"
+
+#: ../../godmode/setup/news.php:197 ../../godmode/setup/news.php:250
+msgid "Expiration"
+msgstr "Vencimiento"
+
+#: ../../godmode/setup/news.php:241
+msgid "There are no defined news"
+msgstr "No hay noticias definidas"
+
+#: ../../godmode/setup/news.php:268
+msgid "Modal"
+msgstr "Modal"
+
+#: ../../godmode/setup/news.php:270
+msgid "Board"
+msgstr "Tablero"
+
+#: ../../godmode/setup/news.php:281
+msgid "Expired"
+msgstr "Caducado"
+
+#: ../../godmode/setup/setup_auth.php:207
+msgid "Enable secondary LDAP"
+msgstr "Habilitar LDAP secundario"
+
+#: ../../godmode/setup/setup_auth.php:278
+msgid "Secondary Base DN"
+msgstr "DN base secundaria"
+
+#: ../../godmode/setup/setup_auth.php:291
+msgid "Secondary Login attribute"
+msgstr "Atributo de inicio de sesión secundario"
+
+#: ../../godmode/setup/setup_auth.php:368
+msgid "Force 2FA for all users is enabled"
+msgstr "Forzar 2FA para todos los usuarios está habilitado"
+
+#: ../../godmode/setup/setup_auth.php:389
+msgid "Session timeout (mins)"
+msgstr "Fin de la sesión (minutos)"
+
+#: ../../godmode/setup/setup_auth.php:432
+#, php-format
+msgid "Local %s"
+msgstr "%s local"
+
+#: ../../godmode/setup/setup_auth.php:433
+msgid "ldap"
+msgstr "LDAP"
+
+#: ../../godmode/setup/license.php:51
+msgid "License management"
+msgstr "Gestión de licencias"
+
+#: ../../godmode/setup/license.php:99
+msgid "Error while connecting to licence server."
+msgstr "Error al conectar con el servidor de licencias."
+
+#: ../../godmode/setup/license.php:100
+msgid "Invalid response while validating license."
+msgstr "Respuesta no válida al validar la licencia."
+
+#: ../../godmode/setup/license.php:121
+msgid "Licence"
+msgstr "Licencia"
+
+#: ../../godmode/setup/license.php:136 ../../godmode/setup/license.php:139
+#: ../../godmode/setup/license.php:142 ../../godmode/setup/license.php:145
+msgid "agents"
+msgstr "agentes"
+
+#: ../../godmode/setup/license.php:150
+msgid "NMS"
+msgstr "NMS"
+
+#: ../../godmode/setup/license.php:167 ../../godmode/setup/license.php:182
+msgid "Request new license"
+msgstr "Solicitar nueva licencia"
+
+#: ../../godmode/setup/license.php:186
+#, php-format
+msgid "To get your <b>%s Enterprise License</b>:"
+msgstr "Para conseguir la <b>%s licencia Enterprise</b>:"
+
+#: ../../godmode/setup/license.php:189
+#, php-format
+msgid "Go to %s"
+msgstr "Ir a %s"
+
+#: ../../godmode/setup/license.php:192
+msgid "Enter the <b>auth key</b> and the following <b>request key</b>:"
+msgstr ""
+"Introduce la <b>clave de autentificación</b> y la siguiente <b>clave de "
+"petición</b>:"
+
+#: ../../godmode/setup/license.php:198
+msgid "Enter your name (or a company name) and a contact email address."
+msgstr "Introduce tu nombre (o el de tu empresa) y un email de contacto."
+
+#: ../../godmode/setup/license.php:201
+msgid "Click on <b>Generate</b>."
+msgstr "Haz clic en <b>Generar</b>"
+
+#: ../../godmode/setup/license.php:204
+msgid ""
+"Click <a href=\"javascript: close_code_license_dialog();\">here</a>, enter the "
+"generated license key and click on <b>Validate</b>."
+msgstr ""
+"Haz clic <a href=\"javascript: close_code_license_dialog();\">aquí</a>, "
+"introduce la clave de licencia generada y pulsa en <b>Validar</b>."
+
+#: ../../godmode/setup/setup_general.php:145
+msgid "Enforce https Information"
+msgstr "Aplicar la información http"
+
+#: ../../godmode/setup/setup_general.php:146
+msgid "If SSL is not properly configured you will lose access to "
+msgstr "Si SSL no está configurado adecuadamente, perderá acceso a "
+
+#: ../../godmode/setup/setup_general.php:146
+#: ../../godmode/setup/setup_general.php:340
+msgid " Console"
+msgstr " Consola"
+
+#: ../../godmode/setup/setup_general.php:160
+msgid "Use cert of SSL"
+msgstr "Usar el certificado SSL"
+
+#: ../../godmode/setup/setup_general.php:173
+msgid "Path of SSL Cert."
+msgstr "Ruta del certificado SSL"
+
+#: ../../godmode/setup/setup_general.php:338
+msgid "Enforce public URL usage information"
+msgstr "Aplicar la información de uso de la URL pública"
+
+#: ../../godmode/setup/setup_general.php:340
+msgid "If public URL is not properly configured you will lose access to "
+msgstr "Si la URL pública no está configurada correctamente, perderá acceso a "
+
+#: ../../godmode/setup/setup_general.php:378
+msgid "Change remote config encoding"
+msgstr "Cambiar codificación de configuración remota"
+
+#: ../../godmode/setup/setup_general.php:407
+msgid "Full mode"
+msgstr "Modo total"
+
+#: ../../godmode/setup/setup_general.php:409
+msgid "Expert"
+msgstr "Experta/o"
+
+#: ../../godmode/setup/setup_general.php:433
+msgid "Limit for bulk operations"
+msgstr "Límite de operaciones en bloque"
+
+#: ../../godmode/setup/setup_general.php:443
+msgid "Include agents manually disabled"
+msgstr "Incluir agentes deshabilitados manualmente"
+
+#: ../../godmode/setup/setup_general.php:451
+msgid "Set alias as name by default in agent creation"
+msgstr "Poner alias como nombre por defecto en la creación de agente"
+
+#: ../../godmode/setup/setup_general.php:468
+#: ../../godmode/setup/setup_general.php:479
+msgid "Log location"
+msgstr "Localización de logs"
+
+#: ../../godmode/setup/setup_general.php:489
+msgid "Module custom ID readonly"
+msgstr "Solo lectura del ID personalizado de módulo"
+
+#: ../../godmode/setup/setup_general.php:490
+msgid "Useful for integrations"
+msgstr "Útil para integraciones"
+
+#: ../../godmode/setup/setup_general.php:503
+msgid "General options"
+msgstr "Opciones generales"
+
+#: ../../godmode/setup/setup_general.php:522
+msgid ""
+"Please notice that some providers like Gmail or Office365 need to setup/enable "
+"manually external connections using SMTP and you need to use STARTTLS on port "
+"587.\n"
+"\n"
+"    If you have manual settings in your pandora_server.conf, please note these "
+"settings will ignore this console setup."
+msgstr ""
+"Algunos de los proveedores como Gmail u Office365 necesitan ajustar/habilitar "
+"las conexiones externas manualmente utilizando SNMP y necesita usar STARTTLS "
+"en el puerto 587."
+
+#: ../../godmode/setup/setup_general.php:528
+msgid "From address"
+msgstr "De"
+
+#: ../../godmode/setup/setup_general.php:548
+msgid "SMTP Server"
+msgstr "Servidor SMTP"
+
+#: ../../godmode/setup/setup_general.php:558
+msgid "SMTP Port"
+msgstr "Puerto SMTP"
+
+#: ../../godmode/setup/setup_general.php:608
+msgid "Email test"
+msgstr "Prueba de email"
+
+#: ../../godmode/setup/setup_general.php:670
+msgid "Check mail configuration"
+msgstr "Revisar configuración de correo"
+
+#: ../../godmode/setup/gis.php:68
+msgid "Map connection name"
+msgstr "Nombre de la conexión"
+
+#: ../../godmode/setup/gis.php:86
+msgid "Do you wan delete this connection?"
+msgstr "¿Deseas borrar esta conexión?"
+
+#: ../../godmode/setup/performance.php:181
+msgid "Pandora_db running in active database."
+msgstr "Pandora_db en ejecución en la base de datos activa."
+
+#: ../../godmode/setup/performance.php:182
+#: ../../godmode/setup/performance.php:238
+msgid "Executed:"
+msgstr "Ejectuado:"
+
+#: ../../godmode/setup/performance.php:237
+msgid "Pandora_db running in historical database."
+msgstr "Pandora_db en ejecución en la base de datos histórica."
+
+#: ../../godmode/setup/performance.php:245
+msgid "not executed"
+msgstr "No ejecutado"
+
+#: ../../godmode/setup/performance.php:341
+msgid "Max. days before delete autodisabled agents"
+msgstr "Nº máximo de días antes de la eliminación de los agentes deshabilitados"
+
+#: ../../godmode/setup/performance.php:508
+msgid "Item limit for realtime reports"
+msgstr "Límite del elemento para informes en tiempo real"
+
+#: ../../godmode/setup/performance.php:531
+msgid "Last day"
+msgstr "Último día"
+
+#: ../../godmode/setup/performance.php:533
+msgid "10 days"
+msgstr "10 días"
+
+#: ../../godmode/setup/performance.php:535
+msgid "2 weeks"
+msgstr "2 semanas"
+
+#: ../../godmode/setup/performance.php:582
+msgid "Big Operation Step to purge old data"
+msgstr "Gran operación para la purga de datos antiguos"
+
+#: ../../godmode/setup/performance.php:632
+msgid "SNMP walk binary"
+msgstr "Binario walk SNMP"
+
+#: ../../godmode/setup/performance.php:643
+msgid ""
+"SNMP bulk walk is not able to request V1 SNMP, this option will be used "
+"instead (by default snmpwalk, slower)."
+msgstr ""
+"El walk en bloque SNMP no puede solicitar V1 SNMP, esta opción se utilizará en "
+"su lugar (por defecto snmpwalk, más lento)."
+
+#: ../../godmode/setup/performance.php:646
+msgid "SNMP walk binary (fallback)"
+msgstr "Binario walk SNMP (alternativa)"
+
+#: ../../godmode/setup/performance.php:689
+msgid "Database maintenance options"
+msgstr "Opciones de mantenimiento de la base de datos"
+
+#: ../../godmode/setup/performance.php:695
+msgid "Historical database maintenance options"
+msgstr "Opciones de mantenimiento de la base de datos histórica"
+
+#: ../../godmode/setup/setup_ehorus.php:93
+msgid "API Hostname"
+msgstr "Nombre del propietario de la API"
+
+#: ../../godmode/setup/setup_ehorus.php:99
+msgid "API Port"
+msgstr "Puerto de la API"
+
+#: ../../godmode/setup/setup_ehorus.php:139
+msgid "Remote Management System"
+msgstr "Sistema de gestión remota"
+
+#: ../../godmode/setup/setup_ehorus.php:147
+msgid "Custom field eHorusID created"
+msgstr "Campo personalizado eHorusID creado"
+
+#: ../../godmode/setup/setup_ehorus.php:147
+msgid "Error creating custom field"
+msgstr "Error al crear campo personalizado"
+
+#: ../../godmode/setup/setup_ehorus.php:151
+msgid "eHorus has his own agent identifiers"
+msgstr "eHorus tiene sus propios identificadores de agente"
+
+#: ../../godmode/setup/setup_ehorus.php:152
+msgid "To store them, it will be necessary to use an agent custom field"
+msgstr "Para guardarlo, será necesario usar un campo personalizado del agente."
+
+#: ../../godmode/setup/setup_ehorus.php:153
+msgid "Possibly the eHorus id will have to be filled in by hand for every agent"
+msgstr ""
+"Es posible que el ID de eHorus tenga que ser introducido a mano por cada agente"
+
+#: ../../godmode/setup/setup_ehorus.php:158
+msgid "The custom field does not exists already"
+msgstr "El campo personalizado no existe aún"
+
+#: ../../godmode/setup/setup_ehorus.php:172
+msgid "eHorus API"
+msgstr "API eHorus"
+
+#: ../../godmode/setup/setup_websocket_engine.php:38
+msgid "WebSocket settings"
+msgstr "Ajustes de WebSocket"
+
+#: ../../godmode/setup/setup_websocket_engine.php:47
+msgid "Bind address"
+msgstr "Dirección de enlace"
+
+#: ../../godmode/setup/setup_websocket_engine.php:57
+msgid "Bind port"
+msgstr "Puerto de enlace"
+
+#: ../../godmode/setup/links.php:28
+msgid "Link management"
+msgstr "Gestionar enlaces"
+
+#: ../../godmode/servers/plugin.php:73
+msgid "Network Components"
+msgstr "Componentes de red"
+
+#: ../../godmode/servers/plugin.php:290 ../../godmode/servers/plugin.php:617
+#: ../../godmode/servers/plugin_registration.php:59
+msgid "To manage plugin you must activate centralized management"
+msgstr "Active la gestión centralizada para gestionar el plugin"
+
+#: ../../godmode/servers/plugin.php:303
+msgid "Plugin update"
+msgstr "Actualización de plugin"
+
+#: ../../godmode/servers/plugin.php:314 ../../godmode/servers/plugin.php:636
+msgid ""
+"This console is not manager of this environment,\n"
+"        \t\tplease manage this feature from centralized manager console "
+"(Metaconsole)."
+msgstr ""
+"Esta consola no administra este entorno,\n"
+"        \t\tadministre esta funcionalidad desde el administrador centralizado "
+"de la consola (Metaconsola)."
+
+#: ../../godmode/servers/plugin.php:345
+msgid "Plugin type"
+msgstr "Tipo de plugin"
+
+#: ../../godmode/servers/plugin.php:346 ../../godmode/servers/plugin.php:845
+#: ../../godmode/servers/modificar_server.php:40
+msgid "Standard"
+msgstr "Estándar"
+
+#: ../../godmode/servers/plugin.php:347 ../../godmode/servers/plugin.php:847
+msgid "Nagios"
+msgstr "Nagios"
+
+#: ../../godmode/servers/plugin.php:352
+msgid "Max. timeout"
+msgstr "Máx. tiempo de espera"
+
+#: ../../godmode/servers/plugin.php:352
+msgid ""
+"This value only will be applied if is minor than the server general "
+"configuration plugin timeout"
+msgstr ""
+"Este valor solo se aplicará si es menor que el tiempo de espera del plugin de "
+"la configuración general del servidor."
+
+#: ../../godmode/servers/plugin.php:352
+msgid "If you set a 0 seconds timeout, the server plugin timeout will be used"
+msgstr ""
+"Si configuras en 0 segundos el tiempo de espera, se utilizará el tiempo de "
+"espera del plugin del servidor."
+
+#: ../../godmode/servers/plugin.php:401
+msgid "Plugin command"
+msgstr "Comando del plugin"
+
+#: ../../godmode/servers/plugin.php:401
+msgid ""
+"Specify interpreter and plugin path. The server needs permissions to run it."
+msgstr ""
+"Especifique el intérprete y la ruta del plugin. El servidor necesita permisos "
+"para ejecutarlo."
+
+#: ../../godmode/servers/plugin.php:413
+msgid "Plug-in parameters"
+msgstr "Parámetros del plugin"
+
+#: ../../godmode/servers/plugin.php:422 ../../godmode/alerts/alert_view.php:527
+#: ../../godmode/alerts/alert_view.php:654
+#: ../../godmode/alerts/configure_alert_action.php:310
+msgid "Command preview"
+msgstr "Vista previa del comando"
+
+#: ../../godmode/servers/plugin.php:581 ../../godmode/servers/plugin.php:586
+msgid "Parameters macros"
+msgstr "Macros de los parámetros"
+
+#: ../../godmode/servers/plugin.php:623
+#, php-format
+msgid "Plug-ins registered on %s"
+msgstr "Plugins registrados en %s"
+
+#: ../../godmode/servers/plugin.php:645
+msgid "You need to create your own plugins with Windows compatibility"
+msgstr "Necesitas crear tus propios plugins compatibles con Windows."
+
+#: ../../godmode/servers/plugin.php:711
+msgid "Problem updating plugin"
+msgstr "Problema al actualizar el plugin"
+
+#: ../../godmode/servers/plugin.php:713
+msgid "Plugin updated successfully"
+msgstr "Plugin actualizado correctamente"
+
+#: ../../godmode/servers/plugin.php:771
+msgid "Problem creating plugin"
+msgstr "Error al crear plugin"
+
+#: ../../godmode/servers/plugin.php:773
+msgid "Plugin created successfully"
+msgstr "Plugin creado correctamente"
+
+#: ../../godmode/servers/plugin.php:785
+msgid "Problem deleting plugin"
+msgstr "Error al borrar plugin"
+
+#: ../../godmode/servers/plugin.php:787 ../../godmode/servers/plugin.php:799
+msgid "Plugin deleted successfully"
+msgstr "Plugin borrado correctamente"
+
+#: ../../godmode/servers/plugin.php:884
+msgid "All the modules that are using this plugin will be deleted"
+msgstr "Todos los módulos que estén utilizando este plugin se borrarán."
+
+#: ../../godmode/servers/plugin.php:901
+msgid "There are no plugins in the system"
+msgstr "No hay plugins en el sistema"
+
+#: ../../godmode/servers/plugin.php:915
+#, php-format
+msgid "List of modules and components created by \"%s\" "
+msgstr "Lista de los módulos y componentes creados por '%s' "
+
+#: ../../godmode/servers/plugin.php:1021 ../../godmode/servers/plugin.php:1037
+msgid "Some modules or components are using the plugin"
+msgstr "Algunos módulos o componentes están usando el plugin."
+
+#: ../../godmode/servers/plugin.php:1022
+msgid ""
+"The modules or components should be updated manually or using the bulk "
+"operations for plugins after this change"
+msgstr ""
+"Los módulos o componentes deberían ser actualizados manualmente o usando las "
+"operaciones masivas para los plugins después de este cambio."
+
+#: ../../godmode/servers/plugin.php:1024
+msgid "Are you sure you want to perform this action?"
+msgstr "¿Estás seguro de que quieres realizar esta acción?"
+
+#: ../../godmode/servers/plugin.php:1038
+msgid "Are you sure you want to unlock this item?"
+msgstr "¿Estás seguro de que quieres desbloquear este elemento?"
+
+#: ../../godmode/servers/plugin.php:1058
+msgid ""
+"The plugin command cannot be updated because some modules or components are "
+"using the plugin."
+msgstr ""
+"No se puede actualizar el comando. Este plugin está siendo utilizado por "
+"módulos o componentes."
+
+#: ../../godmode/servers/plugin.php:1064
+msgid ""
+"The plugin macros cannot be updated because some modules or components are "
+"using the plugin"
+msgstr ""
+"Las macros del plugin no pueden ser actualizadas porque algunos módulos o "
+"componentes están usando el plugin."
+
+#: ../../godmode/servers/modificar_server.php:34
+msgid "Update Server"
+msgstr "Actualizar el servidor"
+
+#: ../../godmode/servers/modificar_server.php:77
+msgid "Exec Server"
+msgstr "Ejecutar el servidor"
+
+#: ../../godmode/servers/modificar_server.php:85
+msgid "Leave blank to use SSH default port (22)"
+msgstr "Dejar en blanco para usar el puerto SSH por defecto (22)"
+
+#: ../../godmode/servers/modificar_server.php:90
+msgid "Check Exec Server"
+msgstr "Comprobar ejecución del servidor"
+
+#: ../../godmode/servers/modificar_server.php:106
+msgid "Credential boxes"
+msgstr "Recuadro de credenciales"
+
+#: ../../godmode/servers/modificar_server.php:130
+msgid "Standard editor"
+msgstr "Editor estándar"
+
+#: ../../godmode/servers/modificar_server.php:134
+msgid "Advanced editor"
+msgstr "Editor avanzado"
+
+#: ../../godmode/servers/modificar_server.php:141
+msgid "Remote Configuration"
+msgstr "Configuración remota"
+
+#: ../../godmode/servers/modificar_server.php:150
+#, php-format
+msgid "%s servers"
+msgstr "Servidores de %s"
+
+#: ../../godmode/servers/modificar_server.php:159
+#: ../../godmode/servers/modificar_server.php:170
+msgid "Successfully action"
+msgstr "Acción procesada satisfactoriamente"
+
+#: ../../godmode/servers/modificar_server.php:201
+msgid "Server updated successfully"
+msgstr "Servidor actualizado correctamente"
+
+#: ../../godmode/servers/modificar_server.php:203
+msgid "There was a problem updating the server"
+msgstr "Hubo un problema al actualizar el servidor"
+
+#: ../../godmode/servers/modificar_server.php:222
+#: ../../godmode/agentes/configurar_agente.php:867
+msgid "Conf file deleted successfully"
+msgstr "Archivo de configuración borrado correctamente"
+
+#: ../../godmode/servers/modificar_server.php:223
+#: ../../godmode/agentes/configurar_agente.php:868
+msgid "Could not delete conf file"
+msgstr "No se puede borrar el archivo de configuración"
+
+#: ../../godmode/servers/plugin_registration.php:65
+msgid "PLUGIN REGISTRATION"
+msgstr "REGISTRO DE PLUGINS"
+
+#: ../../godmode/servers/plugin_registration.php:76
+#, php-format
+msgid ""
+"This console is not manager of this environment, please manage this feature "
+"from feature from %s."
+msgstr ""
+"La consola no administra este entorno, gestione esta funcionalidad desde la "
+"funcionalidad desde %s."
+
+#: ../../godmode/servers/plugin_registration.php:95
+msgid "Plugin Registration"
+msgstr "Registro de puglins"
+
+#: ../../godmode/servers/plugin_registration.php:103
+msgid "You can get more plugins in our"
+msgstr "Puedes obtener más plugins en nuestra"
+
+#: ../../godmode/servers/plugin_registration.php:105
+msgid "Public Resource Library"
+msgstr "Biblioteca de Recursos Públicos"
+
+#: ../../godmode/servers/plugin_registration.php:133
+msgid "Failed to create temporary directory"
+msgstr "Error al crear un directorio temporal"
+
+#: ../../godmode/servers/plugin_registration.php:152
+msgid "Cannot load INI file"
+msgstr "No se puede abrir el archivo .INI"
+
+#: ../../godmode/servers/plugin_registration.php:177
+msgid "Plugin exec not found. Aborting!"
+msgstr "Plugin de ejecución no encontrado. ¡Deteniendo el proceso!"
+
+#: ../../godmode/servers/plugin_registration.php:188
+msgid "Plugin already registered. Aborting!"
+msgstr "El plugin ya está registrado. ¡Deteniendo el proceso!"
+
+#: ../../godmode/servers/plugin_registration.php:355
+msgid "Plug-in Remote Registered unsuccessfull"
+msgstr "Error al registrar el plugin remoto"
+
+#: ../../godmode/servers/plugin_registration.php:358
+msgid "Please check the syntax of file \"plugin_definition.ini\""
+msgstr "Por favor, comprueba la sintaxis del archivo \"plugin_definition.ini\"."
+
+#: ../../godmode/servers/plugin_registration.php:498
+msgid "Module plugin registered"
+msgstr "Plugin de módulo registrado"
+
+#: ../../godmode/servers/plugin_registration.php:503
+msgid "Registered successfully"
+msgstr "Registrado correctamente"
+
+#: ../../godmode/servers/plugin_registration.php:516
+msgid "Unable to uncompress uploaded file"
+msgstr "No se puede descomprimir el archivo cargado"
+
+#: ../../godmode/servers/plugin_registration.php:534
+#, php-format
+msgid "Cannot move uploaded file to %s."
+msgstr "No se puede mover el archivo cargado a %s."
+
+#: ../../godmode/servers/servers.build_table.php:118
+msgid "Server has crashed."
+msgstr "El servidor se ha caído."
+
+#: ../../godmode/servers/servers.build_table.php:126
+msgid "Server is stopped."
+msgstr "El servidor se ha parado."
+
+#: ../../godmode/servers/servers.build_table.php:138
+msgid "Exec server enabled"
+msgstr "Servidor de ejecución habilitado"
+
+#: ../../godmode/servers/servers.build_table.php:196
+msgid "Manage Discovery tasks"
+msgstr "Gestionar las tareas de Discovery"
+
+#: ../../godmode/servers/servers.build_table.php:211
+msgid "Reset module status and fired alert counts"
+msgstr "Reiniciar el estado de los módulos y el conteo de las alertas disparadas"
+
+#: ../../godmode/servers/servers.build_table.php:222
+msgid "Claim back SNMP modules"
+msgstr "Recuperar módulos SNMP"
+
+#: ../../godmode/servers/discovery.php:182
+msgid "You must create a task first"
+msgstr "Primero debe crear una tarea"
+
+#: ../../godmode/um_client/index.php:96
+#, php-format
+msgid ""
+"You cannot use update manager %s. You are exceding monitoring limits by %s "
+"elements. Please update your license or disable enterprise section by moving "
+"enterprise directory to another location and try again."
+msgstr ""
+"No puede utilizar el administrador de actualizaciones %s. Estás exiendo los "
+"límites de supervisión al %s elementos. Actualice su licencia."
+
+#: ../../godmode/um_client/index.php:107
+#, php-format
+msgid ""
+"You cannot use update manager %s. This license has expired %d days ago. Please "
+"update your license or disable enterprise section by moving enterprise "
+"directory to another location and try again."
+msgstr ""
+"No puede utilizar el administrador de actualizaciones %s. Esta licencia ha "
+"caducado hace %d días. Actualice su licencia."
+
+#: ../../godmode/um_client/index.php:120
+#, php-format
+msgid ""
+"You cannot use update manager %s. This license is a trial license to test all "
+"%s features. Please update your license to unlock all %s features."
+msgstr ""
+"No puede utilizar el administrador de actualizaciones %s. Esta licencia es una "
+"licencia de prueba para probar todas las características %s. Actualice su "
+"licencia para desbloquear todas %s funciones."
+
+#: ../../godmode/um_client/index.php:215
+#, php-format
+msgid "Master server version %s does not match console version %s."
+msgstr ""
+"La versión maestra del servidor %s no coincide con la versión de consola %s."
+
+#: ../../godmode/um_client/index.php:227
+#, php-format
+msgid ""
+"'%s' recommended value is %s or greater. Please, change it on your PHP "
+"configuration file (php.ini) or contact with administrator"
+msgstr ""
+"El valor recomendado \"%s\" es %s o mayor. Por favor, cámbielo en su archivo "
+"de configuración PHP (php.ini) o póngase en contacto con el administrador"
+
+#: ../../godmode/um_client/index.php:316
+msgid "Update manager online requires registration."
+msgstr "Update Manager online requiere registro."
+
+#: ../../godmode/um_client/index.php:321
+msgid ""
+"Applying offline patches may make your console unusable, we recommend to "
+"completely backup your files before applying any patch."
+msgstr ""
+"La aplicación de parches sin conexión puede hacer que su consola sea "
+"inutilizable, le recomendamos que haga una copia de seguridad completa de sus "
+"archivos antes de aplicar cualquier parche."
+
+#: ../../godmode/update_manager/update_manager.php:49
+msgid "Journal"
+msgstr "Diario"
+
+#: ../../godmode/update_manager/update_manager.php:56
+msgid "Offline update manager"
+msgstr "Administrador de actualizaciones offline"
+
+#: ../../godmode/update_manager/update_manager.php:63
+msgid "Online update manager"
+msgstr "Administrador de actualizaciones online"
+
+#: ../../godmode/update_manager/update_manager.php:68
+msgid "Update manager » Journal"
+msgstr "Gestor de actualizaciones » Diario"
+
+#: ../../godmode/update_manager/update_manager.php:72
+msgid "Update manager » Setup"
+msgstr "Configuración del Administrador de actualizaciones"
+
+#: ../../godmode/update_manager/update_manager.php:76
+msgid "Update manager » Offline"
+msgstr "Administrador de actualizaciones » Offline"
+
+#: ../../godmode/update_manager/update_manager.php:81
+msgid "Update manager » Online"
+msgstr "Administrador de actualizaciones » Online"
+
+#: ../../godmode/update_manager/update_manager.setup.php:271
+msgid "URL update manager:"
+msgstr "URL Administrador de actualizaciones:"
+
+#: ../../godmode/update_manager/update_manager.setup.php:275
+msgid "URL update manager"
+msgstr "URL Administrador de actualizaciones"
+
+#: ../../godmode/update_manager/update_manager.setup.php:281
+msgid "Use secured update manager:"
+msgstr "Utilice el administrador de actualizaciones seguro:"
+
+#: ../../godmode/update_manager/update_manager.setup.php:290
+msgid "Proxy server:"
+msgstr "Servidor Proxy:"
+
+#: ../../godmode/update_manager/update_manager.setup.php:294
+msgid "Proxy server"
+msgstr "Servidor proxy"
+
+#: ../../godmode/update_manager/update_manager.setup.php:300
+msgid "Proxy port:"
+msgstr "Puerto Proxy:"
+
+#: ../../godmode/update_manager/update_manager.setup.php:304
+msgid "Proxy port"
+msgstr "Puerto del Proxy"
+
+#: ../../godmode/update_manager/update_manager.setup.php:310
+msgid "Proxy user:"
+msgstr "Usuario del Proxy:"
+
+#: ../../godmode/update_manager/update_manager.setup.php:314
+msgid "Proxy user"
+msgstr "Usuario del Proxy"
+
+#: ../../godmode/update_manager/update_manager.setup.php:320
+msgid "Proxy password:"
+msgstr "Contraseña del Proxy:"
+
+#: ../../godmode/update_manager/update_manager.setup.php:324
+msgid "Proxy password"
+msgstr "Contraseña del Proxy"
+
+#: ../../godmode/update_manager/update_manager.setup.php:330
+msgid "Allow no-consecutive patches:"
+msgstr "Permitir parches no consecutivos:"
+
+#: ../../godmode/update_manager/update_manager.setup.php:339
+msgid "Limit to LTS updates:"
+msgstr "Límite a las actualizaciones de LTS:"
+
+#: ../../godmode/update_manager/update_manager.setup.php:349
+msgid "Registration ID:"
+msgstr "ID de registro:"
+
+#: ../../godmode/update_manager/update_manager.setup.php:353
+msgid "Cancel registration:"
+msgstr "Cancelar registro:"
+
+#: ../../godmode/update_manager/update_manager.setup.php:365
+msgid "Unregister"
+msgstr "Cerrar cuenta"
+
+#: ../../godmode/update_manager/update_manager.setup.php:370
+msgid "Pandora FMS community reminder"
+msgstr "Recordatorio de la comunidad de Pandora FMS"
+
+#: ../../godmode/update_manager/update_manager.setup.php:370
+msgid ""
+"Every 8 days, a message is displayed to admin users to remember to register "
+"this Pandora instance"
+msgstr ""
+"Cada 8 días, se mostrará un mensaje al administrador para que recuerde "
+"registrar esta instancia de Pandora FMS."
+
+#: ../../godmode/update_manager/update_manager.history.php:42
+msgid "Origin"
+msgstr "Origen"
+
+#: ../../godmode/modules/module_list.php:29
+msgid "Defined modules"
+msgstr "Módulos definidos"
+
+#: ../../godmode/modules/module_list.php:51
+msgid "Problem modifying module"
+msgstr "Problema al modificar los módulos"
+
+#: ../../godmode/modules/module_list.php:53
+msgid "Module updated successfully"
+msgstr "Actualización de módulos correcta"
+
+#: ../../godmode/modules/manage_network_components_form.php:355
+msgid "Update Network Component"
+msgstr "Actualización de componente de red"
+
+#: ../../godmode/modules/manage_network_components_form.php:357
+msgid "Create Network Component"
+msgstr "Crear componente de red"
+
+#: ../../godmode/modules/manage_network_components.php:290
+msgid "Remote component management"
+msgstr "Gestión remota de componentes"
+
+#: ../../godmode/modules/manage_network_components.php:313
+#, php-format
+msgid ""
+"This node is configured with centralized mode. All remote components are read "
+"only. Go to %s to manage them."
+msgstr ""
+"Este nodo esta configurado con el modo centralizado. Toda la información de "
+"las políticas está en modo lectura. Vaya a %s para administrarlo."
+
+#: ../../godmode/modules/manage_network_components.php:424
+msgid "Could not be created because the component exists"
+msgstr "No se ha podido crear porque el componente existe"
+
+#: ../../godmode/modules/manage_network_components.php:660
+msgid "Search by name, description, tcp send or tcp rcv, list matches."
+msgstr ""
+"Búsqueda por nombre, descripción, envío TCP o TCP RCV, lista las coincidencias."
+
+#: ../../godmode/modules/manage_network_components.php:753
+msgid "Max/Min"
+msgstr "Máx/Mín"
+
+#: ../../godmode/modules/manage_network_components.php:837
+msgid "Wizard module"
+msgstr "Módulo de wizard"
+
+#: ../../godmode/modules/manage_network_components.php:910
+msgid "There are no defined network components"
+msgstr "No hay componentes de red definidos"
+
+#: ../../godmode/modules/manage_network_components.php:921
+msgid "Create a new network component"
+msgstr "Crear un componente de red nuevo"
+
+#: ../../godmode/modules/manage_network_components.php:922
+msgid "Create a new plugin component"
+msgstr "Crear un componente de plugin nuevo"
+
+#: ../../godmode/modules/manage_network_components.php:923
+msgid "Create a new WMI component"
+msgstr "Crear un componente WMI nuevo"
+
+#: ../../godmode/modules/manage_network_components.php:924
+msgid "Create a new wizard component"
+msgstr "Crear un nuevo componente de wizard"
+
+#: ../../godmode/modules/manage_network_templates.php:84
+msgid "Error deleting template"
+msgstr "Error al borrar la plantilla"
+
+#: ../../godmode/modules/manage_network_templates.php:124
+msgid "This template does not exist"
+msgstr "Esta plantilla no existe."
+
+#: ../../godmode/modules/manage_network_templates.php:304
+msgid "There are no defined network profiles"
+msgstr "No hay ningún perfil de red definido"
+
+#: ../../godmode/modules/manage_network_templates_form.php:59
+msgid "Successfully deleted module from profile"
+msgstr "Módulo borrado del perfil correctamente"
+
+#: ../../godmode/modules/manage_network_templates_form.php:60
+msgid "Error deleting module from profile"
+msgstr "Error al borrar el módulo del perfil"
+
+#: ../../godmode/modules/manage_network_templates_form.php:79
+msgid "Successfully added module to profile"
+msgstr "Módulo añadido correctamente al perfil"
+
+#: ../../godmode/modules/manage_network_templates_form.php:80
+msgid "Error adding module to profile"
+msgstr "Error al añadir el módulo al perfil"
+
+#: ../../godmode/modules/manage_network_templates_form.php:113
+msgid "Successfully updated network profile"
+msgstr "Perfil de red actualizado correctamente"
+
+#: ../../godmode/modules/manage_network_templates_form.php:114
+msgid "Error updating network profile"
+msgstr "Error al actualizar el perfil de red"
+
+#: ../../godmode/modules/manage_network_templates_form.php:138
+msgid "Successfully added network profile"
+msgstr "Perfil de red añadido correctamente"
+
+#: ../../godmode/modules/manage_network_templates_form.php:139
+msgid "Error adding network profile"
+msgstr "Error al añadir el perfil de red"
+
+#: ../../godmode/modules/manage_network_templates_form.php:145
+msgid "Cannot create a template without name"
+msgstr "No se puede crear una plantilla sin nombre"
+
+#: ../../godmode/modules/manage_network_templates_form.php:219
+msgid "No modules for this profile"
+msgstr "No existen módulos para este perfil"
+
+#: ../../godmode/modules/manage_network_components_form_wizard.php:92
+msgid "Add a macro oid"
+msgstr "Añadir una oid de macro"
+
+#: ../../godmode/modules/manage_network_components_form_wizard.php:110
+msgid "Remove last macro oid"
+msgstr "Eliminar último macro de oid"
+
+#: ../../godmode/modules/manage_network_components_form_wizard.php:134
+msgid "Numeric"
+msgstr "Numérico"
+
+#: ../../godmode/modules/manage_network_components_form_wizard.php:136
+msgid "Boolean"
+msgstr "Boleano"
+
+#: ../../godmode/modules/manage_network_components_form_wizard.php:137
+msgid "Alphanumeric"
+msgstr "Alfanumérico"
+
+#: ../../godmode/modules/manage_network_components_form_wizard.php:257
+msgid "Add by default"
+msgstr "Añadir por defecto"
+
+#: ../../godmode/modules/manage_network_components_form_wizard.php:285
+msgid "Module protocol"
+msgstr "Protocolo de módulo"
+
+#: ../../godmode/modules/manage_network_components_form_wizard.php:301
+msgid "Protocol"
+msgstr "Protocolo"
+
+#: ../../godmode/modules/manage_network_components_form_wizard.php:314
+#: ../../godmode/modules/manage_network_components_form_network.php:191
+msgid "Name OID"
+msgstr "Nombre del OID"
+
+#: ../../godmode/modules/manage_network_components_form_wizard.php:317
+msgid "Manufacturer ID"
+msgstr "ID del fabricante"
+
+#: ../../godmode/modules/manage_network_components_form_wizard.php:349
+msgid "Component Group"
+msgstr "Grupo de componente"
+
+#: ../../godmode/modules/manage_network_components_form_wizard.php:367
+msgid "Module unit"
+msgstr "Unidad de módulo"
+
+#: ../../godmode/modules/manage_network_components_form_wizard.php:457
+msgid "Scan Type"
+msgstr "Tipo de escaneo"
+
+#: ../../godmode/modules/manage_network_components_form_wizard.php:471
+#: ../../godmode/agentes/planned_downtime.list.php:321
+msgid "Execution type"
+msgstr "Tipo de ejecución"
+
+#: ../../godmode/modules/manage_network_components_form_wizard.php:491
+msgid "Value OID"
+msgstr "OID del valor"
+
+#: ../../godmode/modules/manage_network_components_form_wizard.php:508
+msgid "Macros OID"
+msgstr "OID de macros"
+
+#: ../../godmode/modules/manage_network_components_form_wizard.php:516
+#: ../../godmode/modules/manage_network_components_form_wizard.php:701
+msgid "Value operation"
+msgstr "Operación de valores"
+
+#: ../../godmode/modules/manage_network_components_form_wizard.php:533
+#: ../../godmode/modules/manage_network_components_form_wizard.php:718
+msgid "Satellite execution"
+msgstr "Ejecución de satélite"
+
+#: ../../godmode/modules/manage_network_components_form_wizard.php:550
+#: ../../godmode/modules/manage_network_components_form_wizard.php:735
+msgid "Server plugin"
+msgstr "Plugin de servidor"
+
+#: ../../godmode/modules/manage_network_components_form_wizard.php:588
+msgid "WMI class"
+msgstr "Clase WMI"
+
+#: ../../godmode/modules/manage_network_components_form_wizard.php:605
+msgid "Query key field"
+msgstr "Campo de clave de consulta"
+
+#: ../../godmode/modules/manage_network_components_form_wizard.php:622
+msgid "Query extra fields"
+msgstr "Campos extra de consulta"
+
+#: ../../godmode/modules/manage_network_components_form_wizard.php:630
+msgid "Query filters"
+msgstr "Filtros de consulta"
+
+#: ../../godmode/modules/manage_network_components_form_wizard.php:673
+msgid "Field value"
+msgstr "Calor de campo"
+
+#: ../../godmode/modules/manage_nc_groups.php:40
+msgid "Component group management"
+msgstr "Gestión de grupos de componentes de red"
+
+#: ../../godmode/modules/manage_nc_groups.php:293
+#, php-format
+msgid ""
+"This node is configured with centralized mode. Component groups are read only. "
+"Go to %s to manage it."
+msgstr ""
+"Este nodo esta configurado con el modo centralizado. Toda la información de "
+"las políticas está en modo lectura. Vaya a %s para administrarlo."
+
+#: ../../godmode/modules/manage_nc_groups.php:311
+msgid "There are no defined component groups"
+msgstr "No hay grupos de componentes definidos"
+
+#: ../../godmode/modules/manage_network_components_form_common.php:712
+#: ../../godmode/agentes/module_manager_editor_common.php:2000
+msgid "Please introduce a positive percentage value"
+msgstr "Introduzca un valor porcentual positivo"
+
+#: ../../godmode/modules/manage_network_components_form_wmi.php:41
+#: ../../godmode/agentes/module_manager_editor_wmi.php:87
+msgid "Namespace"
+msgstr "Espacio de nombres"
+
+#: ../../godmode/modules/manage_network_components_form_network.php:72
+msgid "SNMP Enterprise String"
+msgstr "Cadena SNMP Enterprise"
+
+#: ../../godmode/modules/manage_nc_groups_form.php:54
+msgid "Update Group Component"
+msgstr "Actualización de los componentes del grupo"
+
+#: ../../godmode/modules/manage_nc_groups_form.php:56
+msgid "Create Group Component"
+msgstr "Crear componentes de grupo"
+
+#: ../../godmode/category/category.php:63 ../../godmode/category/category.php:77
+#: ../../godmode/category/edit_category.php:47
+#: ../../godmode/category/edit_category.php:61
+msgid "List categories"
+msgstr "Lista de categorías"
+
+#: ../../godmode/category/category.php:89 ../../godmode/category/category.php:91
+#: ../../godmode/category/edit_category.php:73
+#: ../../godmode/category/edit_category.php:75
+msgid "Categories configuration"
+msgstr "Configuración de categorías"
+
+#: ../../godmode/category/category.php:108
+#, php-format
+msgid ""
+"This node is configured with centralized mode. All categories information is "
+"read only. Go to %s to manage it."
+msgstr ""
+"Este nodo esta configurado con el modo centralizado. Toda la información de "
+"las políticas está en modo lectura. Vaya a %s para administrarlo."
+
+#: ../../godmode/category/category.php:123
+msgid "Error deleting category"
+msgstr "Error al eliminar la categoría"
+
+#: ../../godmode/category/category.php:129
+msgid "Successfully deleted category"
+msgstr "Categoría eliminada correctamente"
+
+#: ../../godmode/category/category.php:168
+msgid "Category name"
+msgstr "Nombre de la categoría"
+
+#: ../../godmode/category/category.php:226
+msgid "No categories found"
+msgstr "Ninguna categoría encontrada"
+
+#: ../../godmode/category/category.php:239
+#: ../../godmode/category/edit_category.php:171
+msgid "Create category"
+msgstr "Crear categoría"
+
+#: ../../godmode/category/edit_category.php:73
+msgid "Editor"
+msgstr "Editor"
+
+#: ../../godmode/category/edit_category.php:95
+msgid "Error updating category"
+msgstr "Error al actualizar categoría"
+
+#: ../../godmode/category/edit_category.php:101
+msgid "Successfully updated category"
+msgstr "Categoría actualizada correctamente"
+
+#: ../../godmode/category/edit_category.php:123
+msgid "Error creating category"
+msgstr "Error al crear categoría"
+
+#: ../../godmode/category/edit_category.php:131
+msgid "Successfully created category"
+msgstr "Categoría creada correctamente"
+
+#: ../../godmode/category/edit_category.php:163
+msgid "Update category"
+msgstr "Actualizar categoría"
+
+#: ../../godmode/gis_maps/configure_gis_map.php:98
+msgid "View GIS"
+msgstr "Ver GIS"
+
+#: ../../godmode/gis_maps/configure_gis_map.php:106
+msgid "GIS Maps builder"
+msgstr "Creador de mapas GIS"
+
+#: ../../godmode/gis_maps/configure_gis_map.php:196
+msgid "Map successfully created"
+msgstr "Mapa creado correctamente"
+
+#: ../../godmode/gis_maps/configure_gis_map.php:197
+msgid "Map could not be created"
+msgstr "No se pudo crear el mapa"
+
+#: ../../godmode/gis_maps/configure_gis_map.php:299
+msgid "Map successfully update"
+msgstr "Mapa actualizado correctamente"
+
+#: ../../godmode/gis_maps/configure_gis_map.php:300
+msgid "Map could not be updated"
+msgstr "No se pudo actualizar el mapa"
+
+#: ../../godmode/gis_maps/configure_gis_map.php:353
+msgid "Do you want to use the default data from the connection?"
+msgstr "¿Quieres usar los datos que vienen por defecto de la conexión?"
+
+#: ../../godmode/gis_maps/configure_gis_map.php:387
+msgid "The connection"
+msgstr "La conexión"
+
+#: ../../godmode/gis_maps/configure_gis_map.php:387
+msgid "just added previously."
+msgstr "ya ha sido añadido."
+
+#: ../../godmode/gis_maps/configure_gis_map.php:455
+msgid "Map Name"
+msgstr "Nombre del mapa"
+
+#: ../../godmode/gis_maps/configure_gis_map.php:474
+msgid "Add Map connection"
+msgstr "Añadir conexión al mapa"
+
+#: ../../godmode/gis_maps/configure_gis_map.php:523
+msgid "Default zoom"
+msgstr "Zoom por defecto"
+
+#: ../../godmode/gis_maps/configure_gis_map.php:530
+msgid "Center Latitude"
+msgstr "Latitud central"
+
+#: ../../godmode/gis_maps/configure_gis_map.php:533
+msgid "Center Longitude"
+msgstr "Longitud central"
+
+#: ../../godmode/gis_maps/configure_gis_map.php:536
+msgid "Center Altitude"
+msgstr "Altitud central"
+
+#: ../../godmode/gis_maps/configure_gis_map.php:539
+msgid "Default Latitude"
+msgstr "Latitud por defecto"
+
+#: ../../godmode/gis_maps/configure_gis_map.php:542
+msgid "Default Longitude"
+msgstr "Longitud por defecto"
+
+#: ../../godmode/gis_maps/configure_gis_map.php:545
+msgid "Default Altitude"
+msgstr "Altitud por defecto"
+
+#: ../../godmode/gis_maps/configure_gis_map.php:561
+msgid "List of layers"
+msgstr "Lista de capas"
+
+#: ../../godmode/gis_maps/configure_gis_map.php:562
+msgid "New layer"
+msgstr "Nueva capa"
+
+#: ../../godmode/gis_maps/configure_gis_map.php:568
+msgid "Layer name"
+msgstr "Nombre de la capa"
+
+#: ../../godmode/gis_maps/configure_gis_map.php:570
+msgid "Visible"
+msgstr "Visible"
+
+#: ../../godmode/gis_maps/configure_gis_map.php:574
+msgid "Show agents from group"
+msgstr "Mostrar agentes del grupo"
+
+#: ../../godmode/gis_maps/configure_gis_map.php:586
+msgid "Add agent"
+msgstr "Añadir agente"
+
+#: ../../godmode/gis_maps/configure_gis_map.php:608
+msgid "List of Agents to be shown in the layer"
+msgstr "Lista de los agentes que se mostrarán en la capa"
+
+#: ../../godmode/gis_maps/configure_gis_map.php:639
+msgid "Use the data of this agent"
+msgstr "Utilice los datos de este agente"
+
+#: ../../godmode/gis_maps/configure_gis_map.php:647
+msgid "List of groups to be shown in the layer"
+msgstr "Lista de grupos a mostrar en la capa"
+
+#: ../../godmode/gis_maps/configure_gis_map.php:654
+msgid "Save Layer"
+msgstr "Guardar capa"
+
+#: ../../godmode/gis_maps/configure_gis_map.php:670
+#: ../../godmode/gis_maps/configure_gis_map.php:677
+msgid "Save map"
+msgstr "Guardar mapa"
+
+#: ../../godmode/gis_maps/configure_gis_map.php:672
+msgid "Update map"
+msgstr "Actualizar mapa"
+
+#: ../../godmode/gis_maps/configure_gis_map.php:1060
+msgid "Using data from"
+msgstr "Utilizando los datos de"
+
+#: ../../godmode/gis_maps/configure_gis_map.php:1218
+msgid "Empty layer names are not supported"
+msgstr "No se admiten nombres de capa vacíos"
+
+#: ../../godmode/extensions.php:28
+msgid "Defined extensions"
+msgstr "Extensiones definidas"
+
+#: ../../godmode/extensions.php:33
+msgid "There are no extensions defined"
+msgstr "No hay extensiones definidas"
+
+#: ../../godmode/extensions.php:141
+msgid "Godmode Function"
+msgstr "Función Administrador"
+
+#: ../../godmode/extensions.php:142
+msgid "Godmode Menu"
+msgstr "Menú Administrador"
+
+#: ../../godmode/extensions.php:143
+msgid "Operation Menu"
+msgstr "Menú Operación"
+
+#: ../../godmode/extensions.php:144
+msgid "Operation Function"
+msgstr "Función Operación"
+
+#: ../../godmode/extensions.php:145
+msgid "Login Function"
+msgstr "Función Conexión"
+
+#: ../../godmode/extensions.php:146
+msgid "Agent operation tab"
+msgstr "Pestaña Operaciones de agente"
+
+#: ../../godmode/extensions.php:147
+msgid "Agent godmode tab"
+msgstr "Pestaña Administración de agente"
+
+#: ../../godmode/reporting/reporting_builder.main.php:146
+msgid "Only the group can view the report"
+msgstr "Solo el grupo puede ver el informe."
+
+#: ../../godmode/reporting/reporting_builder.main.php:147
+msgid "The next group can edit the report"
+msgstr "El siguiente grupo puede editar el informe."
+
+#: ../../godmode/reporting/reporting_builder.main.php:148
+msgid "Only the user and admin user can edit the report"
+msgstr "Solo el usuario y el usuario administrador pueden editar el informe."
+
+#: ../../godmode/reporting/reporting_builder.main.php:150
+msgid "Write Access"
+msgstr "Permisos de escritura"
+
+#: ../../godmode/reporting/reporting_builder.main.php:152
+msgid ""
+"For example, you want a report that the people of \"All\" groups can see but "
+"you want to edit only for you or your group."
+msgstr ""
+"Por ejemplo, quieres un informe que las personas de \"Todos\" los grupos "
+"pueden ver, pero quieres que solo tú o tu grupo podáis editarlo."
+
+#: ../../godmode/reporting/reporting_builder.main.php:193
+msgid "Non interactive report"
+msgstr "Informe no interactivo"
+
+#: ../../godmode/reporting/map_builder.php:318
+#: ../../godmode/reporting/map_builder.php:326
+msgid "Not copied. Error copying data"
+msgstr "Se ha producido un error al copiar los datos."
+
+#: ../../godmode/reporting/map_builder.php:368
+#: ../../godmode/reporting/visual_console_favorite.php:185
+msgid "Group Recursion"
+msgstr "Recursividad de grupo"
+
+#: ../../godmode/reporting/map_builder.php:384
+msgid "Map name"
+msgstr "Nombre del mapa"
+
+#: ../../godmode/reporting/map_builder.php:386
+msgid "Items"
+msgstr "Elementos"
+
+#: ../../godmode/reporting/visual_console_builder.php:211
+msgid "This file isn't image"
+msgstr "El archivo no es una imagen."
+
+#: ../../godmode/reporting/visual_console_builder.php:214
+msgid "This file isn't image."
+msgstr "El archivo no es una imagen."
+
+#: ../../godmode/reporting/visual_console_builder.php:220
+#: ../../godmode/reporting/visual_console_builder.php:223
+msgid "File already are exists."
+msgstr "El archivo ya existe."
+
+#: ../../godmode/reporting/visual_console_builder.php:231
+#: ../../godmode/reporting/visual_console_builder.php:234
+msgid "The file have not image extension."
+msgstr "El archivo no tiene una extensión válida."
+
+#: ../../godmode/reporting/visual_console_builder.php:246
+#: ../../godmode/reporting/visual_console_builder.php:249
+#: ../../godmode/reporting/visual_console_builder.php:259
+#: ../../godmode/reporting/visual_console_builder.php:265
+msgid "Problems with move file to target."
+msgstr "Error al mover el archivo al objetivo"
+
+#: ../../godmode/reporting/visual_console_builder.php:302
+msgid "Successfully update."
+msgstr "Actualizado correctamente"
+
+#: ../../godmode/reporting/visual_console_builder.php:321
+msgid "Could not be update."
+msgstr "No se puede actualizar"
+
+#: ../../godmode/reporting/visual_console_builder.php:341
+msgid "Successfully created."
+msgstr "Creado correctamente"
+
+#: ../../godmode/reporting/visual_console_builder.php:360
+msgid "Could not be created."
+msgstr "No se pudo crear"
+
+#: ../../godmode/reporting/visual_console_builder.php:408
+msgid "Successfully multiple delete."
+msgstr "Supresión múltiple realizada correctamente"
+
+#: ../../godmode/reporting/visual_console_builder.php:409
+msgid "Unsuccessful multiple delete."
+msgstr "Error de supresión múltiple"
+
+#: ../../godmode/reporting/visual_console_builder.php:529
+msgid "Successfully delete."
+msgstr "Borrado satisfactoriamente"
+
+#: ../../godmode/reporting/graphs.php:106
+msgid "Graphs containers"
+msgstr "Contenedores de gráficos"
+
+#: ../../godmode/reporting/graphs.php:120
+msgid "List of custom graphs"
+msgstr "Lista de gráficos personalizados"
+
+#: ../../godmode/reporting/graphs.php:235
+#: ../../godmode/reporting/reporting_builder.php:779
+msgid "Free text for search: "
+msgstr "Texto libre de búsqueda "
+
+#: ../../godmode/reporting/graphs.php:236
+#: ../../godmode/reporting/reporting_builder.php:781
+msgid "Search by report name or description, list matches."
+msgstr "Búsqueda por nombre del informe o descripción, lista de coincidencias"
+
+#: ../../godmode/reporting/graphs.php:248
+#: ../../godmode/reporting/reporting_builder.php:807
+msgid "Show Option"
+msgstr "Mostrar opciones"
+
+#: ../../godmode/reporting/graphs.php:402
+msgid "Create graph"
+msgstr "Crear gráfico"
+
+#: ../../godmode/reporting/graph_container.php:134
+#: ../../godmode/reporting/create_container.php:196
+msgid "Create container"
+msgstr "Crear contenedor"
+
+#: ../../godmode/reporting/reporting_builder.list_items.php:706
+#: ../../godmode/reporting/reporting_builder.list_items.php:710
+#: ../../godmode/reporting/graph_builder.graph_editor.php:284
+#: ../../godmode/reporting/graph_builder.graph_editor.php:288
+msgid "Sort items"
+msgstr "Ordenar elementos"
+
+#: ../../godmode/reporting/reporting_builder.list_items.php:713
+msgid "Sort selected items from position: "
+msgstr "Ordenar elementos desde posición: "
+
+#: ../../godmode/reporting/reporting_builder.list_items.php:716
+msgid "Move before to"
+msgstr "Mover antes de"
+
+#: ../../godmode/reporting/reporting_builder.list_items.php:717
+msgid "Move after to"
+msgstr "Mover después de"
+
+#: ../../godmode/reporting/reporting_builder.list_items.php:757
+#: ../../godmode/reporting/reporting_builder.list_items.php:761
+msgid "Delete items"
+msgstr "Borrar elementos"
+
+#: ../../godmode/reporting/reporting_builder.list_items.php:764
+msgid "Delete selected items from position: "
+msgstr "Borrar los elementos seleccionados desde la posición: "
+
+#: ../../godmode/reporting/reporting_builder.list_items.php:767
+msgid "Delete above to"
+msgstr "Borrar lo que está encima de"
+
+#: ../../godmode/reporting/reporting_builder.list_items.php:768
+msgid "Delete below to"
+msgstr "Borrar lo que está debajo de"
+
+#: ../../godmode/reporting/reporting_builder.list_items.php:824
+msgid ""
+"Are you sure to sort the items into the report?\\n. This action change the "
+"sorting of items into data base."
+msgstr ""
+"¿Está seguro de que quiere clasificar los elementos en el informe?\\n. Esta "
+"acción podría cambiar la clasificación de los elementos en la base de datos."
+
+#: ../../godmode/reporting/reporting_builder.list_items.php:844
+#: ../../godmode/reporting/graph_builder.graph_editor.php:407
+msgid "Please select any item to order"
+msgstr "Por favor, selecciona cualquier elemento para ordenar."
+
+#: ../../godmode/reporting/reporting_builder.list_items.php:874
+msgid "Are you sure to delete the items into the report?\\n"
+msgstr "¿Estás seguro de que quieres borrar los elementos en el informe?\\n"
+
+#: ../../godmode/reporting/reporting_builder.list_items.php:901
+msgid "Please select any item to delete"
+msgstr "Por favor, selecciona cualquier elemento para borrarlo."
+
+#: ../../godmode/reporting/graph_builder.php:336
+msgid "Graph builder"
+msgstr "Creador de gráficos"
+
+#: ../../godmode/reporting/graph_builder.php:378
+msgid "Graph stored successfully"
+msgstr "Gráfica almacenada correctamente"
+
+#: ../../godmode/reporting/graph_builder.php:379
+msgid "There was a problem storing Graph"
+msgstr "Error al almacenar el gráfico"
+
+#: ../../godmode/reporting/graph_builder.php:386
+#: ../../godmode/agentes/configurar_agente.php:1938
+msgid "Module added successfully"
+msgstr "Módulo añadido correctamente"
+
+#: ../../godmode/reporting/graph_builder.php:387
+msgid "There was a problem adding Module"
+msgstr "Ha surgido un problema al añadir el módulo."
+
+#: ../../godmode/reporting/graph_builder.php:394
+msgid "Update the graph"
+msgstr "Actualizar el gráfico"
+
+#: ../../godmode/reporting/graph_builder.php:395
+msgid "Bad update the graph"
+msgstr "No se pudo actualizar el gráfico."
+
+#: ../../godmode/reporting/graph_builder.php:402
+msgid "Graph deleted successfully"
+msgstr "Gráfico borrado correctamente"
+
+#: ../../godmode/reporting/graph_builder.php:403
+msgid "There was a problem deleting Graph"
+msgstr "Ha surgido un problema al borrar el gráfico."
+
+#: ../../godmode/reporting/visual_console_builder.data.php:94
+msgid "Create visual console"
+msgstr "Crear consola visual"
+
+#: ../../godmode/reporting/visual_console_builder.data.php:106
+msgid ""
+"Use [ or ( as first character, for example '[*] Map name', to render this map "
+"name in main menu"
+msgstr ""
+"Usa [ o ( como primer carácter. Por ejemplo \"[*] Nombre de mapa\", para "
+"renderizar este nombre de mapa en el menú principal."
+
+#: ../../godmode/reporting/visual_console_builder.data.php:179
+msgid "Background image"
+msgstr "Imagen de fondo"
+
+#: ../../godmode/reporting/visual_console_builder.data.php:211
+msgid "Layout size"
+msgstr "Tamaño del diseño"
+
+#: ../../godmode/reporting/visual_console_builder.data.php:214
+msgid "Set custom size"
+msgstr "Especificar tamaño personalizado"
+
+#: ../../godmode/reporting/visual_console_builder.data.php:220
+msgid "Get default image size"
+msgstr "Establecer el tamaño de imagen por defecto"
+
+#: ../../godmode/reporting/visual_console_builder.data.php:222
+msgid "Favourite visual console"
+msgstr "Consola visual favorita"
+
+#: ../../godmode/reporting/visual_console_builder.data.php:225
+msgid "Auto adjust to screen in fullscreen"
+msgstr "Ajuste automático a la pantalla en pantalla completa"
+
+#: ../../godmode/reporting/create_container.php:155
+msgid "Container name is missing."
+msgstr "Falta el nombre del contenedor."
+
+#: ../../godmode/reporting/create_container.php:205
+msgid "Container stored successfully"
+msgstr "Contenedor guardado correctamente"
+
+#: ../../godmode/reporting/create_container.php:205
+msgid "There was a problem storing container"
+msgstr "Hubo un problema al guardar el contenedor"
+
+#: ../../godmode/reporting/create_container.php:212
+msgid "Update the container"
+msgstr "Actualizar contenedor"
+
+#: ../../godmode/reporting/create_container.php:212
+msgid "Bad update the container"
+msgstr "Mala actualización del contenedor"
+
+#: ../../godmode/reporting/create_container.php:287
+msgid "Parent container"
+msgstr "Contenedor padre"
+
+#: ../../godmode/reporting/create_container.php:365
+#: ../../godmode/reporting/create_container.php:474
+#: ../../godmode/reporting/create_container.php:528
+msgid ""
+"This is the interval or period of time with which the graph data will be "
+"obtained. For example, a week means data from a week ago from now. "
+msgstr ""
+"Este es el intervalo o período de tiempo en el que se obtendrán los datos de "
+"la gráfica. Por ejemplo, una semana significa que habrá datos desde hace una "
+"semana hasta ahora. "
+
+#: ../../godmode/reporting/create_container.php:448
+#: ../../godmode/reporting/create_container.php:501
+#: ../../godmode/reporting/create_container.php:596
+msgid "Add item"
+msgstr "Añadir elemento"
+
+#: ../../godmode/reporting/create_container.php:614
+msgid "There are no items in this container."
+msgstr "No hay elementos en este contenedor."
+
+#: ../../godmode/reporting/create_container.php:623
+msgid "Agent/Module"
+msgstr "Agente/módulo"
+
+#: ../../godmode/reporting/create_container.php:626
+msgid "M.Group"
+msgstr "M.Grupo"
+
+#: ../../godmode/reporting/visual_console_favorite.php:223
+msgid "No favourite consoles defined"
+msgstr "No hay consolas favoritas"
+
+#: ../../godmode/reporting/visual_console_builder.elements.php:106
+msgid "Width x Height<br>Max value"
+msgstr "Ancho x Alto<br>Valor máximo"
+
+#: ../../godmode/reporting/visual_console_builder.elements.php:108
+msgid "Map linked"
+msgstr "Mapa enlazado"
+
+#: ../../godmode/reporting/visual_console_builder.elements.php:193
+msgid "Percentile Bar"
+msgstr "Barra de percentil"
+
+#: ../../godmode/reporting/visual_console_builder.elements.php:203
+msgid "Percentile Bubble"
+msgstr "Burbuja percentil"
+
+#: ../../godmode/reporting/visual_console_builder.elements.php:251
+msgid "Simple Value (Process Max)"
+msgstr "Valor simple (máximo)"
+
+#: ../../godmode/reporting/visual_console_builder.elements.php:262
+msgid "Simple Value (Process Min)"
+msgstr "Valor simple (mínimo)"
+
+#: ../../godmode/reporting/visual_console_builder.elements.php:273
+msgid "Simple Value (Process Avg)"
+msgstr "Valor simple (media)"
+
+#: ../../godmode/reporting/visual_console_builder.elements.php:394
+#: ../../godmode/reporting/visual_console_builder.elements.php:832
+msgid "Edit label"
+msgstr "Editar etiqueta"
+
+#: ../../godmode/reporting/reporting_builder.item_editor.php:993
+msgid "Not valid"
+msgstr "No válido"
+
+#: ../../godmode/reporting/reporting_builder.item_editor.php:1001
+msgid ""
+"This type of report brings a lot of data loading, it is recommended to use it "
+"for scheduled reports and not for real-time view."
+msgstr ""
+"Este tipo de informes tienen muchos datos que cargar. Recomendamos su uso para "
+"informes programados y no para informes de tiempo real."
+
+#: ../../godmode/reporting/reporting_builder.item_editor.php:1151
+msgid "Log number"
+msgstr "Número de logs"
+
+#: ../../godmode/reporting/reporting_builder.item_editor.php:1153
+msgid ""
+"Warning: this parameter limits the contents of the logs and affects the "
+"performance."
+msgstr ""
+"Advertencia: este parámetro limita los contenidos de los logs y afecta al "
+"rendimiento."
+
+#: ../../godmode/reporting/reporting_builder.item_editor.php:1214
+msgid ""
+"This is the range, or period of time over which the report renders the "
+"information for this report type. For example, a week means data from a week "
+"ago from now. "
+msgstr ""
+"Este es el lapso de tiempo que refleja el informe. Si es una semana, por "
+"ejemplo, el informe mostrará los datos desde hace una semana hasta ahora. "
+
+#: ../../godmode/reporting/reporting_builder.item_editor.php:1773
+msgid "Show modules"
+msgstr "Mostrar módulos"
+
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2154
+msgid "Target server"
+msgstr "Servidor Target"
+
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2455
+msgid "Macros definition"
+msgstr "Definición de macros"
+
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2466
+msgid "Render definition"
+msgstr "Definición de renderizado"
+
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2467
+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:2547
+msgid "Greater or equal (>=)"
+msgstr "Mayor o igual (>=)"
+
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2548
+msgid "Less or equal (<=)"
+msgstr "Menor o igual (<=)"
+
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2549
+msgid "Less (<)"
+msgstr "Menor a (<)"
+
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2550
+msgid "Greater (>)"
+msgstr "Mayor a (>)"
+
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2551
+msgid "Equal (=)"
+msgstr "Igual a (=)"
+
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2552
+msgid "Not equal (!=)"
+msgstr "No igual a (!=)"
+
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2677
+msgid ""
+"Show a summary chart with max, min and average number of total modules at the "
+"end of the report and Checks."
+msgstr ""
+"Mostrar una gráfica de sumario con el máximo, mínimo y la media del total de "
+"módulos al final del informe y las comprobaciones."
+
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2732
+msgid "Checks in Warning status"
+msgstr "Chequeos en estado Warning"
+
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2802
+msgid "Only data"
+msgstr "Sólo datos"
+
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2900
+msgid "Include extended events"
+msgstr "Incluir eventos ampliados"
+
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2919
+msgid "By agent "
+msgstr "Por agente "
+
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2929
+msgid "By user validator "
+msgstr "Por validador de usuario "
+
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2939
+msgid "By criticity "
+msgstr "Por prioridad "
+
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2949
+msgid "Validated vs unvalidated "
+msgstr "Validado vs invalidado "
+
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2964
+msgid ""
+"With the token enabled the query will affect the Historical Database, which "
+"may mean a small drop in performance."
+msgstr ""
+"Con el token habilitado, la consulta afectará a la base de datos histórica, "
+"que puede acarrear una bajada del rendimiento."
+
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3149
+msgid "Include filter"
+msgstr "Incluir filtro"
+
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3153
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3162
+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:3158
+msgid "Exclude filter"
+msgstr "Excluir filtro"
+
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3357
+msgid "Select by group"
+msgstr "Seleccionar por grupo"
+
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3445
+msgid "Display options"
+msgstr "Mostrar opciones"
+
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3503
+msgid "Agent group filter"
+msgstr "Filtro de grupo de agentes"
+
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3523
+msgid "Agent OS filter"
+msgstr "Filtro del so del agente"
+
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3549
+msgid "Agent custom field"
+msgstr "Campo personalizado de agente"
+
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3571
+msgid "Agent custom field filter"
+msgstr "Filtro de campo personalizado de agente"
+
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3595
+msgid "Agent status filter"
+msgstr "Filtro de estado del agente"
+
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3633
+msgid "Agent version filter"
+msgstr "Filtro de versión del agente"
+
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3657
+msgid "Agent has remote configuration"
+msgstr "El agente tiene configuración remota"
+
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3658
+msgid "Filter agents by remote configuration enabled."
+msgstr "Filtrar agentes por configuración remota habilitada."
+
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3669
+msgid "Agent module filter"
+msgstr "Filtro del módulo del agente"
+
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3775
+#: ../../godmode/reporting/reporting_builder.item_editor.php:4290
+msgid "Agent Failover"
+msgstr "Conmutación de agente"
+
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3780
+#: ../../godmode/reporting/reporting_builder.item_editor.php:4293
+msgid "Module Failover"
+msgstr "Conmutación de módulo"
+
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3820
+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:4266
+msgid "rate"
+msgstr "tasa"
+
+#: ../../godmode/reporting/reporting_builder.item_editor.php:4314
+msgid ""
+"Please be careful, when the module have diferent intervals in their life, the "
+"summatory maybe get bad result."
+msgstr ""
+"Por favor, ten en cuenta que cuando el módulo tiene diferentes intervalos a lo "
+"largo de su historia, el sumatorio puede obtener resultados incorrectos."
+
+#: ../../godmode/reporting/reporting_builder.item_editor.php:4334
+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:4600
+#: ../../godmode/reporting/reporting_builder.item_editor.php:4604
+#: ../../godmode/reporting/reporting_builder.item_editor.php:4608
+#: ../../godmode/reporting/reporting_builder.item_editor.php:4612
+#: ../../godmode/reporting/reporting_builder.item_editor.php:4616
+#: ../../godmode/reporting/reporting_builder.item_editor.php:4620
+#: ../../godmode/reporting/reporting_builder.item_editor.php:4624
+#: ../../godmode/reporting/reporting_builder.item_editor.php:4628
+msgid "Item Editor Information"
+msgstr "Información de editor de elemento"
+
+#: ../../godmode/reporting/reporting_builder.item_editor.php:4601
+msgid "Please select a name."
+msgstr "Seleccione un nombre."
+
+#: ../../godmode/reporting/reporting_builder.item_editor.php:4605
+msgid "Please select an agent."
+msgstr "Seleccione un agente."
+
+#: ../../godmode/reporting/reporting_builder.item_editor.php:4609
+#: ../../godmode/agentes/planned_downtime.editor.php:1388
+msgid "Please select a module."
+msgstr "Por favor, seleccione un módulo."
+
+#: ../../godmode/reporting/reporting_builder.item_editor.php:4613
+msgid "Please insert a SQL query."
+msgstr "Inserte una consulta SQL."
+
+#: ../../godmode/reporting/reporting_builder.item_editor.php:4617
+msgid "Please insert a URL."
+msgstr "Inserte una URL."
+
+#: ../../godmode/reporting/reporting_builder.item_editor.php:4621
+msgid "Please checked a custom interval option."
+msgstr "Compruebe la opción de intervalo personalizado"
+
+#: ../../godmode/reporting/reporting_builder.item_editor.php:4625
+msgid "Please select a user."
+msgstr "Seleccione un usuario."
+
+#: ../../godmode/reporting/reporting_builder.item_editor.php:4629
+msgid "Please select a group."
+msgstr "Seleccione un grupo"
+
+#: ../../godmode/reporting/reporting_builder.php:535
+#: ../../godmode/reporting/reporting_builder.php:3439
+#: ../../godmode/reporting/reporting_builder.php:3522
+#: ../../godmode/reporting/reporting_builder.php:3570
+msgid "Reports list"
+msgstr "Lista de informes"
+
+#: ../../godmode/reporting/reporting_builder.php:583
+msgid "List of reports"
+msgstr "Lista de informes"
+
+#: ../../godmode/reporting/reporting_builder.php:1046
+msgid "This report exceeds the item limit for realtime operations"
+msgstr ""
+"Este informe excede el tiempo límite para las operaciones de tiempo real."
+
+#: ../../godmode/reporting/reporting_builder.php:1278
+msgid "Create report"
+msgstr "Crear informe"
+
+#: ../../godmode/reporting/reporting_builder.php:3573
+msgid "Create Custom Report"
+msgstr "Crear informa personalizado"
+
+#: ../../godmode/reporting/reporting_builder.php:3661
+msgid "Unsuccessful action<br><br>"
+msgstr "Acción fallida<br><br>"
+
+#: ../../godmode/reporting/visual_console_builder.editor.php:163
+msgid "Min allowed size is 1024x768"
+msgstr "El tamaño mínimo permitido es 1024x768"
+
+#: ../../godmode/reporting/visual_console_builder.editor.php:167
+msgid "Loading in progress"
+msgstr "Cargando"
+
+#: ../../godmode/reporting/visual_console_builder.editor.php:169
+msgid "Saving in progress"
+msgstr "Guardando"
+
+#: ../../godmode/reporting/visual_console_builder.editor.php:171
+msgid "Deletion in progress"
+msgstr "Eliminando"
+
+#: ../../godmode/reporting/graph_builder.graph_editor.php:199
+#, php-format
+msgid ""
+"The maximum number of items in a chart is %d. You have %d elements, only first "
+"%d will be displayed."
+msgstr ""
+"El número máximo de elementos en una tabla es %d. Tiene %d elementos, solo se "
+"mostrarán los primeros %d."
+
+#: ../../godmode/reporting/graph_builder.graph_editor.php:291
+msgid "Sort selected items"
+msgstr "Ordenar elementos seleccionados"
+
+#: ../../godmode/reporting/graph_builder.graph_editor.php:294
+msgid "before to"
+msgstr "antes de"
+
+#: ../../godmode/reporting/graph_builder.graph_editor.php:295
+msgid "after to"
+msgstr "después de"
+
+#: ../../godmode/reporting/graph_builder.main.php:230
+msgid "Equalize maximum thresholds"
+msgstr "Igualar umbrales máximos"
+
+#: ../../godmode/reporting/graph_builder.main.php:258
+msgid "Add summatory series"
+msgstr "Añadir series sumatorias"
+
+#: ../../godmode/reporting/graph_builder.main.php:268
+msgid "Add average series"
+msgstr "Añadir series de promedios"
+
+#: ../../godmode/reporting/graph_builder.main.php:279
+msgid "Modules and series"
+msgstr "Módulos y series"
+
+#: ../../godmode/reporting/visual_console_builder.wizard.php:165
+msgid "Range between elements (px)"
+msgstr "Rango entre elementos (px)"
+
+#: ../../godmode/reporting/visual_console_builder.wizard.php:178
+msgid "Size (px)"
+msgstr "Tamaño (px)"
+
+#: ../../godmode/reporting/visual_console_builder.wizard.php:273
+msgid "Width (px)"
+msgstr "Ancho (px)"
+
+#: ../../godmode/reporting/visual_console_builder.wizard.php:378
+msgid "One item per agent"
+msgstr "Un elemento por agente"
+
+#: ../../godmode/reporting/visual_console_builder.wizard.php:448
+#: ../../godmode/reporting/visual_console_builder.wizard.php:765
+msgid "Agent - Module"
+msgstr "Agente-Módulo"
+
+#: ../../godmode/reporting/visual_console_builder.wizard.php:465
+msgid "Enable link agent"
+msgstr "Habilitar el enlace del agente"
+
+#: ../../godmode/reporting/visual_console_builder.wizard.php:476
+msgid "Set Parent"
+msgstr "Establecer padre"
+
+#: ../../godmode/reporting/visual_console_builder.wizard.php:479
+msgid "Item created in the visualmap"
+msgstr "Elemento creado en el mapa visual"
+
+#: ../../godmode/reporting/visual_console_builder.wizard.php:480
+msgid "Use the agents relationship (from selected agents)"
+msgstr "Usar la relación entre agentes (de los agentes seleccionados)"
+
+#: ../../godmode/reporting/visual_console_builder.wizard.php:489
+msgid "Item in the map"
+msgstr "Elemento en el mapa"
+
+#: ../../godmode/reporting/visual_console_builder.wizard.php:490
+#, php-format
+msgid "The parenting relationships in %s will be drawn on the map."
+msgstr "Las relaciones de jerarquía de %s se muestran en el mapa."
+
+#: ../../godmode/reporting/visual_console_builder.wizard.php:510
+#: ../../godmode/reporting/visual_console_builder.wizard.php:514
+msgid "Are you sure to add many elements\\nin visual map?"
+msgstr ""
+"¿Estás seguro de que quieres añadir tantos elementos en la consola visual?"
+
+#: ../../godmode/reporting/visual_console_builder.wizard.php:686
+msgid "Please select any module or modules."
+msgstr "Por favor, selecciona cualquier módulo o módulos."
+
+#: ../../godmode/menu.php:41
+msgid "Network scan"
+msgstr "Escaneado de red"
+
+#: ../../godmode/menu.php:43
+msgid "Custom network scan"
+msgstr "Escaneo de red personalizado"
+
+#: ../../godmode/menu.php:47
+msgid "Manage scan scripts"
+msgstr "Gestionar guiones de escaneo"
+
+#: ../../godmode/menu.php:50 ../../godmode/wizards/HostDevices.class.php:204
+msgid "Host & devices"
+msgstr "Host & devices"
+
+#: ../../godmode/menu.php:83
+msgid "Module categories"
+msgstr "Categorías de módulos"
+
+#: ../../godmode/menu.php:87
+msgid "Module types"
+msgstr "Tipos de módulos"
+
+#: ../../godmode/menu.php:97 ../../godmode/netflow/nf_edit.php:57
+#: ../../godmode/netflow/nf_edit.php:63 ../../godmode/netflow/nf_edit_form.php:73
+#: ../../godmode/netflow/nf_edit_form.php:83
+msgid "Netflow filters"
+msgstr "Filtros Netflow"
+
+#: ../../godmode/menu.php:103 ../../godmode/agentes/configurar_agente.php:817
+#: ../../godmode/agentes/configurar_agente.php:839
+#: ../../godmode/agentes/modificar_agente.php:104
+msgid "Resources"
+msgstr "Recursos"
+
+#: ../../godmode/menu.php:111
+msgid "Manage agents groups"
+msgstr "Configuración de grupos de agentes"
+
+#: ../../godmode/menu.php:149 ../../godmode/wizards/HostDevices.class.php:1077
+#: ../../godmode/agentes/configurar_agente.php:437
+msgid "Module templates"
+msgstr "Plantillas de módulos"
+
+#: ../../godmode/menu.php:155
+msgid "Remote components"
+msgstr "Componentes remotos"
+
+#: ../../godmode/menu.php:188 ../../godmode/massive/massive_operations.php:257
+msgid "Agents operations"
+msgstr "Operaciones sobre agentes"
+
+#: ../../godmode/menu.php:189 ../../godmode/massive/massive_operations.php:269
+msgid "Modules operations"
+msgstr "Operaciones sobre módulos"
+
+#: ../../godmode/menu.php:190 ../../godmode/massive/massive_operations.php:281
+msgid "Plugins operations"
+msgstr "Operaciones de plugins"
+
+#: ../../godmode/menu.php:192 ../../godmode/massive/massive_operations.php:245
+msgid "Users operations"
+msgstr "Operaciones sobre usuarios"
+
+#: ../../godmode/menu.php:195 ../../godmode/massive/massive_operations.php:233
+msgid "Alerts operations"
+msgstr "Operaciones sobre alertas"
+
+#: ../../godmode/menu.php:205 ../../godmode/groups/group_list.php:349
+msgid "Credential store"
+msgstr "Almacén de credenciales"
+
+#: ../../godmode/menu.php:225
+msgid "List of Alerts"
+msgstr "Lista de alertas"
+
+#: ../../godmode/menu.php:240 ../../godmode/menu.php:241
+msgid "Special days list"
+msgstr "Lista de días especiales"
+
+#: ../../godmode/menu.php:245
+msgid "SNMP alerts"
+msgstr "Alertas SNMP"
+
+#: ../../godmode/menu.php:257
+msgid "Event filters"
+msgstr "Filtro de eventos"
+
+#: ../../godmode/menu.php:262
+msgid "Custom events"
+msgstr "Eventos personalizados"
+
+#: ../../godmode/menu.php:285
+msgid "Manage servers"
+msgstr "Gestionar servidores"
+
+#: ../../godmode/menu.php:296
+msgid "Register Plugin"
+msgstr "Registrar Plugin"
+
+#: ../../godmode/menu.php:358
+msgid "Websocket Engine"
+msgstr "Websocket Engine"
+
+#: ../../godmode/menu.php:392
+msgid "Diagnostic info"
+msgstr "Información de diagnóstico"
+
+#: ../../godmode/menu.php:397
+msgid "Site news"
+msgstr "Noticias del sistema"
+
+#: ../../godmode/menu.php:403
+msgid "DB Schema Check"
+msgstr "Comprobación del esquema de la BD"
+
+#: ../../godmode/menu.php:406
+msgid "DB Interface"
+msgstr "Interfaz de la BBDD"
+
+#: ../../godmode/menu.php:493
+msgid "Extension manager view"
+msgstr "Vista del gestor de extensiones"
+
+#: ../../godmode/menu.php:497
+msgid "Extension manager"
+msgstr "Gestor de extensión"
+
+#: ../../godmode/menu.php:528
+msgid "Update manager"
+msgstr "Administrador de actualizaciones"
+
+#: ../../godmode/menu.php:533
+msgid "Update Manager offline"
+msgstr "Administrador de actualizaciones sin conexión"
+
+#: ../../godmode/menu.php:536
+msgid "Update Manager online"
+msgstr "Administrador de actualizaciones con conexión"
+
+#: ../../godmode/menu.php:539
+msgid "Update Manager options"
+msgstr "Opciones del Administrador de actualizaciones"
+
+#: ../../godmode/menu.php:542
+msgid "Update Manager journal"
+msgstr "Diario de Update Manager"
+
+#: ../../godmode/menu.php:550
+#: ../../godmode/module_library/module_library_view.php:81
+msgid "Module library"
+msgstr "Librería de módulos"
+
+#: ../../godmode/menu.php:557
+#: ../../godmode/module_library/module_library_view.php:54
+#: ../../godmode/module_library/module_library_view.php:68
+#: ../../godmode/module_library/module_library_view.php:104
+msgid "Categories"
+msgstr "Categorías"
+
+#: ../../godmode/snmpconsole/snmp_alert.php:99
+msgid "Alert overview"
+msgstr "Vista general de alertas"
+
+#: ../../godmode/snmpconsole/snmp_alert.php:277
+msgid "There was a problem creating the alert"
+msgstr "Hubo un problema al crear la alerta"
+
+#: ../../godmode/snmpconsole/snmp_alert.php:413
+msgid "There was a problem updating the alert"
+msgstr "Hubo un problema al actualizar la alerta"
+
+#: ../../godmode/snmpconsole/snmp_alert.php:610
+#: ../../godmode/snmpconsole/snmp_alert.php:623
+msgid "There was a problem duplicating the alert"
+msgstr "Hubo un problema al duplicar la alerta"
+
+#: ../../godmode/snmpconsole/snmp_alert.php:616
+msgid "Successfully Duplicate"
+msgstr "Duplicada correctamente"
+
+#: ../../godmode/snmpconsole/snmp_alert.php:644
+msgid "There was a problem deleting the alert"
+msgstr "Error al borrar la alerta"
+
+#: ../../godmode/snmpconsole/snmp_alert.php:730
+msgid "Matches substrings. End the string with $ for exact matches."
+msgstr ""
+"Coincide con las subcadenas. Escriba $ al final de la cadena para encontrar "
+"coincidencias exactas."
+
+#: ../../godmode/snmpconsole/snmp_alert.php:790
+#: ../../godmode/snmpconsole/snmp_alert.php:797
+#: ../../godmode/snmpconsole/snmp_alert.php:806
+#: ../../godmode/snmpconsole/snmp_alert.php:815
+#: ../../godmode/snmpconsole/snmp_alert.php:824
+#: ../../godmode/snmpconsole/snmp_alert.php:833
+#: ../../godmode/snmpconsole/snmp_alert.php:842
+#: ../../godmode/snmpconsole/snmp_alert.php:850
+#: ../../godmode/snmpconsole/snmp_alert.php:858
+#: ../../godmode/snmpconsole/snmp_alert.php:866
+#: ../../godmode/snmpconsole/snmp_alert.php:874
+#: ../../godmode/snmpconsole/snmp_alert.php:882
+#: ../../godmode/snmpconsole/snmp_alert.php:890
+#: ../../godmode/snmpconsole/snmp_alert.php:898
+#: ../../godmode/snmpconsole/snmp_alert.php:906
+#: ../../godmode/snmpconsole/snmp_alert.php:914
+#: ../../godmode/snmpconsole/snmp_alert.php:922
+#: ../../godmode/snmpconsole/snmp_alert.php:930
+#: ../../godmode/snmpconsole/snmp_alert.php:938
+#: ../../godmode/snmpconsole/snmp_alert.php:946
+msgid "Variable bindings/Data"
+msgstr "Enlaces variables/Datos"
+
+#: ../../godmode/snmpconsole/snmp_alert.php:1074
+msgid ""
+"Search by these fields description, OID, Custom Value, SNMP Agent (IP), Single "
+"value, each Variable bindings/Datas."
+msgstr ""
+"Búsqueda por estos campos de descripción: OID, Valor personalizado, Agente "
+"SNMP (IP), Valor individual, cada Enlace Variable/Datos."
+
+#: ../../godmode/snmpconsole/snmp_alert.php:1093
+msgid "Alert SNMP control filter"
+msgstr "Filtro de control de alerta SNMP"
+
+#: ../../godmode/snmpconsole/snmp_alert.php:1178
+msgid "There are no SNMP alerts"
+msgstr "Ninguna alerta SNMP definida"
+
+#: ../../godmode/snmpconsole/snmp_alert.php:1229
+msgid "Custom Value/Enterprise String"
+msgstr "Valor personalizado/Cadena Enterprise"
+
+#: ../../godmode/snmpconsole/snmp_alert.php:1234
+msgid "TF."
+msgstr "TF."
+
+#: ../../godmode/snmpconsole/snmp_alert.php:1357
+msgid "ID Alert SNMP"
+msgstr "ID alerta SNMP"
+
+#: ../../godmode/snmpconsole/snmp_alert.php:1589
+msgid "Add action "
+msgstr "Añadir acción "
+
+#: ../../godmode/snmpconsole/snmp_filters.php:41
+msgid "Filter overview"
+msgstr "Revisión del filtro"
+
+#: ../../godmode/snmpconsole/snmp_filters.php:108
+msgid "There was a problem updating the filter"
+msgstr "Error al actualizar el filtro"
+
+#: ../../godmode/snmpconsole/snmp_filters.php:126
+#: ../../godmode/snmpconsole/snmp_filters.php:152
+msgid "Description is empty"
+msgstr "La descripción está vacía"
+
+#: ../../godmode/snmpconsole/snmp_filters.php:129
+msgid "Filter is empty"
+msgstr "El filtro está vacío"
+
+#: ../../godmode/snmpconsole/snmp_filters.php:149
+msgid "Filters are empty"
+msgstr "Los filtros están vacíos"
+
+#: ../../godmode/snmpconsole/snmp_filters.php:159
+msgid "There was a problem creating the filter"
+msgstr "Error al crear el filtro"
+
+#: ../../godmode/snmpconsole/snmp_filters.php:178
+msgid "There was a problem deleting the filter"
+msgstr "Error al borrar el filtro"
+
+#: ../../godmode/snmpconsole/snmp_filters.php:221
+#: ../../godmode/snmpconsole/snmp_filters.php:231
+msgid ""
+"This field contains a substring, could be part of a IP address, a numeric OID, "
+"or a plain substring"
+msgstr ""
+"Este campo contiene una subcadena que podría ser parte de una dirección IP, un "
+"OID numérico o una subcadena simple."
+
+#: ../../godmode/snmpconsole/snmp_filters.php:223
+msgid "Click to remove the filter"
+msgstr "Haz clic para quitar el filtro"
+
+#: ../../godmode/snmpconsole/snmp_filters.php:254
+#: ../../godmode/snmpconsole/snmp_filters.php:255
+msgid "Click to add new filter"
+msgstr "Haz clic para añadir filtro nuevo"
+
+#: ../../godmode/snmpconsole/snmp_trap_generator.php:38
+msgid "SNMP Trap generator"
+msgstr "Generador de traps SNMP"
+
+#: ../../godmode/snmpconsole/snmp_trap_generator.php:68
+msgid "Empty parameters"
+msgstr "Parámetros vacíos"
+
+#: ../../godmode/snmpconsole/snmp_trap_generator.php:74
+msgid "Successfully generated"
+msgstr "Generado correctamente"
+
+#: ../../godmode/snmpconsole/snmp_trap_generator.php:75
+#, php-format
+msgid "Could not be generated: %s"
+msgstr "No se pudo generar: %s"
+
+#: ../../godmode/snmpconsole/snmp_trap_generator.php:85
+msgid "Host address"
+msgstr "Dirección del host"
+
+#: ../../godmode/snmpconsole/snmp_trap_generator.php:135
+msgid "SNMP Type"
+msgstr "Tipo de SNMP"
+
+#: ../../godmode/snmpconsole/snmp_trap_generator.php:168
+msgid "Generate trap"
+msgstr "Generar trap"
+
+#: ../../godmode/tag/edit_tag.php:57 ../../godmode/tag/edit_tag.php:75
+#: ../../godmode/tag/tag.php:140
+msgid "List tags"
+msgstr "Listar etiquetas"
+
+#: ../../godmode/tag/edit_tag.php:85 ../../godmode/tag/tag.php:152
+msgid "Tags configuration"
+msgstr "Configuración de etiquetas"
+
+#: ../../godmode/tag/edit_tag.php:128
+msgid "Successfully updated tag"
+msgstr "Etiqueta actualizada correctamente"
+
+#: ../../godmode/tag/edit_tag.php:129
+msgid "Error updating tag"
+msgstr "Error al actualizar la etiqueta"
+
+#: ../../godmode/tag/edit_tag.php:169
+msgid "Successfully created tag"
+msgstr "Etiqueta creada correctamente"
+
+#: ../../godmode/tag/edit_tag.php:170
+msgid "Error creating tag"
+msgstr "Error al crear etiqueta"
+
+#: ../../godmode/tag/edit_tag.php:201
+msgid "Update Tag"
+msgstr "Actualizar etiqueta"
+
+#: ../../godmode/tag/edit_tag.php:205
+msgid "Create Tag"
+msgstr "Crear etiqueta"
+
+#: ../../godmode/tag/edit_tag.php:229
+msgid "Hyperlink to help information that has to exist previously."
+msgstr "Hipervínculo a la información de ayuda que debe existir previamente"
+
+#: ../../godmode/tag/edit_tag.php:241
+msgid "Associated Email direction to use later in alerts associated to Tags."
+msgstr ""
+"Direccion de email asociada para utilizarla después en alertas asociadas a "
+"etiquetas"
+
+#: ../../godmode/tag/edit_tag.php:251 ../../godmode/tag/tag.php:282
+msgid "Phone"
+msgstr "Teléfono"
+
+#: ../../godmode/tag/edit_tag.php:253
+msgid "Associated phone number to use later in alerts associated to Tags."
+msgstr ""
+"Número de teléfono asociado para usar posteriormente en alertas asociadas a "
+"etiquetas"
+
+#: ../../godmode/tag/tag.php:117
+msgid "Number of modules"
+msgstr "Número de módulos"
+
+#: ../../godmode/tag/tag.php:119
+msgid "Number of policy modules"
+msgstr "Número de módulos de política"
+
+#: ../../godmode/tag/tag.php:178
+msgid "Successfully deleted tag"
+msgstr "Etiqueta eliminada correctamente"
+
+#: ../../godmode/tag/tag.php:179
+msgid "Error deleting tag"
+msgstr "Error al eliminar la etiqueta"
+
+#: ../../godmode/tag/tag.php:195
+#, php-format
+msgid ""
+"This node is configured with centralized mode. All tags information is read "
+"only. Go to %s to manage it."
+msgstr ""
+"Este nodo esta configurado con el modo centralizado. Toda la información de "
+"las políticas está en modo lectura. Vaya a %s para administrarlo."
+
+#: ../../godmode/tag/tag.php:277
+msgid "Tag name"
+msgstr "Nombre de etiqueta"
+
+#: ../../godmode/tag/tag.php:279
+msgid "Detail information"
+msgstr "Información de los detalles"
+
+#: ../../godmode/tag/tag.php:280
+msgid "Number of modules affected"
+msgstr "Número de módulos afectados"
+
+#: ../../godmode/tag/tag.php:311
+msgid "Tag details"
+msgstr "Detalles de la etiqueta"
+
+#: ../../godmode/tag/tag.php:344
+#, php-format
+msgid "Emails for the tag: %s"
+msgstr "Correos para la etiqueta: %s"
+
+#: ../../godmode/tag/tag.php:367
+#, php-format
+msgid "Phones for the tag: %s"
+msgstr "Teléfonos par la etiqueta: %s"
+
+#: ../../godmode/tag/tag.php:413
+msgid "No tags defined"
+msgstr "Etiquetas no definidas"
+
+#: ../../godmode/tag/tag.php:428
+msgid "Create tag"
+msgstr "Crear etiqueta"
+
+#: ../../godmode/events/event_edit_filter.php:249
+msgid "Update Filter"
+msgstr "Actualizar el filtro"
+
+#: ../../godmode/events/event_edit_filter.php:251
+msgid "Create Filter"
+msgstr "Crear filtro"
+
+#: ../../godmode/events/event_edit_filter.php:264
+msgid "Save in group"
+msgstr "Guardar en grupo"
+
+#: ../../godmode/events/event_edit_filter.php:264
+msgid ""
+"This group will be use to restrict the visibility of this filter with ACLs"
+msgstr ""
+"Este grupo se usará para restringir la visibilidad de este filtro con ACLs."
+
+#: ../../godmode/events/event_edit_filter.php:414
+msgid "Choose between the users who have validated an event. "
+msgstr "Escoge entre los usuarios que tienen validado un evento. "
+
+#: ../../godmode/events/event_edit_filter.php:636
+msgid "Custom data filter type"
+msgstr "Tipo de filtro de datos personalizado"
+
+#: ../../godmode/events/event_edit_filter.php:639
+msgid "Filter custom data by name field"
+msgstr "Filtrar datos personalizados por campo de nombre"
+
+#: ../../godmode/events/event_edit_filter.php:640
+msgid "Filter custom data by value field"
+msgstr "Filtrar datos personalizados por campo de valor"
+
+#: ../../godmode/events/event_edit_filter.php:654
+msgid "Id souce event"
+msgstr "Evento de origen de ID"
+
+#: ../../godmode/events/event_responses.editor.php:73
+msgid "Edit event responses"
+msgstr "Editar respuestas de eventos"
+
+#: ../../godmode/events/event_responses.editor.php:123
+msgid "For Command type Modal Window mode is enforced"
+msgstr "Para tipo comando, se aplica el modo ventana modal"
+
+#: ../../godmode/events/event_responses.editor.php:125
+msgid "Modal window"
+msgstr "Ventana modal"
+
+#: ../../godmode/events/event_responses.editor.php:126
+msgid "New window"
+msgstr "Nueva ventana"
+
+#: ../../godmode/events/event_responses.editor.php:198
+msgid "Command timeout (s)"
+msgstr "Límite(s) de tiempo del comando"
+
+#: ../../godmode/events/event_responses.editor.php:204
+msgid "Display command"
+msgstr "Mostrar comando"
+
+#: ../../godmode/events/event_responses.editor.php:204
+msgid ""
+"If enabled the command will be displayed to any user that can execute this "
+"event response"
+msgstr ""
+"Si está habilitado, el comando se mostrará a cualquier usuario que pueda "
+"ejecutar esta respuesta de evento"
+
+#: ../../godmode/events/custom_events.php:76
+msgid "Load the fields from previous events"
+msgstr "Cargar los archivos de eventos previos"
+
+#: ../../godmode/events/custom_events.php:76
+msgid "Event fields will be loaded. Do you want to continue?"
+msgstr "Se cargarán los archivos de eventos. ¿Deseas continuar?"
+
+#: ../../godmode/events/custom_events.php:97
+msgid "Agent Name"
+msgstr "Nombre de agente"
+
+#: ../../godmode/events/event_responses.php:51
+msgid "Response added succesfully"
+msgstr "Respuesta añadida correctamente"
+
+#: ../../godmode/events/event_responses.php:53
+msgid "Response cannot be added"
+msgstr "La respuesta no se puede añadir."
+
+#: ../../godmode/events/event_responses.php:77
+msgid "Response updated succesfully"
+msgstr "Repuesta actualizada correctamente"
+
+#: ../../godmode/events/event_responses.php:79
+msgid "Response cannot be updated"
+msgstr "La respuesta no se puede actualizar."
+
+#: ../../godmode/events/event_responses.php:89
+msgid "Response deleted succesfully"
+msgstr "Respuesta eliminada correctamente"
+
+#: ../../godmode/events/event_responses.php:91
+msgid "Response cannot be deleted"
+msgstr "La respuesta no se puede eliminar."
+
+#: ../../godmode/events/event_responses.list.php:32
+msgid "No responses found"
+msgstr "No se encontraron respuestas"
+
+#: ../../godmode/events/event_responses.list.php:92
+msgid "Create response"
+msgstr "Crear respuesta"
+
+#: ../../godmode/events/events.php:54 ../../godmode/netflow/nf_edit_form.php:53
+msgid "Filter list"
+msgstr "Lista de filtros"
+
+#: ../../godmode/events/event_filter.php:215
+#: ../../godmode/netflow/nf_edit.php:212
+msgid "There are no defined filters"
+msgstr "No hay filtros definidos"
+
+#: ../../godmode/db/db_main.php:74
+msgid "Current database maintenance setup"
+msgstr "Configuración actual del mantenimiento de la BD"
+
+#: ../../godmode/db/db_main.php:80
+msgid "Database setup"
+msgstr "Configuración de la base de datos"
+
+#: ../../godmode/db/db_main.php:84
+msgid "Max. time before compact data"
+msgstr "Máx. días antes de comprimir datos"
+
+#: ../../godmode/db/db_main.php:90
+msgid "Max. time before purge"
+msgstr "Máx. días antes de purga de datos"
+
+#: ../../godmode/db/db_main.php:114
+msgid "Total data items (tagente_datos)"
+msgstr "Total de elementos de datos (tagente_datos)"
+
+#: ../../godmode/db/db_main.php:127
+msgid "Total log4x items (tagente_datos_log4x)"
+msgstr "Total elementos Log4x (tagente_datos_log4x)"
+
+#: ../../godmode/db/db_main.php:140
+msgid "Total data string items (tagente_datos_string)"
+msgstr "Total de elementos de cadenas de datos (tagente_datos_string)"
+
+#: ../../godmode/db/db_main.php:146
+msgid "Total modules configured"
+msgstr "Módulos totales configurados"
+
+#: ../../godmode/db/db_main.php:154
+msgid "Total agent access records"
+msgstr "Total de registros de acceso del agente"
+
+#: ../../godmode/db/db_main.php:166
+msgid "Database sanity"
+msgstr "Estado de la BD"
+
+#: ../../godmode/db/db_main.php:170
+msgid "Total uknown agents"
+msgstr "Total de agentes desconocidos"
+
+#: ../../godmode/db/db_main.php:176
+msgid "Total non-init modules"
+msgstr "Total de módulos no iniciados"
+
+#: ../../godmode/db/db_main.php:185
+msgid "Last time on DB maintance"
+msgstr "Última vez en mantenimiento de base de datos"
+
+#: ../../godmode/db/db_main.php:208
+#, php-format
+msgid ""
+"Please make sure your %s Server settings are correct and that the database "
+"maintenance daemon is running. It's very important to keep your database up to "
+"date in order to get the best performance and results from %s."
+msgstr ""
+"Asegúrese de que la configuración del servidor de %s es correcta y que el "
+"demonio de mantenimiento de la base de datos está en ejecución. Es muy "
+"importante tener la base de datos actualizada para que el funcionamiento y los "
+"resultados de %s sean óptimos."
+
+#: ../../godmode/netflow/nf_edit.php:38
+msgid "Manage Netflow Filter"
+msgstr "Filtro de gestión Netflow"
+
+#: ../../godmode/netflow/nf_edit_form.php:55
+#: ../../godmode/netflow/nf_edit_form.php:77
+msgid "Add filter"
+msgstr "Añadir filtro"
+
+#: ../../godmode/netflow/nf_edit_form.php:58
+msgid "Netflow Filter"
+msgstr "Filtro Netflow"
+
+#: ../../godmode/netflow/nf_edit_form.php:235
+msgid "Filter:"
+msgstr "Filtrar:"
+
+#: ../../godmode/netflow/nf_item_list.php:30
+#: ../../godmode/netflow/nf_item_list.php:38
+msgid "Report items"
+msgstr "Elementos de informe"
+
+#: ../../godmode/netflow/nf_item_list.php:33
+msgid "Edit report"
+msgstr "Editar informe"
+
+#: ../../godmode/netflow/nf_item_list.php:53
+msgid "Netflow reports"
+msgstr "Informes Netflow"
+
+#: ../../godmode/netflow/nf_item_list.php:57
+msgid "Item list"
+msgstr "Lista de elementos"
+
+#: ../../godmode/netflow/nf_item_list.php:277
+msgid "There are no defined items"
+msgstr "No hay elementos definidos"
+
+#: ../../godmode/massive/massive_add_alerts.php:105
+#: ../../godmode/massive/massive_delete_alerts.php:108
+msgid "No alert selected"
+msgstr "No se seleccionó ninguna alerta"
+
+#: ../../godmode/massive/massive_delete_modules.php:82
+msgid "No module selected"
+msgstr "No se seleccionó ningún módulo"
+
+#: ../../godmode/massive/massive_delete_modules.php:156
+msgid "There was an error deleting the modules, the operation has been cancelled"
+msgstr "Hubo un error al borrar los módulos, se canceló la operación"
+
+#: ../../godmode/massive/massive_delete_modules.php:318
+#: ../../godmode/massive/massive_edit_modules.php:304
+msgid "Selection mode"
+msgstr "Modo de selección"
+
+#: ../../godmode/massive/massive_delete_modules.php:319
+#: ../../godmode/massive/massive_edit_modules.php:305
+msgid "Select modules first "
+msgstr "Seleccionar primero los módulos "
+
+#: ../../godmode/massive/massive_delete_modules.php:320
+#: ../../godmode/massive/massive_edit_modules.php:306
+msgid "Select agents first "
+msgstr "Seleccionar primero los agentes "
+
+#: ../../godmode/massive/massive_delete_modules.php:343
+#: ../../godmode/massive/massive_edit_modules.php:325
+msgid "Select all modules of this type"
+msgstr "Seleccionar todos los módulos de este tipo"
+
+#: ../../godmode/massive/massive_delete_modules.php:387
+#: ../../godmode/massive/massive_edit_modules.php:371
+msgid "Select all modules of this group"
+msgstr "Seleccionar todos los módulos de este grupo"
+
+#: ../../godmode/massive/massive_delete_modules.php:458
+#: ../../godmode/massive/massive_copy_modules.php:196
+#: ../../godmode/massive/massive_edit_modules.php:420
+msgid "Filter Modules"
+msgstr "Filtrar módulos"
+
+#: ../../godmode/massive/massive_delete_modules.php:477
+#: ../../godmode/massive/massive_edit_modules.php:436
+msgid "Select all modules"
+msgstr "Seleccionar todos los módulos"
+
+#: ../../godmode/massive/massive_delete_modules.php:479
+#: ../../godmode/massive/massive_edit_modules.php:438
+msgid "When select modules"
+msgstr "Cuando se seleccionan módulos"
+
+#: ../../godmode/massive/massive_delete_modules.php:483
+#: ../../godmode/massive/massive_edit_modules.php:442
+msgid "Show common agents"
+msgstr "Mostrar agentes comunes"
+
+#: ../../godmode/massive/massive_delete_modules.php:484
+#: ../../godmode/massive/massive_edit_modules.php:443
+msgid "Show all agents"
+msgstr "Mostrar todos los agentes"
+
+#: ../../godmode/massive/massive_delete_modules.php:530
+#: ../../godmode/massive/massive_copy_modules.php:292
+msgid "Filter Agents"
+msgstr "Filtrar agentes"
+
+#: ../../godmode/massive/massive_delete_modules.php:549
+#: ../../godmode/massive/massive_edit_modules.php:522
+msgid "Select all agents"
+msgstr "Seleccionar todos los agentes"
+
+#: ../../godmode/massive/massive_delete_modules.php:557
+#: ../../godmode/massive/massive_add_action_alerts.php:226
+#: ../../godmode/massive/massive_delete_action_alerts.php:247
+#: ../../godmode/massive/massive_edit_modules.php:530
+msgid "Show unknown and not init modules"
+msgstr "Mostrar módulos desconocidos y no iniciados"
+
+#: ../../godmode/massive/massive_delete_modules.php:595
+#: ../../godmode/massive/massive_edit_modules.php:1260
+msgid "Please, select an agent first"
+msgstr "Primero seleccione un agente"
+
+#: ../../godmode/massive/massive_copy_modules.php:193
+msgid "Copy alerts"
+msgstr "Copiar alertas"
+
+#: ../../godmode/massive/massive_copy_modules.php:230
+msgid "No alerts for this agent"
+msgstr "Ninguna alerta para este agente"
+
+#: ../../godmode/massive/massive_copy_modules.php:309
+msgid "To agent(s)"
+msgstr "A los agentes"
+
+#: ../../godmode/massive/massive_copy_modules.php:559
+msgid "No operation selected"
+msgstr "No se seleccionó ninguna operación"
+
+#: ../../godmode/massive/massive_operations.php:59
+msgid "Bulk alert add"
+msgstr "Añadir alerta masiva"
+
+#: ../../godmode/massive/massive_operations.php:60
+msgid "Bulk alert delete"
+msgstr "Eliminar alerta masiva"
+
+#: ../../godmode/massive/massive_operations.php:61
+msgid "Bulk alert actions add"
+msgstr "Añadir acciones de alerta masiva"
+
+#: ../../godmode/massive/massive_operations.php:62
+msgid "Bulk alert actions delete"
+msgstr "Eliminar acciones de alerta masiva"
+
+#: ../../godmode/massive/massive_operations.php:63
+msgid "Bulk alert enable/disable"
+msgstr "Habilitar/Deshabilitar alerta masiva"
+
+#: ../../godmode/massive/massive_operations.php:64
+msgid "Bulk alert setting standby"
+msgstr "Configuración standby de alertas masivas"
+
+#: ../../godmode/massive/massive_operations.php:68
+msgid "Bulk agent edit"
+msgstr "Edición agentes masiva"
+
+#: ../../godmode/massive/massive_operations.php:69
+#: ../../godmode/massive/massive_operations.php:73
+msgid "Bulk agent delete"
+msgstr "Eliminar agentes de forma masiva"
+
+#: ../../godmode/massive/massive_operations.php:79
+msgid "Bulk profile add"
+msgstr "Añadir perfiles de forma masiva"
+
+#: ../../godmode/massive/massive_operations.php:80
+msgid "Bulk profile delete"
+msgstr "Eliminar perfiles de forma masiva"
+
+#: ../../godmode/massive/massive_operations.php:87
+msgid "Bulk module edit"
+msgstr "Editar módulos de forma masiva"
+
+#: ../../godmode/massive/massive_operations.php:88
+msgid "Bulk module copy"
+msgstr "Copiar módulos de forma masiva"
+
+#: ../../godmode/massive/massive_operations.php:89
+msgid "Bulk module delete"
+msgstr "Eliminar módulos de forma masiva"
+
+#: ../../godmode/massive/massive_operations.php:93
+msgid "Bulk plugin edit"
+msgstr "Editar plugins de forma masiva"
+
+#: ../../godmode/massive/massive_operations.php:389
+#, php-format
+msgid ""
+"No changes have been made because they exceed the maximum allowed (%d). Make "
+"fewer changes or contact the administrator."
+msgstr ""
+"No se han hecho cambios porque exceden el máximo permitido (%d). Haga menos "
+"cambios o póngase en contacto con el administrador."
+
+#: ../../godmode/massive/massive_operations.php:417
+#, php-format
+msgid "This node is configured with centralized mode. To delete agents go to %s"
+msgstr ""
+"Este nodo está configurado en modo centralizado. Para eliminar un agente, vaya "
+"a %s"
+
+#: ../../godmode/massive/massive_operations.php:440
+msgid "The blank fields will not be updated"
+msgstr "Los campos en blanco no se actualizarán."
+
+#: ../../godmode/massive/massive_add_profiles.php:52
+#: ../../godmode/massive/massive_delete_profiles.php:52
+#, php-format
+msgid ""
+"This node is configured with centralized mode. All profiles user information "
+"is read only. Go to %s to manage it."
+msgstr ""
+"Este nodo esta configurado con el modo centralizado. Toda la información de "
+"las políticas está en modo lectura. Vaya a %s para administrarlo."
+
+#: ../../godmode/massive/massive_add_profiles.php:184
+msgid "Profiles added successfully"
+msgstr "Perfiles agregados correctamente"
+
+#: ../../godmode/massive/massive_add_profiles.php:185
+msgid "Profiles cannot be added"
+msgstr "Los perfiles no se han podido agregar"
+
+#: ../../godmode/massive/massive_standby_alerts.php:223
+msgid "Not standby alerts"
+msgstr "Alertas sin standby"
+
+#: ../../godmode/massive/massive_standby_alerts.php:252
+#: ../../godmode/massive/massive_standby_alerts.php:256
+msgid "Set standby selected alerts"
+msgstr "Poner en standby las alertas seleccionadas"
+
+#: ../../godmode/massive/massive_standby_alerts.php:258
+msgid "Standby alerts"
+msgstr "Alertas en standby"
+
+#: ../../godmode/massive/massive_add_action_alerts.php:134
+msgid "No alerts selected"
+msgstr "No se seleccionó ninguna alerta"
+
+#: ../../godmode/massive/massive_add_action_alerts.php:166
+msgid "No actions selected"
+msgstr "No hay acciones seleccionadas"
+
+#: ../../godmode/massive/massive_add_action_alerts.php:212
+#: ../../godmode/massive/massive_delete_action_alerts.php:230
+msgid "Agents with templates"
+msgstr "Agentes con plantillas"
+
+#: ../../godmode/massive/massive_add_action_alerts.php:218
+#: ../../godmode/massive/massive_delete_action_alerts.php:239
+#: ../../godmode/alerts/alert_templates.php:131
+#: ../../godmode/alerts/alert_templates.php:183
+#: ../../godmode/alerts/alert_templates.php:206
+#: ../../godmode/alerts/alert_templates.php:227
+msgid "Alert templates"
+msgstr "Plantillas de alertas"
+
+#: ../../godmode/massive/massive_edit_agents.php:176
+msgid "No values changed"
+msgstr "No se han cambiado los valores."
+
+#: ../../godmode/massive/massive_edit_agents.php:227
+msgid "Configuration files deleted successfully"
+msgstr "Los archivos de configuración se borraron correctamente."
+
+#: ../../godmode/massive/massive_edit_agents.php:228
+msgid "Configuration files cannot be deleted"
+msgstr "Los archivos de configuración no se pudieron borrar."
+
+#: ../../godmode/massive/massive_edit_agents.php:420
+#, php-format
+msgid "Agents updated successfully (%d)"
+msgstr "Agentes actualizados correctamente (%d)"
+
+#: ../../godmode/massive/massive_edit_agents.php:435
+#, php-format
+msgid "Agents cannot be updated (%d), ids (%s)"
+msgstr "Los agentes no se pueden actualizar (%d), identificadores (%s)"
+
+#: ../../godmode/massive/massive_edit_agents.php:450
+#, php-format
+msgid "Agent ID: %s cannot be updated custom fields (%s)"
+msgstr "ID del agente: %s no se pueden actualizar los campos personalizados (%s)"
+
+#: ../../godmode/massive/massive_edit_agents.php:470
+#, php-format
+msgid "Agent ID: %s cannot be updated %s secondary groups (%s)"
+msgstr "ID de agente: %s no se puede actualizar %s grupos secundarios (%s)"
+
+#: ../../godmode/massive/massive_edit_agents.php:547
+#: ../../godmode/massive/massive_delete_agents.php:226
+msgid "Show agents"
+msgstr "Mostrar agentes"
+
+#: ../../godmode/massive/massive_edit_agents.php:661
+#: ../../godmode/agentes/agent_manager.php:551
+msgid "Cascade protection"
+msgstr "Protección en cascada"
+
+#: ../../godmode/massive/massive_edit_agents.php:858
+#: ../../godmode/agentes/agent_manager.php:567
+msgid "Module definition"
+msgstr "Definición de módulos"
+
+#: ../../godmode/massive/massive_edit_agents.php:870
+#: ../../godmode/agentes/agent_manager.php:572
+msgid "Learning mode"
+msgstr "Modo de aprendizaje"
+
+#: ../../godmode/massive/massive_edit_agents.php:881
+#: ../../godmode/agentes/agent_manager.php:582
+msgid "Normal mode"
+msgstr "Modo normal"
+
+#: ../../godmode/massive/massive_edit_agents.php:892
+#: ../../godmode/agentes/agent_manager.php:592
+msgid "Autodisable mode"
+msgstr "Modo autodeshabilitado"
+
+#: ../../godmode/massive/massive_edit_agents.php:919
+msgid ""
+"If the remote configuration is enabled, it will also go into standby mode when "
+"disabling it."
+msgstr ""
+"Si la configuración remota está habilitada, también entrará en modo de espera "
+"cuando se deshabilite."
+
+#: ../../godmode/massive/massive_edit_agents.php:932
+msgid "Active"
+msgstr "Activo"
+
+#: ../../godmode/massive/massive_edit_agents.php:948
+msgid "Delete available remote configurations"
+msgstr "Borrar las configuraciones remotas disponibles"
+
+#: ../../godmode/massive/massive_edit_agents.php:980
+#: ../../godmode/agentes/agent_manager.php:656
+msgid "Agent icon"
+msgstr "Icono de agente"
+
+#: ../../godmode/massive/massive_edit_agents.php:981
+msgid "Without status"
+msgstr "Sin estado"
+
+#: ../../godmode/massive/massive_edit_agents.php:984
+#: ../../godmode/agentes/agent_conf_gis.php:124
+msgid "Ignore new GIS data:"
+msgstr "Ignorar nuevos datos GIS:"
+
+#: ../../godmode/massive/massive_edit_agents.php:991
+msgid "The agent still runs but the alerts and events will be stop"
+msgstr "El agente seguirá ejecutándose, pero las alertas y eventos se detendrán."
+
+#: ../../godmode/massive/massive_edit_agents.php:1006
+#: ../../godmode/agentes/agent_manager.php:479
+msgid "Safe operation mode"
+msgstr "Modo seguro de operación"
+
+#: ../../godmode/massive/massive_edit_agents.php:1008
+#, php-format
+msgid ""
+"This mode allow %s to disable all modules \n"
+"of this agent while the selected module is on CRITICAL status"
+msgstr ""
+"Este modo permite que %s deshabilite todos los módulos \n"
+"de este agente mientras el módulo seleccionado esté en estado CRÍTICO"
+
+#: ../../godmode/massive/massive_delete_profiles.php:133
+msgid "Profiles deleted successfully"
+msgstr "Perfiles borrados correctamente"
+
+#: ../../godmode/massive/massive_delete_profiles.php:134
+msgid "Profiles cannot be deleted"
+msgstr "No se pudieron borrar los perfiles."
+
+#: ../../godmode/massive/massive_delete_action_alerts.php:75
+msgid "Could not be deleted. No agents selected"
+msgstr "No se puede borrar. Ningún agente seleccionado"
+
+#: ../../godmode/massive/massive_delete_action_alerts.php:122
+msgid "Could not be deleted. No alerts selected"
+msgstr "No se puede borrar. No hay alertas seleccionadas"
+
+#: ../../godmode/massive/massive_delete_action_alerts.php:181
+msgid "Could not be deleted. No action selected"
+msgstr "No se puede eliminar. No hay acciones seleccionadas"
+
+#: ../../godmode/massive/massive_delete_alerts.php:301
+msgid "Show alerts on disabled modules"
+msgstr "Mostrar alertas de módulos deshabilitados"
+
+#: ../../godmode/massive/massive_delete_agents.php:122
+#, php-format
+msgid ""
+"There was an error deleting the agent, the operation has been cancelled Could "
+"not delete agent %s"
+msgstr ""
+"Se produjo un error al eliminar el agente. La operación ha sido cancelada. No "
+"se pudo eliminar el agente %s."
+
+#: ../../godmode/massive/massive_delete_agents.php:132
+#, php-format
+msgid "Successfully deleted (%s)"
+msgstr "Borrado correctamente (%s)"
+
+#: ../../godmode/massive/massive_edit_plugins.php:177
+msgid "Error retrieving the plugin macros"
+msgstr "Error al recuperar las macros de plugin"
+
+#: ../../godmode/massive/massive_edit_plugins.php:185
+msgid "Error retrieving the modified macros"
+msgstr "Error al recuperar las macros modificadas"
+
+#: ../../godmode/massive/massive_edit_plugins.php:208
+msgid "Error retrieving the module plugin macros"
+msgstr "Error al recuperar las macros del módulo de plugin"
+
+#: ../../godmode/massive/massive_edit_plugins.php:226
+msgid "Error retrieving the module plugin macros data"
+msgstr "Error al recuperar los datos de las macros del módulo de plugin"
+
+#: ../../godmode/massive/massive_edit_plugins.php:264
+msgid "Error building the new macros"
+msgstr "Error al crear las nuevas macros"
+
+#: ../../godmode/massive/massive_edit_plugins.php:290
+#, php-format
+msgid "%d modules updated"
+msgstr "%d módulos actualizados"
+
+#: ../../godmode/massive/massive_edit_plugins.php:321
+msgid "There are not registered plugins"
+msgstr "No hay plugins registrados"
+
+#: ../../godmode/massive/massive_edit_plugins.php:464
+msgid "Invalid plugin data"
+msgstr "Dato de plugin no válido"
+
+#: ../../godmode/massive/massive_edit_plugins.php:571
+msgid "Clear"
+msgstr "Vaciar"
+
+#: ../../godmode/massive/massive_edit_plugins.php:599
+msgid "Invalid macros array"
+msgstr "Matriz de macros no válida"
+
+#: ../../godmode/massive/massive_edit_plugins.php:624
+msgid "Multiple values"
+msgstr "Valores múltiples"
+
+#: ../../godmode/massive/massive_edit_plugins.php:656
+#: ../../godmode/massive/massive_edit_plugins.php:792
+#: ../../godmode/massive/massive_edit_plugins.php:808
+msgid "Invalid agents array"
+msgstr "Matriz de agentes no válida"
+
+#: ../../godmode/massive/massive_edit_plugins.php:672
+msgid "Invalid agent element"
+msgstr "Elemento de agente no válido"
+
+#: ../../godmode/massive/massive_edit_plugins.php:683
+msgid "Invalid modules array"
+msgstr "Matriz de módulos no válida"
+
+#: ../../godmode/massive/massive_edit_plugins.php:711
+msgid "Invalid module element"
+msgstr "Elemento de módulo no válido"
+
+#: ../../godmode/massive/massive_edit_plugins.php:920
+msgid "There are no modules using this plugin"
+msgstr "Ningún módulo está usando este plugin"
+
+#: ../../godmode/massive/massive_edit_plugins.php:1005
+msgid "There was a problem loading the module plugin macros data"
+msgstr ""
+"Surgió un problema al cargar los datos de las macros del módulo de plugin."
+
+#: ../../godmode/massive/massive_enable_disable_alerts.php:195
+msgid "Enabled alerts"
+msgstr "Alertas activadas"
+
+#: ../../godmode/massive/massive_enable_disable_alerts.php:224
+msgid "Disable selected alerts"
+msgstr "Desactivar alertas seleccionadas"
+
+#: ../../godmode/massive/massive_enable_disable_alerts.php:228
+msgid "Enable selected alerts"
+msgstr "Activar alertas seleccionadas"
+
+#: ../../godmode/massive/massive_enable_disable_alerts.php:230
+msgid "Disabled alerts"
+msgstr "Deshabilitar alertas"
+
+#: ../../godmode/massive/massive_edit_modules.php:137
+msgid "Error updating the modules from a module type"
+msgstr "Error al actualizar los módulos desde un tipo de módulos"
+
+#: ../../godmode/massive/massive_edit_modules.php:160
+msgid "Error updating the modules from an agent group"
+msgstr "Error al actualizar los módulos desde un grupo de agentes"
+
+#: ../../godmode/massive/massive_edit_modules.php:178
+msgid "Error updating the modules (maybe there was no field to update)"
+msgstr ""
+"Error al actualizar los módulos (puede que no hubiera ningún campo para "
+"actualizar)"
+
+#: ../../godmode/wizards/HostDevices.class.php:152
+msgid "Net Scan"
+msgstr "Net Scan"
+
+#: ../../godmode/wizards/HostDevices.class.php:172
+msgid "Custom NetScan"
+msgstr "NetScan personalizado"
+
+#: ../../godmode/wizards/HostDevices.class.php:180
+msgid "Manage NetScan scripts"
+msgstr "Administrar guiones de NetScan"
+
+#: ../../godmode/wizards/HostDevices.class.php:325
+#, php-format
+msgid "Invalid mimetype for csv file: %s"
+msgstr "Mimetype no válido para el archivo CSV: %s"
+
+#: ../../godmode/wizards/HostDevices.class.php:348
+#, php-format
+msgid "Invalid content readed from csv file: %s"
+msgstr "Lector de contenido del archivo CSV no válido: %s"
+
+#: ../../godmode/wizards/HostDevices.class.php:391
+msgid ""
+"This network scan task has been already defined. Please edit it or create a "
+"new one."
+msgstr ""
+"Esta tarea de escaneo de red ya ha sido definida, Edítela o cree una nueva."
+
+#: ../../godmode/wizards/HostDevices.class.php:433
+msgid "You must provide a valid network."
+msgstr "Añada una red válida."
+
+#: ../../godmode/wizards/HostDevices.class.php:700
+#, php-format
+msgid "\"%s\" features"
+msgstr "Funcionalidades \"%s\""
+
+#: ../../godmode/wizards/HostDevices.class.php:868
+msgid "Use CSV file definition"
+msgstr "Usar definición del archivo CSV"
+
+#: ../../godmode/wizards/HostDevices.class.php:869
+msgid "Define targets using csv o network definition."
+msgstr "Definir objetivos utilizando la definición de CSV o red."
+
+#: ../../godmode/wizards/HostDevices.class.php:887
+msgid "Networks (csv)"
+msgstr "Redes (CSV)"
+
+#: ../../godmode/wizards/HostDevices.class.php:888
+msgid ""
+"You can upload a CSV file. Each line must contain a network in IP/MASK format. "
+"For instance: 192.168.1.1/32"
+msgstr ""
+"Puede subir un archivo CSV. Cada línea debe contener una red en formato IP/"
+"MASK. Por ejemplo: 192.168.1.1/32"
+
+#: ../../godmode/wizards/HostDevices.class.php:900
+msgid "Networks (current)"
+msgstr "Redes (actual)"
+
+#: ../../godmode/wizards/HostDevices.class.php:901
+msgid "Please upload a new file to overwrite this content."
+msgstr "Sube un nuevo archivo para sobrescribir este contenido."
+
+#: ../../godmode/wizards/HostDevices.class.php:917
+msgid ""
+"You can specify several networks, separated by commas, for example: "
+"192.168.50.0/24,192.168.60.0/24"
+msgstr ""
+"Puedes especificar varias redes, separadas por comas, por ejemplo: "
+"192.168.50.0/24,192.168.60.0/24"
+
+#: ../../godmode/wizards/HostDevices.class.php:1047
+msgid "Filter by opened ports"
+msgstr "Filtrar por puertos abiertos"
+
+#: ../../godmode/wizards/HostDevices.class.php:1049
+msgid ""
+"Targets will be scanned if at least one of defined ports (comma separated) is "
+"open."
+msgstr ""
+"Los objetivos se escanearán si al menos uno de los puertos definidos "
+"(separados por comas) está abierto."
+
+#: ../../godmode/wizards/HostDevices.class.php:1062
+msgid "Auto discover known hardware"
+msgstr "Auto descubrir el hardware conocido"
+
+#: ../../godmode/wizards/HostDevices.class.php:1064
+msgid ""
+"Targets will be monitorized based on its <i>Private Enterprise Number</i>. "
+"Requires SNMP."
+msgstr ""
+"Los objetivos se monitorizarán en base a su <i>Número de empresa privado</i>. "
+"Precisa de SNMP."
+
+#: ../../godmode/wizards/HostDevices.class.php:1079
+msgid "Module <i>Host Alive</i> will be added to discovered agents by default."
+msgstr ""
+"El módulo <i>Host Alive</i> se añadirá a los agentes descubiertos por defecto."
+
+#: ../../godmode/wizards/HostDevices.class.php:1127
+#, php-format
+msgid ""
+"Configured networks could generate %d agents, your license only allows %d, "
+"'review results' is mandatory."
+msgstr ""
+"Las redes configuradas pueden generar %d agentes, su licencia solo permite %d, "
+"'revisar resultados' es obligatorio."
+
+#: ../../godmode/wizards/HostDevices.class.php:1135
+#: ../../godmode/wizards/DiscoveryTaskList.class.php:908
+msgid "Review results"
+msgstr "Revisar resultados"
+
+#: ../../godmode/wizards/HostDevices.class.php:1137
+msgid "Targets must be validated by user before create agents."
+msgstr "El usuario debe validar los objetivos antes de crear agentes"
+
+#: ../../godmode/wizards/HostDevices.class.php:1163
+msgid "Apply autoconfiguration rules"
+msgstr "Aplicar normas de autoconfiguración"
+
+#: ../../godmode/wizards/HostDevices.class.php:1165
+msgid ""
+"System is able to auto configure detected host & devices by applying your "
+"defined configuration rules."
+msgstr ""
+"El sistema puede auto configurar el host y los dispositivos detectados "
+"aplicando las normas de configuración."
+
+#: ../../godmode/wizards/HostDevices.class.php:1181
+msgid "SNMP enabled"
+msgstr "SNMP activado"
+
+#: ../../godmode/wizards/HostDevices.class.php:1223
+msgid "SNMP communities to try with"
+msgstr "Comunidades SNMP con las que probar"
+
+#: ../../godmode/wizards/HostDevices.class.php:1225
+msgid ""
+"You can specify several values, separated by commas, for example: public,"
+"mysecret,1234"
+msgstr ""
+"Puede especificar varios valores, separados por coma, por ejemplo: public,"
+"mysecret,1234"
+
+#: ../../godmode/wizards/HostDevices.class.php:1353
+msgid "OS detection"
+msgstr "Detección de SO"
+
+#: ../../godmode/wizards/HostDevices.class.php:1365
+msgid "Name resolution"
+msgstr "Resolución de nombres"
+
+#: ../../godmode/wizards/HostDevices.class.php:1376
+msgid "Parent detection"
+msgstr "Detección de padres"
+
+#: ../../godmode/wizards/HostDevices.class.php:1387
+msgid "Parent recursion"
+msgstr "Recursión del padre"
+
+#: ../../godmode/wizards/HostDevices.class.php:1398
+msgid "VLAN enabled"
+msgstr "VLAN habilitada"
+
+#: ../../godmode/wizards/HostDevices.class.php:1409
+msgid "WMI enabled"
+msgstr "WMI habilitado"
+
+#: ../../godmode/wizards/DiscoveryTaskList.class.php:254
+msgid "Task successfully deleted"
+msgstr "Tarea eliminada"
+
+#: ../../godmode/wizards/DiscoveryTaskList.class.php:361
+#: ../../godmode/wizards/DiscoveryTaskList.class.php:488
+msgid "Task successfully enabled"
+msgstr "Tarea habilitada correctamente"
+
+#: ../../godmode/wizards/DiscoveryTaskList.class.php:361
+msgid "Task succesfully disabled"
+msgstr "Tarea deshabilitada con éxito"
+
+#: ../../godmode/wizards/DiscoveryTaskList.class.php:401
+msgid "Console Task successfully deleted"
+msgstr "Tarea de la consola eliminada"
+
+#: ../../godmode/wizards/DiscoveryTaskList.class.php:443
+msgid "Task successfully disabled"
+msgstr "Tarea deshabilitada correctamente"
+
+#: ../../godmode/wizards/DiscoveryTaskList.class.php:520
+msgid "Discovery Server is disabled"
+msgstr "El servidor discovery está deshabilitado"
+
+#: ../../godmode/wizards/DiscoveryTaskList.class.php:603
+msgid "Task type"
+msgstr "Tipo de tarea"
+
+#: ../../godmode/wizards/DiscoveryTaskList.class.php:682
+msgid "This task has not been completely defined, please edit it"
+msgstr "La tarea no se ha definido por completo, edítela."
+
+#: ../../godmode/wizards/DiscoveryTaskList.class.php:732
+msgid "Discovery Cloud Azure Compute"
+msgstr "Discovery Cloud Azure Compute"
+
+#: ../../godmode/wizards/DiscoveryTaskList.class.php:736
+msgid "Cloud.Azure.Compute"
+msgstr "Cloud.Azure.Compute"
+
+#: ../../godmode/wizards/DiscoveryTaskList.class.php:745
+msgid "Discovery Cloud AWS EC2"
+msgstr "Discovery Cloud AWS EC2"
+
+#: ../../godmode/wizards/DiscoveryTaskList.class.php:749
+msgid "Cloud.AWS.EC2"
+msgstr "Cloud.AWS.EC2"
+
+#: ../../godmode/wizards/DiscoveryTaskList.class.php:758
+msgid "Discovery Cloud RDS"
+msgstr "Discovery Cloud RDS"
+
+#: ../../godmode/wizards/DiscoveryTaskList.class.php:762
+msgid "Discovery.Cloud.Aws.RDS"
+msgstr "Discovery.Cloud.Aws.RDS"
+
+#: ../../godmode/wizards/DiscoveryTaskList.class.php:771
+msgid "Discovery Cloud S3"
+msgstr "Discovery Cloud S3"
+
+#: ../../godmode/wizards/DiscoveryTaskList.class.php:775
+msgid "Discovery.Cloud.Aws.S3"
+msgstr "Discovery.Cloud.Aws.S3"
+
+#: ../../godmode/wizards/DiscoveryTaskList.class.php:784
+msgid "Discovery Applications MySQL"
+msgstr "Aplicaciones MySQL de Discovery"
+
+#: ../../godmode/wizards/DiscoveryTaskList.class.php:788
+msgid "Discovery.App.MySQL"
+msgstr "Discovery.App.MySQL"
+
+#: ../../godmode/wizards/DiscoveryTaskList.class.php:797
+msgid "Discovery Applications Oracle"
+msgstr "Aplicaciones de Discovery de Oracle"
+
+#: ../../godmode/wizards/DiscoveryTaskList.class.php:801
+msgid "Discovery.App.Oracle"
+msgstr "Discovery.App.Oracle"
+
+#: ../../godmode/wizards/DiscoveryTaskList.class.php:810
+msgid "Discovery Applications DB2"
+msgstr "Aplicaciones DB2 de discovery"
+
+#: ../../godmode/wizards/DiscoveryTaskList.class.php:814
+msgid "Discovery.App.DB2"
+msgstr "Discovery.App.DB2"
+
+#: ../../godmode/wizards/DiscoveryTaskList.class.php:825
+msgid "Discovery.Agent.Deployment"
+msgstr "Discovery.Agent.Deployment"
+
+#: ../../godmode/wizards/DiscoveryTaskList.class.php:833
+msgid "Discovery Applications Microsoft SQL Server"
+msgstr "Servidor Microsoft SQL de aplicaciones Discovery"
+
+#: ../../godmode/wizards/DiscoveryTaskList.class.php:835
+msgid "Discovery.App.Microsoft SQL Server"
+msgstr "Discovery.App.Microsoft SQL Server"
+
+#: ../../godmode/wizards/DiscoveryTaskList.class.php:846
+msgid "Discovery NetScan"
+msgstr "Discovery NetScan"
+
+#: ../../godmode/wizards/DiscoveryTaskList.class.php:850
+msgid "Discovery.NetScan"
+msgstr "Discovery.NetScan"
+
+#: ../../godmode/wizards/DiscoveryTaskList.class.php:896
+msgid "Not executed yet"
+msgstr "Aún no ejecutado"
+
+#: ../../godmode/wizards/DiscoveryTaskList.class.php:920
+msgid "View summary"
+msgstr "Ver el resumen"
+
+#: ../../godmode/wizards/DiscoveryTaskList.class.php:941
+msgid "View map"
+msgstr "Ver el mapa"
+
+#: ../../godmode/wizards/DiscoveryTaskList.class.php:965
+#: ../../godmode/wizards/DiscoveryTaskList.class.php:991
+msgid "Edit task"
+msgstr "Editar tarea"
+
+#: ../../godmode/wizards/DiscoveryTaskList.class.php:975
+#: ../../godmode/wizards/DiscoveryTaskList.class.php:1001
+msgid "Delete task"
+msgstr "Eliminar tarea"
+
+#: ../../godmode/wizards/DiscoveryTaskList.class.php:1014
+msgid "enable task"
+msgstr "habilitar tarea"
+
+#: ../../godmode/wizards/DiscoveryTaskList.class.php:1043
+msgid "has no discovery tasks assigned"
+msgstr "No tiene tareas de discovery asignadas"
+
+#: ../../godmode/wizards/DiscoveryTaskList.class.php:1050
+msgid "Server Tasks"
+msgstr "Tareas de servidor"
+
+#: ../../godmode/wizards/DiscoveryTaskList.class.php:1197
+msgid "Overall Progress"
+msgstr "Progreso total"
+
+#: ../../godmode/wizards/DiscoveryTaskList.class.php:1216
+msgid "Scanning network"
+msgstr "Escaneando red"
+
+#: ../../godmode/wizards/DiscoveryTaskList.class.php:1220
+msgid "Checking"
+msgstr "Comprobando"
+
+#: ../../godmode/wizards/DiscoveryTaskList.class.php:1224
+msgid "Finding AFT connectivity"
+msgstr "Buscando conexión AFT"
+
+#: ../../godmode/wizards/DiscoveryTaskList.class.php:1228
+msgid "Finding traceroute connectivity"
+msgstr "Buscando conexión traceroute"
+
+#: ../../godmode/wizards/DiscoveryTaskList.class.php:1232
+msgid "Finding gateway connectivity"
+msgstr "Buscando conexión de entrada"
+
+#: ../../godmode/wizards/DiscoveryTaskList.class.php:1236
+msgid "Searching for devices..."
+msgstr "Buscando dispositivos..."
+
+#: ../../godmode/wizards/DiscoveryTaskList.class.php:1240
+msgid "Analyzing application..."
+msgstr "Analizando aplicación..."
+
+#: ../../godmode/wizards/DiscoveryTaskList.class.php:1244
+msgid "Executing custom queries..."
+msgstr "Ejecutando consultas personalizadas..."
+
+#: ../../godmode/wizards/DiscoveryTaskList.class.php:1248
+msgid "Testing modules..."
+msgstr "Probando módulos..."
+
+#: ../../godmode/wizards/DiscoveryTaskList.class.php:1252
+msgid "Processing results..."
+msgstr "Procesando resultados..."
+
+#: ../../godmode/wizards/DiscoveryTaskList.class.php:1256
+msgid "Processing..."
+msgstr "Procesando…"
+
+#: ../../godmode/wizards/DiscoveryTaskList.class.php:1369
+msgid "Host&devices total"
+msgstr "Total Host&devices"
+
+#: ../../godmode/wizards/DiscoveryTaskList.class.php:1374
+msgid "Agents monitored"
+msgstr "Agentes monitorizados"
+
+#: ../../godmode/wizards/DiscoveryTaskList.class.php:1379
+msgid "Agents pending"
+msgstr "Agentes pendientes"
+
+#: ../../godmode/wizards/DiscoveryTaskList.class.php:1386
+msgid "Hosts discovered"
+msgstr "Hosts encontrados"
+
+#: ../../godmode/wizards/DiscoveryTaskList.class.php:1402
+msgid "Responding SNMP"
+msgstr "SNMP disponible"
+
+#: ../../godmode/wizards/DiscoveryTaskList.class.php:1407
+msgid "Responding WMI"
+msgstr "WMI disponible"
+
+#: ../../godmode/wizards/DiscoveryTaskList.class.php:1452
+msgid "Task completed."
+msgstr "Tarea finalizada."
+
+#: ../../godmode/wizards/DiscoveryTaskList.class.php:1454
+msgid "This task has never executed"
+msgstr "Esta tarea nunca se ha ejecutado"
+
+#: ../../godmode/wizards/DiscoveryTaskList.class.php:1466
+msgid "Task queued, please wait."
+msgstr "Tarea encolada, espere."
+
+#: ../../godmode/wizards/DiscoveryTaskList.class.php:1510
+msgid ""
+"Please ensure instances or regions are being monitorized and 'scan and general "
+"monitoring' is enabled."
+msgstr ""
+"Asegúrese de que las instancias o las regiones están siendo monitorizadas y "
+"'escaneo y monitorización general' está habilitado."
+
+#: ../../godmode/wizards/DiscoveryTaskList.class.php:1528
+#: ../../godmode/wizards/DiscoveryTaskList.class.php:1670
+msgid "Invalid task"
+msgstr "Tarea no válida"
+
+#: ../../godmode/wizards/DiscoveryTaskList.class.php:1627
+msgid "Please select devices to be monitored"
+msgstr "Seleccione los dispositivos que desee monitorizar"
+
+#: ../../godmode/wizards/DiscoveryTaskList.class.php:1630
+msgid "select all"
+msgstr "seleccionar todo"
+
+#: ../../godmode/wizards/DiscoveryTaskList.class.php:1633
+msgid "deselect all"
+msgstr "deseleccionar todo"
+
+#: ../../godmode/wizards/DiscoveryTaskList.class.php:1636
+msgid "expand all"
+msgstr "expandir todo"
+
+#: ../../godmode/wizards/DiscoveryTaskList.class.php:1639
+msgid "collapse all"
+msgstr "plegar todo"
+
+#: ../../godmode/wizards/DiscoveryTaskList.class.php:1653
+msgid "No devices found in temporary resources, please re-launch."
+msgstr ""
+"No se han encontrado dispositivos en los recursos temporales, por favor vuelva "
+"a lanzarlo."
+
+#: ../../godmode/wizards/DiscoveryTaskList.class.php:1720
+#, php-format
+msgid "Your selection exceeds the agents available on your license. Limit %d"
+msgstr ""
+"La selección excede el número de agentes disponibles en la licencia. Límite %d"
+
+#: ../../godmode/wizards/DiscoveryTaskList.class.php:1744
+#: ../../godmode/wizards/DiscoveryTaskList.class.php:1763
+msgid "Removed"
+msgstr "Eliminado"
+
+#: ../../godmode/wizards/DiscoveryTaskList.class.php:1800
+msgid "No changes. Re-Scheduled"
+msgstr "No hay cambios. Reprogramado"
+
+#: ../../godmode/wizards/DiscoveryTaskList.class.php:1802
+msgid "Scheduled for creation"
+msgstr "Programa de creación"
+
+#: ../../godmode/wizards/DiscoveryTaskList.class.php:1829
+msgid "Cancelled"
+msgstr "Cancelado"
+
+#: ../../godmode/wizards/DiscoveryTaskList.class.php:1830
+msgid "Server has been restarted while executing this task, please retry."
+msgstr ""
+"El servidor se ha reiniciado mientras ejecutaba esta tarea, vuelva a "
+"intentarlo."
+
+#: ../../godmode/wizards/DiscoveryTaskList.class.php:1841
+#: ../../godmode/wizards/DiscoveryTaskList.class.php:1858
+msgid "Not started"
+msgstr "No iniciado"
+
+#: ../../godmode/wizards/DiscoveryTaskList.class.php:1863
+msgid "Searching"
+msgstr "Buscando"
+
+#: ../../godmode/agentes/module_manager_editor_web.php:155
+msgid "Debug remotely this module"
+msgstr "Depurar este módulo en remoto"
+
+#: ../../godmode/agentes/module_manager_editor_web.php:158
+msgid "Debug this module once it has been initialized"
+msgstr "Depurar este módulo una vez iniciado"
+
+#: ../../godmode/agentes/module_manager_editor_web.php:205
+msgid "Requests"
+msgstr "Peticiones"
+
+#: ../../godmode/agentes/module_manager_editor_web.php:208
+msgid "Agent browser id"
+msgstr "ID del navegador (Agent Browser)"
+
+#: ../../godmode/agentes/module_manager_editor_web.php:214
+msgid "HTTP auth (login)"
+msgstr "Autentificación HTTP (inicio de sesión)"
+
+#: ../../godmode/agentes/module_manager_editor_web.php:217
+msgid "HTTP auth (password)"
+msgstr "Autentificación HTTP (contraseña)"
+
+#: ../../godmode/agentes/module_manager_editor_web.php:231
+msgid "Proxy auth (login)"
+msgstr "Autentificación Proxy (inicio de sesión)"
+
+#: ../../godmode/agentes/module_manager_editor_web.php:235
+msgid "Proxy auth (pass)"
+msgstr "Autentificación proxy (contraseña)"
+
+#: ../../godmode/agentes/module_manager_editor_web.php:242
+msgid "Proxy auth (server)"
+msgstr "Autentificación proxy (servidor)"
+
+#: ../../godmode/agentes/module_manager_editor_web.php:246
+msgid "Proxy auth (realm)"
+msgstr "Autentificación proxy (área)"
+
+#: ../../godmode/agentes/module_manager_editor_web.php:258
+msgid "There isn't get or post"
+msgstr "No se puede obtener o publicar."
+
+#: ../../godmode/agentes/module_manager_editor_wmi.php:87
+msgid "Optional. WMI namespace. If unsure leave blank."
+msgstr "Opcional. Campo de nombre WMI. Ante la duda, dejar en blanco."
+
+#: ../../godmode/agentes/module_manager_editor_wmi.php:151
+msgid ""
+"Optional. Substring to look for in the WQL query result. The module returns 1 "
+"if found, 0 if not."
+msgstr ""
+"Opcional. Subcadena para buscar en los resultados de la consulta WQL. El "
+"módulo devuelve 1 si se ha encontrado algún resultado, 0 en caso contrario."
+
+#: ../../godmode/agentes/module_manager_editor_wmi.php:164
+msgid "Column number to retrieve from the WQL query result (starting from zero)."
+msgstr ""
+"Número de columna a obtener del resultado de la consulta WQL (a partir de 0)."
+
+#: ../../godmode/agentes/module_manager_editor_prediction.php:110
+msgid "Source module"
+msgstr "Módulo origen"
+
+#: ../../godmode/agentes/module_manager_editor_prediction.php:148
+#: ../../godmode/agentes/module_manager_editor_prediction.php:169
+msgid "Select Module"
+msgstr "Seleccionar módulo"
+
+#: ../../godmode/agentes/module_manager_editor_prediction.php:195
+msgid "Calculation type"
+msgstr "Tipo de cálculo"
+
+#: ../../godmode/agentes/module_manager_editor_prediction.php:203
+msgid "Estimated absolute value"
+msgstr "Valor absoluto estimado"
+
+#: ../../godmode/agentes/module_manager_editor_prediction.php:204
+msgid "Calculation of days to reach limit"
+msgstr "Cálculo de días para alcanzar el límite"
+
+#: ../../godmode/agentes/module_manager_editor_prediction.php:213
+msgid "Future estimation"
+msgstr "Estimación futura"
+
+#: ../../godmode/agentes/module_manager_editor_prediction.php:228
+msgid "Limit value"
+msgstr "Valor límite"
+
+#: ../../godmode/agentes/module_manager.php:130
+msgid "Create a new data server module"
+msgstr "Crear un nuevo módulo de servidor de datos"
+
+#: ../../godmode/agentes/module_manager.php:132
+msgid "Create a new network server module"
+msgstr "Crear un nuevo módulo de servidor de red"
+
+#: ../../godmode/agentes/module_manager.php:136
+msgid "Create a new plugin server module"
+msgstr "Crear un nuevo módulo de servidor de complementos"
+
+#: ../../godmode/agentes/module_manager.php:140
+msgid "Create a new WMI server module"
+msgstr "Crear un nuevo módulo de servidor WMI"
+
+#: ../../godmode/agentes/module_manager.php:144
+msgid "Create a new prediction server module"
+msgstr "Crear un nuevo módulo de servidor de predicción"
+
+#: ../../godmode/agentes/module_manager.php:148
+msgid "Create a new web Server module"
+msgstr "Crear un nuevo módulo de servidor web"
+
+#: ../../godmode/agentes/module_manager.php:211
+msgid "<p>Type</p>"
+msgstr "<p>Tipo</p>"
+
+#: ../../godmode/agentes/module_manager.php:241
+msgid "Get more modules on Monitoring Library"
+msgstr "Añadir más módulos de la Librería de módulos"
+
+#: ../../godmode/agentes/module_manager.php:280
+msgid "There was a problem completing the operation"
+msgstr "Hubo un problema al completar la operación"
+
+#: ../../godmode/agentes/module_manager.php:437
+#: ../../godmode/agentes/module_manager.php:478
+#, php-format
+msgid "There was a problem completing the operation. Applied to 0/%d modules."
+msgstr ""
+"Ha habido un problema al completar la operación. Aplicado a los módulos 0/%d."
+
+#: ../../godmode/agentes/module_manager.php:443
+#: ../../godmode/agentes/module_manager.php:484
+msgid "Operation finished successfully."
+msgstr "Operación concluida correctamente."
+
+#: ../../godmode/agentes/module_manager.php:447
+#: ../../godmode/agentes/module_manager.php:488
+#, php-format
+msgid "There was a problem completing the operation. Applied to %d/%d modules."
+msgstr ""
+"Ha habido un problema al completar la operación. Aplicado a los módulos %d/%d."
+
+#: ../../godmode/agentes/module_manager.php:868
+msgid "Del."
+msgstr "Del."
+
+#: ../../godmode/agentes/module_manager.php:1180
+msgid "Normalize"
+msgstr "Normalizar"
+
+#: ../../godmode/agentes/module_manager.php:1190
+msgid "Normalize (Disabled)"
+msgstr "Normalizar (deshabilitado)"
+
+#: ../../godmode/agentes/module_manager.php:1214
+msgid "Create network component (Disabled)"
+msgstr "Crear componentes de red (desactivado)"
+
+#: ../../godmode/agentes/module_manager.php:1274
+msgid "Execute action"
+msgstr "Ejecutar acción"
+
+#: ../../godmode/agentes/configure_field.php:41
+msgid "Update agent custom field"
+msgstr "Actualizar campo personalizado del agente"
+
+#: ../../godmode/agentes/configure_field.php:43
+msgid "Create agent custom field"
+msgstr "Crear campo personalizado"
+
+#: ../../godmode/agentes/configure_field.php:55
+#: ../../godmode/agentes/configure_field.php:59
+#: ../../godmode/agentes/configure_field.php:63
+#: ../../godmode/agentes/configure_field.php:67
+msgid "Agent Custom Fields Information"
+msgstr "Información de los campos de personalización de agentes"
+
+#: ../../godmode/agentes/configure_field.php:56
+msgid ""
+"You cannot set the Password type until you clear the combo values and click on "
+"update button."
+msgstr ""
+"No puede establecer el tipo de contraseña hasta que elimine los valores del "
+"combo y pinche en el botón actualizar."
+
+#: ../../godmode/agentes/configure_field.php:60
+msgid ""
+"You cannot unset the enable combo until you clear the combo values and click "
+"on update."
+msgstr ""
+"No puede desactivar el combo habilitado hasta que elimine los valores del "
+"combo y pinche en actualizar."
+
+#: ../../godmode/agentes/configure_field.php:64
+msgid "If you select Enabled combo the Password type will be disabled."
+msgstr ""
+"Si selecciona el combo Habilitado, se deshabilitará el tipo de contraseña."
+
+#: ../../godmode/agentes/configure_field.php:68
+msgid "If you select Passord type the Enabled combo will be disabled."
+msgstr ""
+"Si selecciona el tipo de Contraseña el combo Habliitado se deshabilitará."
+
+#: ../../godmode/agentes/configure_field.php:84
+msgid "Pass type"
+msgstr "Tipo de contraseña"
+
+#: ../../godmode/agentes/configure_field.php:85
+msgid ""
+"The fields with pass type enabled will be displayed like html input type pass "
+"in html"
+msgstr ""
+"Los campos con el tipo de contraseña habilitado se mostrarán con asteriscos en "
+"HTML."
+
+#: ../../godmode/agentes/configure_field.php:106
+msgid "Enabled combo"
+msgstr "Combo habilitado"
+
+#: ../../godmode/agentes/configure_field.php:118
+msgid "Combo values"
+msgstr "Valores de combo"
+
+#: ../../godmode/agentes/configure_field.php:119
+msgid "Set values separated by comma"
+msgstr "Establecer valores separados por coma"
+
+#: ../../godmode/agentes/module_manager_editor_common.php:108
+msgid "Using module component"
+msgstr "Utilizar módulo de librería"
+
+#: ../../godmode/agentes/module_manager_editor_common.php:413
+msgid "Warning threshold"
+msgstr "Umbral de advertencia"
+
+#: ../../godmode/agentes/module_manager_editor_common.php:415
+#: ../../godmode/agentes/module_manager_editor_common.php:476
+msgid "Min. "
+msgstr "Min. "
+
+#: ../../godmode/agentes/module_manager_editor_common.php:474
+msgid "Critical threshold"
+msgstr "Umbral crítico"
+
+#: ../../godmode/agentes/module_manager_editor_common.php:673
+msgid "Dynamic Threshold Interval"
+msgstr "Intervalo de rango dinámico"
+
+#: ../../godmode/agentes/module_manager_editor_common.php:700
+msgid "Dynamic Threshold Min. "
+msgstr "Rango dinámico mínimo "
+
+#: ../../godmode/agentes/module_manager_editor_common.php:713
+msgid "Dynamic Threshold Max. "
+msgstr "Rango dinámico máximo "
+
+#: ../../godmode/agentes/module_manager_editor_common.php:726
+msgid "Dynamic Threshold Two Tailed: "
+msgstr "Rango dinámico dos fallido: "
+
+#: ../../godmode/agentes/module_manager_editor_common.php:737
+msgid "Not needed"
+msgstr "No necesario"
+
+#: ../../godmode/agentes/module_manager_editor_common.php:1035
+msgid "Tags from policy"
+msgstr "Etiquetas desde política"
+
+#: ../../godmode/agentes/module_manager_editor_common.php:1075
+msgid "Cascade Protection Services"
+msgstr "Servicios de protección en cascada"
+
+#: ../../godmode/agentes/module_manager_editor_common.php:1109
+#: ../../godmode/agentes/module_manager_editor_common.php:1117
+#: ../../godmode/agentes/module_manager_editor_common.php:1126
+msgid "Cron from"
+msgstr "Cron desde"
+
+#: ../../godmode/agentes/module_manager_editor_common.php:1113
+#: ../../godmode/agentes/module_manager_editor_common.php:1121
+#: ../../godmode/agentes/module_manager_editor_common.php:1130
+msgid "Cron to"
+msgstr "Cron hasta"
+
+#: ../../godmode/agentes/module_manager_editor_common.php:1166
+msgid "Module parent"
+msgstr "Padre del módulo"
+
+#: ../../godmode/agentes/module_manager_editor_common.php:1264
+#: ../../godmode/agentes/module_manager_editor_common.php:1375
+msgid "Direct"
+msgstr "Directo"
+
+#: ../../godmode/agentes/module_manager_editor_common.php:1266
+msgid "Rel. type"
+msgstr "Rel. tipo"
+
+#: ../../godmode/agentes/module_manager_editor_common.php:1281
+msgid "Add relationship"
+msgstr "Añadir relación"
+
+#: ../../godmode/agentes/module_manager_editor_common.php:1306
+msgid "Changes"
+msgstr "Cambios"
+
+#: ../../godmode/agentes/status_monitor_custom_fields.php:125
+msgid "Show monitor detail fields"
+msgstr "Mostrar campo de detalle de monitor"
+
+#: ../../godmode/agentes/configurar_agente.php:243
+#: ../../godmode/agentes/configurar_agente.php:1040
+msgid "No agent alias specified"
+msgstr "No se ha especificado el alias del agente"
+
+#: ../../godmode/agentes/configurar_agente.php:246
+msgid "Agent cannot be created due to the maximum agent limit for this group"
+msgstr ""
+"El agente no puede crearse por el límite de máximo número de agentes de este "
+"grupo"
+
+#: ../../godmode/agentes/configurar_agente.php:352
+msgid "Could not be created, because name already exists"
+msgstr "No se pudo crear, el nombre ya existe."
+
+#: ../../godmode/agentes/configurar_agente.php:354
+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:744
+msgid "Gis"
+msgstr "GIS"
+
+#: ../../godmode/agentes/configurar_agente.php:786
+msgid "SNMP explorer"
+msgstr "Explorador SNMP"
+
+#: ../../godmode/agentes/configurar_agente.php:827
+msgid "Agent manager"
+msgstr "Administrador de agente"
+
+#: ../../godmode/agentes/configurar_agente.php:912
+#: ../../godmode/agentes/configurar_agente.php:916
+msgid "No data to normalize"
+msgstr "No hay datos para normalizar"
+
+#: ../../godmode/agentes/configurar_agente.php:921
+#, php-format
+msgid "Deleted data above %f"
+msgstr "Eliminar datos por encima de %f"
+
+#: ../../godmode/agentes/configurar_agente.php:922
+#, php-format
+msgid "Error normalizing module %s"
+msgstr "Error al normalizar el módulo %s"
+
+#: ../../godmode/agentes/configurar_agente.php:1050
+#, php-format
+msgid "The group id %d is incorrect."
+msgstr "El grupo id %d es incorrecto."
+
+#: ../../godmode/agentes/configurar_agente.php:1052
+msgid "Agent cannot be updated due to the maximum agent limit for this group"
+msgstr ""
+"El agente no se puede actualizar por el límite máximo de agentes de este grupo"
+
+#: ../../godmode/agentes/configurar_agente.php:1054
+msgid "Duplicate main IP address"
+msgstr "Duplicar la dirección IP principal"
+
+#: ../../godmode/agentes/configurar_agente.php:1106
+msgid "There was a problem updating the agent"
+msgstr "Hubo un problema al actualizar el agente"
+
+#: ../../godmode/agentes/configurar_agente.php:1199
+msgid "There was a problem loading the agent"
+msgstr "Hubo un problema al cargar el agente"
+
+#: ../../godmode/agentes/configurar_agente.php:1709
+msgid ""
+"There was a problem updating module. Another module already exists with the "
+"same name."
+msgstr ""
+"Hubo un problema al actualizar el módulo. Ya existe otro módulo con el mismo "
+"nombre."
+
+#: ../../godmode/agentes/configurar_agente.php:1713
+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:1717
+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:1723
+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:1752
+msgid "Module successfully updated"
+msgstr "Módulo actualizado correctamente"
+
+#: ../../godmode/agentes/configurar_agente.php:1899
+msgid ""
+"There was a problem adding module. Another module already exists with the same "
+"name."
+msgstr ""
+"Hubo un problema al añadir el módulo. Ya existe otro módulo con el mismo "
+"nombre."
+
+#: ../../godmode/agentes/configurar_agente.php:1903
+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:1909
+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:2089
+msgid "There was a problem deleting the module"
+msgstr "Hubo un problema al borrar el módulo"
+
+#: ../../godmode/agentes/configurar_agente.php:2093
+msgid "Module deleted succesfully"
+msgstr "Módulo borrado correctamente"
+
+#: ../../godmode/agentes/configurar_agente.php:2339
+#: ../../godmode/agentes/configurar_agente.php:2351
+msgid "Invalid tab specified"
+msgstr "La pestaña no es válida"
+
+#: ../../godmode/agentes/agent_manager.php:241
+msgid "Delete agent"
+msgstr "Borrar agente"
+
+#: ../../godmode/agentes/agent_manager.php:272
+msgid "QR Code Agent view"
+msgstr "Código QR de la vista de agente"
+
+#: ../../godmode/agentes/agent_manager.php:293
+msgid "Use alias as name"
+msgstr "Usar el alias como nombre"
+
+#: ../../godmode/agentes/agent_manager.php:335
+msgid "Primary group"
+msgstr "Grupo primario"
+
+#: ../../godmode/agentes/agent_manager.php:520
+msgid "Cascade protection services"
+msgstr "Servicios de protección en cascada"
+
+#: ../../godmode/agentes/agent_manager.php:609
+msgid "Disabled mode"
+msgstr "Modo deshabilitado"
+
+#: ../../godmode/agentes/agent_manager.php:706
+msgid "Update new GIS data:"
+msgstr "Actualizar nuevos datos GIS:"
+
+#: ../../godmode/agentes/agent_manager.php:764
+msgid "Click to display"
+msgstr "Pinche para visualizar"
+
+#: ../../godmode/agentes/agent_manager.php:1016
+msgid "Secondary group cannot be primary too."
+msgstr "Un grupo secundario no puede ser también primario."
+
+#: ../../godmode/agentes/planned_downtime.export_csv.php:202
+#: ../../godmode/agentes/planned_downtime.list.php:574
+msgid "No scheduled downtime"
+msgstr "No hay paradas planificadas"
+
+#: ../../godmode/agentes/module_manager_editor.php:718
+msgid "Invalid module type"
+msgstr "Tipo de módulo no válido"
+
+#: ../../godmode/agentes/module_manager_editor.php:762
+msgid "Module relations"
+msgstr "Relaciones entre módulos"
+
+#: ../../godmode/agentes/module_manager_editor.php:852
+msgid "No module to predict"
+msgstr "No existe ningún módulo para predecir."
+
+#: ../../godmode/agentes/module_manager_editor.php:862
+msgid "No plug-in provided"
+msgstr "Plugin no proporcionado"
+
+#: ../../godmode/agentes/module_manager_editor.php:872
+msgid "No server provided"
+msgstr "Ningún servidor especificado"
+
+#: ../../godmode/agentes/module_manager_editor.php:903
+msgid ""
+"Error, The field name and name in module_name in data configuration are "
+"different."
+msgstr ""
+"Error, el nombre del campo y el nombre de module_name en los datos de "
+"configuración son diferentes."
+
+#: ../../godmode/agentes/module_manager_editor.php:941
+msgid "The File APIs are not fully supported in this browser."
+msgstr "Las API de archivos no son totalmente compatibles con este navegador."
+
+#: ../../godmode/agentes/module_manager_editor.php:942
+msgid "Couldn`t find the fileinput element."
+msgstr "Elemento de archivo de entrada no encontrado"
+
+#: ../../godmode/agentes/module_manager_editor.php:943
+msgid "This browser doesn`t seem to support the files property of file inputs."
+msgstr ""
+"Este navegador parece no ser compatible con los archivos pertenecientes al "
+"archivo de entrada."
+
+#: ../../godmode/agentes/module_manager_editor.php:944
+msgid "Please select a file before clicking Load"
+msgstr "Seleccione un archivo antes de hacer clic en Cargar"
+
+#: ../../godmode/agentes/planned_downtime.editor.php:208
+#: ../../godmode/agentes/planned_downtime.editor.php:1123
+#: ../../godmode/agentes/planned_downtime.editor.php:1258
+msgid "This elements cannot be modified while the downtime is being executed"
+msgstr ""
+"Estos elementos no se pueden modificar mientras se está ejecutando el tiempo "
+"de inactividad."
+
+#: ../../godmode/agentes/planned_downtime.editor.php:583
+msgid "Quiet: Modules will not generate events or fire alerts."
+msgstr "Modo silencioso: los módulos no generarán eventos ni dispararán alertas."
+
+#: ../../godmode/agentes/planned_downtime.editor.php:583
+msgid "Disable Agents: Disables the selected agents."
+msgstr "Deshabilitar agentes: deshabilita los agentes seleccionados"
+
+#: ../../godmode/agentes/planned_downtime.editor.php:583
+msgid "Disable Alerts: Disable alerts for the selected agents."
+msgstr ""
+"Deshabilitar alertas: deshabilita las alertas de los agentes seleccionados"
+
+#: ../../godmode/agentes/planned_downtime.editor.php:589
+#: ../../godmode/agentes/planned_downtime.list.php:656
+msgid "Disabled Agents"
+msgstr "Agentes desactivados"
+
+#: ../../godmode/agentes/planned_downtime.editor.php:590
+#: ../../godmode/agentes/planned_downtime.list.php:657
+msgid "Disabled only Alerts"
+msgstr "Deshabilitar solo las alertas"
+
+#: ../../godmode/agentes/planned_downtime.editor.php:606
+#: ../../godmode/agentes/planned_downtime.list.php:318
+msgid "Once"
+msgstr "Una vez"
+
+#: ../../godmode/agentes/planned_downtime.editor.php:607
+#: ../../godmode/agentes/planned_downtime.list.php:319
+#: ../../godmode/agentes/planned_downtime.list.php:664
+msgid "Periodically"
+msgstr "Periódicamente"
+
+#: ../../godmode/agentes/planned_downtime.editor.php:622
+msgid "Configure the time"
+msgstr "Configurar el tiempo"
+
+#: ../../godmode/agentes/planned_downtime.editor.php:641
+msgid "Type Periodicity:"
+msgstr "Periodicidad del tipo:"
+
+#: ../../godmode/agentes/planned_downtime.editor.php:673
+msgid "From day:"
+msgstr "Desde el día:"
+
+#: ../../godmode/agentes/planned_downtime.editor.php:687
+msgid "To day:"
+msgstr "Hasta el día:"
+
+#: ../../godmode/agentes/planned_downtime.editor.php:706
+msgid "From hour:"
+msgstr "Desde la hora:"
+
+#: ../../godmode/agentes/planned_downtime.editor.php:719
+msgid "To hour:"
+msgstr "Hasta la hora:"
+
+#: ../../godmode/agentes/planned_downtime.editor.php:795
+msgid "Group filter"
+msgstr "Filtro de grupo"
+
+#: ../../godmode/agentes/planned_downtime.editor.php:829
+msgid "Available modules:"
+msgstr "Módulos disponibles:"
+
+#: ../../godmode/agentes/planned_downtime.editor.php:830
+msgid "Only for type Quiet for downtimes."
+msgstr "Solo para tipo Modo silencioso para paradas"
+
+#: ../../godmode/agentes/planned_downtime.editor.php:888
+msgid "Agents planned for this downtime"
+msgstr "Agentes planificados para esta parada"
+
+#: ../../godmode/agentes/planned_downtime.editor.php:906
+msgid "There are no agents"
+msgstr "No hay agentes"
+
+#: ../../godmode/agentes/planned_downtime.editor.php:948
+msgid "All alerts"
+msgstr "Todas las alertas"
+
+#: ../../godmode/agentes/planned_downtime.editor.php:950
+msgid "Entire agent"
+msgstr "Agente completo"
+
+#: ../../godmode/agentes/planned_downtime.editor.php:953
+#: ../../godmode/agentes/planned_downtime.editor.php:1075
+msgid "All modules"
+msgstr "Todos los módulos"
+
+#: ../../godmode/agentes/planned_downtime.editor.php:955
+#: ../../godmode/agentes/planned_downtime.editor.php:1067
+#: ../../godmode/agentes/planned_downtime.editor.php:1071
+msgid "Some modules"
+msgstr "Algunos módulos"
+
+#: ../../godmode/agentes/planned_downtime.editor.php:1021
+msgid "Add Module:"
+msgstr "Añadir módulo:"
+
+#: ../../godmode/agentes/planned_downtime.editor.php:1523
+msgid ""
+"WARNING: If you edit this scheduled downtime, the data of future SLA reports "
+"may be altered"
+msgstr ""
+"ADVERTENCIA: si se modifica esta parada planificada, los datos de los futuros "
+"informes SLA pueden ser alterados"
+
+#: ../../godmode/agentes/planned_downtime.list.php:206
+msgid "An error occurred stopping the scheduled downtime"
+msgstr "Se produjo un error al detener la parada planificada"
+
+#: ../../godmode/agentes/planned_downtime.list.php:233
+msgid "This scheduled downtime is running"
+msgstr "Esta parada planificada se está ejecutando"
+
+#: ../../godmode/agentes/planned_downtime.list.php:333
+msgid "Show past downtimes"
+msgstr "Mostrar paradas antiguas"
+
+#: ../../godmode/agentes/planned_downtime.list.php:610
+msgid "Name #Ag."
+msgstr "Nombre (núm. ag.)"
+
+#: ../../godmode/agentes/planned_downtime.list.php:617
+msgid "Affected"
+msgstr "Afectado"
+
+#: ../../godmode/agentes/planned_downtime.list.php:622
+#: ../../godmode/agentes/planned_downtime.list.php:725
+#: ../../godmode/agentes/planned_downtime.list.php:731
+msgid "Stop downtime"
+msgstr "Detener parada planificada"
+
+#: ../../godmode/agentes/planned_downtime.list.php:663
+msgid "once"
+msgstr "una vez"
+
+#: ../../godmode/agentes/planned_downtime.list.php:678
+msgid "Not running"
+msgstr "No está en ejecución"
+
+#: ../../godmode/agentes/planned_downtime.list.php:696
+msgid "Agents / Modules affected"
+msgstr "Agentes / Módulos afectados"
+
+#: ../../godmode/agentes/planned_downtime.list.php:705
+msgid "Agents and modules affected"
+msgstr "Agentes y módulos afectados"
+
+#: ../../godmode/agentes/planned_downtime.list.php:903
+msgid ""
+"WARNING: If you delete this scheduled downtime, it will not be taken into "
+"account in future SLA reports"
+msgstr ""
+"ADVERTENCIA: si se borra esta parada planificada, no se tendrá en cuenta en "
+"futuros informes SLA"
+
+#: ../../godmode/agentes/planned_downtime.list.php:909
+msgid "WARNING: There are malformed scheduled downtimes"
+msgstr "ADVERTENCIA: hay paradas planificadas mal formadas"
+
+#: ../../godmode/agentes/planned_downtime.list.php:909
+msgid "Do you want to migrate automatically the malformed items?"
+msgstr "¿Quiere migrar automáticamente los elementos mal formados?"
+
+#: ../../godmode/agentes/agent_conf_gis.php:50
+msgid ""
+"There is no GIS data for this agent, so it's positioned in default position of "
+"map."
+msgstr ""
+"No hay datos de GIS para este agente, por lo que es colocado en posición por "
+"defecto del mapa."
+
+#: ../../godmode/agentes/agent_conf_gis.php:58
+msgid ""
+"When you change the Agent position, the agent automatically activates the "
+"'Ignore new GIS data' option"
+msgstr ""
+"Cuando se cambia la posición de agente, el agente activa automáticamente la "
+"opción \"Ignorar nuevos datos GIS\"."
+
+#: ../../godmode/agentes/agent_conf_gis.php:67
+msgid "Agent position"
+msgstr "Posición del agente"
+
+#: ../../godmode/agentes/agent_conf_gis.php:73
+msgid "Latitude: "
+msgstr "Latitud: "
+
+#: ../../godmode/agentes/agent_conf_gis.php:90
+msgid "Longitude: "
+msgstr "Longitud: "
+
+#: ../../godmode/agentes/agent_conf_gis.php:107
+msgid "Altitude: "
+msgstr "Altitud: "
+
+#: ../../godmode/agentes/fields_manager.php:30
+msgid "Agents custom fields manager"
+msgstr "Gestor de campos personalizados del agente"
+
+#: ../../godmode/agentes/fields_manager.php:48
+msgid "The name must be unique"
+msgstr "El nombre debe ser único."
+
+#: ../../godmode/agentes/fields_manager.php:59
+msgid "Field successfully created"
+msgstr "Se ha creado el campo."
+
+#: ../../godmode/agentes/fields_manager.php:80
+msgid "Field successfully updated"
+msgstr "Se ha actualizado el campo."
+
+#: ../../godmode/agentes/fields_manager.php:82
+msgid "There was a problem modifying field"
+msgstr "Ha habido un problema al modificar el campo."
+
+#: ../../godmode/agentes/fields_manager.php:94
+msgid "There was a problem deleting field"
+msgstr "Ha surgido un problema al borrar el campo."
+
+#: ../../godmode/agentes/fields_manager.php:96
+msgid "Field successfully deleted"
+msgstr "El campo se ha borrado correctamente."
+
+#: ../../godmode/agentes/fields_manager.php:168
+msgid "Create field"
+msgstr "Crear campo"
+
+#: ../../godmode/agentes/agent_incidents.php:69
+msgid "No incidents associated to this agent"
+msgstr "No hay incidentes asociados a este agente"
+
+#: ../../godmode/agentes/agent_incidents.php:90
+msgid "Incident"
+msgstr "Incidente"
+
+#: ../../godmode/agentes/agent_template.php:156
+msgid "Error adding modules"
+msgstr "Error al añadir módulos"
+
+#: ../../godmode/agentes/agent_template.php:158
+msgid "Error adding modules. The following errors already exists: "
+msgstr "Error al añadir los módulos. Ocurrieron los siguientes errores: "
+
+#: ../../godmode/agentes/agent_template.php:188
+msgid "Assign"
+msgstr "Asignar"
+
+#: ../../godmode/agentes/module_manager_editor_network.php:266
+msgid "SNMP walk"
+msgstr "SNMP walk"
+
+#: ../../godmode/agentes/module_manager_editor_network.php:448
+msgid ""
+"Please use single quotation marks when necessary. \n"
+"\n"
+"If double quotation marks are needed, please escape them with a backslash "
+"(\\&quot;)"
+msgstr ""
+"Utilice comillas simples cuando sea necesario. \n"
+"\n"
+"Si se necesitan comillas dobles, escápase de ellas con una barra diagonal "
+"inversa (\\&quot;)"
+
+#: ../../godmode/agentes/module_manager_editor_network.php:479
+msgid "Windows remote"
+msgstr "Windows remoto"
+
+#: ../../godmode/agentes/modificar_agente.php:95
+#, php-format
+msgid "Agents defined in %s"
+msgstr "Agentes definidos en %s"
+
+#: ../../godmode/agentes/modificar_agente.php:124
+#, php-format
+msgid ""
+"This node is configured with centralized mode. Go to %s to delete an agent"
+msgstr ""
+"Este nodo está configurado en modo centralizado. Para eliminar un agente, vaya "
+"%s"
+
+#: ../../godmode/agentes/modificar_agente.php:170
+msgid "Success deleted agent."
+msgstr "Agente eliminado correctamente"
+
+#: ../../godmode/agentes/modificar_agente.php:171
+msgid "Could not be deleted."
+msgstr "No pudo ser borrado."
+
+#: ../../godmode/agentes/modificar_agente.php:186
+msgid "Maybe the files conf or md5 could not be deleted"
+msgstr "Los archivos conf o md5 no han podido ser borrados."
+
+#: ../../godmode/agentes/modificar_agente.php:320
+msgid "Show Agents"
+msgstr "Mostrar agentes"
+
+#: ../../godmode/agentes/modificar_agente.php:322
+msgid "Everyone"
+msgstr "Todos"
+
+#: ../../godmode/agentes/modificar_agente.php:336
+msgid "Operative System"
+msgstr "Sistema operativo"
+
+#: ../../godmode/agentes/modificar_agente.php:367
+msgid ""
+"Search filter by alias, name, description, IP address or custom fields content"
+msgstr ""
+"Buscar filtro por alias, nombre, descripción, dirección IP o contenido de "
+"campos personalizados."
+
+#: ../../godmode/agentes/modificar_agente.php:648
+msgid "Remote agent configuration"
+msgstr "Configuración remota del agente"
+
+#: ../../godmode/agentes/modificar_agente.php:648
+msgid "R"
+msgstr "R"
+
+#: ../../godmode/agentes/modificar_agente.php:858
+msgid "Edit remote config"
+msgstr "Editar configuración remota"
+
+#: ../../godmode/agentes/modificar_agente.php:908
+msgid "You are going to enable a cluster agent. Are you sure?"
+msgstr "¿Esta seguro de que desea habilitar el cluster de agentes?"
+
+#: ../../godmode/agentes/modificar_agente.php:911
+msgid "Enable agent"
+msgstr "Habilitar agente"
+
+#: ../../godmode/agentes/modificar_agente.php:918
+msgid "You are going to disable a cluster agent. Are you sure?"
+msgstr "¿Esta seguro de que desea deshabilitar el cluster de agentes?"
+
+#: ../../godmode/agentes/modificar_agente.php:921
+msgid "Disable agent"
+msgstr "Deshabilitar agente"
+
+#: ../../godmode/agentes/modificar_agente.php:931
+msgid "WARNING! - You are going to delete a cluster agent. Are you sure?"
+msgstr ""
+"¡ADVERTENCIA! - ¿Esta seguro de que desea eliminar el cluster de agentes?"
+
+#: ../../godmode/alerts/configure_alert_template.php:250
+#: ../../godmode/alerts/configure_alert_template.php:254
+msgid "Conditions"
+msgstr "Condiciones"
+
+#: ../../godmode/alerts/configure_alert_template.php:271
+#: ../../godmode/alerts/configure_alert_template.php:275
+msgid "Advanced fields"
+msgstr "Campos avanzados"
+
+#: ../../godmode/alerts/configure_alert_template.php:419
+#, php-format
+msgid ""
+"This node is configured with centralized mode. All alerts templates "
+"information is read only. Go to Go to %s to manage it."
+msgstr ""
+"Este nodo se configura en modo centralizado. Toda la información de plantillas "
+"de alertas es solo de lectura. Vaya a %s para gestionarlo."
+
+#: ../../godmode/alerts/configure_alert_template.php:531
+msgid "No template name specified"
+msgstr "Ningún nombre de plantilla especificado"
+
+#: ../../godmode/alerts/configure_alert_template.php:712
+msgid "Reset counter for non-sustained alerts"
+msgstr "Reiniciar el contador para las alertas no sostenidas"
+
+#: ../../godmode/alerts/configure_alert_template.php:714
+msgid ""
+"Enable this option if you want the counter to be reset when the alert is not "
+"being fired consecutively, even if it's within the time threshold"
+msgstr ""
+"Activa esta opción si quieres que el contador se reinicie cuando la alerta no "
+"se dispare de forma consecutiva, incluso si está dentro del umbral."
+
+#: ../../godmode/alerts/configure_alert_template.php:788
+msgid ""
+"Unless they're left blank, the fields from the action will override those set "
+"on the template."
+msgstr ""
+"A menos que estén en blanco, los campos de la acción sobrescribirán los de la "
+"plantilla."
+
+#: ../../godmode/alerts/configure_alert_template.php:792
+msgid "Condition type"
+msgstr "Tipo de condición"
+
+#: ../../godmode/alerts/configure_alert_template.php:809
+msgid "Trigger when matches the value"
+msgstr "Disparar cuando coincida con el valor"
+
+#: ../../godmode/alerts/configure_alert_template.php:832
+msgid "The regular expression is valid"
+msgstr "La expresión regular es válida."
+
+#: ../../godmode/alerts/configure_alert_template.php:842
+msgid "The regular expression is not valid"
+msgstr "La expresión regular no es válida."
+
+#: ../../godmode/alerts/configure_alert_template.php:897
+msgid "Alert recovery"
+msgstr "Recuperación de alerta"
+
+#: ../../godmode/alerts/configure_alert_template.php:919
+msgid "Recovery fields"
+msgstr "Campos de recuperación"
+
+#: ../../godmode/alerts/configure_alert_template.php:1136
+msgid "No wizard"
+msgstr "No hay asistente"
+
+#: ../../godmode/alerts/configure_alert_template.php:1217
+#, php-format
+msgid "The alert would fire when the value doesn\\'t match %s"
+msgstr "La alerta se disparará cuando el valor no coincida con %s"
+
+#: ../../godmode/alerts/configure_alert_template.php:1221
+msgid ""
+"The alert would fire when the value is not between <span id=min></span> and "
+"<span id=max></span>"
+msgstr ""
+"La alerta se dispararía cuando el valor no esté entre <span id=min></span> y "
+"<span id=max></span>"
+
+#: ../../godmode/alerts/configure_alert_template.php:1222
+#: ../../godmode/alerts/alert_view.php:200
+msgid "The alert would fire when the value is below <span id=\"min\"></span>"
+msgstr ""
+"La alerta se disparará cuando el valor sea inferior a  <span id=\"min\"></"
+"span>."
+
+#: ../../godmode/alerts/configure_alert_template.php:1223
+#: ../../godmode/alerts/alert_view.php:205
+msgid "The alert would fire when the value is above <span id=\"max\"></span>"
+msgstr ""
+"La alerta se disparará cuando el valor sea superior a <span id=\"max\"></span>."
+
+#: ../../godmode/alerts/configure_alert_template.php:1226
+#: ../../godmode/alerts/alert_view.php:211
+msgid "The alert would fire when the module value changes"
+msgstr "La alerta se disparará cuando los valores de los módulos cambien."
+
+#: ../../godmode/alerts/configure_alert_template.php:1227
+#: ../../godmode/alerts/alert_view.php:213
+msgid "The alert would fire when the module value does not change"
+msgstr "La alerta se disparará cuando los valores de los módulos no cambien."
+
+#: ../../godmode/alerts/configure_alert_template.php:1228
+#: ../../godmode/alerts/alert_view.php:230
+msgid "The alert would fire when the module is in unknown status"
+msgstr "La alerta se disparará cuando el módulo esté en estado desconocido."
+
+#: ../../godmode/alerts/configure_alert_template.php:1229
+msgid "The alert template cannot have the same value for min and max thresholds."
+msgstr ""
+"La plantilla de alerta no puede tener el mismo valor para los umbrales max y "
+"min."
+
+#: ../../godmode/alerts/configure_alert_template.php:1230
+#: ../../godmode/alerts/alert_view.php:226
+msgid "The alert would fire when the module is in not normal status"
+msgstr "La alerta se disparará cuando el módulo no esté en estado normal"
+
+#: ../../godmode/alerts/configure_alert_template.php:1407
+msgid ""
+"The alert would fire when the module is in unknown status. Warning: "
+"unknown_updates of pandora_server.conf must be equal to 1"
+msgstr ""
+"La alerta se disparará cuando el módulo esté en estado desconocido. "
+"Advertencia: unknown_updates de pandora_server.conf debe ser igual a 1"
+
+#: ../../godmode/alerts/alert_list.list.php:123
+msgid "Field content"
+msgstr "Contenido del campo"
+
+#: ../../godmode/alerts/alert_list.list.php:662
+#: ../../godmode/alerts/alert_view.php:317
+msgid ""
+"The default actions will be executed every time that the alert is fired and no "
+"other action is executed"
+msgstr ""
+"Las acciones por defecto se ejecutarán cada vez que la alerta se dispare y "
+"ninguna otra acción sea ejecutada."
+
+#: ../../godmode/alerts/alert_list.list.php:930
+msgid "View alert advanced details"
+msgstr "Ver detalles avanzados de la alerta"
+
+#: ../../godmode/alerts/alert_actions.php:222
+#: ../../godmode/alerts/configure_alert_action.php:120
+#, php-format
+msgid ""
+"This node is configured with centralized mode. All alert actions information "
 "is read only. Go to %s to manage it."
 msgstr ""
 "Este nodo se configura en modo centralizado. Toda la información de plantillas "
 "de alertas es solo de lectura. Vaya a %s para gestionarlo."
 
-#: ../../views/calendar/special_days_edit.php:40
-msgid "Configure special day"
-msgstr "Configurar día especial"
+#: ../../godmode/alerts/alert_actions.php:396
+msgid ""
+"You cannot edit this action, You don't have the permission to edit All group."
+msgstr ""
+"No puede editar esta acción, no tiene permisos para editar el grupo All "
+"(todos)."
 
-#: ../../views/calendar/special_days_edit.php:123
-#: ../../views/calendar/special_days.php:386
-msgid "Holidays"
-msgstr "Vacaciones"
+#: ../../godmode/alerts/alert_actions.php:407
+msgid ""
+"The action and the command associated with it do not have the same group. "
+"Please contact an administrator to fix it."
+msgstr ""
+"La acción y el comando asociado no pertenecen al mismo grupo. Póngase en "
+"contacto con el administrador para solucionarlo."
 
-#: ../../views/calendar/special_days_edit.php:127
-#: ../../views/calendar/special_days.php:102
-msgid "Same day of the week"
-msgstr "Mismo día de la semana"
+#: ../../godmode/alerts/alert_actions.php:465
+msgid "No alert actions configured"
+msgstr "Sin acciones de alertas configuradas"
 
-#: ../../views/calendar/edit.php:40
-msgid "Calendars Edit"
-msgstr "Editar calendarios"
+#: ../../godmode/alerts/alert_list.builder.php:91
+msgid "Latest value"
+msgstr "Último valor"
 
-#: ../../views/calendar/special_days.php:81
-msgid "iCalendar(.ics) file"
-msgstr "Archivo iCalendar (.ics)"
+#: ../../godmode/alerts/alert_list.builder.php:201
+msgid "Finish and view cluster"
+msgstr "Finalizar y ver cluster"
 
-#: ../../views/calendar/special_days.php:122
-msgid "Overwrite"
-msgstr "Sobrescribir"
-
-#: ../../views/calendar/special_days.php:123
-msgid "Check this box, if you want to overwrite existing same days."
-msgstr "Marca esta casilla si quieres sobrescribir los días existentes."
-
-#: ../../views/calendar/special_days.php:172
-msgid "Display range: "
-msgstr "Mostrar rango "
-
-#: ../../views/calendar/special_days.php:355
-msgid "As "
-msgstr "Como "
-
-#: ../../views/calendar/special_days.php:421
-msgid "Show templates"
-msgstr "Mostrar plantillas"
-
-#: ../../views/calendar/special_days.php:507
-msgid "Load calendar"
-msgstr "Cargar calendario"
-
-#: ../../views/dashboard/slides.php:181
-msgid "Change every"
-msgstr "Cambiar cada"
-
-#: ../../views/dashboard/slides.php:229
-msgid "Pause"
-msgstr "Pausar"
-
-#: ../../views/dashboard/slides.php:252
-msgid "Mode Cell"
-msgstr "Modo celdas"
-
-#: ../../views/dashboard/slides.php:258
-msgid "Mode Layout"
-msgstr "Modo esquema"
-
-#: ../../views/dashboard/listWidgets.php:85 ../../views/dashboard/widget.php:35
-msgid "Add widget"
-msgstr "Agregar widget"
-
-#: ../../views/dashboard/list.php:61
-msgid "Successfully duplicate"
-msgstr "Duplicado correctamente"
-
-#: ../../views/dashboard/list.php:62
-msgid "Could not be duplicate"
-msgstr "No se pudo duplicar"
-
-#: ../../views/dashboard/list.php:70
-msgid "There are no dashboards defined."
-msgstr "No hay dashboards definidos"
-
-#: ../../views/dashboard/list.php:96
-msgid "Cells"
-msgstr "Celdas"
-
-#: ../../views/dashboard/list.php:98
-msgid "Favorite"
-msgstr "Favorito"
-
-#: ../../views/dashboard/list.php:136
+#: ../../godmode/alerts/alert_templates.php:268
 #, php-format
-msgid "Private for (%s)"
-msgstr "Privado por (%s)"
+msgid ""
+"This node is configured with centralized mode. All alert templates information "
+"is read only. Go to %s to manage it."
+msgstr ""
+"Este nodo se configura en modo centralizado. Toda la información de plantillas "
+"de alertas es solo de lectura. Vaya a %s para gestionarlo."
 
-#: ../../views/dashboard/list.php:217
-msgid "Create a new dashboard"
-msgstr "Crear un nuevo cuadro de mando"
+#: ../../godmode/alerts/alert_templates.php:412
+msgid ""
+"You cannot edit this alert template, You don't have the permission to edit All "
+"group."
+msgstr ""
+"No puede edit esta plantilla de alerta. No tiene los permisos para editar el "
+"grupo All (todos)."
 
-#: ../../views/dashboard/list.php:233
-msgid "New dashboard"
-msgstr "Nuevo dashboard"
+#: ../../godmode/alerts/alert_templates.php:473
+msgid "No alert templates defined"
+msgstr "No hay plantillas de alerta definidas"
 
-#: ../../views/dashboard/cell.php:42
-msgid "New widget"
-msgstr "Nuevo widget"
+#: ../../godmode/alerts/alert_commands.php:143
+msgid ""
+"For sending emails, text must be HTML format, if you want to use plain text, "
+"type it between the following labels: <pre></pre>"
+msgstr ""
+"Para envíar emails, el texto debe estar en formato HTML, si quiere usar texto "
+"plano, escríbelo entre las etiquetas: <pre></pre>"
 
-#: ../../views/dashboard/cell.php:56
-msgid "Configure widget"
-msgstr "Configurar widget"
+#: ../../godmode/alerts/alert_commands.php:219
+#: ../../godmode/alerts/alert_commands.php:250
+msgid "Text/plain"
+msgstr "Texto/plano"
 
-#: ../../views/dashboard/cell.php:68
-msgid "Delete widget"
-msgstr "Eliminar widget"
+#: ../../godmode/alerts/alert_commands.php:221
+#: ../../godmode/alerts/alert_commands.php:252
+msgid "For sending emails only text plain"
+msgstr "Para mandar emails solo en texto plano"
 
-#: ../../views/dashboard/header.php:67
-msgid "Update Dashboard"
-msgstr "Actualizar el panel de control"
+#: ../../godmode/alerts/alert_commands.php:235
+#: ../../godmode/alerts/alert_commands.php:266
+msgid "Text/html"
+msgstr "Texto/HTML"
 
-#: ../../views/dashboard/header.php:92
-msgid "Back to dashboards list"
-msgstr "Volver a la lista de dashboards"
+#: ../../godmode/alerts/alert_commands.php:474
+msgid "Permissions warning"
+msgstr "Alerta de permisos"
 
-#: ../../views/dashboard/header.php:101
-msgid "Slides"
-msgstr "Diapositivas"
+#: ../../godmode/alerts/alert_commands.php:477
+msgid ""
+"Command management is limited to administrator users or user profiles with "
+"permissions PM"
+msgstr ""
+"La gestión de comandos está limitado a los usuarios de administrador o los "
+"perfiles de usuario con permisos PM"
 
-#: ../../views/dashboard/header.php:115
-msgid "Slides mode"
-msgstr "Modo diapositivas"
+#: ../../godmode/alerts/alert_commands.php:494
+msgid "Alert commands"
+msgstr "Comandos de alerta"
 
-#: ../../views/dashboard/header.php:136
-msgid "Show link to public dashboard"
-msgstr "Mostrar el enlace al dashboard público"
+#: ../../godmode/alerts/alert_commands.php:619
+msgid " (copy)"
+msgstr " (copia)"
 
-#: ../../views/dashboard/header.php:211
-msgid "Add Cell"
-msgstr "Añadir celda"
+#: ../../godmode/alerts/alert_commands.php:643
+#: ../../godmode/alerts/configure_alert_command.php:196
+#, php-format
+msgid ""
+"This node is configured with centralized mode. All alert commands information "
+"is read only. Go to %s to manage it."
+msgstr ""
+"Este nodo se configura en modo centralizado. Toda la información de plantillas "
+"de alertas es solo de lectura. Vaya a %s para gestionarlo."
 
-#: ../../views/dashboard/widget.php:45
-msgid "Please select widget"
-msgstr "Seleccione un widget"
+#: ../../godmode/alerts/alert_commands.php:740
+msgid "No alert commands configured"
+msgstr "Comandos de alertas no configurados"
+
+#: ../../godmode/alerts/alert_list.php:115
+msgid "Already added"
+msgstr "Ya añadido"
+
+#: ../../godmode/alerts/alert_list.php:169
+msgid "No template specified"
+msgstr "Ninguna plantilla especificada"
+
+#: ../../godmode/alerts/alert_list.php:480 ../../godmode/alerts/alert_view.php:83
+#: ../../godmode/alerts/alert_view.php:84
+msgid "List alerts"
+msgstr "Lista de alertas"
+
+#: ../../godmode/alerts/alert_list.php:484
+msgid "Builder alert"
+msgstr "Creador de alerta"
+
+#: ../../godmode/alerts/configure_alert_command.php:60
+msgid "Configure alert command"
+msgstr "Configurar comando de alerta"
+
+#: ../../godmode/alerts/configure_alert_command.php:207
+msgid "Update Command"
+msgstr "Actualizar comando"
+
+#: ../../godmode/alerts/configure_alert_command.php:207
+#: ../../godmode/alerts/configure_alert_action.php:275
+msgid "Create Command"
+msgstr "Crear comando"
+
+#: ../../godmode/alerts/configure_alert_command.php:297
+#, php-format
+msgid "Field %s description"
+msgstr "Campo de descripción %s"
+
+#: ../../godmode/alerts/configure_alert_command.php:325
+#, php-format
+msgid "Field %s values"
+msgstr "Campos %s valores"
+
+#: ../../godmode/alerts/configure_alert_command.php:327
+msgid "value1,tag1;value2,tag2;value3,tag3"
+msgstr "valor1,etiqueta1;valor2,etiqueta2;valor3,etiqueta3"
+
+#: ../../godmode/alerts/configure_alert_command.php:363
+msgid "Hide"
+msgstr "Ocultar"
+
+#: ../../godmode/alerts/alert_view.php:281
+msgid "Firing conditions"
+msgstr "Condiciones de disparo"
+
+#: ../../godmode/alerts/alert_view.php:305
+#: ../../godmode/alerts/alert_view.php:339
+msgid "Every time that the alert is fired"
+msgstr "Cada vez que la alerta es disparada"
+
+#: ../../godmode/alerts/alert_view.php:385
+msgid ""
+"Select the desired action and mode to see the Firing/Recovery fields for this "
+"action"
+msgstr ""
+"Selecciona la acción deseada y el modo para ver los campos de Disparado/"
+"Recuperación para dicha acción."
+
+#: ../../godmode/alerts/alert_view.php:446
+msgid "Template fields"
+msgstr "Campos de la plantilla"
+
+#: ../../godmode/alerts/alert_view.php:448
+msgid "Triggering fields configured in template"
+msgstr "Campos de disparado configurados en la plantilla"
+
+#: ../../godmode/alerts/alert_view.php:542
+msgid "The alert recovering is disabled on this template."
+msgstr "La recuperación de la alerta está desactivada en esta plantilla"
+
+#: ../../godmode/alerts/alert_view.php:558
+msgid "Recovering fields"
+msgstr "Campos de recuperación"
+
+#: ../../godmode/alerts/alert_view.php:560
+msgid ""
+"Fields passed to the command executed by this action when the alert is "
+"recovered"
+msgstr ""
+"Campos pasados al comando ejecutado por esta acción cuando la alerta es "
+"recuperada"
+
+#: ../../godmode/alerts/alert_view.php:574
+msgid "Template recovery fields"
+msgstr "Campos de recuperación de la plantilla"
+
+#: ../../godmode/alerts/alert_view.php:576
+msgid "Recovery fields configured in alert template"
+msgstr "Campos de recuperación configurados en la plantilla de la alerta"
+
+#: ../../godmode/alerts/alert_view.php:579
+msgid "Action recovery fields"
+msgstr "Acción en campos de recuperación"
+
+#: ../../godmode/alerts/alert_view.php:581
+msgid "Recovery fields configured in alert action"
+msgstr "Campos de recuperación configurados en una acción de alerta"
+
+#: ../../godmode/alerts/alert_view.php:584
+msgid "Executed on recovery"
+msgstr "Ejecutado en recuperación"
+
+#: ../../godmode/alerts/alert_view.php:586
+msgid "Fields used on execution when the alert is recovered"
+msgstr "Campos usados en la ejecución cuando la alerta es recuperada"
+
+#: ../../godmode/alerts/configure_alert_action.php:74
+#: ../../godmode/alerts/configure_alert_action.php:87
+msgid "Configure alert action"
+msgstr "Configurar acción de alerta"
+
+#: ../../godmode/alerts/configure_alert_action.php:167
+msgid "Update Action"
+msgstr "Actualizar acción"
+
+#: ../../godmode/alerts/configure_alert_action.php:204
+msgid "This action may stop working, if you change its name."
+msgstr "Esta acción podría dejar de funcionar si cambia el nombre."
+
+#: ../../godmode/alerts/configure_alert_action.php:306
+msgid "Recovery"
+msgstr "Recuperación"
+
+#: ../../godmode/alerts/configure_alert_action.php:330
+msgid "Create workunit on recovery"
+msgstr "Crear unidad de trabajo en recuperación"
+
+#: ../../godmode/alerts/configure_alert_action.php:331
+msgid ""
+"If closed status is set on recovery, a workunit will be added to the ticket in "
+"Integria IMS rather that closing the ticket."
+msgstr ""
+"Si el estado cerrado está en recuperación, se añadirá una unidad de trabajo al "
+"ticket en Integria IMS en vez de cerrar el ticket."
+
+#: ../../godmode/users/user_list.php:250
+#, php-format
+msgid "Users defined on %s"
+msgstr "Usuarios definidos en %s"
+
+#: ../../godmode/users/user_list.php:287
+#: ../../godmode/users/configure_user.php:151
+#, php-format
+msgid "Deleted user %s"
+msgstr "Usuario eliminado %s"
+
+#: ../../godmode/users/user_list.php:294 ../../godmode/users/user_list.php:332
+#: ../../godmode/users/configure_user.php:158
+msgid "There was a problem deleting the user"
+msgstr "Error al borrar el usuario"
+
+#: ../../godmode/users/user_list.php:308
+#: ../../godmode/users/configure_user.php:173
+#, php-format
+msgid "Deleted user %s from metaconsole"
+msgstr "Usuario %s eliminado de la Metaconsola"
+
+#: ../../godmode/users/user_list.php:320
+#: ../../godmode/users/configure_user.php:184
+#, php-format
+msgid "Deleted user %s from %s"
+msgstr "Usuario %s eliminado de %s"
+
+#: ../../godmode/users/user_list.php:326
+#: ../../godmode/users/configure_user.php:190
+#, php-format
+msgid "Successfully deleted from %s"
+msgstr "Eliminado correctamente de %s"
+
+#: ../../godmode/users/user_list.php:327
+#: ../../godmode/users/configure_user.php:191
+#, php-format
+msgid "There was a problem deleting the user from %s"
+msgstr "Error al eliminar al usuario de %s"
+
+#: ../../godmode/users/user_list.php:341 ../../godmode/users/profile_list.php:127
+msgid "There was a problem deleting the profile"
+msgstr "Error al borrar el perfil"
+
+#: ../../godmode/users/user_list.php:367
+msgid "There was a problem disabling user"
+msgstr "Error al deshabilitar el usuario"
+
+#: ../../godmode/users/user_list.php:373
+msgid "There was a problem enabling user"
+msgstr "Error al habilitar el usuario"
+
+#: ../../godmode/users/user_list.php:484
+msgid "Profile / Group"
+msgstr "Perfil/Grupo"
+
+#: ../../godmode/users/user_list.php:714
+msgid "Other profiles are also assigned."
+msgstr "Otros perfiles también han sido asignados"
+
+#: ../../godmode/users/user_list.php:716
+msgid ""
+"Other profiles you cannot manage are also assigned. These profiles are not "
+"shown. You cannot enable/disable or delete this user."
+msgstr ""
+"Otros perfiles que no puede gestionar también han sido asignados. Estos "
+"perfiles no se muestran. No puede habilitar/deshabilitar o borrar este usuario."
+
+#: ../../godmode/users/user_list.php:873
+#: ../../godmode/users/configure_user.php:208
+msgid "Create user"
+msgstr "Crear usuario"
+
+#: ../../godmode/users/user_list.php:876
+#: ../../godmode/users/configure_user.php:317
+#, php-format
+msgid "The current authentication scheme doesn't support creating users on %s"
+msgstr "El sistema de autenticación no permite crear usuarios en %s."
+
+#: ../../godmode/users/configure_user.php:206
+msgid "Update user"
+msgstr "Actualizar usuario"
+
+#: ../../godmode/users/configure_user.php:403
+msgid "User ID cannot be empty"
+msgstr "El ID de usuario no puede estar vacío."
+
+#: ../../godmode/users/configure_user.php:410
+msgid "Invalid user ID: leading or trailing blank spaces not allowed"
+msgstr ""
+"ID de usuario no válido: no están permitidos los espacios en blanco al "
+"principio o al final"
+
+#: ../../godmode/users/configure_user.php:418
+msgid "Passwords cannot be empty"
+msgstr "Las contraseñas no pueden estar vacías."
+
+#: ../../godmode/users/configure_user.php:425
+msgid "Passwords didn't match"
+msgstr "Las contraseñas no coinciden."
+
+#: ../../godmode/users/configure_user.php:484
+msgid ""
+"Strict ACL is not recommended for admin users because performance could be "
+"affected."
+msgstr ""
+"ACL estricto no está recomendado para usuarios administradores porque el "
+"rendimiento podría verse afectado."
+
+#: ../../godmode/users/configure_user.php:519
+#: ../../godmode/users/configure_user.php:806
+msgid "Profile added successfully"
+msgstr "Perfil añadido correctamente"
+
+#: ../../godmode/users/configure_user.php:520
+#: ../../godmode/users/configure_user.php:807
+msgid "Profile cannot be added"
+msgstr "El perfil no se puede añadir."
+
+#: ../../godmode/users/configure_user.php:644
+#: ../../godmode/users/configure_user.php:668
+#: ../../godmode/users/configure_user.php:738
+#: ../../godmode/users/configure_user.php:745
+#: ../../godmode/users/configure_user.php:777
+msgid "Error updating user info (no change?)"
+msgstr "Error al actualizar la información del usuario (¿no hubo cambios?)"
+
+#: ../../godmode/users/configure_user.php:673
+msgid "Password of the active user is required to perform password change"
+msgstr "Se necesita la contraseña del usuario activo para cambiar la contraseña"
+
+#: ../../godmode/users/configure_user.php:675
+msgid "Password of active user is not correct"
+msgstr "La contraseña del usuario activo no es correcta"
+
+#: ../../godmode/users/configure_user.php:691
+msgid "Passwords does not match"
+msgstr "Las contraseñas no coinciden."
+
+#: ../../godmode/users/configure_user.php:766
+msgid ""
+"Strict ACL is not recommended for this user. Performance could be affected."
+msgstr ""
+"ACL estricto no está recomendado para este usuario. El rendimiento podría "
+"verse afectado."
+
+#: ../../godmode/users/configure_user.php:845
+msgid "Update User"
+msgstr "Actualizar usuario"
+
+#: ../../godmode/users/configure_user.php:847
+msgid "Create User"
+msgstr "Crear usuario"
+
+#: ../../godmode/users/configure_user.php:968
+msgid "Own password confirmation"
+msgstr "Confirmación de contraseña propia"
+
+#: ../../godmode/users/configure_user.php:977
+msgid "Global Profile"
+msgstr "Perfil global"
+
+#: ../../godmode/users/configure_user.php:985
+msgid ""
+"This user has permissions to manage all. An admin user should not requiere "
+"additional group permissions, except for using Enterprise ACL."
+msgstr ""
+"Este usuario tiene permisos para configurar todo. Un usuario administrador no "
+"debería requerir permisos adicionales de grupo, excepto para usar ACL "
+"Enterprise."
+
+#: ../../godmode/users/configure_user.php:1000
+msgid ""
+"This user has separated permissions to view data in his group agents, create "
+"incidents belong to his groups, add notes in another incidents, create "
+"personal assignments or reviews and other tasks, on different profiles"
+msgstr ""
+"Este usuario tiene permisos diferentes para ver los datos en el grupo de "
+"agentes, crear incidentes en el grupo, añadir notas en otros incidentes, crear "
+"asignaciones personales o revisarlas y otras tareas en perfiles diferentes."
+
+#: ../../godmode/users/configure_user.php:1081
+msgid "Search custom field view"
+msgstr "Buscar vista de campo personalizado"
+
+#: ../../godmode/users/configure_user.php:1081
+msgid "Load by default the selected view in custom field view"
+msgstr ""
+"Cargar por defecto la vista seleccionada en la vista de campo personalizado"
+
+#: ../../godmode/users/configure_user.php:1098
+msgid "Use global conf"
+msgstr "Usar configuración global"
+
+#: ../../godmode/users/configure_user.php:1115
+msgid "External link"
+msgstr "Enlace externo"
+
+#: ../../godmode/users/configure_user.php:1208
+msgid "Metaconsole access"
+msgstr "Acceso a la Metaconsola"
+
+#: ../../godmode/users/configure_user.php:1226
+msgid "Not Login"
+msgstr "No se inicia la sesión"
+
+#: ../../godmode/users/configure_user.php:1228
+msgid "The user with not login set only can access to API."
+msgstr "El usuario sin permiso de acceso solo puede tener acceso a la API."
+
+#: ../../godmode/users/configure_user.php:1238
+msgid "Local user"
+msgstr "Usuario local"
+
+#: ../../godmode/users/configure_user.php:1240
+msgid ""
+"The user with local authentication enabled will always use local "
+"authentication."
+msgstr ""
+"El usuario con la autenticación local habilitada siempre utilizará la "
+"autenticación local."
+
+#: ../../godmode/users/configure_user.php:1250
+msgid "Session Time"
+msgstr "TIempo de sesión"
+
+#: ../../godmode/users/configure_user.php:1252
+msgid ""
+"This is defined in minutes, If you wish a permanent session should putting -1 "
+"in this field."
+msgstr ""
+"Esto está definido en minutos; si quieres una sesión permanente, pon -1 en "
+"este campo."
+
+#: ../../godmode/users/configure_user.php:1286
+msgid "Default event filter"
+msgstr "Filtro de evento por defecto"
+
+#: ../../godmode/users/configure_user.php:1300
+msgid "eHorus user access enabled"
+msgstr "Acceso de usuario eHorus habilitado"
+
+#: ../../godmode/users/configure_user.php:1340
+msgid "User must be created before activating double authentication."
+msgstr "El usuario debe estar creado antes de activar la doble autenticación."
+
+#: ../../godmode/users/configure_user.php:1368
+msgid "Enable agents managment"
+msgstr "Habilitar gestión de agentes"
+
+#: ../../godmode/users/configure_user.php:1376
+msgid "Assigned node"
+msgstr "Nodo asignado"
+
+#: ../../godmode/users/configure_user.php:1376
+msgid "Server where the agents created of this user will be placed"
+msgstr "Servidor donde se ubicarán los agentes creados por este usuario"
+
+#: ../../godmode/users/configure_user.php:1385
+msgid "Enable node access"
+msgstr "Habilitar el acceso al nodo"
+
+#: ../../godmode/users/configure_user.php:1385
+msgid "With this option enabled, the user will can access to nodes console"
+msgstr ""
+"Con esta opción habilitada, el usuario podrá tener acceso a los nodos de la "
+"consola."
+
+#: ../../godmode/users/configure_user.php:1602
+msgid "yes"
+msgstr "sí"
+
+#: ../../godmode/users/configure_user.php:1605
+msgid "no"
+msgstr "no"
+
+#: ../../godmode/users/configure_user.php:1609
+msgid "please select profile and group"
+msgstr "Seleccione un perfil y grupo"
+
+#: ../../godmode/users/configure_user.php:1635
+msgid "Deleting last profile will delete this user"
+msgstr "Eliminar el último perfil eliminará este usuario"
+
+#: ../../godmode/users/configure_user.php:1675
+msgid ""
+"User will be created without profiles assigned and won't be able to log in, "
+"are you sure?"
+msgstr ""
+"El usuario se creará sin perfiles asignados y no podrá identificarse, ¿está "
+"seguro?"
+
+#: ../../godmode/users/configure_profile.php:76
+#: ../../godmode/users/profile_list.php:84
+#, php-format
+msgid "Profiles defined on %s"
+msgstr "Perfiles definidos en %s."
+
+#: ../../godmode/users/configure_profile.php:142
+msgid "Create profile"
+msgstr "Crear perfil"
+
+#: ../../godmode/users/configure_profile.php:147
+msgid "There was a problem loading profile"
+msgstr "Error al cargar el perfil"
+
+#: ../../godmode/users/configure_profile.php:239
+msgid "Update profile"
+msgstr "Actualizar perfil"
+
+#: ../../godmode/users/configure_profile.php:249
+msgid "Update Profile"
+msgstr "Actualizar perfil"
+
+#: ../../godmode/users/configure_profile.php:251
+msgid "Create Profile"
+msgstr "Crear perfil"
+
+#: ../../godmode/users/configure_profile.php:272
+msgid "View agents"
+msgstr "Ver agentes"
+
+#: ../../godmode/users/configure_profile.php:276
+msgid "Disable agents"
+msgstr "Desactivar agentes"
+
+#: ../../godmode/users/configure_profile.php:280
+msgid "Edit agents"
+msgstr "Editar agentes"
+
+#: ../../godmode/users/configure_profile.php:287
+msgid "Edit alerts"
+msgstr "Editar alertas"
+
+#: ../../godmode/users/configure_profile.php:302
+msgid "Edit events"
+msgstr "Editar eventos"
+
+#: ../../godmode/users/configure_profile.php:313
+msgid "View reports"
+msgstr "Ver informes"
+
+#: ../../godmode/users/configure_profile.php:317
+msgid "Edit reports"
+msgstr "Editar informes"
+
+#: ../../godmode/users/configure_profile.php:321
+msgid "Manage reports"
+msgstr "Gestionar informes"
+
+#: ../../godmode/users/configure_profile.php:328
+msgid "View network maps"
+msgstr "Ver mapas de red"
+
+#: ../../godmode/users/configure_profile.php:332
+msgid "Edit network maps"
+msgstr "Editar mapas de red"
+
+#: ../../godmode/users/configure_profile.php:336
+msgid "Manage network maps"
+msgstr "Gestionar mapas de red"
+
+#: ../../godmode/users/configure_profile.php:347
+msgid "Edit visual console"
+msgstr "Editar consola visual"
+
+#: ../../godmode/users/configure_profile.php:351
+msgid "Manage visual console"
+msgstr "Gestionar consolas visuales"
+
+#: ../../godmode/users/configure_profile.php:363
+msgid "View NCM data"
+msgstr "Ver datos de NCM"
+
+#: ../../godmode/users/configure_profile.php:367
+msgid "Operate NCM"
+msgstr "Operar NCM"
+
+#: ../../godmode/users/configure_profile.php:371
+msgid "Manage NCM"
+msgstr "Administrar NCM"
+
+#: ../../godmode/users/configure_profile.php:378
+msgid "Manage users"
+msgstr "Gestionar usuarios"
+
+#: ../../godmode/users/configure_profile.php:385
+msgid "Manage database"
+msgstr "Gestionar la base de datos"
+
+#: ../../godmode/users/configure_profile.php:392
+#, php-format
+msgid "%s management"
+msgstr "Gestión %s."
+
+#: ../../godmode/users/profile_list.php:115
+#, php-format
+msgid ""
+"This node is configured with centralized mode. All profiles information is "
+"read only. Go to %s to manage it."
+msgstr ""
+"Este nodo esta configurado con el modo centralizado. Toda la información de "
+"las políticas está en modo lectura. Vaya a %s para administrarlo."
+
+#: ../../godmode/users/profile_list.php:254
+msgid "There was a problem updating this profile"
+msgstr "Error al borrar el perfil"
+
+#: ../../godmode/users/profile_list.php:257
+msgid "Profile name cannot be empty"
+msgstr "El nombre de perfil no puede estar vacío."
+
+#: ../../godmode/users/profile_list.php:303
+#: ../../godmode/users/profile_list.php:306
+msgid "There was a problem creating this profile"
+msgstr "Error al crear el perfil"
+
+#: ../../godmode/users/profile_list.php:456
+msgid "There are no defined profiles"
+msgstr "No hay perfiles definidos"
+
+#: ../../godmode/module_library/module_library_view.php:68
+msgid "Main view"
+msgstr "Vista principal"
+
+#: ../../godmode/module_library/module_library_view.php:147
+msgid "View all categories"
+msgstr "Ver todas las categorías"
+
+#: ../../godmode/module_library/module_library_view.php:158
+msgid "More details"
+msgstr "Más detalles"
+
+#: ../../godmode/module_library/module_library_view.php:160
+msgid "View in Module Library"
+msgstr "Ver en Biblioteca de módulos"
+
+#: ../../godmode/module_library/module_library_view.php:161
+msgid "No module found"
+msgstr "No se ha encontrado el módulo"
+
+#: ../../godmode/module_library/module_library_view.php:164
+msgid "Error loading Module Library"
+msgstr "Error al cargar la Biblioteca de módulos"
+
+#: ../../godmode/module_library/module_library_view.php:165
+msgid "Error loading category"
+msgstr "Error al cargar la categoría"
+
+#: ../../godmode/module_library/module_library_view.php:166
+msgid "Error loading categories"
+msgstr "Error al cargar las categorías"
+
+#: ../../godmode/module_library/module_library_view.php:167
+msgid "There is no such category"
+msgstr "La categoría no existe"
+
+#: ../../godmode/module_library/module_library_view.php:168
+msgid "Error loading results"
+msgstr "Error al cargar los resultados"
+
+#: ../../godmode/groups/configure_group.php:87
+#: ../../godmode/groups/configure_modu_group.php:49
+msgid "There was a problem loading group"
+msgstr "Hubo un error al cargar la configuración del grupo"
+
+#: ../../godmode/groups/configure_group.php:106
+msgid "Update group"
+msgstr "Actualizar grupo"
+
+#: ../../godmode/groups/configure_group.php:108
+#: ../../godmode/groups/group_list.php:981
+msgid "Create group"
+msgstr "Crear grupo"
+
+#: ../../godmode/groups/configure_group.php:126
+#: ../../godmode/groups/group_list.php:384
+msgid "Manage agents group"
+msgstr "Administrar grupo de agentes"
+
+#: ../../godmode/groups/configure_group.php:138
+msgid "Update Group"
+msgstr "Actualizar grupo"
+
+#: ../../godmode/groups/configure_group.php:140
+msgid "Create Group"
+msgstr "Crear grupo"
+
+#: ../../godmode/groups/configure_group.php:178
+msgid "You have not access to the parent."
+msgstr "No tienes acceso al padre"
+
+#: ../../godmode/groups/configure_group.php:226
+msgid "Group Password"
+msgstr "Contraseña del grupo"
+
+#: ../../godmode/groups/configure_group.php:230
+msgid "Enable alert use in this group."
+msgstr "Habilitar el uso de alertas en este grupo."
+
+#: ../../godmode/groups/configure_group.php:234
+msgid "Propagate ACL"
+msgstr "Propagar ACL"
+
+#: ../../godmode/groups/configure_group.php:234
+msgid "Propagate the same ACL security into the child subgroups."
+msgstr ""
+"Propaga la misma seguridad ACL del padre a todos los grupos hijos que dependen "
+"de él."
+
+#: ../../godmode/groups/configure_group.php:246
+msgid "Contact information accessible through the _groupcontact_ macro"
+msgstr "Información de contacto accesible a través de  _groupcontact_ macro"
+
+#: ../../godmode/groups/configure_group.php:250
+msgid "Information accessible through the _group_other_ macro"
+msgstr "Información accesible a través de  _group_other_ macro"
+
+#: ../../godmode/groups/configure_group.php:259
+msgid "Max agents allowed"
+msgstr "Máximo de agentes permitidos"
+
+#: ../../godmode/groups/configure_group.php:259
+msgid "Set the maximum of agents allowed for this group. 0 is unlimited."
+msgstr ""
+"Establezca el máximo de agentes permitidos en este grupo. 0 es ilimitado."
+
+#: ../../godmode/groups/modu_group_list.php:70
+#, php-format
+msgid "Module groups defined in %s"
+msgstr "Grupos de módulos definidos en %s"
+
+#: ../../godmode/groups/modu_group_list.php:92
+#, php-format
+msgid ""
+"This node is configured with centralized mode. All module groups information "
+"is read only. Go to %s to manage it."
+msgstr ""
+"Este nodo esta configurado con el modo centralizado. Toda la información de "
+"las políticas está en modo lectura. Vaya a %s para administrarlo."
+
+#: ../../godmode/groups/modu_group_list.php:119
+#: ../../godmode/groups/group_list.php:468
+msgid "Group successfully created"
+msgstr "Grupo creado correctamente"
+
+#: ../../godmode/groups/modu_group_list.php:122
+#: ../../godmode/groups/group_list.php:470
+msgid "There was a problem creating group"
+msgstr "Ha habido un problema al crear el grupo."
+
+#: ../../godmode/groups/modu_group_list.php:127
+#: ../../godmode/groups/modu_group_list.php:163
+msgid "Each module group must have a different name"
+msgstr "Cada grupo de módulos debe tener un nombre diferente"
+
+#: ../../godmode/groups/modu_group_list.php:131
+#: ../../godmode/groups/modu_group_list.php:167
+msgid "Module group must have a name"
+msgstr "El grupo de módulos debe tener un nombre"
+
+#: ../../godmode/groups/modu_group_list.php:155
+#: ../../godmode/groups/group_list.php:540
+msgid "Group successfully updated"
+msgstr "Grupo actualizado correctamente"
+
+#: ../../godmode/groups/modu_group_list.php:158
+#: ../../godmode/groups/group_list.php:542
+msgid "There was a problem modifying group"
+msgstr "Ha habido un problema al modificar el grupo"
+
+#: ../../godmode/groups/modu_group_list.php:227
+#: ../../godmode/groups/group_list.php:723
+msgid "There was a problem deleting group"
+msgstr "Ha habido un problema al borrar el grupo."
+
+#: ../../godmode/groups/modu_group_list.php:229
+#: ../../godmode/groups/group_list.php:720
+msgid "Group successfully deleted"
+msgstr "Grupo eliminado correctamente"
+
+#: ../../godmode/groups/modu_group_list.php:294
+msgid "There are no defined module groups"
+msgstr "No hay grupos de módulos definidos"
+
+#: ../../godmode/groups/modu_group_list.php:303
+msgid "Create module group"
+msgstr "Crear grupo de módulos"
+
+#: ../../godmode/groups/group_list.php:309
+msgid "Tree Group view"
+msgstr "Vista de árbol de grupos"
+
+#: ../../godmode/groups/group_list.php:333
+msgid "Credential Store"
+msgstr "Almacén de credenciales"
+
+#: ../../godmode/groups/group_list.php:339
+#, php-format
+msgid "Groups defined in %s"
+msgstr "Grupos definidos en %s"
+
+#: ../../godmode/groups/group_list.php:365
+msgid "Edit or delete groups can cause problems with synchronization"
+msgstr "Editar o borrar grupos puede causar problemas con la sincronización."
+
+#: ../../godmode/groups/group_list.php:403
+#, php-format
+msgid ""
+"This node is configured with centralized mode. All groups information is read "
+"only. Go to %s to manage it."
+msgstr ""
+"Este nodo esta configurado con el modo centralizado. Toda la información de "
+"las políticas está en modo lectura. Vaya a %s para administrarlo."
+
+#: ../../godmode/groups/group_list.php:473
+#: ../../godmode/groups/group_list.php:545
+msgid "Each group must have a different name"
+msgstr "Cada grupo debe tener un nombre diferente"
+
+#: ../../godmode/groups/group_list.php:476
+#: ../../godmode/groups/group_list.php:548
+msgid "Group must have a name"
+msgstr "El grupo debe tener un nombre"
+
+#: ../../godmode/groups/group_list.php:605
+#, php-format
+msgid "The group %s could not be deleted because it is not empty in the nodes"
+msgstr ""
+"El grupo %s no puede ser borrado porque en el nodo se está usando en este grupo"
+
+#: ../../godmode/groups/group_list.php:679
+msgid ""
+"The group has not been deleted in the metaconsole due to an error in the node "
+"database"
+msgstr ""
+"El grupo no se ha eliminado de la Metaconsola por un error en la base de datos "
+"de los nodos"
+
+#: ../../godmode/groups/group_list.php:688
+#, php-format
+msgid "The group %s has been deleted in the nodes"
+msgstr "El grupo %s se ha borrado de los nodos"
+
+#: ../../godmode/groups/group_list.php:730
+#, php-format
+msgid "The group is not empty. It is use in %s."
+msgstr "El grupo no está vacío. Está en uso en %s."
+
+#: ../../godmode/groups/group_list.php:775
+#: ../../godmode/groups/group_list.php:969
+msgid "There are no defined groups"
+msgstr "No hay grupos definidos"
+
+#: ../../godmode/groups/group_list.php:924
+msgid "Are you sure? This group will also be deleted in all the nodes."
+msgstr "¿Está seguro? Este grupo también se borrará de todos los nodos."
+
+#: ../../godmode/groups/group_list.php:930
+msgid ""
+"The child groups will be updated to use the parent id of the deleted group"
+msgstr "Los grupos hijo se actualizarán y usarán el id padre del grupo eliminado"
+
+#: ../../godmode/groups/configure_modu_group.php:31
+msgid "Module group management"
+msgstr "Gestión del grupo de módulos"
 
 #~ msgid "An error occurred while migrating the malformed scheduled downtimes"
 #~ msgstr ""
@@ -51927,6 +52017,19 @@ msgstr "Seleccione un widget"
 #~ msgid "Problems while adding service element: %d, %s"
 #~ msgstr "Problemas al agregar elementos de servicio: %d, %s"
 
+#~ msgid "Add networks in custom range"
+#~ msgstr "Agregar redes en un rango personalizado"
+
+#~ msgid "Range"
+#~ msgstr "Rango"
+
+#~ msgid ""
+#~ "Add those networks from the top selector that belong to the range specified "
+#~ "herein. (e.g.: 192.168.30.0/24)"
+#~ msgstr ""
+#~ "Agregue aquellas redes del selector superior que pertenezcan al rango "
+#~ "especificado aquí. (por ejemplo: 192.168.30.0/24)"
+
 #~ msgid "all networks selected"
 #~ msgstr "Todas las redes seleccionadas"
 
diff --git a/pandora_console/include/languages/index.pot b/pandora_console/include/languages/index.pot
index 057d6d7263..14daddaf98 100644
--- a/pandora_console/include/languages/index.pot
+++ b/pandora_console/include/languages/index.pot
@@ -3,24 +3,30 @@
 # This file is distributed under the same license as the PACKAGE package.
 # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
 #
-#: ../../include/functions_reporting_html.php:3657
-#: ../../include/functions_reporting_html.php:3663
-#: ../../include/functions_reporting_html.php:3669
-#: ../../include/functions_reporting_html.php:3675
-#: ../../include/functions_reporting_html.php:3681
-#: ../../include/functions_reporting_html.php:3687
-#: ../../include/functions_reporting_html.php:3693
-#: ../../include/functions_reporting_html.php:3751
-#: ../../include/functions_reporting_html.php:3757
-#: ../../include/functions_reporting_html.php:3763
-#: ../../include/functions_reporting_html.php:3769
-#: ../../include/functions_reporting_html.php:3775
+#: ../../include/functions_reporting_html.php:3834
+#: ../../include/functions_reporting_html.php:3840
+#: ../../include/functions_reporting_html.php:3846
+#: ../../include/functions_reporting_html.php:3852
+#: ../../include/functions_reporting_html.php:3858
+#: ../../include/functions_reporting_html.php:3864
+#: ../../include/functions_reporting_html.php:3870
+#: ../../include/functions_reporting_html.php:3928
+#: ../../include/functions_reporting_html.php:3934
+#: ../../include/functions_reporting_html.php:3940
+#: ../../include/functions_reporting_html.php:3946
+#: ../../include/functions_reporting_html.php:3952
+#: ../../enterprise/include/functions_reporting_csv.php:2254
+#: ../../enterprise/meta/monitoring/group_view.php:214
+#: ../../enterprise/meta/monitoring/group_view.php:231
+#: ../../enterprise/meta/monitoring/custom_fields_view.php:1018
+#: ../../enterprise/godmode/policies/policy_agents.php:716
+#: ../../enterprise/godmode/policies/policy_agents.php:744
 #, fuzzy
 msgid ""
 msgstr ""
 "Project-Id-Version: PACKAGE VERSION\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2022-02-02 10:38+0100\n"
+"POT-Creation-Date: 2022-05-27 13:07+0200\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
 "Language-Team: LANGUAGE <LL@li.org>\n"
@@ -29,744 +35,1094 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 
-#: ../../views/calendar/list.php:39
-msgid "Calendars"
+#: ../../views/calendar/edit.php:40
+msgid "Calendars Edit"
 msgstr ""
 
-#: ../../views/calendar/list.php:57
-#: ../../views/calendar/special_days_edit.php:58
 #: ../../views/calendar/edit.php:58 ../../views/calendar/special_days.php:59
-#: ../../extensions/resource_registration.php:1087
-#: ../../godmode/modules/manage_nc_groups.php:277
-#: ../../godmode/modules/manage_network_components.php:306
-#: ../../godmode/groups/group_list.php:393
-#: ../../godmode/groups/modu_group_list.php:85
-#: ../../godmode/users/profile_list.php:108
-#: ../../godmode/users/user_list.php:403
-#: ../../godmode/agentes/modificar_agente.php:117
-#: ../../godmode/massive/massive_operations.php:410
-#: ../../godmode/massive/massive_delete_profiles.php:45
-#: ../../godmode/massive/massive_add_profiles.php:45
-#: ../../godmode/alerts/configure_alert_command.php:165
-#: ../../godmode/alerts/alert_actions.php:221
-#: ../../godmode/alerts/alert_commands.php:622
-#: ../../godmode/alerts/alert_templates.php:266
-#: ../../godmode/alerts/configure_alert_action.php:110
-#: ../../godmode/alerts/configure_alert_template.php:382
-#: ../../godmode/setup/os.list.php:46
+#: ../../views/calendar/special_days_edit.php:58
+#: ../../views/calendar/list.php:57 ../../operation/users/user_edit.php:244
+#: ../../enterprise/operation/agentes/policy_view.php:51
+#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:206
+#: ../../enterprise/include/lib/Policy/Queue.php:162
+#: ../../enterprise/include/lib/Policy/Queue.php:163
+#: ../../enterprise/include/lib/Policy/Queue.php:406
+#: ../../enterprise/extensions/csv_import_group.php:43
+#: ../../enterprise/godmode/modules/local_components.php:256
+#: ../../enterprise/godmode/modules/manage_inventory_modules.php:56
+#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:31
+#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:31
+#: ../../enterprise/godmode/massive/massive_edit_tags_policy.php:33
+#: ../../enterprise/godmode/massive/massive_add_alerts_policy.php:31
+#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:33
+#: ../../enterprise/godmode/massive/massive_tags_edit_policy.php:33
+#: ../../enterprise/godmode/agentes/agent_autoconfiguration.php:122
+#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:316
+#: ../../enterprise/godmode/agentes/collections.editor.php:112
+#: ../../enterprise/godmode/agentes/collections.data.php:398
+#: ../../enterprise/godmode/agentes/collections.php:95
+#: ../../enterprise/godmode/policies/policy_agents.php:319
+#: ../../enterprise/godmode/policies/policy_queue.php:211
+#: ../../enterprise/godmode/policies/policy_linking.php:110
+#: ../../enterprise/godmode/policies/policy_modules.php:469
+#: ../../enterprise/godmode/policies/policies.php:261
+#: ../../enterprise/godmode/policies/policy_external_alerts.php:302
+#: ../../enterprise/godmode/policies/configure_policy.php:74
+#: ../../enterprise/godmode/policies/policy_inventory_modules.php:84
+#: ../../enterprise/godmode/policies/policy_alerts.php:57
+#: ../../enterprise/godmode/policies/policy_collections.php:43
+#: ../../enterprise/godmode/policies/policy_plugins.php:31
+#: ../../extensions/resource_registration.php:1107
+#: ../../godmode/setup/os.list.php:49
 #: ../../godmode/servers/plugin_registration.php:79
-#: ../../godmode/tag/tag.php:177 ../../godmode/category/category.php:98
-#: ../../operation/users/user_edit.php:244
+#: ../../godmode/modules/manage_network_components.php:306
+#: ../../godmode/modules/manage_nc_groups.php:286
+#: ../../godmode/category/category.php:101 ../../godmode/tag/tag.php:188
+#: ../../godmode/massive/massive_operations.php:410
+#: ../../godmode/massive/massive_add_profiles.php:45
+#: ../../godmode/massive/massive_delete_profiles.php:45
+#: ../../godmode/agentes/modificar_agente.php:117
+#: ../../godmode/alerts/configure_alert_template.php:412
+#: ../../godmode/alerts/alert_actions.php:215
+#: ../../godmode/alerts/alert_templates.php:261
+#: ../../godmode/alerts/alert_commands.php:636
+#: ../../godmode/alerts/configure_alert_command.php:189
+#: ../../godmode/alerts/configure_alert_action.php:113
+#: ../../godmode/users/user_list.php:425
+#: ../../godmode/users/profile_list.php:108
+#: ../../godmode/groups/modu_group_list.php:85
+#: ../../godmode/groups/group_list.php:396
 msgid "metaconsole"
 msgstr ""
 
-#: ../../views/calendar/list.php:60
-#: ../../views/calendar/special_days_edit.php:61
 #: ../../views/calendar/edit.php:61 ../../views/calendar/special_days.php:62
-#: ../../extensions/resource_registration.php:1089
-#: ../../godmode/modules/manage_nc_groups.php:279
+#: ../../views/calendar/special_days_edit.php:61
+#: ../../views/calendar/list.php:60 ../../operation/users/user_edit.php:246
+#: ../../enterprise/operation/agentes/policy_view.php:53
+#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:208
+#: ../../enterprise/extensions/csv_import_group.php:45
+#: ../../enterprise/godmode/modules/local_components.php:258
+#: ../../enterprise/godmode/modules/manage_inventory_modules.php:58
+#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:33
+#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:33
+#: ../../enterprise/godmode/massive/massive_edit_tags_policy.php:35
+#: ../../enterprise/godmode/massive/massive_add_alerts_policy.php:33
+#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:35
+#: ../../enterprise/godmode/massive/massive_tags_edit_policy.php:35
+#: ../../enterprise/godmode/agentes/agent_autoconfiguration.php:124
+#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:318
+#: ../../enterprise/godmode/policies/policy_agents.php:321
+#: ../../enterprise/godmode/policies/policy_queue.php:213
+#: ../../enterprise/godmode/policies/policy_linking.php:112
+#: ../../enterprise/godmode/policies/policy_modules.php:471
+#: ../../enterprise/godmode/policies/policies.php:263
+#: ../../enterprise/godmode/policies/policy_external_alerts.php:304
+#: ../../enterprise/godmode/policies/configure_policy.php:76
+#: ../../enterprise/godmode/policies/policy_inventory_modules.php:86
+#: ../../enterprise/godmode/policies/policy_alerts.php:59
+#: ../../enterprise/godmode/policies/policy_collections.php:45
+#: ../../enterprise/godmode/policies/policy_plugins.php:33
+#: ../../extensions/resource_registration.php:1109
+#: ../../godmode/setup/os.list.php:51
 #: ../../godmode/modules/manage_network_components.php:308
-#: ../../godmode/groups/group_list.php:395
-#: ../../godmode/groups/modu_group_list.php:87
-#: ../../godmode/users/profile_list.php:110
-#: ../../godmode/users/user_list.php:405
-#: ../../godmode/agentes/modificar_agente.php:119
+#: ../../godmode/modules/manage_nc_groups.php:288
+#: ../../godmode/category/category.php:103 ../../godmode/tag/tag.php:190
 #: ../../godmode/massive/massive_operations.php:412
-#: ../../godmode/massive/massive_delete_profiles.php:47
 #: ../../godmode/massive/massive_add_profiles.php:47
-#: ../../godmode/alerts/configure_alert_command.php:167
-#: ../../godmode/alerts/alert_actions.php:223
-#: ../../godmode/alerts/alert_commands.php:624
-#: ../../godmode/alerts/alert_templates.php:268
-#: ../../godmode/alerts/configure_alert_action.php:112
-#: ../../godmode/alerts/configure_alert_template.php:384
-#: ../../godmode/setup/os.list.php:48 ../../godmode/tag/tag.php:179
-#: ../../godmode/category/category.php:100
-#: ../../operation/users/user_edit.php:246
+#: ../../godmode/massive/massive_delete_profiles.php:47
+#: ../../godmode/agentes/modificar_agente.php:119
+#: ../../godmode/alerts/configure_alert_template.php:414
+#: ../../godmode/alerts/alert_actions.php:217
+#: ../../godmode/alerts/alert_templates.php:263
+#: ../../godmode/alerts/alert_commands.php:638
+#: ../../godmode/alerts/configure_alert_command.php:191
+#: ../../godmode/alerts/configure_alert_action.php:115
+#: ../../godmode/users/user_list.php:427
+#: ../../godmode/users/profile_list.php:110
+#: ../../godmode/groups/modu_group_list.php:87
+#: ../../godmode/groups/group_list.php:398
 msgid "any node"
 msgstr ""
 
-#: ../../views/calendar/list.php:65
-#: ../../views/calendar/special_days_edit.php:66
 #: ../../views/calendar/edit.php:66 ../../views/calendar/special_days.php:67
+#: ../../views/calendar/special_days_edit.php:66
+#: ../../views/calendar/list.php:65
 #, php-format
 msgid ""
 "This node is configured with centralized mode. All alert calendar "
 "information is read only. Go to %s to manage it."
 msgstr ""
 
-#: ../../views/calendar/list.php:92 ../../extensions/api_checker.php:161
-#: ../../godmode/modules/module_list.php:58
-#: ../../godmode/groups/group_list.php:837
-#: ../../godmode/groups/modu_group_list.php:251
-#: ../../godmode/agentes/fields_manager.php:118
-#: ../../godmode/agentes/agent_manager.php:216
-#: ../../godmode/agentes/agent_incidents.php:88
-#: ../../godmode/agentes/module_manager_editor_common.php:230
-#: ../../godmode/alerts/alert_commands.php:642
-#: ../../godmode/setup/os.list.php:65 ../../include/functions_events.php:6573
-#: ../../operation/incidents/list_integriaims_incidents.php:515
-#: ../../operation/events/events.build_table.php:146
-msgid "ID"
-msgstr ""
-
-#: ../../views/calendar/list.php:93 ../../views/calendar/edit.php:80
-#: ../../views/dashboard/list.php:95 ../../views/dashboard/formDashboard.php:77
-#: ../../extensions/files_repo/files_repo_list.php:55
-#: ../../godmode/modules/manage_nc_groups_form.php:68
-#: ../../godmode/modules/manage_network_templates_form.php:156
-#: ../../godmode/modules/manage_nc_groups.php:232
-#: ../../godmode/modules/manage_network_components_form_common.php:44
-#: ../../godmode/modules/module_list.php:59
-#: ../../godmode/modules/manage_network_templates.php:234
-#: ../../godmode/groups/configure_group.php:147
-#: ../../godmode/groups/group_list.php:839
-#: ../../godmode/groups/configure_modu_group.php:64
-#: ../../godmode/groups/modu_group_list.php:252
-#: ../../godmode/users/user_list.php:458
-#: ../../godmode/agentes/planned_downtime.editor.php:535
-#: ../../godmode/agentes/planned_downtime.editor.php:903
-#: ../../godmode/agentes/pandora_networkmap_empty.editor.php:132
-#: ../../godmode/agentes/configure_field.php:71
-#: ../../godmode/agentes/module_manager_editor_common.php:215
-#: ../../godmode/agentes/module_manager_editor_common.php:1212
-#: ../../godmode/agentes/module_manager.php:827
-#: ../../godmode/netflow/nf_edit.php:159
-#: ../../godmode/netflow/nf_edit_form.php:198
-#: ../../godmode/alerts/configure_alert_command.php:200
-#: ../../godmode/alerts/alert_actions.php:332
-#: ../../godmode/alerts/alert_commands.php:641
-#: ../../godmode/alerts/alert_templates.php:388
-#: ../../godmode/alerts/configure_alert_action.php:178
-#: ../../godmode/alerts/configure_alert_template.php:1125
-#: ../../godmode/setup/os.builder.php:33 ../../godmode/setup/os.list.php:66
-#: ../../godmode/setup/setup_integria.php:334
-#: ../../godmode/setup/setup_integria.php:455
-#: ../../godmode/reporting/create_container.php:223
-#: ../../godmode/reporting/reporting_builder.item_editor.php:994
-#: ../../godmode/reporting/reporting_builder.main.php:89
-#: ../../godmode/reporting/reporting_builder.main.php:93
-#: ../../godmode/reporting/graph_builder.main.php:125
-#: ../../godmode/events/event_filter.php:136
-#: ../../godmode/events/event_responses.editor.php:86
-#: ../../godmode/events/event_responses.list.php:50
-#: ../../godmode/servers/servers.build_table.php:65
-#: ../../godmode/servers/modificar_server.php:56
-#: ../../godmode/servers/plugin.php:338 ../../godmode/servers/plugin.php:814
-#: ../../godmode/tag/tag.php:217 ../../godmode/tag/edit_tag.php:192
-#: ../../godmode/category/edit_category.php:165
-#: ../../include/functions_reporting_html.php:1039
-#: ../../include/functions_reporting_html.php:1047
-#: ../../include/functions_reporting_html.php:2218
-#: ../../include/functions_reporting_html.php:2555
-#: ../../include/functions_reporting_html.php:3210
-#: ../../include/functions_reporting_html.php:5924
-#: ../../include/functions_treeview.php:78
-#: ../../include/class/NetworkMap.class.php:2896
-#: ../../include/class/NetworkMap.class.php:2937
-#: ../../include/class/NetworkMap.class.php:2955
-#: ../../include/class/NetworkMap.class.php:3258
-#: ../../include/class/ManageNetScanScripts.class.php:403
-#: ../../include/class/ManageNetScanScripts.class.php:545
+#: ../../views/calendar/edit.php:80 ../../views/calendar/list.php:93
+#: ../../views/dashboard/formDashboard.php:77 ../../views/dashboard/list.php:95
+#: ../../operation/search_policies.php:35
+#: ../../operation/gis_maps/gis_map.php:102 ../../operation/search_users.php:44
+#: ../../operation/search_maps.php:28
+#: ../../operation/netflow/nf_live_view.php:362
+#: ../../operation/agentes/pandora_networkmap.php:707
+#: ../../operation/agentes/pandora_networkmap.editor.php:273
+#: ../../operation/agentes/pandora_networkmap.view.php:100
+#: ../../operation/search_helps.php:31
+#: ../../operation/incidents/configure_integriaims_incident.php:217
 #: ../../include/class/ModuleTemplates.class.php:892
 #: ../../include/class/ModuleTemplates.class.php:1050
+#: ../../include/class/ManageNetScanScripts.class.php:403
+#: ../../include/class/ManageNetScanScripts.class.php:545
 #: ../../include/class/CalendarManager.class.php:975
-#: ../../include/functions_filemanager.php:631
+#: ../../include/class/NetworkMap.class.php:2906
+#: ../../include/class/NetworkMap.class.php:2947
+#: ../../include/class/NetworkMap.class.php:2965
+#: ../../include/class/NetworkMap.class.php:3268
+#: ../../include/functions_events.php:4451
+#: ../../include/functions_events.php:4540
+#: ../../include/functions_filemanager.php:604
+#: ../../include/functions_treeview.php:78
 #: ../../include/functions_snmp_browser.php:1662
-#: ../../include/functions_events.php:4373
-#: ../../include/functions_events.php:4462 ../../operation/search_users.php:43
-#: ../../operation/search_helps.php:30
-#: ../../operation/agentes/pandora_networkmap.editor.php:273
-#: ../../operation/agentes/pandora_networkmap.php:707
-#: ../../operation/agentes/pandora_networkmap.view.php:100
-#: ../../operation/netflow/nf_live_view.php:362
-#: ../../operation/gis_maps/gis_map.php:102
-#: ../../operation/incidents/configure_integriaims_incident.php:217
-#: ../../operation/search_policies.php:34 ../../operation/search_maps.php:27
+#: ../../include/functions_reporting_html.php:1047
+#: ../../include/functions_reporting_html.php:1055
+#: ../../include/functions_reporting_html.php:2353
+#: ../../include/functions_reporting_html.php:2690
+#: ../../include/functions_reporting_html.php:3387
+#: ../../include/functions_reporting_html.php:6101
+#: ../../enterprise/tools/ipam/ipam_excel.php:131
+#: ../../enterprise/tools/ipam/ipam_excel.php:200
+#: ../../enterprise/tools/ipam/ipam_vlan_config.php:667
+#: ../../enterprise/tools/ipam/ipam_network_location_config.php:135
+#: ../../enterprise/tools/ipam/ipam_network_location_config.php:257
+#: ../../enterprise/tools/ipam/ipam_supernet_config.php:1053
+#: ../../enterprise/tools/ipam/ipam_list.php:576
+#: ../../enterprise/tools/ipam/ipam_editor.php:140
+#: ../../enterprise/views/ncm/snippets/edit.php:81
+#: ../../enterprise/views/ncm/snippets/list.php:70
+#: ../../enterprise/views/ncm/firmwares/edit.php:80
+#: ../../enterprise/views/ncm/firmwares/list.php:73
+#: ../../enterprise/views/ncm/vendors/edit.php:67
+#: ../../enterprise/views/ncm/vendors/list.php:70
+#: ../../enterprise/views/ncm/devices/list.php:114
+#: ../../enterprise/views/ncm/templates/edit.php:81
+#: ../../enterprise/views/ncm/templates/list.php:73
+#: ../../enterprise/views/ncm/models/edit.php:68
+#: ../../enterprise/views/ncm/models/list.php:71
+#: ../../enterprise/views/ipam/sites/edit.php:40
+#: ../../enterprise/views/ipam/sites/list.php:46
+#: ../../enterprise/views/cluster/list.php:58
+#: ../../enterprise/operation/services/services.service.php:118
+#: ../../enterprise/operation/services/services.list.php:497
+#: ../../enterprise/operation/agentes/tag_view.php:677
+#: ../../enterprise/operation/agentes/policy_view.php:163
+#: ../../enterprise/operation/agentes/policy_view.php:395
+#: ../../enterprise/operation/agentes/collection_view.php:75
+#: ../../enterprise/operation/agentes/manage_transmap_creation.php:186
+#: ../../enterprise/operation/agentes/manage_transmap_creation.php:363
+#: ../../enterprise/operation/agentes/manage_transmap_creation.php:489
+#: ../../enterprise/include/ajax/servers.ajax.php:100
+#: ../../enterprise/include/ajax/servers.ajax.php:158
+#: ../../enterprise/include/ajax/servers.ajax.php:284
+#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:393
+#: ../../enterprise/include/class/Omnishell.class.php:668
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:763
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2901
+#: ../../enterprise/include/functions_services.php:1603
+#: ../../enterprise/include/functions_ipam.php:1348
+#: ../../enterprise/include/functions_ipam.php:1981
+#: ../../enterprise/meta/include/functions_autoprovision.php:474
+#: ../../enterprise/meta/include/functions_wizard_meta.php:466
+#: ../../enterprise/meta/include/functions_wizard_meta.php:584
+#: ../../enterprise/meta/include/functions_wizard_meta.php:1134
+#: ../../enterprise/meta/include/functions_wizard_meta.php:1460
+#: ../../enterprise/meta/include/functions_wizard_meta.php:1582
+#: ../../enterprise/meta/include/functions_wizard_meta.php:1685
+#: ../../enterprise/meta/advanced/servers.build_table.php:60
+#: ../../enterprise/meta/agentsearch.php:327
+#: ../../enterprise/mobile/include/enterprise.class.php:87
+#: ../../enterprise/godmode/setup/setup_auth.php:102
+#: ../../enterprise/godmode/setup/edit_skin.php:233
+#: ../../enterprise/godmode/setup/setup_skins.php:87
+#: ../../enterprise/godmode/servers/manage_export_form.php:75
+#: ../../enterprise/godmode/servers/credential_boxes_satellite.php:249
+#: ../../enterprise/godmode/servers/manage_export.php:137
+#: ../../enterprise/godmode/servers/list_satellite.php:37
+#: ../../enterprise/godmode/servers/manage_credential_boxes.php:58
+#: ../../enterprise/godmode/modules/configure_local_component.php:156
+#: ../../enterprise/godmode/modules/local_components.php:621
+#: ../../enterprise/godmode/modules/manage_inventory_modules.php:272
+#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:99
+#: ../../enterprise/godmode/services/services.service.php:538
+#: ../../enterprise/godmode/reporting/visual_console_template.php:203
+#: ../../enterprise/godmode/reporting/visual_console_template.php:270
+#: ../../enterprise/godmode/reporting/mysql_builder.php:96
+#: ../../enterprise/godmode/reporting/mysql_builder.php:227
+#: ../../enterprise/godmode/reporting/mysql_builder.php:228
+#: ../../enterprise/godmode/reporting/graph_template_editor.php:191
+#: ../../enterprise/godmode/reporting/reporting_builder.template_editor.php:182
+#: ../../enterprise/godmode/reporting/reporting_builder.template_editor.php:186
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1674
+#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:107
+#: ../../enterprise/godmode/massive/massive_create_services.php:636
+#: ../../enterprise/godmode/agentes/inventory_manager.php:220
+#: ../../enterprise/godmode/agentes/agent_autoconfiguration.php:140
+#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:344
+#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:631
+#: ../../enterprise/godmode/agentes/collection_manager.php:109
+#: ../../enterprise/godmode/agentes/collection_manager.php:206
+#: ../../enterprise/godmode/agentes/pandora_networkmap_empty.editor.php:130
+#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:76
+#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:535
+#: ../../enterprise/godmode/alerts/alert_inventory_builder.php:163
+#: ../../enterprise/godmode/policies/policy_agents.php:847
+#: ../../enterprise/godmode/policies/policy_agents.php:1367
+#: ../../enterprise/godmode/policies/policy_modules.php:1464
+#: ../../enterprise/godmode/policies/policies.php:406
+#: ../../enterprise/godmode/policies/configure_policy.php:100
+#: ../../enterprise/godmode/policies/policy_inventory_modules.php:302
+#: ../../enterprise/godmode/policies/policy_collections.php:169
+#: ../../enterprise/godmode/policies/policy_collections.php:263
+#: ../../extensions/files_repo/files_repo_list.php:55
+#: ../../godmode/setup/os.list.php:69
+#: ../../godmode/setup/setup_integria.php:337
+#: ../../godmode/setup/setup_integria.php:458
+#: ../../godmode/setup/os.builder.php:36 ../../godmode/servers/plugin.php:339
+#: ../../godmode/servers/plugin.php:815
+#: ../../godmode/servers/modificar_server.php:58
+#: ../../godmode/servers/servers.build_table.php:79
+#: ../../godmode/modules/module_list.php:62
+#: ../../godmode/modules/manage_network_templates.php:246
+#: ../../godmode/modules/manage_network_templates_form.php:168
+#: ../../godmode/modules/manage_nc_groups.php:241
+#: ../../godmode/modules/manage_network_components_form_common.php:46
+#: ../../godmode/modules/manage_nc_groups_form.php:68
+#: ../../godmode/category/edit_category.php:180
+#: ../../godmode/reporting/reporting_builder.main.php:89
+#: ../../godmode/reporting/reporting_builder.main.php:93
+#: ../../godmode/reporting/create_container.php:223
+#: ../../godmode/reporting/reporting_builder.item_editor.php:1011
+#: ../../godmode/reporting/graph_builder.main.php:125
+#: ../../godmode/tag/edit_tag.php:211 ../../godmode/tag/tag.php:228
+#: ../../godmode/events/event_responses.editor.php:86
+#: ../../godmode/events/event_responses.list.php:50
+#: ../../godmode/events/event_filter.php:136
+#: ../../godmode/netflow/nf_edit.php:159
+#: ../../godmode/netflow/nf_edit_form.php:199
+#: ../../godmode/agentes/module_manager.php:827
+#: ../../godmode/agentes/configure_field.php:74
+#: ../../godmode/agentes/module_manager_editor_common.php:215
+#: ../../godmode/agentes/module_manager_editor_common.php:1212
+#: ../../godmode/agentes/planned_downtime.editor.php:546
+#: ../../godmode/agentes/planned_downtime.editor.php:914
+#: ../../godmode/agentes/pandora_networkmap_empty.editor.php:132
+#: ../../godmode/alerts/configure_alert_template.php:1052
+#: ../../godmode/alerts/alert_actions.php:326
+#: ../../godmode/alerts/alert_templates.php:383
+#: ../../godmode/alerts/alert_commands.php:655
+#: ../../godmode/alerts/configure_alert_command.php:224
+#: ../../godmode/alerts/configure_alert_action.php:181
+#: ../../godmode/users/user_list.php:480
+#: ../../godmode/groups/configure_group.php:150
+#: ../../godmode/groups/modu_group_list.php:252
+#: ../../godmode/groups/group_list.php:842
+#: ../../godmode/groups/configure_modu_group.php:67
 msgid "Name"
 msgstr ""
 
-#: ../../views/calendar/list.php:94
-#: ../../views/calendar/special_days_edit.php:106
 #: ../../views/calendar/edit.php:91 ../../views/calendar/special_days.php:112
-#: ../../views/dashboard/list.php:97
-#: ../../views/dashboard/formDashboard.php:108
-#: ../../extensions/agents_modules.php:391
-#: ../../godmode/modules/manage_network_templates_form.php:223
-#: ../../godmode/modules/manage_network_templates_form.php:291
-#: ../../godmode/modules/manage_network_templates_form.php:327
-#: ../../godmode/modules/manage_network_components_form_common.php:129
-#: ../../godmode/modules/manage_network_components.php:624
-#: ../../godmode/modules/manage_network_components.php:759
-#: ../../godmode/users/user_list.php:368
-#: ../../godmode/agentes/configurar_agente.php:507
-#: ../../godmode/agentes/modificar_agente.php:289
-#: ../../godmode/agentes/modificar_agente.php:653
-#: ../../godmode/agentes/planned_downtime.list.php:400
-#: ../../godmode/agentes/planned_downtime.editor.php:545
-#: ../../godmode/agentes/planned_downtime.editor.php:904
-#: ../../godmode/agentes/pandora_networkmap_empty.editor.php:141
-#: ../../godmode/agentes/agent_incidents.php:92
-#: ../../godmode/netflow/nf_edit.php:160
-#: ../../godmode/netflow/nf_edit_form.php:202
-#: ../../godmode/snmpconsole/snmp_alert.php:721
-#: ../../godmode/massive/massive_copy_modules.php:99
-#: ../../godmode/massive/massive_copy_modules.php:252
-#: ../../godmode/massive/massive_standby_alerts.php:161
-#: ../../godmode/massive/massive_delete_action_alerts.php:197
-#: ../../godmode/massive/massive_add_alerts.php:199
-#: ../../godmode/massive/massive_delete_agents.php:186
-#: ../../godmode/massive/massive_enable_disable_alerts.php:161
-#: ../../godmode/massive/massive_edit_agents.php:418
-#: ../../godmode/massive/massive_edit_agents.php:586
-#: ../../godmode/massive/massive_delete_profiles.php:140
-#: ../../godmode/massive/massive_delete_alerts.php:272
-#: ../../godmode/massive/massive_add_action_alerts.php:191
-#: ../../godmode/massive/massive_add_profiles.php:136
-#: ../../godmode/alerts/configure_alert_command.php:241
-#: ../../godmode/alerts/alert_actions.php:266
-#: ../../godmode/alerts/alert_actions.php:334
-#: ../../godmode/alerts/alert_list.list.php:147
-#: ../../godmode/alerts/alert_commands.php:643
-#: ../../godmode/alerts/alert_templates.php:389
-#: ../../godmode/alerts/configure_alert_action.php:209
-#: ../../godmode/alerts/configure_alert_template.php:1147
-#: ../../godmode/setup/news.php:186 ../../godmode/setup/gis.php:66
-#: ../../godmode/setup/gis_step_2.php:213
-#: ../../godmode/setup/setup_integria.php:358
-#: ../../godmode/setup/setup_integria.php:480
+#: ../../views/calendar/special_days_edit.php:106
+#: ../../views/calendar/list.php:94 ../../views/dashboard/formDashboard.php:108
+#: ../../views/dashboard/list.php:97 ../../general/ui/agents_list.php:76
+#: ../../operation/visual_console/view.php:351
+#: ../../operation/gis_maps/ajax.php:332 ../../operation/gis_maps/ajax.php:438
+#: ../../operation/gis_maps/gis_map.php:103 ../../operation/search_maps.php:29
+#: ../../operation/heatmap.php:115 ../../operation/heatmap.php:117
+#: ../../operation/search_agents.php:46 ../../operation/search_agents.php:52
+#: ../../operation/events/sound_events.php:109
+#: ../../operation/events/events.build_table.php:222
+#: ../../operation/events/events.php:1068
+#: ../../operation/events/events_list.php:917
+#: ../../operation/netflow/nf_live_view.php:372
+#: ../../operation/agentes/status_monitor.php:450
+#: ../../operation/agentes/group_view.php:222
+#: ../../operation/agentes/interface_view.functions.php:37
+#: ../../operation/agentes/exportdata.php:227
+#: ../../operation/agentes/alerts_status.functions.php:89
+#: ../../operation/agentes/estado_agente.php:254
+#: ../../operation/agentes/estado_agente.php:754
+#: ../../operation/agentes/pandora_networkmap.editor.php:289
+#: ../../operation/agentes/pandora_networkmap.editor.php:337
+#: ../../operation/agentes/estado_generalagente.php:384
+#: ../../operation/agentes/pandora_networkmap.view.php:103
+#: ../../operation/agentes/pandora_networkmap.view.php:137
+#: ../../operation/agentes/ver_agente.php:1009
+#: ../../operation/users/user_edit.php:814
+#: ../../operation/incidents/configure_integriaims_incident.php:266
+#: ../../operation/incidents/list_integriaims_incidents.php:331
+#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:324
+#: ../../include/functions_cron.php:468 ../../include/functions_gis.php:228
+#: ../../include/functions_visual_map_editor.php:70
+#: ../../include/functions_visual_map_editor.php:594
+#: ../../include/functions_visual_map_editor.php:1397
+#: ../../include/ajax/heatmap.ajax.php:110
+#: ../../include/ajax/heatmap.ajax.php:344
+#: ../../include/ajax/custom_fields.php:628
+#: ../../include/ajax/custom_fields.php:677
+#: ../../include/class/ModuleTemplates.class.php:780
+#: ../../include/class/AgentsAlerts.class.php:773
+#: ../../include/class/CredentialStore.class.php:802
+#: ../../include/class/CredentialStore.class.php:833
+#: ../../include/class/CredentialStore.class.php:923
+#: ../../include/class/CustomNetScan.class.php:500
+#: ../../include/class/CalendarManager.class.php:976
+#: ../../include/class/NetworkMap.class.php:2841
+#: ../../include/class/NetworkMap.class.php:2890
+#: ../../include/class/NetworkMap.class.php:3206
+#: ../../include/lib/Dashboard/Widgets/alerts_fired.php:226
+#: ../../include/functions_events.php:195
+#: ../../include/functions_events.php:248
+#: ../../include/functions_events.php:5108
+#: ../../include/functions_events.php:6707
+#: ../../include/functions_container.php:149
+#: ../../include/functions_graph.php:5218
+#: ../../include/functions_snmp_browser.php:1665
+#: ../../include/functions_visual_map.php:4229
+#: ../../include/functions_profile.php:214
+#: ../../include/rest-api/models/VisualConsole/Item.php:2139
+#: ../../include/rest-api/models/VisualConsole/Items/Group.php:549
+#: ../../include/functions_html.php:1521
+#: ../../include/functions_reporting_html.php:1500
+#: ../../include/functions_reporting_html.php:2077
+#: ../../include/functions_reporting_html.php:3338
+#: ../../include/functions_reporting_html.php:3391
+#: ../../include/functions_reporting_html.php:6189
+#: ../../enterprise/tools/ipam/ipam_editor.php:293
+#: ../../enterprise/views/ncm/devices/list.php:116
+#: ../../enterprise/views/cluster/list.php:60
+#: ../../enterprise/operation/log/log_viewer.php:533
+#: ../../enterprise/operation/services/services.service.php:121
+#: ../../enterprise/operation/services/services.list.php:260
+#: ../../enterprise/operation/services/services.list.php:502
+#: ../../enterprise/operation/services/services.table_services.php:182
+#: ../../enterprise/operation/agentes/tag_view.php:108
+#: ../../enterprise/operation/agentes/tag_view.php:604
+#: ../../enterprise/operation/agentes/transactional_map.php:208
+#: ../../enterprise/operation/agentes/manage_transmap_creation.php:366
+#: ../../enterprise/operation/agentes/manage_transmap_creation.php:492
+#: ../../enterprise/operation/agentes/ver_agente.php:52
+#: ../../enterprise/operation/agentes/ver_agente.php:73
+#: ../../enterprise/operation/inventory/inventory.php:322
+#: ../../enterprise/include/functions_reporting_csv.php:718
+#: ../../enterprise/include/functions_reporting_csv.php:2559
+#: ../../enterprise/include/functions_reporting_csv.php:2738
+#: ../../enterprise/include/ajax/ipam.ajax.php:487
+#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:471
+#: ../../enterprise/include/class/Aws.cloud.php:578
+#: ../../enterprise/include/class/Aws.cloud.php:1233
+#: ../../enterprise/include/class/Aws.S3.php:434
+#: ../../enterprise/include/class/MySQL.app.php:474
+#: ../../enterprise/include/class/Oracle.app.php:476
+#: ../../enterprise/include/class/DB2.app.php:469
+#: ../../enterprise/include/class/SAP.app.php:644
+#: ../../enterprise/include/class/Omnishell.class.php:399
+#: ../../enterprise/include/class/Omnishell.class.php:428
+#: ../../enterprise/include/class/Omnishell.class.php:678
+#: ../../enterprise/include/class/VMware.app.php:763
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:775
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:925
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2797
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2902
+#: ../../enterprise/include/class/Azure.cloud.php:835
+#: ../../enterprise/include/class/Google.cloud.php:785
+#: ../../enterprise/include/functions_tasklist.php:157
+#: ../../enterprise/include/lib/ClusterViewer/ClusterWizard.php:823
+#: ../../enterprise/include/functions_events.php:97
+#: ../../enterprise/meta/include/functions_events_meta.php:74
+#: ../../enterprise/meta/include/functions_wizard_meta.php:194
+#: ../../enterprise/meta/include/functions_wizard_meta.php:1808
+#: ../../enterprise/meta/monitoring/custom_fields_view.php:146
+#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:276
+#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:373
+#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:438
+#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:706
+#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:785
+#: ../../enterprise/meta/advanced/cron_main.php:422
+#: ../../enterprise/meta/advanced/collections.php:314
+#: ../../enterprise/meta/agentsearch.php:138
+#: ../../enterprise/meta/agentsearch.php:329
+#: ../../enterprise/godmode/modules/configure_local_component.php:274
+#: ../../enterprise/godmode/modules/local_components.php:498
+#: ../../enterprise/godmode/modules/local_components.php:623
+#: ../../enterprise/godmode/services/services.service.php:561
+#: ../../enterprise/godmode/reporting/visual_console_template.php:218
+#: ../../enterprise/godmode/reporting/visual_console_template.php:271
+#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:329
+#: ../../enterprise/godmode/reporting/graph_template_editor.php:196
+#: ../../enterprise/godmode/reporting/graph_template_list.php:205
+#: ../../enterprise/godmode/reporting/reporting_builder.template_editor.php:194
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:318
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1395
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1997
+#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:110
+#: ../../enterprise/godmode/reporting/reporting_builder.template.php:500
+#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:102
+#: ../../enterprise/godmode/massive/massive_create_services.php:658
+#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:669
+#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:97
+#: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:196
+#: ../../enterprise/godmode/agentes/pandora_networkmap_empty.editor.php:139
+#: ../../enterprise/godmode/agentes/collections.php:329
+#: ../../enterprise/godmode/alerts/alert_inventory_list.php:139
+#: ../../enterprise/godmode/policies/policy_agents.php:798
+#: ../../enterprise/godmode/policies/policy_agents.php:855
+#: ../../enterprise/godmode/policies/policies.php:308
+#: ../../enterprise/godmode/policies/policies.php:408
+#: ../../enterprise/godmode/policies/configure_policy.php:103
+#: ../../extensions/agents_modules.php:404
+#: ../../mobile/operation/modules.php:171
+#: ../../mobile/operation/modules.php:176
+#: ../../mobile/operation/modules.php:266
+#: ../../mobile/operation/modules.php:267
+#: ../../mobile/operation/visualmaps.php:113
+#: ../../mobile/operation/visualmaps.php:118
+#: ../../mobile/operation/alerts.php:113 ../../mobile/operation/alerts.php:118
+#: ../../mobile/operation/alerts.php:231 ../../mobile/operation/alerts.php:232
+#: ../../mobile/operation/events.php:385 ../../mobile/operation/events.php:390
+#: ../../mobile/operation/events.php:544 ../../mobile/operation/events.php:663
+#: ../../mobile/operation/events.php:664 ../../mobile/operation/agents.php:95
+#: ../../mobile/operation/agents.php:157 ../../mobile/operation/agents.php:234
+#: ../../mobile/operation/agents.php:235 ../../mobile/operation/agents.php:405
+#: ../../godmode/setup/setup_integria.php:361
+#: ../../godmode/setup/setup_integria.php:483
+#: ../../godmode/setup/gis_step_2.php:216 ../../godmode/setup/news.php:186
+#: ../../godmode/setup/gis.php:69
+#: ../../godmode/modules/manage_network_components.php:618
+#: ../../godmode/modules/manage_network_components.php:752
+#: ../../godmode/modules/manage_network_templates_form.php:235
+#: ../../godmode/modules/manage_network_templates_form.php:303
+#: ../../godmode/modules/manage_network_templates_form.php:339
+#: ../../godmode/modules/manage_network_components_form_common.php:131
+#: ../../godmode/gis_maps/configure_gis_map.php:498
+#: ../../godmode/gis_maps/configure_gis_map.php:635
+#: ../../godmode/reporting/reporting_builder.main.php:101
+#: ../../godmode/reporting/map_builder.php:356
+#: ../../godmode/reporting/map_builder.php:385
+#: ../../godmode/reporting/graphs.php:231
+#: ../../godmode/reporting/graphs.php:313
 #: ../../godmode/reporting/visual_console_builder.data.php:136
 #: ../../godmode/reporting/create_container.php:244
 #: ../../godmode/reporting/create_container.php:534
 #: ../../godmode/reporting/create_container.php:625
-#: ../../godmode/reporting/map_builder.php:358
-#: ../../godmode/reporting/map_builder.php:387
-#: ../../godmode/reporting/graphs.php:221
-#: ../../godmode/reporting/graphs.php:303
 #: ../../godmode/reporting/visual_console_favorite.php:161
-#: ../../godmode/reporting/reporting_builder.item_editor.php:70
-#: ../../godmode/reporting/reporting_builder.item_editor.php:194
-#: ../../godmode/reporting/reporting_builder.item_editor.php:805
-#: ../../godmode/reporting/reporting_builder.item_editor.php:1442
-#: ../../godmode/reporting/reporting_builder.item_editor.php:3200
 #: ../../godmode/reporting/visual_console_builder.elements.php:104
 #: ../../godmode/reporting/visual_console_builder.elements.php:313
-#: ../../godmode/reporting/reporting_builder.main.php:101
-#: ../../godmode/reporting/reporting_builder.php:768
-#: ../../godmode/reporting/reporting_builder.php:959
+#: ../../godmode/reporting/reporting_builder.item_editor.php:72
+#: ../../godmode/reporting/reporting_builder.item_editor.php:198
+#: ../../godmode/reporting/reporting_builder.item_editor.php:821
+#: ../../godmode/reporting/reporting_builder.item_editor.php:1459
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3280
+#: ../../godmode/reporting/reporting_builder.php:757
+#: ../../godmode/reporting/reporting_builder.php:948
 #: ../../godmode/reporting/graph_builder.main.php:143
-#: ../../godmode/events/event_filter.php:137
-#: ../../godmode/events/event_responses.editor.php:103
-#: ../../godmode/events/event_edit_filter.php:293
-#: ../../godmode/events/event_responses.list.php:52
+#: ../../godmode/snmpconsole/snmp_alert.php:754
+#: ../../godmode/events/event_edit_filter.php:299
+#: ../../godmode/events/event_responses.editor.php:105
 #: ../../godmode/events/custom_events.php:100
+#: ../../godmode/events/event_responses.list.php:52
+#: ../../godmode/events/event_filter.php:137
+#: ../../godmode/netflow/nf_edit.php:160
+#: ../../godmode/netflow/nf_edit_form.php:203
+#: ../../godmode/massive/massive_add_alerts.php:211
+#: ../../godmode/massive/massive_copy_modules.php:100
+#: ../../godmode/massive/massive_copy_modules.php:253
+#: ../../godmode/massive/massive_add_profiles.php:203
+#: ../../godmode/massive/massive_standby_alerts.php:185
+#: ../../godmode/massive/massive_add_action_alerts.php:197
+#: ../../godmode/massive/massive_edit_agents.php:508
+#: ../../godmode/massive/massive_edit_agents.php:685
+#: ../../godmode/massive/massive_delete_profiles.php:152
+#: ../../godmode/massive/massive_delete_action_alerts.php:209
+#: ../../godmode/massive/massive_delete_alerts.php:284
+#: ../../godmode/massive/massive_delete_agents.php:187
+#: ../../godmode/massive/massive_enable_disable_alerts.php:169
 #: ../../godmode/wizards/HostDevices.class.php:932
-#: ../../mobile/operation/agents.php:77 ../../mobile/operation/agents.php:139
-#: ../../mobile/operation/agents.php:215 ../../mobile/operation/agents.php:216
-#: ../../mobile/operation/agents.php:386 ../../mobile/operation/modules.php:153
-#: ../../mobile/operation/modules.php:158
-#: ../../mobile/operation/modules.php:247
-#: ../../mobile/operation/modules.php:248 ../../mobile/operation/alerts.php:95
-#: ../../mobile/operation/alerts.php:100 ../../mobile/operation/alerts.php:212
-#: ../../mobile/operation/alerts.php:213
-#: ../../mobile/operation/visualmaps.php:106
-#: ../../mobile/operation/visualmaps.php:111
-#: ../../mobile/operation/events.php:385 ../../mobile/operation/events.php:390
-#: ../../mobile/operation/events.php:544 ../../mobile/operation/events.php:662
-#: ../../mobile/operation/events.php:663
-#: ../../include/functions_visual_map_editor.php:70
-#: ../../include/functions_visual_map_editor.php:594
-#: ../../include/functions_visual_map_editor.php:1397
-#: ../../include/functions_reporting_html.php:1492
-#: ../../include/functions_reporting_html.php:3161
-#: ../../include/functions_reporting_html.php:3214
-#: ../../include/functions_reporting_html.php:6012
-#: ../../include/functions_cron.php:459
-#: ../../include/ajax/custom_fields.php:628
-#: ../../include/ajax/custom_fields.php:677
-#: ../../include/functions_graph.php:5199 ../../include/functions_gis.php:228
-#: ../../include/functions_profile.php:214
-#: ../../include/functions_visual_map.php:4229
-#: ../../include/rest-api/models/VisualConsole/Items/Group.php:544
-#: ../../include/rest-api/models/VisualConsole/Item.php:2108
-#: ../../include/functions_html.php:1436
-#: ../../include/class/NetworkMap.class.php:2831
-#: ../../include/class/NetworkMap.class.php:2880
-#: ../../include/class/NetworkMap.class.php:3196
-#: ../../include/class/AgentsAlerts.class.php:770
-#: ../../include/class/CredentialStore.class.php:790
-#: ../../include/class/CredentialStore.class.php:821
-#: ../../include/class/CredentialStore.class.php:911
-#: ../../include/class/CustomNetScan.class.php:500
-#: ../../include/class/ModuleTemplates.class.php:780
-#: ../../include/class/CalendarManager.class.php:976
-#: ../../include/functions_container.php:149
-#: ../../include/lib/Dashboard/Widgets/alerts_fired.php:226
-#: ../../include/functions_snmp_browser.php:1665
-#: ../../include/functions_events.php:195
-#: ../../include/functions_events.php:247
-#: ../../include/functions_events.php:5028
-#: ../../include/functions_events.php:6627 ../../operation/search_agents.php:46
-#: ../../operation/search_agents.php:52 ../../operation/users/user_edit.php:813
-#: ../../operation/visual_console/view.php:351
-#: ../../operation/agentes/estado_agente.php:251
-#: ../../operation/agentes/estado_agente.php:752
-#: ../../operation/agentes/pandora_networkmap.editor.php:289
-#: ../../operation/agentes/pandora_networkmap.editor.php:337
-#: ../../operation/agentes/interface_view.functions.php:37
-#: ../../operation/agentes/exportdata.php:226
-#: ../../operation/agentes/status_monitor.php:450
-#: ../../operation/agentes/group_view.php:219
-#: ../../operation/agentes/pandora_networkmap.view.php:103
-#: ../../operation/agentes/pandora_networkmap.view.php:137
-#: ../../operation/agentes/ver_agente.php:980
-#: ../../operation/agentes/estado_generalagente.php:384
-#: ../../operation/agentes/alerts_status.functions.php:89
-#: ../../operation/netflow/nf_live_view.php:372
-#: ../../operation/gis_maps/gis_map.php:103
-#: ../../operation/gis_maps/ajax.php:332 ../../operation/gis_maps/ajax.php:438
-#: ../../operation/incidents/configure_integriaims_incident.php:266
-#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:324
-#: ../../operation/incidents/list_integriaims_incidents.php:331
-#: ../../operation/events/events_list.php:913
-#: ../../operation/events/sound_events.php:106
-#: ../../operation/events/events.php:1057
-#: ../../operation/events/events.build_table.php:222
-#: ../../operation/search_maps.php:28 ../../general/ui/agents_list.php:76
+#: ../../godmode/agentes/configurar_agente.php:494
+#: ../../godmode/agentes/planned_downtime.editor.php:556
+#: ../../godmode/agentes/planned_downtime.editor.php:915
+#: ../../godmode/agentes/planned_downtime.list.php:612
+#: ../../godmode/agentes/agent_incidents.php:92
+#: ../../godmode/agentes/pandora_networkmap_empty.editor.php:141
+#: ../../godmode/agentes/modificar_agente.php:289
+#: ../../godmode/agentes/modificar_agente.php:651
+#: ../../godmode/alerts/configure_alert_template.php:1074
+#: ../../godmode/alerts/alert_list.list.php:147
+#: ../../godmode/alerts/alert_actions.php:260
+#: ../../godmode/alerts/alert_actions.php:328
+#: ../../godmode/alerts/alert_templates.php:384
+#: ../../godmode/alerts/alert_commands.php:657
+#: ../../godmode/alerts/configure_alert_command.php:265
+#: ../../godmode/alerts/configure_alert_action.php:212
+#: ../../godmode/users/user_list.php:390
 msgid "Group"
 msgstr ""
 
-#: ../../views/calendar/list.php:95
-#: ../../views/calendar/special_days_edit.php:138
 #: ../../views/calendar/edit.php:103
-#: ../../extensions/files_repo/files_repo_form.php:83
-#: ../../extensions/files_repo/files_repo_list.php:56
-#: ../../godmode/modules/manage_network_templates_form.php:160
-#: ../../godmode/modules/manage_network_templates_form.php:222
-#: ../../godmode/modules/manage_network_components_form_common.php:333
-#: ../../godmode/modules/manage_network_components.php:758
-#: ../../godmode/modules/manage_network_components_form_wizard.php:447
-#: ../../godmode/modules/module_list.php:60
-#: ../../godmode/modules/manage_network_templates.php:235
-#: ../../godmode/groups/configure_group.php:239
-#: ../../godmode/groups/group_list.php:847
-#: ../../godmode/users/user_list.php:463
-#: ../../godmode/agentes/agent_template.php:237
-#: ../../godmode/agentes/modificar_agente.php:654
-#: ../../godmode/agentes/planned_downtime.list.php:399
-#: ../../godmode/agentes/planned_downtime.editor.php:561
-#: ../../godmode/agentes/pandora_networkmap_empty.editor.php:164
-#: ../../godmode/agentes/agent_manager.php:428
-#: ../../godmode/agentes/module_manager_editor_common.php:1081
-#: ../../godmode/agentes/module_manager.php:862
-#: ../../godmode/netflow/nf_item_list.php:175
-#: ../../godmode/snmpconsole/snmp_alert.php:691
-#: ../../godmode/snmpconsole/snmp_alert.php:1199
-#: ../../godmode/snmpconsole/snmp_filters.php:201
-#: ../../godmode/snmpconsole/snmp_filters.php:289
-#: ../../godmode/massive/massive_edit_plugins.php:489
-#: ../../godmode/massive/massive_edit_agents.php:651
-#: ../../godmode/massive/massive_edit_modules.php:731
-#: ../../godmode/alerts/configure_alert_command.php:259
-#: ../../godmode/alerts/alert_commands.php:644
-#: ../../godmode/alerts/alert_templates.php:46
-#: ../../godmode/alerts/configure_alert_template.php:1179
-#: ../../godmode/setup/os.builder.php:34 ../../godmode/setup/os.list.php:67
-#: ../../godmode/setup/snmp_wizard.php:41
-#: ../../godmode/reporting/create_container.php:266
-#: ../../godmode/reporting/graphs.php:301
-#: ../../godmode/reporting/reporting_builder.item_editor.php:72
-#: ../../godmode/reporting/reporting_builder.item_editor.php:1066
-#: ../../godmode/reporting/reporting_builder.main.php:215
-#: ../../godmode/reporting/reporting_builder.php:922
-#: ../../godmode/reporting/graph_builder.main.php:180
-#: ../../godmode/events/event_responses.editor.php:109
-#: ../../godmode/events/event_responses.list.php:51
-#: ../../godmode/servers/modificar_server.php:64
-#: ../../godmode/servers/plugin.php:357 ../../godmode/servers/plugin.php:484
-#: ../../godmode/tag/tag.php:217 ../../godmode/tag/tag.php:267
-#: ../../godmode/tag/edit_tag.php:200 ../../mobile/operation/tactical.php:351
-#: ../../include/functions_reporting_html.php:155
-#: ../../include/functions_reporting_html.php:1496
-#: ../../include/functions_reporting_html.php:3164
-#: ../../include/functions_reporting_html.php:3215
-#: ../../include/functions_reporting_html.php:4978
-#: ../../include/functions_reporting_html.php:5925
-#: ../../include/ajax/events_extended.php:91 ../../include/ajax/module.php:979
-#: ../../include/functions_treeview.php:127
-#: ../../include/functions_treeview.php:652
-#: ../../include/class/ConfigPEN.class.php:448
-#: ../../include/class/ConfigPEN.class.php:599
-#: ../../include/class/ManageNetScanScripts.class.php:404
-#: ../../include/class/ManageNetScanScripts.class.php:558
-#: ../../include/class/ManageNetScanScripts.class.php:607
-#: ../../include/class/ModuleTemplates.class.php:893
-#: ../../include/class/ModuleTemplates.class.php:1062
-#: ../../include/class/ModuleTemplates.class.php:1210
-#: ../../include/class/AgentWizard.class.php:1188
-#: ../../include/class/AgentWizard.class.php:3979
-#: ../../include/functions_container.php:147
-#: ../../include/functions_snmp_browser.php:570
-#: ../../include/functions_snmp_browser.php:1682
-#: ../../include/functions_events.php:3811 ../../operation/search_users.php:47
-#: ../../operation/search_agents.php:43 ../../operation/search_agents.php:49
-#: ../../operation/agentes/gis_view.php:219
-#: ../../operation/agentes/estado_agente.php:740
-#: ../../operation/agentes/pandora_networkmap.editor.php:321
-#: ../../operation/agentes/custom_fields.php:69
-#: ../../operation/agentes/pandora_networkmap.view.php:109
-#: ../../operation/agentes/estado_generalagente.php:239
+#: ../../views/calendar/special_days_edit.php:138
+#: ../../views/calendar/list.php:95 ../../operation/search_reports.php:43
+#: ../../operation/search_reports.php:59 ../../operation/search_policies.php:36
 #: ../../operation/gis_maps/ajax.php:325 ../../operation/gis_maps/ajax.php:459
+#: ../../operation/search_users.php:48
+#: ../../operation/reporting/graph_viewer.php:525
+#: ../../operation/reporting/custom_reporting.php:35
+#: ../../operation/search_graphs.php:31 ../../operation/search_agents.php:43
+#: ../../operation/search_agents.php:49
+#: ../../operation/agentes/custom_fields.php:69
+#: ../../operation/agentes/estado_agente.php:742
+#: ../../operation/agentes/pandora_networkmap.editor.php:321
+#: ../../operation/agentes/estado_generalagente.php:239
+#: ../../operation/agentes/pandora_networkmap.view.php:109
+#: ../../operation/agentes/gis_view.php:222
 #: ../../operation/incidents/configure_integriaims_incident.php:342
 #: ../../operation/incidents/dashboard_detail_integriaims_incident.php:117
 #: ../../operation/incidents/dashboard_detail_integriaims_incident.php:248
 #: ../../operation/incidents/dashboard_detail_integriaims_incident.php:261
 #: ../../operation/incidents/dashboard_detail_integriaims_incident.php:392
-#: ../../operation/search_reports.php:42 ../../operation/search_reports.php:58
-#: ../../operation/search_graphs.php:30
-#: ../../operation/reporting/custom_reporting.php:35
-#: ../../operation/reporting/graph_viewer.php:519
-#: ../../operation/search_policies.php:35
+#: ../../include/ajax/module.php:979 ../../include/ajax/events_extended.php:91
+#: ../../include/ajax/heatmap.ajax.php:232
+#: ../../include/ajax/heatmap.ajax.php:271
+#: ../../include/ajax/heatmap.ajax.php:331
+#: ../../include/class/ModuleTemplates.class.php:893
+#: ../../include/class/ModuleTemplates.class.php:1062
+#: ../../include/class/ModuleTemplates.class.php:1210
+#: ../../include/class/ManageNetScanScripts.class.php:404
+#: ../../include/class/ManageNetScanScripts.class.php:558
+#: ../../include/class/ManageNetScanScripts.class.php:607
+#: ../../include/class/AgentWizard.class.php:1183
+#: ../../include/class/AgentWizard.class.php:4029
+#: ../../include/class/ConfigPEN.class.php:448
+#: ../../include/class/ConfigPEN.class.php:599
+#: ../../include/functions_events.php:3854
+#: ../../include/functions_treeview.php:127
+#: ../../include/functions_treeview.php:652
+#: ../../include/functions_container.php:147
+#: ../../include/functions_snmp_browser.php:570
+#: ../../include/functions_snmp_browser.php:1682
+#: ../../include/functions_reporting_html.php:155
+#: ../../include/functions_reporting_html.php:1504
+#: ../../include/functions_reporting_html.php:3341
+#: ../../include/functions_reporting_html.php:3392
+#: ../../include/functions_reporting_html.php:5155
+#: ../../include/functions_reporting_html.php:6102
+#: ../../enterprise/tools/ipam/ipam_excel.php:132
+#: ../../enterprise/tools/ipam/ipam_excel.php:201
+#: ../../enterprise/tools/ipam/ipam_vlan_config.php:345
+#: ../../enterprise/tools/ipam/ipam_vlan_config.php:681
+#: ../../enterprise/tools/ipam/ipam_supernet_network.php:84
+#: ../../enterprise/tools/ipam/ipam_vlan_network.php:40
+#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:411
+#: ../../enterprise/tools/ipam/ipam_supernet_config.php:619
+#: ../../enterprise/tools/ipam/ipam_supernet_config.php:1061
+#: ../../enterprise/tools/ipam/ipam_list.php:582
+#: ../../enterprise/tools/ipam/ipam_editor.php:177
+#: ../../enterprise/views/ncm/devices/list.php:115
+#: ../../enterprise/views/ipam/sites/edit.php:51
+#: ../../enterprise/views/ipam/sites/list.php:47
+#: ../../enterprise/views/cluster/view.php:286
+#: ../../enterprise/views/cluster/list.php:59
+#: ../../enterprise/operation/services/services.service.php:119
+#: ../../enterprise/operation/services/services.list.php:500
+#: ../../enterprise/operation/agentes/tag_view.php:600
+#: ../../enterprise/operation/agentes/policy_view.php:68
+#: ../../enterprise/operation/agentes/collection_view.php:77
+#: ../../enterprise/operation/agentes/transactional_map.php:207
+#: ../../enterprise/operation/agentes/manage_transmap_creation.php:364
+#: ../../enterprise/operation/agentes/manage_transmap_creation.php:490
+#: ../../enterprise/operation/agentes/ver_agente.php:60
+#: ../../enterprise/include/functions_cron.php:282
+#: ../../enterprise/include/functions_reporting_csv.php:482
+#: ../../enterprise/include/functions_reporting_csv.php:485
+#: ../../enterprise/include/functions_reporting_csv.php:705
+#: ../../enterprise/include/functions_reporting_csv.php:707
+#: ../../enterprise/include/functions_reporting_csv.php:718
+#: ../../enterprise/include/functions_reporting_csv.php:797
+#: ../../enterprise/include/functions_reporting_csv.php:799
+#: ../../enterprise/include/functions_reporting_csv.php:826
+#: ../../enterprise/include/functions_reporting_csv.php:828
+#: ../../enterprise/include/functions_reporting_csv.php:865
+#: ../../enterprise/include/functions_reporting_csv.php:867
+#: ../../enterprise/include/functions_reporting_csv.php:909
+#: ../../enterprise/include/functions_reporting_csv.php:911
+#: ../../enterprise/include/functions_reporting_csv.php:941
+#: ../../enterprise/include/functions_reporting_csv.php:943
+#: ../../enterprise/include/functions_reporting_csv.php:978
+#: ../../enterprise/include/functions_reporting_csv.php:980
+#: ../../enterprise/include/functions_reporting_csv.php:1001
+#: ../../enterprise/include/functions_reporting_csv.php:1003
+#: ../../enterprise/include/functions_reporting_csv.php:1092
+#: ../../enterprise/include/functions_reporting_csv.php:1094
+#: ../../enterprise/include/functions_reporting_csv.php:1153
+#: ../../enterprise/include/functions_reporting_csv.php:1155
+#: ../../enterprise/include/functions_reporting_csv.php:1179
+#: ../../enterprise/include/functions_reporting_csv.php:1181
+#: ../../enterprise/include/functions_reporting_csv.php:1184
+#: ../../enterprise/include/functions_reporting_csv.php:1210
+#: ../../enterprise/include/functions_reporting_csv.php:1212
+#: ../../enterprise/include/functions_reporting_csv.php:1215
+#: ../../enterprise/include/functions_reporting_csv.php:1265
+#: ../../enterprise/include/functions_reporting_csv.php:1267
+#: ../../enterprise/include/functions_reporting_csv.php:1270
+#: ../../enterprise/include/functions_reporting_csv.php:1320
+#: ../../enterprise/include/functions_reporting_csv.php:1322
+#: ../../enterprise/include/functions_reporting_csv.php:1369
+#: ../../enterprise/include/functions_reporting_csv.php:1371
+#: ../../enterprise/include/functions_reporting_csv.php:1374
+#: ../../enterprise/include/functions_reporting_csv.php:1424
+#: ../../enterprise/include/functions_reporting_csv.php:1426
+#: ../../enterprise/include/functions_reporting_csv.php:1429
+#: ../../enterprise/include/functions_reporting_csv.php:1453
+#: ../../enterprise/include/functions_reporting_csv.php:1455
+#: ../../enterprise/include/functions_reporting_csv.php:1490
+#: ../../enterprise/include/functions_reporting_csv.php:1492
+#: ../../enterprise/include/functions_reporting_csv.php:1614
+#: ../../enterprise/include/functions_reporting_csv.php:1730
+#: ../../enterprise/include/functions_reporting_csv.php:1876
+#: ../../enterprise/include/functions_reporting_csv.php:1878
+#: ../../enterprise/include/functions_reporting_csv.php:1926
+#: ../../enterprise/include/functions_reporting_csv.php:1928
+#: ../../enterprise/include/functions_reporting_csv.php:1970
+#: ../../enterprise/include/functions_reporting_csv.php:2038
+#: ../../enterprise/include/functions_reporting_csv.php:2177
+#: ../../enterprise/include/functions_reporting_csv.php:2219
+#: ../../enterprise/include/functions_reporting_csv.php:2223
+#: ../../enterprise/include/functions_reporting_csv.php:2276
+#: ../../enterprise/include/functions_reporting_csv.php:2278
+#: ../../enterprise/include/functions_reporting_csv.php:2307
+#: ../../enterprise/include/functions_reporting_csv.php:2309
+#: ../../enterprise/include/functions_reporting_csv.php:2343
+#: ../../enterprise/include/functions_reporting_csv.php:2345
+#: ../../enterprise/include/functions_reporting_csv.php:2396
+#: ../../enterprise/include/functions_reporting_csv.php:2398
+#: ../../enterprise/include/functions_reporting_csv.php:2418
+#: ../../enterprise/include/functions_reporting_csv.php:2420
+#: ../../enterprise/include/functions_reporting_csv.php:2459
+#: ../../enterprise/include/functions_reporting_csv.php:2461
+#: ../../enterprise/include/functions_reporting_csv.php:2513
+#: ../../enterprise/include/functions_reporting_csv.php:2515
+#: ../../enterprise/include/functions_reporting_csv.php:2542
+#: ../../enterprise/include/functions_reporting_csv.php:2544
+#: ../../enterprise/include/functions_reporting_csv.php:2618
+#: ../../enterprise/include/functions_reporting_csv.php:2620
+#: ../../enterprise/include/functions_reporting_csv.php:2669
+#: ../../enterprise/include/functions_reporting_csv.php:2671
+#: ../../enterprise/include/functions_reporting_csv.php:2717
+#: ../../enterprise/include/functions_reporting_csv.php:2723
+#: ../../enterprise/include/functions_reporting_csv.php:2795
+#: ../../enterprise/include/functions_reporting_csv.php:2797
+#: ../../enterprise/include/ajax/ipam.ajax.php:371
+#: ../../enterprise/include/ajax/ipam.ajax.php:615
+#: ../../enterprise/include/class/ManageBackups.class.php:162
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:795
+#: ../../enterprise/include/lib/ClusterViewer/ClusterWizard.php:812
+#: ../../enterprise/include/functions_services.php:1604
+#: ../../enterprise/include/functions_ipam.php:1374
+#: ../../enterprise/include/functions_ipam.php:1982
+#: ../../enterprise/include/functions_reporting_pdf.php:1817
+#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:77
+#: ../../enterprise/meta/include/functions_autoprovision.php:475
+#: ../../enterprise/meta/include/functions_wizard_meta.php:199
+#: ../../enterprise/meta/include/functions_wizard_meta.php:476
+#: ../../enterprise/meta/include/functions_wizard_meta.php:589
+#: ../../enterprise/meta/include/functions_wizard_meta.php:1144
+#: ../../enterprise/meta/include/functions_wizard_meta.php:1464
+#: ../../enterprise/meta/include/functions_wizard_meta.php:1586
+#: ../../enterprise/meta/include/functions_wizard_meta.php:1689
+#: ../../enterprise/meta/include/functions_wizard_meta.php:1812
+#: ../../enterprise/meta/advanced/collections.php:337
+#: ../../enterprise/meta/agentsearch.php:135
+#: ../../enterprise/meta/agentsearch.php:328
+#: ../../enterprise/mobile/include/enterprise.class.php:88
+#: ../../enterprise/godmode/setup/edit_skin.php:259
+#: ../../enterprise/godmode/setup/setup_skins.php:127
+#: ../../enterprise/godmode/modules/configure_local_component.php:477
+#: ../../enterprise/godmode/modules/configure_local_component.php:636
+#: ../../enterprise/godmode/modules/manage_inventory_modules.php:273
+#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:101
+#: ../../enterprise/godmode/services/services.elements.php:103
+#: ../../enterprise/godmode/services/services.service.php:550
+#: ../../enterprise/godmode/reporting/graph_template_editor.php:199
+#: ../../enterprise/godmode/reporting/graph_template_list.php:204
+#: ../../enterprise/godmode/reporting/reporting_builder.template_editor.php:205
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1691
+#: ../../enterprise/godmode/reporting/reporting_builder.template.php:498
+#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:433
+#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor_form.php:76
+#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:386
+#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:679
+#: ../../enterprise/godmode/massive/massive_create_services.php:647
+#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:297
+#: ../../enterprise/godmode/agentes/inventory_manager.php:221
+#: ../../enterprise/godmode/agentes/agent_autoconfiguration.php:141
+#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:347
+#: ../../enterprise/godmode/agentes/collection_manager.php:111
+#: ../../enterprise/godmode/agentes/collection_manager.php:208
+#: ../../enterprise/godmode/agentes/pandora_networkmap_empty.editor.php:162
+#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:386
+#: ../../enterprise/godmode/agentes/collections.php:330
+#: ../../enterprise/godmode/alerts/alert_inventory_list.php:222
+#: ../../enterprise/godmode/alerts/alert_inventory_builder.php:166
+#: ../../enterprise/godmode/policies/configure_policy.php:119
+#: ../../enterprise/godmode/policies/policy_inventory_modules.php:303
+#: ../../enterprise/godmode/policies/policy_collections.php:171
+#: ../../enterprise/godmode/policies/policy_collections.php:265
+#: ../../extensions/files_repo/files_repo_form.php:83
+#: ../../extensions/files_repo/files_repo_list.php:56
+#: ../../mobile/operation/tactical.php:352
+#: ../../godmode/setup/snmp_wizard.php:41 ../../godmode/setup/os.list.php:70
+#: ../../godmode/setup/os.builder.php:37 ../../godmode/servers/plugin.php:358
+#: ../../godmode/servers/plugin.php:485
+#: ../../godmode/servers/modificar_server.php:66
+#: ../../godmode/modules/module_list.php:63
+#: ../../godmode/modules/manage_network_components.php:751
+#: ../../godmode/modules/manage_network_templates.php:247
+#: ../../godmode/modules/manage_network_templates_form.php:172
+#: ../../godmode/modules/manage_network_templates_form.php:234
+#: ../../godmode/modules/manage_network_components_form_wizard.php:450
+#: ../../godmode/modules/manage_network_components_form_common.php:335
+#: ../../godmode/reporting/reporting_builder.main.php:215
+#: ../../godmode/reporting/graphs.php:311
+#: ../../godmode/reporting/create_container.php:266
+#: ../../godmode/reporting/reporting_builder.item_editor.php:74
+#: ../../godmode/reporting/reporting_builder.item_editor.php:1083
+#: ../../godmode/reporting/reporting_builder.php:911
+#: ../../godmode/reporting/graph_builder.main.php:180
+#: ../../godmode/snmpconsole/snmp_alert.php:724
+#: ../../godmode/snmpconsole/snmp_alert.php:1232
+#: ../../godmode/snmpconsole/snmp_filters.php:201
+#: ../../godmode/snmpconsole/snmp_filters.php:289
+#: ../../godmode/tag/edit_tag.php:219 ../../godmode/tag/tag.php:228
+#: ../../godmode/tag/tag.php:278
+#: ../../godmode/events/event_responses.editor.php:111
+#: ../../godmode/events/event_responses.list.php:51
+#: ../../godmode/netflow/nf_item_list.php:175
+#: ../../godmode/massive/massive_edit_agents.php:760
+#: ../../godmode/massive/massive_edit_plugins.php:494
+#: ../../godmode/massive/massive_edit_modules.php:743
+#: ../../godmode/agentes/module_manager.php:862
+#: ../../godmode/agentes/module_manager_editor_common.php:1081
+#: ../../godmode/agentes/agent_manager.php:431
+#: ../../godmode/agentes/planned_downtime.editor.php:572
+#: ../../godmode/agentes/planned_downtime.list.php:611
+#: ../../godmode/agentes/agent_template.php:237
+#: ../../godmode/agentes/pandora_networkmap_empty.editor.php:164
+#: ../../godmode/agentes/modificar_agente.php:652
+#: ../../godmode/alerts/configure_alert_template.php:1106
+#: ../../godmode/alerts/alert_templates.php:46
+#: ../../godmode/alerts/alert_commands.php:658
+#: ../../godmode/alerts/configure_alert_command.php:283
+#: ../../godmode/users/user_list.php:485
+#: ../../godmode/groups/configure_group.php:242
+#: ../../godmode/groups/group_list.php:850
 msgid "Description"
 msgstr ""
 
-#: ../../views/calendar/list.php:96 ../../views/dashboard/header.php:80
-#: ../../godmode/update_manager/update_manager.php:37
-#: ../../godmode/reporting/reporting_builder.list_items.php:427
-#: ../../include/class/ConfigPEN.class.php:601
-#: ../../include/class/CredentialStore.class.php:795
-#: ../../include/class/ExternalTools.class.php:383
-#: ../../include/functions_events.php:301
-msgid "Options"
-msgstr ""
-
-#: ../../views/calendar/list.php:119
-#: ../../godmode/snmpconsole/snmp_alert.php:1040
-#: ../../godmode/events/event_edit_filter.php:355
-#: ../../mobile/operation/agents.php:234 ../../mobile/operation/modules.php:299
-#: ../../mobile/operation/alerts.php:222 ../../mobile/operation/events.php:700
-#: ../../include/ajax/module.php:292
-#: ../../include/class/ConfigPEN.class.php:627
-#: ../../include/class/CredentialStore.class.php:833
-#: ../../operation/snmpconsole/snmp_view.php:600
-#: ../../operation/events/events_list.php:763
-#: ../../operation/events/events.php:1124
-msgid "Free search"
-msgstr ""
-
-#: ../../views/calendar/list.php:144
-#: ../../views/calendar/special_days_edit.php:163
-#: ../../views/calendar/special_days_edit.php:206
 #: ../../views/calendar/edit.php:120 ../../views/calendar/special_days.php:323
 #: ../../views/calendar/special_days.php:406
 #: ../../views/calendar/special_days.php:481
 #: ../../views/calendar/special_days.php:505
-#: ../../godmode/modules/manage_nc_groups_form.php:93
-#: ../../godmode/modules/manage_network_templates_form.php:168
-#: ../../godmode/modules/manage_nc_groups.php:309
-#: ../../godmode/modules/manage_network_components_form.php:376
-#: ../../godmode/modules/manage_network_components.php:941
-#: ../../godmode/modules/manage_network_templates.php:297
-#: ../../godmode/groups/configure_group.php:276
-#: ../../godmode/groups/configure_modu_group.php:83
-#: ../../godmode/users/profile_list.php:463
-#: ../../godmode/users/configure_user.php:1435
-#: ../../godmode/agentes/module_manager_editor.php:785
-#: ../../godmode/agentes/planned_downtime.list.php:373
-#: ../../godmode/agentes/planned_downtime.list.php:556
-#: ../../godmode/agentes/agent_manager.php:1039
-#: ../../godmode/agentes/configure_field.php:138
-#: ../../godmode/agentes/module_manager.php:229
-#: ../../godmode/netflow/nf_edit_form.php:271
-#: ../../godmode/snmpconsole/snmp_alert.php:1021
-#: ../../godmode/snmpconsole/snmp_alert.php:1432
-#: ../../godmode/snmpconsole/snmp_filters.php:263
-#: ../../godmode/snmpconsole/snmp_filters.php:336
-#: ../../godmode/alerts/configure_alert_command.php:363
-#: ../../godmode/alerts/alert_actions.php:477
-#: ../../godmode/alerts/alert_list.list.php:958
-#: ../../godmode/alerts/alert_commands.php:734
-#: ../../godmode/alerts/alert_templates.php:486
-#: ../../godmode/alerts/configure_alert_action.php:399
-#: ../../godmode/alerts/alert_list.php:454 ../../godmode/setup/news.php:231
-#: ../../godmode/setup/gis.php:94 ../../godmode/setup/os.php:92
-#: ../../godmode/setup/os.php:174 ../../godmode/setup/links.php:124
-#: ../../godmode/reporting/create_container.php:333
-#: ../../godmode/reporting/map_builder.php:561
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2119
-#: ../../godmode/reporting/graph_builder.main.php:294
-#: ../../godmode/events/event_responses.editor.php:217
-#: ../../godmode/events/event_edit_filter.php:653
-#: ../../godmode/servers/plugin.php:595 ../../godmode/tag/edit_tag.php:262
-#: ../../godmode/category/edit_category.php:190
-#: ../../include/functions_visual_map_editor.php:884
-#: ../../include/class/ManageNetScanScripts.class.php:763
-#: ../../include/class/ModuleTemplates.class.php:960
-#: ../../include/class/ModuleTemplates.class.php:1007
-#: ../../include/functions_filemanager.php:837
-#: ../../include/functions_filemanager.php:844
-#: ../../operation/gis_maps/gis_map.php:207
+#: ../../views/calendar/special_days_edit.php:163
+#: ../../views/calendar/special_days_edit.php:206
+#: ../../views/calendar/list.php:144 ../../operation/gis_maps/gis_map.php:207
 #: ../../operation/incidents/configure_integriaims_incident.php:380
 #: ../../operation/incidents/list_integriaims_incidents.php:573
+#: ../../include/functions_visual_map_editor.php:884
+#: ../../include/class/ModuleTemplates.class.php:960
+#: ../../include/class/ModuleTemplates.class.php:1007
+#: ../../include/class/ManageNetScanScripts.class.php:763
+#: ../../include/functions_filemanager.php:813
+#: ../../include/functions_filemanager.php:874
+#: ../../enterprise/tools/ipam/ipam_network_location_config.php:148
+#: ../../enterprise/tools/ipam/ipam_network_location_config.php:315
+#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:454
+#: ../../enterprise/tools/ipam/ipam_list.php:746
+#: ../../enterprise/tools/ipam/ipam_editor.php:361
+#: ../../enterprise/views/ncm/snippets/edit.php:106
+#: ../../enterprise/views/ncm/snippets/list.php:127
+#: ../../enterprise/views/ncm/firmwares/edit.php:169
+#: ../../enterprise/views/ncm/firmwares/list.php:133
+#: ../../enterprise/views/ncm/vendors/edit.php:104
+#: ../../enterprise/views/ncm/vendors/list.php:119
+#: ../../enterprise/views/ncm/templates/edit.php:315
+#: ../../enterprise/views/ncm/templates/list.php:133
+#: ../../enterprise/views/ncm/models/edit.php:103
+#: ../../enterprise/views/ncm/models/list.php:121
+#: ../../enterprise/views/ipam/sites/edit.php:80
+#: ../../enterprise/views/ipam/sites/list.php:98
+#: ../../enterprise/operation/agentes/manage_transmap_creation.php:405
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3095
+#: ../../enterprise/meta/include/functions_autoprovision.php:588
+#: ../../enterprise/meta/include/functions_autoprovision.php:789
+#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:300
+#: ../../enterprise/meta/monitoring/wizard/wizard.manage_alert.php:105
+#: ../../enterprise/meta/advanced/collections.editor.php:136
+#: ../../enterprise/meta/advanced/cron_main.php:471
+#: ../../enterprise/meta/advanced/collections.data.php:42
+#: ../../enterprise/meta/advanced/collections.data.php:71
+#: ../../enterprise/meta/advanced/collections.data.php:93
+#: ../../enterprise/meta/advanced/collections.data.php:113
+#: ../../enterprise/meta/advanced/collections.data.php:138
+#: ../../enterprise/meta/advanced/collections.data.php:184
+#: ../../enterprise/meta/advanced/collections.php:437
+#: ../../enterprise/meta/advanced/collections.php:448
+#: ../../enterprise/meta/advanced/links.php:137
+#: ../../enterprise/godmode/setup/edit_skin.php:299
+#: ../../enterprise/godmode/servers/manage_export.php:130
+#: ../../enterprise/godmode/servers/manage_export.php:169
+#: ../../enterprise/godmode/modules/configure_local_component.php:680
+#: ../../enterprise/godmode/modules/local_components.php:716
+#: ../../enterprise/godmode/modules/manage_inventory_modules.php:343
+#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:145
+#: ../../enterprise/godmode/services/services.service.php:912
+#: ../../enterprise/godmode/reporting/aws_view.php:194
+#: ../../enterprise/godmode/reporting/graph_template_editor.php:269
+#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor_form.php:24
+#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor_form.php:87
+#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:428
+#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:599
+#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:671
+#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:720
+#: ../../enterprise/godmode/agentes/collections.editor.php:169
+#: ../../enterprise/godmode/agentes/collections.agents.php:38
+#: ../../enterprise/godmode/agentes/collections.data.php:68
+#: ../../enterprise/godmode/agentes/collections.data.php:169
+#: ../../enterprise/godmode/agentes/collections.data.php:193
+#: ../../enterprise/godmode/agentes/collections.data.php:213
+#: ../../enterprise/godmode/agentes/collections.data.php:240
+#: ../../enterprise/godmode/agentes/collections.data.php:296
+#: ../../enterprise/godmode/agentes/collections.php:404
+#: ../../enterprise/godmode/alerts/alert_inventory_list.php:433
+#: ../../enterprise/godmode/policies/policy_modules.php:432
+#: ../../enterprise/godmode/policies/policies.php:645
+#: ../../enterprise/godmode/policies/configure_policy.php:139
+#: ../../godmode/setup/os.php:95 ../../godmode/setup/os.php:177
+#: ../../godmode/setup/news.php:231 ../../godmode/setup/gis.php:97
+#: ../../godmode/setup/links.php:127 ../../godmode/servers/plugin.php:596
+#: ../../godmode/modules/manage_network_components_form.php:376
+#: ../../godmode/modules/manage_network_components.php:934
+#: ../../godmode/modules/manage_network_templates.php:309
+#: ../../godmode/modules/manage_network_templates_form.php:180
+#: ../../godmode/modules/manage_nc_groups.php:318
+#: ../../godmode/modules/manage_nc_groups_form.php:93
+#: ../../godmode/category/edit_category.php:205
+#: ../../godmode/reporting/map_builder.php:559
+#: ../../godmode/reporting/create_container.php:333
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2167
+#: ../../godmode/reporting/graph_builder.main.php:294
+#: ../../godmode/snmpconsole/snmp_alert.php:1054
+#: ../../godmode/snmpconsole/snmp_alert.php:1465
+#: ../../godmode/snmpconsole/snmp_filters.php:263
+#: ../../godmode/snmpconsole/snmp_filters.php:336
+#: ../../godmode/tag/edit_tag.php:281
+#: ../../godmode/events/event_edit_filter.php:676
+#: ../../godmode/events/event_responses.editor.php:219
+#: ../../godmode/netflow/nf_edit_form.php:272
+#: ../../godmode/agentes/module_manager.php:229
+#: ../../godmode/agentes/configure_field.php:141
+#: ../../godmode/agentes/agent_manager.php:933
+#: ../../godmode/agentes/module_manager_editor.php:788
+#: ../../godmode/agentes/planned_downtime.list.php:582
+#: ../../godmode/agentes/planned_downtime.list.php:873
+#: ../../godmode/alerts/alert_list.list.php:961
+#: ../../godmode/alerts/alert_actions.php:471
+#: ../../godmode/alerts/alert_templates.php:481
+#: ../../godmode/alerts/alert_commands.php:748
+#: ../../godmode/alerts/alert_list.php:496
+#: ../../godmode/alerts/configure_alert_command.php:387
+#: ../../godmode/alerts/configure_alert_action.php:402
+#: ../../godmode/users/configure_user.php:1475
+#: ../../godmode/users/profile_list.php:463
+#: ../../godmode/groups/configure_group.php:279
+#: ../../godmode/groups/configure_modu_group.php:86
 msgid "Create"
 msgstr ""
 
-#: ../../views/calendar/special_days_edit.php:40
-#: ../../godmode/groups/configure_group.php:227
-#: ../../godmode/groups/group_list.php:843
-#: ../../godmode/agentes/configurar_agente.php:434
-#: ../../godmode/agentes/modificar_agente.php:825 ../../godmode/menu.php:220
-#: ../../godmode/massive/massive_copy_modules.php:215
-#: ../../godmode/alerts/configure_alert_command.php:43
-#: ../../godmode/alerts/alert_actions.php:74
-#: ../../godmode/alerts/alert_commands.php:494
-#: ../../godmode/alerts/alert_templates.php:136
-#: ../../godmode/alerts/alert_templates.php:188
-#: ../../godmode/alerts/alert_templates.php:211
-#: ../../godmode/alerts/alert_templates.php:232
-#: ../../godmode/alerts/configure_alert_action.php:74
-#: ../../godmode/alerts/configure_alert_action.php:87
-#: ../../godmode/alerts/configure_alert_template.php:79
-#: ../../godmode/alerts/configure_alert_template.php:103
-#: ../../godmode/alerts/configure_alert_template.php:135
-#: ../../godmode/alerts/alert_list.php:452
-#: ../../godmode/alerts/alert_list.php:454
-#: ../../mobile/include/functions_web.php:26
-#: ../../mobile/operation/agents.php:80 ../../mobile/operation/agents.php:388
-#: ../../mobile/operation/home.php:74 ../../mobile/operation/agent.php:337
-#: ../../mobile/operation/alerts.php:176
-#: ../../include/functions_reporting_html.php:2178
-#: ../../include/functions_reporting_html.php:5158
-#: ../../include/functions_treeview.php:405
-#: ../../include/functions_reports.php:830
-#: ../../include/functions_reports.php:834
-#: ../../include/functions_reports.php:840
-#: ../../include/functions_reports.php:846
-#: ../../include/class/AgentsAlerts.class.php:539
-#: ../../operation/search_agents.php:57 ../../operation/search_results.php:106
-#: ../../operation/agentes/estado_agente.php:764
-#: ../../operation/agentes/ver_agente.php:1387
-msgid "Alerts"
-msgstr ""
-
-#: ../../views/calendar/special_days_edit.php:40
-msgid "Configure special day"
-msgstr ""
-
-#: ../../views/calendar/special_days_edit.php:80
-#: ../../extensions/insert_data.php:193
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2006
-#: ../../mobile/operation/tactical.php:349
-#: ../../include/functions_reporting_html.php:1741
-#: ../../include/functions_reporting_html.php:2399
-#: ../../include/functions_reporting_html.php:2408
-#: ../../include/functions_reporting_html.php:2413
-#: ../../include/functions_reporting_html.php:2422
-#: ../../include/functions_reporting_html.php:2427
-#: ../../include/functions_reporting_html.php:2434
-#: ../../include/functions_reporting_html.php:2483
-#: ../../include/functions_reporting_html.php:2556
-#: ../../include/functions_reporting_html.php:5500
-#: ../../include/functions.php:3036 ../../include/class/AuditLog.class.php:110
-#: ../../include/functions_reporting.php:3834
-#: ../../include/functions_reporting.php:3875
-#: ../../include/functions_events.php:7040
-#: ../../operation/incidents/list_integriaims_incidents.php:371
-#: ../../operation/reporting/graph_viewer.php:342
-#: ../../operation/events/events.build_table.php:698
-#: ../../general/logon_ok.php:249
-msgid "Date"
-msgstr ""
-
-#: ../../views/calendar/special_days_edit.php:116
-#: ../../views/calendar/special_days.php:92
-#: ../../views/calendar/special_days.php:358
-#: ../../godmode/alerts/alert_templates.php:64
-#: ../../godmode/reporting/reporting_builder.item_editor.php:1331
-#: ../../include/functions_html.php:2153
-msgid "Monday"
-msgstr ""
-
-#: ../../views/calendar/special_days_edit.php:117
-#: ../../views/calendar/special_days.php:93
-#: ../../views/calendar/special_days.php:362
-#: ../../godmode/alerts/alert_templates.php:65
-#: ../../godmode/reporting/reporting_builder.item_editor.php:1339
-#: ../../include/functions_html.php:2154
-msgid "Tuesday"
-msgstr ""
-
-#: ../../views/calendar/special_days_edit.php:118
-#: ../../views/calendar/special_days.php:94
-#: ../../views/calendar/special_days.php:366
-#: ../../godmode/alerts/alert_templates.php:66
-#: ../../godmode/reporting/reporting_builder.item_editor.php:1347
-#: ../../include/functions_html.php:2155
-msgid "Wednesday"
-msgstr ""
-
-#: ../../views/calendar/special_days_edit.php:119
-#: ../../views/calendar/special_days.php:95
-#: ../../views/calendar/special_days.php:370
-#: ../../godmode/alerts/alert_templates.php:67
-#: ../../godmode/reporting/reporting_builder.item_editor.php:1355
-#: ../../include/functions_html.php:2156
-msgid "Thursday"
-msgstr ""
-
-#: ../../views/calendar/special_days_edit.php:120
-#: ../../views/calendar/special_days.php:96
-#: ../../views/calendar/special_days.php:374
-#: ../../godmode/alerts/alert_templates.php:68
-#: ../../godmode/reporting/reporting_builder.item_editor.php:1363
-#: ../../include/functions_html.php:2157
-msgid "Friday"
-msgstr ""
-
-#: ../../views/calendar/special_days_edit.php:121
-#: ../../views/calendar/special_days.php:97
-#: ../../views/calendar/special_days.php:378
-#: ../../godmode/alerts/alert_templates.php:69
-#: ../../godmode/reporting/reporting_builder.item_editor.php:1371
-#: ../../include/functions_html.php:2158
-msgid "Saturday"
-msgstr ""
-
-#: ../../views/calendar/special_days_edit.php:122
-#: ../../views/calendar/special_days.php:98
-#: ../../views/calendar/special_days.php:382
-#: ../../godmode/alerts/alert_templates.php:70
-#: ../../godmode/reporting/reporting_builder.item_editor.php:1379
-#: ../../include/functions_html.php:2152
-msgid "Sunday"
-msgstr ""
-
-#: ../../views/calendar/special_days_edit.php:123
-#: ../../views/calendar/special_days.php:386
-msgid "Holidays"
-msgstr ""
-
-#: ../../views/calendar/special_days_edit.php:127
-#: ../../views/calendar/special_days.php:102
-msgid "Same day of the week"
-msgstr ""
-
-#: ../../views/calendar/special_days_edit.php:163
 #: ../../views/calendar/edit.php:120
+#: ../../views/calendar/special_days_edit.php:163
+#: ../../operation/reporting/reporting_viewer.php:311
+#: ../../operation/network/network_report.php:132
+#: ../../operation/snmpconsole/snmp_view.php:660
+#: ../../operation/events/events_list.php:1073
+#: ../../operation/agentes/datos_agente.php:218
+#: ../../operation/users/user_edit.php:777
+#: ../../operation/incidents/configure_integriaims_incident.php:378
+#: ../../include/functions_visual_map_editor.php:880
+#: ../../include/ajax/alert_list.ajax.php:551
+#: ../../include/class/ModuleTemplates.class.php:1012
+#: ../../include/class/ManageNetScanScripts.class.php:765
+#: ../../include/class/ExternalTools.class.php:392
+#: ../../include/class/ConfigPEN.class.php:697
+#: ../../include/class/ConfigPEN.class.php:698
+#: ../../include/class/CredentialStore.class.php:1246
+#: ../../include/class/NetworkMap.class.php:3069
+#: ../../include/functions_events.php:3645
+#: ../../include/functions_events.php:3725
+#: ../../enterprise/tools/ipam/ipam_network_location_config.php:145
+#: ../../enterprise/tools/ipam/ipam_massive.php:112
+#: ../../enterprise/tools/ipam/ipam_network.php:695
+#: ../../enterprise/tools/ipam/ipam_editor.php:359
+#: ../../enterprise/views/ncm/snippets/edit.php:106
+#: ../../enterprise/views/ncm/firmwares/edit.php:169
+#: ../../enterprise/views/ncm/vendors/edit.php:104
+#: ../../enterprise/views/ncm/templates/edit.php:315
+#: ../../enterprise/views/ncm/models/edit.php:103
+#: ../../enterprise/views/ipam/sites/edit.php:80
+#: ../../enterprise/operation/agentes/policy_view.php:208
+#: ../../enterprise/operation/agentes/policy_view.php:209
+#: ../../enterprise/operation/agentes/manage_transmap_creation_phases_data.php:87
+#: ../../enterprise/operation/agentes/collection_view.php:117
+#: ../../enterprise/operation/agentes/collection_view.php:118
+#: ../../enterprise/operation/agentes/manage_transmap_creation.php:264
+#: ../../enterprise/operation/agentes/manage_transmap_creation.php:532
+#: ../../enterprise/include/ajax/log_viewer.ajax.php:99
+#: ../../enterprise/include/ajax/servers.ajax.php:102
+#: ../../enterprise/include/ajax/servers.ajax.php:303
+#: ../../enterprise/include/class/SAPView.class.php:325
+#: ../../enterprise/include/class/AgentRepository.class.php:902
+#: ../../enterprise/include/class/LogSource.class.php:849
+#: ../../enterprise/include/class/Omnishell.class.php:646
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2240
+#: ../../enterprise/include/class/DeploymentCenter.class.php:1672
+#: ../../enterprise/include/class/DatabaseHA.class.php:891
+#: ../../enterprise/include/functions_HA_cluster.php:495
+#: ../../enterprise/meta/event/custom_events.php:213
+#: ../../enterprise/meta/include/functions_autoprovision.php:590
+#: ../../enterprise/meta/include/functions_autoprovision.php:791
+#: ../../enterprise/meta/advanced/metasetup.mail.php:133
+#: ../../enterprise/meta/advanced/metasetup.relations.php:278
+#: ../../enterprise/meta/advanced/metasetup.translate_string.php:231
+#: ../../enterprise/meta/advanced/collections.editor.php:149
+#: ../../enterprise/meta/advanced/collections.editor.php:223
+#: ../../enterprise/meta/advanced/metasetup.performance.php:170
+#: ../../enterprise/meta/advanced/cron_main.php:463
+#: ../../enterprise/meta/advanced/collections.data.php:157
+#: ../../enterprise/meta/advanced/collections.data.php:232
+#: ../../enterprise/meta/advanced/collections.data.php:273
+#: ../../enterprise/meta/advanced/collections.data.php:360
+#: ../../enterprise/meta/advanced/collections.data.php:361
+#: ../../enterprise/meta/advanced/metasetup.setup.php:375
+#: ../../enterprise/meta/advanced/metasetup.consoles.php:718
+#: ../../enterprise/meta/advanced/metasetup.password.php:157
+#: ../../enterprise/meta/advanced/metasetup.visual.php:1150
+#: ../../enterprise/meta/advanced/links.php:139
+#: ../../enterprise/extensions/translate_string.php:364
+#: ../../enterprise/extensions/vmware/vmware_view.php:1257
+#: ../../enterprise/extensions/vmware/vmware_view.php:1768
+#: ../../enterprise/godmode/setup/setup.php:438
+#: ../../enterprise/godmode/setup/setup.php:627
+#: ../../enterprise/godmode/setup/setup_history.php:524
+#: ../../enterprise/godmode/setup/setup_metaconsole.php:245
+#: ../../enterprise/godmode/setup/setup_log_collector.php:74
+#: ../../enterprise/godmode/setup/edit_skin.php:290
+#: ../../enterprise/godmode/setup/setup_module_library.php:62
+#: ../../enterprise/godmode/servers/manage_export_form.php:136
+#: ../../enterprise/godmode/servers/credential_boxes_satellite.php:251
+#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:357
+#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:889
+#: ../../enterprise/godmode/servers/manage_credential_boxes.php:90
+#: ../../enterprise/godmode/modules/configure_local_component.php:677
+#: ../../enterprise/godmode/modules/manage_inventory_modules.php:313
+#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:143
+#: ../../enterprise/godmode/services/services.service.php:919
+#: ../../enterprise/godmode/reporting/mysql_builder.php:143
+#: ../../enterprise/godmode/reporting/mysql_builder.php:155
+#: ../../enterprise/godmode/reporting/mysql_builder.php:164
+#: ../../enterprise/godmode/reporting/mysql_builder.php:242
+#: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:187
+#: ../../enterprise/godmode/reporting/graph_template_editor.php:267
+#: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:176
+#: ../../enterprise/godmode/reporting/reporting_builder.template_editor.php:129
+#: ../../enterprise/godmode/reporting/reporting_builder.template_editor.php:149
+#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor_form.php:84
+#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:408
+#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1169
+#: ../../enterprise/godmode/massive/massive_tags_edit_policy.php:190
+#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:343
+#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:590
+#: ../../enterprise/godmode/agentes/inventory_manager.php:183
+#: ../../enterprise/godmode/agentes/inventory_manager.php:253
+#: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:257
+#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:355
+#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:673
+#: ../../enterprise/godmode/agentes/collection_manager.php:153
+#: ../../enterprise/godmode/agentes/collection_manager.php:154
+#: ../../enterprise/godmode/agentes/collection_manager.php:268
+#: ../../enterprise/godmode/agentes/collection_manager.php:269
+#: ../../enterprise/godmode/agentes/collections.editor.php:182
+#: ../../enterprise/godmode/agentes/collections.editor.php:254
+#: ../../enterprise/godmode/agentes/collections.data.php:107
+#: ../../enterprise/godmode/agentes/collections.data.php:264
+#: ../../enterprise/godmode/agentes/collections.data.php:342
+#: ../../enterprise/godmode/agentes/collections.data.php:454
+#: ../../enterprise/godmode/agentes/collections.data.php:455
+#: ../../enterprise/godmode/agentes/plugins_manager.php:194
+#: ../../enterprise/godmode/agentes/plugins_manager.php:251
+#: ../../enterprise/godmode/alerts/alert_inventory_list.php:337
+#: ../../enterprise/godmode/policies/policy_modules.php:428
+#: ../../enterprise/godmode/policies/policy_external_alerts.php:364
+#: ../../enterprise/godmode/policies/configure_policy.php:136
+#: ../../enterprise/godmode/policies/policy_inventory_modules.php:261
+#: ../../enterprise/godmode/policies/policy_inventory_modules.php:338
+#: ../../enterprise/godmode/policies/policy_collections.php:222
+#: ../../enterprise/godmode/policies/policy_collections.php:294
 #: ../../extensions/files_repo/files_repo_form.php:99
-#: ../../godmode/modules/manage_nc_groups_form.php:90
-#: ../../godmode/modules/manage_network_templates_form.php:166
-#: ../../godmode/modules/manage_network_components_form.php:372
-#: ../../godmode/groups/configure_group.php:273
-#: ../../godmode/groups/configure_modu_group.php:80
-#: ../../godmode/update_manager/update_manager.setup.php:323
-#: ../../godmode/users/configure_profile.php:408
-#: ../../godmode/users/configure_user.php:1442
-#: ../../godmode/agentes/agent_template.php:260
-#: ../../godmode/agentes/status_monitor_custom_fields.php:206
-#: ../../godmode/agentes/module_manager_editor.php:767
-#: ../../godmode/agentes/agent_conf_gis.php:134
-#: ../../godmode/agentes/planned_downtime.list.php:496
-#: ../../godmode/agentes/planned_downtime.list.php:508
-#: ../../godmode/agentes/planned_downtime.editor.php:856
-#: ../../godmode/agentes/agent_manager.php:1030
-#: ../../godmode/agentes/configure_field.php:135
-#: ../../godmode/netflow/nf_edit_form.php:268
-#: ../../godmode/snmpconsole/snmp_alert.php:1019
-#: ../../godmode/snmpconsole/snmp_alert.php:1278
-#: ../../godmode/snmpconsole/snmp_filters.php:261
-#: ../../godmode/snmpconsole/snmp_filters.php:301
-#: ../../godmode/snmpconsole/snmp_filters.php:312
-#: ../../godmode/alerts/configure_alert_command.php:360
-#: ../../godmode/alerts/alert_list.list.php:161
-#: ../../godmode/alerts/alert_list.list.php:168
-#: ../../godmode/alerts/alert_list.list.php:917
-#: ../../godmode/alerts/configure_alert_action.php:384
-#: ../../godmode/setup/news.php:233 ../../godmode/setup/setup_ehorus.php:168
-#: ../../godmode/setup/setup_websocket_engine.php:89
-#: ../../godmode/setup/os.php:70 ../../godmode/setup/os.php:139
-#: ../../godmode/setup/setup_auth.php:334
-#: ../../godmode/setup/setup_integria.php:625 ../../godmode/setup/links.php:126
 #: ../../godmode/setup/snmp_wizard.php:100
-#: ../../godmode/setup/setup_netflow.php:71
-#: ../../godmode/setup/setup_visuals.php:1526
+#: ../../godmode/setup/setup_integria.php:632
+#: ../../godmode/setup/setup_visuals.php:1529 ../../godmode/setup/os.php:73
+#: ../../godmode/setup/os.php:142 ../../godmode/setup/news.php:233
+#: ../../godmode/setup/setup_auth.php:467
 #: ../../godmode/setup/setup_general.php:627
-#: ../../godmode/setup/performance.php:680
+#: ../../godmode/setup/performance.php:708
+#: ../../godmode/setup/setup_ehorus.php:179
+#: ../../godmode/setup/setup_netflow.php:81
+#: ../../godmode/setup/setup_websocket_engine.php:89
+#: ../../godmode/setup/links.php:129 ../../godmode/servers/plugin.php:198
+#: ../../godmode/servers/plugin.php:598
+#: ../../godmode/servers/modificar_server.php:100
+#: ../../godmode/update_manager/update_manager.setup.php:381
+#: ../../godmode/modules/manage_network_components_form.php:372
+#: ../../godmode/modules/manage_network_templates_form.php:178
+#: ../../godmode/modules/manage_nc_groups_form.php:90
+#: ../../godmode/category/edit_category.php:195
+#: ../../godmode/reporting/reporting_builder.main.php:56
 #: ../../godmode/reporting/visual_console_builder.data.php:232
 #: ../../godmode/reporting/create_container.php:330
 #: ../../godmode/reporting/visual_console_builder.elements.php:761
-#: ../../godmode/reporting/reporting_builder.main.php:56
 #: ../../godmode/reporting/graph_builder.main.php:294
-#: ../../godmode/events/event_responses.editor.php:225
-#: ../../godmode/events/event_edit_filter.php:650
-#: ../../godmode/events/custom_events.php:168
-#: ../../godmode/servers/modificar_server.php:98
-#: ../../godmode/servers/plugin.php:198 ../../godmode/servers/plugin.php:597
-#: ../../godmode/tag/edit_tag.php:253
-#: ../../godmode/category/edit_category.php:180
-#: ../../include/functions_visual_map_editor.php:880
-#: ../../include/ajax/alert_list.ajax.php:550
-#: ../../include/class/ConfigPEN.class.php:697
-#: ../../include/class/ConfigPEN.class.php:698
-#: ../../include/class/NetworkMap.class.php:3059
-#: ../../include/class/ManageNetScanScripts.class.php:765
-#: ../../include/class/CredentialStore.class.php:1234
-#: ../../include/class/ModuleTemplates.class.php:1012
-#: ../../include/class/ExternalTools.class.php:392
-#: ../../include/functions_events.php:3602
-#: ../../include/functions_events.php:3682
-#: ../../operation/users/user_edit.php:776
-#: ../../operation/agentes/datos_agente.php:218
-#: ../../operation/network/network_report.php:132
-#: ../../operation/snmpconsole/snmp_view.php:660
-#: ../../operation/incidents/configure_integriaims_incident.php:378
-#: ../../operation/reporting/reporting_viewer.php:308
-#: ../../operation/events/events_list.php:1069
+#: ../../godmode/snmpconsole/snmp_alert.php:1052
+#: ../../godmode/snmpconsole/snmp_alert.php:1311
+#: ../../godmode/snmpconsole/snmp_filters.php:261
+#: ../../godmode/snmpconsole/snmp_filters.php:301
+#: ../../godmode/snmpconsole/snmp_filters.php:312
+#: ../../godmode/tag/edit_tag.php:272
+#: ../../godmode/events/event_edit_filter.php:673
+#: ../../godmode/events/event_responses.editor.php:227
+#: ../../godmode/events/custom_events.php:169
+#: ../../godmode/netflow/nf_edit_form.php:269
+#: ../../godmode/agentes/configure_field.php:138
+#: ../../godmode/agentes/status_monitor_custom_fields.php:206
+#: ../../godmode/agentes/agent_manager.php:924
+#: ../../godmode/agentes/module_manager_editor.php:770
+#: ../../godmode/agentes/planned_downtime.editor.php:867
+#: ../../godmode/agentes/planned_downtime.list.php:761
+#: ../../godmode/agentes/planned_downtime.list.php:806
+#: ../../godmode/agentes/agent_conf_gis.php:134
+#: ../../godmode/agentes/agent_template.php:260
+#: ../../godmode/alerts/alert_list.list.php:161
+#: ../../godmode/alerts/alert_list.list.php:168
+#: ../../godmode/alerts/alert_list.list.php:920
+#: ../../godmode/alerts/configure_alert_command.php:384
+#: ../../godmode/alerts/configure_alert_action.php:387
+#: ../../godmode/users/configure_user.php:1482
+#: ../../godmode/users/configure_profile.php:408
+#: ../../godmode/groups/configure_group.php:276
+#: ../../godmode/groups/configure_modu_group.php:83
 msgid "Update"
 msgstr ""
 
-#: ../../views/calendar/special_days_edit.php:207
-#: ../../views/calendar/special_days.php:407
-#: ../../views/calendar/special_days.php:506
-#: ../../views/dashboard/header.php:69 ../../views/dashboard/header.php:103
-#: ../../views/dashboard/list.php:225
-#: ../../godmode/agentes/status_monitor_custom_fields.php:242
-#: ../../godmode/massive/massive_operations.php:393
-#: ../../godmode/setup/snmp_wizard.php:100
-#: ../../godmode/um_client/views/register.php:86
-#: ../../godmode/events/custom_events.php:204
-#: ../../include/functions_visual_map_editor.php:880
-#: ../../include/functions_visual_map_editor.php:884
-#: ../../include/functions_register.php:179
-#: ../../include/class/ConfigPEN.class.php:669
-#: ../../include/class/ConfigPEN.class.php:693
-#: ../../include/class/TreeGroupEdition.class.php:165
-#: ../../include/class/NetworkMap.class.php:2797
-#: ../../include/class/CredentialStore.class.php:1230
-#: ../../include/class/CredentialStore.class.php:1282
-#: ../../include/class/ModuleTemplates.class.php:1382
-#: ../../include/class/WelcomeWindow.class.php:174
-#: ../../include/class/AgentWizard.class.php:5959
-#: ../../operation/agentes/pandora_networkmap.editor.php:603
-#: ../../operation/snmpconsole/snmp_browser.php:171
-#: ../../operation/snmpconsole/snmp_browser.php:548
-#: ../../operation/snmpconsole/snmp_browser.php:628
-#: ../../operation/snmpconsole/snmp_browser.php:643
-#: ../../general/header.php:810
-msgid "Cancel"
-msgstr ""
-
-#: ../../views/calendar/special_days_edit.php:211
-#: ../../views/calendar/special_days.php:411
-#: ../../views/calendar/special_days.php:510
-#: ../../include/class/AgentWizard.class.php:5911
-msgid "Loading, this operation might take several minutes..."
-msgstr ""
-
-#: ../../views/calendar/edit.php:40
-msgid "Calendars Edit"
-msgstr ""
-
 #: ../../views/calendar/special_days.php:41
 #: ../../include/class/CalendarManager.class.php:669
 msgid "Special days"
@@ -776,6 +1132,123 @@ msgstr ""
 msgid "iCalendar(.ics) file"
 msgstr ""
 
+#: ../../views/calendar/special_days.php:92
+#: ../../views/calendar/special_days.php:358
+#: ../../views/calendar/special_days_edit.php:116
+#: ../../include/functions_html.php:2258
+#: ../../enterprise/include/functions_reporting.php:1731
+#: ../../enterprise/include/functions_reporting.php:2462
+#: ../../enterprise/include/functions_reporting.php:2780
+#: ../../enterprise/include/functions_reporting.php:3405
+#: ../../enterprise/include/functions_reporting.php:4381
+#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:95
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1848
+#: ../../godmode/reporting/reporting_builder.item_editor.php:1348
+#: ../../godmode/alerts/alert_templates.php:64
+msgid "Monday"
+msgstr ""
+
+#: ../../views/calendar/special_days.php:93
+#: ../../views/calendar/special_days.php:362
+#: ../../views/calendar/special_days_edit.php:117
+#: ../../include/functions_html.php:2259
+#: ../../enterprise/include/functions_reporting.php:1732
+#: ../../enterprise/include/functions_reporting.php:2463
+#: ../../enterprise/include/functions_reporting.php:2781
+#: ../../enterprise/include/functions_reporting.php:3406
+#: ../../enterprise/include/functions_reporting.php:4382
+#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:96
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1856
+#: ../../godmode/reporting/reporting_builder.item_editor.php:1356
+#: ../../godmode/alerts/alert_templates.php:65
+msgid "Tuesday"
+msgstr ""
+
+#: ../../views/calendar/special_days.php:94
+#: ../../views/calendar/special_days.php:366
+#: ../../views/calendar/special_days_edit.php:118
+#: ../../include/functions_html.php:2260
+#: ../../enterprise/include/functions_reporting.php:1733
+#: ../../enterprise/include/functions_reporting.php:2464
+#: ../../enterprise/include/functions_reporting.php:2782
+#: ../../enterprise/include/functions_reporting.php:3407
+#: ../../enterprise/include/functions_reporting.php:4383
+#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:97
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1864
+#: ../../godmode/reporting/reporting_builder.item_editor.php:1364
+#: ../../godmode/alerts/alert_templates.php:66
+msgid "Wednesday"
+msgstr ""
+
+#: ../../views/calendar/special_days.php:95
+#: ../../views/calendar/special_days.php:370
+#: ../../views/calendar/special_days_edit.php:119
+#: ../../include/functions_html.php:2261
+#: ../../enterprise/include/functions_reporting.php:1734
+#: ../../enterprise/include/functions_reporting.php:2465
+#: ../../enterprise/include/functions_reporting.php:2783
+#: ../../enterprise/include/functions_reporting.php:3408
+#: ../../enterprise/include/functions_reporting.php:4384
+#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:98
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1872
+#: ../../godmode/reporting/reporting_builder.item_editor.php:1372
+#: ../../godmode/alerts/alert_templates.php:67
+msgid "Thursday"
+msgstr ""
+
+#: ../../views/calendar/special_days.php:96
+#: ../../views/calendar/special_days.php:374
+#: ../../views/calendar/special_days_edit.php:120
+#: ../../include/functions_html.php:2262
+#: ../../enterprise/include/functions_reporting.php:1735
+#: ../../enterprise/include/functions_reporting.php:2466
+#: ../../enterprise/include/functions_reporting.php:2784
+#: ../../enterprise/include/functions_reporting.php:3409
+#: ../../enterprise/include/functions_reporting.php:4385
+#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:99
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1880
+#: ../../godmode/reporting/reporting_builder.item_editor.php:1380
+#: ../../godmode/alerts/alert_templates.php:68
+msgid "Friday"
+msgstr ""
+
+#: ../../views/calendar/special_days.php:97
+#: ../../views/calendar/special_days.php:378
+#: ../../views/calendar/special_days_edit.php:121
+#: ../../include/functions_html.php:2263
+#: ../../enterprise/include/functions_reporting.php:1736
+#: ../../enterprise/include/functions_reporting.php:2467
+#: ../../enterprise/include/functions_reporting.php:2785
+#: ../../enterprise/include/functions_reporting.php:3410
+#: ../../enterprise/include/functions_reporting.php:4386
+#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:100
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1888
+#: ../../godmode/reporting/reporting_builder.item_editor.php:1388
+#: ../../godmode/alerts/alert_templates.php:69
+msgid "Saturday"
+msgstr ""
+
+#: ../../views/calendar/special_days.php:98
+#: ../../views/calendar/special_days.php:382
+#: ../../views/calendar/special_days_edit.php:122
+#: ../../include/functions_html.php:2257
+#: ../../enterprise/include/functions_reporting.php:1737
+#: ../../enterprise/include/functions_reporting.php:2468
+#: ../../enterprise/include/functions_reporting.php:2786
+#: ../../enterprise/include/functions_reporting.php:3411
+#: ../../enterprise/include/functions_reporting.php:4387
+#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:101
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1896
+#: ../../godmode/reporting/reporting_builder.item_editor.php:1396
+#: ../../godmode/alerts/alert_templates.php:70
+msgid "Sunday"
+msgstr ""
+
+#: ../../views/calendar/special_days.php:102
+#: ../../views/calendar/special_days_edit.php:127
+msgid "Same day of the week"
+msgstr ""
+
 #: ../../views/calendar/special_days.php:122
 msgid "Overwrite"
 msgstr ""
@@ -785,10 +1258,15 @@ msgid "Check this box, if you want to overwrite existing same days."
 msgstr ""
 
 #: ../../views/calendar/special_days.php:138
-#: ../../extensions/extension_uploader.php:89
-#: ../../extensions/resource_registration.php:1117
-#: ../../godmode/servers/plugin_registration.php:113
 #: ../../operation/incidents/dashboard_detail_integriaims_incident.php:218
+#: ../../enterprise/tools/ipam/ipam_vlan_config.php:420
+#: ../../enterprise/tools/ipam/ipam_network.php:142
+#: ../../enterprise/tools/ipam/ipam_supernet_config.php:746
+#: ../../enterprise/tools/ipam/ipam_list.php:77
+#: ../../enterprise/include/functions_policies.php:4477
+#: ../../extensions/extension_uploader.php:92
+#: ../../extensions/resource_registration.php:1137
+#: ../../godmode/servers/plugin_registration.php:113
 msgid "Upload"
 msgstr ""
 
@@ -798,140 +1276,175 @@ msgstr ""
 
 #: ../../views/calendar/special_days.php:174
 #: ../../views/calendar/special_days.php:186
-#: ../../godmode/users/configure_user.php:887
-#: ../../godmode/users/configure_user.php:1086
-#: ../../godmode/agentes/module_manager_editor_common.php:635
-#: ../../godmode/massive/massive_edit_agents.php:735
-#: ../../godmode/alerts/alert_list.list.php:613
-#: ../../godmode/alerts/alert_view.php:43
-#: ../../godmode/setup/gis_step_2.php:575
-#: ../../godmode/setup/gis_step_2.php:661
-#: ../../godmode/setup/setup_visuals.php:193
-#: ../../godmode/setup/setup_visuals.php:215
-#: ../../godmode/setup/setup_visuals.php:435
-#: ../../godmode/setup/setup_visuals.php:454
-#: ../../godmode/setup/setup_visuals.php:1156
-#: ../../godmode/events/event_edit_filter.php:393
-#: ../../include/functions_ui.php:1225
-#: ../../include/class/AgentsAlerts.class.php:937
-#: ../../operation/users/user_edit.php:316
-#: ../../operation/users/user_edit.php:319
-#: ../../operation/users/user_edit.php:330
-#: ../../operation/users/user_edit.php:355
-#: ../../operation/snmpconsole/snmp_view.php:566
 #: ../../operation/gis_maps/gis_map.php:106
-#: ../../operation/events/events_list.php:859
+#: ../../operation/snmpconsole/snmp_view.php:566
+#: ../../operation/events/events_list.php:863
+#: ../../operation/users/user_edit.php:317
+#: ../../operation/users/user_edit.php:320
+#: ../../operation/users/user_edit.php:331
+#: ../../operation/users/user_edit.php:356
+#: ../../include/class/AgentsAlerts.class.php:940
+#: ../../include/functions_ui.php:1234
+#: ../../enterprise/operation/agentes/policy_view.php:332
+#: ../../enterprise/meta/monitoring/wizard/wizard.php:141
+#: ../../enterprise/meta/advanced/metasetup.visual.php:513
+#: ../../enterprise/meta/advanced/metasetup.visual.php:547
+#: ../../enterprise/meta/advanced/metasetup.visual.php:1062
+#: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:122
+#: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:136
+#: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:128
+#: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:134
+#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:105
+#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:443
+#: ../../enterprise/godmode/policies/policy_external_alerts.php:436
+#: ../../enterprise/godmode/policies/policy_alerts.php:406
+#: ../../godmode/setup/gis_step_2.php:578
+#: ../../godmode/setup/gis_step_2.php:664
+#: ../../godmode/setup/setup_visuals.php:196
+#: ../../godmode/setup/setup_visuals.php:218
+#: ../../godmode/setup/setup_visuals.php:438
+#: ../../godmode/setup/setup_visuals.php:457
+#: ../../godmode/setup/setup_visuals.php:1159
+#: ../../godmode/events/event_edit_filter.php:399
+#: ../../godmode/massive/massive_edit_agents.php:981
+#: ../../godmode/agentes/module_manager_editor_common.php:635
+#: ../../godmode/alerts/alert_list.list.php:616
+#: ../../godmode/alerts/alert_view.php:58
+#: ../../godmode/users/configure_user.php:910
+#: ../../godmode/users/configure_user.php:1109
 msgid "Default"
 msgstr ""
 
 #: ../../views/calendar/special_days.php:224
-#: ../../godmode/agentes/planned_downtime.editor.php:657
-#: ../../godmode/alerts/configure_alert_template.php:667
-#: ../../godmode/alerts/alert_view.php:222 ../../include/functions.php:1100
 #: ../../include/class/CalendarManager.class.php:984
-#: ../../include/functions_reporting.php:13543
+#: ../../include/functions_reporting.php:14091 ../../include/functions.php:1101
+#: ../../godmode/agentes/planned_downtime.editor.php:668
 msgid "Sun"
 msgstr ""
 
 #: ../../views/calendar/special_days.php:225
-#: ../../godmode/agentes/planned_downtime.editor.php:651
-#: ../../godmode/alerts/configure_alert_template.php:619
-#: ../../godmode/alerts/alert_view.php:216 ../../include/functions.php:1076
 #: ../../include/class/CalendarManager.class.php:978
-#: ../../include/functions_reporting.php:13513
+#: ../../include/functions_reporting.php:14061 ../../include/functions.php:1077
+#: ../../godmode/agentes/planned_downtime.editor.php:662
 msgid "Mon"
 msgstr ""
 
 #: ../../views/calendar/special_days.php:226
-#: ../../godmode/agentes/planned_downtime.editor.php:652
-#: ../../godmode/alerts/configure_alert_template.php:627
-#: ../../godmode/alerts/alert_view.php:217 ../../include/functions.php:1080
 #: ../../include/class/CalendarManager.class.php:979
-#: ../../include/functions_reporting.php:13518
+#: ../../include/functions_reporting.php:14066 ../../include/functions.php:1081
+#: ../../godmode/agentes/planned_downtime.editor.php:663
 msgid "Tue"
 msgstr ""
 
 #: ../../views/calendar/special_days.php:227
-#: ../../godmode/agentes/planned_downtime.editor.php:653
-#: ../../godmode/alerts/configure_alert_template.php:635
-#: ../../godmode/alerts/alert_view.php:218 ../../include/functions.php:1084
 #: ../../include/class/CalendarManager.class.php:980
-#: ../../include/functions_reporting.php:13523
+#: ../../include/functions_reporting.php:14071 ../../include/functions.php:1085
+#: ../../godmode/agentes/planned_downtime.editor.php:664
 msgid "Wed"
 msgstr ""
 
 #: ../../views/calendar/special_days.php:228
-#: ../../godmode/agentes/planned_downtime.editor.php:654
-#: ../../godmode/alerts/configure_alert_template.php:643
-#: ../../godmode/alerts/alert_view.php:219 ../../include/functions.php:1088
 #: ../../include/class/CalendarManager.class.php:981
-#: ../../include/functions_reporting.php:13528
+#: ../../include/functions_reporting.php:14076 ../../include/functions.php:1089
+#: ../../godmode/agentes/planned_downtime.editor.php:665
 msgid "Thu"
 msgstr ""
 
 #: ../../views/calendar/special_days.php:229
-#: ../../godmode/agentes/planned_downtime.editor.php:655
-#: ../../godmode/alerts/configure_alert_template.php:651
-#: ../../godmode/alerts/alert_view.php:220 ../../include/functions.php:1092
 #: ../../include/class/CalendarManager.class.php:982
-#: ../../include/functions_reporting.php:13533
+#: ../../include/functions_reporting.php:14081 ../../include/functions.php:1093
+#: ../../godmode/agentes/planned_downtime.editor.php:666
 msgid "Fri"
 msgstr ""
 
 #: ../../views/calendar/special_days.php:230
-#: ../../godmode/agentes/planned_downtime.editor.php:656
-#: ../../godmode/alerts/configure_alert_template.php:659
-#: ../../godmode/alerts/alert_view.php:221 ../../include/functions.php:1096
 #: ../../include/class/CalendarManager.class.php:983
-#: ../../include/functions_reporting.php:13538
+#: ../../include/functions_reporting.php:14086 ../../include/functions.php:1097
+#: ../../godmode/agentes/planned_downtime.editor.php:667
 msgid "Sat"
 msgstr ""
 
 #: ../../views/calendar/special_days.php:245
+#: ../../enterprise/include/functions_reporting.php:1774
+#: ../../enterprise/include/functions_reporting.php:2821
+#: ../../enterprise/include/functions_reporting.php:3823
 msgid "January"
 msgstr ""
 
 #: ../../views/calendar/special_days.php:249
+#: ../../enterprise/include/functions_reporting.php:1778
+#: ../../enterprise/include/functions_reporting.php:2825
+#: ../../enterprise/include/functions_reporting.php:3827
 msgid "February"
 msgstr ""
 
 #: ../../views/calendar/special_days.php:253
+#: ../../enterprise/include/functions_reporting.php:1782
+#: ../../enterprise/include/functions_reporting.php:2829
+#: ../../enterprise/include/functions_reporting.php:3831
 msgid "March"
 msgstr ""
 
 #: ../../views/calendar/special_days.php:257
+#: ../../enterprise/include/functions_reporting.php:1786
+#: ../../enterprise/include/functions_reporting.php:2833
+#: ../../enterprise/include/functions_reporting.php:3835
 msgid "April"
 msgstr ""
 
 #: ../../views/calendar/special_days.php:261
+#: ../../enterprise/include/functions_reporting.php:1790
+#: ../../enterprise/include/functions_reporting.php:2837
+#: ../../enterprise/include/functions_reporting.php:3839
 msgid "May"
 msgstr ""
 
 #: ../../views/calendar/special_days.php:265
+#: ../../enterprise/include/functions_reporting.php:1794
+#: ../../enterprise/include/functions_reporting.php:2841
+#: ../../enterprise/include/functions_reporting.php:3843
 msgid "June"
 msgstr ""
 
 #: ../../views/calendar/special_days.php:269
+#: ../../enterprise/include/functions_reporting.php:1798
+#: ../../enterprise/include/functions_reporting.php:2845
+#: ../../enterprise/include/functions_reporting.php:3847
 msgid "July"
 msgstr ""
 
 #: ../../views/calendar/special_days.php:273
+#: ../../enterprise/include/functions_reporting.php:1802
+#: ../../enterprise/include/functions_reporting.php:2849
+#: ../../enterprise/include/functions_reporting.php:3851
 msgid "August"
 msgstr ""
 
 #: ../../views/calendar/special_days.php:277
+#: ../../enterprise/include/functions_reporting.php:1806
+#: ../../enterprise/include/functions_reporting.php:2853
+#: ../../enterprise/include/functions_reporting.php:3855
 msgid "September"
 msgstr ""
 
 #: ../../views/calendar/special_days.php:281
+#: ../../enterprise/include/functions_reporting.php:1810
+#: ../../enterprise/include/functions_reporting.php:2857
+#: ../../enterprise/include/functions_reporting.php:3859
 msgid "October"
 msgstr ""
 
 #: ../../views/calendar/special_days.php:285
+#: ../../enterprise/include/functions_reporting.php:1814
+#: ../../enterprise/include/functions_reporting.php:2861
+#: ../../enterprise/include/functions_reporting.php:3863
 msgid "November"
 msgstr ""
 
 #: ../../views/calendar/special_days.php:289
+#: ../../enterprise/include/functions_reporting.php:1819
+#: ../../enterprise/include/functions_reporting.php:2866
+#: ../../enterprise/include/functions_reporting.php:3868
 msgid "December"
 msgstr ""
 
@@ -939,133 +1452,316 @@ msgstr ""
 msgid "As "
 msgstr ""
 
+#: ../../views/calendar/special_days.php:386
+#: ../../views/calendar/special_days_edit.php:123
+msgid "Holidays"
+msgstr ""
+
+#: ../../views/calendar/special_days.php:407
+#: ../../views/calendar/special_days.php:506
+#: ../../views/calendar/special_days_edit.php:207
+#: ../../views/dashboard/header.php:69 ../../views/dashboard/header.php:103
+#: ../../views/dashboard/list.php:225 ../../general/header.php:814
+#: ../../operation/snmpconsole/snmp_browser.php:174
+#: ../../operation/snmpconsole/snmp_browser.php:551
+#: ../../operation/snmpconsole/snmp_browser.php:631
+#: ../../operation/snmpconsole/snmp_browser.php:646
+#: ../../operation/agentes/pandora_networkmap.editor.php:603
+#: ../../include/functions_visual_map_editor.php:880
+#: ../../include/functions_visual_map_editor.php:884
+#: ../../include/class/ModuleTemplates.class.php:1382
+#: ../../include/class/AgentWizard.class.php:6009
+#: ../../include/class/WelcomeWindow.class.php:174
+#: ../../include/class/ConfigPEN.class.php:669
+#: ../../include/class/ConfigPEN.class.php:693
+#: ../../include/class/CredentialStore.class.php:1242
+#: ../../include/class/CredentialStore.class.php:1294
+#: ../../include/class/NetworkMap.class.php:2807
+#: ../../include/class/TreeGroupEdition.class.php:165
+#: ../../include/functions_register.php:179
+#: ../../update_manager_client/views/register.php:86
+#: ../../enterprise/tools/ipam/ipam_vlan_config.php:808
+#: ../../enterprise/tools/ipam/ipam_vlan_config.php:831
+#: ../../enterprise/tools/ipam/ipam_supernet_config.php:1298
+#: ../../enterprise/tools/ipam/ipam_supernet_config.php:1322
+#: ../../enterprise/views/ncm/agent/details.php:690
+#: ../../enterprise/include/class/AgentRepository.class.php:801
+#: ../../enterprise/include/class/AgentRepository.class.php:899
+#: ../../enterprise/include/class/LogSource.class.php:845
+#: ../../enterprise/include/class/LogSource.class.php:898
+#: ../../enterprise/include/class/ManageBackups.class.php:446
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3007
+#: ../../enterprise/include/class/DeploymentCenter.class.php:1567
+#: ../../enterprise/include/class/DeploymentCenter.class.php:1669
+#: ../../enterprise/include/class/DeploymentCenter.class.php:1721
+#: ../../enterprise/include/class/DeploymentCenter.class.php:1753
+#: ../../enterprise/include/class/DeploymentCenter.class.php:1788
+#: ../../enterprise/include/functions_HA_cluster.php:492
+#: ../../enterprise/meta/event/custom_events.php:250
+#: ../../enterprise/meta/monitoring/custom_fields_view.php:1152
+#: ../../enterprise/godmode/services/services.elements.php:844
+#: ../../enterprise/godmode/services/services.elements.php:855
+#: ../../enterprise/godmode/services/services.service.php:966
+#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:341
+#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:266
+#: ../../godmode/setup/snmp_wizard.php:100
+#: ../../godmode/events/custom_events.php:205
+#: ../../godmode/massive/massive_operations.php:393
+#: ../../godmode/agentes/status_monitor_custom_fields.php:242
+msgid "Cancel"
+msgstr ""
+
+#: ../../views/calendar/special_days.php:411
+#: ../../views/calendar/special_days.php:510
+#: ../../views/calendar/special_days_edit.php:211
+#: ../../include/class/AgentWizard.class.php:5961
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:4321
+#: ../../godmode/agentes/planned_downtime.list.php:695
+#: ../../godmode/alerts/configure_alert_template.php:1550
+msgid "Loading, this operation might take several minutes..."
+msgstr ""
+
 #: ../../views/calendar/special_days.php:421
 msgid "Show templates"
 msgstr ""
 
 #: ../../views/calendar/special_days.php:431
-#: ../../extensions/files_repo/files_repo_list.php:138
-#: ../../godmode/groups/group_list.php:914
-#: ../../godmode/groups/group_list.php:915
-#: ../../godmode/users/profile_list.php:434
-#: ../../godmode/users/user_list.php:772
-#: ../../godmode/agentes/modificar_agente.php:805
-#: ../../godmode/agentes/modificar_agente.php:811
-#: ../../godmode/agentes/planned_downtime.list.php:408
-#: ../../godmode/agentes/fields_manager.php:154
-#: ../../godmode/setup/snmp_wizard.php:110
-#: ../../godmode/reporting/reporting_builder.list_items.php:624
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2127
-#: ../../godmode/reporting/reporting_builder.php:1178
-#: ../../godmode/events/event_responses.list.php:79
-#: ../../godmode/servers/servers.build_table.php:220
-#: ../../godmode/servers/plugin.php:179 ../../godmode/servers/plugin.php:879
-#: ../../include/functions_cron.php:790 ../../include/functions_cron.php:818
-#: ../../include/ajax/module.php:1110
-#: ../../include/class/NetworkMap.class.php:3003
-#: ../../include/class/CalendarManager.class.php:652
-#: ../../operation/agentes/estado_agente.php:875
-#: ../../operation/agentes/estado_agente.php:878
-#: ../../operation/agentes/pandora_networkmap.php:713
-#: ../../operation/agentes/status_monitor.php:1510
+#: ../../operation/search_reports.php:68
 #: ../../operation/gis_maps/gis_map.php:190
+#: ../../operation/agentes/status_monitor.php:1510
+#: ../../operation/agentes/pandora_networkmap.php:713
+#: ../../operation/agentes/estado_agente.php:877
+#: ../../operation/agentes/estado_agente.php:880
 #: ../../operation/incidents/list_integriaims_incidents.php:550
-#: ../../operation/search_reports.php:67
-#: ../../operation/servers/recon_view.php:115
+#: ../../include/functions_cron.php:881 ../../include/functions_cron.php:909
+#: ../../include/ajax/module.php:1110
+#: ../../include/class/CalendarManager.class.php:652
+#: ../../include/class/NetworkMap.class.php:3013
+#: ../../enterprise/tools/ipam/ipam_ajax.php:122
+#: ../../enterprise/tools/ipam/ipam_ajax.php:527
+#: ../../enterprise/tools/ipam/ipam.php:417
+#: ../../enterprise/operation/agentes/tag_view.php:742
+#: ../../enterprise/include/ajax/transactional.ajax.php:117
+#: ../../enterprise/include/ajax/transactional.ajax.php:205
+#: ../../enterprise/include/class/Omnishell.class.php:1137
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2382
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3036
+#: ../../enterprise/include/class/NetworkConfigManager.class.php:612
+#: ../../enterprise/include/class/NetworkConfigManager.class.php:784
+#: ../../enterprise/include/class/NetworkConfigManager.class.php:960
+#: ../../enterprise/include/class/NetworkConfigManager.class.php:1107
+#: ../../enterprise/include/class/NetworkConfigManager.class.php:1315
+#: ../../enterprise/include/functions_tasklist.php:595
+#: ../../enterprise/include/functions_tasklist.php:637
+#: ../../enterprise/include/lib/ClusterViewer/ClusterManager.php:618
+#: ../../enterprise/include/lib/Metaconsole/Node.php:1149
+#: ../../enterprise/include/lib/Metaconsole/Node.php:1150
+#: ../../enterprise/meta/screens/screens.visualmap.php:73
+#: ../../enterprise/meta/include/functions_autoprovision.php:506
+#: ../../enterprise/meta/include/functions_autoprovision.php:507
+#: ../../enterprise/meta/include/functions_autoprovision.php:672
+#: ../../enterprise/meta/include/functions_autoprovision.php:673
+#: ../../enterprise/meta/include/functions_wizard_meta.php:2067
+#: ../../enterprise/meta/include/functions_wizard_meta.php:2162
+#: ../../enterprise/meta/include/functions_wizard_meta.php:2726
+#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:298
+#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:464
+#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:815
+#: ../../enterprise/meta/monitoring/wizard/wizard.manage_alert.php:74
+#: ../../enterprise/meta/advanced/collections.editor.php:203
+#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:382
+#: ../../enterprise/godmode/reporting/reporting_builder.template.php:612
+#: ../../enterprise/godmode/massive/massive_edit_tags_policy.php:204
+#: ../../enterprise/godmode/agentes/collections.editor.php:234
+#: ../../extensions/files_repo/files_repo_list.php:138
+#: ../../godmode/setup/snmp_wizard.php:110 ../../godmode/servers/plugin.php:179
+#: ../../godmode/servers/plugin.php:880
+#: ../../godmode/servers/servers.build_table.php:234
+#: ../../godmode/reporting/reporting_builder.list_items.php:624
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2175
+#: ../../godmode/reporting/reporting_builder.php:1169
+#: ../../godmode/events/event_responses.list.php:79
+#: ../../godmode/agentes/planned_downtime.list.php:624
+#: ../../godmode/agentes/fields_manager.php:154
+#: ../../godmode/agentes/modificar_agente.php:803
+#: ../../godmode/agentes/modificar_agente.php:809
+#: ../../godmode/users/user_list.php:796
+#: ../../godmode/users/profile_list.php:434
+#: ../../godmode/groups/group_list.php:917
+#: ../../godmode/groups/group_list.php:918
 msgid "Edit"
 msgstr ""
 
 #: ../../views/calendar/special_days.php:438 ../../views/dashboard/list.php:185
+#: ../../operation/messages/message_list.php:272
+#: ../../operation/messages/message_list.php:275
+#: ../../operation/snmpconsole/snmp_browser.php:643
+#: ../../operation/snmpconsole/snmp_view.php:1033
+#: ../../operation/snmpconsole/snmp_view.php:1046
+#: ../../operation/snmpconsole/snmp_view.php:1220
+#: ../../operation/events/events.build_table.php:983
+#: ../../operation/agentes/pandora_networkmap.php:801
+#: ../../operation/agentes/pandora_networkmap.editor.php:600
+#: ../../operation/users/user_edit.php:1168
+#: ../../operation/incidents/list_integriaims_incidents.php:554
+#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:197
+#: ../../include/class/ModuleTemplates.class.php:918
+#: ../../include/class/ModuleTemplates.class.php:933
+#: ../../include/class/WelcomeWindow.class.php:171
+#: ../../include/class/ConfigPEN.class.php:666
+#: ../../include/class/CredentialStore.class.php:1288
+#: ../../include/class/TreeGroupEdition.class.php:166
+#: ../../include/lib/Dashboard/Widgets/events_list.php:680
+#: ../../include/functions_events.php:3783
+#: ../../include/functions_filemanager.php:715
+#: ../../include/functions_container.php:190
+#: ../../include/functions_container.php:324
+#: ../../include/functions_profile.php:278
+#: ../../update_manager_client/views/online.php:123
+#: ../../update_manager_client/views/online.php:164
+#: ../../update_manager_client/views/offline.php:73
+#: ../../enterprise/tools/ipam/ipam_vlan_config.php:726
+#: ../../enterprise/tools/ipam/ipam_vlan_config.php:856
+#: ../../enterprise/tools/ipam/ipam_network_location_config.php:287
+#: ../../enterprise/tools/ipam/ipam_supernet_config.php:1209
+#: ../../enterprise/tools/ipam/ipam_supernet_config.php:1347
+#: ../../enterprise/operation/services/services.list.php:649
+#: ../../enterprise/operation/services/services.list.php:743
+#: ../../enterprise/operation/agentes/transactional_map.php:414
+#: ../../enterprise/operation/agentes/transactional_map.php:478
+#: ../../enterprise/operation/agentes/manage_transmap_creation.php:268
+#: ../../enterprise/include/ajax/transactional.ajax.php:118
+#: ../../enterprise/include/ajax/transactional.ajax.php:207
+#: ../../enterprise/include/ajax/ipam.ajax.php:755
+#: ../../enterprise/include/ajax/ipam.ajax.php:833
+#: ../../enterprise/include/class/AgentRepository.class.php:792
+#: ../../enterprise/include/class/LogSource.class.php:892
+#: ../../enterprise/include/class/ManageBackups.class.php:443
+#: ../../enterprise/include/class/Omnishell.class.php:504
+#: ../../enterprise/include/class/Omnishell.class.php:1155
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3044
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3356
+#: ../../enterprise/include/class/DeploymentCenter.class.php:1558
+#: ../../enterprise/include/functions_tasklist.php:610
+#: ../../enterprise/include/functions_tasklist.php:645
+#: ../../enterprise/include/lib/Metaconsole/Node.php:1242
+#: ../../enterprise/include/functions_services.php:2022
+#: ../../enterprise/meta/monitoring/custom_fields_view.php:1150
+#: ../../enterprise/meta/monitoring/wizard/wizard.php:143
+#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:566
+#: ../../enterprise/meta/advanced/policymanager.queue.php:349
+#: ../../enterprise/meta/advanced/metasetup.relations.php:584
+#: ../../enterprise/meta/advanced/links.php:173
+#: ../../enterprise/godmode/setup/setup_skins.php:147
+#: ../../enterprise/godmode/servers/credential_boxes_satellite.php:287
+#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:349
+#: ../../enterprise/godmode/modules/local_components.php:694
+#: ../../enterprise/godmode/modules/manage_inventory_modules.php:316
+#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:638
+#: ../../enterprise/godmode/reporting/graph_template_wizard.php:447
+#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:837
+#: ../../enterprise/godmode/reporting/mysql_builder.php:104
+#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:214
+#: ../../enterprise/godmode/reporting/graph_template_list.php:234
+#: ../../enterprise/godmode/reporting/reporting_builder.template.php:619
+#: ../../enterprise/godmode/reporting/reporting_builder.template.php:638
+#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:412
+#: ../../enterprise/godmode/agentes/inventory_manager.php:248
+#: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:249
+#: ../../enterprise/godmode/agentes/manage_config_remote.php:203
+#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:93
+#: ../../enterprise/godmode/alerts/alert_inventory_list.php:415
+#: ../../enterprise/godmode/policies/policy_agents.php:401
+#: ../../enterprise/godmode/policies/policy_agents.php:724
+#: ../../enterprise/godmode/policies/policy_agents.php:1040
+#: ../../enterprise/godmode/policies/policy_agents.php:1155
+#: ../../enterprise/godmode/policies/policy_agents.php:1304
+#: ../../enterprise/godmode/policies/policy_agents.php:1519
+#: ../../enterprise/godmode/policies/policy_queue.php:770
+#: ../../enterprise/godmode/policies/policy_queue.php:804
+#: ../../enterprise/godmode/policies/policy_queue.php:820
+#: ../../enterprise/godmode/policies/policy_modules.php:1545
+#: ../../enterprise/godmode/policies/policy_modules.php:1561
+#: ../../enterprise/godmode/policies/policy_modules.php:1612
+#: ../../enterprise/godmode/policies/policies.php:560
+#: ../../enterprise/godmode/policies/policies.php:581
+#: ../../enterprise/godmode/policies/policies.php:616
+#: ../../enterprise/godmode/policies/policy_external_alerts.php:513
+#: ../../enterprise/godmode/policies/policy_inventory_modules.php:328
+#: ../../enterprise/godmode/policies/policy_inventory_modules.php:333
+#: ../../enterprise/godmode/policies/policy_alerts.php:518
 #: ../../extensions/files_repo/files_repo_list.php:146
-#: ../../godmode/modules/manage_nc_groups.php:266
-#: ../../godmode/modules/manage_network_components.php:871
-#: ../../godmode/modules/manage_network_templates.php:260
-#: ../../godmode/modules/manage_network_templates.php:275
-#: ../../godmode/groups/group_list.php:923
-#: ../../godmode/groups/modu_group_list.php:273
-#: ../../godmode/groups/modu_group_list.php:276
-#: ../../godmode/users/profile_list.php:439
-#: ../../godmode/users/configure_user.php:1595
-#: ../../godmode/users/configure_user.php:1890
-#: ../../godmode/agentes/agent_template.php:259
-#: ../../godmode/agentes/modificar_agente.php:931
-#: ../../godmode/agentes/planned_downtime.editor.php:998
-#: ../../godmode/agentes/fields_manager.php:155
-#: ../../godmode/agentes/agent_manager.php:234
-#: ../../godmode/agentes/module_manager_editor_common.php:233
+#: ../../godmode/setup/news.php:290 ../../godmode/setup/links.php:160
+#: ../../godmode/servers/plugin.php:884
+#: ../../godmode/modules/manage_network_components.php:864
+#: ../../godmode/modules/manage_network_templates.php:272
+#: ../../godmode/modules/manage_network_templates.php:287
+#: ../../godmode/modules/manage_nc_groups.php:275
+#: ../../godmode/category/category.php:192
+#: ../../godmode/category/category.php:211
+#: ../../godmode/reporting/map_builder.php:512
+#: ../../godmode/reporting/map_builder.php:523
+#: ../../godmode/reporting/graphs.php:362
+#: ../../godmode/reporting/create_container.php:682
+#: ../../godmode/reporting/visual_console_builder.elements.php:497
+#: ../../godmode/reporting/reporting_builder.php:1179
+#: ../../godmode/reporting/reporting_builder.php:1201
+#: ../../godmode/snmpconsole/snmp_alert.php:1271
+#: ../../godmode/snmpconsole/snmp_alert.php:1319
+#: ../../godmode/snmpconsole/snmp_alert.php:1562
+#: ../../godmode/snmpconsole/snmp_filters.php:301
+#: ../../godmode/snmpconsole/snmp_filters.php:312 ../../godmode/tag/tag.php:395
+#: ../../godmode/events/event_filter.php:188
+#: ../../godmode/netflow/nf_edit.php:195
+#: ../../godmode/netflow/nf_item_list.php:262
+#: ../../godmode/massive/massive_operations.php:391
+#: ../../godmode/massive/massive_standby_alerts.php:254
+#: ../../godmode/massive/massive_edit_plugins.php:576
+#: ../../godmode/massive/massive_enable_disable_alerts.php:226
+#: ../../godmode/wizards/DiscoveryTaskList.class.php:664
+#: ../../godmode/wizards/DiscoveryTaskList.class.php:971
+#: ../../godmode/wizards/DiscoveryTaskList.class.php:997
+#: ../../godmode/wizards/DiscoveryTaskList.class.php:1010
+#: ../../godmode/wizards/DiscoveryTaskList.class.php:1021
 #: ../../godmode/agentes/module_manager.php:1161
 #: ../../godmode/agentes/module_manager.php:1175
 #: ../../godmode/agentes/module_manager.php:1200
 #: ../../godmode/agentes/module_manager.php:1223
 #: ../../godmode/agentes/module_manager.php:1248
-#: ../../godmode/netflow/nf_item_list.php:262
-#: ../../godmode/netflow/nf_edit.php:195
-#: ../../godmode/snmpconsole/snmp_alert.php:1238
-#: ../../godmode/snmpconsole/snmp_alert.php:1286
-#: ../../godmode/snmpconsole/snmp_alert.php:1529
-#: ../../godmode/snmpconsole/snmp_filters.php:301
-#: ../../godmode/snmpconsole/snmp_filters.php:312
-#: ../../godmode/massive/massive_operations.php:391
-#: ../../godmode/massive/massive_standby_alerts.php:230
-#: ../../godmode/massive/massive_edit_plugins.php:571
-#: ../../godmode/massive/massive_enable_disable_alerts.php:218
-#: ../../godmode/alerts/alert_actions.php:430
-#: ../../godmode/alerts/alert_list.list.php:1113
-#: ../../godmode/alerts/alert_commands.php:707
-#: ../../godmode/alerts/alert_commands.php:710
-#: ../../godmode/alerts/alert_templates.php:441
-#: ../../godmode/setup/news.php:290 ../../godmode/setup/links.php:157
-#: ../../godmode/reporting/create_container.php:682
-#: ../../godmode/reporting/map_builder.php:514
-#: ../../godmode/reporting/map_builder.php:525
-#: ../../godmode/reporting/graphs.php:352
-#: ../../godmode/reporting/visual_console_builder.elements.php:497
-#: ../../godmode/reporting/reporting_builder.php:1188
-#: ../../godmode/reporting/reporting_builder.php:1210
-#: ../../godmode/um_client/views/offline.php:71
-#: ../../godmode/um_client/views/online.php:122
-#: ../../godmode/um_client/views/online.php:163
-#: ../../godmode/events/event_filter.php:188
-#: ../../godmode/wizards/DiscoveryTaskList.class.php:616
-#: ../../godmode/wizards/DiscoveryTaskList.class.php:923
-#: ../../godmode/wizards/DiscoveryTaskList.class.php:949
-#: ../../godmode/wizards/DiscoveryTaskList.class.php:962
-#: ../../godmode/wizards/DiscoveryTaskList.class.php:973
-#: ../../godmode/servers/plugin.php:883 ../../godmode/tag/tag.php:384
-#: ../../godmode/category/category.php:183
-#: ../../godmode/category/category.php:202
-#: ../../include/functions_profile.php:278
-#: ../../include/class/ConfigPEN.class.php:666
-#: ../../include/class/TreeGroupEdition.class.php:166
-#: ../../include/class/CredentialStore.class.php:1276
-#: ../../include/class/ModuleTemplates.class.php:918
-#: ../../include/class/ModuleTemplates.class.php:933
-#: ../../include/class/WelcomeWindow.class.php:171
-#: ../../include/functions_filemanager.php:742
-#: ../../include/functions_container.php:190
-#: ../../include/functions_container.php:324
-#: ../../include/functions_events.php:3740
-#: ../../operation/users/user_edit.php:1167
-#: ../../operation/agentes/pandora_networkmap.editor.php:600
-#: ../../operation/agentes/pandora_networkmap.php:801
-#: ../../operation/messages/message_list.php:272
-#: ../../operation/messages/message_list.php:275
-#: ../../operation/snmpconsole/snmp_browser.php:640
-#: ../../operation/snmpconsole/snmp_view.php:1033
-#: ../../operation/snmpconsole/snmp_view.php:1046
-#: ../../operation/snmpconsole/snmp_view.php:1220
-#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:197
-#: ../../operation/incidents/list_integriaims_incidents.php:554
-#: ../../operation/events/events.build_table.php:976
+#: ../../godmode/agentes/module_manager_editor_common.php:233
+#: ../../godmode/agentes/agent_manager.php:237
+#: ../../godmode/agentes/planned_downtime.editor.php:1009
+#: ../../godmode/agentes/fields_manager.php:155
+#: ../../godmode/agentes/agent_template.php:259
+#: ../../godmode/agentes/modificar_agente.php:929
+#: ../../godmode/alerts/alert_list.list.php:1116
+#: ../../godmode/alerts/alert_actions.php:424
+#: ../../godmode/alerts/alert_templates.php:436
+#: ../../godmode/alerts/alert_commands.php:721
+#: ../../godmode/alerts/alert_commands.php:724
+#: ../../godmode/users/configure_user.php:1635
+#: ../../godmode/users/configure_user.php:1930
+#: ../../godmode/users/profile_list.php:439
+#: ../../godmode/groups/modu_group_list.php:273
+#: ../../godmode/groups/modu_group_list.php:276
+#: ../../godmode/groups/group_list.php:926
 msgid "Are you sure?"
 msgstr ""
 
 #: ../../views/calendar/special_days.php:442
-#: ../../godmode/events/event_edit_filter.php:531
-#: ../../godmode/events/event_edit_filter.php:584
-#: ../../operation/events/events_list.php:626
-#: ../../operation/events/events_list.php:699
-#: ../../operation/events/events.php:630 ../../operation/events/events.php:704
+#: ../../operation/events/events.php:642 ../../operation/events/events.php:716
+#: ../../operation/events/events_list.php:630
+#: ../../operation/events/events_list.php:703
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:4319
+#: ../../enterprise/include/functions_ui.php:120
+#: ../../enterprise/include/functions_ui.php:168
+#: ../../enterprise/godmode/massive/massive_edit_tags_policy.php:177
+#: ../../enterprise/godmode/massive/massive_tags_edit_policy.php:161
+#: ../../enterprise/godmode/agentes/collection_manager.php:210
+#: ../../enterprise/godmode/policies/policy_collections.php:173
+#: ../../godmode/events/event_edit_filter.php:537
+#: ../../godmode/events/event_edit_filter.php:590
+#: ../../godmode/alerts/configure_alert_template.php:1548
 msgid "Remove"
 msgstr ""
 
@@ -1073,28 +1769,285 @@ msgstr ""
 msgid "Load calendar"
 msgstr ""
 
+#: ../../views/calendar/special_days_edit.php:40
+#: ../../operation/search_agents.php:57
+#: ../../operation/agentes/estado_agente.php:766
+#: ../../operation/agentes/ver_agente.php:1418
+#: ../../operation/search_results.php:106
+#: ../../include/functions_reports.php:843
+#: ../../include/functions_reports.php:847
+#: ../../include/functions_reports.php:853
+#: ../../include/functions_reports.php:859
+#: ../../include/class/AgentsAlerts.class.php:542
+#: ../../include/functions_treeview.php:405
+#: ../../include/functions_reporting_html.php:2313
+#: ../../include/functions_reporting_html.php:5335
+#: ../../enterprise/operation/agentes/tag_view.php:608
+#: ../../enterprise/include/functions_policies.php:3761
+#: ../../enterprise/meta/include/functions_wizard_meta.php:1537
+#: ../../enterprise/meta/include/functions_wizard_meta.php:1630
+#: ../../enterprise/meta/include/functions_wizard_meta.php:1755
+#: ../../enterprise/meta/monitoring/wizard/wizard.php:297
+#: ../../enterprise/meta/monitoring/wizard/wizard.module.web.php:102
+#: ../../enterprise/meta/monitoring/wizard/wizard.module.local.php:109
+#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:797
+#: ../../enterprise/meta/monitoring/wizard/wizard.module.network.php:121
+#: ../../enterprise/meta/agentsearch.php:141
+#: ../../enterprise/godmode/services/services.service.php:903
+#: ../../enterprise/godmode/massive/massive_create_services.php:877
+#: ../../enterprise/godmode/alerts/alert_inventory.php:78
+#: ../../enterprise/godmode/alerts/alert_inventory.php:80
+#: ../../enterprise/godmode/policies/policies.php:519
+#: ../../enterprise/godmode/policies/policy_alerts.php:46
+#: ../../mobile/operation/agent.php:355 ../../mobile/operation/home.php:74
+#: ../../mobile/operation/alerts.php:194 ../../mobile/operation/agents.php:98
+#: ../../mobile/operation/agents.php:407
+#: ../../mobile/include/functions_web.php:26 ../../godmode/menu.php:220
+#: ../../godmode/massive/massive_copy_modules.php:216
+#: ../../godmode/agentes/configurar_agente.php:421
+#: ../../godmode/agentes/modificar_agente.php:823
+#: ../../godmode/alerts/configure_alert_template.php:99
+#: ../../godmode/alerts/configure_alert_template.php:123
+#: ../../godmode/alerts/configure_alert_template.php:155
+#: ../../godmode/alerts/alert_actions.php:74
+#: ../../godmode/alerts/alert_templates.php:131
+#: ../../godmode/alerts/alert_templates.php:183
+#: ../../godmode/alerts/alert_templates.php:206
+#: ../../godmode/alerts/alert_templates.php:227
+#: ../../godmode/alerts/alert_commands.php:494
+#: ../../godmode/alerts/alert_list.php:494
+#: ../../godmode/alerts/alert_list.php:496
+#: ../../godmode/alerts/configure_alert_command.php:60
+#: ../../godmode/alerts/configure_alert_action.php:74
+#: ../../godmode/alerts/configure_alert_action.php:87
+#: ../../godmode/groups/configure_group.php:230
+#: ../../godmode/groups/group_list.php:846
+msgid "Alerts"
+msgstr ""
+
+#: ../../views/calendar/special_days_edit.php:40
+msgid "Configure special day"
+msgstr ""
+
+#: ../../views/calendar/special_days_edit.php:80 ../../general/logon_ok.php:249
+#: ../../operation/reporting/graph_viewer.php:348
+#: ../../operation/events/events.build_table.php:705
+#: ../../operation/incidents/list_integriaims_incidents.php:371
+#: ../../include/class/AuditLog.class.php:110
+#: ../../include/functions_events.php:7120
+#: ../../include/functions_reporting.php:4009
+#: ../../include/functions_reporting.php:4050 ../../include/functions.php:3045
+#: ../../include/functions_reporting_html.php:1749
+#: ../../include/functions_reporting_html.php:2534
+#: ../../include/functions_reporting_html.php:2543
+#: ../../include/functions_reporting_html.php:2548
+#: ../../include/functions_reporting_html.php:2557
+#: ../../include/functions_reporting_html.php:2562
+#: ../../include/functions_reporting_html.php:2569
+#: ../../include/functions_reporting_html.php:2618
+#: ../../include/functions_reporting_html.php:2691
+#: ../../include/functions_reporting_html.php:5677
+#: ../../enterprise/operation/agentes/agent_inventory.php:75
+#: ../../enterprise/operation/inventory/inventory.php:418
+#: ../../enterprise/include/functions_reporting_csv.php:776
+#: ../../enterprise/include/functions_reporting_csv.php:832
+#: ../../enterprise/include/functions_reporting_csv.php:877
+#: ../../enterprise/include/functions_reporting_csv.php:2518
+#: ../../enterprise/include/class/ManageBackups.class.php:163
+#: ../../enterprise/include/functions_inventory.php:851
+#: ../../enterprise/include/functions_log.php:279
+#: ../../enterprise/include/functions_log.php:282
+#: ../../enterprise/include/functions_reporting.php:2143
+#: ../../enterprise/include/functions_reporting.php:2180
+#: ../../enterprise/include/functions_reporting.php:2215
+#: ../../enterprise/include/functions_reporting.php:2233
+#: ../../enterprise/include/functions_reporting_pdf.php:712
+#: ../../extensions/insert_data.php:196 ../../mobile/operation/tactical.php:350
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2054
+msgid "Date"
+msgstr ""
+
+#: ../../views/calendar/list.php:39
+msgid "Calendars"
+msgstr ""
+
+#: ../../views/calendar/list.php:92
+#: ../../operation/events/events.build_table.php:146
+#: ../../operation/incidents/list_integriaims_incidents.php:515
+#: ../../include/functions_events.php:6653
+#: ../../enterprise/tools/ipam/ipam_excel.php:130
+#: ../../enterprise/tools/ipam/ipam_excel.php:199
+#: ../../enterprise/tools/ipam/ipam_vlan_config.php:660
+#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:91
+#: ../../extensions/api_checker.php:161 ../../godmode/setup/os.list.php:68
+#: ../../godmode/modules/module_list.php:61
+#: ../../godmode/agentes/module_manager_editor_common.php:230
+#: ../../godmode/agentes/agent_manager.php:219
+#: ../../godmode/agentes/fields_manager.php:118
+#: ../../godmode/agentes/agent_incidents.php:88
+#: ../../godmode/alerts/alert_commands.php:656
+#: ../../godmode/groups/modu_group_list.php:251
+#: ../../godmode/groups/group_list.php:840
+msgid "ID"
+msgstr ""
+
+#: ../../views/calendar/list.php:96 ../../views/dashboard/header.php:80
+#: ../../include/class/ExternalTools.class.php:383
+#: ../../include/class/ConfigPEN.class.php:601
+#: ../../include/class/CredentialStore.class.php:807
+#: ../../include/functions_events.php:302
+#: ../../enterprise/views/ncm/agent/details.php:92
+#: ../../enterprise/views/ncm/snippets/list.php:71
+#: ../../enterprise/views/ncm/firmwares/list.php:77
+#: ../../enterprise/views/ncm/vendors/list.php:71
+#: ../../enterprise/views/ncm/templates/list.php:77
+#: ../../enterprise/views/ncm/models/list.php:73
+#: ../../enterprise/views/ipam/sites/list.php:49
+#: ../../enterprise/views/cluster/list.php:64
+#: ../../enterprise/include/class/AgentRepository.class.php:635
+#: ../../enterprise/include/class/LogSource.class.php:630
+#: ../../enterprise/include/class/Omnishell.class.php:402
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2297
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2906
+#: ../../enterprise/include/class/DeploymentCenter.class.php:764
+#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:266
+#: ../../enterprise/extensions/vmware/vmware_view.php:1338
+#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:261
+#: ../../godmode/update_manager/update_manager.php:42
+#: ../../godmode/reporting/reporting_builder.list_items.php:427
+msgid "Options"
+msgstr ""
+
+#: ../../views/calendar/list.php:119
+#: ../../operation/snmpconsole/snmp_view.php:600
+#: ../../operation/events/events.php:1135
+#: ../../operation/events/events_list.php:767 ../../include/ajax/module.php:292
+#: ../../include/class/ConfigPEN.class.php:627
+#: ../../include/class/CredentialStore.class.php:845
+#: ../../enterprise/views/ncm/snippets/list.php:102
+#: ../../enterprise/views/ncm/firmwares/list.php:108
+#: ../../enterprise/views/ncm/vendors/list.php:94
+#: ../../enterprise/views/ncm/devices/list.php:155
+#: ../../enterprise/views/ncm/templates/list.php:108
+#: ../../enterprise/views/ncm/models/list.php:96
+#: ../../enterprise/views/ipam/sites/list.php:73
+#: ../../enterprise/views/cluster/list.php:96
+#: ../../enterprise/include/class/LogSource.class.php:656
+#: ../../enterprise/include/lib/Metaconsole/Node.php:623
+#: ../../enterprise/include/functions_events.php:117
+#: ../../enterprise/include/functions_ipam.php:1663
+#: ../../enterprise/meta/advanced/metasetup.consoles.php:874
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3244
+#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:726
+#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:197
+#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:257
+#: ../../mobile/operation/modules.php:318 ../../mobile/operation/alerts.php:241
+#: ../../mobile/operation/events.php:701 ../../mobile/operation/agents.php:253
+#: ../../godmode/update_manager/update_manager.history.php:67
+#: ../../godmode/snmpconsole/snmp_alert.php:1073
+#: ../../godmode/events/event_edit_filter.php:361
+msgid "Free search"
+msgstr ""
+
+#: ../../views/dashboard/slides.php:41
+#: ../../operation/snmpconsole/snmp_view.php:741
+msgid "Exit fullscreen"
+msgstr ""
+
+#: ../../views/dashboard/slides.php:181
+msgid "Change every"
+msgstr ""
+
+#: ../../views/dashboard/slides.php:203 ../../include/functions.php:3867
+#: ../../enterprise/meta/monitoring/wizard/wizard.module.web.php:212
+#: ../../enterprise/meta/monitoring/wizard/wizard.module.local.php:211
+#: ../../enterprise/meta/monitoring/wizard/wizard.agent.php:146
+#: ../../enterprise/meta/monitoring/wizard/wizard.module.network.php:252
+msgid "Previous"
+msgstr ""
+
+#: ../../views/dashboard/slides.php:218
+#: ../../enterprise/operation/agentes/transactional_map.php:402
+msgid "Stop"
+msgstr ""
+
+#: ../../views/dashboard/slides.php:229
+msgid "Pause"
+msgstr ""
+
+#: ../../views/dashboard/slides.php:240
+#: ../../include/class/CustomNetScan.class.php:550
+#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:568
+#: ../../enterprise/include/class/Aws.cloud.php:1423
+#: ../../enterprise/include/class/MySQL.app.php:589
+#: ../../enterprise/include/class/Oracle.app.php:574
+#: ../../enterprise/include/class/DB2.app.php:567
+#: ../../enterprise/include/class/SAP.app.php:442
+#: ../../enterprise/include/class/Omnishell.class.php:643
+#: ../../enterprise/include/class/VMware.app.php:534
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:831
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1093
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1965
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2062
+#: ../../enterprise/include/lib/ClusterViewer/ClusterWizard.php:1200
+#: ../../enterprise/meta/monitoring/wizard/wizard.php:132
+#: ../../enterprise/meta/monitoring/wizard/wizard.module.web.php:215
+#: ../../enterprise/meta/monitoring/wizard/wizard.module.local.php:214
+#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:733
+#: ../../enterprise/meta/monitoring/wizard/wizard.agent.php:149
+#: ../../enterprise/meta/monitoring/wizard/wizard.module.network.php:262
+#: ../../enterprise/godmode/wizards/Cloud.class.php:579
+#: ../../godmode/wizards/HostDevices.class.php:769
+#: ../../godmode/alerts/configure_alert_template.php:1181
+#: ../../godmode/alerts/configure_alert_template.php:1188
+msgid "Next"
+msgstr ""
+
+#: ../../views/dashboard/slides.php:252
+msgid "Mode Cell"
+msgstr ""
+
+#: ../../views/dashboard/slides.php:258
+msgid "Mode Layout"
+msgstr ""
+
+#: ../../views/dashboard/cell.php:42
+msgid "New widget"
+msgstr ""
+
+#: ../../views/dashboard/cell.php:56
+msgid "Configure widget"
+msgstr ""
+
+#: ../../views/dashboard/cell.php:68
+msgid "Delete widget"
+msgstr ""
+
 #: ../../views/dashboard/header.php:43
-#: ../../extensions/disabled/matrix_events.php:32
-#: ../../extensions/agents_modules.php:376
-#: ../../extensions/agents_modules.php:383
-#: ../../extensions/agents_modules.php:386
-#: ../../include/class/AgentsAlerts.class.php:801
-#: ../../operation/visual_console/view.php:210
 #: ../../operation/visual_console/legacy_view.php:205
-#: ../../operation/gis_maps/render_view.php:133
-#: ../../operation/reporting/reporting_viewer.php:183
-#: ../../operation/reporting/graph_viewer.php:228
+#: ../../operation/visual_console/view.php:210
+#: ../../operation/gis_maps/render_view.php:136
+#: ../../operation/reporting/graph_viewer.php:234
+#: ../../operation/reporting/reporting_viewer.php:186
+#: ../../include/class/AgentsAlerts.class.php:804
+#: ../../enterprise/operation/agentes/manage_transmap.php:141
+#: ../../enterprise/meta/screens/screens.visualmap.php:274
+#: ../../extensions/disabled/matrix_events.php:35
+#: ../../extensions/agents_modules.php:380
+#: ../../extensions/agents_modules.php:387
+#: ../../extensions/agents_modules.php:390
 msgid "Full screen mode"
 msgstr ""
 
-#: ../../views/dashboard/header.php:57 ../../extensions/agents_modules.php:500
-#: ../../include/class/AgentsAlerts.class.php:806
-#: ../../operation/visual_console/view.php:444
+#: ../../views/dashboard/header.php:57
 #: ../../operation/visual_console/legacy_view.php:253
-#: ../../operation/gis_maps/render_view.php:135
-#: ../../operation/reporting/reporting_viewer.php:192
-#: ../../operation/reporting/graph_viewer.php:237
-#: ../../operation/events/events.php:759
+#: ../../operation/visual_console/view.php:444
+#: ../../operation/gis_maps/render_view.php:138
+#: ../../operation/reporting/graph_viewer.php:243
+#: ../../operation/reporting/reporting_viewer.php:195
+#: ../../operation/heatmap.php:210 ../../operation/events/events.php:771
+#: ../../include/class/AgentsAlerts.class.php:809
+#: ../../extensions/agents_modules.php:531
 msgid "Back to normal mode"
 msgstr ""
 
@@ -1104,11 +2057,26 @@ msgstr ""
 
 #: ../../views/dashboard/header.php:68 ../../views/dashboard/header.php:102
 #: ../../views/dashboard/list.php:224
-#: ../../godmode/massive/massive_edit_agents.php:735
-#: ../../include/functions_config.php:1223
-#: ../../include/functions_config.php:3073
+#: ../../operation/gis_maps/render_view.php:166
 #: ../../include/lib/Dashboard/Widgets/wux_transaction.php:377
-#: ../../operation/gis_maps/render_view.php:163
+#: ../../include/functions_config.php:1286
+#: ../../include/functions_config.php:3178
+#: ../../enterprise/operation/services/services.service.php:161
+#: ../../enterprise/operation/services/services.list.php:237
+#: ../../enterprise/operation/services/services.list.php:552
+#: ../../enterprise/operation/services/services.service_map.php:116
+#: ../../enterprise/operation/services/services.table_services.php:159
+#: ../../enterprise/operation/agentes/transactional_map.php:321
+#: ../../enterprise/operation/agentes/manage_transmap_creation.php:64
+#: ../../enterprise/include/class/Omnishell.class.php:1499
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3006
+#: ../../enterprise/include/lib/Metaconsole/Node.php:458
+#: ../../enterprise/load_enterprise.php:638
+#: ../../enterprise/load_enterprise.php:1134
+#: ../../enterprise/godmode/services/services.elements.php:843
+#: ../../enterprise/godmode/services/services.elements.php:854
+#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:444
+#: ../../godmode/massive/massive_edit_agents.php:981
 msgid "Ok"
 msgstr ""
 
@@ -1128,20 +2096,27 @@ msgstr ""
 msgid "Show link to public dashboard"
 msgstr ""
 
-#: ../../views/dashboard/header.php:158 ../../extensions/agents_modules.php:512
-#: ../../godmode/wizards/DiscoveryTaskList.class.php:186
-#: ../../include/ajax/module.php:1054
-#: ../../include/class/NetworkMap.class.php:2791
-#: ../../include/class/AgentsAlerts.class.php:845
-#: ../../operation/visual_console/view.php:457
-#: ../../operation/visual_console/legacy_public_view.php:138
-#: ../../operation/visual_console/legacy_view.php:267
-#: ../../operation/visual_console/public_view.php:123
-#: ../../operation/gis_maps/render_view.php:157
-#: ../../operation/reporting/graph_viewer.php:393
-#: ../../operation/events/events.php:771
-#: ../../operation/servers/recon_view.php:50 ../../general/login_page.php:75
+#: ../../views/dashboard/header.php:158 ../../general/login_page.php:75
 #: ../../general/login_page.php:318
+#: ../../operation/visual_console/legacy_public_view.php:141
+#: ../../operation/visual_console/legacy_view.php:267
+#: ../../operation/visual_console/view.php:457
+#: ../../operation/visual_console/public_view.php:123
+#: ../../operation/gis_maps/render_view.php:160
+#: ../../operation/reporting/graph_viewer.php:399
+#: ../../operation/heatmap.php:168 ../../operation/events/events.php:783
+#: ../../include/ajax/module.php:1054 ../../include/ajax/heatmap.ajax.php:47
+#: ../../include/class/AgentsAlerts.class.php:848
+#: ../../include/class/NetworkMap.class.php:2801
+#: ../../enterprise/views/ncm/devices/list.php:171
+#: ../../enterprise/include/class/Omnishell.class.php:544
+#: ../../enterprise/include/class/Omnishell.class.php:1329
+#: ../../enterprise/include/functions_ipam.php:1396
+#: ../../enterprise/meta/advanced/policymanager.queue.php:238
+#: ../../enterprise/godmode/servers/HA_cluster.php:416
+#: ../../enterprise/godmode/policies/policy_queue.php:801
+#: ../../extensions/agents_modules.php:543
+#: ../../godmode/wizards/DiscoveryTaskList.class.php:191
 msgid "Refresh"
 msgstr ""
 
@@ -1150,79 +2125,154 @@ msgid "Add Cell"
 msgstr ""
 
 #: ../../views/dashboard/header.php:278 ../../views/dashboard/list.php:42
+#: ../../enterprise/meta/general/main_menu.php:309
+#: ../../enterprise/meta/general/main_header.php:222
 msgid "Dashboards"
 msgstr ""
 
 #: ../../views/dashboard/header.php:278
-#: ../../godmode/agentes/planned_downtime.editor.php:59
-#: ../../godmode/alerts/alert_list.php:452
-#: ../../godmode/category/category.php:86 ../../include/functions_html.php:1789
-#: ../../include/functions_html.php:1790 ../../include/functions_html.php:1900
-#: ../../include/functions_html.php:1901 ../../include/functions_html.php:2080
-#: ../../include/functions_html.php:2081
 #: ../../operation/snmpconsole/snmp_statistics.php:66
 #: ../../operation/snmpconsole/snmp_view.php:107
-#: ../../operation/events/events.php:927
+#: ../../operation/events/events.php:939 ../../include/functions_html.php:1894
+#: ../../include/functions_html.php:1895 ../../include/functions_html.php:2005
+#: ../../include/functions_html.php:2006 ../../include/functions_html.php:2185
+#: ../../include/functions_html.php:2186
+#: ../../enterprise/godmode/alerts/alert_inventory.php:78
+#: ../../godmode/category/category.php:89
+#: ../../godmode/agentes/planned_downtime.editor.php:59
+#: ../../godmode/alerts/alert_list.php:494
 msgid "List"
 msgstr ""
 
-#: ../../views/dashboard/list.php:53 ../../extensions/files_repo.php:181
-#: ../../godmode/modules/manage_nc_groups.php:142
-#: ../../godmode/modules/manage_network_components.php:552
-#: ../../godmode/users/profile_list.php:133
-#: ../../godmode/users/user_list.php:281 ../../godmode/users/user_list.php:328
-#: ../../godmode/users/configure_user.php:137
-#: ../../godmode/users/configure_user.php:157
-#: ../../godmode/agentes/planned_downtime.list.php:112
-#: ../../godmode/netflow/nf_item_list.php:120
-#: ../../godmode/netflow/nf_item_list.php:148
-#: ../../godmode/netflow/nf_edit.php:104 ../../godmode/netflow/nf_edit.php:137
-#: ../../godmode/snmpconsole/snmp_alert.php:623
-#: ../../godmode/snmpconsole/snmp_filters.php:180
-#: ../../godmode/massive/massive_delete_action_alerts.php:158
-#: ../../godmode/massive/massive_delete_modules.php:162
-#: ../../godmode/massive/massive_delete_alerts.php:201
-#: ../../godmode/alerts/alert_actions.php:211
-#: ../../godmode/alerts/alert_commands.php:590
-#: ../../godmode/alerts/alert_templates.php:257
-#: ../../godmode/alerts/alert_list.php:232
-#: ../../godmode/alerts/alert_list.php:321 ../../godmode/setup/news.php:120
-#: ../../godmode/setup/gis.php:58 ../../godmode/setup/links.php:73
-#: ../../godmode/reporting/map_builder.php:205
-#: ../../godmode/reporting/graphs.php:150
-#: ../../godmode/reporting/graphs.php:160
-#: ../../godmode/reporting/graphs.php:203
-#: ../../godmode/reporting/reporting_builder.php:673
-#: ../../godmode/events/event_filter.php:69
-#: ../../godmode/events/event_filter.php:96
-#: ../../include/class/ConfigPEN.class.php:486
+#: ../../views/dashboard/widget.php:35 ../../views/dashboard/listWidgets.php:85
+msgid "Add widget"
+msgstr ""
+
+#: ../../views/dashboard/widget.php:45
+msgid "Please select widget"
+msgstr ""
+
+#: ../../views/dashboard/jsLayout.php:42
+#: ../../operation/snmpconsole/snmp_view.php:1298
+#: ../../operation/events/events.php:2763
+#: ../../extensions/agents_modules.php:76
+msgid "Until next"
+msgstr ""
+
+#: ../../views/dashboard/formDashboard.php:91
+#: ../../enterprise/godmode/reporting/reporting_builder.template.php:499
+#: ../../godmode/reporting/reporting_builder.php:938
+msgid "Private"
+msgstr ""
+
+#: ../../views/dashboard/formDashboard.php:122
+#: ../../enterprise/godmode/services/services.service.php:728
+#: ../../enterprise/godmode/reporting/visual_console_template.php:272
+#: ../../enterprise/godmode/massive/massive_create_services.php:809
+msgid "Favourite"
+msgstr ""
+
+#: ../../views/dashboard/list.php:53
 #: ../../operation/messages/message_list.php:113
 #: ../../operation/messages/message_list.php:135
-#: ../../operation/snmpconsole/snmp_view.php:155
 #: ../../operation/gis_maps/gis_map.php:86
-#: ../../operation/incidents/list_integriaims_incidents.php:295
 #: ../../operation/reporting/graph_viewer.php:57
 #: ../../operation/reporting/graph_viewer.php:65
+#: ../../operation/snmpconsole/snmp_view.php:155
+#: ../../operation/incidents/list_integriaims_incidents.php:295
+#: ../../include/class/ConfigPEN.class.php:486
+#: ../../enterprise/tools/ipam/ipam_vlan_config.php:132
+#: ../../enterprise/tools/ipam/ipam_network_location_config.php:87
+#: ../../enterprise/tools/ipam/ipam_action.php:102
+#: ../../enterprise/tools/ipam/ipam_supernet_config.php:152
+#: ../../enterprise/operation/agentes/transactional_map.php:182
+#: ../../enterprise/operation/agentes/manage_transmap_creation.php:82
+#: ../../enterprise/include/class/DatabaseHA.class.php:1057
+#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:288
+#: ../../enterprise/meta/advanced/metasetup.relations.php:86
+#: ../../enterprise/meta/advanced/links.php:84
+#: ../../enterprise/godmode/setup/setup_metaconsole.php:138
+#: ../../enterprise/godmode/modules/local_components.php:417
+#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:165
+#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:129
+#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:157
+#: ../../enterprise/godmode/reporting/graph_template_list.php:155
+#: ../../enterprise/godmode/reporting/graph_template_list.php:182
+#: ../../enterprise/godmode/reporting/reporting_builder.template.php:424
+#: ../../enterprise/godmode/reporting/reporting_builder.template.php:442
+#: ../../enterprise/godmode/alerts/alert_inventory_list.php:68
+#: ../../enterprise/godmode/alerts/alert_inventory_list.php:118
+#: ../../extensions/files_repo.php:184 ../../godmode/setup/news.php:120
+#: ../../godmode/setup/gis.php:61 ../../godmode/setup/links.php:76
+#: ../../godmode/modules/manage_network_components.php:552
+#: ../../godmode/modules/manage_nc_groups.php:152
+#: ../../godmode/reporting/map_builder.php:209
+#: ../../godmode/reporting/graphs.php:150
+#: ../../godmode/reporting/graphs.php:162
+#: ../../godmode/reporting/graphs.php:213
+#: ../../godmode/reporting/reporting_builder.php:668
+#: ../../godmode/snmpconsole/snmp_alert.php:650
+#: ../../godmode/snmpconsole/snmp_filters.php:180
+#: ../../godmode/events/event_filter.php:69
+#: ../../godmode/events/event_filter.php:96
+#: ../../godmode/netflow/nf_edit.php:104 ../../godmode/netflow/nf_edit.php:137
+#: ../../godmode/netflow/nf_item_list.php:120
+#: ../../godmode/netflow/nf_item_list.php:148
+#: ../../godmode/massive/massive_delete_modules.php:162
+#: ../../godmode/massive/massive_delete_action_alerts.php:170
+#: ../../godmode/massive/massive_delete_alerts.php:201
+#: ../../godmode/agentes/planned_downtime.list.php:242
+#: ../../godmode/alerts/alert_actions.php:205
+#: ../../godmode/alerts/alert_templates.php:252
+#: ../../godmode/alerts/alert_commands.php:604
+#: ../../godmode/alerts/alert_list.php:232
+#: ../../godmode/alerts/alert_list.php:339
+#: ../../godmode/users/user_list.php:293 ../../godmode/users/user_list.php:340
+#: ../../godmode/users/configure_user.php:137
+#: ../../godmode/users/configure_user.php:157
+#: ../../godmode/users/profile_list.php:133
 msgid "Successfully deleted"
 msgstr ""
 
-#: ../../views/dashboard/list.php:54 ../../extensions/files_repo.php:181
-#: ../../godmode/modules/manage_network_components.php:553
-#: ../../godmode/users/configure_user.php:138
-#: ../../godmode/massive/massive_delete_action_alerts.php:159
-#: ../../godmode/massive/massive_delete_alerts.php:202
-#: ../../godmode/alerts/alert_actions.php:212
-#: ../../godmode/alerts/alert_commands.php:591
-#: ../../godmode/alerts/alert_templates.php:258
-#: ../../godmode/alerts/alert_list.php:233
-#: ../../godmode/alerts/alert_list.php:322 ../../godmode/setup/news.php:121
-#: ../../godmode/setup/gis.php:56
-#: ../../godmode/reporting/reporting_builder.php:674
-#: ../../operation/agentes/pandora_networkmap.php:547
+#: ../../views/dashboard/list.php:54
 #: ../../operation/messages/message_list.php:114
-#: ../../operation/snmpconsole/snmp_view.php:156
 #: ../../operation/gis_maps/gis_map.php:87
+#: ../../operation/snmpconsole/snmp_view.php:156
+#: ../../operation/agentes/pandora_networkmap.php:547
 #: ../../operation/incidents/list_integriaims_incidents.php:296
+#: ../../enterprise/tools/ipam/ipam_vlan_config.php:130
+#: ../../enterprise/tools/ipam/ipam_action.php:100
+#: ../../enterprise/tools/ipam/ipam_supernet_config.php:150
+#: ../../enterprise/operation/agentes/transactional_map.php:183
+#: ../../enterprise/operation/agentes/manage_transmap_creation.php:83
+#: ../../enterprise/godmode/setup/setup_metaconsole.php:139
+#: ../../enterprise/godmode/modules/local_components.php:418
+#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:166
+#: ../../enterprise/godmode/reporting/reporting_builder.template.php:425
+#: ../../enterprise/godmode/reporting/reporting_builder.template.php:443
+#: ../../enterprise/godmode/alerts/alert_inventory_list.php:69
+#: ../../enterprise/godmode/alerts/alert_inventory_list.php:119
+#: ../../enterprise/godmode/policies/policy_agents.php:104
+#: ../../enterprise/godmode/policies/policy_agents.php:126
+#: ../../enterprise/godmode/policies/policy_modules.php:1313
+#: ../../enterprise/godmode/policies/policy_external_alerts.php:147
+#: ../../enterprise/godmode/policies/policy_external_alerts.php:174
+#: ../../enterprise/godmode/policies/policy_inventory_modules.php:166
+#: ../../enterprise/godmode/policies/policy_alerts.php:256
+#: ../../enterprise/godmode/policies/policy_alerts.php:302
+#: ../../enterprise/godmode/policies/policy_collections.php:100
+#: ../../extensions/files_repo.php:184 ../../godmode/setup/news.php:121
+#: ../../godmode/setup/gis.php:59
+#: ../../godmode/modules/manage_network_components.php:553
+#: ../../godmode/reporting/reporting_builder.php:669
+#: ../../godmode/massive/massive_delete_action_alerts.php:171
+#: ../../godmode/massive/massive_delete_alerts.php:202
+#: ../../godmode/alerts/alert_actions.php:206
+#: ../../godmode/alerts/alert_templates.php:253
+#: ../../godmode/alerts/alert_commands.php:605
+#: ../../godmode/alerts/alert_list.php:233
+#: ../../godmode/alerts/alert_list.php:340
+#: ../../godmode/users/configure_user.php:138
 msgid "Could not be deleted"
 msgstr ""
 
@@ -1247,114 +2297,208 @@ msgid "Favorite"
 msgstr ""
 
 #: ../../views/dashboard/list.php:99
-#: ../../include/class/AgentsAlerts.class.php:831
+#: ../../operation/snmpconsole/snmp_browser.php:68
+#: ../../operation/snmpconsole/snmp_statistics.php:54
+#: ../../operation/snmpconsole/snmp_view.php:128 ../../operation/heatmap.php:87
+#: ../../operation/events/events.php:826
 #: ../../operation/agentes/networkmap.dinamic.php:115
 #: ../../operation/agentes/pandora_networkmap.view.php:2279
-#: ../../operation/snmpconsole/snmp_statistics.php:54
-#: ../../operation/snmpconsole/snmp_browser.php:65
-#: ../../operation/snmpconsole/snmp_view.php:128
-#: ../../operation/events/events.php:814
+#: ../../include/class/AgentsAlerts.class.php:834
 msgid "Full screen"
 msgstr ""
 
 #: ../../views/dashboard/list.php:102
-#: ../../godmode/alerts/alert_actions.php:336
-#: ../../godmode/reporting/map_builder.php:389
 #: ../../operation/agentes/pandora_networkmap.php:712
 #: ../../operation/agentes/pandora_networkmap.php:799
+#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:230
+#: ../../enterprise/godmode/policies/policy_modules.php:1673
+#: ../../enterprise/godmode/policies/policies.php:570
+#: ../../godmode/reporting/map_builder.php:387
+#: ../../godmode/agentes/planned_downtime.list.php:623
+#: ../../godmode/agentes/planned_downtime.list.php:749
+#: ../../godmode/agentes/planned_downtime.list.php:795
+#: ../../godmode/alerts/alert_actions.php:330
 msgid "Copy"
 msgstr ""
 
 #: ../../views/dashboard/list.php:103
+#: ../../operation/messages/message_list.php:201
+#: ../../operation/messages/message_list.php:272
+#: ../../operation/messages/message_list.php:275
+#: ../../operation/messages/message_list.php:293
+#: ../../operation/visual_console/view.php:733
+#: ../../operation/gis_maps/gis_map.php:190
+#: ../../operation/snmpconsole/snmp_view.php:1038
+#: ../../operation/snmpconsole/snmp_view.php:1051
+#: ../../operation/snmpconsole/snmp_view.php:1220
+#: ../../operation/snmpconsole/snmp_view.php:1269
+#: ../../operation/agentes/pandora_networkmap.php:714
+#: ../../operation/agentes/pandora_networkmap.php:801
+#: ../../operation/incidents/list_integriaims_incidents.php:555
+#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:120
+#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:198
+#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:251
+#: ../../include/functions_cron.php:895 ../../include/functions_cron.php:923
+#: ../../include/class/ModuleTemplates.class.php:933
+#: ../../include/class/ModuleTemplates.class.php:1211
+#: ../../include/class/ManageNetScanScripts.class.php:405
+#: ../../include/class/ConfigPEN.class.php:264
+#: ../../include/class/CredentialStore.class.php:1102
+#: ../../include/class/CredentialStore.class.php:1290
+#: ../../include/class/CalendarManager.class.php:686
+#: ../../include/class/NetworkMap.class.php:2798
+#: ../../include/functions_container.php:191
+#: ../../include/functions_container.php:325
+#: ../../enterprise/tools/ipam/ipam_vlan_config.php:807
+#: ../../enterprise/tools/ipam/ipam_network_location_config.php:288
+#: ../../enterprise/tools/ipam/ipam_network_location_config.php:304
+#: ../../enterprise/tools/ipam/ipam_ajax.php:136
+#: ../../enterprise/tools/ipam/ipam_supernet_config.php:1297
+#: ../../enterprise/operation/services/services.list.php:655
+#: ../../enterprise/operation/agentes/transactional_map.php:483
+#: ../../enterprise/operation/agentes/manage_transmap_creation.php:269
+#: ../../enterprise/include/ajax/log_viewer.ajax.php:96
+#: ../../enterprise/include/ajax/servers.ajax.php:103
+#: ../../enterprise/include/ajax/transactional.ajax.php:119
+#: ../../enterprise/include/ajax/transactional.ajax.php:208
+#: ../../enterprise/include/class/AgentRepository.class.php:775
+#: ../../enterprise/include/class/AgentRepository.class.php:810
+#: ../../enterprise/include/class/LogSource.class.php:772
+#: ../../enterprise/include/class/LogSource.class.php:894
+#: ../../enterprise/include/class/ManageBackups.class.php:275
+#: ../../enterprise/include/class/Omnishell.class.php:1163
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2397
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3052
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3372
+#: ../../enterprise/include/class/NetworkConfigManager.class.php:644
+#: ../../enterprise/include/class/NetworkConfigManager.class.php:800
+#: ../../enterprise/include/class/NetworkConfigManager.class.php:976
+#: ../../enterprise/include/class/NetworkConfigManager.class.php:1123
+#: ../../enterprise/include/class/NetworkConfigManager.class.php:1331
+#: ../../enterprise/include/class/DeploymentCenter.class.php:1537
+#: ../../enterprise/include/class/DeploymentCenter.class.php:1576
+#: ../../enterprise/include/functions_tasklist.php:615
+#: ../../enterprise/include/functions_tasklist.php:650
+#: ../../enterprise/include/lib/ClusterViewer/ClusterManager.php:634
+#: ../../enterprise/include/lib/Metaconsole/Node.php:1252
+#: ../../enterprise/include/lib/Metaconsole/Node.php:1253
+#: ../../enterprise/meta/include/functions_autoprovision.php:517
+#: ../../enterprise/meta/include/functions_autoprovision.php:518
+#: ../../enterprise/meta/include/functions_autoprovision.php:685
+#: ../../enterprise/meta/include/functions_autoprovision.php:686
+#: ../../enterprise/meta/include/functions_wizard_meta.php:398
+#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:301
+#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:467
+#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:818
+#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:570
+#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:598
+#: ../../enterprise/meta/advanced/policymanager.queue.php:220
+#: ../../enterprise/meta/advanced/policymanager.queue.php:262
+#: ../../enterprise/meta/advanced/policymanager.queue.php:319
+#: ../../enterprise/meta/advanced/metasetup.relations.php:589
+#: ../../enterprise/meta/advanced/metasetup.relations.php:590
+#: ../../enterprise/meta/advanced/metasetup.relations.php:634
+#: ../../enterprise/meta/advanced/servers.build_table.php:133
+#: ../../enterprise/meta/advanced/metasetup.visual.php:434
+#: ../../enterprise/meta/advanced/links.php:157
+#: ../../enterprise/godmode/setup/setup_acl.php:595
+#: ../../enterprise/godmode/servers/credential_boxes_satellite.php:252
+#: ../../enterprise/godmode/servers/credential_boxes_satellite.php:287
+#: ../../enterprise/godmode/modules/local_components.php:698
+#: ../../enterprise/godmode/modules/local_components.php:715
+#: ../../enterprise/godmode/modules/manage_inventory_modules.php:317
+#: ../../enterprise/godmode/modules/manage_inventory_modules.php:332
+#: ../../enterprise/godmode/reporting/visual_console_template.php:273
+#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:389
+#: ../../enterprise/godmode/reporting/mysql_builder.php:97
+#: ../../enterprise/godmode/reporting/mysql_builder.php:104
+#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:215
+#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:225
+#: ../../enterprise/godmode/reporting/graph_template_list.php:246
+#: ../../enterprise/godmode/reporting/reporting_builder.template.php:646
+#: ../../enterprise/godmode/reporting/reporting_builder.template.php:674
+#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:413
+#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:148
+#: ../../enterprise/godmode/massive/massive_delete_services.php:92
+#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:238
+#: ../../enterprise/godmode/agentes/inventory_manager.php:249
+#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:687
+#: ../../enterprise/godmode/agentes/plugins_manager.php:196
+#: ../../enterprise/godmode/agentes/plugins_manager.php:281
+#: ../../enterprise/godmode/policies/policy_agents.php:1083
+#: ../../enterprise/godmode/policies/policy_agents.php:1545
+#: ../../enterprise/godmode/policies/policy_queue.php:611
+#: ../../enterprise/godmode/policies/policy_queue.php:675
+#: ../../enterprise/godmode/policies/policy_queue.php:722
+#: ../../enterprise/godmode/policies/policy_modules.php:1586
+#: ../../enterprise/godmode/policies/policy_modules.php:1618
+#: ../../enterprise/godmode/policies/policies.php:591
+#: ../../enterprise/godmode/policies/policy_external_alerts.php:550
+#: ../../enterprise/godmode/policies/policy_inventory_modules.php:334
+#: ../../enterprise/godmode/policies/policy_alerts.php:539
+#: ../../enterprise/godmode/policies/policy_plugins.php:169
 #: ../../extensions/files_repo/files_repo_list.php:151
-#: ../../godmode/modules/manage_network_templates_form.php:242
-#: ../../godmode/modules/manage_nc_groups.php:267
-#: ../../godmode/modules/manage_nc_groups.php:296
-#: ../../godmode/modules/manage_network_components.php:875
-#: ../../godmode/modules/manage_network_components.php:876
-#: ../../godmode/modules/manage_network_components.php:905
-#: ../../godmode/modules/manage_network_templates.php:275
-#: ../../godmode/modules/manage_network_templates.php:288
-#: ../../godmode/groups/group_list.php:934
-#: ../../godmode/groups/group_list.php:935
-#: ../../godmode/groups/modu_group_list.php:254
+#: ../../godmode/setup/snmp_wizard.php:110
+#: ../../godmode/setup/setup_visuals.php:1320
+#: ../../godmode/setup/setup_visuals.php:1359
+#: ../../godmode/setup/setup_visuals.php:1379 ../../godmode/setup/news.php:251
+#: ../../godmode/setup/gis.php:70 ../../godmode/setup/links.php:146
+#: ../../godmode/servers/servers.build_table.php:259
+#: ../../godmode/modules/manage_network_components.php:868
+#: ../../godmode/modules/manage_network_components.php:869
+#: ../../godmode/modules/manage_network_components.php:898
+#: ../../godmode/modules/manage_network_templates.php:287
+#: ../../godmode/modules/manage_network_templates.php:300
+#: ../../godmode/modules/manage_network_templates_form.php:254
+#: ../../godmode/modules/manage_nc_groups.php:276
+#: ../../godmode/modules/manage_nc_groups.php:305
 #: ../../godmode/extensions.php:257 ../../godmode/extensions.php:259
-#: ../../godmode/users/profile_list.php:443
-#: ../../godmode/users/user_list.php:801
-#: ../../godmode/agentes/agent_template.php:259
-#: ../../godmode/agentes/planned_downtime.list.php:409
-#: ../../godmode/agentes/planned_downtime.list.php:498
-#: ../../godmode/agentes/planned_downtime.editor.php:951
-#: ../../godmode/agentes/planned_downtime.editor.php:954
-#: ../../godmode/agentes/planned_downtime.editor.php:1004
-#: ../../godmode/agentes/fields_manager.php:155
-#: ../../godmode/agentes/module_manager_editor_common.php:1307
-#: ../../godmode/agentes/module_manager.php:868
-#: ../../godmode/agentes/module_manager.php:1228
-#: ../../godmode/netflow/nf_item_list.php:263
-#: ../../godmode/netflow/nf_item_list.php:273
-#: ../../godmode/netflow/nf_edit.php:196 ../../godmode/netflow/nf_edit.php:208
-#: ../../godmode/snmpconsole/snmp_alert.php:1243
-#: ../../godmode/snmpconsole/snmp_alert.php:1291
-#: ../../godmode/snmpconsole/snmp_filters.php:301
-#: ../../godmode/snmpconsole/snmp_filters.php:312
-#: ../../godmode/alerts/alert_actions.php:337
-#: ../../godmode/alerts/alert_actions.php:455
-#: ../../godmode/alerts/alert_list.list.php:909
-#: ../../godmode/alerts/alert_templates.php:450
-#: ../../godmode/setup/news.php:251 ../../godmode/setup/gis.php:67
-#: ../../godmode/setup/links.php:143 ../../godmode/setup/snmp_wizard.php:110
-#: ../../godmode/setup/setup_visuals.php:1317
-#: ../../godmode/setup/setup_visuals.php:1356
-#: ../../godmode/setup/setup_visuals.php:1376
+#: ../../godmode/reporting/map_builder.php:388
+#: ../../godmode/reporting/map_builder.php:512
+#: ../../godmode/reporting/map_builder.php:523
+#: ../../godmode/reporting/graphs.php:367
+#: ../../godmode/reporting/graphs.php:368
+#: ../../godmode/reporting/graphs.php:394
 #: ../../godmode/reporting/reporting_builder.list_items.php:629
 #: ../../godmode/reporting/reporting_builder.list_items.php:667
 #: ../../godmode/reporting/reporting_builder.list_items.php:690
 #: ../../godmode/reporting/reporting_builder.list_items.php:791
 #: ../../godmode/reporting/create_container.php:630
 #: ../../godmode/reporting/create_container.php:683
-#: ../../godmode/reporting/map_builder.php:390
-#: ../../godmode/reporting/map_builder.php:514
-#: ../../godmode/reporting/map_builder.php:525
-#: ../../godmode/reporting/graphs.php:357
-#: ../../godmode/reporting/graphs.php:358
-#: ../../godmode/reporting/graphs.php:384
+#: ../../godmode/reporting/visual_console_builder.elements.php:763
+#: ../../godmode/reporting/reporting_builder.php:1209
+#: ../../godmode/reporting/reporting_builder.php:1293
 #: ../../godmode/reporting/graph_builder.graph_editor.php:216
 #: ../../godmode/reporting/graph_builder.graph_editor.php:256
-#: ../../godmode/reporting/visual_console_builder.elements.php:763
-#: ../../godmode/reporting/reporting_builder.php:1218
-#: ../../godmode/reporting/reporting_builder.php:1302
+#: ../../godmode/snmpconsole/snmp_alert.php:1276
+#: ../../godmode/snmpconsole/snmp_alert.php:1324
+#: ../../godmode/snmpconsole/snmp_filters.php:301
+#: ../../godmode/snmpconsole/snmp_filters.php:312
+#: ../../godmode/events/event_responses.list.php:71
 #: ../../godmode/events/event_filter.php:192
 #: ../../godmode/events/event_filter.php:211
-#: ../../godmode/events/event_responses.list.php:71
-#: ../../godmode/servers/servers.build_table.php:245
-#: ../../include/functions_cron.php:804 ../../include/functions_cron.php:832
-#: ../../include/class/ConfigPEN.class.php:264
-#: ../../include/class/NetworkMap.class.php:2788
-#: ../../include/class/ManageNetScanScripts.class.php:405
-#: ../../include/class/CredentialStore.class.php:1090
-#: ../../include/class/CredentialStore.class.php:1278
-#: ../../include/class/ModuleTemplates.class.php:933
-#: ../../include/class/ModuleTemplates.class.php:1211
-#: ../../include/class/CalendarManager.class.php:686
-#: ../../include/functions_container.php:191
-#: ../../include/functions_container.php:325
-#: ../../operation/visual_console/view.php:728
-#: ../../operation/agentes/pandora_networkmap.php:714
-#: ../../operation/agentes/pandora_networkmap.php:801
-#: ../../operation/messages/message_list.php:201
-#: ../../operation/messages/message_list.php:272
-#: ../../operation/messages/message_list.php:275
-#: ../../operation/messages/message_list.php:293
-#: ../../operation/snmpconsole/snmp_view.php:1038
-#: ../../operation/snmpconsole/snmp_view.php:1051
-#: ../../operation/snmpconsole/snmp_view.php:1220
-#: ../../operation/snmpconsole/snmp_view.php:1269
-#: ../../operation/gis_maps/gis_map.php:190
-#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:120
-#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:198
-#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:251
-#: ../../operation/incidents/list_integriaims_incidents.php:555
+#: ../../godmode/netflow/nf_edit.php:196 ../../godmode/netflow/nf_edit.php:208
+#: ../../godmode/netflow/nf_item_list.php:263
+#: ../../godmode/netflow/nf_item_list.php:273
+#: ../../godmode/agentes/module_manager.php:868
+#: ../../godmode/agentes/module_manager.php:1228
+#: ../../godmode/agentes/module_manager_editor_common.php:1307
+#: ../../godmode/agentes/planned_downtime.editor.php:962
+#: ../../godmode/agentes/planned_downtime.editor.php:965
+#: ../../godmode/agentes/planned_downtime.editor.php:1015
+#: ../../godmode/agentes/planned_downtime.list.php:625
+#: ../../godmode/agentes/planned_downtime.list.php:774
+#: ../../godmode/agentes/fields_manager.php:155
+#: ../../godmode/agentes/agent_template.php:259
+#: ../../godmode/alerts/alert_list.list.php:912
+#: ../../godmode/alerts/alert_actions.php:331
+#: ../../godmode/alerts/alert_actions.php:449
+#: ../../godmode/alerts/alert_templates.php:445
+#: ../../godmode/users/user_list.php:825
+#: ../../godmode/users/profile_list.php:443
+#: ../../godmode/groups/modu_group_list.php:254
+#: ../../godmode/groups/group_list.php:937
+#: ../../godmode/groups/group_list.php:938
 msgid "Delete"
 msgstr ""
 
@@ -1371,28235 +2515,264 @@ msgstr ""
 msgid "New dashboard"
 msgstr ""
 
-#: ../../views/dashboard/widget.php:35 ../../views/dashboard/listWidgets.php:85
-msgid "Add widget"
+#: ../../general/maintenance.php:36
+msgid "Maintenance tasks in progress"
 msgstr ""
 
-#: ../../views/dashboard/widget.php:45
-msgid "Please select widget"
+#: ../../general/maintenance.php:53 ../../general/node_deactivated.php:64
+msgid "You will be automatically redirected when all tasks finish"
 msgstr ""
 
-#: ../../views/dashboard/jsLayout.php:42 ../../extensions/agents_modules.php:76
-#: ../../operation/snmpconsole/snmp_view.php:1298
-#: ../../operation/events/events.php:2683
-msgid "Until next"
-msgstr ""
-
-#: ../../views/dashboard/formDashboard.php:91
-#: ../../godmode/reporting/reporting_builder.php:949
-msgid "Private"
-msgstr ""
-
-#: ../../views/dashboard/formDashboard.php:122
-msgid "Favourite"
-msgstr ""
-
-#: ../../views/dashboard/cell.php:42
-msgid "New widget"
-msgstr ""
-
-#: ../../views/dashboard/cell.php:56
-msgid "Configure widget"
-msgstr ""
-
-#: ../../views/dashboard/cell.php:68
-msgid "Delete widget"
-msgstr ""
-
-#: ../../views/dashboard/slides.php:41
-#: ../../operation/snmpconsole/snmp_view.php:741
-msgid "Exit fullscreen"
-msgstr ""
-
-#: ../../views/dashboard/slides.php:181
-msgid "Change every"
-msgstr ""
-
-#: ../../views/dashboard/slides.php:203 ../../include/functions.php:3858
-msgid "Previous"
-msgstr ""
-
-#: ../../views/dashboard/slides.php:218
-msgid "Stop"
-msgstr ""
-
-#: ../../views/dashboard/slides.php:229
-msgid "Pause"
-msgstr ""
-
-#: ../../views/dashboard/slides.php:240
-#: ../../godmode/alerts/configure_alert_template.php:1254
-#: ../../godmode/alerts/configure_alert_template.php:1261
-#: ../../godmode/wizards/HostDevices.class.php:769
-#: ../../include/class/CustomNetScan.class.php:550
-msgid "Next"
-msgstr ""
-
-#: ../../views/dashboard/slides.php:252
-msgid "Mode Cell"
-msgstr ""
-
-#: ../../views/dashboard/slides.php:258
-msgid "Mode Layout"
-msgstr ""
-
-#: ../../extensions/disabled/matrix_events.php:27
-msgid "Matrix events"
-msgstr ""
-
-#: ../../extensions/quick_shell.php:115 ../../extensions/quick_shell.php:219
-msgid "WebService engine has not been started, please check documentation."
-msgstr ""
-
-#: ../../extensions/quick_shell.php:127
-msgid "Retry"
-msgstr ""
-
-#: ../../extensions/quick_shell.php:149
-#: ../../godmode/modules/manage_network_components_form_wmi.php:47
-#: ../../godmode/agentes/module_manager_editor_wmi.php:103
-#: ../../godmode/massive/massive_edit_modules.php:894
-#: ../../include/class/CredentialStore.class.php:945
-#: ../../include/class/AgentWizard.class.php:664
-msgid "Username"
-msgstr ""
-
-#: ../../extensions/quick_shell.php:156
-#: ../../godmode/modules/manage_network_components_form_network.php:53
-#: ../../godmode/agentes/module_manager_editor_network.php:126
-#: ../../godmode/massive/massive_edit_modules.php:1133
-#: ../../godmode/servers/modificar_server.php:82
-#: ../../include/functions_config.php:1491
-#: ../../include/class/AgentWizard.class.php:635
-#: ../../include/functions_snmp_browser.php:714
-msgid "Port"
-msgstr ""
-
-#: ../../extensions/quick_shell.php:165
-msgid "Method"
-msgstr ""
-
-#: ../../extensions/quick_shell.php:170
-#: ../../godmode/agentes/module_manager_editor_network.php:478
-msgid "SSH"
-msgstr ""
-
-#: ../../extensions/quick_shell.php:171
-msgid "Telnet"
-msgstr ""
-
-#: ../../extensions/quick_shell.php:179
-msgid "Connect"
-msgstr ""
-
-#: ../../extensions/quick_shell.php:207
-msgid "Please use SSH or Telnet."
-msgstr ""
-
-#: ../../extensions/quick_shell.php:241
-msgid "WebService engine is not working properly, please check documentation."
-msgstr ""
-
-#: ../../extensions/quick_shell.php:400
-#, php-format
-msgid "%d Updated"
-msgstr ""
-
-#: ../../extensions/quick_shell.php:403
-#, php-format
-msgid "%d Updated, please restart WebSocket engine service"
-msgstr ""
-
-#: ../../extensions/quick_shell.php:413
-msgid "Quickshell"
-msgstr ""
-
-#: ../../extensions/quick_shell.php:423
-msgid "Gotty path"
-msgstr ""
-
-#: ../../extensions/quick_shell.php:433
-msgid "Gotty host"
-msgstr ""
-
-#: ../../extensions/quick_shell.php:443
-msgid "Gotty ssh port"
-msgstr ""
-
-#: ../../extensions/quick_shell.php:453
-msgid "Gotty telnet port"
-msgstr ""
-
-#: ../../extensions/quick_shell.php:470
-msgid "Gotty user"
-msgstr ""
-
-#: ../../extensions/quick_shell.php:480
-msgid "Gotty password"
-msgstr ""
-
-#: ../../extensions/quick_shell.php:496
-#: ../../godmode/agentes/module_manager_editor.php:743
-#: ../../godmode/agentes/agent_manager.php:854
-#: ../../godmode/agentes/agent_manager.php:988
-#: ../../godmode/massive/massive_edit_agents.php:781
-#: ../../godmode/massive/massive_add_action_alerts.php:244
-#: ../../include/functions_visual_map_editor.php:895
-#: ../../operation/events/events_list.php:1026
-#: ../../operation/events/events.php:1473
-msgid "Advanced options"
-msgstr ""
-
-#: ../../extensions/quick_shell.php:520
-msgid "QuickShell"
-msgstr ""
-
-#: ../../extensions/extension_uploader.php:29
-msgid "Uploader extension"
-msgstr ""
-
-#: ../../extensions/extension_uploader.php:69
-msgid "Success to upload extension"
-msgstr ""
-
-#: ../../extensions/extension_uploader.php:70
-msgid "Fail to upload extension"
-msgstr ""
-
-#: ../../extensions/extension_uploader.php:79
-msgid "Upload extension"
-msgstr ""
-
-#: ../../extensions/extension_uploader.php:80
-msgid "Upload the extension as a zip file."
-msgstr ""
-
-#: ../../extensions/extension_uploader.php:82
-msgid "Upload enterprise extension"
-msgstr ""
-
-#: ../../extensions/extension_uploader.php:95
-msgid "Extension uploader"
-msgstr ""
-
-#: ../../extensions/resource_registration.php:55
-#, php-format
-msgid "Success add '%s' item in report '%s'."
-msgstr ""
-
-#: ../../extensions/resource_registration.php:60
-#, php-format
-msgid "Error create '%s' item in report '%s'."
-msgstr ""
-
-#: ../../extensions/resource_registration.php:96
-#, php-format
-msgid "Error create '%s' report, the name exist and there aren't free name."
-msgstr ""
-
-#: ../../extensions/resource_registration.php:104
-#, php-format
-msgid "Warning create '%s' report, the name exist, the report have a name %s."
-msgstr ""
-
-#: ../../extensions/resource_registration.php:113
-msgid "Error the report haven't name."
-msgstr ""
-
-#: ../../extensions/resource_registration.php:127
-msgid "Error the report haven't group."
-msgstr ""
-
-#: ../../extensions/resource_registration.php:140
-#, php-format
-msgid "Success create '%s' report."
-msgstr ""
-
-#: ../../extensions/resource_registration.php:141
-#, php-format
-msgid "Error create '%s' report."
-msgstr ""
-
-#: ../../extensions/resource_registration.php:435
-#: ../../extensions/resource_registration.php:457
-#: ../../extensions/resource_registration.php:468
-#, php-format
-msgid "Success add '%s' content."
-msgstr ""
-
-#: ../../extensions/resource_registration.php:436
-#: ../../extensions/resource_registration.php:458
-#: ../../extensions/resource_registration.php:469
-#, php-format
-msgid "Error add '%s' action."
-msgstr ""
-
-#: ../../extensions/resource_registration.php:445
-#, php-format
-msgid "Success add '%s' SLA."
-msgstr ""
-
-#: ../../extensions/resource_registration.php:446
-#, php-format
-msgid "Error add '%s' SLA."
-msgstr ""
-
-#: ../../extensions/resource_registration.php:489
-#, php-format
-msgid "Error create '%s' visual map, lost tag name."
-msgstr ""
-
-#: ../../extensions/resource_registration.php:532
-#, php-format
-msgid ""
-"Error create '%s' visual map, the name exist and there aren't free name."
-msgstr ""
-
-#: ../../extensions/resource_registration.php:540
-#, php-format
-msgid ""
-"Warning create '%s' visual map, the name exist, the report have a name %s."
-msgstr ""
-
-#: ../../extensions/resource_registration.php:552
-#, php-format
-msgid "Success create '%s' visual map."
-msgstr ""
-
-#: ../../extensions/resource_registration.php:553
-#, php-format
-msgid "Error create '%s' visual map."
-msgstr ""
-
-#: ../../extensions/resource_registration.php:714
-#, php-format
-msgid "Success create item type '%d' visual map."
-msgstr ""
-
-#: ../../extensions/resource_registration.php:715
-#, php-format
-msgid "Error create item type '%d' visual map."
-msgstr ""
-
-#: ../../extensions/resource_registration.php:734
-#: ../../extensions/resource_registration.php:750
-#, php-format
-msgid "Success create item for agent '%s' visual map."
-msgstr ""
-
-#: ../../extensions/resource_registration.php:735
-#: ../../extensions/resource_registration.php:751
-#, php-format
-msgid "Error create item for agent '%s' visual map."
-msgstr ""
-
-#: ../../extensions/resource_registration.php:1011
-#, php-format
-msgid "Success create '%s' component."
-msgstr ""
-
-#: ../../extensions/resource_registration.php:1012
-#, php-format
-msgid "Error create '%s' component."
-msgstr ""
-
-#: ../../extensions/resource_registration.php:1075
-#: ../../extensions/resource_registration.php:1138
-msgid "Resource registration"
-msgstr ""
-
-#: ../../extensions/resource_registration.php:1078
-msgid "Error, please install the PHP libXML in the system."
-msgstr ""
-
-#: ../../extensions/resource_registration.php:1094
-#, php-format
-msgid ""
-"This node is configured with centralized mode. Go to %s to create a policy."
-msgstr ""
-
-#: ../../extensions/resource_registration.php:1103
-msgid "This extension makes registering resource templates easier."
-msgstr ""
-
-#: ../../extensions/resource_registration.php:1103
-msgid "Here you can upload a resource template in .ptr format."
-msgstr ""
-
-#: ../../extensions/resource_registration.php:1103
-#, php-format
-msgid ""
-"Please refer to our documentation for more information on how to obtain and "
-"use %s resources."
-msgstr ""
-
-#: ../../extensions/resource_registration.php:1103
-msgid ""
-"You can get more resurces in our <a href=\"http://pandorafms.com/Library/"
-"Library/\">Public Resource Library</a>"
-msgstr ""
-
-#: ../../extensions/resource_registration.php:1113
-msgid "Group filter: "
-msgstr ""
-
-#: ../../extensions/resource_registration.php:1130
-msgid ""
-"Error uploading resource. Check if the selected file is a valid resource "
-"template in .ptr format"
-msgstr ""
-
-#: ../../extensions/api_checker.php:111 ../../extensions/api_checker.php:248
-msgid "API checker"
-msgstr ""
-
-#: ../../extensions/api_checker.php:123
-#: ../../extensions/users_connected.php:144
-#: ../../godmode/reporting/reporting_builder.item_editor.php:68
-#: ../../godmode/reporting/visual_console_builder.elements.php:790
-#: ../../include/functions_visual_map_editor.php:1460
-#: ../../include/functions_reporting_html.php:2879
-#: ../../include/functions_reporting_html.php:3163
-#: ../../include/class/AuditLog.class.php:194
-#: ../../operation/network/network_report.php:184
-msgid "IP"
-msgstr ""
-
-#: ../../extensions/api_checker.php:128
-#, php-format
-msgid "%s Console URL"
-msgstr ""
-
-#: ../../extensions/api_checker.php:133
-msgid "API Pass"
-msgstr ""
-
-#: ../../extensions/api_checker.php:138
-#: ../../extensions/users_connected.php:143
-#: ../../godmode/setup/setup_ehorus.php:77
-#: ../../godmode/setup/setup_integria.php:280
-#: ../../godmode/reporting/reporting_builder.item_editor.php:3231
-#: ../../godmode/events/custom_events.php:99
-#: ../../mobile/include/user.class.php:335
-#: ../../mobile/operation/tactical.php:348
-#: ../../include/functions_reporting_html.php:5497
-#: ../../include/functions.php:3036 ../../include/functions_cron.php:454
-#: ../../include/functions_config.php:664
-#: ../../include/functions_config.php:684
-#: ../../include/functions_config.php:1747
-#: ../../include/class/CredentialStore.class.php:793
-#: ../../include/class/CredentialStore.class.php:1122
-#: ../../include/class/AuditLog.class.php:108
-#: ../../include/class/AuditLog.class.php:211
-#: ../../include/functions_events.php:194
-#: ../../include/functions_events.php:244
-#: ../../include/functions_events.php:6615
-#: ../../include/functions_events.php:7042 ../../operation/search_users.php:70
-#: ../../operation/users/user_edit.php:695
-#: ../../operation/users/user_edit.php:741
-#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:118
-#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:249
-#: ../../operation/events/events.build_table.php:202
-#: ../../operation/events/events.build_table.php:700
-#: ../../general/logon_ok.php:247 ../../general/login_page.php:230
-#: ../../general/login_page.php:272
-msgid "User"
-msgstr ""
-
-#: ../../extensions/api_checker.php:143
-#: ../../godmode/modules/manage_network_components_form_wmi.php:49
-#: ../../godmode/users/configure_user.php:911
-#: ../../godmode/agentes/module_manager_editor_wmi.php:116
-#: ../../godmode/massive/massive_edit_modules.php:896
-#: ../../godmode/setup/setup_ehorus.php:83
-#: ../../godmode/setup/setup_integria.php:286
-#: ../../mobile/include/user.class.php:342
-#: ../../include/functions_config.php:668
-#: ../../include/functions_config.php:688
-#: ../../include/functions_config.php:1752
-#: ../../include/class/CredentialStore.class.php:946
-#: ../../include/class/CredentialStore.class.php:983
-#: ../../include/class/CredentialStore.class.php:1123
-#: ../../include/class/CredentialStore.class.php:1146
-#: ../../include/class/AgentWizard.class.php:677
-#: ../../operation/users/user_edit.php:701
-#: ../../operation/users/user_edit.php:747 ../../general/login_page.php:244
-#: ../../general/login_page.php:285
-msgid "Password"
-msgstr ""
-
-#: ../../extensions/api_checker.php:151
-msgid "Action (get or set)"
-msgstr ""
-
-#: ../../extensions/api_checker.php:156 ../../godmode/extensions.php:148
-#: ../../godmode/reporting/reporting_builder.item_editor.php:4151
-#: ../../include/functions_reporting_html.php:2044
-#: ../../include/functions_reporting_html.php:4466
-#: ../../include/functions_menu.php:589
-#: ../../include/class/ExternalTools.class.php:530
-msgid "Operation"
-msgstr ""
-
-#: ../../extensions/api_checker.php:166
-msgid "ID 2"
-msgstr ""
-
-#: ../../extensions/api_checker.php:171
-msgid "Return Type"
-msgstr ""
-
-#: ../../extensions/api_checker.php:176
-#: ../../godmode/groups/configure_group.php:247
-#: ../../godmode/users/configure_user.php:1093
-#: ../../godmode/snmpconsole/snmp_alert.php:33
-#: ../../include/functions_graph.php:3051
-#: ../../include/functions_graph.php:3096
-#: ../../include/functions_graph.php:3137
-#: ../../include/functions_graph.php:3179
-#: ../../include/functions_graph.php:3256
-#: ../../include/functions_graph.php:3465
-#: ../../include/functions_graph.php:3573
-#: ../../include/functions_graph.php:3638
-#: ../../include/functions_graph.php:3805
-#: ../../include/functions_graph.php:3817
-#: ../../include/functions_graph.php:3818
-#: ../../include/functions_graph.php:3821
-#: ../../include/functions_graph.php:3826
-#: ../../include/functions_graph.php:3827
-#: ../../include/functions_graph.php:3830
-#: ../../include/functions_graph.php:4818
-#: ../../operation/users/user_edit.php:361
-#: ../../operation/snmpconsole/snmp_statistics.php:218
-#: ../../operation/snmpconsole/snmp_statistics.php:275
-#: ../../operation/snmpconsole/snmp_view.php:636
-#: ../../operation/snmpconsole/snmp_view.php:1120
-#: ../../operation/snmpconsole/snmp_view.php:1149
-#: ../../operation/gis_maps/render_view.php:164
-msgid "Other"
-msgstr ""
-
-#: ../../extensions/api_checker.php:181
-msgid "Other Mode"
-msgstr ""
-
-#: ../../extensions/api_checker.php:189
-msgid "Raw URL"
-msgstr ""
-
-#: ../../extensions/api_checker.php:195
-#: ../../godmode/wizards/HostDevices.class.php:1470
-msgid "Credentials"
-msgstr ""
-
-#: ../../extensions/api_checker.php:200
-msgid "Call parameters"
-msgstr ""
-
-#: ../../extensions/api_checker.php:200
-msgid "Action: get Operation: module_last_value id: 63"
-msgstr ""
-
-#: ../../extensions/api_checker.php:207
-msgid "Custom URL"
-msgstr ""
-
-#: ../../extensions/api_checker.php:213
-msgid "Call"
-msgstr ""
-
-#: ../../extensions/api_checker.php:219 ../../extensions/api_checker.php:226
-#: ../../include/functions_reporting_html.php:3820
-#: ../../include/functions_reporting_html.php:3967
-#: ../../include/functions_reporting_html.php:4308
-#: ../../include/functions_reporting_html.php:4319
-#: ../../include/functions_db.php:1922
-msgid "Result"
-msgstr ""
-
-#: ../../extensions/api_checker.php:220
-#: ../../godmode/reporting/reporting_builder.item_editor.php:73
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2221
-#: ../../godmode/events/event_responses.editor.php:154
-#: ../../godmode/events/event_responses.editor.php:162
-#: ../../include/functions_reporting_html.php:1504
-#: ../../operation/gis_maps/ajax.php:316
-msgid "URL"
-msgstr ""
-
-#: ../../extensions/api_checker.php:222 ../../extensions/api_checker.php:239
-msgid "Show URL"
-msgstr ""
-
-#: ../../extensions/api_checker.php:235
-msgid "Hide URL"
-msgstr ""
-
-#: ../../extensions/db_status.php:25 ../../extensions/db_status.php:453
-#: ../../godmode/menu.php:433
-msgid "DB Schema check"
-msgstr ""
-
-#: ../../extensions/db_status.php:43
-msgid ""
-"This extension checks the DB is correct. Because sometimes the old DB from a "
-"migration has not some fields in the tables or the data is changed."
-msgstr ""
-
-#: ../../extensions/db_status.php:46
-msgid "At the moment the checks is for MySQL/MariaDB."
-msgstr ""
-
-#: ../../extensions/db_status.php:52
-msgid "DB settings"
-msgstr ""
-
-#: ../../extensions/db_status.php:56
-msgid "DB User with privileges"
-msgstr ""
-
-#: ../../extensions/db_status.php:58
-msgid "DB Password for this user"
-msgstr ""
-
-#: ../../extensions/db_status.php:62
-msgid "DB Hostname"
-msgstr ""
-
-#: ../../extensions/db_status.php:64
-msgid "DB Name (temporal for testing)"
-msgstr ""
-
-#: ../../extensions/db_status.php:72
-msgid "Execute Test"
-msgstr ""
-
-#: ../../extensions/db_status.php:108
-msgid "Unsuccessful connected to the DB"
-msgstr ""
-
-#: ../../extensions/db_status.php:119
-msgid "Unsuccessful created the testing DB"
-msgstr ""
-
-#: ../../extensions/db_status.php:135
-msgid "Unsuccessful installed tables into the testing DB"
-msgstr ""
-
-#: ../../extensions/db_status.php:219
-#, php-format
-msgid "Success! %s DB contains all tables"
-msgstr ""
-
-#: ../../extensions/db_status.php:221
-#, php-format
-msgid "%s DB could not retrieve all tables. The missing tables are (%s)"
-msgstr ""
-
-#: ../../extensions/db_status.php:235 ../../extensions/db_status.php:246
-#: ../../extensions/db_status.php:349
-msgid "You can execute this SQL query for to fix."
-msgstr ""
-
-#: ../../extensions/db_status.php:343
-#, php-format
-msgid "Unsuccessful the table %s has not the field %s"
-msgstr ""
-
-#: ../../extensions/db_status.php:408
-msgid "Successful all the tables have the correct fields"
-msgstr ""
-
-#: ../../extensions/agents_alerts.php:37
-msgid "Agents/Alerts view"
-msgstr ""
-
-#: ../../extensions/resource_exportation.php:47
-#: ../../extensions/resource_exportation.php:414
-msgid "Resource exportation"
-msgstr ""
-
-#: ../../extensions/resource_exportation.php:417
-msgid "This extension makes exportation of resource template more easy."
-msgstr ""
-
-#: ../../extensions/resource_exportation.php:417
-msgid "You can export resource templates in .ptr format."
-msgstr ""
-
-#: ../../extensions/resource_exportation.php:427
-#: ../../include/functions_cron.php:537 ../../include/functions_cron.php:676
-#: ../../include/functions_cron.php:710
-#: ../../include/lib/Dashboard/Widgets/reports.php:307
-#: ../../include/lib/Dashboard/Widgets/reports.php:352
-msgid "Report"
-msgstr ""
-
-#: ../../extensions/resource_exportation.php:429
-#: ../../extensions/resource_exportation.php:432
-#: ../../operation/agentes/exportdata.php:388
-msgid "Export"
-msgstr ""
-
-#: ../../extensions/resource_exportation.php:430
-#: ../../godmode/users/configure_user.php:1087
-#: ../../godmode/reporting/visual_console_builder.php:870
-#: ../../godmode/reporting/map_builder.php:134
-#: ../../godmode/reporting/map_builder.php:140
-#: ../../godmode/reporting/visual_console_favorite.php:131
-#: ../../godmode/reporting/visual_console_favorite.php:137
-#: ../../include/lib/Dashboard/Widgets/maps_made_by_user.php:324
-#: ../../operation/users/user_edit.php:356
-#: ../../operation/visual_console/view.php:230 ../../operation/menu.php:174
-#: ../../operation/menu.php:178
-msgid "Visual console"
-msgstr ""
-
-#: ../../extensions/files_repo.php:103
-msgid "Extension not installed"
-msgstr ""
-
-#: ../../extensions/files_repo.php:115 ../../extensions/files_repo.php:204
-msgid "Administration view"
-msgstr ""
-
-#: ../../extensions/files_repo.php:119 ../../extensions/files_repo.php:207
-msgid "Operation view"
-msgstr ""
-
-#: ../../extensions/files_repo.php:127 ../../extensions/files_repo.php:237
-msgid "Files repository manager"
-msgstr ""
-
-#: ../../extensions/files_repo.php:145 ../../include/functions.php:2881
-#: ../../include/functions.php:2885
-msgid "The file exceeds the maximum size"
-msgstr ""
-
-#: ../../extensions/files_repo.php:218 ../../extensions/files_repo.php:235
-msgid "Files repository"
-msgstr ""
-
-#: ../../extensions/dbmanager.php:99
-msgid "Database interface"
-msgstr ""
-
-#: ../../extensions/dbmanager.php:103
-#, php-format
-msgid ""
-"This is an advanced extension to interface with %s database directly from "
-"WEB console\n"
-"\t\tusing native SQL sentences. Please note that <b>you can damage</b> your "
-"%s installation\n"
-"\t\tif you don't know </b>exactly</b> what are you are doing,\n"
-"\t\tthis means that you can severily damage your setup using this "
-"extension.\n"
-"\t\tThis extension is intended to be used <b>only by experienced users</b>\n"
-"\t\twith a depth knowledge of %s internals."
-msgstr ""
-
-#: ../../extensions/dbmanager.php:124
-msgid "Execute SQL"
-msgstr ""
-
-#: ../../extensions/dbmanager.php:173 ../../godmode/menu.php:433
-msgid "DB interface"
-msgstr ""
-
-#: ../../extensions/agents_modules.php:314
-#: ../../operation/agentes/group_view.php:77
-#: ../../operation/agentes/tactical.php:60
-msgid "Last update"
-msgstr ""
-
-#: ../../extensions/agents_modules.php:394
-#: ../../godmode/agentes/modificar_agente.php:352
-#: ../../godmode/agentes/planned_downtime.editor.php:786
-#: ../../godmode/reporting/reporting_builder.item_editor.php:1468
-#: ../../include/functions_html.php:1450
-#: ../../include/class/NetworkMap.class.php:3216
-#: ../../operation/agentes/estado_agente.php:259
-#: ../../operation/agentes/interface_view.functions.php:59
-#: ../../operation/agentes/status_monitor.php:488
-msgid "Recursion"
-msgstr ""
-
-#: ../../extensions/agents_modules.php:397
-#: ../../godmode/modules/manage_network_components_form_common.php:109
-#: ../../godmode/agentes/module_manager_editor_common.php:265
-#: ../../godmode/massive/massive_edit_modules.php:877
-#: ../../godmode/reporting/create_container.php:540
-#: ../../godmode/reporting/reporting_builder.item_editor.php:1521
-#: ../../mobile/operation/modules.php:165
-#: ../../mobile/operation/modules.php:166
-#: ../../mobile/operation/modules.php:274
-#: ../../mobile/operation/modules.php:275
-#: ../../include/functions_graph.php:5347
-#: ../../include/functions_treeview.php:122
-#: ../../include/functions_html.php:1475
-#: ../../include/functions_events.php:4468
-#: ../../operation/agentes/status_monitor.php:517
-#: ../../operation/agentes/estado_monitores.php:552
-#: ../../operation/agentes/ver_agente.php:1119
-msgid "Module group"
-msgstr ""
-
-#: ../../extensions/agents_modules.php:403
-#: ../../extensions/files_repo/files_repo_form.php:46
-#: ../../godmode/modules/manage_network_templates_form.php:291
-#: ../../godmode/modules/manage_network_components.php:659
-#: ../../godmode/massive/massive_copy_modules.php:126
-#: ../../godmode/massive/massive_copy_modules.php:286
-#: ../../godmode/massive/massive_delete_modules.php:322
-#: ../../godmode/massive/massive_delete_modules.php:369
-#: ../../godmode/massive/massive_delete_modules.php:424
-#: ../../godmode/massive/massive_delete_modules.php:445
-#: ../../godmode/massive/massive_delete_agents.php:220
-#: ../../godmode/massive/massive_delete_agents.php:234
-#: ../../godmode/massive/massive_edit_agents.php:453
-#: ../../godmode/massive/massive_edit_agents.php:466
-#: ../../godmode/massive/massive_edit_modules.php:299
-#: ../../godmode/massive/massive_edit_modules.php:346
-#: ../../godmode/massive/massive_edit_modules.php:384
-#: ../../godmode/massive/massive_edit_modules.php:470
-#: ../../godmode/alerts/alert_list.list.php:121
-#: ../../godmode/alerts/alert_list.list.php:127
-#: ../../godmode/alerts/alert_list.list.php:136
-#: ../../godmode/alerts/alert_list.list.php:145
-#: ../../godmode/alerts/alert_templates.php:313
-#: ../../godmode/alerts/alert_list.php:418
-#: ../../godmode/alerts/alert_list.php:467
-#: ../../godmode/alerts/alert_list.php:481
-#: ../../godmode/setup/gis_step_2.php:214
-#: ../../godmode/setup/setup_visuals.php:947
-#: ../../godmode/reporting/reporting_builder.list_items.php:209
-#: ../../godmode/reporting/reporting_builder.list_items.php:211
-#: ../../godmode/reporting/reporting_builder.list_items.php:213
-#: ../../godmode/reporting/reporting_builder.list_items.php:235
-#: ../../godmode/reporting/reporting_builder.list_items.php:245
-#: ../../godmode/reporting/reporting_builder.list_items.php:255
-#: ../../godmode/reporting/create_container.php:546
-#: ../../godmode/reporting/reporting_builder.item_editor.php:1511
-#: ../../godmode/reporting/reporting_builder.item_editor.php:1529
-#: ../../godmode/reporting/reporting_builder.item_editor.php:1959
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2746
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2773
-#: ../../godmode/reporting/reporting_builder.item_editor.php:3391
-#: ../../godmode/reporting/reporting_builder.item_editor.php:3457
-#: ../../godmode/reporting/reporting_builder.item_editor.php:3479
-#: ../../godmode/reporting/reporting_builder.item_editor.php:3537
-#: ../../godmode/reporting/visual_console_builder.wizard.php:340
-#: ../../godmode/reporting/visual_console_builder.wizard.php:354
-#: ../../godmode/events/event_edit_filter.php:317
-#: ../../godmode/events/event_edit_filter.php:332
-#: ../../godmode/events/event_edit_filter.php:595
-#: ../../mobile/operation/agents.php:38 ../../mobile/operation/modules.php:50
-#: ../../mobile/operation/modules.php:270
-#: ../../mobile/operation/modules.php:285 ../../mobile/operation/alerts.php:47
-#: ../../mobile/operation/alerts.php:54 ../../mobile/operation/events.php:682
-#: ../../mobile/operation/events.php:692 ../../mobile/operation/events.php:1158
-#: ../../mobile/operation/events.php:1187 ../../include/functions.php:1070
-#: ../../include/functions.php:1330 ../../include/ajax/events.php:415
-#: ../../include/functions_groupview.php:95
-#: ../../include/functions_modules.php:3533
-#: ../../include/functions_modules.php:3535
-#: ../../include/functions_users.php:416 ../../include/functions_users.php:674
-#: ../../include/functions_notifications.php:108
-#: ../../include/functions_html.php:905 ../../include/functions_html.php:1481
-#: ../../include/class/CredentialStore.class.php:532
-#: ../../include/class/AuditLog.class.php:203
-#: ../../include/class/AuditLog.class.php:213
-#: ../../include/functions_reporting.php:2801
-#: ../../include/lib/Dashboard/Widgets/system_group_status.php:399
-#: ../../include/lib/Dashboard/Widgets/events_list.php:401
-#: ../../include/lib/Dashboard/Widgets/tree_view.php:384
-#: ../../include/lib/Dashboard/Widgets/tree_view.php:417
-#: ../../include/functions_groups.php:647
-#: ../../include/functions_groups.php:1930
-#: ../../include/functions_events.php:6355
-#: ../../include/functions_events.php:6961 ../../operation/tree.php:208
-#: ../../operation/tree.php:261 ../../operation/agentes/estado_agente.php:278
-#: ../../operation/agentes/status_monitor.php:655
-#: ../../operation/agentes/estado_monitores.php:520
-#: ../../operation/agentes/estado_monitores.php:565
-#: ../../operation/agentes/alerts_status.functions.php:94
-#: ../../operation/agentes/alerts_status.functions.php:100
-#: ../../operation/agentes/alerts_status.functions.php:114
-#: ../../operation/agentes/alerts_status.functions.php:131
-#: ../../operation/agentes/alerts_status.functions.php:134
-#: ../../operation/snmpconsole/snmp_view.php:549
-#: ../../operation/snmpconsole/snmp_view.php:578
-#: ../../operation/snmpconsole/snmp_view.php:586
-#: ../../operation/snmpconsole/snmp_view.php:902
-#: ../../operation/incidents/list_integriaims_incidents.php:326
-#: ../../operation/incidents/list_integriaims_incidents.php:337
-#: ../../operation/incidents/list_integriaims_incidents.php:354
-#: ../../operation/incidents/list_integriaims_incidents.php:365
-#: ../../operation/events/events_list.php:823
-#: ../../operation/events/events_list.php:835
-#: ../../operation/events/events_list.php:944
-#: ../../operation/events/events_list.php:956
-#: ../../operation/events/events.php:1069
-#: ../../operation/events/events.php:1138
-#: ../../operation/events/events.php:1247
-#: ../../operation/events/events.php:1299
-#: ../../operation/events/events.php:2256
-#: ../../operation/events/events.build_table.php:619
-#: ../../general/subselect_data_module.php:62
-msgid "All"
-msgstr ""
-
-#: ../../extensions/agents_modules.php:418
-#: ../../extensions/agents_modules.php:713
-#: ../../godmode/massive/massive_standby_alerts.php:179
-#: ../../godmode/massive/massive_delete_modules.php:530
-#: ../../godmode/massive/massive_add_alerts.php:219
-#: ../../godmode/massive/massive_delete_agents.php:279
-#: ../../godmode/massive/massive_edit_plugins.php:360
-#: ../../godmode/massive/massive_enable_disable_alerts.php:166
-#: ../../godmode/massive/massive_edit_agents.php:476
-#: ../../godmode/massive/massive_delete_alerts.php:296
-#: ../../godmode/massive/massive_edit_modules.php:499
-#: ../../godmode/alerts/alert_list.list.php:69
-#: ../../godmode/reporting/reporting_builder.list_items.php:208
-#: ../../godmode/reporting/reporting_builder.list_items.php:229
-#: ../../godmode/reporting/reporting_builder.item_editor.php:1654
-#: ../../godmode/reporting/reporting_builder.item_editor.php:1716
-#: ../../godmode/reporting/reporting_builder.item_editor.php:1932
-#: ../../godmode/reporting/visual_console_builder.wizard.php:408
-#: ../../mobile/include/functions_web.php:23
-#: ../../mobile/operation/agents.php:186 ../../mobile/operation/home.php:81
-#: ../../mobile/operation/agent.php:136
-#: ../../include/functions_reporting_html.php:1808
-#: ../../include/functions_reporting_html.php:2150
-#: ../../include/functions_reporting_html.php:2899
-#: ../../include/functions_cron.php:605 ../../include/functions_html.php:1560
-#: ../../include/class/Diagnostics.class.php:1159
-#: ../../include/class/Diagnostics.class.php:1163
-#: ../../include/class/Diagnostics.class.php:1167
-#: ../../include/class/Diagnostics.class.php:1171
-#: ../../include/class/NetworkMap.class.php:3218
-#: ../../include/class/AgentsAlerts.class.php:249
-#: ../../include/class/AgentsAlerts.class.php:539
-#: ../../include/lib/Dashboard/Widgets/groups_status.php:311
-#: ../../include/lib/Dashboard/Widgets/groups_status.php:316
-#: ../../include/lib/Dashboard/Widgets/agent_module.php:416
-#: ../../include/functions_groups.php:53 ../../operation/search_results.php:80
-#: ../../operation/agentes/interface_view.functions.php:71
-#: ../../operation/agentes/group_view.php:180
-#: ../../operation/agentes/group_view.php:213
-msgid "Agents"
-msgstr ""
-
-#: ../../extensions/agents_modules.php:423
-#: ../../extensions/agents_modules.php:426
-#: ../../godmode/agentes/planned_downtime.editor.php:800
-#: ../../godmode/massive/massive_delete_action_alerts.php:233
-#: ../../godmode/massive/massive_delete_modules.php:550
-#: ../../godmode/massive/massive_add_alerts.php:252
-#: ../../godmode/massive/massive_delete_alerts.php:327
-#: ../../godmode/massive/massive_add_action_alerts.php:218
-#: ../../godmode/massive/massive_edit_modules.php:516
-#: ../../godmode/reporting/reporting_builder.item_editor.php:1760
-#: ../../include/functions_html.php:1574 ../../include/functions_html.php:1579
-msgid "Show common modules"
-msgstr ""
-
-#: ../../extensions/agents_modules.php:424
-#: ../../godmode/agentes/planned_downtime.editor.php:801
-#: ../../godmode/massive/massive_delete_action_alerts.php:234
-#: ../../godmode/massive/massive_delete_modules.php:551
-#: ../../godmode/massive/massive_add_alerts.php:253
-#: ../../godmode/massive/massive_delete_alerts.php:328
-#: ../../godmode/massive/massive_add_action_alerts.php:219
-#: ../../godmode/massive/massive_edit_modules.php:517
-#: ../../godmode/reporting/reporting_builder.item_editor.php:1761
-#: ../../include/functions_html.php:1575
-msgid "Show all modules"
-msgstr ""
-
-#: ../../extensions/agents_modules.php:431 ../../extensions/insert_data.php:172
-#: ../../godmode/agentes/module_manager_editor_prediction.php:154
-#: ../../godmode/agentes/planned_downtime.list.php:181
-#: ../../godmode/agentes/planned_downtime.editor.php:990
-#: ../../godmode/agentes/agent_manager.php:587
-#: ../../godmode/agentes/agent_manager.php:655
-#: ../../godmode/agentes/module_manager_editor_common.php:1260
-#: ../../godmode/agentes/module_manager_editor_common.php:1304
-#: ../../godmode/massive/massive_standby_alerts.php:199
-#: ../../godmode/massive/massive_standby_alerts.php:234
-#: ../../godmode/massive/massive_enable_disable_alerts.php:187
-#: ../../godmode/massive/massive_enable_disable_alerts.php:222
-#: ../../godmode/massive/massive_edit_agents.php:584
-#: ../../godmode/massive/massive_edit_agents.php:780
-#: ../../godmode/alerts/alert_list.list.php:476
-#: ../../godmode/alerts/alert_list.list.php:734
-#: ../../godmode/alerts/alert_view.php:68
-#: ../../godmode/alerts/alert_list.builder.php:69
-#: ../../godmode/reporting/reporting_builder.list_items.php:410
-#: ../../godmode/reporting/create_container.php:410
-#: ../../godmode/reporting/create_container.php:560
-#: ../../godmode/reporting/create_container.php:628
-#: ../../godmode/reporting/graph_builder.graph_editor.php:213
-#: ../../godmode/reporting/reporting_builder.item_editor.php:193
-#: ../../godmode/reporting/reporting_builder.item_editor.php:804
-#: ../../godmode/reporting/reporting_builder.item_editor.php:1593
-#: ../../godmode/reporting/reporting_builder.item_editor.php:3688
-#: ../../godmode/reporting/reporting_builder.item_editor.php:4123
-#: ../../godmode/reporting/reporting_builder.item_editor.php:4147
-#: ../../godmode/reporting/visual_console_builder.elements.php:105
-#: ../../godmode/reporting/visual_console_builder.wizard.php:449
-#: ../../godmode/reporting/visual_console_builder.wizard.php:770
-#: ../../godmode/servers/plugin.php:88 ../../mobile/operation/alerts.php:319
-#: ../../include/functions_visual_map_editor.php:497
-#: ../../include/functions_reporting_html.php:535
-#: ../../include/functions_reporting_html.php:931
-#: ../../include/functions_reporting_html.php:1740
-#: ../../include/functions_reporting_html.php:2043
-#: ../../include/functions_reporting_html.php:2955
-#: ../../include/functions_reporting_html.php:3338
-#: ../../include/functions_reporting_html.php:3346
-#: ../../include/functions_reporting_html.php:3355
-#: ../../include/functions_reporting_html.php:3367
-#: ../../include/functions_reporting_html.php:3523
-#: ../../include/functions_reporting_html.php:3651
-#: ../../include/functions_reporting_html.php:3745
-#: ../../include/functions_reporting_html.php:4464
-#: ../../include/functions_reporting_html.php:4512
-#: ../../include/ajax/alert_list.ajax.php:278
-#: ../../include/ajax/alert_list.ajax.php:303
-#: ../../include/ajax/alert_list.ajax.php:466
-#: ../../include/functions_graph.php:5431
-#: ../../include/functions_treeview.php:64
-#: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:563
-#: ../../include/rest-api/models/VisualConsole/Items/ColorCloud.php:411
-#: ../../include/rest-api/models/VisualConsole/Items/BasicChart.php:299
-#: ../../include/rest-api/models/VisualConsole/Items/StaticGraph.php:374
-#: ../../include/rest-api/models/VisualConsole/Items/SimpleValue.php:349
-#: ../../include/rest-api/models/VisualConsole/Items/BarsGraph.php:529
-#: ../../include/rest-api/models/VisualConsole/Items/EventsHistory.php:252
-#: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:604
-#: ../../include/rest-api/models/VisualConsole/Items/DonutGraph.php:242
-#: ../../include/rest-api/models/VisualConsole/Items/Odometer.php:385
-#: ../../include/class/AgentsAlerts.class.php:409
-#: ../../include/class/AgentsAlerts.class.php:900
-#: ../../include/functions_reporting.php:6132
-#: ../../include/lib/Dashboard/Widgets/sla_percent.php:315
-#: ../../include/lib/Dashboard/Widgets/module_icon.php:334
-#: ../../include/lib/Dashboard/Widgets/module_value.php:308
-#: ../../include/lib/Dashboard/Widgets/module_table_value.php:283
-#: ../../include/lib/Dashboard/Widgets/graph_module_histogram.php:304
-#: ../../include/lib/Dashboard/Widgets/module_status.php:324
-#: ../../include/lib/Dashboard/Widgets/single_graph.php:279
-#: ../../include/lib/Dashboard/Widgets/tree_view.php:682
-#: ../../include/lib/Dashboard/Widgets/top_n.php:221
-#: ../../operation/agentes/alerts_status.php:542
-#: ../../operation/agentes/alerts_status.php:577
-#: ../../operation/agentes/alerts_status.php:612
-#: ../../operation/agentes/alerts_status.php:644
-#: ../../operation/agentes/exportdata.csv.php:74
-#: ../../operation/agentes/exportdata.php:83
-#: ../../operation/agentes/estado_monitores.php:125
-#: ../../operation/agentes/exportdata.excel.php:74
-#: ../../operation/search_alerts.php:34 ../../operation/search_modules.php:31
-msgid "Module"
-msgstr ""
-
-#: ../../extensions/agents_modules.php:435
-#: ../../godmode/reporting/reporting_builder.item_editor.php:3626
-#: ../../include/functions_visual_map_editor.php:1421
-msgid "Update item"
-msgstr ""
-
-#: ../../extensions/agents_modules.php:452
-#: ../../include/functions_reports.php:794
-msgid "Agents/Modules"
-msgstr ""
-
-#: ../../extensions/agents_modules.php:461
-#: ../../extensions/module_groups.php:260
-#: ../../extensions/realtime_graphs.php:67
-#: ../../godmode/snmpconsole/snmp_trap_generator.php:47
-#: ../../godmode/snmpconsole/snmp_filters.php:55
-#: ../../include/class/AgentsAlerts.class.php:747 ../../operation/tree.php:181
-#: ../../operation/agentes/alerts_status.php:194
-#: ../../operation/agentes/estado_agente.php:221
-#: ../../operation/agentes/interface_view.php:72
-#: ../../operation/agentes/status_monitor.php:104
-#: ../../operation/agentes/group_view.php:95
-#: ../../operation/agentes/ver_agente.php:1877
-#: ../../operation/agentes/tactical.php:78
-#: ../../operation/snmpconsole/snmp_statistics.php:98
-#: ../../operation/snmpconsole/snmp_browser.php:83
-#: ../../operation/snmpconsole/snmp_view.php:693
-#: ../../operation/snmpconsole/snmp_view.php:802
-#: ../../operation/snmpconsole/snmp_mib_uploader.php:53
-#: ../../operation/menu.php:31 ../../operation/menu.php:151
-#: ../../general/first_task/cluster_builder.php:38
-msgid "Monitoring"
-msgstr ""
-
-#: ../../extensions/agents_modules.php:465
-#: ../../extensions/module_groups.php:264
-#: ../../extensions/realtime_graphs.php:71
-#: ../../include/class/AgentsAlerts.class.php:751
-#: ../../operation/agentes/alerts_status.php:198
-#: ../../operation/agentes/estado_agente.php:225
-#: ../../operation/agentes/interface_view.php:76
-#: ../../operation/agentes/status_monitor.php:108
-#: ../../operation/agentes/group_view.php:99
-#: ../../operation/agentes/tactical.php:82 ../../operation/menu.php:37
-msgid "Views"
-msgstr ""
-
-#: ../../extensions/agents_modules.php:533
-msgid "Agent/module view"
-msgstr ""
-
-#: ../../extensions/agents_modules.php:570
-msgid "Filters "
-msgstr ""
-
-#: ../../extensions/agents_modules.php:570
-msgid "Secondary groups and agent subgroups will be taken into account."
-msgstr ""
-
-#: ../../extensions/agents_modules.php:705
-#: ../../include/functions_reporting.php:2830
-msgid "There are no agents with modules"
-msgstr ""
-
-#: ../../extensions/agents_modules.php:713
-#: ../../godmode/agentes/configurar_agente.php:418
-#: ../../godmode/agentes/configurar_agente.php:736
-#: ../../godmode/agentes/modificar_agente.php:819
-#: ../../godmode/agentes/planned_downtime.editor.php:907
-#: ../../godmode/agentes/planned_downtime.editor.php:982
-#: ../../godmode/massive/massive_copy_modules.php:198
-#: ../../godmode/massive/massive_delete_modules.php:458
-#: ../../godmode/massive/massive_edit_plugins.php:378
-#: ../../godmode/massive/massive_edit_modules.php:413
-#: ../../godmode/reporting/reporting_builder.list_items.php:210
-#: ../../godmode/reporting/reporting_builder.list_items.php:239
-#: ../../godmode/reporting/reporting_builder.item_editor.php:1783
-#: ../../godmode/reporting/reporting_builder.item_editor.php:1973
-#: ../../godmode/reporting/visual_console_builder.wizard.php:432
-#: ../../godmode/servers/servers.build_table.php:69
-#: ../../mobile/operation/agents.php:78 ../../mobile/operation/agents.php:390
-#: ../../mobile/operation/modules.php:218 ../../mobile/operation/home.php:88
-#: ../../mobile/operation/agent.php:309
-#: ../../include/functions_reporting_html.php:1808
-#: ../../include/functions_reporting_html.php:5149
-#: ../../include/functions_reports.php:732
-#: ../../include/functions_reports.php:736
-#: ../../include/functions_reports.php:740
-#: ../../include/functions_reports.php:744
-#: ../../include/functions_reports.php:748
-#: ../../include/functions_reports.php:752
-#: ../../include/functions_reports.php:756
-#: ../../include/functions_reports.php:760
-#: ../../include/functions_reports.php:764
-#: ../../include/functions_html.php:1603
-#: ../../include/class/AgentsAlerts.class.php:250
-#: ../../include/lib/Dashboard/Widgets/groups_status.php:385
-#: ../../include/lib/Dashboard/Widgets/groups_status.php:391
-#: ../../include/lib/Dashboard/Widgets/agent_module.php:416
-#: ../../include/lib/Dashboard/Widgets/tree_view.php:331
-#: ../../operation/search_agents.php:55 ../../operation/tree.php:112
-#: ../../operation/search_results.php:158
-#: ../../operation/agentes/estado_agente.php:758
-#: ../../operation/agentes/graphs.php:188
-#: ../../operation/agentes/exportdata.php:281
-#: ../../operation/agentes/group_view.php:181
-#: ../../operation/agentes/group_view.php:214
-msgid "Modules"
-msgstr ""
-
-#: ../../extensions/agents_modules.php:720
-msgid "Previous modules"
-msgstr ""
-
-#: ../../extensions/agents_modules.php:746
-msgid "More modules"
-msgstr ""
-
-#: ../../extensions/agents_modules.php:879
-#: ../../include/functions_reporting_html.php:1989
-msgid "Orange cell when the module has fired alerts"
-msgstr ""
-
-#: ../../extensions/agents_modules.php:881
-#: ../../include/functions_reporting_html.php:1990
-msgid "Red cell when the module has a critical status"
-msgstr ""
-
-#: ../../extensions/agents_modules.php:884
-#: ../../include/functions_reporting_html.php:1991
-msgid "Yellow cell when the module has a warning status"
-msgstr ""
-
-#: ../../extensions/agents_modules.php:886
-#: ../../include/functions_reporting_html.php:1992
-msgid "Green cell when the module has a normal status"
-msgstr ""
-
-#: ../../extensions/agents_modules.php:888
-#: ../../include/functions_reporting_html.php:1993
-msgid "Grey cell when the module has an unknown status"
-msgstr ""
-
-#: ../../extensions/agents_modules.php:890
-msgid "Cell turns blue when the module is in 'not initialize' status"
-msgstr ""
-
-#: ../../extensions/agents_modules.php:892
-#: ../../extensions/module_groups.php:391
-#: ../../godmode/snmpconsole/snmp_alert.php:1436
-#: ../../include/functions_reporting_html.php:1988
-#: ../../operation/snmpconsole/snmp_view.php:1272
-msgid "Legend"
-msgstr ""
-
-#: ../../extensions/agents_modules.php:903
-msgid "Agents/Modules view"
-msgstr ""
-
-#: ../../extensions/pandora_logs.php:29
-msgid "Cannot find file"
-msgstr ""
-
-#: ../../extensions/pandora_logs.php:34
-msgid "File is too large than PHP memory allocated in the system."
-msgstr ""
-
-#: ../../extensions/pandora_logs.php:35
-msgid "The preview file is imposible."
-msgstr ""
-
-#: ../../extensions/pandora_logs.php:38 ../../extensions/pandora_logs.php:45
-msgid ""
-"The folder /var/log/pandora must have pandora:apache and its content too."
-msgstr ""
-
-#: ../../extensions/pandora_logs.php:64
-msgid "System logfile viewer"
-msgstr ""
-
-#: ../../extensions/pandora_logs.php:66
-#, php-format
-msgid "Use this tool to view your %s logfiles directly on the console"
-msgstr ""
-
-#: ../../extensions/pandora_logs.php:68
-msgid ""
-"You can choose the amount of information shown in general setup (Log size "
-"limit in system logs viewer extension), "
-msgstr ""
-
-#: ../../extensions/pandora_logs.php:82
-msgid "System logfiles"
-msgstr ""
-
-#: ../../extensions/files_repo/functions_files_repo.php:28
-#: ../../extensions/files_repo/functions_files_repo.php:46
-msgid "Attachment directory is not writable by HTTP Server"
-msgstr ""
-
-#: ../../extensions/files_repo/functions_files_repo.php:28
-#: ../../extensions/files_repo/functions_files_repo.php:46
-#, php-format
-msgid "Please check that the web server has write rights on the %s directory"
-msgstr ""
-
-#: ../../extensions/files_repo/functions_files_repo.php:248
-msgid "The file could not be copied"
-msgstr ""
-
-#: ../../extensions/files_repo/functions_files_repo.php:251
-msgid "There was an error creating the file"
-msgstr ""
-
-#: ../../extensions/files_repo/functions_files_repo.php:295
-msgid "There was an error updating the file"
-msgstr ""
-
-#: ../../extensions/files_repo/files_repo_get_file.php:66
-msgid "Unreliable petition"
-msgstr ""
-
-#: ../../extensions/files_repo/files_repo_get_file.php:66
-msgid "Please contact the administrator"
-msgstr ""
-
-#: ../../extensions/files_repo/files_repo_form.php:55
-#: ../../extensions/module_groups.php:311
-#: ../../godmode/reporting/visual_console_builder.wizard.php:362
-#: ../../mobile/include/functions_web.php:27 ../../mobile/operation/home.php:57
-#: ../../mobile/operation/groups.php:77
-#: ../../include/functions_networkmap.php:1295
-#: ../../include/functions_maps.php:46
-#: ../../include/lib/Dashboard/Widgets/groups_status.php:216
-#: ../../include/lib/Dashboard/Widgets/system_group_status.php:295
-#: ../../include/lib/Dashboard/Widgets/events_list.php:420
-#: ../../include/lib/Dashboard/Widgets/top_n_events_by_module.php:301
-#: ../../include/lib/Dashboard/Widgets/tree_view.php:328
-#: ../../include/lib/Dashboard/Widgets/tree_view.php:337
-#: ../../include/lib/Dashboard/Widgets/tree_view.php:359
-#: ../../include/lib/Dashboard/Widgets/top_n_events_by_group.php:301
-#: ../../operation/tree.php:88
-#: ../../operation/agentes/pandora_networkmap.php:710
-msgid "Groups"
-msgstr ""
-
-#: ../../extensions/files_repo/files_repo_form.php:84
-msgid "Only 200 characters are permitted"
-msgstr ""
-
-#: ../../extensions/files_repo/files_repo_form.php:95
-#: ../../godmode/extensions.php:138
-msgid "File"
-msgstr ""
-
-#: ../../extensions/files_repo/files_repo_form.php:98
-#: ../../extensions/files_repo/files_repo_form.php:104
-#: ../../extensions/files_repo/files_repo_list.php:112
-msgid "Public link"
-msgstr ""
-
-#: ../../extensions/files_repo/files_repo_form.php:105
-#: ../../godmode/modules/manage_network_templates_form.php:335
-#: ../../godmode/users/configure_profile.php:403
-#: ../../godmode/agentes/planned_downtime.editor.php:864
-#: ../../godmode/agentes/planned_downtime.editor.php:1038
-#: ../../godmode/snmpconsole/snmp_alert.php:1412
-#: ../../godmode/alerts/alert_list.list.php:798
-#: ../../godmode/setup/news.php:299 ../../godmode/setup/links.php:170
-#: ../../godmode/setup/setup_visuals.php:1294
-#: ../../godmode/setup/setup_visuals.php:1349
-#: ../../godmode/setup/setup_visuals.php:1369
-#: ../../godmode/reporting/graph_builder.graph_editor.php:352
-#: ../../godmode/reporting/visual_console_builder.wizard.php:531
-#: ../../godmode/events/event_edit_filter.php:503
-#: ../../godmode/events/event_edit_filter.php:556
-#: ../../godmode/servers/plugin.php:908
-#: ../../include/functions_notifications.php:974
-#: ../../include/class/ManageNetScanScripts.class.php:471
-#: ../../include/functions_snmp_browser.php:1558
-#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:271
-#: ../../operation/events/events_list.php:609
-#: ../../operation/events/events_list.php:685
-#: ../../operation/events/events.php:613 ../../operation/events/events.php:689
-msgid "Add"
-msgstr ""
-
-#: ../../extensions/files_repo/files_repo_list.php:57
-#: ../../godmode/events/event_responses.editor.php:128
-#: ../../include/functions_visual_map_editor.php:125
-#: ../../include/functions_visual_map_editor.php:178
-#: ../../include/functions_visual_map_editor.php:838
-#: ../../include/functions_visual_map_editor.php:933
-#: ../../include/rest-api/models/VisualConsole/Items/Box.php:214
-#: ../../include/rest-api/models/VisualConsole/Item.php:1960
-#: ../../include/functions_filemanager.php:633
-#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:119
-#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:250
-msgid "Size"
-msgstr ""
-
-#: ../../extensions/files_repo/files_repo_list.php:58
-#: ../../include/functions_filemanager.php:632
-msgid "Last modification"
-msgstr ""
-
-#: ../../extensions/files_repo/files_repo_list.php:106
-msgid "Copy to clipboard"
-msgstr ""
-
-#: ../../extensions/files_repo/files_repo_list.php:123
-msgid "Download"
-msgstr ""
-
-#: ../../extensions/files_repo/files_repo_list.php:164
-msgid "No items"
-msgstr ""
-
-#: ../../extensions/module_groups.php:48
-msgid "Counters Module"
-msgstr ""
-
-#: ../../extensions/module_groups.php:49
-msgid "Alerts_Fired"
-msgstr ""
-
-#: ../../extensions/module_groups.php:50
-#: ../../godmode/modules/manage_network_components_form_wizard.php:408
-#: ../../godmode/groups/group_list.php:1051
-#: ../../godmode/massive/massive_copy_modules.php:116
-#: ../../godmode/massive/massive_copy_modules.php:276
-#: ../../godmode/massive/massive_delete_modules.php:415
-#: ../../godmode/massive/massive_delete_modules.php:436
-#: ../../godmode/massive/massive_delete_agents.php:210
-#: ../../godmode/massive/massive_edit_agents.php:443
-#: ../../godmode/massive/massive_edit_modules.php:375
-#: ../../godmode/massive/massive_edit_modules.php:461
-#: ../../godmode/reporting/reporting_builder.item_editor.php:3523
-#: ../../mobile/operation/agents.php:39 ../../mobile/operation/modules.php:53
-#: ../../include/functions_reporting_html.php:851
-#: ../../include/functions_reporting_html.php:2158
-#: ../../include/functions_reporting_html.php:4379
-#: ../../include/functions.php:1038 ../../include/functions.php:1274
-#: ../../include/functions.php:1275 ../../include/functions.php:1277
-#: ../../include/functions.php:1318 ../../include/functions_graph.php:3554
-#: ../../include/functions_graph.php:3555
-#: ../../include/functions_graph.php:5112 ../../include/functions_ui.php:2595
-#: ../../include/rest-api/models/VisualConsole/Items/Group.php:415
-#: ../../include/class/AgentWizard.class.php:1308
-#: ../../include/class/AgentWizard.class.php:3953
-#: ../../include/lib/Dashboard/Widgets/system_group_status.php:313
-#: ../../include/lib/Dashboard/Widgets/tree_view.php:387
-#: ../../include/lib/Dashboard/Widgets/tree_view.php:420
-#: ../../include/lib/Dashboard/Widgets/tree_view.php:660
-#: ../../include/functions_events.php:3300 ../../operation/tree.php:212
-#: ../../operation/tree.php:265 ../../operation/tree.php:453
-#: ../../operation/agentes/estado_agente.php:272
-#: ../../operation/agentes/status_monitor.php:494
-#: ../../operation/agentes/group_view.php:225
-#: ../../operation/agentes/group_view.php:230
-#: ../../operation/agentes/estado_monitores.php:521
-#: ../../operation/agentes/tactical.php:178
-#: ../../operation/gis_maps/render_view.php:161
-msgid "Critical"
-msgstr ""
-
-#: ../../extensions/module_groups.php:51
-msgid "warning"
-msgstr ""
-
-#: ../../extensions/module_groups.php:52
-#: ../../godmode/groups/group_list.php:1061
-#: ../../godmode/massive/massive_copy_modules.php:117
-#: ../../godmode/massive/massive_copy_modules.php:277
-#: ../../godmode/massive/massive_delete_modules.php:416
-#: ../../godmode/massive/massive_delete_modules.php:437
-#: ../../godmode/massive/massive_delete_agents.php:211
-#: ../../godmode/massive/massive_edit_agents.php:444
-#: ../../godmode/massive/massive_edit_modules.php:376
-#: ../../godmode/massive/massive_edit_modules.php:462
-#: ../../godmode/alerts/alert_list.builder.php:289
-#: ../../godmode/reporting/reporting_builder.item_editor.php:3524
-#: ../../mobile/operation/agents.php:42 ../../mobile/operation/modules.php:54
-#: ../../include/graphs/functions_flot.php:305
-#: ../../include/functions_reporting_html.php:2147
-#: ../../include/functions_reporting_html.php:2160
-#: ../../include/functions_reporting_html.php:3069
-#: ../../include/functions_reporting_html.php:3477
-#: ../../include/functions.php:1224 ../../include/functions.php:4091
-#: ../../include/ajax/module.php:1071 ../../include/functions_ui.php:540
-#: ../../include/functions_ui.php:541
-#: ../../include/functions_visual_map.php:2455
-#: ../../include/functions_visual_map.php:2483
-#: ../../include/functions_visual_map.php:2501
-#: ../../include/functions_visual_map.php:2519
-#: ../../include/functions_alerts.php:699
-#: ../../include/rest-api/models/VisualConsole/Items/Group.php:436
-#: ../../include/functions_reports.php:557 ../../include/functions_maps.php:54
-#: ../../include/functions_netflow.php:1640
-#: ../../include/functions_reporting.php:5578
-#: ../../include/functions_filemanager.php:695
-#: ../../include/lib/Dashboard/Widgets/tree_view.php:388
-#: ../../include/lib/Dashboard/Widgets/tree_view.php:421
-#: ../../include/lib/Dashboard/Widgets/tree_view.php:670
-#: ../../include/functions_events.php:3200 ../../operation/tree.php:213
-#: ../../operation/tree.php:266 ../../operation/tree.php:463
-#: ../../operation/agentes/estado_agente.php:273
-#: ../../operation/agentes/status_monitor.php:495
-#: ../../operation/agentes/group_view.php:221
-#: ../../operation/agentes/group_view.php:226
-#: ../../operation/agentes/estado_monitores.php:526
-#: ../../operation/agentes/pandora_networkmap.view.php:1728
-#: ../../operation/agentes/tactical.php:181
-#: ../../operation/events/events.php:2186
-msgid "Unknown"
-msgstr ""
-
-#: ../../extensions/module_groups.php:53
-#: ../../godmode/massive/massive_operations.php:392
-#: ../../godmode/setup/setup_general.php:778
-#: ../../godmode/setup/setup_general.php:796
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2473
-#: ../../include/functions_reporting_html.php:651
-#: ../../include/functions_reporting_html.php:846
-#: ../../include/functions_reporting_html.php:3075
-#: ../../include/functions_reporting_html.php:4374
-#: ../../include/functions_db.php:1937
-#: ../../include/class/ConfigPEN.class.php:668
-#: ../../include/class/ConfigPEN.class.php:692
-#: ../../include/class/HelpFeedBack.class.php:369
-#: ../../include/class/CredentialStore.class.php:1229
-#: ../../include/class/ModuleTemplates.class.php:1381
-#: ../../include/class/WelcomeWindow.class.php:173
-#: ../../include/class/AgentWizard.class.php:5958
-#: ../../include/lib/Dashboard/Widgets/maps_status.php:351
-#: ../../operation/agentes/pandora_networkmap.editor.php:602
-#: ../../operation/snmpconsole/snmp_browser.php:642
-msgid "OK"
-msgstr ""
-
-#: ../../extensions/module_groups.php:54
-msgid "Not_init"
-msgstr ""
-
-#: ../../extensions/module_groups.php:251
-msgid "Combined table of agent group and module group"
-msgstr ""
-
-#: ../../extensions/module_groups.php:275
-msgid "Search by agent group"
-msgstr ""
-
-#: ../../extensions/module_groups.php:279
-msgid "Search by module group"
-msgstr ""
-
-#: ../../extensions/module_groups.php:283
-#: ../../godmode/modules/manage_network_components.php:684
-#: ../../godmode/groups/group_list.php:782
-#: ../../godmode/groups/group_list.php:792
-#: ../../godmode/users/user_list.php:380 ../../godmode/users/user_list.php:390
-#: ../../godmode/agentes/modificar_agente.php:363
-#: ../../godmode/agentes/modificar_agente.php:372
-#: ../../godmode/agentes/planned_downtime.list.php:144
-#: ../../godmode/agentes/planned_downtime.list.php:183
-#: ../../godmode/agentes/module_manager.php:65
-#: ../../godmode/alerts/alert_actions.php:250
-#: ../../godmode/alerts/alert_actions.php:308
-#: ../../godmode/alerts/alert_templates.php:319
-#: ../../godmode/alerts/alert_templates.php:330
-#: ../../godmode/reporting/map_builder.php:352
-#: ../../godmode/reporting/map_builder.php:374
-#: ../../godmode/reporting/graphs.php:231
-#: ../../godmode/reporting/visual_console_favorite.php:158
-#: ../../godmode/reporting/visual_console_favorite.php:188
-#: ../../godmode/reporting/reporting_builder.item_editor.php:1122
-#: ../../godmode/reporting/reporting_builder.php:806
-#: ../../godmode/module_library/module_library_view.php:99
-#: ../../godmode/module_library/module_library_view.php:109
-#: ../../mobile/operation/agent.php:302 ../../include/functions_snmp.php:358
-#: ../../include/class/AuditLog.class.php:180
-#: ../../include/class/CalendarManager.class.php:1020
-#: ../../include/class/AgentWizard.class.php:2567
-#: ../../include/functions_snmp_browser.php:925
-#: ../../include/functions_snmp_browser.php:1501
-#: ../../operation/search_results.php:192
-#: ../../operation/agentes/estado_agente.php:264
-#: ../../operation/agentes/estado_agente.php:288
-#: ../../operation/agentes/status_monitor.php:556
-#: ../../operation/agentes/alerts_status.functions.php:194
-#: ../../operation/agentes/alerts_status.functions.php:203
-#: ../../general/ui/agents_list.php:100 ../../general/ui/agents_list.php:113
-msgid "Search"
-msgstr ""
-
-#: ../../extensions/module_groups.php:392
-msgid ""
-"Orange cell when the module group and agent have at least one alarm fired."
-msgstr ""
-
-#: ../../extensions/module_groups.php:393
-msgid ""
-"Red cell when the module group and agent have at least one module in "
-"critical status and the others in any status"
-msgstr ""
-
-#: ../../extensions/module_groups.php:394
-msgid ""
-"Yellow cell when the module group and agent have at least one in warning "
-"status and the others in grey or green status"
-msgstr ""
-
-#: ../../extensions/module_groups.php:395
-msgid ""
-"Grey cell when the module group and agent have at least one in unknown "
-"status and the others in green status"
-msgstr ""
-
-#: ../../extensions/module_groups.php:396
-msgid ""
-"Green cell when the module group and agent have all modules in OK status"
-msgstr ""
-
-#: ../../extensions/module_groups.php:397
-msgid ""
-"Blue cell when the module group and agent have all modules in not init "
-"status."
-msgstr ""
-
-#: ../../extensions/module_groups.php:401
-msgid ""
-"This table shows in columns the modules group and in rows agents group. The "
-"cell shows all modules"
-msgstr ""
-
-#: ../../extensions/module_groups.php:402
-msgid "There are no defined groups or module groups"
-msgstr ""
-
-#: ../../extensions/module_groups.php:422 ../../godmode/menu.php:90
-#: ../../include/lib/Dashboard/Widgets/tree_view.php:330
-#: ../../operation/tree.php:100
-msgid "Module groups"
-msgstr ""
-
-#: ../../extensions/insert_data.php:58
-msgid "Insert data"
-msgstr ""
-
-#: ../../extensions/insert_data.php:86
-msgid "You haven't privileges for insert data in the agent."
-msgstr ""
-
-#: ../../extensions/insert_data.php:122
-#, php-format
-msgid "Can't save agent (%s), module (%s) data xml."
-msgstr ""
-
-#: ../../extensions/insert_data.php:131
-#, php-format
-msgid "Save agent (%s), module (%s) data xml."
-msgstr ""
-
-#: ../../extensions/insert_data.php:142
-#, php-format
-msgid ""
-"Please check that the directory \"%s\" is writeable by the apache user. <br /"
-"><br />The CSV file format is date;value&lt;newline&gt;date;value&lt;"
-"newline&gt;... The date in CSV is in format Y/m/d H:i:s."
-msgstr ""
-
-#: ../../extensions/insert_data.php:155
-#: ../../godmode/agentes/status_monitor_custom_fields.php:77
-#: ../../godmode/agentes/status_monitor_custom_fields.php:143
-#: ../../godmode/agentes/module_manager_editor_prediction.php:126
-#: ../../godmode/agentes/planned_downtime.list.php:177
-#: ../../godmode/agentes/module_manager_editor_common.php:1250
-#: ../../godmode/agentes/module_manager_editor_common.php:1303
-#: ../../godmode/massive/massive_copy_modules.php:130
-#: ../../godmode/massive/massive_copy_modules.php:294
-#: ../../godmode/massive/massive_standby_alerts.php:199
-#: ../../godmode/massive/massive_standby_alerts.php:234
-#: ../../godmode/massive/massive_enable_disable_alerts.php:187
-#: ../../godmode/massive/massive_enable_disable_alerts.php:222
-#: ../../godmode/alerts/alert_list.list.php:474
-#: ../../godmode/alerts/alert_list.list.php:724
-#: ../../godmode/alerts/alert_view.php:64
-#: ../../godmode/alerts/alert_list.builder.php:55
-#: ../../godmode/reporting/reporting_builder.list_items.php:391
-#: ../../godmode/reporting/create_container.php:387
-#: ../../godmode/reporting/create_container.php:554
-#: ../../godmode/reporting/create_container.php:627
-#: ../../godmode/reporting/graph_builder.graph_editor.php:212
-#: ../../godmode/reporting/reporting_builder.item_editor.php:192
-#: ../../godmode/reporting/reporting_builder.item_editor.php:803
-#: ../../godmode/reporting/reporting_builder.item_editor.php:1536
-#: ../../godmode/reporting/reporting_builder.item_editor.php:3683
-#: ../../godmode/reporting/reporting_builder.item_editor.php:4120
-#: ../../godmode/reporting/reporting_builder.item_editor.php:4144
-#: ../../godmode/reporting/visual_console_builder.elements.php:104
-#: ../../godmode/reporting/visual_console_builder.wizard.php:450
-#: ../../godmode/reporting/visual_console_builder.wizard.php:738
-#: ../../godmode/reporting/visual_console_builder.wizard.php:761
-#: ../../godmode/servers/plugin.php:87 ../../mobile/operation/agents.php:75
-#: ../../mobile/operation/agents.php:384 ../../mobile/operation/modules.php:584
-#: ../../mobile/operation/home.php:96 ../../mobile/operation/alerts.php:316
-#: ../../mobile/operation/events.php:553
-#: ../../include/functions_visual_map_editor.php:422
-#: ../../include/functions_visual_map_editor.php:455
-#: ../../include/functions_reporting_html.php:534
-#: ../../include/functions_reporting_html.php:930
-#: ../../include/functions_reporting_html.php:1041
-#: ../../include/functions_reporting_html.php:1049
-#: ../../include/functions_reporting_html.php:1739
-#: ../../include/functions_reporting_html.php:2042
-#: ../../include/functions_reporting_html.php:2862
-#: ../../include/functions_reporting_html.php:2954
-#: ../../include/functions_reporting_html.php:3257
-#: ../../include/functions_reporting_html.php:3337
-#: ../../include/functions_reporting_html.php:3345
-#: ../../include/functions_reporting_html.php:3354
-#: ../../include/functions_reporting_html.php:3366
-#: ../../include/functions_reporting_html.php:3522
-#: ../../include/functions_reporting_html.php:3645
-#: ../../include/functions_reporting_html.php:3739
-#: ../../include/functions_reporting_html.php:4463
-#: ../../include/functions_reporting_html.php:4511
-#: ../../include/functions_reporting_html.php:4549
-#: ../../include/functions_reporting_html.php:4858
-#: ../../include/functions_reporting_html.php:4898
-#: ../../include/functions_reporting_html.php:5148
-#: ../../include/ajax/alert_list.ajax.php:445
-#: ../../include/functions_graph.php:5324 ../../include/functions_gis.php:229
-#: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:546
-#: ../../include/rest-api/models/VisualConsole/Items/ColorCloud.php:394
-#: ../../include/rest-api/models/VisualConsole/Items/BasicChart.php:281
-#: ../../include/rest-api/models/VisualConsole/Items/StaticGraph.php:357
-#: ../../include/rest-api/models/VisualConsole/Items/SimpleValue.php:332
-#: ../../include/rest-api/models/VisualConsole/Items/BarsGraph.php:511
-#: ../../include/rest-api/models/VisualConsole/Items/EventsHistory.php:235
-#: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:585
-#: ../../include/rest-api/models/VisualConsole/Items/DonutGraph.php:224
-#: ../../include/rest-api/models/VisualConsole/Items/Odometer.php:368
-#: ../../include/class/NetworkMap.class.php:2825
-#: ../../include/class/NetworkMap.class.php:2874
-#: ../../include/class/NetworkMap.class.php:3152
-#: ../../include/class/AgentsAlerts.class.php:407
-#: ../../include/class/AgentsAlerts.class.php:971
-#: ../../include/functions_reporting.php:6131
-#: ../../include/lib/Dashboard/Widgets/sla_percent.php:297
-#: ../../include/lib/Dashboard/Widgets/wux_transaction_stats.php:250
-#: ../../include/lib/Dashboard/Widgets/module_icon.php:316
-#: ../../include/lib/Dashboard/Widgets/module_value.php:290
-#: ../../include/lib/Dashboard/Widgets/wux_transaction.php:239
-#: ../../include/lib/Dashboard/Widgets/module_table_value.php:265
-#: ../../include/lib/Dashboard/Widgets/graph_module_histogram.php:286
-#: ../../include/lib/Dashboard/Widgets/module_status.php:306
-#: ../../include/lib/Dashboard/Widgets/single_graph.php:261
-#: ../../include/lib/Dashboard/Widgets/top_n.php:206
-#: ../../include/functions_snmp_browser.php:1625
-#: ../../operation/search_agents.php:42 ../../operation/search_agents.php:48
-#: ../../operation/agentes/alerts_status.php:541
-#: ../../operation/agentes/alerts_status.php:611
-#: ../../operation/agentes/exportdata.csv.php:74
-#: ../../operation/agentes/estado_agente.php:737
-#: ../../operation/agentes/interface_view.functions.php:480
-#: ../../operation/agentes/exportdata.php:83
-#: ../../operation/agentes/status_monitor.php:1308
-#: ../../operation/agentes/estado_monitores.php:123
-#: ../../operation/agentes/ver_agente.php:1131
-#: ../../operation/agentes/exportdata.excel.php:74
-#: ../../operation/gis_maps/ajax.php:236 ../../operation/gis_maps/ajax.php:269
-#: ../../operation/search_alerts.php:33 ../../operation/search_modules.php:32
-#: ../../operation/events/sound_events.php:162
-#: ../../operation/events/events.php:1894
-#: ../../operation/events/events.build_table.php:80
-msgid "Agent"
-msgstr ""
-
-#: ../../extensions/insert_data.php:183
-#: ../../godmode/snmpconsole/snmp_trap_generator.php:159
-#: ../../godmode/massive/massive_copy_modules.php:137
-#: ../../godmode/massive/massive_delete_modules.php:329
-#: ../../godmode/massive/massive_delete_modules.php:464
-#: ../../godmode/massive/massive_add_alerts.php:274
-#: ../../godmode/massive/massive_delete_alerts.php:265
-#: ../../godmode/massive/massive_edit_modules.php:306
-#: ../../godmode/massive/massive_edit_modules.php:419
-#: ../../godmode/alerts/alert_list.builder.php:81
-#: ../../godmode/alerts/alert_list.builder.php:155
-#: ../../godmode/setup/setup_integria.php:364
-#: ../../godmode/setup/setup_integria.php:382
-#: ../../godmode/setup/setup_integria.php:411
-#: ../../godmode/setup/setup_integria.php:429
-#: ../../godmode/setup/setup_integria.php:486
-#: ../../godmode/setup/setup_integria.php:504
-#: ../../godmode/setup/setup_integria.php:533
-#: ../../godmode/setup/setup_integria.php:551
-#: ../../include/class/AgentsAlerts.class.php:351
-#: ../../operation/incidents/configure_integriaims_incident.php:240
-#: ../../operation/incidents/configure_integriaims_incident.php:256
-#: ../../operation/incidents/configure_integriaims_incident.php:302
-#: ../../general/header.php:261
-msgid "Select"
-msgstr ""
-
-#: ../../extensions/insert_data.php:191 ../../extensions/insert_data.php:192
-#: ../../godmode/agentes/status_monitor_custom_fields.php:113
-#: ../../godmode/agentes/status_monitor_custom_fields.php:152
-#: ../../godmode/events/custom_events.php:115
-#: ../../mobile/operation/modules.php:702
-#: ../../mobile/operation/modules.php:705
-#: ../../mobile/operation/modules.php:706
-#: ../../mobile/operation/modules.php:707
-#: ../../mobile/operation/modules.php:708
-#: ../../mobile/operation/modules.php:709
-#: ../../mobile/operation/modules.php:710
-#: ../../mobile/operation/modules.php:711
-#: ../../mobile/operation/modules.php:712
-#: ../../mobile/operation/modules.php:714
-#: ../../mobile/operation/modules.php:717
-#: ../../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:840
-#: ../../include/functions_reporting_html.php:2400
-#: ../../include/functions_reporting_html.php:2404
-#: ../../include/functions_reporting_html.php:2405
-#: ../../include/functions_reporting_html.php:2409
-#: ../../include/functions_reporting_html.php:2414
-#: ../../include/functions_reporting_html.php:2419
-#: ../../include/functions_reporting_html.php:2423
-#: ../../include/functions_reporting_html.php:2428
-#: ../../include/functions_reporting_html.php:2435
-#: ../../include/functions_reporting_html.php:2484
-#: ../../include/functions_reporting_html.php:2557
-#: ../../include/ajax/module.php:982 ../../include/ajax/custom_fields.php:412
-#: ../../include/functions_graph.php:3760
-#: ../../include/functions_netflow.php:297
-#: ../../include/functions_reporting.php:3835
-#: ../../include/functions_reporting.php:3876
-#: ../../include/functions_events.php:210
-#: ../../include/functions_events.php:292
-#: ../../include/functions_events.php:6694
-#: ../../operation/agentes/exportdata.csv.php:74
-#: ../../operation/agentes/exportdata.php:83
-#: ../../operation/agentes/status_monitor.php:1357
-#: ../../operation/agentes/exportdata.excel.php:74
-#: ../../operation/search_modules.php:37
-#: ../../operation/events/events.build_table.php:330
-msgid "Data"
-msgstr ""
-
-#: ../../extensions/insert_data.php:196
-#: ../../operation/agentes/exportdata.php:378
-msgid "CSV"
-msgstr ""
-
-#: ../../extensions/insert_data.php:205 ../../godmode/setup/gis_step_2.php:518
-#: ../../godmode/setup/snmp_wizard.php:100
-#: ../../godmode/reporting/visual_console_builder.data.php:229
-#: ../../godmode/reporting/reporting_builder.main.php:45
-#: ../../operation/agentes/graphs.php:342
-msgid "Save"
-msgstr ""
-
-#: ../../extensions/insert_data.php:221
-#: ../../godmode/agentes/planned_downtime.editor.php:1477
-#: ../../godmode/alerts/configure_alert_template.php:1526
-#: ../../godmode/setup/news.php:322
-#: ../../godmode/reporting/reporting_builder.item_editor.php:4668
-#: ../../include/lib/Dashboard/Widgets/tree_view.php:683
-#: ../../operation/tree.php:560 ../../operation/agentes/stat_win.php:615
-#: ../../operation/agentes/interface_traffic_graph_win.php:434
-#: ../../operation/agentes/datos_agente.php:312
-#: ../../operation/agentes/estado_monitores.php:455
-#: ../../operation/network/network_report.php:336
-#: ../../operation/network/network_usage_map.php:184
-#: ../../operation/netflow/nf_live_view.php:740
-#: ../../operation/reporting/reporting_viewer.php:364
-#: ../../operation/reporting/reporting_viewer.php:384
-#: ../../operation/reporting/graph_viewer.php:417
-#: ../../operation/events/events_list.php:2024
-#: ../../operation/events/events.php:2726
-msgid "Choose time"
-msgstr ""
-
-#: ../../extensions/insert_data.php:222
-#: ../../godmode/agentes/planned_downtime.editor.php:1478
-#: ../../godmode/alerts/configure_alert_template.php:1527
-#: ../../godmode/setup/news.php:323
-#: ../../godmode/reporting/reporting_builder.item_editor.php:4669
-#: ../../include/lib/Dashboard/Widgets/tree_view.php:684
-#: ../../operation/tree.php:561 ../../operation/agentes/stat_win.php:616
-#: ../../operation/agentes/interface_traffic_graph_win.php:435
-#: ../../operation/agentes/datos_agente.php:313
-#: ../../operation/agentes/estado_monitores.php:456
-#: ../../operation/network/network_report.php:337
-#: ../../operation/network/network_usage_map.php:185
-#: ../../operation/netflow/nf_live_view.php:741
-#: ../../operation/reporting/reporting_viewer.php:365
-#: ../../operation/reporting/reporting_viewer.php:385
-#: ../../operation/reporting/graph_viewer.php:418
-#: ../../operation/events/events_list.php:2025
-#: ../../operation/events/events.php:2727
-msgid "Time"
-msgstr ""
-
-#: ../../extensions/insert_data.php:223
-#: ../../godmode/agentes/planned_downtime.editor.php:1479
-#: ../../godmode/alerts/configure_alert_template.php:1528
-#: ../../godmode/setup/news.php:324
-#: ../../godmode/reporting/reporting_builder.item_editor.php:4670
-#: ../../include/functions_html.php:2166
-#: ../../include/lib/Dashboard/Widgets/tree_view.php:685
-#: ../../operation/tree.php:562 ../../operation/agentes/stat_win.php:617
-#: ../../operation/agentes/interface_traffic_graph_win.php:436
-#: ../../operation/agentes/datos_agente.php:314
-#: ../../operation/agentes/estado_monitores.php:457
-#: ../../operation/network/network_report.php:338
-#: ../../operation/network/network_usage_map.php:186
-#: ../../operation/netflow/nf_live_view.php:742
-#: ../../operation/reporting/reporting_viewer.php:366
-#: ../../operation/reporting/reporting_viewer.php:386
-#: ../../operation/reporting/graph_viewer.php:419
-#: ../../operation/events/events_list.php:2026
-#: ../../operation/events/events.php:2728
-msgid "Hour"
-msgstr ""
-
-#: ../../extensions/insert_data.php:224
-#: ../../godmode/agentes/planned_downtime.editor.php:1480
-#: ../../godmode/alerts/configure_alert_template.php:1529
-#: ../../godmode/setup/news.php:325
-#: ../../godmode/reporting/reporting_builder.item_editor.php:4671
-#: ../../include/functions_html.php:2167
-#: ../../include/lib/Dashboard/Widgets/tree_view.php:686
-#: ../../operation/tree.php:563 ../../operation/agentes/stat_win.php:618
-#: ../../operation/agentes/interface_traffic_graph_win.php:437
-#: ../../operation/agentes/datos_agente.php:315
-#: ../../operation/agentes/estado_monitores.php:458
-#: ../../operation/network/network_report.php:339
-#: ../../operation/network/network_usage_map.php:187
-#: ../../operation/netflow/nf_live_view.php:743
-#: ../../operation/reporting/reporting_viewer.php:367
-#: ../../operation/reporting/reporting_viewer.php:387
-#: ../../operation/reporting/graph_viewer.php:420
-#: ../../operation/events/events_list.php:2027
-#: ../../operation/events/events.php:2729
-msgid "Minute"
-msgstr ""
-
-#: ../../extensions/insert_data.php:225
-#: ../../godmode/agentes/planned_downtime.editor.php:1481
-#: ../../godmode/alerts/configure_alert_template.php:1530
-#: ../../godmode/setup/news.php:326
-#: ../../godmode/reporting/reporting_builder.item_editor.php:4672
-#: ../../include/lib/Dashboard/Widgets/tree_view.php:687
-#: ../../operation/tree.php:564 ../../operation/agentes/stat_win.php:619
-#: ../../operation/agentes/interface_traffic_graph_win.php:438
-#: ../../operation/agentes/datos_agente.php:316
-#: ../../operation/agentes/estado_monitores.php:459
-#: ../../operation/network/network_report.php:340
-#: ../../operation/network/network_usage_map.php:188
-#: ../../operation/netflow/nf_live_view.php:744
-#: ../../operation/reporting/reporting_viewer.php:368
-#: ../../operation/reporting/reporting_viewer.php:388
-#: ../../operation/reporting/graph_viewer.php:421
-#: ../../operation/events/events_list.php:2028
-#: ../../operation/events/events.php:2730
-msgid "Second"
-msgstr ""
-
-#: ../../extensions/insert_data.php:226
-#: ../../godmode/agentes/planned_downtime.editor.php:1482
-#: ../../godmode/alerts/configure_alert_template.php:1531
-#: ../../godmode/setup/news.php:327
-#: ../../godmode/reporting/reporting_builder.item_editor.php:4673
-#: ../../include/functions.php:505 ../../include/functions.php:635
-#: ../../include/lib/Dashboard/Widgets/tree_view.php:688
-#: ../../operation/tree.php:565 ../../operation/agentes/stat_win.php:620
-#: ../../operation/agentes/interface_traffic_graph_win.php:439
-#: ../../operation/agentes/datos_agente.php:317
-#: ../../operation/agentes/estado_monitores.php:460
-#: ../../operation/network/network_report.php:341
-#: ../../operation/network/network_usage_map.php:189
-#: ../../operation/netflow/nf_live_view.php:745
-#: ../../operation/reporting/reporting_viewer.php:369
-#: ../../operation/reporting/reporting_viewer.php:389
-#: ../../operation/reporting/graph_viewer.php:422
-#: ../../operation/events/events_list.php:2029
-#: ../../operation/events/events.php:2731
-msgid "Now"
-msgstr ""
-
-#: ../../extensions/insert_data.php:227
-#: ../../godmode/agentes/planned_downtime.editor.php:1483
-#: ../../godmode/alerts/configure_alert_template.php:1532
-#: ../../godmode/setup/news.php:328
-#: ../../godmode/reporting/reporting_builder.item_editor.php:4674
-#: ../../godmode/wizards/HostDevices.class.php:796
-#: ../../mobile/include/ui.class.php:685 ../../mobile/include/ui.class.php:743
-#: ../../include/class/WelcomeWindow.class.php:159
-#: ../../include/lib/Dashboard/Widgets/tree_view.php:689
-#: ../../include/functions_snmp_browser.php:600 ../../operation/tree.php:566
-#: ../../operation/agentes/stat_win.php:621
-#: ../../operation/agentes/interface_traffic_graph_win.php:440
-#: ../../operation/agentes/datos_agente.php:318
-#: ../../operation/agentes/estado_monitores.php:461
-#: ../../operation/network/network_report.php:342
-#: ../../operation/network/network_usage_map.php:190
-#: ../../operation/netflow/nf_live_view.php:746
-#: ../../operation/reporting/reporting_viewer.php:370
-#: ../../operation/reporting/reporting_viewer.php:390
-#: ../../operation/reporting/graph_viewer.php:423
-#: ../../operation/events/events_list.php:2030
-#: ../../operation/events/events.php:2732
-msgid "Close"
-msgstr ""
-
-#: ../../extensions/insert_data.php:270
-msgid "Insert Data"
-msgstr ""
-
-#: ../../extensions/realtime_graphs.php:58
-#: ../../extensions/realtime_graphs.php:267
-msgid "Realtime graphs"
-msgstr ""
-
-#: ../../extensions/realtime_graphs.php:133
-#, php-format
-msgid "%s Server CPU"
-msgstr ""
-
-#: ../../extensions/realtime_graphs.php:135
-#, php-format
-msgid "Pending packages from %s Server"
-msgstr ""
-
-#: ../../extensions/realtime_graphs.php:139
-#, php-format
-msgid "%s Server Disk IO Wait"
-msgstr ""
-
-#: ../../extensions/realtime_graphs.php:143
-#, php-format
-msgid "%s Server Apache load"
-msgstr ""
-
-#: ../../extensions/realtime_graphs.php:147
-#, php-format
-msgid "%s Server MySQL load"
-msgstr ""
-
-#: ../../extensions/realtime_graphs.php:151
-#, php-format
-msgid "%s Server load"
-msgstr ""
-
-#: ../../extensions/realtime_graphs.php:154
-msgid "SNMP Interface throughput"
-msgstr ""
-
-#: ../../extensions/realtime_graphs.php:160
-#: ../../godmode/agentes/status_monitor_custom_fields.php:105
-#: ../../godmode/agentes/status_monitor_custom_fields.php:150
-#: ../../include/functions_visual_map_editor.php:58
-#: ../../include/ajax/module.php:983
-#: ../../include/class/NetworkMap.class.php:2898
-#: ../../include/lib/Dashboard/Widgets/custom_graph.php:303
-#: ../../include/functions_events.php:4505
-#: ../../operation/agentes/status_monitor.php:1347
-#: ../../operation/search_modules.php:36
-msgid "Graph"
-msgstr ""
-
-#: ../../extensions/realtime_graphs.php:205
-msgid "Refresh interval"
-msgstr ""
-
-#: ../../extensions/realtime_graphs.php:216
-#: ../../godmode/modules/manage_network_components_form_wizard.php:132
-msgid "Incremental"
-msgstr ""
-
-#: ../../extensions/realtime_graphs.php:221
-msgid "Clear graph"
-msgstr ""
-
-#: ../../extensions/realtime_graphs.php:248
-#: ../../godmode/agentes/module_manager_editor_network.php:43
-msgid "Use this OID"
-msgstr ""
-
-#: ../../extensions/users_connected.php:37
-#: ../../extensions/users_connected.php:209
-msgid "Users connected"
-msgstr ""
-
-#: ../../extensions/users_connected.php:42
-msgid "This user does not have any associated profile"
-msgstr ""
-
-#: ../../extensions/users_connected.php:132
-msgid "No other users connected"
-msgstr ""
-
-#: ../../extensions/users_connected.php:145
-msgid "Last login"
-msgstr ""
-
-#: ../../extensions/users_connected.php:146
-#: ../../godmode/users/user_list.php:459
-#: ../../godmode/agentes/planned_downtime.editor.php:906
-#: ../../mobile/operation/agents.php:81 ../../mobile/operation/agents.php:398
-#: ../../mobile/operation/agents.php:400 ../../mobile/operation/agents.php:403
-#: ../../mobile/operation/agent.php:174 ../../include/ajax/module.php:984
-#: ../../include/functions_treeview.php:668
-#: ../../include/functions_events.php:4420 ../../operation/search_users.php:45
-#: ../../operation/search_agents.php:58
-#: ../../operation/agentes/log_sources_status.php:58
-#: ../../operation/agentes/estado_agente.php:767
-#: ../../operation/agentes/ver_agente.php:990
-#: ../../operation/agentes/estado_generalagente.php:343
-#: ../../operation/gis_maps/ajax.php:239 ../../operation/gis_maps/ajax.php:349
-#: ../../operation/gis_maps/ajax.php:466
-msgid "Last contact"
-msgstr ""
-
-#: ../../godmode/modules/manage_nc_groups_form.php:54
-msgid "Update Group Component"
-msgstr ""
-
-#: ../../godmode/modules/manage_nc_groups_form.php:56
-msgid "Create Group Component"
-msgstr ""
-
-#: ../../godmode/modules/manage_nc_groups_form.php:71
-#: ../../godmode/groups/configure_group.php:167
-#: ../../godmode/groups/group_list.php:845
-#: ../../godmode/agentes/agent_manager.php:633
-#: ../../godmode/massive/massive_edit_agents.php:558
-#: ../../godmode/reporting/visual_console_builder.elements.php:108
-#: ../../include/functions_visual_map_editor.php:956
-#: ../../include/rest-api/models/VisualConsole/Item.php:2144
-#: ../../operation/agentes/ver_agente.php:1180
-#: ../../operation/agentes/estado_generalagente.php:406
-msgid "Parent"
-msgstr ""
-
-#: ../../godmode/modules/manage_nc_groups_form.php:77
-#: ../../godmode/modules/manage_network_components_form_plugin.php:41
-#: ../../godmode/modules/manage_network_components_form_common.php:341
-#: ../../godmode/modules/manage_network_components_form_network.php:248
-#: ../../godmode/modules/manage_network_components_form.php:642
-#: ../../godmode/modules/manage_network_components_form.php:648
-#: ../../godmode/modules/manage_network_components_form.php:657
-#: ../../godmode/modules/manage_network_components_form.php:663
-#: ../../godmode/groups/configure_group.php:185
-#: ../../godmode/groups/configure_group.php:207
-#: ../../godmode/users/configure_user.php:1050
-#: ../../godmode/users/configure_user.php:1064
-#: ../../godmode/users/configure_user.php:1241
-#: ../../godmode/users/configure_user.php:1253
-#: ../../godmode/agentes/status_monitor_custom_fields.php:218
-#: ../../godmode/agentes/status_monitor_custom_fields.php:266
-#: ../../godmode/agentes/module_manager_editor_plugin.php:55
-#: ../../godmode/agentes/module_manager_editor_network.php:465
-#: ../../godmode/agentes/agent_manager.php:422
-#: ../../godmode/agentes/agent_manager.php:781
-#: ../../godmode/agentes/agent_manager.php:951
-#: ../../godmode/agentes/agent_manager.php:1220
-#: ../../godmode/agentes/module_manager_editor_common.php:733
-#: ../../godmode/agentes/module_manager_editor_common.php:1149
-#: ../../godmode/agentes/module_manager_editor_common.php:1405
-#: ../../godmode/agentes/module_manager_editor_common.php:1419
-#: ../../godmode/snmpconsole/snmp_alert.php:27
-#: ../../godmode/snmpconsole/snmp_alert.php:1048
-#: ../../godmode/massive/massive_copy_modules.php:373
-#: ../../godmode/massive/massive_copy_modules.php:507
-#: ../../godmode/massive/massive_delete_modules.php:497
-#: ../../godmode/massive/massive_delete_modules.php:589
-#: ../../godmode/massive/massive_delete_modules.php:674
-#: ../../godmode/massive/massive_delete_modules.php:722
-#: ../../godmode/massive/massive_delete_modules.php:730
-#: ../../godmode/massive/massive_delete_modules.php:731
-#: ../../godmode/massive/massive_delete_modules.php:732
-#: ../../godmode/massive/massive_delete_modules.php:733
-#: ../../godmode/massive/massive_delete_modules.php:799
-#: ../../godmode/massive/massive_delete_modules.php:829
-#: ../../godmode/massive/massive_add_alerts.php:292
-#: ../../godmode/massive/massive_edit_plugins.php:331
-#: ../../godmode/massive/massive_edit_agents.php:631
-#: ../../godmode/massive/massive_delete_alerts.php:347
-#: ../../godmode/massive/massive_add_action_alerts.php:335
-#: ../../godmode/massive/massive_edit_modules.php:446
-#: ../../godmode/massive/massive_edit_modules.php:907
-#: ../../godmode/massive/massive_edit_modules.php:1041
-#: ../../godmode/massive/massive_edit_modules.php:1157
-#: ../../godmode/massive/massive_edit_modules.php:1192
-#: ../../godmode/massive/massive_edit_modules.php:1247
-#: ../../godmode/massive/massive_edit_modules.php:1333
-#: ../../godmode/massive/massive_edit_modules.php:1405
-#: ../../godmode/massive/massive_edit_modules.php:1514
-#: ../../godmode/massive/massive_edit_modules.php:1515
-#: ../../godmode/massive/massive_edit_modules.php:1516
-#: ../../godmode/massive/massive_edit_modules.php:1517
-#: ../../godmode/massive/massive_edit_modules.php:1756
-#: ../../godmode/massive/massive_edit_modules.php:1816
-#: ../../godmode/alerts/alert_actions.php:297
-#: ../../godmode/alerts/alert_list.list.php:745
-#: ../../godmode/alerts/alert_commands.php:302
-#: ../../godmode/alerts/alert_commands.php:316
-#: ../../godmode/alerts/alert_commands.php:376
-#: ../../godmode/alerts/alert_commands.php:389
-#: ../../godmode/alerts/configure_alert_action.php:261
-#: ../../godmode/alerts/configure_alert_template.php:701
-#: ../../godmode/alerts/configure_alert_template.php:854
-#: ../../godmode/alerts/configure_alert_template.php:875
-#: ../../godmode/setup/os.builder.php:38
-#: ../../godmode/setup/setup_visuals.php:397
-#: ../../godmode/setup/setup_visuals.php:416
-#: ../../godmode/setup/setup_visuals.php:946
-#: ../../godmode/reporting/create_container.php:489
-#: ../../godmode/reporting/graph_builder.graph_editor.php:329
-#: ../../godmode/reporting/reporting_builder.item_editor.php:190
-#: ../../godmode/reporting/reporting_builder.item_editor.php:889
-#: ../../godmode/reporting/reporting_builder.item_editor.php:1981
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2054
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2075
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2107
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2954
-#: ../../godmode/reporting/reporting_builder.item_editor.php:3115
-#: ../../godmode/reporting/visual_console_builder.elements.php:482
-#: ../../godmode/reporting/visual_console_builder.elements.php:633
-#: ../../godmode/reporting/visual_console_builder.elements.php:643
-#: ../../godmode/reporting/visual_console_builder.wizard.php:266
-#: ../../godmode/reporting/visual_console_builder.wizard.php:438
-#: ../../godmode/reporting/visual_console_builder.wizard.php:451
-#: ../../godmode/reporting/visual_console_builder.wizard.php:485
-#: ../../godmode/reporting/visual_console_builder.wizard.php:498
-#: ../../godmode/reporting/visual_console_builder.wizard.php:537
-#: ../../godmode/reporting/visual_console_builder.wizard.php:732
-#: ../../godmode/reporting/visual_console_builder.wizard.php:742
-#: ../../godmode/reporting/visual_console_builder.wizard.php:774
-#: ../../godmode/events/event_edit_filter.php:671
-#: ../../godmode/events/custom_events.php:180
-#: ../../godmode/events/custom_events.php:228
-#: ../../godmode/wizards/HostDevices.class.php:1098
-#: ../../mobile/operation/events.php:638
-#: ../../include/functions_visual_map_editor.php:404
-#: ../../include/functions_visual_map_editor.php:406
-#: ../../include/functions_visual_map_editor.php:622
-#: ../../include/functions_visual_map_editor.php:957
-#: ../../include/functions_visual_map_editor.php:1010
-#: ../../include/functions_visual_map_editor.php:1072
-#: ../../include/functions.php:1072 ../../include/functions_cron.php:594
-#: ../../include/functions_networkmap.php:1519
-#: ../../include/ajax/planned_downtime.ajax.php:85
-#: ../../include/ajax/custom_fields.php:668 ../../include/ajax/events.php:486
-#: ../../include/functions_integriaims.php:135
-#: ../../include/functions_profile.php:297
-#: ../../include/functions_profile.php:315
-#: ../../include/functions_profile.php:330
-#: ../../include/rest-api/models/VisualConsole/Items/BasicChart.php:318
-#: ../../include/rest-api/models/VisualConsole/Items/SimpleValue.php:364
-#: ../../include/rest-api/models/VisualConsole/Items/SimpleValue.php:399
-#: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:632
-#: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:644
-#: ../../include/rest-api/models/VisualConsole/Item.php:2056
-#: ../../include/rest-api/models/VisualConsole/Item.php:2175
-#: ../../include/rest-api/models/VisualConsole/Item.php:2288
-#: ../../include/rest-api/models/VisualConsole/Item.php:2410
-#: ../../include/functions_html.php:366 ../../include/functions_html.php:806
-#: ../../include/functions_html.php:1144 ../../include/functions_html.php:1196
-#: ../../include/functions_html.php:1243 ../../include/functions_html.php:1244
-#: ../../include/functions_html.php:1297 ../../include/functions_html.php:1347
-#: ../../include/functions_html.php:4454
-#: ../../include/class/NetworkMap.class.php:2779
-#: ../../include/class/NetworkMap.class.php:3014
-#: ../../include/class/NetworkMap.class.php:3037
-#: ../../include/class/NetworkMap.class.php:3109
-#: ../../include/class/NetworkMap.class.php:3119
-#: ../../include/class/NetworkMap.class.php:3204
-#: ../../include/class/NetworkMap.class.php:3220
-#: ../../include/lib/Dashboard/Widgets/sla_percent.php:336
-#: ../../include/lib/Dashboard/Widgets/events_list.php:301
-#: ../../include/lib/Dashboard/Widgets/events_list.php:459
-#: ../../include/lib/Dashboard/Widgets/graph_module_histogram.php:326
-#: ../../include/lib/Dashboard/Widgets/service_map.php:266
-#: ../../include/lib/Dashboard/Widgets/service_map.php:294
-#: ../../include/lib/Dashboard/Widgets/maps_made_by_user.php:586
-#: ../../include/lib/Dashboard/Widgets/custom_graph.php:355
-#: ../../include/lib/Dashboard/Widgets/single_graph.php:311
-#: ../../include/lib/Dashboard/Widgets/reports.php:490
-#: ../../include/lib/Dashboard/Widgets/top_n.php:241
-#: ../../include/functions_events.php:3576
-#: ../../include/functions_events.php:3592
-#: ../../operation/users/user_edit.php:401
-#: ../../operation/users/user_edit.php:413
-#: ../../operation/users/user_edit.php:454
-#: ../../operation/users/user_edit.php:490
-#: ../../operation/users/user_edit.php:504
-#: ../../operation/users/user_edit.php:897
-#: ../../operation/users/user_edit.php:904
-#: ../../operation/users/user_edit.php:913
-#: ../../operation/users/user_edit.php:920
-#: ../../operation/agentes/pandora_networkmap.editor.php:349
-#: ../../operation/agentes/pandora_networkmap.view.php:174
-#: ../../operation/agentes/ver_agente.php:1126
-#: ../../operation/agentes/ver_agente.php:1182
-#: ../../operation/agentes/ver_agente.php:1197
-#: ../../operation/snmpconsole/snmp_browser.php:386
-#: ../../operation/snmpconsole/snmp_browser.php:401
-#: ../../operation/snmpconsole/snmp_browser.php:411
-#: ../../operation/snmpconsole/snmp_browser.php:530
-#: ../../operation/snmpconsole/snmp_view.php:630
-#: ../../operation/snmpconsole/snmp_view.php:1114
-#: ../../operation/snmpconsole/snmp_view.php:1125
-#: ../../operation/gis_maps/render_view.php:160
-#: ../../operation/incidents/list_integriaims_incidents.php:530
-#: ../../operation/incidents/list_integriaims_incidents.php:534
-#: ../../operation/events/events_list.php:526
-#: ../../operation/events/events_list.php:1279
-#: ../../operation/events/events.php:1853
-msgid "None"
-msgstr ""
-
-#: ../../godmode/modules/manage_network_templates_form.php:32
-#: ../../godmode/modules/manage_nc_groups.php:40
-#: ../../godmode/modules/manage_network_components.php:290
-#: ../../godmode/modules/module_list.php:26
-#: ../../godmode/modules/manage_network_templates.php:39
-msgid "Module management"
-msgstr ""
-
-#: ../../godmode/modules/manage_network_templates_form.php:32
-#: ../../godmode/modules/manage_network_templates.php:39
-#: ../../include/class/ModuleTemplates.class.php:199
-#: ../../include/class/ModuleTemplates.class.php:217
-#: ../../include/class/ModuleTemplates.class.php:227
-msgid "Module template management"
-msgstr ""
-
-#: ../../godmode/modules/manage_network_templates_form.php:59
-msgid "Successfully deleted module from profile"
-msgstr ""
-
-#: ../../godmode/modules/manage_network_templates_form.php:60
-msgid "Error deleting module from profile"
-msgstr ""
-
-#: ../../godmode/modules/manage_network_templates_form.php:79
-msgid "Successfully added module to profile"
-msgstr ""
-
-#: ../../godmode/modules/manage_network_templates_form.php:80
-msgid "Error adding module to profile"
-msgstr ""
-
-#: ../../godmode/modules/manage_network_templates_form.php:107
-msgid "Successfully updated network profile"
-msgstr ""
-
-#: ../../godmode/modules/manage_network_templates_form.php:108
-msgid "Error updating network profile"
-msgstr ""
-
-#: ../../godmode/modules/manage_network_templates_form.php:126
-msgid "Successfully added network profile"
-msgstr ""
-
-#: ../../godmode/modules/manage_network_templates_form.php:127
-msgid "Error adding network profile"
-msgstr ""
-
-#: ../../godmode/modules/manage_network_templates_form.php:133
-msgid "Cannot create a template without name"
-msgstr ""
-
-#: ../../godmode/modules/manage_network_templates_form.php:207
-msgid "No modules for this profile"
-msgstr ""
-
-#: ../../godmode/modules/manage_network_templates_form.php:219
-#: ../../godmode/modules/manage_network_components.php:755
-#: ../../godmode/modules/manage_network_components_form_wizard.php:268
-#: ../../godmode/agentes/agent_template.php:235
-#: ../../godmode/agentes/status_monitor_custom_fields.php:85
-#: ../../godmode/agentes/status_monitor_custom_fields.php:145
-#: ../../godmode/alerts/alert_list.list.php:89
-#: ../../mobile/operation/modules.php:581
-#: ../../mobile/operation/modules.php:835 ../../include/ajax/module.php:978
-#: ../../include/ajax/custom_fields.php:411
-#: ../../operation/agentes/status_monitor.php:545
-#: ../../operation/agentes/status_monitor.php:1319
-msgid "Module name"
-msgstr ""
-
-#: ../../godmode/modules/manage_network_templates_form.php:220
-#: ../../godmode/modules/manage_network_components_form_common.php:62
-#: ../../godmode/modules/manage_network_components.php:757
-#: ../../godmode/agentes/agent_template.php:236
-#: ../../godmode/agentes/modificar_agente.php:652
-#: ../../godmode/agentes/planned_downtime.list.php:401
-#: ../../godmode/agentes/planned_downtime.editor.php:571
-#: ../../godmode/agentes/module_manager_editor_common.php:288
-#: ../../godmode/agentes/module_manager_editor_common.php:401
-#: ../../godmode/agentes/module_manager_editor_common.php:1305
-#: ../../godmode/agentes/module_manager.php:850
-#: ../../godmode/alerts/alert_templates.php:37
-#: ../../godmode/alerts/alert_templates.php:307
-#: ../../godmode/alerts/alert_templates.php:391
-#: ../../godmode/setup/news.php:247 ../../godmode/setup/gis_step_2.php:232
-#: ../../godmode/setup/setup_integria.php:405
-#: ../../godmode/setup/setup_integria.php:527
-#: ../../godmode/reporting/reporting_builder.list_items.php:212
-#: ../../godmode/reporting/reporting_builder.list_items.php:249
-#: ../../godmode/reporting/reporting_builder.list_items.php:372
-#: ../../godmode/reporting/reporting_builder.item_editor.php:964
-#: ../../godmode/reporting/visual_console_builder.wizard.php:135
-#: ../../godmode/reporting/visual_console_builder.wizard.php:283
-#: ../../godmode/events/event_responses.editor.php:157
-#: ../../godmode/servers/servers.build_table.php:67
-#: ../../godmode/servers/modificar_server.php:70
-#: ../../godmode/servers/plugin.php:815
-#: ../../mobile/operation/visualmaps.php:118
-#: ../../mobile/operation/visualmaps.php:119
-#: ../../mobile/operation/events.php:377 ../../mobile/operation/events.php:378
-#: ../../mobile/operation/events.php:524 ../../mobile/operation/events.php:680
-#: ../../mobile/operation/events.php:681
-#: ../../include/functions_visual_map_editor.php:702
-#: ../../include/functions_visual_map_editor.php:720
-#: ../../include/functions_visual_map_editor.php:848
-#: ../../include/functions_reporting_html.php:1040
-#: ../../include/functions_reporting_html.php:1048
-#: ../../include/functions_reporting_html.php:1260
-#: ../../include/functions_reporting_html.php:1268
-#: ../../include/functions_reporting_html.php:2219
-#: ../../include/functions_reporting_html.php:3211
-#: ../../include/functions_reporting_html.php:4977
-#: ../../include/ajax/module.php:977
-#: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:467
-#: ../../include/class/ModuleTemplates.class.php:1209
-#: ../../include/class/CalendarManager.class.php:977
-#: ../../include/class/CalendarManager.class.php:1011
-#: ../../include/class/AgentWizard.class.php:1187
-#: ../../include/class/AgentWizard.class.php:3972
-#: ../../include/lib/Dashboard/Widgets/service_view.php:251
-#: ../../include/lib/Dashboard/Widgets/custom_graph.php:327
-#: ../../include/lib/Dashboard/Widgets/clock.php:221
-#: ../../include/functions_snmp_browser.php:564
-#: ../../include/functions_events.php:2564
-#: ../../include/functions_events.php:4948
-#: ../../operation/agentes/estado_agente.php:755
-#: ../../operation/agentes/ver_agente.php:1115
-#: ../../operation/netflow/nf_live_view.php:311
-#: ../../operation/incidents/configure_integriaims_incident.php:234
-#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:326
-#: ../../operation/search_modules.php:33
-#: ../../operation/events/sound_events.php:124
-msgid "Type"
-msgstr ""
-
-#: ../../godmode/modules/manage_network_templates_form.php:248
-#: ../../operation/snmpconsole/snmp_browser.php:152
-#: ../../operation/snmpconsole/snmp_browser.php:172
-msgid "Add modules"
-msgstr ""
-
-#: ../../godmode/modules/manage_network_templates_form.php:265
-#: ../../godmode/modules/manage_network_templates_form.php:325
-#: ../../godmode/agentes/module_manager.php:83
-#: ../../godmode/netflow/nf_item_list.php:174
-#: ../../godmode/snmpconsole/snmp_alert.php:1055
-#: ../../godmode/snmpconsole/snmp_filters.php:203
-#: ../../godmode/snmpconsole/snmp_filters.php:290
-#: ../../godmode/reporting/reporting_builder.list_items.php:217
-#: ../../godmode/reporting/reporting_builder.list_items.php:261
-#: ../../godmode/reporting/reporting_builder.item_editor.php:1029
-#: ../../godmode/tag/tag.php:222 ../../include/functions_ui.php:3361
-#: ../../include/functions_ui.php:3380 ../../include/functions_ui.php:3391
-#: ../../include/class/ModuleTemplates.class.php:765
-#: ../../operation/tree.php:254 ../../operation/agentes/graphs.php:265
-#: ../../operation/agentes/estado_monitores.php:594
-#: ../../operation/agentes/alerts_status.functions.php:137
-#: ../../operation/agentes/alerts_status.functions.php:146
-#: ../../operation/netflow/nf_live_view.php:383
-#: ../../operation/incidents/list_integriaims_incidents.php:435
-#: ../../operation/incidents/list_integriaims_incidents.php:439
-msgid "Filter"
-msgstr ""
-
-#: ../../godmode/modules/manage_network_templates_form.php:329
-#: ../../include/class/ModuleTemplates.class.php:804
-msgid "Components"
-msgstr ""
-
-#: ../../godmode/modules/manage_network_components_form_plugin.php:35
-#: ../../godmode/agentes/module_manager_editor_plugin.php:49
-#: ../../godmode/massive/massive_edit_plugins.php:339
-#: ../../godmode/massive/massive_edit_modules.php:1151
-#: ../../godmode/servers/plugin_registration.php:503
-msgid "Plugin"
-msgstr ""
-
-#: ../../godmode/modules/manage_network_components_form_plugin.php:49
-#: ../../godmode/modules/manage_network_components_form_network.php:178
-#: ../../godmode/modules/manage_network_components_form_wmi.php:55
-#: ../../godmode/agentes/module_manager_editor_common.php:649
-#: ../../godmode/massive/massive_edit_modules.php:768
-#: ../../godmode/setup/snmp_wizard.php:43
-msgid "Post process"
-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:1356
-#: ../../godmode/alerts/alert_list.builder.php:292
-#: ../../include/functions.php:2696
-#: ../../include/class/AgentWizard.class.php:2445
-msgid "Empty"
-msgstr ""
-
-#: ../../godmode/modules/manage_nc_groups.php:40
-msgid "Component group management"
-msgstr ""
-
-#: ../../godmode/modules/manage_nc_groups.php:64
-msgid "Could not be created. Blank name"
-msgstr ""
-
-#: ../../godmode/modules/manage_nc_groups.php:83
-#: ../../godmode/users/profile_list.php:269
-#: ../../godmode/users/configure_user.php:462
-#: ../../godmode/agentes/configurar_agente.php:893
-#: ../../godmode/agentes/planned_downtime.editor.php:415
-#: ../../godmode/snmpconsole/snmp_alert.php:277
-#: ../../godmode/snmpconsole/snmp_filters.php:164
-#: ../../godmode/alerts/alert_commands.php:561
-#: ../../godmode/alerts/configure_alert_template.php:522
-#: ../../godmode/alerts/alert_list.php:178 ../../godmode/setup/news.php:66
-#: ../../godmode/setup/gis.php:44 ../../godmode/setup/links.php:41
-#: ../../include/functions_alerts.php:2766
-#: ../../include/class/CalendarManager.class.php:490
-#: ../../include/class/CalendarManager.class.php:843
-#: ../../include/functions_planned_downtimes.php:114
-#: ../../include/functions_planned_downtimes.php:832
-msgid "Successfully created"
-msgstr ""
-
-#: ../../godmode/modules/manage_nc_groups.php:84
-#: ../../godmode/modules/manage_network_components.php:199
-#: ../../godmode/modules/manage_network_components.php:427
-#: ../../godmode/users/configure_user.php:463
-#: ../../godmode/agentes/configurar_agente.php:363
-#: ../../godmode/agentes/configurar_agente.php:888
-#: ../../godmode/agentes/planned_downtime.editor.php:405
-#: ../../godmode/alerts/alert_commands.php:548
-#: ../../godmode/alerts/configure_alert_template.php:164
-#: ../../godmode/alerts/configure_alert_template.php:513
-#: ../../godmode/alerts/alert_list.php:165 ../../godmode/setup/news.php:67
-#: ../../godmode/setup/gis.php:46
-#: ../../godmode/reporting/reporting_builder.item_editor.php:5516
-#: ../../include/functions_alerts.php:2767
-#: ../../include/functions_planned_downtimes.php:112
-#: ../../include/functions_planned_downtimes.php:827
-#: ../../operation/agentes/pandora_networkmap.php:140
-#: ../../operation/agentes/pandora_networkmap.php:375
-msgid "Could not be created"
-msgstr ""
-
-#: ../../godmode/modules/manage_nc_groups.php:94
-#: ../../godmode/netflow/nf_edit_form.php:118
-#: ../../godmode/events/event_edit_filter.php:199
-msgid "Not updated. Blank name"
-msgstr ""
-
-#: ../../godmode/modules/manage_nc_groups.php:112
-#: ../../godmode/users/profile_list.php:252
-#: ../../godmode/agentes/status_monitor_custom_fields.php:57
-#: ../../godmode/agentes/configurar_agente.php:1244
-#: ../../godmode/agentes/planned_downtime.editor.php:417
-#: ../../godmode/netflow/nf_edit_form.php:139
-#: ../../godmode/snmpconsole/snmp_alert.php:407
-#: ../../godmode/snmpconsole/snmp_filters.php:110
-#: ../../godmode/massive/massive_edit_modules.php:184
-#: ../../godmode/alerts/configure_alert_command.php:120
-#: ../../godmode/alerts/alert_templates.php:161
-#: ../../godmode/alerts/configure_alert_template.php:540
-#: ../../godmode/alerts/alert_list.php:94
-#: ../../godmode/alerts/alert_list.php:300 ../../godmode/setup/news.php:107
-#: ../../godmode/setup/gis.php:36 ../../godmode/setup/links.php:60
-#: ../../godmode/events/event_edit_filter.php:209
-#: ../../include/functions_alerts.php:2766
-#: ../../include/class/CalendarManager.class.php:487
-#: ../../include/class/CalendarManager.class.php:840
-#: ../../include/functions_planned_downtimes.php:124
-#: ../../operation/snmpconsole/snmp_view.php:174
-msgid "Successfully updated"
-msgstr ""
-
-#: ../../godmode/modules/manage_nc_groups.php:113
-#: ../../godmode/netflow/nf_edit_form.php:140 ../../godmode/setup/news.php:108
-#: ../../godmode/events/event_edit_filter.php:210
-msgid "Not updated. Error updating data"
-msgstr ""
-
-#: ../../godmode/modules/manage_nc_groups.php:143
-#: ../../godmode/agentes/planned_downtime.list.php:113
-#: ../../godmode/netflow/nf_item_list.php:121
-#: ../../godmode/netflow/nf_item_list.php:149
-#: ../../godmode/netflow/nf_edit.php:105 ../../godmode/netflow/nf_edit.php:138
-#: ../../godmode/reporting/map_builder.php:213
-#: ../../godmode/reporting/graphs.php:152
-#: ../../godmode/reporting/graphs.php:163
-#: ../../godmode/reporting/graphs.php:204
-#: ../../godmode/events/event_filter.php:70
-#: ../../godmode/events/event_filter.php:97
-#: ../../operation/reporting/graph_viewer.php:59
-#: ../../operation/reporting/graph_viewer.php:67
-msgid "Not deleted. Error deleting data"
-msgstr ""
-
-#: ../../godmode/modules/manage_nc_groups.php:185
-#: ../../godmode/modules/manage_network_components.php:584
-#: ../../godmode/modules/manage_network_templates.php:102
-msgid "Successfully multiple deleted"
-msgstr ""
-
-#: ../../godmode/modules/manage_nc_groups.php:186
-#: ../../godmode/modules/manage_network_components.php:585
-#: ../../godmode/modules/manage_network_templates.php:103
-msgid "Not deleted. Error deleting multiple data"
-msgstr ""
-
-#: ../../godmode/modules/manage_nc_groups.php:234
-#: ../../godmode/modules/manage_network_components.php:762
-#: ../../godmode/modules/manage_network_templates.php:236
-#: ../../godmode/agentes/agent_template.php:238
-#: ../../godmode/agentes/planned_downtime.editor.php:991
-#: ../../godmode/agentes/module_manager.php:867
-#: ../../godmode/netflow/nf_item_list.php:178
-#: ../../godmode/netflow/nf_edit.php:161
-#: ../../godmode/snmpconsole/snmp_alert.php:1208
-#: ../../godmode/snmpconsole/snmp_alert.php:1332
-#: ../../godmode/snmpconsole/snmp_filters.php:291
-#: ../../godmode/massive/massive_operations.php:426
-#: ../../godmode/massive/massive_standby_alerts.php:226
-#: ../../godmode/massive/massive_delete_action_alerts.php:258
-#: ../../godmode/massive/massive_enable_disable_alerts.php:214
-#: ../../godmode/massive/massive_add_action_alerts.php:242
-#: ../../godmode/alerts/alert_list.list.php:742
-#: ../../godmode/alerts/alert_view.php:419
-#: ../../godmode/reporting/reporting_builder.item_editor.php:3728
-#: ../../godmode/reporting/reporting_builder.item_editor.php:4138
-#: ../../godmode/reporting/reporting_builder.item_editor.php:4159
-#: ../../godmode/reporting/visual_console_builder.elements.php:118
-#: ../../godmode/events/event_filter.php:141
-#: ../../mobile/operation/tactical.php:347
-#: ../../include/functions_reporting_html.php:2958
-#: ../../include/functions_reporting_html.php:5499
-#: ../../include/functions.php:3036 ../../include/ajax/alert_list.ajax.php:280
-#: ../../include/ajax/alert_list.ajax.php:305
-#: ../../include/ajax/alert_list.ajax.php:481
-#: ../../include/functions_profile.php:217
-#: ../../include/class/AgentsAlerts.class.php:901
-#: ../../include/class/AuditLog.class.php:109
-#: ../../include/class/AuditLog.class.php:201
-#: ../../include/class/ModuleTemplates.class.php:894
-#: ../../include/functions_events.php:6706
-#: ../../include/functions_ui_renders.php:117
-#: ../../operation/agentes/alerts_status.php:544
-#: ../../operation/agentes/alerts_status.php:579
-#: ../../operation/agentes/alerts_status.php:614
-#: ../../operation/agentes/alerts_status.php:646
-#: ../../operation/agentes/alerts_status.functions.php:126
-#: ../../operation/snmpconsole/snmp_view.php:891
-#: ../../operation/snmpconsole/snmp_view.php:1266
-#: ../../operation/search_alerts.php:36
-#: ../../operation/events/events.build_table.php:362
-#: ../../general/logon_ok.php:248
-msgid "Action"
-msgstr ""
-
-#: ../../godmode/modules/manage_nc_groups.php:284
-#, php-format
-msgid ""
-"This node is configured with centralized mode. Component groups are read "
-"only. Go to %s to manage it."
-msgstr ""
-
-#: ../../godmode/modules/manage_nc_groups.php:302
-msgid "There are no defined component groups"
-msgstr ""
-
-#: ../../godmode/modules/manage_network_components_form_common.php:48
-#: ../../godmode/alerts/configure_alert_template.php:1207
-msgid "Wizard level"
-msgstr ""
-
-#: ../../godmode/modules/manage_network_components_form_common.php:50
-#: ../../godmode/users/configure_user.php:1187
-#: ../../godmode/alerts/alert_commands.php:141
-#: ../../godmode/alerts/alert_commands.php:182
-#: ../../godmode/alerts/configure_alert_template.php:1010
-#: ../../godmode/alerts/configure_alert_template.php:1051
-#: ../../godmode/alerts/configure_alert_template.php:1210
-msgid "Basic"
-msgstr ""
-
-#: ../../godmode/modules/manage_network_components_form_common.php:51
-#: ../../godmode/users/configure_user.php:1188
-#: ../../godmode/netflow/nf_edit_form.php:236
-#: ../../godmode/alerts/alert_commands.php:157
-#: ../../godmode/alerts/alert_commands.php:194
-#: ../../godmode/alerts/configure_alert_template.php:1023
-#: ../../godmode/alerts/configure_alert_template.php:1064
-#: ../../godmode/alerts/configure_alert_template.php:1211
-#: ../../operation/netflow/nf_live_view.php:482
-msgid "Advanced"
-msgstr ""
-
-#: ../../godmode/modules/manage_network_components_form_common.php:141
-#: ../../godmode/agentes/status_monitor_custom_fields.php:93
-#: ../../godmode/agentes/status_monitor_custom_fields.php:147
-#: ../../godmode/agentes/agent_manager.php:363
-#: ../../godmode/agentes/module_manager_editor_common.php:617
-#: ../../godmode/agentes/module_manager_editor_common.php:642
-#: ../../godmode/agentes/module_manager.php:856
-#: ../../godmode/massive/massive_edit_agents.php:606
-#: ../../godmode/massive/massive_edit_modules.php:742
-#: ../../godmode/wizards/HostDevices.class.php:798
-#: ../../godmode/wizards/DiscoveryTaskList.class.php:546
-#: ../../mobile/operation/modules.php:644
-#: ../../mobile/operation/modules.php:646
-#: ../../mobile/operation/modules.php:838
-#: ../../include/functions_reporting_html.php:3216
-#: ../../include/functions_treeview.php:84
-#: ../../include/functions_treeview.php:646
-#: ../../include/class/CustomNetScan.class.php:520
-#: ../../include/lib/Dashboard/Widgets/sla_percent.php:331
-#: ../../include/lib/Dashboard/Widgets/graph_module_histogram.php:321
-#: ../../include/lib/Dashboard/Widgets/custom_graph.php:350
-#: ../../include/lib/Dashboard/Widgets/single_graph.php:306
-#: ../../include/lib/Dashboard/Widgets/top_n.php:236
-#: ../../operation/search_agents.php:45 ../../operation/search_agents.php:51
-#: ../../operation/agentes/estado_agente.php:749
-#: ../../operation/agentes/status_monitor.php:1329
-#: ../../operation/agentes/estado_generalagente.php:338
-#: ../../operation/netflow/nf_live_view.php:262
-#: ../../operation/search_modules.php:34
-#: ../../operation/servers/recon_view.php:97
-msgid "Interval"
-msgstr ""
-
-#: ../../godmode/modules/manage_network_components_form_common.php:144
-#: ../../godmode/massive/massive_edit_modules.php:540
-msgid "Dynamic Interval"
-msgstr ""
-
-#: ../../godmode/modules/manage_network_components_form_common.php:150
-#: ../../godmode/agentes/module_manager_editor_common.php:691
-msgid "Advanced options Dynamic Threshold"
-msgstr ""
-
-#: ../../godmode/modules/manage_network_components_form_common.php:155
-msgid "Dynamic Min. "
-msgstr ""
-
-#: ../../godmode/modules/manage_network_components_form_common.php:157
-#: ../../godmode/massive/massive_edit_modules.php:544
-msgid "Dynamic Max."
-msgstr ""
-
-#: ../../godmode/modules/manage_network_components_form_common.php:159
-#: ../../godmode/massive/massive_edit_modules.php:546
-msgid "Dynamic Two Tailed: "
-msgstr ""
-
-#: ../../godmode/modules/manage_network_components_form_common.php:162
-#: ../../godmode/massive/massive_edit_modules.php:549
-#: ../../include/functions_treeview.php:96
-#: ../../include/functions_alerts.php:676
-msgid "Warning status"
-msgstr ""
-
-#: ../../godmode/modules/manage_network_components_form_common.php:163
-#: ../../godmode/modules/manage_network_components_form_common.php:204
-#: ../../godmode/modules/manage_network_components_form_wizard.php:383
-#: ../../godmode/modules/manage_network_components_form_wizard.php:411
-#: ../../godmode/massive/massive_edit_modules.php:553
-#: ../../godmode/massive/massive_edit_modules.php:644
-#: ../../godmode/massive/massive_edit_modules.php:873
-#: ../../godmode/alerts/configure_alert_template.php:927
-#: ../../include/functions_reporting_html.php:5015
-#: ../../include/functions_treeview.php:92
-#: ../../include/functions_treeview.php:104
-#: ../../include/functions_alerts.php:673
-#: ../../include/lib/Dashboard/Widgets/top_n.php:282
-msgid "Min."
-msgstr ""
-
-#: ../../godmode/modules/manage_network_components_form_common.php:172
-#: ../../godmode/modules/manage_network_components_form_common.php:213
-#: ../../godmode/modules/manage_network_components_form_wizard.php:385
-#: ../../godmode/modules/manage_network_components_form_wizard.php:420
-#: ../../godmode/agentes/module_manager_editor_common.php:428
-#: ../../godmode/agentes/module_manager_editor_common.php:489
-#: ../../godmode/massive/massive_edit_modules.php:568
-#: ../../godmode/massive/massive_edit_modules.php:659
-#: ../../godmode/massive/massive_edit_modules.php:875
-#: ../../godmode/alerts/configure_alert_template.php:939
-#: ../../include/functions_reporting_html.php:5016
-#: ../../include/functions_treeview.php:92
-#: ../../include/functions_treeview.php:104
-#: ../../include/functions_alerts.php:672
-#: ../../include/lib/Dashboard/Widgets/top_n.php:281
-msgid "Max."
-msgstr ""
-
-#: ../../godmode/modules/manage_network_components_form_common.php:181
-#: ../../godmode/modules/manage_network_components_form_common.php:222
-#: ../../godmode/agentes/module_manager_editor_common.php:444
-#: ../../godmode/agentes/module_manager_editor_common.php:505
-#: ../../godmode/massive/massive_edit_modules.php:583
-#: ../../godmode/massive/massive_edit_modules.php:674
-#: ../../include/functions_treeview.php:90
-#: ../../include/functions_treeview.php:102
-msgid "Str."
-msgstr ""
-
-#: ../../godmode/modules/manage_network_components_form_common.php:190
-#: ../../godmode/modules/manage_network_components_form_common.php:231
-#: ../../godmode/modules/manage_network_components_form_wizard.php:392
-#: ../../godmode/modules/manage_network_components_form_wizard.php:434
-#: ../../godmode/agentes/module_manager_editor_common.php:459
-#: ../../godmode/agentes/module_manager_editor_common.php:520
-#: ../../godmode/massive/massive_edit_modules.php:598
-#: ../../godmode/massive/massive_edit_modules.php:689
-msgid "Inverse interval"
-msgstr ""
-
-#: ../../godmode/modules/manage_network_components_form_common.php:194
-#: ../../godmode/modules/manage_network_components_form_common.php:235
-#: ../../godmode/modules/manage_network_components_form_wizard.php:396
-#: ../../godmode/modules/manage_network_components_form_wizard.php:438
-#: ../../godmode/agentes/module_manager_editor_common.php:464
-#: ../../godmode/agentes/module_manager_editor_common.php:526
-#: ../../godmode/massive/massive_edit_modules.php:618
-#: ../../godmode/massive/massive_edit_modules.php:710
-msgid "Percentage"
-msgstr ""
-
-#: ../../godmode/modules/manage_network_components_form_common.php:203
-#: ../../godmode/massive/massive_edit_modules.php:640
-#: ../../include/functions_treeview.php:108
-#: ../../include/functions_alerts.php:677
-msgid "Critical status"
-msgstr ""
-
-#: ../../godmode/modules/manage_network_components_form_common.php:241
-#: ../../godmode/agentes/module_manager_editor_common.php:780
-#: ../../godmode/massive/massive_edit_modules.php:918
-msgid "FF threshold"
-msgstr ""
-
-#: ../../godmode/modules/manage_network_components_form_common.php:244
-#: ../../godmode/agentes/module_manager_editor_common.php:782
-#: ../../godmode/massive/massive_edit_modules.php:982
-msgid "Keep counters"
-msgstr ""
-
-#: ../../godmode/modules/manage_network_components_form_common.php:258
-#: ../../godmode/agentes/module_manager_editor_common.php:799
-#: ../../godmode/massive/massive_edit_modules.php:926
-#: ../../godmode/massive/massive_edit_modules.php:941
-msgid "All state changing"
-msgstr ""
-
-#: ../../godmode/modules/manage_network_components_form_common.php:274
-#: ../../godmode/agentes/module_manager_editor_common.php:821
-#: ../../godmode/massive/massive_edit_modules.php:925
-#: ../../godmode/massive/massive_edit_modules.php:951
-msgid "Each state changing"
-msgstr ""
-
-#: ../../godmode/modules/manage_network_components_form_common.php:275
-#: ../../godmode/agentes/module_manager_editor_common.php:822
-#: ../../godmode/massive/massive_edit_modules.php:952
-msgid "To normal"
-msgstr ""
-
-#: ../../godmode/modules/manage_network_components_form_common.php:284
-#: ../../godmode/agentes/module_manager_editor_common.php:836
-#: ../../godmode/massive/massive_edit_modules.php:962
-msgid "To warning"
-msgstr ""
-
-#: ../../godmode/modules/manage_network_components_form_common.php:293
-#: ../../godmode/agentes/module_manager_editor_common.php:850
-#: ../../godmode/massive/massive_edit_modules.php:972
-msgid "To critical"
-msgstr ""
-
-#: ../../godmode/modules/manage_network_components_form_common.php:303
-#: ../../godmode/agentes/module_manager_editor_common.php:532
-#: ../../godmode/massive/massive_edit_modules.php:1030
-#: ../../include/functions_reporting.php:3770
-msgid "Historical data"
-msgstr ""
-
-#: ../../godmode/modules/manage_network_components_form_common.php:306
-#: ../../godmode/agentes/module_manager_editor_common.php:664
-#: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:480
-#: ../../include/functions_reporting.php:5908
-msgid "Min. Value"
-msgstr ""
-
-#: ../../godmode/modules/manage_network_components_form_common.php:307
-msgid "Any value below this number is discarted"
-msgstr ""
-
-#: ../../godmode/modules/manage_network_components_form_common.php:308
-#: ../../godmode/agentes/module_manager_editor_common.php:668
-#: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:492
-#: ../../include/functions_reporting.php:5904
-msgid "Max. Value"
-msgstr ""
-
-#: ../../godmode/modules/manage_network_components_form_common.php:309
-msgid "Any value over this number is discarted"
-msgstr ""
-
-#: ../../godmode/modules/manage_network_components_form_common.php:310
-#: ../../godmode/agentes/module_manager_editor_common.php:582
-#: ../../godmode/massive/massive_edit_modules.php:913
-#: ../../include/functions_reporting_html.php:3217
-msgid "Unit"
-msgstr ""
-
-#: ../../godmode/modules/manage_network_components_form_common.php:313
-#: ../../godmode/agentes/module_manager_editor_common.php:764
-#: ../../godmode/massive/massive_edit_modules.php:1064
-msgid "Discard unknown events"
-msgstr ""
-
-#: ../../godmode/modules/manage_network_components_form_common.php:321
-#: ../../godmode/agentes/module_manager_editor_common.php:1093
-#: ../../godmode/massive/massive_edit_modules.php:1080
-msgid "Critical instructions"
-msgstr ""
-
-#: ../../godmode/modules/manage_network_components_form_common.php:321
-#: ../../godmode/massive/massive_edit_modules.php:1080
-msgid "Instructions when the status is critical"
-msgstr ""
-
-#: ../../godmode/modules/manage_network_components_form_common.php:325
-#: ../../godmode/agentes/module_manager_editor_common.php:1098
-#: ../../godmode/massive/massive_edit_modules.php:1084
-msgid "Warning instructions"
-msgstr ""
-
-#: ../../godmode/modules/manage_network_components_form_common.php:325
-#: ../../godmode/massive/massive_edit_modules.php:1084
-msgid "Instructions when the status is warning"
-msgstr ""
-
-#: ../../godmode/modules/manage_network_components_form_common.php:329
-#: ../../godmode/agentes/module_manager_editor_common.php:1102
-#: ../../godmode/massive/massive_edit_modules.php:1088
-msgid "Unknown instructions"
-msgstr ""
-
-#: ../../godmode/modules/manage_network_components_form_common.php:329
-#: ../../godmode/massive/massive_edit_modules.php:1088
-msgid "Instructions when the status is unknown"
-msgstr ""
-
-#: ../../godmode/modules/manage_network_components_form_common.php:340
-#: ../../godmode/agentes/module_manager_editor_common.php:1143
-#: ../../godmode/massive/massive_edit_modules.php:1048
-#: ../../godmode/module_library/module_library_view.php:120
-msgid "Category"
-msgstr ""
-
-#: ../../godmode/modules/manage_network_components_form_common.php:349
-#: ../../godmode/massive/massive_copy_modules.php:171
-#: ../../godmode/massive/massive_delete_modules.php:396
-#: ../../godmode/massive/massive_delete_modules.php:510
-#: ../../godmode/massive/massive_edit_modules.php:393
-#: ../../godmode/massive/massive_edit_modules.php:479
-#: ../../godmode/massive/massive_edit_modules.php:1035
-#: ../../godmode/events/custom_events.php:108 ../../godmode/tag/edit_tag.php:63
-#: ../../mobile/operation/events.php:557
-#: ../../include/functions_reporting_html.php:3219
-#: ../../include/functions_treeview.php:168
-#: ../../include/functions_profile.php:215
-#: ../../include/lib/Dashboard/Widgets/events_list.php:450
-#: ../../include/lib/Dashboard/Widgets/tree_view.php:329
-#: ../../include/functions_events.php:203
-#: ../../include/functions_events.php:271
-#: ../../include/functions_events.php:5057
-#: ../../include/functions_events.php:6664 ../../operation/tree.php:64
-#: ../../operation/users/user_edit.php:814
-#: ../../operation/agentes/status_monitor.php:559
-#: ../../operation/agentes/group_view.php:219
-#: ../../operation/agentes/alerts_status.functions.php:107
-#: ../../operation/events/events.build_table.php:283
-#: ../../general/first_task/tags.php:22
-msgid "Tags"
-msgstr ""
-
-#: ../../godmode/modules/manage_network_components_form_common.php:360
-#: ../../godmode/agentes/module_manager_editor_common.php:906
-msgid "Tags available"
-msgstr ""
-
-#: ../../godmode/modules/manage_network_components_form_common.php:378
-#: ../../godmode/agentes/module_manager_editor_common.php:1001
-msgid "Add tags to module"
-msgstr ""
-
-#: ../../godmode/modules/manage_network_components_form_common.php:379
-#: ../../godmode/agentes/module_manager_editor_common.php:1010
-msgid "Delete tags to module"
-msgstr ""
-
-#: ../../godmode/modules/manage_network_components_form_common.php:380
-#: ../../godmode/agentes/module_manager_editor_common.php:1014
-msgid "Tags selected"
-msgstr ""
-
-#: ../../godmode/modules/manage_network_components_form_common.php:704
-#: ../../godmode/agentes/module_manager_editor_common.php:1986
-msgid "Normal Status"
-msgstr ""
-
-#: ../../godmode/modules/manage_network_components_form_common.php:705
-#: ../../godmode/agentes/module_manager_editor_common.php:1987
-msgid "Warning Status"
-msgstr ""
-
-#: ../../godmode/modules/manage_network_components_form_common.php:706
-#: ../../godmode/agentes/module_manager_editor_common.php:1988
-msgid "Critical Status"
-msgstr ""
-
-#: ../../godmode/modules/manage_network_components_form_common.php:708
-#: ../../godmode/agentes/module_manager_editor_common.php:1990
-msgid "Please introduce a maximum warning higher than the minimun warning"
-msgstr ""
-
-#: ../../godmode/modules/manage_network_components_form_common.php:709
-#: ../../godmode/agentes/module_manager_editor_common.php:1991
-msgid "Please introduce a maximum critical higher than the minimun critical"
-msgstr ""
-
-#: ../../godmode/modules/manage_network_components_form_common.php:710
-#: ../../godmode/agentes/module_manager_editor_common.php:1992
-msgid "Please introduce a positive percentage value"
-msgstr ""
-
-#: ../../godmode/modules/manage_network_components_form_network.php:55
-#: ../../godmode/agentes/module_manager_editor_network.php:180
-#: ../../godmode/massive/massive_edit_modules.php:827
-#: ../../godmode/wizards/HostDevices.class.php:1199
-#: ../../include/class/AgentWizard.class.php:731
-msgid "SNMP version"
-msgstr ""
-
-#: ../../godmode/modules/manage_network_components_form_network.php:72
-msgid "SNMP Enterprise String"
-msgstr ""
-
-#: ../../godmode/modules/manage_network_components_form_network.php:82
-#: ../../godmode/agentes/module_manager_editor_network.php:149
-#: ../../include/class/AgentWizard.class.php:709
-msgid "SNMP community"
-msgstr ""
-
-#: ../../godmode/modules/manage_network_components_form_network.php:96
-#: ../../godmode/agentes/module_manager_editor_network.php:336
-#: ../../godmode/massive/massive_edit_modules.php:840
-#: ../../godmode/wizards/HostDevices.class.php:1259
-#: ../../include/functions_snmp_browser.php:826
-msgid "Auth user"
-msgstr ""
-
-#: ../../godmode/modules/manage_network_components_form_network.php:105
-#: ../../godmode/agentes/module_manager_editor_network.php:349
-#: ../../godmode/massive/massive_edit_modules.php:849
-#: ../../godmode/wizards/HostDevices.class.php:1270
-#: ../../include/functions_snmp_browser.php:836
-msgid "Auth password"
-msgstr ""
-
-#: ../../godmode/modules/manage_network_components_form_network.php:123
-#: ../../godmode/agentes/module_manager_editor_network.php:369
-#: ../../godmode/massive/massive_edit_modules.php:851
-#: ../../godmode/wizards/HostDevices.class.php:1286
-#: ../../include/class/AgentWizard.class.php:865
-#: ../../include/functions_snmp_browser.php:853
-msgid "Privacy method"
-msgstr ""
-
-#: ../../godmode/modules/manage_network_components_form_network.php:126
-#: ../../godmode/agentes/module_manager_editor_network.php:370
-#: ../../godmode/massive/massive_edit_modules.php:852
-#: ../../godmode/wizards/HostDevices.class.php:1291
-#: ../../include/functions_snmp_browser.php:856
-msgid "DES"
-msgstr ""
-
-#: ../../godmode/modules/manage_network_components_form_network.php:127
-#: ../../godmode/agentes/module_manager_editor_network.php:370
-#: ../../godmode/massive/massive_edit_modules.php:852
-#: ../../godmode/wizards/HostDevices.class.php:1292
-#: ../../include/functions_snmp_browser.php:857
-msgid "AES"
-msgstr ""
-
-#: ../../godmode/modules/manage_network_components_form_network.php:136
-#: ../../godmode/agentes/module_manager_editor_network.php:371
-#: ../../godmode/massive/massive_edit_modules.php:853
-#: ../../godmode/wizards/HostDevices.class.php:1301
-#: ../../include/class/AgentWizard.class.php:879
-#: ../../include/functions_snmp_browser.php:867
-msgid "Privacy pass"
-msgstr ""
-
-#: ../../godmode/modules/manage_network_components_form_network.php:148
-#: ../../godmode/agentes/module_manager_editor_network.php:391
-#: ../../godmode/massive/massive_edit_modules.php:855
-#: ../../godmode/wizards/HostDevices.class.php:1317
-#: ../../include/functions_snmp_browser.php:877
-msgid "Auth method"
-msgstr ""
-
-#: ../../godmode/modules/manage_network_components_form_network.php:151
-#: ../../godmode/agentes/module_manager_editor_network.php:394
-#: ../../godmode/massive/massive_edit_modules.php:856
-#: ../../godmode/wizards/HostDevices.class.php:1322
-#: ../../include/class/Diagnostics.class.php:2173
-#: ../../include/functions_snmp_browser.php:880
-msgid "MD5"
-msgstr ""
-
-#: ../../godmode/modules/manage_network_components_form_network.php:152
-#: ../../godmode/agentes/module_manager_editor_network.php:395
-#: ../../godmode/massive/massive_edit_modules.php:856
-#: ../../godmode/wizards/HostDevices.class.php:1323
-#: ../../include/functions_snmp_browser.php:881
-msgid "SHA"
-msgstr ""
-
-#: ../../godmode/modules/manage_network_components_form_network.php:161
-#: ../../godmode/agentes/module_manager_editor_network.php:408
-#: ../../godmode/massive/massive_edit_modules.php:857
-#: ../../godmode/wizards/HostDevices.class.php:1332
-#: ../../include/class/AgentWizard.class.php:806
-#: ../../include/functions_snmp_browser.php:890
-msgid "Security level"
-msgstr ""
-
-#: ../../godmode/modules/manage_network_components_form_network.php:164
-#: ../../godmode/agentes/module_manager_editor_network.php:411
-#: ../../godmode/massive/massive_edit_modules.php:860
-#: ../../godmode/wizards/HostDevices.class.php:1337
-#: ../../include/functions_snmp_browser.php:893
-msgid "Not auth and not privacy method"
-msgstr ""
-
-#: ../../godmode/modules/manage_network_components_form_network.php:165
-#: ../../godmode/agentes/module_manager_editor_network.php:412
-#: ../../godmode/massive/massive_edit_modules.php:861
-#: ../../godmode/wizards/HostDevices.class.php:1338
-#: ../../include/functions_snmp_browser.php:894
-msgid "Auth and not privacy method"
-msgstr ""
-
-#: ../../godmode/modules/manage_network_components_form_network.php:166
-#: ../../godmode/agentes/module_manager_editor_network.php:413
-#: ../../godmode/massive/massive_edit_modules.php:862
-#: ../../godmode/wizards/HostDevices.class.php:1339
-#: ../../include/functions_snmp_browser.php:895
-msgid "Auth and privacy method"
-msgstr ""
-
-#: ../../godmode/modules/manage_network_components_form_network.php:191
-#: ../../godmode/modules/manage_network_components_form_wizard.php:311
-msgid "Name OID"
-msgstr ""
-
-#: ../../godmode/modules/manage_network_components_form_network.php:209
-#: ../../godmode/agentes/module_manager_editor_network.php:281
-#: ../../godmode/massive/massive_edit_modules.php:1136
-msgid "TCP send"
-msgstr ""
-
-#: ../../godmode/modules/manage_network_components_form_network.php:216
-#: ../../godmode/agentes/module_manager_editor_network.php:295
-#: ../../godmode/massive/massive_edit_modules.php:1139
-msgid "TCP receive"
-msgstr ""
-
-#: ../../godmode/modules/manage_network_components_form_network.php:223
-#: ../../godmode/agentes/module_manager_editor_network.php:433
-#: ../../godmode/massive/massive_edit_plugins.php:475
-#: ../../godmode/massive/massive_edit_modules.php:1169
-#: ../../godmode/alerts/configure_alert_command.php:222
-#: ../../godmode/alerts/alert_actions.php:278
-#: ../../godmode/alerts/alert_actions.php:333
-#: ../../godmode/alerts/configure_alert_action.php:244
-#: ../../godmode/events/event_responses.editor.php:155
-#: ../../godmode/events/event_responses.editor.php:162
-#: ../../godmode/servers/plugin.php:428 ../../godmode/servers/plugin.php:433
-#: ../../godmode/servers/plugin.php:816
-#: ../../include/class/ManageNetScanScripts.class.php:434
-#: ../../include/class/ExternalTools.class.php:353
-msgid "Command"
-msgstr ""
-
-#: ../../godmode/modules/manage_network_components_form_network.php:242
-#: ../../godmode/agentes/module_manager_editor_network.php:459
-#: ../../godmode/massive/massive_edit_modules.php:1186
-msgid "Credential identifier"
-msgstr ""
-
-#: ../../godmode/modules/manage_network_components_form_network.php:258
-#: ../../godmode/agentes/module_manager_editor_network.php:477
-#: ../../godmode/massive/massive_edit_modules.php:1201
-msgid "Inherited"
-msgstr ""
-
-#: ../../godmode/modules/manage_network_components_form_network.php:259
-#: ../../godmode/massive/massive_edit_modules.php:1202
-msgid "Linux"
-msgstr ""
-
-#: ../../godmode/modules/manage_network_components_form_network.php:260
-#: ../../godmode/massive/massive_edit_modules.php:1203
-msgid "Windows"
-msgstr ""
-
-#: ../../godmode/modules/manage_network_components_form_network.php:263
-#: ../../godmode/massive/massive_edit_modules.php:1206
-msgid "Target OS"
-msgstr ""
-
-#: ../../godmode/modules/manage_network_components_form_wmi.php:31
-#: ../../godmode/agentes/module_manager_editor_wmi.php:133
-#: ../../godmode/massive/massive_edit_modules.php:1142
-msgid "WMI query"
-msgstr ""
-
-#: ../../godmode/modules/manage_network_components_form_wmi.php:33
-#: ../../godmode/modules/manage_network_components_form_wizard.php:681
-#: ../../godmode/agentes/module_manager_editor_wmi.php:151
-#: ../../godmode/massive/massive_edit_modules.php:1145
-msgid "Key string"
-msgstr ""
-
-#: ../../godmode/modules/manage_network_components_form_wmi.php:39
-#: ../../godmode/agentes/module_manager_editor_wmi.php:164
-#: ../../godmode/massive/massive_edit_modules.php:1148
-msgid "Field number"
-msgstr ""
-
-#: ../../godmode/modules/manage_network_components_form_wmi.php:41
-#: ../../godmode/agentes/module_manager_editor_wmi.php:87
-msgid "Namespace"
-msgstr ""
-
-#: ../../godmode/modules/manage_network_components_form.php:355
-msgid "Update Network Component"
-msgstr ""
-
-#: ../../godmode/modules/manage_network_components_form.php:357
-msgid "Create Network Component"
-msgstr ""
-
-#: ../../godmode/modules/manage_network_components_form.php:367
-#: ../../godmode/reporting/graph_builder.main.php:308
-#: ../../godmode/wizards/HostDevices.class.php:648
-#: ../../godmode/wizards/HostDevices.class.php:747
-#: ../../godmode/wizards/Wizard.main.php:416
-#: ../../godmode/wizards/DiscoveryTaskList.class.php:176
-#: ../../include/class/CustomNetScan.class.php:314
-#: ../../include/class/CustomNetScan.class.php:422
-#: ../../include/class/HTML.class.php:419
-msgid "Go back"
-msgstr ""
-
-#: ../../godmode/modules/manage_network_components.php:196
-#: ../../godmode/alerts/configure_alert_template.php:163
-#, php-format
-msgid "Successfully created from %s"
-msgstr ""
-
-#: ../../godmode/modules/manage_network_components.php:290
-msgid "Remote component management"
-msgstr ""
-
-#: ../../godmode/modules/manage_network_components.php:313
-#, php-format
-msgid ""
-"This node is configured with centralized mode. All remote components are "
-"read only. Go to %s to manage them."
-msgstr ""
-
-#: ../../godmode/modules/manage_network_components.php:424
-msgid "Could not be created because the component exists"
-msgstr ""
-
-#: ../../godmode/modules/manage_network_components.php:435
-#: ../../include/class/ManageNetScanScripts.class.php:228
-msgid "Created successfully"
-msgstr ""
-
-#: ../../godmode/modules/manage_network_components.php:522
-#: ../../godmode/agentes/status_monitor_custom_fields.php:57
-#: ../../godmode/agentes/planned_downtime.editor.php:407
-#: ../../godmode/alerts/configure_alert_command.php:121
-#: ../../godmode/alerts/alert_templates.php:162
-#: ../../godmode/alerts/configure_alert_template.php:541
-#: ../../godmode/alerts/alert_list.php:95
-#: ../../godmode/alerts/alert_list.php:301 ../../godmode/setup/gis.php:38
-#: ../../include/functions_alerts.php:2767
-#: ../../include/functions_planned_downtimes.php:122
-#: ../../operation/agentes/pandora_networkmap.php:216
-#: ../../operation/agentes/pandora_networkmap.php:508
-#: ../../operation/snmpconsole/snmp_view.php:175
-msgid "Could not be updated"
-msgstr ""
-
-#: ../../godmode/modules/manage_network_components.php:528
-#: ../../include/class/ManageNetScanScripts.class.php:315
-msgid "Updated successfully"
-msgstr ""
-
-#: ../../godmode/modules/manage_network_components.php:665
-msgid "Free Search"
-msgstr ""
-
-#: ../../godmode/modules/manage_network_components.php:666
-msgid "Search by name, description, tcp send or tcp rcv, list matches."
-msgstr ""
-
-#: ../../godmode/modules/manage_network_components.php:696
-#: ../../godmode/users/user_list.php:422
-#: ../../godmode/alerts/alert_actions.php:321
-#: ../../godmode/alerts/alert_templates.php:342
-#: ../../godmode/reporting/reporting_builder.list_items.php:273
-#: ../../godmode/tag/tag.php:235 ../../godmode/tag/tag.php:401
-#: ../../operation/tree.php:298 ../../operation/agentes/alerts_status.php:478
-#: ../../operation/events/events_list.php:1098
-msgid "Show Options"
-msgstr ""
-
-#: ../../godmode/modules/manage_network_components.php:756
-#: ../../godmode/agentes/agent_manager.php:408
-#: ../../godmode/agentes/module_manager.php:844
-#: ../../godmode/massive/massive_edit_agents.php:634
-#: ../../godmode/reporting/reporting_builder.item_editor.php:1078
-#: ../../godmode/reporting/reporting_builder.item_editor.php:3401
-#: ../../godmode/wizards/DiscoveryTaskList.class.php:995
-#: ../../include/class/AgentWizard.class.php:1186
-#: ../../include/functions_events.php:6577
-#: ../../operation/events/events_list.php:817
-#: ../../operation/events/events.php:1241
-#: ../../operation/events/events.build_table.php:156
-#: ../../operation/servers/recon_view.php:174
-msgid "Server"
-msgstr ""
-
-#: ../../godmode/modules/manage_network_components.php:760
-msgid "Max/Min"
-msgstr ""
-
-#: ../../godmode/modules/manage_network_components.php:783
-#: ../../godmode/modules/manage_network_components.php:784
-#: ../../godmode/extensions.php:186 ../../godmode/extensions.php:201
-#: ../../godmode/agentes/planned_downtime.list.php:510
-#: ../../godmode/alerts/alert_view.php:112
-#: ../../godmode/servers/servers.build_table.php:133
-#: ../../godmode/servers/servers.build_table.php:134
-#: ../../godmode/servers/servers.build_table.php:140
-#: ../../mobile/operation/agent.php:173 ../../mobile/operation/agent.php:181
-#: ../../mobile/operation/events.php:161 ../../mobile/operation/events.php:167
-#: ../../mobile/operation/events.php:175 ../../mobile/operation/events.php:260
-#: ../../mobile/operation/events.php:290 ../../mobile/operation/events.php:298
-#: ../../include/functions_servers.php:1362
-#: ../../include/functions_reporting_html.php:643
-#: ../../include/functions_reporting_html.php:646
-#: ../../include/functions_reporting_html.php:5051
-#: ../../include/functions_reporting_html.php:5104
-#: ../../include/functions.php:1123 ../../include/functions.php:1129
-#: ../../include/functions.php:1133 ../../include/ajax/module.php:1168
-#: ../../include/functions_treeview.php:162
-#: ../../include/functions_treeview.php:327
-#: ../../include/functions_treeview.php:423 ../../include/functions_ui.php:2600
-#: ../../include/functions_ui.php:2608 ../../include/functions_db.php:241
-#: ../../include/functions_events.php:3766
-#: ../../include/functions_events.php:3916
-#: ../../include/functions_events.php:3937
-#: ../../include/functions_events.php:3942
-#: ../../include/functions_events.php:3955
-#: ../../include/functions_events.php:3956
-#: ../../include/functions_events.php:3968
-#: ../../include/functions_events.php:4019
-#: ../../include/functions_events.php:4046
-#: ../../include/functions_events.php:4102
-#: ../../include/functions_events.php:4119
-#: ../../include/functions_events.php:4126
-#: ../../include/functions_events.php:4229
-#: ../../include/functions_events.php:4368
-#: ../../include/functions_events.php:4407
-#: ../../include/functions_events.php:4421
-#: ../../include/functions_events.php:4426
-#: ../../include/functions_events.php:4456
-#: ../../include/functions_events.php:4549
-#: ../../include/functions_events.php:4629
-#: ../../include/functions_events.php:4639
-#: ../../include/functions_events.php:4856
-#: ../../include/functions_events.php:4933
-#: ../../include/functions_events.php:5020
-#: ../../include/functions_events.php:5049
-#: ../../include/functions_events.php:5064
-#: ../../include/functions_events.php:5074
-#: ../../include/functions_events.php:5084
-#: ../../include/functions_events.php:7362
-#: ../../include/functions_events.php:7381
-#: ../../include/functions_events.php:7386
-#: ../../include/functions_events.php:7393
-#: ../../include/functions_events.php:7406
-#: ../../include/functions_events.php:7419
-#: ../../include/functions_events.php:7431
-#: ../../include/functions_events.php:7484
-#: ../../include/functions_events.php:7511
-#: ../../include/functions_events.php:7536
-#: ../../operation/agentes/interface_view.functions.php:675
-#: ../../operation/agentes/interface_view.functions.php:676
-#: ../../operation/agentes/interface_view.functions.php:677
-#: ../../operation/agentes/interface_view.functions.php:678
-#: ../../operation/agentes/interface_view.functions.php:679
-#: ../../operation/agentes/status_monitor.php:1711
-#: ../../operation/agentes/estado_generalagente.php:219
-#: ../../operation/agentes/estado_generalagente.php:232
-#: ../../operation/agentes/estado_generalagente.php:244
-#: ../../operation/agentes/estado_generalagente.php:392
-#: ../../operation/agentes/estado_generalagente.php:408
-#: ../../operation/agentes/estado_generalagente.php:419
-#: ../../operation/snmpconsole/snmp_view.php:974
-#: ../../operation/snmpconsole/snmp_view.php:994
-msgid "N/A"
-msgstr ""
-
-#: ../../godmode/modules/manage_network_components.php:811
-#: ../../include/class/ModuleTemplates.class.php:1234
-msgid "Network module"
-msgstr ""
-
-#: ../../godmode/modules/manage_network_components.php:822
-#: ../../include/class/ModuleTemplates.class.php:1245
-msgid "WMI module"
-msgstr ""
-
-#: ../../godmode/modules/manage_network_components.php:833
-#: ../../include/class/ModuleTemplates.class.php:1256
-msgid "Plug-in module"
-msgstr ""
-
-#: ../../godmode/modules/manage_network_components.php:844
-msgid "Wizard module"
-msgstr ""
-
-#: ../../godmode/modules/manage_network_components.php:866
-#: ../../godmode/modules/manage_network_components.php:867
-#: ../../godmode/agentes/module_manager.php:1166
-#: ../../godmode/snmpconsole/snmp_alert.php:1270
-#: ../../godmode/snmpconsole/snmp_alert.php:1271
-#: ../../godmode/alerts/alert_actions.php:441
-#: ../../godmode/alerts/alert_templates.php:436
-#: ../../godmode/reporting/reporting_builder.php:1205
-msgid "Duplicate"
-msgstr ""
-
-#: ../../godmode/modules/manage_network_components.php:917
-msgid "There are no defined network components"
-msgstr ""
-
-#: ../../godmode/modules/manage_network_components.php:928
-msgid "Create a new network component"
-msgstr ""
-
-#: ../../godmode/modules/manage_network_components.php:929
-msgid "Create a new plugin component"
-msgstr ""
-
-#: ../../godmode/modules/manage_network_components.php:930
-msgid "Create a new WMI component"
-msgstr ""
-
-#: ../../godmode/modules/manage_network_components.php:931
-msgid "Create a new wizard component"
-msgstr ""
-
-#: ../../godmode/modules/manage_network_components_form_wizard.php:89
-msgid "Add a macro oid"
-msgstr ""
-
-#: ../../godmode/modules/manage_network_components_form_wizard.php:107
-msgid "Remove last macro oid"
-msgstr ""
-
-#: ../../godmode/modules/manage_network_components_form_wizard.php:131
-msgid "Numeric"
-msgstr ""
-
-#: ../../godmode/modules/manage_network_components_form_wizard.php:133
-msgid "Boolean"
-msgstr ""
-
-#: ../../godmode/modules/manage_network_components_form_wizard.php:134
-msgid "Alphanumeric"
-msgstr ""
-
-#: ../../godmode/modules/manage_network_components_form_wizard.php:243
-#: ../../godmode/groups/group_list.php:905
-#: ../../godmode/agentes/module_manager_editor_common.php:1061
-#: ../../godmode/agentes/module_manager_editor_common.php:1071
-#: ../../godmode/massive/massive_edit_agents.php:770
-#: ../../godmode/alerts/configure_alert_template.php:977
-#: ../../include/functions_visual_map_editor.php:825
-#: ../../include/functions_reporting_html.php:3175
-#: ../../include/rest-api/models/VisualConsole/Items/StaticGraph.php:392
-msgid "Enabled"
-msgstr ""
-
-#: ../../godmode/modules/manage_network_components_form_wizard.php:254
-msgid "Add by default"
-msgstr ""
-
-#: ../../godmode/modules/manage_network_components_form_wizard.php:282
-msgid "Module protocol"
-msgstr ""
-
-#: ../../godmode/modules/manage_network_components_form_wizard.php:298
-msgid "Protocol"
-msgstr ""
-
-#: ../../godmode/modules/manage_network_components_form_wizard.php:314
-msgid "Manufacturer ID"
-msgstr ""
-
-#: ../../godmode/modules/manage_network_components_form_wizard.php:332
-#: ../../godmode/massive/massive_delete_modules.php:318
-#: ../../godmode/massive/massive_edit_modules.php:297
-msgid "Module type"
-msgstr ""
-
-#: ../../godmode/modules/manage_network_components_form_wizard.php:346
-msgid "Component Group"
-msgstr ""
-
-#: ../../godmode/modules/manage_network_components_form_wizard.php:364
-msgid "Module unit"
-msgstr ""
-
-#: ../../godmode/modules/manage_network_components_form_wizard.php:380
-#: ../../godmode/groups/group_list.php:1056
-#: ../../godmode/users/configure_user.php:1634
-#: ../../godmode/massive/massive_copy_modules.php:115
-#: ../../godmode/massive/massive_copy_modules.php:275
-#: ../../godmode/massive/massive_delete_modules.php:414
-#: ../../godmode/massive/massive_delete_modules.php:435
-#: ../../godmode/massive/massive_delete_agents.php:209
-#: ../../godmode/massive/massive_edit_agents.php:442
-#: ../../godmode/massive/massive_edit_agents.php:735
-#: ../../godmode/massive/massive_edit_modules.php:374
-#: ../../godmode/massive/massive_edit_modules.php:460
-#: ../../godmode/setup/setup_netflow.php:61
-#: ../../godmode/reporting/reporting_builder.item_editor.php:3522
-#: ../../godmode/um_client/views/offline.php:79
-#: ../../mobile/operation/agents.php:41 ../../mobile/operation/modules.php:52
-#: ../../include/functions_reporting_html.php:2159
-#: ../../include/functions.php:1034 ../../include/functions.php:1272
-#: ../../include/functions.php:1275 ../../include/functions.php:1314
-#: ../../include/functions_graph.php:3544
-#: ../../include/functions_graph.php:3545
-#: ../../include/functions_graph.php:5108 ../../include/functions_ui.php:293
-#: ../../include/functions_ui.php:2595
-#: ../../include/rest-api/models/VisualConsole/Items/Group.php:422
-#: ../../include/class/Diagnostics.class.php:1807
-#: ../../include/class/AgentWizard.class.php:1305
-#: ../../include/class/AgentWizard.class.php:3939
-#: ../../include/lib/Dashboard/Widgets/system_group_status.php:312
-#: ../../include/lib/Dashboard/Widgets/tree_view.php:386
-#: ../../include/lib/Dashboard/Widgets/tree_view.php:419
-#: ../../include/lib/Dashboard/Widgets/tree_view.php:665
-#: ../../include/functions_events.php:3296 ../../index.php:1173
-#: ../../operation/tree.php:211 ../../operation/tree.php:264
-#: ../../operation/tree.php:458 ../../operation/agentes/estado_agente.php:271
-#: ../../operation/agentes/status_monitor.php:493
-#: ../../operation/agentes/group_view.php:224
-#: ../../operation/agentes/group_view.php:229
-#: ../../operation/agentes/estado_monitores.php:525
-#: ../../operation/agentes/tactical.php:179
-#: ../../operation/netflow/nf_live_view.php:451
-#: ../../operation/gis_maps/render_view.php:162
-msgid "Warning"
-msgstr ""
-
-#: ../../godmode/modules/manage_network_components_form_wizard.php:389
-#: ../../godmode/modules/manage_network_components_form_wizard.php:431
-msgid "String"
-msgstr ""
-
-#: ../../godmode/modules/manage_network_components_form_wizard.php:454
-msgid "Scan Type"
-msgstr ""
-
-#: ../../godmode/modules/manage_network_components_form_wizard.php:468
-#: ../../godmode/agentes/planned_downtime.list.php:160
-msgid "Execution type"
-msgstr ""
-
-#: ../../godmode/modules/manage_network_components_form_wizard.php:488
-msgid "Value OID"
-msgstr ""
-
-#: ../../godmode/modules/manage_network_components_form_wizard.php:505
-msgid "Macros OID"
-msgstr ""
-
-#: ../../godmode/modules/manage_network_components_form_wizard.php:513
-#: ../../godmode/modules/manage_network_components_form_wizard.php:698
-msgid "Value operation"
-msgstr ""
-
-#: ../../godmode/modules/manage_network_components_form_wizard.php:530
-#: ../../godmode/modules/manage_network_components_form_wizard.php:715
-msgid "Satellite execution"
-msgstr ""
-
-#: ../../godmode/modules/manage_network_components_form_wizard.php:547
-#: ../../godmode/modules/manage_network_components_form_wizard.php:732
-msgid "Server plugin"
-msgstr ""
-
-#: ../../godmode/modules/manage_network_components_form_wizard.php:585
-msgid "WMI class"
-msgstr ""
-
-#: ../../godmode/modules/manage_network_components_form_wizard.php:602
-msgid "Query key field"
-msgstr ""
-
-#: ../../godmode/modules/manage_network_components_form_wizard.php:619
-msgid "Query extra fields"
-msgstr ""
-
-#: ../../godmode/modules/manage_network_components_form_wizard.php:627
-msgid "Query filters"
-msgstr ""
-
-#: ../../godmode/modules/manage_network_components_form_wizard.php:633
-msgid "Scan"
-msgstr ""
-
-#: ../../godmode/modules/manage_network_components_form_wizard.php:651
-#: ../../godmode/agentes/planned_downtime.list.php:402
-#: ../../godmode/agentes/planned_downtime.editor.php:592
-#: ../../include/functions_reporting_html.php:5926
-msgid "Execution"
-msgstr ""
-
-#: ../../godmode/modules/manage_network_components_form_wizard.php:670
-msgid "Field value"
-msgstr ""
-
-#: ../../godmode/modules/module_list.php:26
-msgid "Defined modules"
-msgstr ""
-
-#: ../../godmode/modules/module_list.php:48
-msgid "Problem modifying module"
-msgstr ""
-
-#: ../../godmode/modules/module_list.php:50
-msgid "Module updated successfully"
-msgstr ""
-
-#: ../../godmode/modules/module_list.php:57
-#: ../../godmode/groups/configure_group.php:150
-#: ../../godmode/groups/group_list.php:841
-#: ../../godmode/setup/os.builder.php:37
-#: ../../godmode/reporting/visual_console_builder.elements.php:292
-#: ../../include/functions_visual_map_editor.php:68
-#: ../../include/functions_visual_map_editor.php:1395
-#: ../../include/functions_visual_map.php:4239
-#: ../../include/rest-api/models/VisualConsole/Item.php:2116
-#: ../../include/lib/Dashboard/Widgets/module_icon.php:384
-#: ../../include/lib/Dashboard/Widgets/module_status.php:374
-#: ../../operation/visual_console/view.php:341
-msgid "Icon"
-msgstr ""
-
-#: ../../godmode/modules/manage_network_templates.php:77
-msgid "Template successfully deleted"
-msgstr ""
-
-#: ../../godmode/modules/manage_network_templates.php:78
-msgid "Error deleting template"
-msgstr ""
-
-#: ../../godmode/modules/manage_network_templates.php:112
-msgid "This template does not exist"
-msgstr ""
-
-#: ../../godmode/modules/manage_network_templates.php:276
-#: ../../godmode/agentes/planned_downtime.list.php:544
-#: ../../include/graphs/functions_flot.php:377
-#: ../../include/class/ModuleTemplates.class.php:934
-#: ../../operation/network/network_report.php:140
-#: ../../operation/incidents/list_integriaims_incidents.php:428
-msgid "Export to CSV"
-msgstr ""
-
-#: ../../godmode/modules/manage_network_templates.php:292
-msgid "There are no defined network profiles"
-msgstr ""
-
-#: ../../godmode/db/db_main.php:74
-msgid "Current database maintenance setup"
-msgstr ""
-
-#: ../../godmode/db/db_main.php:80
-msgid "Database setup"
-msgstr ""
-
-#: ../../godmode/db/db_main.php:84
-msgid "Max. time before compact data"
-msgstr ""
-
-#: ../../godmode/db/db_main.php:86 ../../godmode/db/db_main.php:92
-#: ../../godmode/setup/setup_visuals.php:1342 ../../include/functions.php:500
-#: ../../include/functions.php:630 ../../include/functions_html.php:2005
-msgid "days"
-msgstr ""
-
-#: ../../godmode/db/db_main.php:90
-msgid "Max. time before purge"
-msgstr ""
-
-#: ../../godmode/db/db_main.php:98
-#: ../../include/class/Diagnostics.class.php:228
-msgid "Database size stats"
-msgstr ""
-
-#: ../../godmode/db/db_main.php:102 ../../godmode/groups/group_list.php:1039
-#: ../../mobile/operation/groups.php:146
-#: ../../include/functions_reporting_html.php:5383
-#: ../../include/class/Diagnostics.class.php:547
-#: ../../include/functions_reporting.php:10960
-#: ../../include/lib/Dashboard/Widgets/tree_view.php:648
-#: ../../operation/tree.php:441
-msgid "Total agents"
-msgstr ""
-
-#: ../../godmode/db/db_main.php:108
-#: ../../include/class/Diagnostics.class.php:567
-#: ../../include/functions_reporting.php:13374
-msgid "Total events"
-msgstr ""
-
-#: ../../godmode/db/db_main.php:114
-msgid "Total data items (tagente_datos)"
-msgstr ""
-
-#: ../../godmode/db/db_main.php:127
-msgid "Total log4x items (tagente_datos_log4x)"
-msgstr ""
-
-#: ../../godmode/db/db_main.php:140
-msgid "Total data string items (tagente_datos_string)"
-msgstr ""
-
-#: ../../godmode/db/db_main.php:146
-msgid "Total modules configured"
-msgstr ""
-
-#: ../../godmode/db/db_main.php:154
-msgid "Total agent access records"
-msgstr ""
-
-#: ../../godmode/db/db_main.php:166
-msgid "Database sanity"
-msgstr ""
-
-#: ../../godmode/db/db_main.php:170
-msgid "Total uknown agents"
-msgstr ""
-
-#: ../../godmode/db/db_main.php:176
-msgid "Total non-init modules"
-msgstr ""
-
-#: ../../godmode/db/db_main.php:185
-msgid "Last time on DB maintance"
-msgstr ""
-
-#: ../../godmode/db/db_main.php:189
-#: ../../godmode/snmpconsole/snmp_alert.php:1262
-#: ../../include/functions_cron.php:778
-#: ../../include/functions_treeview.php:660 ../../include/functions_ui.php:540
-#: ../../operation/agentes/estado_generalagente.php:348
-#: ../../operation/gis_maps/ajax.php:351 ../../operation/gis_maps/ajax.php:362
-#: ../../operation/gis_maps/ajax.php:468 ../../operation/gis_maps/ajax.php:479
-msgid "Never"
-msgstr ""
-
-#: ../../godmode/db/db_main.php:208
-#, php-format
-msgid ""
-"Please make sure your %s Server settings are correct and that the database "
-"maintenance daemon is running. It's very important to keep your database up "
-"to date in order to get the best performance and results from %s."
-msgstr ""
-
-#: ../../godmode/groups/configure_group.php:84
-#: ../../godmode/groups/configure_modu_group.php:46
-msgid "There was a problem loading group"
-msgstr ""
-
-#: ../../godmode/groups/configure_group.php:103
-msgid "Update group"
-msgstr ""
-
-#: ../../godmode/groups/configure_group.php:105
-#: ../../godmode/groups/group_list.php:978
-msgid "Create group"
-msgstr ""
-
-#: ../../godmode/groups/configure_group.php:119
-#: ../../godmode/groups/group_list.php:377
-#: ../../godmode/users/profile_list.php:323 ../../godmode/menu.php:136
-msgid "Profiles"
-msgstr ""
-
-#: ../../godmode/groups/configure_group.php:123
-#: ../../godmode/groups/group_list.php:381
-msgid "Manage agents group"
-msgstr ""
-
-#: ../../godmode/groups/configure_group.php:135
-msgid "Update Group"
-msgstr ""
-
-#: ../../godmode/groups/configure_group.php:137
-msgid "Create Group"
-msgstr ""
-
-#: ../../godmode/groups/configure_group.php:175
-msgid "You have not access to the parent."
-msgstr ""
-
-#: ../../godmode/groups/configure_group.php:223
-msgid "Group Password"
-msgstr ""
-
-#: ../../godmode/groups/configure_group.php:227
-msgid "Enable alert use in this group."
-msgstr ""
-
-#: ../../godmode/groups/configure_group.php:231
-msgid "Propagate ACL"
-msgstr ""
-
-#: ../../godmode/groups/configure_group.php:231
-msgid "Propagate the same ACL security into the child subgroups."
-msgstr ""
-
-#: ../../godmode/groups/configure_group.php:235
-#: ../../godmode/agentes/agent_manager.php:195
-#: ../../godmode/agentes/module_manager_editor_common.php:567
-#: ../../godmode/massive/massive_edit_agents.php:682
-msgid "Custom ID"
-msgstr ""
-
-#: ../../godmode/groups/configure_group.php:243
-#: ../../include/functions_events.php:5045
-msgid "Contact"
-msgstr ""
-
-#: ../../godmode/groups/configure_group.php:243
-msgid "Contact information accessible through the _groupcontact_ macro"
-msgstr ""
-
-#: ../../godmode/groups/configure_group.php:247
-msgid "Information accessible through the _group_other_ macro"
-msgstr ""
-
-#: ../../godmode/groups/configure_group.php:256
-msgid "Max agents allowed"
-msgstr ""
-
-#: ../../godmode/groups/configure_group.php:256
-msgid "Set the maximum of agents allowed for this group. 0 is unlimited."
-msgstr ""
-
-#: ../../godmode/groups/configure_group.php:269
-#: ../../godmode/alerts/configure_alert_action.php:392
-#: ../../mobile/operation/agents.php:191 ../../mobile/operation/modules.php:223
-#: ../../mobile/operation/groups.php:82 ../../mobile/operation/agent.php:130
-#: ../../mobile/operation/alerts.php:181
-#: ../../mobile/operation/visualmap.php:283
-#: ../../mobile/operation/visualmaps.php:182
-#: ../../mobile/operation/module_graph.php:364
-#: ../../mobile/operation/module_graph.php:376
-#: ../../mobile/operation/events.php:614
-#: ../../mobile/operation/tactical.php:102
-msgid "Back"
-msgstr ""
-
-#: ../../godmode/groups/group_list.php:306
-msgid "Tree Group view"
-msgstr ""
-
-#: ../../godmode/groups/group_list.php:318
-#: ../../godmode/users/configure_user.php:1089
-#: ../../operation/users/user_edit.php:358
-#: ../../operation/agentes/group_view.php:86 ../../operation/menu.php:48
-msgid "Group view"
-msgstr ""
-
-#: ../../godmode/groups/group_list.php:330
-msgid "Credential Store"
-msgstr ""
-
-#: ../../godmode/groups/group_list.php:336
-#, php-format
-msgid "Groups defined in %s"
-msgstr ""
-
-#: ../../godmode/groups/group_list.php:341
-#: ../../include/lib/Dashboard/Widgets/tree_view.php:173
-#: ../../include/lib/Dashboard/Widgets/tree_view.php:714
-#: ../../operation/tree.php:136 ../../operation/menu.php:51
-msgid "Tree view"
-msgstr ""
-
-#: ../../godmode/groups/group_list.php:346 ../../godmode/menu.php:205
-msgid "Credential store"
-msgstr ""
-
-#: ../../godmode/groups/group_list.php:352
-msgid "Table view"
-msgstr ""
-
-#: ../../godmode/groups/group_list.php:362
-msgid "Edit or delete groups can cause problems with synchronization"
-msgstr ""
-
-#: ../../godmode/groups/group_list.php:400
-#, php-format
-msgid ""
-"This node is configured with centralized mode. All groups information is "
-"read only. Go to %s to manage it."
-msgstr ""
-
-#: ../../godmode/groups/group_list.php:465
-#: ../../godmode/groups/modu_group_list.php:119
-msgid "Group successfully created"
-msgstr ""
-
-#: ../../godmode/groups/group_list.php:467
-#: ../../godmode/groups/modu_group_list.php:122
-msgid "There was a problem creating group"
-msgstr ""
-
-#: ../../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
-msgid "Group must have a name"
-msgstr ""
-
-#: ../../godmode/groups/group_list.php:537
-#: ../../godmode/groups/modu_group_list.php:155
-msgid "Group successfully updated"
-msgstr ""
-
-#: ../../godmode/groups/group_list.php:539
-#: ../../godmode/groups/modu_group_list.php:158
-msgid "There was a problem modifying group"
-msgstr ""
-
-#: ../../godmode/groups/group_list.php:602
-#, php-format
-msgid "The group %s could not be deleted because it is not empty in the nodes"
-msgstr ""
-
-#: ../../godmode/groups/group_list.php:664
-#, php-format
-msgid "Error connecting to %s"
-msgstr ""
-
-#: ../../godmode/groups/group_list.php:676
-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
-#, php-format
-msgid "The group %s has been deleted in the nodes"
-msgstr ""
-
-#: ../../godmode/groups/group_list.php:717
-#: ../../godmode/groups/modu_group_list.php:229
-msgid "Group successfully deleted"
-msgstr ""
-
-#: ../../godmode/groups/group_list.php:720
-#: ../../godmode/groups/modu_group_list.php:227
-msgid "There was a problem deleting group"
-msgstr ""
-
-#: ../../godmode/groups/group_list.php:727
-#, php-format
-msgid "The group is not empty. It is use in %s."
-msgstr ""
-
-#: ../../godmode/groups/group_list.php:772
-#: ../../godmode/groups/group_list.php:966
-msgid "There are no defined groups"
-msgstr ""
-
-#: ../../godmode/groups/group_list.php:850
-#: ../../godmode/agentes/modificar_agente.php:655
-#: ../../godmode/agentes/planned_downtime.editor.php:910
-#: ../../godmode/agentes/fields_manager.php:121 ../../godmode/menu.php:234
-#: ../../godmode/alerts/alert_list.list.php:120
-#: ../../godmode/alerts/alert_list.list.php:481
-#: ../../godmode/alerts/alert_commands.php:645
-#: ../../godmode/alerts/alert_view.php:351
-#: ../../godmode/alerts/alert_list.builder.php:95
-#: ../../godmode/reporting/reporting_builder.item_editor.php:1898
-#: ../../godmode/events/event_responses.list.php:53
-#: ../../godmode/tag/tag.php:273 ../../godmode/category/category.php:161
-#: ../../include/functions_reporting_html.php:2957
-#: ../../include/functions_cron.php:460
-#: ../../include/functions_treeview.php:413
-#: ../../include/class/AgentsAlerts.class.php:251
-#: ../../include/class/AgentsAlerts.class.php:282
-#: ../../include/functions_reporting.php:2697
-#: ../../include/functions_filemanager.php:634
-msgid "Actions"
-msgstr ""
-
-#: ../../godmode/groups/group_list.php:905
-#: ../../godmode/agentes/modificar_agente.php:763
-#: ../../godmode/agentes/module_manager_editor_common.php:257
-#: ../../godmode/agentes/module_manager_editor_common.php:897
-#: ../../godmode/agentes/module_manager_editor_common.php:1059
-#: ../../godmode/massive/massive_edit_agents.php:695
-#: ../../godmode/massive/massive_edit_agents.php:771
-#: ../../godmode/massive/massive_edit_modules.php:753
-#: ../../godmode/alerts/alert_list.list.php:139
-#: ../../godmode/alerts/configure_alert_template.php:976
-#: ../../godmode/alerts/alert_view.php:519 ../../mobile/operation/agent.php:148
-#: ../../mobile/operation/alerts.php:50
-#: ../../include/functions_visual_map_editor.php:826
-#: ../../include/functions_reporting_html.php:3177
-#: ../../include/functions_treeview.php:72
-#: ../../include/functions_treeview.php:613
-#: ../../include/rest-api/models/VisualConsole/Items/StaticGraph.php:391
-#: ../../include/functions_reporting.php:5798
-#: ../../operation/search_agents.php:93
-#: ../../operation/agentes/estado_generalagente.php:101
-#: ../../operation/agentes/estado_generalagente.php:103
-#: ../../operation/agentes/alerts_status.functions.php:97
-msgid "Disabled"
-msgstr ""
-
-#: ../../godmode/groups/group_list.php:921
-msgid "Are you sure? This group will also be deleted in all the nodes."
-msgstr ""
-
-#: ../../godmode/groups/group_list.php:927
-msgid ""
-"The child groups will be updated to use the parent id of the deleted group"
-msgstr ""
-
-#: ../../godmode/groups/group_list.php:1031
-#: ../../include/lib/Dashboard/Widgets/tree_view.php:645
-#: ../../operation/tree.php:402 ../../operation/tree.php:433
-#: ../../operation/network/network_report.php:313
-msgid "No data found"
-msgstr ""
-
-#: ../../godmode/groups/group_list.php:1032
-msgid "Found groups"
-msgstr ""
-
-#: ../../godmode/groups/group_list.php:1040
-#: ../../godmode/module_library/module_library_view.php:156
-#: ../../include/class/Diagnostics.class.php:551
-#: ../../include/lib/Dashboard/Widgets/tree_view.php:649
-#: ../../operation/tree.php:442
-msgid "Total modules"
-msgstr ""
-
-#: ../../godmode/groups/group_list.php:1041
-#: ../../include/functions_reporting_html.php:2146
-#: ../../include/functions_reporting_html.php:2156
-#: ../../include/functions_alerts.php:3382
-#: ../../include/lib/Dashboard/Widgets/tree_view.php:650
-#: ../../operation/tree.php:443 ../../operation/agentes/group_view.php:220
-msgid "Total"
-msgstr ""
-
-#: ../../godmode/groups/group_list.php:1044
-#: ../../godmode/groups/group_list.php:1045
-#: ../../godmode/groups/group_list.php:1046
-#: ../../include/functions_graph.php:2622
-#: ../../include/functions_reporting.php:10821
-#: ../../include/functions_reporting.php:10844
-#: ../../include/lib/Dashboard/Widgets/tree_view.php:653
-#: ../../include/lib/Dashboard/Widgets/tree_view.php:654
-#: ../../include/lib/Dashboard/Widgets/tree_view.php:655
-#: ../../operation/tree.php:446 ../../operation/tree.php:447
-#: ../../operation/tree.php:448
-msgid "Fired alerts"
-msgstr ""
-
-#: ../../godmode/groups/group_list.php:1049
-#: ../../include/lib/Dashboard/Widgets/tree_view.php:658
-#: ../../operation/tree.php:451
-msgid "Critical agents"
-msgstr ""
-
-#: ../../godmode/groups/group_list.php:1050
-#: ../../mobile/operation/groups.php:170
-#: ../../include/lib/Dashboard/Widgets/tree_view.php:659
-#: ../../operation/tree.php:452
-msgid "Critical modules"
-msgstr ""
-
-#: ../../godmode/groups/group_list.php:1054
-#: ../../include/lib/Dashboard/Widgets/tree_view.php:663
-#: ../../operation/tree.php:456
-msgid "Warning agents"
-msgstr ""
-
-#: ../../godmode/groups/group_list.php:1055
-#: ../../mobile/operation/groups.php:167
-#: ../../include/lib/Dashboard/Widgets/tree_view.php:664
-#: ../../operation/tree.php:457
-msgid "Warning modules"
-msgstr ""
-
-#: ../../godmode/groups/group_list.php:1059
-#: ../../include/lib/Dashboard/Widgets/tree_view.php:668
-#: ../../operation/tree.php:461
-msgid "Unknown agents"
-msgstr ""
-
-#: ../../godmode/groups/group_list.php:1060
-#: ../../mobile/operation/groups.php:158
-#: ../../include/lib/Dashboard/Widgets/tree_view.php:669
-#: ../../operation/tree.php:462
-msgid "Unknown modules"
-msgstr ""
-
-#: ../../godmode/groups/group_list.php:1064
-#: ../../include/lib/Dashboard/Widgets/tree_view.php:673
-#: ../../operation/tree.php:466
-msgid "Not init agents"
-msgstr ""
-
-#: ../../godmode/groups/group_list.php:1065
-#: ../../mobile/operation/groups.php:161
-#: ../../include/lib/Dashboard/Widgets/tree_view.php:674
-#: ../../operation/tree.php:467
-msgid "Not init modules"
-msgstr ""
-
-#: ../../godmode/groups/group_list.php:1066
-#: ../../godmode/massive/massive_copy_modules.php:119
-#: ../../godmode/massive/massive_copy_modules.php:279
-#: ../../godmode/massive/massive_delete_modules.php:418
-#: ../../godmode/massive/massive_delete_modules.php:439
-#: ../../godmode/massive/massive_delete_agents.php:213
-#: ../../godmode/massive/massive_edit_agents.php:446
-#: ../../godmode/massive/massive_edit_modules.php:378
-#: ../../godmode/massive/massive_edit_modules.php:464
-#: ../../godmode/reporting/reporting_builder.item_editor.php:3526
-#: ../../mobile/operation/modules.php:57
-#: ../../include/functions_reporting_html.php:644
-#: ../../include/functions_reporting_html.php:2161
-#: ../../include/functions_reporting_html.php:4187
-#: ../../include/lib/Dashboard/Widgets/tree_view.php:389
-#: ../../include/lib/Dashboard/Widgets/tree_view.php:422
-#: ../../include/lib/Dashboard/Widgets/tree_view.php:675
-#: ../../operation/tree.php:214 ../../operation/tree.php:267
-#: ../../operation/tree.php:468 ../../operation/agentes/estado_agente.php:275
-#: ../../operation/agentes/status_monitor.php:498
-#: ../../operation/agentes/group_view.php:222
-#: ../../operation/agentes/group_view.php:227
-#: ../../operation/agentes/tactical.php:182
-msgid "Not init"
-msgstr ""
-
-#: ../../godmode/groups/group_list.php:1069
-#: ../../include/lib/Dashboard/Widgets/tree_view.php:678
-#: ../../operation/tree.php:471
-msgid "Normal agents"
-msgstr ""
-
-#: ../../godmode/groups/group_list.php:1070
-#: ../../mobile/operation/groups.php:164
-#: ../../include/lib/Dashboard/Widgets/tree_view.php:679
-#: ../../operation/tree.php:472
-msgid "Normal modules"
-msgstr ""
-
-#: ../../godmode/groups/group_list.php:1071
-#: ../../godmode/netflow/nf_edit_form.php:235
-#: ../../godmode/massive/massive_copy_modules.php:114
-#: ../../godmode/massive/massive_copy_modules.php:274
-#: ../../godmode/massive/massive_delete_modules.php:413
-#: ../../godmode/massive/massive_delete_modules.php:434
-#: ../../godmode/massive/massive_delete_agents.php:208
-#: ../../godmode/massive/massive_edit_agents.php:441
-#: ../../godmode/massive/massive_edit_modules.php:373
-#: ../../godmode/massive/massive_edit_modules.php:459
-#: ../../godmode/reporting/reporting_builder.item_editor.php:3521
-#: ../../mobile/operation/agents.php:40 ../../mobile/operation/modules.php:51
-#: ../../include/functions_reporting_html.php:2157
-#: ../../include/functions.php:1030 ../../include/functions.php:1270
-#: ../../include/functions.php:1277 ../../include/functions.php:1310
-#: ../../include/functions_graph.php:3534
-#: ../../include/functions_graph.php:3535
-#: ../../include/functions_graph.php:5104
-#: ../../include/rest-api/models/VisualConsole/Items/Group.php:429
-#: ../../include/lib/Dashboard/Widgets/system_group_status.php:311
-#: ../../include/lib/Dashboard/Widgets/tree_view.php:385
-#: ../../include/lib/Dashboard/Widgets/tree_view.php:418
-#: ../../include/lib/Dashboard/Widgets/tree_view.php:680
-#: ../../include/functions_events.php:3292 ../../operation/tree.php:210
-#: ../../operation/tree.php:263 ../../operation/tree.php:473
-#: ../../operation/agentes/estado_agente.php:270
-#: ../../operation/agentes/status_monitor.php:492
-#: ../../operation/agentes/group_view.php:223
-#: ../../operation/agentes/group_view.php:228
-#: ../../operation/agentes/estado_monitores.php:523
-#: ../../operation/agentes/tactical.php:180
-#: ../../operation/netflow/nf_live_view.php:384
-msgid "Normal"
-msgstr ""
-
-#: ../../godmode/groups/configure_modu_group.php:28
-msgid "Module group management"
-msgstr ""
-
-#: ../../godmode/groups/modu_group_list.php:70
-#, php-format
-msgid "Module groups defined in %s"
-msgstr ""
-
-#: ../../godmode/groups/modu_group_list.php:92
-#, php-format
-msgid ""
-"This node is configured with centralized mode. All module groups information "
-"is read only. Go to %s to manage it."
-msgstr ""
-
-#: ../../godmode/groups/modu_group_list.php:127
-#: ../../godmode/groups/modu_group_list.php:163
-msgid "Each module group must have a different name"
-msgstr ""
-
-#: ../../godmode/groups/modu_group_list.php:131
-#: ../../godmode/groups/modu_group_list.php:167
-msgid "Module group must have a name"
-msgstr ""
-
-#: ../../godmode/groups/modu_group_list.php:294
-msgid "There are no defined module groups"
-msgstr ""
-
-#: ../../godmode/groups/modu_group_list.php:303
-msgid "Create module group"
-msgstr ""
-
-#: ../../godmode/extensions.php:28
-msgid "Extensions"
-msgstr ""
-
-#: ../../godmode/extensions.php:28
-msgid "Defined extensions"
-msgstr ""
-
-#: ../../godmode/extensions.php:33
-msgid "There are no extensions defined"
-msgstr ""
-
-#: ../../godmode/extensions.php:139
-#: ../../godmode/reporting/reporting_builder.item_editor.php:76
-#: ../../godmode/servers/servers.build_table.php:68
-#: ../../include/functions_reporting_html.php:1516
-#: ../../include/functions_snmp_browser.php:746
-msgid "Version"
-msgstr ""
-
-#: ../../godmode/extensions.php:140 ../../godmode/setup/setup.php:314
-msgid "Enterprise"
-msgstr ""
-
-#: ../../godmode/extensions.php:141
-msgid "Godmode Function"
-msgstr ""
-
-#: ../../godmode/extensions.php:142
-msgid "Godmode Menu"
-msgstr ""
-
-#: ../../godmode/extensions.php:143
-msgid "Operation Menu"
-msgstr ""
-
-#: ../../godmode/extensions.php:144
-msgid "Operation Function"
-msgstr ""
-
-#: ../../godmode/extensions.php:145
-msgid "Login Function"
-msgstr ""
-
-#: ../../godmode/extensions.php:146
-msgid "Agent operation tab"
-msgstr ""
-
-#: ../../godmode/extensions.php:147
-msgid "Agent godmode tab"
-msgstr ""
-
-#: ../../godmode/extensions.php:257 ../../godmode/users/user_list.php:721
-#: ../../godmode/alerts/alert_list.list.php:1027
-#: ../../operation/users/user_edit_notifications.php:64
-msgid "Enable"
-msgstr ""
-
-#: ../../godmode/extensions.php:259 ../../godmode/users/user_list.php:716
-#: ../../godmode/alerts/alert_list.list.php:1000
-#: ../../include/functions.php:3340
-msgid "Disable"
-msgstr ""
-
-#: ../../godmode/update_manager/update_manager.setup.php:143
-#: ../../godmode/update_manager/update_manager.setup.php:202
-msgid "Succesful Update the url config vars."
-msgstr ""
-
-#: ../../godmode/update_manager/update_manager.setup.php:144
-#: ../../godmode/update_manager/update_manager.setup.php:203
-msgid "Unsuccesful Update the url config vars."
-msgstr ""
-
-#: ../../godmode/update_manager/update_manager.setup.php:229
-msgid "URL update manager:"
-msgstr ""
-
-#: ../../godmode/update_manager/update_manager.setup.php:233
-msgid "URL update manager"
-msgstr ""
-
-#: ../../godmode/update_manager/update_manager.setup.php:239
-msgid "Use secured update manager:"
-msgstr ""
-
-#: ../../godmode/update_manager/update_manager.setup.php:248
-msgid "Proxy server:"
-msgstr ""
-
-#: ../../godmode/update_manager/update_manager.setup.php:252
-msgid "Proxy server"
-msgstr ""
-
-#: ../../godmode/update_manager/update_manager.setup.php:258
-msgid "Proxy port:"
-msgstr ""
-
-#: ../../godmode/update_manager/update_manager.setup.php:262
-msgid "Proxy port"
-msgstr ""
-
-#: ../../godmode/update_manager/update_manager.setup.php:268
-msgid "Proxy user:"
-msgstr ""
-
-#: ../../godmode/update_manager/update_manager.setup.php:272
-msgid "Proxy user"
-msgstr ""
-
-#: ../../godmode/update_manager/update_manager.setup.php:278
-msgid "Proxy password:"
-msgstr ""
-
-#: ../../godmode/update_manager/update_manager.setup.php:282
-msgid "Proxy password"
-msgstr ""
-
-#: ../../godmode/update_manager/update_manager.setup.php:289
-msgid "Registration ID:"
-msgstr ""
-
-#: ../../godmode/update_manager/update_manager.setup.php:293
-msgid "Cancel registration:"
-msgstr ""
-
-#: ../../godmode/update_manager/update_manager.setup.php:305
-msgid "Unregister"
-msgstr ""
-
-#: ../../godmode/update_manager/update_manager.setup.php:312
-msgid "Pandora FMS community reminder"
-msgstr ""
-
-#: ../../godmode/update_manager/update_manager.setup.php:312
-msgid ""
-"Every 8 days, a message is displayed to admin users to remember to register "
-"this Pandora instance"
-msgstr ""
-
-#: ../../godmode/update_manager/update_manager.setup.php:313
-#: ../../godmode/users/configure_user.php:1076
-#: ../../godmode/agentes/agent_conf_gis.php:125
-#: ../../godmode/massive/massive_edit_agents.php:573
-#: ../../godmode/massive/massive_edit_agents.php:740
-#: ../../godmode/massive/massive_edit_agents.php:749
-#: ../../godmode/massive/massive_edit_modules.php:604
-#: ../../godmode/massive/massive_edit_modules.php:626
-#: ../../godmode/massive/massive_edit_modules.php:695
-#: ../../godmode/massive/massive_edit_modules.php:717
-#: ../../godmode/massive/massive_edit_modules.php:757
-#: ../../godmode/massive/massive_edit_modules.php:1031
-#: ../../godmode/massive/massive_edit_modules.php:1069
-#: ../../godmode/massive/massive_edit_modules.php:1097
-#: ../../godmode/alerts/alert_view.php:106
-#: ../../godmode/alerts/alert_view.php:311
-#: ../../godmode/reporting/reporting_builder.main.php:194
-#: ../../godmode/reporting/reporting_builder.php:1101
-#: ../../godmode/reporting/visual_console_builder.wizard.php:380
-#: ../../godmode/reporting/visual_console_builder.wizard.php:467
-#: ../../godmode/servers/modificar_server.php:47
-#: ../../include/functions_reporting_html.php:1552
-#: ../../include/functions_profile.php:276 ../../include/functions_snmp.php:390
-#: ../../operation/users/user_edit.php:320
-#: ../../operation/netflow/nf_live_view.php:452
-#: ../../operation/snmpconsole/snmp_view.php:653
-msgid "Yes"
-msgstr ""
-
-#: ../../godmode/update_manager/update_manager.setup.php:314
-#: ../../godmode/users/configure_user.php:1077
-#: ../../godmode/agentes/agent_conf_gis.php:126
-#: ../../godmode/massive/massive_edit_agents.php:574
-#: ../../godmode/massive/massive_edit_agents.php:741
-#: ../../godmode/massive/massive_edit_agents.php:750
-#: ../../godmode/massive/massive_edit_modules.php:605
-#: ../../godmode/massive/massive_edit_modules.php:627
-#: ../../godmode/massive/massive_edit_modules.php:696
-#: ../../godmode/massive/massive_edit_modules.php:718
-#: ../../godmode/massive/massive_edit_modules.php:758
-#: ../../godmode/massive/massive_edit_modules.php:1031
-#: ../../godmode/massive/massive_edit_modules.php:1070
-#: ../../godmode/massive/massive_edit_modules.php:1098
-#: ../../godmode/alerts/alert_view.php:106
-#: ../../godmode/alerts/alert_view.php:311
-#: ../../godmode/alerts/alert_view.php:388 ../../godmode/setup/news.php:287
-#: ../../godmode/reporting/reporting_builder.main.php:204
-#: ../../godmode/reporting/reporting_builder.php:1103
-#: ../../godmode/reporting/visual_console_builder.wizard.php:390
-#: ../../godmode/reporting/visual_console_builder.wizard.php:468
-#: ../../godmode/servers/modificar_server.php:45
-#: ../../mobile/operation/events.php:195 ../../mobile/operation/events.php:200
-#: ../../include/functions_reporting_html.php:1552
-#: ../../include/functions_profile.php:276 ../../include/functions_snmp.php:382
-#: ../../include/functions_events.php:4961
-#: ../../include/functions_events.php:4966
-#: ../../operation/users/user_edit.php:321
-#: ../../operation/netflow/nf_live_view.php:462
-#: ../../operation/snmpconsole/snmp_view.php:654
-msgid "No"
-msgstr ""
-
-#: ../../godmode/update_manager/update_manager.php:42
-msgid "Offline update manager"
-msgstr ""
-
-#: ../../godmode/update_manager/update_manager.php:47
-msgid "Online update manager"
-msgstr ""
-
-#: ../../godmode/update_manager/update_manager.php:53
-msgid "Update manager » Setup"
-msgstr ""
-
-#: ../../godmode/update_manager/update_manager.php:57
-msgid "Update manager » Offline"
-msgstr ""
-
-#: ../../godmode/update_manager/update_manager.php:62
-msgid "Update manager » Online"
-msgstr ""
-
-#: ../../godmode/users/profile_list.php:63
-#: ../../godmode/users/profile_list.php:84
-#: ../../godmode/users/configure_profile.php:55
-#: ../../godmode/users/configure_profile.php:76
-#: ../../godmode/users/user_list.php:214 ../../godmode/users/user_list.php:239
-#: ../../godmode/users/user_list.php:250
-#: ../../godmode/users/configure_user.php:223
-#: ../../operation/users/user_edit_header.php:91
-msgid "User management"
-msgstr ""
-
-#: ../../godmode/users/profile_list.php:74
-#: ../../godmode/users/configure_profile.php:66
-#: ../../godmode/users/user_list.php:225
-#: ../../godmode/users/configure_user.php:234 ../../godmode/menu.php:130
-msgid "Profile management"
-msgstr ""
-
-#: ../../godmode/users/profile_list.php:84
-#: ../../godmode/users/configure_profile.php:76
-#, php-format
-msgid "Profiles defined on %s"
-msgstr ""
-
-#: ../../godmode/users/profile_list.php:115
-#, php-format
-msgid ""
-"This node is configured with centralized mode. All profiles information is "
-"read only. Go to %s to manage it."
-msgstr ""
-
-#: ../../godmode/users/profile_list.php:127
-#: ../../godmode/users/user_list.php:329
-msgid "There was a problem deleting the profile"
-msgstr ""
-
-#: ../../godmode/users/profile_list.php:254
-msgid "There was a problem updating this profile"
-msgstr ""
-
-#: ../../godmode/users/profile_list.php:257
-msgid "Profile name cannot be empty"
-msgstr ""
-
-#: ../../godmode/users/profile_list.php:303
-#: ../../godmode/users/profile_list.php:306
-msgid "There was a problem creating this profile"
-msgstr ""
-
-#: ../../godmode/users/profile_list.php:349
-#: ../../godmode/users/user_list.php:465
-#: ../../godmode/alerts/alert_list.list.php:482
-#: ../../godmode/alerts/alert_templates.php:392
-#: ../../godmode/reporting/reporting_builder.list_items.php:427
-#: ../../godmode/reporting/graphs.php:313
-#: ../../godmode/reporting/reporting_builder.php:968
-#: ../../godmode/reporting/reporting_builder.php:1165
-#: ../../godmode/servers/servers.build_table.php:77
-#: ../../godmode/servers/plugin.php:818
-#: ../../include/functions_container.php:157
-#: ../../operation/gis_maps/gis_map.php:109
-msgid "Op."
-msgstr ""
-
-#: ../../godmode/users/profile_list.php:456
-msgid "There are no defined profiles"
-msgstr ""
-
-#: ../../godmode/users/configure_profile.php:142
-msgid "Create profile"
-msgstr ""
-
-#: ../../godmode/users/configure_profile.php:147
-msgid "There was a problem loading profile"
-msgstr ""
-
-#: ../../godmode/users/configure_profile.php:239
-msgid "Update profile"
-msgstr ""
-
-#: ../../godmode/users/configure_profile.php:249
-msgid "Update Profile"
-msgstr ""
-
-#: ../../godmode/users/configure_profile.php:251
-msgid "Create Profile"
-msgstr ""
-
-#: ../../godmode/users/configure_profile.php:265
-#: ../../godmode/massive/massive_delete_profiles.php:139
-#: ../../godmode/massive/massive_add_profiles.php:135
-#: ../../include/functions_profile.php:213
-#: ../../operation/users/user_edit.php:812
-msgid "Profile name"
-msgstr ""
-
-#: ../../godmode/users/configure_profile.php:272
-msgid "View agents"
-msgstr ""
-
-#: ../../godmode/users/configure_profile.php:276
-msgid "Disable agents"
-msgstr ""
-
-#: ../../godmode/users/configure_profile.php:280
-msgid "Edit agents"
-msgstr ""
-
-#: ../../godmode/users/configure_profile.php:287
-msgid "Edit alerts"
-msgstr ""
-
-#: ../../godmode/users/configure_profile.php:291
-#: ../../godmode/alerts/alert_list.php:452
-#: ../../godmode/alerts/alert_list.php:454
-msgid "Manage alerts"
-msgstr ""
-
-#: ../../godmode/users/configure_profile.php:298 ../../operation/menu.php:376
-msgid "View events"
-msgstr ""
-
-#: ../../godmode/users/configure_profile.php:302
-msgid "Edit events"
-msgstr ""
-
-#: ../../godmode/users/configure_profile.php:306
-#: ../../godmode/events/events.php:116 ../../godmode/events/events.php:124
-#: ../../operation/events/events.php:882
-msgid "Manage events"
-msgstr ""
-
-#: ../../godmode/users/configure_profile.php:313
-msgid "View reports"
-msgstr ""
-
-#: ../../godmode/users/configure_profile.php:317
-msgid "Edit reports"
-msgstr ""
-
-#: ../../godmode/users/configure_profile.php:321
-msgid "Manage reports"
-msgstr ""
-
-#: ../../godmode/users/configure_profile.php:328
-msgid "View network maps"
-msgstr ""
-
-#: ../../godmode/users/configure_profile.php:332
-msgid "Edit network maps"
-msgstr ""
-
-#: ../../godmode/users/configure_profile.php:336
-msgid "Manage network maps"
-msgstr ""
-
-#: ../../godmode/users/configure_profile.php:343
-#: ../../include/functions_menu.php:493
-msgid "View visual console"
-msgstr ""
-
-#: ../../godmode/users/configure_profile.php:347
-msgid "Edit visual console"
-msgstr ""
-
-#: ../../godmode/users/configure_profile.php:351
-msgid "Manage visual console"
-msgstr ""
-
-#: ../../godmode/users/configure_profile.php:363
-msgid "View NCM data"
-msgstr ""
-
-#: ../../godmode/users/configure_profile.php:367
-msgid "Operate NCM"
-msgstr ""
-
-#: ../../godmode/users/configure_profile.php:371
-msgid "Manage NCM"
-msgstr ""
-
-#: ../../godmode/users/configure_profile.php:378
-msgid "Manage users"
-msgstr ""
-
-#: ../../godmode/users/configure_profile.php:385
-msgid "Manage database"
-msgstr ""
-
-#: ../../godmode/users/configure_profile.php:392
-#, php-format
-msgid "%s management"
-msgstr ""
-
-#: ../../godmode/users/user_list.php:250
-#, php-format
-msgid "Users defined on %s"
-msgstr ""
-
-#: ../../godmode/users/user_list.php:275
-#: ../../godmode/users/configure_user.php:151
-#, php-format
-msgid "Deleted user %s"
-msgstr ""
-
-#: ../../godmode/users/user_list.php:282 ../../godmode/users/user_list.php:320
-#: ../../godmode/users/configure_user.php:158
-msgid "There was a problem deleting the user"
-msgstr ""
-
-#: ../../godmode/users/user_list.php:296
-#: ../../godmode/users/configure_user.php:173
-#, php-format
-msgid "Deleted user %s from metaconsole"
-msgstr ""
-
-#: ../../godmode/users/user_list.php:308
-#: ../../godmode/users/configure_user.php:184
-#, php-format
-msgid "Deleted user %s from %s"
-msgstr ""
-
-#: ../../godmode/users/user_list.php:314
-#: ../../godmode/users/configure_user.php:190
-#, php-format
-msgid "Successfully deleted from %s"
-msgstr ""
-
-#: ../../godmode/users/user_list.php:315
-#: ../../godmode/users/configure_user.php:191
-#, php-format
-msgid "There was a problem deleting the user from %s"
-msgstr ""
-
-#: ../../godmode/users/user_list.php:344
-#: ../../godmode/agentes/configurar_agente.php:2254
-#: ../../godmode/agentes/modificar_agente.php:277
-#: ../../godmode/massive/massive_enable_disable_alerts.php:120
-#: ../../godmode/alerts/alert_list.php:363
-#: ../../include/ajax/alert_list.ajax.php:365
-msgid "Successfully disabled"
-msgstr ""
-
-#: ../../godmode/users/user_list.php:345
-msgid "There was a problem disabling user"
-msgstr ""
-
-#: ../../godmode/users/user_list.php:350
-#: ../../godmode/agentes/configurar_agente.php:2235
-#: ../../godmode/agentes/modificar_agente.php:234
-#: ../../godmode/massive/massive_enable_disable_alerts.php:102
-#: ../../godmode/alerts/alert_list.php:342
-#: ../../include/ajax/alert_list.ajax.php:344
-msgid "Successfully enabled"
-msgstr ""
-
-#: ../../godmode/users/user_list.php:351
-msgid "There was a problem enabling user"
-msgstr ""
-
-#: ../../godmode/users/user_list.php:380 ../../godmode/users/user_list.php:384
-msgid "Search by username, fullname or email"
-msgstr ""
-
-#: ../../godmode/users/user_list.php:410
-#: ../../operation/users/user_edit.php:251
-#, php-format
-msgid ""
-"This node is configured with centralized mode. All users information is read "
-"only. Go to %s to manage it."
-msgstr ""
-
-#: ../../godmode/users/user_list.php:429
-msgid "Users control filter"
-msgstr ""
-
-#: ../../godmode/users/user_list.php:430
-#: ../../godmode/snmpconsole/snmp_alert.php:1060
-#: ../../godmode/alerts/alert_list.list.php:178
-#: ../../operation/agentes/alerts_status.php:495
-#: ../../operation/agentes/graphs.php:269
-#: ../../operation/snmpconsole/snmp_view.php:714
-#: ../../operation/snmpconsole/snmp_view.php:813
-msgid "Toggle filter(s)"
-msgstr ""
-
-#: ../../godmode/users/user_list.php:457
-#: ../../godmode/users/configure_user.php:829
-#: ../../godmode/users/configure_user.php:845
-#: ../../include/functions_reporting_html.php:4792
-#: ../../include/functions_reporting_html.php:5990
-#: ../../include/functions_reporting_html.php:6013
-#: ../../operation/search_users.php:42 ../../operation/users/user_edit.php:258
-#: ../../operation/snmpconsole/snmp_view.php:876
-msgid "User ID"
-msgstr ""
-
-#: ../../godmode/users/user_list.php:461 ../../godmode/users/user_list.php:640
-#: ../../operation/search_users.php:61
-msgid "Admin"
-msgstr ""
-
-#: ../../godmode/users/user_list.php:462
-msgid "Profile / Group"
-msgstr ""
-
-#: ../../godmode/users/user_list.php:641
-#: ../../godmode/users/configure_user.php:961
-#: ../../operation/search_users.php:62
-msgid "Administrator"
-msgstr ""
-
-#: ../../godmode/users/user_list.php:669
-#: ../../include/class/ConfigPEN.class.php:252
-#: ../../include/class/CredentialStore.class.php:1086
-#: ../../operation/agentes/interface_view.functions.php:120
-#: ../../operation/agentes/interface_view.functions.php:158
-#: ../../operation/agentes/status_monitor.php:538
-msgid "Show"
-msgstr ""
-
-#: ../../godmode/users/user_list.php:690
-msgid "Other profiles are also assigned."
-msgstr ""
-
-#: ../../godmode/users/user_list.php:692
-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:699
-#: ../../include/functions_reporting.php:4211
-#: ../../include/functions_reporting.php:4258
-#: ../../operation/search_users.php:86
-msgid "The user doesn't have any assigned profile/group"
-msgstr ""
-
-#: ../../godmode/users/user_list.php:849
-#: ../../godmode/users/configure_user.php:208
-msgid "Create user"
-msgstr ""
-
-#: ../../godmode/users/user_list.php:852
-#: ../../godmode/users/configure_user.php:316
-#, php-format
-msgid "The current authentication scheme doesn't support creating users on %s"
-msgstr ""
-
-#: ../../godmode/users/configure_user.php:206
-msgid "Update user"
-msgstr ""
-
-#: ../../godmode/users/configure_user.php:244
-#: ../../operation/users/user_edit.php:31
-msgid "User detail editor"
-msgstr ""
-
-#: ../../godmode/users/configure_user.php:391
-msgid "User ID cannot be empty"
-msgstr ""
-
-#: ../../godmode/users/configure_user.php:398
-msgid "Invalid user ID: leading or trailing blank spaces not allowed"
-msgstr ""
-
-#: ../../godmode/users/configure_user.php:406
-msgid "Passwords cannot be empty"
-msgstr ""
-
-#: ../../godmode/users/configure_user.php:413
-msgid "Passwords didn't match"
-msgstr ""
-
-#: ../../godmode/users/configure_user.php:472
-msgid ""
-"Strict ACL is not recommended for admin users because performance could be "
-"affected."
-msgstr ""
-
-#: ../../godmode/users/configure_user.php:507
-#: ../../godmode/users/configure_user.php:783
-msgid "Profile added successfully"
-msgstr ""
-
-#: ../../godmode/users/configure_user.php:508
-#: ../../godmode/users/configure_user.php:784
-msgid "Profile cannot be added"
-msgstr ""
-
-#: ../../godmode/users/configure_user.php:620
-#: ../../godmode/users/configure_user.php:644
-#: ../../godmode/users/configure_user.php:714
-#: ../../godmode/users/configure_user.php:721
-#: ../../godmode/users/configure_user.php:753
-#: ../../operation/users/user_edit.php:184
-#: ../../operation/users/user_edit.php:229
-msgid "User info successfully updated"
-msgstr ""
-
-#: ../../godmode/users/configure_user.php:621
-#: ../../godmode/users/configure_user.php:645
-#: ../../godmode/users/configure_user.php:715
-#: ../../godmode/users/configure_user.php:722
-#: ../../godmode/users/configure_user.php:754
-msgid "Error updating user info (no change?)"
-msgstr ""
-
-#: ../../godmode/users/configure_user.php:650
-msgid "Password of the active user is required to perform password change"
-msgstr ""
-
-#: ../../godmode/users/configure_user.php:652
-msgid "Password of active user is not correct"
-msgstr ""
-
-#: ../../godmode/users/configure_user.php:668
-msgid "Passwords does not match"
-msgstr ""
-
-#: ../../godmode/users/configure_user.php:743
-msgid ""
-"Strict ACL is not recommended for this user. Performance could be affected."
-msgstr ""
-
-#: ../../godmode/users/configure_user.php:822
-msgid "Update User"
-msgstr ""
-
-#: ../../godmode/users/configure_user.php:824
-msgid "Create User"
-msgstr ""
-
-#: ../../godmode/users/configure_user.php:876
-#: ../../operation/users/user_edit.php:272
-msgid "Full (display) name"
-msgstr ""
-
-#: ../../godmode/users/configure_user.php:881
-#: ../../operation/users/user_edit.php:324
-msgid "Language"
-msgstr ""
-
-#: ../../godmode/users/configure_user.php:893
-#: ../../operation/users/user_edit.php:418
-msgid "Timezone"
-msgstr ""
-
-#: ../../godmode/users/configure_user.php:894
-#: ../../operation/users/user_edit.php:418
-msgid "The timezone must be that of the associated server."
-msgstr ""
-
-#: ../../godmode/users/configure_user.php:927
-#: ../../operation/users/user_edit.php:298
-msgid "Password confirmation"
-msgstr ""
-
-#: ../../godmode/users/configure_user.php:945
-msgid "Own password confirmation"
-msgstr ""
-
-#: ../../godmode/users/configure_user.php:954
-msgid "Global Profile"
-msgstr ""
-
-#: ../../godmode/users/configure_user.php:962
-msgid ""
-"This user has permissions to manage all. An admin user should not requiere "
-"additional group permissions, except for using Enterprise ACL."
-msgstr ""
-
-#: ../../godmode/users/configure_user.php:976
-#: ../../operation/search_users.php:71
-msgid "Standard User"
-msgstr ""
-
-#: ../../godmode/users/configure_user.php:977
-msgid ""
-"This user has separated permissions to view data in his group agents, create "
-"incidents belong to his groups, add notes in another incidents, create "
-"personal assignments or reviews and other tasks, on different profiles"
-msgstr ""
-
-#: ../../godmode/users/configure_user.php:998
-#: ../../operation/users/user_edit.php:291
-msgid "E-mail"
-msgstr ""
-
-#: ../../godmode/users/configure_user.php:1014
-#: ../../operation/users/user_edit.php:293
-msgid "Phone number"
-msgstr ""
-
-#: ../../godmode/users/configure_user.php:1019
-#: ../../mobile/operation/events.php:561
-#: ../../include/functions_reporting_html.php:5502
-#: ../../include/functions.php:3036 ../../include/ajax/events.php:1448
-#: ../../include/class/AuditLog.class.php:112
-#: ../../operation/users/user_edit.php:605
-#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:317
-#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:410
-#: ../../general/logon_ok.php:251
-msgid "Comments"
-msgstr ""
-
-#: ../../godmode/users/configure_user.php:1049
-#: ../../operation/users/user_edit.php:400
-#: ../../operation/users/user_edit.php:409
-msgid "Skin"
-msgstr ""
-
-#: ../../godmode/users/configure_user.php:1058
-msgid "Search custom field view"
-msgstr ""
-
-#: ../../godmode/users/configure_user.php:1058
-msgid "Load by default the selected view in custom field view"
-msgstr ""
-
-#: ../../godmode/users/configure_user.php:1075
-msgid "Use global conf"
-msgstr ""
-
-#: ../../godmode/users/configure_user.php:1080
-#: ../../operation/users/user_edit.php:353
-msgid "Home screen"
-msgstr ""
-
-#: ../../godmode/users/configure_user.php:1081
-#: ../../operation/users/user_edit.php:353
-msgid ""
-"User can customize the home page. By default, will display 'Agent Detail'. "
-"Example: Select 'Other' and type index.php?sec=estado&sec2=operation/agentes/"
-"ver_agente&id_agente=1 to show agent detail view"
-msgstr ""
-
-#: ../../godmode/users/configure_user.php:1088
-#: ../../godmode/events/events.php:41 ../../operation/users/user_edit.php:357
-#: ../../operation/events/events.php:825
-msgid "Event list"
-msgstr ""
-
-#: ../../godmode/users/configure_user.php:1090
-#: ../../mobile/operation/home.php:45 ../../mobile/operation/tactical.php:97
-#: ../../include/lib/Dashboard/Widgets/tactical.php:176
-#: ../../include/lib/Dashboard/Widgets/tactical.php:482
-#: ../../operation/users/user_edit.php:359
-#: ../../operation/agentes/tactical.php:69 ../../operation/menu.php:45
-msgid "Tactical view"
-msgstr ""
-
-#: ../../godmode/users/configure_user.php:1091
-#: ../../operation/users/user_edit.php:360
-#: ../../operation/agentes/alerts_status.php:185 ../../operation/menu.php:66
-msgid "Alert detail"
-msgstr ""
-
-#: ../../godmode/users/configure_user.php:1092
-msgid "External link"
-msgstr ""
-
-#: ../../godmode/users/configure_user.php:1096
-#: ../../mobile/include/functions_web.php:22
-#: ../../include/class/OrderInterpreter.class.php:219
-#: ../../operation/users/user_edit.php:362 ../../operation/menu.php:336
-msgid "Dashboard"
-msgstr ""
-
-#: ../../godmode/users/configure_user.php:1160
-#: ../../godmode/setup/setup_visuals.php:63
-#: ../../godmode/events/event_edit_filter.php:387
-#: ../../include/functions_config.php:956
-#: ../../operation/users/user_edit.php:307
-#: ../../operation/snmpconsole/snmp_view.php:555
-#: ../../operation/events/events_list.php:848
-msgid "Block size for pagination"
-msgstr ""
-
-#: ../../godmode/users/configure_user.php:1185
-msgid "Metaconsole access"
-msgstr ""
-
-#: ../../godmode/users/configure_user.php:1203
-msgid "Not Login"
-msgstr ""
-
-#: ../../godmode/users/configure_user.php:1205
-msgid "The user with not login set only can access to API."
-msgstr ""
-
-#: ../../godmode/users/configure_user.php:1215
-msgid "Session Time"
-msgstr ""
-
-#: ../../godmode/users/configure_user.php:1217
-msgid ""
-"This is defined in minutes, If you wish a permanent session should putting "
-"-1 in this field."
-msgstr ""
-
-#: ../../godmode/users/configure_user.php:1246
-msgid "Default event filter"
-msgstr ""
-
-#: ../../godmode/users/configure_user.php:1260
-msgid "eHorus user access enabled"
-msgstr ""
-
-#: ../../godmode/users/configure_user.php:1268
-#: ../../include/functions_config.php:1620
-msgid "eHorus user"
-msgstr ""
-
-#: ../../godmode/users/configure_user.php:1277
-#: ../../include/functions_config.php:1624
-msgid "eHorus password"
-msgstr ""
-
-#: ../../godmode/users/configure_user.php:1292
-#: ../../godmode/setup/setup_auth.php:220
-#: ../../include/functions_config.php:732
-#: ../../operation/users/user_edit.php:425
-msgid "Double authentication"
-msgstr ""
-
-#: ../../godmode/users/configure_user.php:1300
-msgid "User must be created before activating double authentication."
-msgstr ""
-
-#: ../../godmode/users/configure_user.php:1310
-#: ../../operation/users/user_edit.php:439
-msgid "Show information"
-msgstr ""
-
-#: ../../godmode/users/configure_user.php:1328
-msgid "Enable agents managment"
-msgstr ""
-
-#: ../../godmode/users/configure_user.php:1336
-msgid "Assigned node"
-msgstr ""
-
-#: ../../godmode/users/configure_user.php:1336
-msgid "Server where the agents created of this user will be placed"
-msgstr ""
-
-#: ../../godmode/users/configure_user.php:1345
-msgid "Enable node access"
-msgstr ""
-
-#: ../../godmode/users/configure_user.php:1345
-msgid "With this option enabled, the user will can access to nodes console"
-msgstr ""
-
-#: ../../godmode/users/configure_user.php:1562
-msgid "yes"
-msgstr ""
-
-#: ../../godmode/users/configure_user.php:1565
-msgid "no"
-msgstr ""
-
-#: ../../godmode/users/configure_user.php:1569
-msgid "please select profile and group"
-msgstr ""
-
-#: ../../godmode/users/configure_user.php:1595
-msgid "Deleting last profile will delete this user"
-msgstr ""
-
-#: ../../godmode/users/configure_user.php:1635
-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:1782
-#: ../../godmode/users/configure_user.php:1852
-#: ../../godmode/users/configure_user.php:1924
+#: ../../general/logon_failed.php:18 ../../general/register.php:154
+#: ../../operation/users/user_edit.php:1061
+#: ../../operation/users/user_edit.php:1127
+#: ../../operation/users/user_edit.php:1198
 #: ../../include/ajax/double_auth.ajax.php:252
 #: ../../include/ajax/double_auth.ajax.php:350
 #: ../../include/ajax/double_auth.ajax.php:396
 #: ../../include/ajax/double_auth.ajax.php:512
-#: ../../operation/users/user_edit.php:1060
-#: ../../operation/users/user_edit.php:1126
-#: ../../operation/users/user_edit.php:1197 ../../general/register.php:154
-#: ../../general/logon_failed.php:18
+#: ../../enterprise/include/functions_login.php:485
+#: ../../godmode/users/configure_user.php:1822
+#: ../../godmode/users/configure_user.php:1892
+#: ../../godmode/users/configure_user.php:1964
 msgid "Authentication error"
 msgstr ""
 
-#: ../../godmode/users/configure_user.php:1785
-#: ../../godmode/users/configure_user.php:1855
-#: ../../godmode/massive/massive_edit_plugins.php:851
-#: ../../godmode/massive/massive_edit_plugins.php:852
-#: ../../mobile/operation/visualmap.php:188 ../../include/functions.php:1235
+#: ../../general/logon_failed.php:30
+msgid ""
+"Either, your password or your login are incorrect. Please check your CAPS "
+"LOCK key, username and password are case SeNSiTiVe.<br><br>All actions, "
+"included failed login attempts are logged in Pandora FMS System logs, and "
+"these can be reviewed by each user, please report to admin any incident or "
+"malfunction."
+msgstr ""
+
+#: ../../general/register.php:157 ../../operation/users/user_edit.php:1064
+#: ../../operation/users/user_edit.php:1130
 #: ../../include/ajax/double_auth.ajax.php:255
 #: ../../include/ajax/double_auth.ajax.php:353
 #: ../../include/ajax/double_auth.ajax.php:399
 #: ../../include/ajax/double_auth.ajax.php:516
-#: ../../include/functions_ui.php:285
-#: ../../include/class/Diagnostics.class.php:1825
-#: ../../include/functions_events.php:2886
-#: ../../include/functions_events.php:3240
-#: ../../operation/users/user_edit.php:1063
-#: ../../operation/users/user_edit.php:1129 ../../general/register.php:157
+#: ../../include/class/Diagnostics.class.php:1827
+#: ../../include/functions_events.php:2928
+#: ../../include/functions_events.php:3283 ../../include/functions_ui.php:290
+#: ../../include/functions.php:1236
+#: ../../enterprise/include/class/CommandCenter.class.php:473
+#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:4052
+#: ../../enterprise/include/lib/Metaconsole/Node.php:593
+#: ../../enterprise/include/functions_login.php:104
+#: ../../enterprise/include/functions_login.php:488
+#: ../../enterprise/meta/include/functions_ui_meta.php:970
+#: ../../enterprise/godmode/services/services.elements.php:841
+#: ../../enterprise/godmode/services/services.elements.php:852
+#: ../../mobile/operation/visualmap.php:182
+#: ../../godmode/massive/massive_edit_plugins.php:856
+#: ../../godmode/massive/massive_edit_plugins.php:857
+#: ../../godmode/users/configure_user.php:1825
+#: ../../godmode/users/configure_user.php:1895
 msgid "Error"
 msgstr ""
 
-#: ../../godmode/users/configure_user.php:1789
-#: ../../godmode/users/configure_user.php:1859
+#: ../../general/register.php:161 ../../operation/users/user_edit.php:1068
+#: ../../operation/users/user_edit.php:1134
 #: ../../include/ajax/double_auth.ajax.php:259
 #: ../../include/ajax/double_auth.ajax.php:357
 #: ../../include/ajax/double_auth.ajax.php:403
 #: ../../include/ajax/double_auth.ajax.php:520
-#: ../../operation/users/user_edit.php:1067
-#: ../../operation/users/user_edit.php:1133 ../../general/register.php:161
+#: ../../enterprise/include/functions_login.php:492
+#: ../../godmode/users/configure_user.php:1829
+#: ../../godmode/users/configure_user.php:1899
 msgid "There was an error loading the data"
 msgstr ""
 
-#: ../../godmode/users/configure_user.php:1800
-#: ../../operation/users/user_edit.php:1078
-msgid "Double autentication information"
-msgstr ""
-
-#: ../../godmode/users/configure_user.php:1867
-#: ../../godmode/users/configure_user.php:1945
-#: ../../operation/users/user_edit.php:1141
-#: ../../operation/users/user_edit.php:1217 ../../general/register.php:170
+#: ../../general/register.php:170 ../../operation/users/user_edit.php:1142
+#: ../../operation/users/user_edit.php:1218
+#: ../../enterprise/include/functions_login.php:501
+#: ../../godmode/users/configure_user.php:1907
+#: ../../godmode/users/configure_user.php:1985
 msgid "Double autentication activation"
 msgstr ""
 
-#: ../../godmode/users/configure_user.php:1890
-#: ../../operation/users/user_edit.php:1167
-msgid "The double authentication will be deactivated"
-msgstr ""
-
-#: ../../godmode/users/configure_user.php:1891
-#: ../../operation/users/user_edit.php:1168
-msgid "Deactivate"
-msgstr ""
-
-#: ../../godmode/users/configure_user.php:1927
-#: ../../operation/users/user_edit.php:1200
-msgid "The double autentication was deactivated successfully"
-msgstr ""
-
-#: ../../godmode/users/configure_user.php:1931
-#: ../../godmode/users/configure_user.php:1935
-#: ../../operation/users/user_edit.php:1203
-#: ../../operation/users/user_edit.php:1207
-msgid "There was an error deactivating the double autentication"
-msgstr ""
-
-#: ../../godmode/agentes/agent_template.php:67
-#: ../../include/functions_api.php:15466
-msgid "Created by template "
-msgstr ""
-
-#: ../../godmode/agentes/agent_template.php:156
-msgid "Error adding modules"
-msgstr ""
-
-#: ../../godmode/agentes/agent_template.php:158
-msgid "Error adding modules. The following errors already exists: "
-msgstr ""
-
-#: ../../godmode/agentes/agent_template.php:163
-#: ../../include/functions_api.php:15560
-msgid "Modules successfully added"
-msgstr ""
-
-#: ../../godmode/agentes/agent_template.php:188
-msgid "Assign"
-msgstr ""
-
-#: ../../godmode/agentes/agent_template.php:269
-#: ../../mobile/operation/modules.php:759
-msgid "No modules"
-msgstr ""
-
-#: ../../godmode/agentes/module_manager_editor_wmi.php:33
-#: ../../operation/agentes/status_monitor.php:635
-msgid "WMI server module"
-msgstr ""
-
-#: ../../godmode/agentes/module_manager_editor_wmi.php:45
-#: ../../godmode/agentes/module_manager_editor_network.php:80
-#: ../../godmode/massive/massive_edit_modules.php:809
-#: ../../include/class/AgentWizard.class.php:620
-#: ../../include/functions_snmp_browser.php:702
-msgid "Target IP"
-msgstr ""
-
-#: ../../godmode/agentes/module_manager_editor_wmi.php:59
-#: ../../godmode/agentes/module_manager_editor_network.php:94
-#: ../../godmode/massive/massive_edit_modules.php:805
-#: ../../include/ajax/events.php:1753
-msgid "Auto"
-msgstr ""
-
-#: ../../godmode/agentes/module_manager_editor_wmi.php:60
-#: ../../godmode/agentes/module_manager_editor_network.php:95
-#: ../../godmode/massive/massive_edit_modules.php:806
-msgid "Force primary key"
-msgstr ""
-
-#: ../../godmode/agentes/module_manager_editor_wmi.php:61
-#: ../../godmode/agentes/module_manager_editor_network.php:96
-#: ../../godmode/massive/massive_edit_modules.php:807
-#: ../../include/functions_html.php:1773 ../../include/functions_html.php:1774
-#: ../../include/functions_html.php:1884 ../../include/functions_html.php:1885
-#: ../../include/functions_html.php:2045 ../../include/functions_html.php:2046
-#: ../../include/class/CredentialStore.class.php:933
-#: ../../operation/netflow/nf_live_view.php:384
-msgid "Custom"
-msgstr ""
-
-#: ../../godmode/agentes/module_manager_editor_wmi.php:87
-msgid "Optional. WMI namespace. If unsure leave blank."
-msgstr ""
-
-#: ../../godmode/agentes/module_manager_editor_wmi.php:151
-msgid ""
-"Optional. Substring to look for in the WQL query result. The module returns "
-"1 if found, 0 if not."
-msgstr ""
-
-#: ../../godmode/agentes/module_manager_editor_wmi.php:164
-msgid ""
-"Column number to retrieve from the WQL query result (starting from zero)."
-msgstr ""
-
-#: ../../godmode/agentes/module_manager_editor_web.php:55
-#: ../../operation/agentes/status_monitor.php:643
-msgid "Web server module"
-msgstr ""
-
-#: ../../godmode/agentes/module_manager_editor_web.php:93
-#: ../../godmode/massive/massive_edit_modules.php:1129
-msgid "Web checks"
-msgstr ""
-
-#: ../../godmode/agentes/module_manager_editor_web.php:155
-msgid "Debug remotely this module"
-msgstr ""
-
-#: ../../godmode/agentes/module_manager_editor_web.php:158
-msgid "Debug this module once it has been initialized"
-msgstr ""
-
-#: ../../godmode/agentes/module_manager_editor_web.php:164
-msgid "Load basic"
-msgstr ""
-
-#: ../../godmode/agentes/module_manager_editor_web.php:170
-msgid "Load a basic structure on Web Checks"
-msgstr ""
-
-#: ../../godmode/agentes/module_manager_editor_web.php:172
-msgid "Check"
-msgstr ""
-
-#: ../../godmode/agentes/module_manager_editor_web.php:178
-msgid "Check the correct structure of the WebCheck"
-msgstr ""
-
-#: ../../godmode/agentes/module_manager_editor_web.php:180
-#: ../../include/class/WebServerModuleDebug.class.php:325
-msgid "Debug"
-msgstr ""
-
-#: ../../godmode/agentes/module_manager_editor_web.php:199
-msgid "Check type"
-msgstr ""
-
-#: ../../godmode/agentes/module_manager_editor_web.php:205
-msgid "Requests"
-msgstr ""
-
-#: ../../godmode/agentes/module_manager_editor_web.php:208
-msgid "Agent browser id"
-msgstr ""
-
-#: ../../godmode/agentes/module_manager_editor_web.php:214
-msgid "HTTP auth (login)"
-msgstr ""
-
-#: ../../godmode/agentes/module_manager_editor_web.php:217
-msgid "HTTP auth (password)"
-msgstr ""
-
-#: ../../godmode/agentes/module_manager_editor_web.php:224
-msgid "Proxy URL"
-msgstr ""
-
-#: ../../godmode/agentes/module_manager_editor_web.php:231
-msgid "Proxy auth (login)"
-msgstr ""
-
-#: ../../godmode/agentes/module_manager_editor_web.php:235
-msgid "Proxy auth (pass)"
-msgstr ""
-
-#: ../../godmode/agentes/module_manager_editor_web.php:242
-msgid "Proxy auth (server)"
-msgstr ""
-
-#: ../../godmode/agentes/module_manager_editor_web.php:246
-msgid "Proxy auth (realm)"
-msgstr ""
-
-#: ../../godmode/agentes/module_manager_editor_web.php:253
-msgid "First line must be \"task_begin\""
-msgstr ""
-
-#: ../../godmode/agentes/module_manager_editor_web.php:254
-msgid "Webchecks configuration is empty"
-msgstr ""
-
-#: ../../godmode/agentes/module_manager_editor_web.php:255
-#: ../../godmode/agentes/module_manager_editor_web.php:256
-msgid "Last line must be \"task_end\""
-msgstr ""
-
-#: ../../godmode/agentes/module_manager_editor_web.php:257
-msgid "There is a line with a unknown token 'token_fail'."
-msgstr ""
-
-#: ../../godmode/agentes/module_manager_editor_web.php:258
-msgid "There isn't get or post"
-msgstr ""
-
-#: ../../godmode/agentes/module_manager_editor_web.php:259
-msgid "Web checks are built correctly"
-msgstr ""
-
-#: ../../godmode/agentes/status_monitor_custom_fields.php:73
-#: ../../godmode/agentes/status_monitor_custom_fields.php:142
-#: ../../godmode/agentes/module_manager.php:841
-#: ../../godmode/alerts/alert_view.php:119
-#: ../../include/ajax/alert_list.ajax.php:271 ../../include/ajax/module.php:974
-#: ../../operation/agentes/alerts_status.php:531
-#: ../../operation/agentes/alerts_status.php:567
-#: ../../operation/agentes/status_monitor.php:1303
-msgid "Policy"
-msgstr ""
-
-#: ../../godmode/agentes/status_monitor_custom_fields.php:81
-#: ../../godmode/agentes/status_monitor_custom_fields.php:144
-#: ../../operation/agentes/status_monitor.php:671
-msgid "Data type"
-msgstr ""
-
-#: ../../godmode/agentes/status_monitor_custom_fields.php:89
-#: ../../godmode/agentes/status_monitor_custom_fields.php:146
-#: ../../operation/agentes/status_monitor.php:650
-#: ../../operation/agentes/status_monitor.php:1324
-msgid "Server type"
-msgstr ""
-
-#: ../../godmode/agentes/status_monitor_custom_fields.php:97
-#: ../../godmode/agentes/status_monitor_custom_fields.php:148
-#: ../../godmode/agentes/agent_incidents.php:89
-#: ../../godmode/agentes/module_manager.php:863
-#: ../../godmode/massive/massive_copy_modules.php:120
-#: ../../godmode/massive/massive_copy_modules.php:280
-#: ../../godmode/massive/massive_delete_modules.php:410
-#: ../../godmode/massive/massive_delete_agents.php:214
-#: ../../godmode/massive/massive_edit_agents.php:447
-#: ../../godmode/massive/massive_edit_agents.php:693
-#: ../../godmode/alerts/alert_list.list.php:132
-#: ../../godmode/alerts/alert_list.list.php:479
-#: ../../godmode/alerts/alert_view.php:91
-#: ../../godmode/setup/setup_integria.php:423
-#: ../../godmode/setup/setup_integria.php:545
-#: ../../godmode/reporting/reporting_builder.item_editor.php:75
-#: ../../godmode/events/custom_events.php:101
-#: ../../godmode/wizards/DiscoveryTaskList.class.php:552
-#: ../../godmode/servers/servers.build_table.php:66
-#: ../../mobile/operation/agents.php:79 ../../mobile/operation/agents.php:126
-#: ../../mobile/operation/agents.php:224 ../../mobile/operation/agents.php:225
-#: ../../mobile/operation/agents.php:387 ../../mobile/operation/modules.php:145
-#: ../../mobile/operation/modules.php:146
-#: ../../mobile/operation/modules.php:256
-#: ../../mobile/operation/modules.php:257
-#: ../../mobile/operation/modules.php:590
-#: ../../mobile/operation/modules.php:596
-#: ../../mobile/operation/modules.php:602
-#: ../../mobile/operation/modules.php:608
-#: ../../mobile/operation/modules.php:619
-#: ../../mobile/operation/modules.php:627
-#: ../../mobile/operation/modules.php:635
-#: ../../mobile/operation/modules.php:707
-#: ../../mobile/operation/modules.php:719
-#: ../../mobile/operation/modules.php:837 ../../mobile/operation/alerts.php:87
-#: ../../mobile/operation/alerts.php:88 ../../mobile/operation/alerts.php:228
-#: ../../mobile/operation/alerts.php:229 ../../mobile/operation/alerts.php:331
-#: ../../mobile/operation/events.php:368 ../../mobile/operation/events.php:369
-#: ../../mobile/operation/events.php:536 ../../mobile/operation/events.php:671
-#: ../../mobile/operation/events.php:672
-#: ../../include/functions_reporting_html.php:539
-#: ../../include/functions_reporting_html.php:1037
-#: ../../include/functions_reporting_html.php:1046
-#: ../../include/functions_reporting_html.php:1258
-#: ../../include/functions_reporting_html.php:1266
-#: ../../include/functions_reporting_html.php:1512
-#: ../../include/functions_reporting_html.php:2213
-#: ../../include/functions_reporting_html.php:2558
-#: ../../include/functions_reporting_html.php:3165
-#: ../../include/functions_reporting_html.php:3218
-#: ../../include/functions_reporting_html.php:4790
-#: ../../include/ajax/alert_list.ajax.php:282
-#: ../../include/ajax/alert_list.ajax.php:307 ../../include/ajax/module.php:980
-#: ../../include/ajax/custom_fields.php:416
-#: ../../include/functions_snmp.php:369
-#: ../../include/class/NetworkMap.class.php:2897
-#: ../../include/class/AgentsAlerts.class.php:903
-#: ../../include/class/ExternalTools.class.php:795
-#: ../../include/lib/Dashboard/Widgets/system_group_status.php:318
-#: ../../include/functions_snmp_browser.php:594
-#: ../../include/functions_events.php:196
-#: ../../include/functions_events.php:250
-#: ../../include/functions_events.php:2582
-#: ../../include/functions_events.php:4991
-#: ../../include/functions_events.php:6583 ../../operation/search_agents.php:56
-#: ../../operation/agentes/alerts_status.php:546
-#: ../../operation/agentes/alerts_status.php:581
-#: ../../operation/agentes/alerts_status.php:616
-#: ../../operation/agentes/alerts_status.php:648
-#: ../../operation/agentes/estado_agente.php:277
-#: ../../operation/agentes/estado_agente.php:761
-#: ../../operation/agentes/interface_view.functions.php:497
-#: ../../operation/agentes/status_monitor.php:1335
-#: ../../operation/agentes/alerts_status.functions.php:104
-#: ../../operation/messages/message_list.php:192
-#: ../../operation/snmpconsole/snmp_view.php:584
-#: ../../operation/snmpconsole/snmp_view.php:849
-#: ../../operation/snmpconsole/snmp_view.php:1226
-#: ../../operation/incidents/integriaims_export_csv.php:83
-#: ../../operation/incidents/configure_integriaims_incident.php:250
-#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:322
-#: ../../operation/incidents/list_integriaims_incidents.php:320
-#: ../../operation/search_modules.php:35
-#: ../../operation/events/events.build_table.php:351
-#: ../../operation/search_policies.php:37
-#: ../../operation/servers/recon_view.php:103
-msgid "Status"
-msgstr ""
-
-#: ../../godmode/agentes/status_monitor_custom_fields.php:101
-#: ../../godmode/agentes/status_monitor_custom_fields.php:149
-#: ../../include/functions_treeview.php:326
-#: ../../operation/agentes/status_monitor.php:1341
-#: ../../operation/agentes/estado_generalagente.php:417
-msgid "Last status change"
-msgstr ""
-
-#: ../../godmode/agentes/status_monitor_custom_fields.php:109
-#: ../../godmode/agentes/status_monitor_custom_fields.php:151
-#: ../../godmode/agentes/module_manager.php:864
-#: ../../operation/agentes/status_monitor.php:1352
-msgid "Warn"
-msgstr ""
-
-#: ../../godmode/agentes/status_monitor_custom_fields.php:117
-#: ../../godmode/agentes/status_monitor_custom_fields.php:153
-#: ../../godmode/setup/news.php:249 ../../godmode/events/custom_events.php:102
-#: ../../mobile/operation/modules.php:648
-#: ../../mobile/operation/modules.php:839 ../../mobile/operation/events.php:516
-#: ../../include/functions_reporting_html.php:1044
-#: ../../include/functions_reporting_html.php:1052
-#: ../../include/functions_reporting_html.php:1263
-#: ../../include/functions_reporting_html.php:1270
-#: ../../include/functions_reporting_html.php:2222
-#: ../../include/functions_reporting_html.php:4793
-#: ../../include/ajax/events_extended.php:90
-#: ../../include/ajax/custom_fields.php:415 ../../include/ajax/events.php:1738
-#: ../../include/functions_netflow.php:274
-#: ../../include/functions_events.php:197
-#: ../../include/functions_events.php:253
-#: ../../include/functions_events.php:2578
-#: ../../include/functions_events.php:4919
-#: ../../include/functions_events.php:6609
-#: ../../operation/agentes/exportdata.csv.php:74
-#: ../../operation/agentes/exportdata.php:83
-#: ../../operation/agentes/status_monitor.php:1365
-#: ../../operation/agentes/estado_generalagente.php:624
-#: ../../operation/agentes/exportdata.excel.php:74
-#: ../../operation/messages/message_list.php:200
-#: ../../operation/snmpconsole/snmp_view.php:881
-#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:116
-#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:247
-#: ../../operation/search_modules.php:38
-#: ../../operation/events/events.build_table.php:192
-msgid "Timestamp"
-msgstr ""
-
-#: ../../godmode/agentes/status_monitor_custom_fields.php:125
-msgid "Show monitor detail fields"
-msgstr ""
-
-#: ../../godmode/agentes/status_monitor_custom_fields.php:164
-#: ../../godmode/events/custom_events.php:128
-msgid "Fields available"
-msgstr ""
-
-#: ../../godmode/agentes/status_monitor_custom_fields.php:171
-#: ../../godmode/events/custom_events.php:135
-msgid "Add fields to select"
-msgstr ""
-
-#: ../../godmode/agentes/status_monitor_custom_fields.php:180
-#: ../../godmode/events/custom_events.php:143
-msgid "Delete fields to select"
-msgstr ""
-
-#: ../../godmode/agentes/status_monitor_custom_fields.php:186
-#: ../../godmode/events/custom_events.php:148
-msgid "Fields selected"
-msgstr ""
-
-#: ../../godmode/agentes/status_monitor_custom_fields.php:240
-#: ../../godmode/events/custom_events.php:202
-msgid ""
-"There must be at least one custom field. Timestamp will be set by default"
-msgstr ""
-
-#: ../../godmode/agentes/status_monitor_custom_fields.php:241
-#: ../../godmode/events/custom_events.php:203
-#: ../../include/class/TreeGroupEdition.class.php:164
-msgid "Confirm"
-msgstr ""
-
-#: ../../godmode/agentes/configurar_agente.php:239
-#: ../../godmode/agentes/configurar_agente.php:1054
-msgid "No agent alias specified"
-msgstr ""
-
-#: ../../godmode/agentes/configurar_agente.php:242
-msgid "Agent cannot be created due to the maximum agent limit for this group"
-msgstr ""
-
-#: ../../godmode/agentes/configurar_agente.php:365
-msgid "Could not be created, because name already exists"
-msgstr ""
-
-#: ../../godmode/agentes/configurar_agente.php:367
-msgid "Could not be created, because IP already exists"
-msgstr ""
-
-#: ../../godmode/agentes/configurar_agente.php:385
-#: ../../godmode/agentes/modificar_agente.php:82
-#: ../../godmode/agentes/modificar_agente.php:838
-#: ../../godmode/agentes/modificar_agente.php:843 ../../godmode/menu.php:550
-#: ../../godmode/setup/setup_visuals.php:160
-#: ../../godmode/setup/setup_visuals.php:224
-#: ../../godmode/setup/setup_visuals.php:278
-#: ../../godmode/setup/setup_visuals.php:283
-#: ../../godmode/setup/setup_visuals.php:322
-#: ../../godmode/setup/setup_visuals.php:359
-#: ../../godmode/setup/setup_visuals.php:381
-#: ../../godmode/setup/setup_visuals.php:406
-#: ../../godmode/setup/setup_visuals.php:425
-#: ../../godmode/setup/setup_visuals.php:444
-#: ../../godmode/setup/setup_visuals.php:463
-#: ../../godmode/setup/setup_visuals.php:605
-#: ../../godmode/reporting/visual_console_builder.php:839
-#: ../../godmode/module_library/module_library_view.php:56
-#: ../../operation/tree.php:185 ../../operation/visual_console/view.php:198
-#: ../../operation/visual_console/legacy_view.php:193
-#: ../../operation/agentes/estado_agente.php:856
-#: ../../operation/agentes/estado_agente.php:859
-#: ../../operation/agentes/status_monitor.php:75
-#: ../../operation/agentes/ver_agente.php:1878
-msgid "View"
-msgstr ""
-
-#: ../../godmode/agentes/configurar_agente.php:403
-#: ../../godmode/agentes/configurar_agente.php:708 ../../godmode/menu.php:309
-#: ../../godmode/menu.php:316
-#: ../../godmode/module_library/module_library_view.php:45
-#: ../../operation/agentes/estado_agente.php:198
-#: ../../operation/gis_maps/render_view.php:170
-msgid "Setup"
-msgstr ""
-
-#: ../../godmode/agentes/configurar_agente.php:450 ../../godmode/menu.php:149
-#: ../../godmode/wizards/HostDevices.class.php:1077
-msgid "Module templates"
-msgstr ""
-
-#: ../../godmode/agentes/configurar_agente.php:522
-#: ../../operation/agentes/ver_agente.php:1447
-msgid "GIS data"
-msgstr ""
-
-#: ../../godmode/agentes/configurar_agente.php:539
-msgid "Agent wizard"
-msgstr ""
-
-#: ../../godmode/agentes/configurar_agente.php:551
-#: ../../godmode/agentes/configurar_agente.php:772
-#: ../../godmode/setup/snmp_wizard.php:31
-msgid "SNMP Wizard"
-msgstr ""
-
-#: ../../godmode/agentes/configurar_agente.php:561
-#: ../../godmode/agentes/configurar_agente.php:778
-msgid "SNMP Interfaces wizard"
-msgstr ""
-
-#: ../../godmode/agentes/configurar_agente.php:571
-#: ../../godmode/agentes/configurar_agente.php:784
-msgid "WMI Wizard"
-msgstr ""
-
-#: ../../godmode/agentes/configurar_agente.php:594
-#: ../../godmode/agentes/configurar_agente.php:762
-#: ../../operation/agentes/ver_agente.php:1467 ../../operation/menu.php:471
-#: ../../operation/incidents/incident_statistics.php:21
-#: ../../general/first_task/incidents.php:28
-msgid "Incidents"
-msgstr ""
-
-#: ../../godmode/agentes/configurar_agente.php:616
-#: ../../godmode/agentes/configurar_agente.php:766
-#: ../../godmode/agentes/agent_manager.php:591
-#: ../../godmode/massive/massive_edit_agents.php:699
-#: ../../godmode/reporting/reporting_builder.item_editor.php:77
-#: ../../godmode/servers/servers.build_table.php:232
-msgid "Remote configuration"
-msgstr ""
-
-#: ../../godmode/agentes/configurar_agente.php:714
-msgid "Collection"
-msgstr ""
-
-#: ../../godmode/agentes/configurar_agente.php:719
-msgid "Network config manager"
-msgstr ""
-
-#: ../../godmode/agentes/configurar_agente.php:724
-#: ../../godmode/setup/setup_integria.php:311
-#: ../../include/functions_reports.php:865
-#: ../../include/functions_reports.php:872
-#: ../../include/functions_reports.php:873
-#: ../../include/functions_reports.php:877
-#: ../../include/functions_reporting.php:2588
-msgid "Inventory"
-msgstr ""
-
-#: ../../godmode/agentes/configurar_agente.php:730
-msgid "Agent plugins"
-msgstr ""
-
-#: ../../godmode/agentes/configurar_agente.php:746
-#: ../../godmode/events/custom_events.php:105 ../../include/functions.php:4084
-#: ../../include/functions_snmp.php:324 ../../include/functions_events.php:200
-#: ../../include/functions_events.php:262
-#: ../../include/functions_events.php:2651
-#: ../../include/functions_events.php:6646
-#: ../../operation/agentes/estado_monitores.php:522
-#: ../../operation/snmpconsole/snmp_view.php:543
-#: ../../operation/snmpconsole/snmp_view.php:886
-#: ../../operation/snmpconsole/snmp_view.php:1246
-#: ../../operation/events/events.build_table.php:253
-msgid "Alert"
-msgstr ""
-
-#: ../../godmode/agentes/configurar_agente.php:752 ../../godmode/menu.php:144
-#: ../../godmode/menu.php:230
-#: ../../godmode/reporting/reporting_builder.item_editor.php:1833
-#: ../../include/functions_menu.php:507
-#: ../../include/class/ConfigPEN.class.php:332
-#: ../../include/class/ModuleTemplates.class.php:196
-#: ../../include/class/ModuleTemplates.class.php:214
-msgid "Templates"
-msgstr ""
-
-#: ../../godmode/agentes/configurar_agente.php:757
-msgid "Gis"
-msgstr ""
-
-#: ../../godmode/agentes/configurar_agente.php:799
-msgid "SNMP explorer"
-msgstr ""
-
-#: ../../godmode/agentes/configurar_agente.php:830
-#: ../../godmode/agentes/configurar_agente.php:852
-#: ../../godmode/agentes/modificar_agente.php:104 ../../godmode/menu.php:103
-msgid "Resources"
-msgstr ""
-
-#: ../../godmode/agentes/configurar_agente.php:831
-#: ../../godmode/agentes/configurar_agente.php:853
-#: ../../godmode/agentes/modificar_agente.php:108 ../../godmode/menu.php:71
-msgid "Manage agents"
-msgstr ""
-
-#: ../../godmode/agentes/configurar_agente.php:840
-msgid "Agent manager"
-msgstr ""
-
-#: ../../godmode/agentes/configurar_agente.php:854
-#: ../../godmode/agentes/modificar_agente.php:954
-#: ../../operation/agentes/estado_agente.php:966
-#: ../../operation/agentes/estado_agente.php:976
-#: ../../operation/snmpconsole/snmp_statistics.php:193
-#: ../../operation/snmpconsole/snmp_view.php:956
-msgid "Create agent"
-msgstr ""
-
-#: ../../godmode/agentes/configurar_agente.php:880
-#: ../../godmode/servers/modificar_server.php:220
-msgid "Conf file deleted successfully"
-msgstr ""
-
-#: ../../godmode/agentes/configurar_agente.php:881
-#: ../../godmode/servers/modificar_server.php:221
-msgid "Could not delete conf file"
-msgstr ""
-
-#: ../../godmode/agentes/configurar_agente.php:898
-#: ../../godmode/agentes/configurar_agente.php:1049
-#: ../../include/class/ExternalTools.class.php:750
-msgid "The ip or dns name entered cannot be resolved"
-msgstr ""
-
-#: ../../godmode/agentes/configurar_agente.php:925
-#: ../../godmode/agentes/configurar_agente.php:929
-msgid "No data to normalize"
-msgstr ""
-
-#: ../../godmode/agentes/configurar_agente.php:934
-#, php-format
-msgid "Deleted data above %f"
-msgstr ""
-
-#: ../../godmode/agentes/configurar_agente.php:935
-#, php-format
-msgid "Error normalizing module %s"
-msgstr ""
-
-#: ../../godmode/agentes/configurar_agente.php:1064
-#, php-format
-msgid "The group id %d is incorrect."
-msgstr ""
-
-#: ../../godmode/agentes/configurar_agente.php:1066
-msgid "Agent cannot be updated due to the maximum agent limit for this group"
-msgstr ""
-
-#: ../../godmode/agentes/configurar_agente.php:1068
-msgid "Duplicate main IP address"
-msgstr ""
-
-#: ../../godmode/agentes/configurar_agente.php:1127
-msgid "There was a problem updating the agent"
-msgstr ""
-
-#: ../../godmode/agentes/configurar_agente.php:1270
-msgid "There was a problem loading the agent"
-msgstr ""
-
-#: ../../godmode/agentes/configurar_agente.php:1780
-msgid ""
-"There was a problem updating module. Another module already exists with the "
-"same name."
-msgstr ""
-
-#: ../../godmode/agentes/configurar_agente.php:1784
-msgid ""
-"There was a problem updating module. Some required fields are missed: (name)"
-msgstr ""
-
-#: ../../godmode/agentes/configurar_agente.php:1788
-msgid "There was a problem updating module. \"No change\""
-msgstr ""
-
-#: ../../godmode/agentes/configurar_agente.php:1794
-msgid "There was a problem updating module. Processing error"
-msgstr ""
-
-#: ../../godmode/agentes/configurar_agente.php:1823
-msgid "Module successfully updated"
-msgstr ""
-
-#: ../../godmode/agentes/configurar_agente.php:1970
-msgid ""
-"There was a problem adding module. Another module already exists with the "
-"same name."
-msgstr ""
-
-#: ../../godmode/agentes/configurar_agente.php:1974
-msgid ""
-"There was a problem adding module. Some required fields are missed : (name)"
-msgstr ""
-
-#: ../../godmode/agentes/configurar_agente.php:1980
-msgid "There was a problem adding module. Processing error"
-msgstr ""
-
-#: ../../godmode/agentes/configurar_agente.php:2009
-#: ../../godmode/reporting/graph_builder.php:387
-msgid "Module added successfully"
-msgstr ""
-
-#: ../../godmode/agentes/configurar_agente.php:2159
-msgid "There was a problem deleting the module"
-msgstr ""
-
-#: ../../godmode/agentes/configurar_agente.php:2163
-msgid "Module deleted succesfully"
-msgstr ""
-
-#: ../../godmode/agentes/configurar_agente.php:2180
-#: ../../include/functions_reports.php:939
-#, php-format
-msgid "copy of %s"
-msgstr ""
-
-#: ../../godmode/agentes/configurar_agente.php:2194
-#, php-format
-msgid "copy of %s (%d)"
-msgstr ""
-
-#: ../../godmode/agentes/configurar_agente.php:2236
-#: ../../godmode/agentes/modificar_agente.php:235
-#: ../../godmode/massive/massive_enable_disable_alerts.php:102
-#: ../../godmode/alerts/alert_list.php:343
-#: ../../include/ajax/alert_list.ajax.php:346
-msgid "Could not be enabled"
-msgstr ""
-
-#: ../../godmode/agentes/configurar_agente.php:2255
-#: ../../godmode/agentes/modificar_agente.php:278
-#: ../../godmode/massive/massive_enable_disable_alerts.php:120
-#: ../../godmode/alerts/alert_list.php:364
-#: ../../include/ajax/alert_list.ajax.php:367
-msgid "Could not be disabled"
-msgstr ""
-
-#: ../../godmode/agentes/configurar_agente.php:2290
-#: ../../include/functions_api.php:11305
-#, php-format
-msgid "Save by %s Console"
-msgstr ""
-
-#: ../../godmode/agentes/configurar_agente.php:2308
-#: ../../include/functions_api.php:11306
-#, php-format
-msgid "Update by %s Console"
-msgstr ""
-
-#: ../../godmode/agentes/configurar_agente.php:2324
-#: ../../include/functions_api.php:11307
-#, php-format
-msgid "Insert by %s Console"
-msgstr ""
-
-#: ../../godmode/agentes/configurar_agente.php:2397
-#: ../../godmode/agentes/configurar_agente.php:2409
-msgid "Invalid tab specified"
-msgstr ""
-
-#: ../../godmode/agentes/module_manager_editor_prediction.php:107
-#: ../../operation/agentes/status_monitor.php:639
-msgid "Prediction server module"
-msgstr ""
-
-#: ../../godmode/agentes/module_manager_editor_prediction.php:110
-msgid "Source module"
-msgstr ""
-
-#: ../../godmode/agentes/module_manager_editor_prediction.php:148
-#: ../../godmode/agentes/module_manager_editor_prediction.php:169
-msgid "Select Module"
-msgstr ""
-
-#: ../../godmode/agentes/module_manager_editor_prediction.php:179
-#: ../../godmode/reporting/reporting_builder.item_editor.php:1241
-#: ../../godmode/reporting/visual_console_builder.elements.php:107
-#: ../../godmode/reporting/visual_console_builder.wizard.php:242
-#: ../../godmode/reporting/graph_builder.main.php:196
-#: ../../include/functions_visual_map_editor.php:788
-#: ../../include/rest-api/models/VisualConsole/Items/BasicChart.php:313
-#: ../../include/rest-api/models/VisualConsole/Items/SimpleValue.php:394
-#: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:639
-msgid "Period"
-msgstr ""
-
-#: ../../godmode/agentes/module_manager_editor_prediction.php:181
-#: ../../godmode/agentes/planned_downtime.editor.php:632
-msgid "Weekly"
-msgstr ""
-
-#: ../../godmode/agentes/module_manager_editor_prediction.php:182
-#: ../../godmode/agentes/planned_downtime.editor.php:633
-msgid "Monthly"
-msgstr ""
-
-#: ../../godmode/agentes/module_manager_editor_prediction.php:183
-#: ../../include/functions_netflow.php:1625
-msgid "Daily"
-msgstr ""
-
-#: ../../godmode/agentes/module_manager_editor_prediction.php:195
-msgid "Calculation type"
-msgstr ""
-
-#: ../../godmode/agentes/module_manager_editor_prediction.php:203
-msgid "Estimated absolute value"
-msgstr ""
-
-#: ../../godmode/agentes/module_manager_editor_prediction.php:204
-msgid "Calculation of days to reach limit"
-msgstr ""
-
-#: ../../godmode/agentes/module_manager_editor_prediction.php:213
-msgid "Future estimation"
-msgstr ""
-
-#: ../../godmode/agentes/module_manager_editor_prediction.php:228
-msgid "Limit value"
-msgstr ""
-
-#: ../../godmode/agentes/module_manager_editor.php:542
-msgid "This policy is applying and cannot be modified"
-msgstr ""
-
-#: ../../godmode/agentes/module_manager_editor.php:548
-msgid "Module will be linked in the next application"
-msgstr ""
-
-#: ../../godmode/agentes/module_manager_editor.php:562
-msgid "Module will be unlinked in the next application"
-msgstr ""
-
-#: ../../godmode/agentes/module_manager_editor.php:715
-msgid "Invalid module type"
-msgstr ""
-
-#: ../../godmode/agentes/module_manager_editor.php:735
-msgid "Base options"
-msgstr ""
-
-#: ../../godmode/agentes/module_manager_editor.php:747
-#: ../../godmode/agentes/module_manager_editor_common.php:1226
-msgid "Custom macros"
-msgstr ""
-
-#: ../../godmode/agentes/module_manager_editor.php:759
-msgid "Module relations"
-msgstr ""
-
-#: ../../godmode/agentes/module_manager_editor.php:819
-msgid "No module name provided"
-msgstr ""
-
-#: ../../godmode/agentes/module_manager_editor.php:829
-msgid "No target IP provided"
-msgstr ""
-
-#: ../../godmode/agentes/module_manager_editor.php:839
-msgid "No SNMP OID provided"
-msgstr ""
-
-#: ../../godmode/agentes/module_manager_editor.php:849
-msgid "No module to predict"
-msgstr ""
-
-#: ../../godmode/agentes/module_manager_editor.php:859
-msgid "No plug-in provided"
-msgstr ""
-
-#: ../../godmode/agentes/module_manager_editor.php:869
-msgid "No server provided"
-msgstr ""
-
-#: ../../godmode/agentes/module_manager_editor.php:900
-msgid ""
-"Error, The field name and name in module_name in data configuration are "
-"different."
-msgstr ""
-
-#: ../../godmode/agentes/module_manager_editor.php:938
-msgid "The File APIs are not fully supported in this browser."
-msgstr ""
-
-#: ../../godmode/agentes/module_manager_editor.php:939
-msgid "Couldn`t find the fileinput element."
-msgstr ""
-
-#: ../../godmode/agentes/module_manager_editor.php:940
-msgid "This browser doesn`t seem to support the files property of file inputs."
-msgstr ""
-
-#: ../../godmode/agentes/module_manager_editor.php:941
-msgid "Please select a file before clicking Load"
-msgstr ""
-
-#: ../../godmode/agentes/modificar_agente.php:95
-#, php-format
-msgid "Agents defined in %s"
-msgstr ""
-
-#: ../../godmode/agentes/modificar_agente.php:124
-#, php-format
-msgid ""
-"This node is configured with centralized mode. Go to %s to delete an agent"
-msgstr ""
-
-#: ../../godmode/agentes/modificar_agente.php:170
-msgid "Success deleted agent."
-msgstr ""
-
-#: ../../godmode/agentes/modificar_agente.php:171
-msgid "Could not be deleted."
-msgstr ""
-
-#: ../../godmode/agentes/modificar_agente.php:186
-msgid "Maybe the files conf or md5 could not be deleted"
-msgstr ""
-
-#: ../../godmode/agentes/modificar_agente.php:320
-msgid "Show Agents"
-msgstr ""
-
-#: ../../godmode/agentes/modificar_agente.php:322
-msgid "Everyone"
-msgstr ""
-
-#: ../../godmode/agentes/modificar_agente.php:323
-#: ../../operation/agentes/status_monitor.php:657
-msgid "Only disabled"
-msgstr ""
-
-#: ../../godmode/agentes/modificar_agente.php:324
-#: ../../operation/agentes/status_monitor.php:656
-msgid "Only enabled"
-msgstr ""
-
-#: ../../godmode/agentes/modificar_agente.php:336
-msgid "Operative System"
-msgstr ""
-
-#: ../../godmode/agentes/modificar_agente.php:367
-msgid ""
-"Search filter by alias, name, description, IP address or custom fields "
-"content"
-msgstr ""
-
-#: ../../godmode/agentes/modificar_agente.php:649
-#: ../../godmode/agentes/agent_manager.php:210
-#: ../../mobile/operation/modules.php:584
-#: ../../mobile/operation/modules.php:836
-#: ../../include/functions_reporting_html.php:3160
-#: ../../include/functions_treeview.php:617
-#: ../../include/functions_events.php:193
-#: ../../include/functions_events.php:238
-#: ../../include/functions_events.php:2573
-#: ../../include/functions_events.php:6602
-#: ../../operation/events/events.php:1875
-#: ../../operation/events/events.build_table.php:182
-msgid "Agent name"
-msgstr ""
-
-#: ../../godmode/agentes/modificar_agente.php:650
-msgid "Remote agent configuration"
-msgstr ""
-
-#: ../../godmode/agentes/modificar_agente.php:650
-msgid "R"
-msgstr ""
-
-#: ../../godmode/agentes/modificar_agente.php:651
-#: ../../godmode/agentes/planned_downtime.editor.php:905
-#: ../../godmode/agentes/agent_manager.php:386
-#: ../../godmode/massive/massive_edit_agents.php:610
-#: ../../godmode/reporting/reporting_builder.item_editor.php:69
-#: ../../mobile/operation/agents.php:76 ../../mobile/operation/agents.php:385
-#: ../../include/functions_reporting_html.php:1488
-#: ../../include/functions_reporting_html.php:3162
-#: ../../include/class/Diagnostics.class.php:746
-#: ../../include/lib/Dashboard/Widgets/tree_view.php:332
-#: ../../include/functions_events.php:4411 ../../operation/search_agents.php:44
-#: ../../operation/search_agents.php:50 ../../operation/tree.php:76
-#: ../../operation/tree.php:144 ../../operation/agentes/estado_agente.php:746
-#: ../../operation/agentes/estado_generalagente.php:196
-#: ../../operation/gis_maps/ajax.php:297
-msgid "OS"
-msgstr ""
-
-#: ../../godmode/agentes/modificar_agente.php:777
-#: ../../godmode/agentes/planned_downtime.list.php:437
-#: ../../godmode/agentes/planned_downtime.editor.php:577
-#: ../../godmode/agentes/agent_manager.php:746
-#: ../../godmode/agentes/module_manager_editor_common.php:1056
-#: ../../godmode/agentes/module_manager.php:985
-#: ../../godmode/massive/massive_edit_agents.php:744
-#: ../../godmode/massive/massive_edit_modules.php:1092
-#: ../../mobile/operation/agent.php:155 ../../include/ajax/module.php:1128
-#: ../../include/class/Tree.class.php:895 ../../operation/search_agents.php:100
-#: ../../operation/agentes/estado_agente.php:829
-#: ../../operation/agentes/estado_generalagente.php:112
-#: ../../operation/agentes/estado_generalagente.php:122
-msgid "Quiet"
-msgstr ""
-
-#: ../../godmode/agentes/modificar_agente.php:785
-#: ../../operation/search_agents.php:111
-#: ../../operation/agentes/estado_agente.php:837
-#: ../../operation/agentes/estado_generalagente.php:133
-#: ../../operation/agentes/estado_generalagente.php:141
-msgid "Agent in scheduled downtime"
-msgstr ""
-
-#: ../../godmode/agentes/modificar_agente.php:860
-msgid "Edit remote config"
-msgstr ""
-
-#: ../../godmode/agentes/modificar_agente.php:910
-msgid "You are going to enable a cluster agent. Are you sure?"
-msgstr ""
-
-#: ../../godmode/agentes/modificar_agente.php:913
-msgid "Enable agent"
-msgstr ""
-
-#: ../../godmode/agentes/modificar_agente.php:920
-msgid "You are going to disable a cluster agent. Are you sure?"
-msgstr ""
-
-#: ../../godmode/agentes/modificar_agente.php:923
-msgid "Disable agent"
-msgstr ""
-
-#: ../../godmode/agentes/modificar_agente.php:933
-msgid "WARNING! - You are going to delete a cluster agent. Are you sure?"
-msgstr ""
-
-#: ../../godmode/agentes/modificar_agente.php:946
-#: ../../operation/agentes/estado_agente.php:973
-#: ../../operation/agentes/group_view.php:567
-msgid "There are no defined agents"
-msgstr ""
-
-#: ../../godmode/agentes/agent_conf_gis.php:38
-#: ../../operation/agentes/gis_view.php:56
-msgid ""
-"There is no default map. Please go to the setup for to set a default map."
-msgstr ""
-
-#: ../../godmode/agentes/agent_conf_gis.php:50
-msgid ""
-"There is no GIS data for this agent, so it's positioned in default position "
-"of map."
-msgstr ""
-
-#: ../../godmode/agentes/agent_conf_gis.php:58
-msgid ""
-"When you change the Agent position, the agent automatically activates the "
-"'Ignore new GIS data' option"
-msgstr ""
-
-#: ../../godmode/agentes/agent_conf_gis.php:67
-msgid "Agent position"
-msgstr ""
-
-#: ../../godmode/agentes/agent_conf_gis.php:73
-msgid "Latitude: "
-msgstr ""
-
-#: ../../godmode/agentes/agent_conf_gis.php:90
-msgid "Longitude: "
-msgstr ""
-
-#: ../../godmode/agentes/agent_conf_gis.php:107
-msgid "Altitude: "
-msgstr ""
-
-#: ../../godmode/agentes/agent_conf_gis.php:124
-#: ../../godmode/massive/massive_edit_agents.php:738
-msgid "Ignore new GIS data:"
-msgstr ""
-
-#: ../../godmode/agentes/planned_downtime.list.php:47
-msgid "An error occurred while migrating the malformed scheduled downtimes"
-msgstr ""
-
-#: ../../godmode/agentes/planned_downtime.list.php:47
-msgid "Please run the migration again or contact with the administrator"
-msgstr ""
-
-#: ../../godmode/agentes/planned_downtime.list.php:55
-#: ../../godmode/agentes/planned_downtime.editor.php:67
-#: ../../include/functions_reporting_html.php:871
-#: ../../include/functions_reporting_html.php:4399
-msgid "Scheduled Downtime"
-msgstr ""
-
-#: ../../godmode/agentes/planned_downtime.list.php:83
-msgid "An error occurred stopping the scheduled downtime"
-msgstr ""
-
-#: ../../godmode/agentes/planned_downtime.list.php:106
-msgid "This scheduled downtime is running"
-msgstr ""
-
-#: ../../godmode/agentes/planned_downtime.list.php:146
-#: ../../godmode/alerts/alert_list.list.php:641
-#: ../../godmode/alerts/alert_list.list.php:644
-#: ../../godmode/alerts/alert_templates.php:96
-#: ../../include/functions_reporting_html.php:147
-#: ../../include/functions_reporting_html.php:2761
-#: ../../include/functions_reporting_html.php:3524
-#: ../../include/rest-api/index.php:332
-#: ../../include/rest-api/models/VisualConsole/Items/ColorCloud.php:449
-#: ../../include/rest-api/models/VisualConsole/Items/ColorCloud.php:510
-#: ../../operation/agentes/gis_view.php:217
-#: ../../operation/reporting/reporting_viewer.php:301
-msgid "From"
-msgstr ""
-
-#: ../../godmode/agentes/planned_downtime.list.php:148
-#: ../../include/functions_reporting_html.php:3525
-#: ../../include/functions_snmp.php:413 ../../include/functions_snmp.php:421
-#: ../../include/rest-api/index.php:334
-#: ../../include/rest-api/models/VisualConsole/Items/ColorCloud.php:460
-#: ../../include/rest-api/models/VisualConsole/Items/ColorCloud.php:520
-#: ../../operation/agentes/gis_view.php:218
-msgid "To"
-msgstr ""
-
-#: ../../godmode/agentes/planned_downtime.list.php:157
-#: ../../godmode/agentes/planned_downtime.editor.php:595
-msgid "Once"
-msgstr ""
-
-#: ../../godmode/agentes/planned_downtime.list.php:158
-#: ../../godmode/agentes/planned_downtime.list.php:446
-#: ../../godmode/agentes/planned_downtime.editor.php:596
-msgid "Periodically"
-msgstr ""
-
-#: ../../godmode/agentes/planned_downtime.list.php:160
-#: ../../godmode/agentes/planned_downtime.editor.php:789
-#: ../../godmode/agentes/agent_manager.php:325
-#: ../../godmode/agentes/agent_manager.php:578
-#: ../../godmode/massive/massive_copy_modules.php:177
-#: ../../godmode/massive/massive_delete_modules.php:402
-#: ../../godmode/massive/massive_delete_modules.php:516
-#: ../../godmode/massive/massive_edit_agents.php:553
-#: ../../godmode/massive/massive_edit_agents.php:780
-#: ../../godmode/massive/massive_add_action_alerts.php:210
-#: ../../godmode/massive/massive_edit_modules.php:399
-#: ../../godmode/massive/massive_edit_modules.php:485
-#: ../../godmode/reporting/create_container.php:573
-#: ../../godmode/reporting/visual_console_builder.wizard.php:536
-#: ../../godmode/events/event_edit_filter.php:425
-#: ../../include/functions_visual_map_editor.php:498
-#: ../../include/functions_visual_map_editor.php:1459
-#: ../../include/functions_visual_map_editor.php:1553
-#: ../../include/ajax/visual_console_builder.ajax.php:1186
-#: ../../include/functions_profile.php:338
-#: ../../include/functions_html.php:2173 ../../include/functions_html.php:2174
-#: ../../include/functions_html.php:2175 ../../include/functions_html.php:2176
-#: ../../include/functions_html.php:2177 ../../include/functions_html.php:2179
-#: ../../include/functions_html.php:2180 ../../include/functions_html.php:2181
-#: ../../include/functions_html.php:2182 ../../include/functions_html.php:2183
-#: ../../include/lib/Dashboard/Widgets/events_list.php:329
-#: ../../operation/events/events_list.php:799
-#: ../../operation/events/events.php:1282
-#: ../../operation/events/events.php:2552
-msgid "Any"
-msgstr ""
-
-#: ../../godmode/agentes/planned_downtime.list.php:162
-msgid "Show past downtimes"
-msgstr ""
-
-#: ../../godmode/agentes/planned_downtime.list.php:365
-#: ../../godmode/agentes/planned_downtime.export_csv.php:199
-msgid "No scheduled downtime"
-msgstr ""
-
-#: ../../godmode/agentes/planned_downtime.list.php:398
-msgid "Name #Ag."
-msgstr ""
-
-#: ../../godmode/agentes/planned_downtime.list.php:403
-#: ../../godmode/menu.php:210 ../../godmode/setup/setup.php:325
-#: ../../include/functions_reports.php:885
-#: ../../include/functions_reports.php:889
-#: ../../include/class/ConfigPEN.class.php:327
-#: ../../include/class/ModuleTemplates.class.php:195
-#: ../../include/class/ModuleTemplates.class.php:213
-msgid "Configuration"
-msgstr ""
-
-#: ../../godmode/agentes/planned_downtime.list.php:404
-#: ../../godmode/agentes/planned_downtime.list.php:470
-msgid "Running"
-msgstr ""
-
-#: ../../godmode/agentes/planned_downtime.list.php:407
-#: ../../godmode/agentes/planned_downtime.list.php:482
-#: ../../godmode/agentes/planned_downtime.list.php:484
-msgid "Stop downtime"
-msgstr ""
-
-#: ../../godmode/agentes/planned_downtime.list.php:438
-#: ../../godmode/agentes/planned_downtime.editor.php:578
-msgid "Disabled Agents"
-msgstr ""
-
-#: ../../godmode/agentes/planned_downtime.list.php:439
-#: ../../godmode/agentes/planned_downtime.editor.php:579
-msgid "Disabled only Alerts"
-msgstr ""
-
-#: ../../godmode/agentes/planned_downtime.list.php:445
-msgid "once"
-msgstr ""
-
-#: ../../godmode/agentes/planned_downtime.list.php:460
-msgid "Not running"
-msgstr ""
-
-#: ../../godmode/agentes/planned_downtime.list.php:575
-msgid ""
-"WARNING: If you delete this scheduled downtime, it will not be taken into "
-"account in future SLA reports"
-msgstr ""
-
-#: ../../godmode/agentes/planned_downtime.list.php:581
-msgid "WARNING: There are malformed scheduled downtimes"
-msgstr ""
-
-#: ../../godmode/agentes/planned_downtime.list.php:581
-msgid "Do you want to migrate automatically the malformed items?"
-msgstr ""
-
-#: ../../godmode/agentes/planned_downtime.editor.php:207
-#: ../../godmode/agentes/planned_downtime.editor.php:1112
-#: ../../godmode/agentes/planned_downtime.editor.php:1247
-msgid "This elements cannot be modified while the downtime is being executed"
-msgstr ""
-
-#: ../../godmode/agentes/planned_downtime.editor.php:240
-#: ../../include/functions_planned_downtimes.php:40
-#: ../../include/functions_planned_downtimes.php:742
-msgid ""
-"Not created. Error inserting data. Start time must be higher than the "
-"current time"
-msgstr ""
-
-#: ../../godmode/agentes/planned_downtime.editor.php:244
-#: ../../godmode/agentes/planned_downtime.editor.php:248
-#: ../../godmode/agentes/planned_downtime.editor.php:256
-#: ../../godmode/agentes/planned_downtime.editor.php:260
-#: ../../include/functions_planned_downtimes.php:42
-#: ../../include/functions_planned_downtimes.php:47
-#: ../../include/functions_planned_downtimes.php:49
-#: ../../include/functions_planned_downtimes.php:747
-#: ../../include/functions_planned_downtimes.php:754
-#: ../../include/functions_planned_downtimes.php:762
-#: ../../include/functions_planned_downtimes.php:770
-#: ../../include/functions_planned_downtimes.php:775
-#: ../../include/functions_planned_downtimes.php:780
-#: ../../include/functions_planned_downtimes.php:785
-#: ../../include/functions_planned_downtimes.php:790
-#: ../../include/functions_planned_downtimes.php:795
-#: ../../include/functions_planned_downtimes.php:800
-msgid "Not created. Error inserting data"
-msgstr ""
-
-#: ../../godmode/agentes/planned_downtime.editor.php:244
-#: ../../include/functions_planned_downtimes.php:42
-#: ../../include/functions_planned_downtimes.php:754
-msgid "The end date must be higher than the start date"
-msgstr ""
-
-#: ../../godmode/agentes/planned_downtime.editor.php:248
-#: ../../include/functions_planned_downtimes.php:747
-msgid "The end date must be higher than the current time"
-msgstr ""
-
-#: ../../godmode/agentes/planned_downtime.editor.php:256
-#: ../../godmode/agentes/planned_downtime.editor.php:705
-#: ../../godmode/agentes/planned_downtime.editor.php:718
-#: ../../include/functions_planned_downtimes.php:47
-#: ../../include/functions_planned_downtimes.php:762
-msgid "The end time must be higher than the start time"
-msgstr ""
-
-#: ../../godmode/agentes/planned_downtime.editor.php:260
-#: ../../godmode/agentes/planned_downtime.editor.php:690
-#: ../../include/functions_planned_downtimes.php:49
-#: ../../include/functions_planned_downtimes.php:770
-msgid "The end day must be higher than the start day"
-msgstr ""
-
-#: ../../godmode/agentes/planned_downtime.editor.php:312
-#: ../../include/functions_planned_downtimes.php:98
-#: ../../include/functions_planned_downtimes.php:814
-msgid "Each scheduled downtime must have a different name"
-msgstr ""
-
-#: ../../godmode/agentes/planned_downtime.editor.php:317
-#: ../../godmode/agentes/planned_downtime.editor.php:349
-#: ../../include/functions_planned_downtimes.php:103
-#: ../../include/functions_planned_downtimes.php:820
-msgid "Scheduled downtime must have a name"
-msgstr ""
-
-#: ../../godmode/agentes/planned_downtime.editor.php:572
-msgid "Quiet: Modules will not generate events or fire alerts."
-msgstr ""
-
-#: ../../godmode/agentes/planned_downtime.editor.php:572
-msgid "Disable Agents: Disables the selected agents."
-msgstr ""
-
-#: ../../godmode/agentes/planned_downtime.editor.php:572
-msgid "Disable Alerts: Disable alerts for the selected agents."
-msgstr ""
-
-#: ../../godmode/agentes/planned_downtime.editor.php:611
-msgid "Configure the time"
-msgstr ""
-
-#: ../../godmode/agentes/planned_downtime.editor.php:617
-#: ../../include/functions_reporting_html.php:86
-#: ../../include/functions_reporting_html.php:5310
-msgid "From:"
-msgstr ""
-
-#: ../../godmode/agentes/planned_downtime.editor.php:621
-#: ../../include/functions_reporting_html.php:86
-#: ../../include/functions_reporting_html.php:5310
-msgid "To:"
-msgstr ""
-
-#: ../../godmode/agentes/planned_downtime.editor.php:630
-msgid "Type Periodicity:"
-msgstr ""
-
-#: ../../godmode/agentes/planned_downtime.editor.php:662
-msgid "From day:"
-msgstr ""
-
-#: ../../godmode/agentes/planned_downtime.editor.php:676
-msgid "To day:"
-msgstr ""
-
-#: ../../godmode/agentes/planned_downtime.editor.php:695
-msgid "From hour:"
-msgstr ""
-
-#: ../../godmode/agentes/planned_downtime.editor.php:708
-msgid "To hour:"
-msgstr ""
-
-#: ../../godmode/agentes/planned_downtime.editor.php:784
-msgid "Group filter"
-msgstr ""
-
-#: ../../godmode/agentes/planned_downtime.editor.php:788
-msgid "Available agents"
-msgstr ""
-
-#: ../../godmode/agentes/planned_downtime.editor.php:818
-msgid "Available modules:"
-msgstr ""
-
-#: ../../godmode/agentes/planned_downtime.editor.php:819
-msgid "Only for type Quiet for downtimes."
-msgstr ""
-
-#: ../../godmode/agentes/planned_downtime.editor.php:877
-msgid "Agents planned for this downtime"
-msgstr ""
-
-#: ../../godmode/agentes/planned_downtime.editor.php:895
-msgid "There are no agents"
-msgstr ""
-
-#: ../../godmode/agentes/planned_downtime.editor.php:937
-msgid "All alerts"
-msgstr ""
-
-#: ../../godmode/agentes/planned_downtime.editor.php:939
-msgid "Entire agent"
-msgstr ""
-
-#: ../../godmode/agentes/planned_downtime.editor.php:942
-#: ../../godmode/agentes/planned_downtime.editor.php:1064
-msgid "All modules"
-msgstr ""
-
-#: ../../godmode/agentes/planned_downtime.editor.php:944
-#: ../../godmode/agentes/planned_downtime.editor.php:1056
-#: ../../godmode/agentes/planned_downtime.editor.php:1060
-msgid "Some modules"
-msgstr ""
-
-#: ../../godmode/agentes/planned_downtime.editor.php:1010
-msgid "Add Module:"
-msgstr ""
-
-#: ../../godmode/agentes/planned_downtime.editor.php:1377
-#: ../../godmode/reporting/reporting_builder.item_editor.php:4448
-msgid "Please select a module."
-msgstr ""
-
-#: ../../godmode/agentes/planned_downtime.editor.php:1512
-msgid ""
-"WARNING: If you edit this scheduled downtime, the data of future SLA reports "
-"may be altered"
-msgstr ""
-
-#: ../../godmode/agentes/module_manager_editor_plugin.php:46
-#: ../../operation/agentes/status_monitor.php:631
-msgid "Plugin server module"
-msgstr ""
-
-#: ../../godmode/agentes/fields_manager.php:30
-msgid "Agents custom fields manager"
-msgstr ""
-
-#: ../../godmode/agentes/fields_manager.php:46
-#: ../../include/ajax/custom_fields.php:737
-msgid "The name must not be empty"
-msgstr ""
-
-#: ../../godmode/agentes/fields_manager.php:48
-msgid "The name must be unique"
-msgstr ""
-
-#: ../../godmode/agentes/fields_manager.php:59
-msgid "Field successfully created"
-msgstr ""
-
-#: ../../godmode/agentes/fields_manager.php:80
-msgid "Field successfully updated"
-msgstr ""
-
-#: ../../godmode/agentes/fields_manager.php:82
-msgid "There was a problem modifying field"
-msgstr ""
-
-#: ../../godmode/agentes/fields_manager.php:94
-msgid "There was a problem deleting field"
-msgstr ""
-
-#: ../../godmode/agentes/fields_manager.php:96
-msgid "Field successfully deleted"
-msgstr ""
-
-#: ../../godmode/agentes/fields_manager.php:119
-#: ../../godmode/alerts/alert_view.php:442
-#: ../../godmode/alerts/alert_view.php:533
-#: ../../operation/agentes/custom_fields.php:65
-msgid "Field"
-msgstr ""
-
-#: ../../godmode/agentes/fields_manager.php:120
-#: ../../godmode/agentes/configure_field.php:92
-#: ../../operation/agentes/custom_fields.php:67
-msgid "Display on front"
-msgstr ""
-
-#: ../../godmode/agentes/fields_manager.php:120
-#: ../../godmode/agentes/configure_field.php:93
-#: ../../operation/agentes/custom_fields.php:67
-msgid ""
-"The fields with display on front enabled will be displayed into the agent "
-"details"
-msgstr ""
-
-#: ../../godmode/agentes/fields_manager.php:168
-msgid "Create field"
-msgstr ""
-
-#: ../../godmode/agentes/module_manager_editor_network.php:77
-#: ../../operation/agentes/status_monitor.php:627
-msgid "Network server module"
-msgstr ""
-
-#: ../../godmode/agentes/module_manager_editor_network.php:227
-#: ../../godmode/massive/massive_edit_modules.php:794
-msgid "SNMP OID"
-msgstr ""
-
-#: ../../godmode/agentes/module_manager_editor_network.php:266
-msgid "SNMP walk"
-msgstr ""
-
-#: ../../godmode/agentes/module_manager_editor_network.php:349
-#: ../../godmode/agentes/module_manager_editor_network.php:371
-#: ../../godmode/massive/massive_edit_modules.php:849
-#: ../../godmode/massive/massive_edit_modules.php:853
-#: ../../godmode/wizards/HostDevices.class.php:1272
-#: ../../godmode/wizards/HostDevices.class.php:1303
-msgid "The pass length must be eight character minimum."
-msgstr ""
-
-#: ../../godmode/agentes/module_manager_editor_network.php:448
-msgid ""
-"Please use single quotation marks when necessary. \n"
-"\n"
-"If double quotation marks are needed, please escape them with a backslash "
-"(\\&quot;)"
-msgstr ""
-
-#: ../../godmode/agentes/module_manager_editor_network.php:474
-#: ../../godmode/wizards/HostDevices.class.php:1435
-msgid "Manage credentials"
-msgstr ""
-
-#: ../../godmode/agentes/module_manager_editor_network.php:479
-msgid "Windows remote"
-msgstr ""
-
-#: ../../godmode/agentes/module_manager_editor_network.php:482
-msgid "Connection method"
-msgstr ""
-
-#: ../../godmode/agentes/module_manager_editor_data.php:15
-#: ../../operation/agentes/status_monitor.php:625
-msgid "Data server module"
-msgstr ""
-
-#: ../../godmode/agentes/pandora_networkmap_empty.editor.php:95
-msgid "Empty Network maps editor"
-msgstr ""
-
-#: ../../godmode/agentes/pandora_networkmap_empty.editor.php:104
-#: ../../godmode/reporting/visual_console_builder.php:866
-#: ../../godmode/reporting/map_builder.php:130
-#: ../../godmode/reporting/visual_console_favorite.php:127
-#: ../../operation/visual_console/view.php:226
-#: ../../operation/agentes/pandora_networkmap.editor.php:214
-#: ../../operation/agentes/pandora_networkmap.php:665
-#: ../../operation/menu.php:297
-msgid "Topology maps"
-msgstr ""
-
-#: ../../godmode/agentes/pandora_networkmap_empty.editor.php:108
-#: ../../operation/agentes/pandora_networkmap.editor.php:218
-#: ../../operation/agentes/pandora_networkmap.php:669
-#: ../../operation/agentes/pandora_networkmap.view.php:2230
-msgid "Networkmap"
-msgstr ""
-
-#: ../../godmode/agentes/pandora_networkmap_empty.editor.php:115
-#: ../../operation/agentes/pandora_networkmap.editor.php:256
-#: ../../operation/agentes/pandora_networkmap.view.php:2236
-msgid "Not found networkmap."
-msgstr ""
-
-#: ../../godmode/agentes/pandora_networkmap_empty.editor.php:154
-#: ../../operation/agentes/pandora_networkmap.editor.php:311
-#: ../../operation/agentes/pandora_networkmap.view.php:106
-msgid "Node radius"
-msgstr ""
-
-#: ../../godmode/agentes/pandora_networkmap_empty.editor.php:175
-#: ../../operation/agentes/pandora_networkmap.editor.php:445
-msgid "Save networkmap"
-msgstr ""
-
-#: ../../godmode/agentes/pandora_networkmap_empty.editor.php:186
-#: ../../operation/agentes/pandora_networkmap.editor.php:456
-msgid "Update networkmap"
-msgstr ""
-
-#: ../../godmode/agentes/agent_manager.php:223
-#: ../../operation/agentes/estado_agente.php:212 ../../operation/menu.php:54
-msgid "Agent detail"
-msgstr ""
-
-#: ../../godmode/agentes/agent_manager.php:238
-msgid "Delete agent"
-msgstr ""
-
-#: ../../godmode/agentes/agent_manager.php:257
-msgid "This agent can be remotely configured"
-msgstr ""
-
-#: ../../godmode/agentes/agent_manager.php:269
-msgid "QR Code Agent view"
-msgstr ""
-
-#: ../../godmode/agentes/agent_manager.php:286
-#: ../../godmode/reporting/reporting_builder.item_editor.php:67
-#: ../../include/functions_reporting_html.php:1480
-msgid "Alias"
-msgstr ""
-
-#: ../../godmode/agentes/agent_manager.php:290
-msgid "Use alias as name"
-msgstr ""
-
-#: ../../godmode/agentes/agent_manager.php:295
-#: ../../godmode/servers/modificar_server.php:60
-#: ../../include/functions_reporting_html.php:1484
-#: ../../include/functions_reporting_html.php:3649
-#: ../../include/functions_reporting_html.php:3743
-#: ../../include/functions_treeview.php:640
-#: ../../include/functions_events.php:4406
-#: ../../operation/gis_maps/ajax.php:290
-msgid "IP Address"
-msgstr ""
-
-#: ../../godmode/agentes/agent_manager.php:298
-#: ../../godmode/setup/setup_general.php:459
-msgid "Unique IP"
-msgstr ""
-
-#: ../../godmode/agentes/agent_manager.php:307
-#: ../../godmode/snmpconsole/snmp_alert.php:1424
-#: ../../include/class/ModuleTemplates.class.php:970
-#: ../../operation/events/events.php:1758
-msgid "Delete selected"
-msgstr ""
-
-#: ../../godmode/agentes/agent_manager.php:332
-msgid "Primary group"
-msgstr ""
-
-#: ../../godmode/agentes/agent_manager.php:453
-#: ../../godmode/reporting/reporting_builder.item_editor.php:71
-#: ../../include/functions_events.php:5038
-#: ../../operation/agentes/estado_generalagente.php:389
-msgid "Secondary groups"
-msgstr ""
-
-#: ../../godmode/agentes/agent_manager.php:528
-msgid "Add secondary groups"
-msgstr ""
-
-#: ../../godmode/agentes/agent_manager.php:539
-msgid "Remove secondary groups"
-msgstr ""
-
-#: ../../godmode/agentes/agent_manager.php:585
-#: ../../godmode/massive/massive_edit_agents.php:760
-msgid "Safe operation mode"
-msgstr ""
-
-#: ../../godmode/agentes/agent_manager.php:601
-msgid "Delete remote configuration file"
-msgstr ""
-
-#: ../../godmode/agentes/agent_manager.php:608
-#: ../../godmode/massive/massive_edit_agents.php:706
-msgid "Not available"
-msgstr ""
-
-#: ../../godmode/agentes/agent_manager.php:626
-msgid "Cascade protection services"
-msgstr ""
-
-#: ../../godmode/agentes/agent_manager.php:653
-#: ../../godmode/massive/massive_edit_agents.php:571
-msgid "Cascade protection"
-msgstr ""
-
-#: ../../godmode/agentes/agent_manager.php:669
-#: ../../godmode/massive/massive_edit_agents.php:686
-msgid "Module definition"
-msgstr ""
-
-#: ../../godmode/agentes/agent_manager.php:674
-#: ../../godmode/massive/massive_edit_agents.php:688
-msgid "Learning mode"
-msgstr ""
-
-#: ../../godmode/agentes/agent_manager.php:684
-#: ../../godmode/massive/massive_edit_agents.php:689
-msgid "Normal mode"
-msgstr ""
-
-#: ../../godmode/agentes/agent_manager.php:694
-#: ../../godmode/massive/massive_edit_agents.php:690
-msgid "Autodisable mode"
-msgstr ""
-
-#: ../../godmode/agentes/agent_manager.php:711
-msgid "Disabled mode"
-msgstr ""
-
-#: ../../godmode/agentes/agent_manager.php:716
-#: ../../godmode/agentes/agent_manager.php:733
-#: ../../include/functions_treeview.php:759
-#: ../../operation/agentes/ver_agente.php:1486
-#: ../../operation/agentes/estado_generalagente.php:476
-msgid "Url address"
-msgstr ""
-
-#: ../../godmode/agentes/agent_manager.php:758
-#: ../../godmode/massive/massive_edit_agents.php:734
-msgid "Agent icon"
-msgstr ""
-
-#: ../../godmode/agentes/agent_manager.php:808
-msgid "Update new GIS data:"
-msgstr ""
-
-#: ../../godmode/agentes/agent_manager.php:870
-msgid "Click to display"
-msgstr ""
-
-#: ../../godmode/agentes/agent_manager.php:974
-#: ../../godmode/agentes/agent_manager.php:999 ../../godmode/menu.php:77
-#: ../../godmode/massive/massive_edit_agents.php:857
-#: ../../godmode/reporting/reporting_builder.item_editor.php:74
-#: ../../godmode/events/events.php:80 ../../godmode/events/events.php:95
-#: ../../include/functions_reporting_html.php:1508
-#: ../../include/functions_events.php:4430
-#: ../../operation/agentes/status_monitor.php:62
-#: ../../operation/agentes/status_monitor.php:85
-#: ../../operation/agentes/ver_agente.php:1504
-msgid "Custom fields"
-msgstr ""
-
-#: ../../godmode/agentes/agent_manager.php:1118
-msgid "Primary group cannot be secondary too."
-msgstr ""
-
-#: ../../godmode/agentes/agent_manager.php:1249
-msgid "Secondary group cannot be primary too."
-msgstr ""
-
-#: ../../godmode/agentes/agent_incidents.php:22
-#: ../../operation/incidents/incident_statistics.php:24
-#: ../../operation/incidents/configure_integriaims_incident.php:33
-#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:23
-#: ../../operation/incidents/list_integriaims_incidents.php:34
-msgid ""
-"In order to access ticket management system, integration with Integria IMS "
-"must be enabled and properly configured"
-msgstr ""
-
-#: ../../godmode/agentes/agent_incidents.php:69
-msgid "No incidents associated to this agent"
-msgstr ""
-
-#: ../../godmode/agentes/agent_incidents.php:90
-msgid "Incident"
-msgstr ""
-
-#: ../../godmode/agentes/agent_incidents.php:91
-#: ../../godmode/snmpconsole/snmp_alert.php:985
-#: ../../godmode/snmpconsole/snmp_alert.php:1047
-#: ../../godmode/alerts/alert_list.list.php:126
-#: ../../godmode/alerts/alert_templates.php:51
-#: ../../godmode/alerts/configure_alert_template.php:1191
-#: ../../godmode/alerts/alert_view.php:101
-#: ../../godmode/setup/setup_integria.php:376
-#: ../../godmode/setup/setup_integria.php:498
-#: ../../include/functions_reporting_html.php:4861
-#: ../../include/functions_events.php:4592
-#: ../../operation/agentes/estado_generalagente.php:631
-#: ../../operation/incidents/integriaims_export_csv.php:85
-#: ../../operation/incidents/configure_integriaims_incident.php:296
-#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:325
-#: ../../operation/incidents/list_integriaims_incidents.php:348
-#: ../../operation/incidents/list_integriaims_incidents.php:519
-msgid "Priority"
-msgstr ""
-
-#: ../../godmode/agentes/agent_incidents.php:93
-#: ../../godmode/servers/servers.build_table.php:73
-#: ../../operation/incidents/integriaims_export_csv.php:86
-msgid "Updated"
-msgstr ""
-
-#: ../../godmode/agentes/configure_field.php:38
-msgid "Update agent custom field"
-msgstr ""
-
-#: ../../godmode/agentes/configure_field.php:40
-msgid "Create agent custom field"
-msgstr ""
-
-#: ../../godmode/agentes/configure_field.php:52
-#: ../../godmode/agentes/configure_field.php:56
-#: ../../godmode/agentes/configure_field.php:60
-#: ../../godmode/agentes/configure_field.php:64
-msgid "Agent Custom Fields Information"
-msgstr ""
-
-#: ../../godmode/agentes/configure_field.php:53
-msgid ""
-"You cannot set the Password type until you clear the combo values and click "
-"on update button."
-msgstr ""
-
-#: ../../godmode/agentes/configure_field.php:57
-msgid ""
-"You cannot unset the enable combo until you clear the combo values and click "
-"on update."
-msgstr ""
-
-#: ../../godmode/agentes/configure_field.php:61
-msgid "If you select Enabled combo the Password type will be disabled."
-msgstr ""
-
-#: ../../godmode/agentes/configure_field.php:65
-msgid "If you select Passord type the Enabled combo will be disabled."
-msgstr ""
-
-#: ../../godmode/agentes/configure_field.php:81
-msgid "Pass type"
-msgstr ""
-
-#: ../../godmode/agentes/configure_field.php:82
-msgid ""
-"The fields with pass type enabled will be displayed like html input type "
-"pass in html"
-msgstr ""
-
-#: ../../godmode/agentes/configure_field.php:103
-msgid "Enabled combo"
-msgstr ""
-
-#: ../../godmode/agentes/configure_field.php:115
-msgid "Combo values"
-msgstr ""
-
-#: ../../godmode/agentes/configure_field.php:116
-msgid "Set values separated by comma"
-msgstr ""
-
-#: ../../godmode/agentes/module_manager_editor_common.php:108
-msgid "Using module component"
-msgstr ""
-
-#: ../../godmode/agentes/module_manager_editor_common.php:118
-#: ../../godmode/agentes/module_manager_editor_common.php:135
-msgid "Manual setup"
-msgstr ""
-
-#: ../../godmode/agentes/module_manager_editor_common.php:127
-msgid "No component was found"
-msgstr ""
-
-#: ../../godmode/agentes/module_manager_editor_common.php:238
-msgid "Delete module"
-msgstr ""
-
-#: ../../godmode/agentes/module_manager_editor_common.php:271
-#: ../../godmode/agentes/module_manager_editor_common.php:1188
-#: ../../godmode/massive/massive_edit_modules.php:880
-#: ../../include/functions_graph.php:5297
-#: ../../include/functions_treeview.php:116
-#: ../../operation/agentes/status_monitor.php:518
-msgid "Not assigned"
-msgstr ""
-
-#: ../../godmode/agentes/module_manager_editor_common.php:413
-msgid "Warning threshold"
-msgstr ""
-
-#: ../../godmode/agentes/module_manager_editor_common.php:415
-#: ../../godmode/agentes/module_manager_editor_common.php:476
-msgid "Min. "
-msgstr ""
-
-#: ../../godmode/agentes/module_manager_editor_common.php:474
-msgid "Critical threshold"
-msgstr ""
-
-#: ../../godmode/agentes/module_manager_editor_common.php:627
-#: ../../godmode/agentes/module_manager_editor_common.php:629
-#, php-format
-msgid "Agent interval x %s"
-msgstr ""
-
-#: ../../godmode/agentes/module_manager_editor_common.php:673
-msgid "Dynamic Threshold Interval"
-msgstr ""
-
-#: ../../godmode/agentes/module_manager_editor_common.php:700
-msgid "Dynamic Threshold Min. "
-msgstr ""
-
-#: ../../godmode/agentes/module_manager_editor_common.php:713
-msgid "Dynamic Threshold Max. "
-msgstr ""
-
-#: ../../godmode/agentes/module_manager_editor_common.php:726
-msgid "Dynamic Threshold Two Tailed: "
-msgstr ""
-
-#: ../../godmode/agentes/module_manager_editor_common.php:731
-#: ../../godmode/massive/massive_edit_modules.php:900
-msgid "Export target"
-msgstr ""
-
-#: ../../godmode/agentes/module_manager_editor_common.php:737
-msgid "Not needed"
-msgstr ""
-
-#: ../../godmode/agentes/module_manager_editor_common.php:865
-#: ../../godmode/massive/massive_edit_modules.php:1002
-msgid "FF interval"
-msgstr ""
-
-#: ../../godmode/agentes/module_manager_editor_common.php:880
-#: ../../godmode/massive/massive_edit_modules.php:1016
-msgid "FF timeout"
-msgstr ""
-
-#: ../../godmode/agentes/module_manager_editor_common.php:1035
-msgid "Tags from policy"
-msgstr ""
-
-#: ../../godmode/agentes/module_manager_editor_common.php:1075
-msgid "Cascade Protection Services"
-msgstr ""
-
-#: ../../godmode/agentes/module_manager_editor_common.php:1109
-#: ../../godmode/agentes/module_manager_editor_common.php:1117
-#: ../../godmode/agentes/module_manager_editor_common.php:1126
-msgid "Cron from"
-msgstr ""
-
-#: ../../godmode/agentes/module_manager_editor_common.php:1113
-#: ../../godmode/agentes/module_manager_editor_common.php:1121
-#: ../../godmode/agentes/module_manager_editor_common.php:1130
-msgid "Cron to"
-msgstr ""
-
-#: ../../godmode/agentes/module_manager_editor_common.php:1135
-#: ../../godmode/massive/massive_edit_modules.php:1110
-msgid "Timeout"
-msgstr ""
-
-#: ../../godmode/agentes/module_manager_editor_common.php:1138
-#: ../../godmode/massive/massive_edit_modules.php:1123
-msgid "Retries"
-msgstr ""
-
-#: ../../godmode/agentes/module_manager_editor_common.php:1166
-msgid "Module parent"
-msgstr ""
-
-#: ../../godmode/agentes/module_manager_editor_common.php:1214
-#: ../../godmode/snmpconsole/snmp_trap_generator.php:115
-#: ../../godmode/massive/massive_edit_modules.php:872
-#: ../../godmode/alerts/configure_alert_template.php:893
-#: ../../godmode/setup/setup_visuals.php:1285
-#: ../../godmode/setup/setup_visuals.php:1346
-#: ../../godmode/setup/setup_visuals.php:1366
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2447
-#: ../../godmode/reporting/visual_console_builder.wizard.php:319
-#: ../../include/functions_visual_map_editor.php:693
-#: ../../include/functions_reporting_html.php:932
-#: ../../include/functions_reporting_html.php:2045
-#: ../../include/functions_reporting_html.php:4469
-#: ../../include/functions_reporting_html.php:4979
-#: ../../include/ajax/events.php:1932 ../../include/functions_graph.php:5434
-#: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:505
-#: ../../include/functions_netflow.php:212
-#: ../../include/functions_snmp_browser.php:560
-msgid "Value"
-msgstr ""
-
-#: ../../godmode/agentes/module_manager_editor_common.php:1264
-#: ../../godmode/agentes/module_manager_editor_common.php:1375
-msgid "Direct"
-msgstr ""
-
-#: ../../godmode/agentes/module_manager_editor_common.php:1265
-#: ../../godmode/agentes/module_manager_editor_common.php:1375
-#: ../../include/functions_reporting_html.php:3642
-#: ../../include/functions_reporting_html.php:3736
-#: ../../include/functions_reporting_html.php:3816
-#: ../../include/functions_reporting_html.php:3825
-#: ../../include/functions_reporting_html.php:3963
-#: ../../include/functions_reporting_html.php:3972
-#: ../../include/functions_reporting_html.php:4296
-#: ../../include/functions_reporting_html.php:4302
-msgid "Failover"
-msgstr ""
-
-#: ../../godmode/agentes/module_manager_editor_common.php:1266
-msgid "Rel. type"
-msgstr ""
-
-#: ../../godmode/agentes/module_manager_editor_common.php:1281
-msgid "Add relationship"
-msgstr ""
-
-#: ../../godmode/agentes/module_manager_editor_common.php:1306
-msgid "Changes"
-msgstr ""
-
-#: ../../godmode/agentes/module_manager.php:130
-msgid "Create a new data server module"
-msgstr ""
-
-#: ../../godmode/agentes/module_manager.php:132
-msgid "Create a new network server module"
-msgstr ""
-
-#: ../../godmode/agentes/module_manager.php:136
-msgid "Create a new plugin server module"
-msgstr ""
-
-#: ../../godmode/agentes/module_manager.php:140
-msgid "Create a new WMI server module"
-msgstr ""
-
-#: ../../godmode/agentes/module_manager.php:144
-msgid "Create a new prediction server module"
-msgstr ""
-
-#: ../../godmode/agentes/module_manager.php:148
-msgid "Create a new web Server module"
-msgstr ""
-
-#: ../../godmode/agentes/module_manager.php:192
-#: ../../operation/agentes/estado_monitores.php:582
-msgid "Show in hierachy mode"
-msgstr ""
-
-#: ../../godmode/agentes/module_manager.php:211
-msgid "<p>Type</p>"
-msgstr ""
-
-#: ../../godmode/agentes/module_manager.php:241
-msgid "Get more modules on Monitoring Library"
-msgstr ""
-
-#: ../../godmode/agentes/module_manager.php:274
-#: ../../godmode/massive/massive_delete_action_alerts.php:163
-#: ../../godmode/massive/massive_add_action_alerts.php:157
-#: ../../godmode/massive/massive_edit_modules.php:1986
-#: ../../godmode/reporting/visual_console_builder.php:623
-#: ../../include/functions_visual_map.php:2674
-msgid "No modules selected"
-msgstr ""
-
-#: ../../godmode/agentes/module_manager.php:280
-msgid "There was a problem completing the operation"
-msgstr ""
-
-#: ../../godmode/agentes/module_manager.php:437
-#: ../../godmode/agentes/module_manager.php:478
-#, php-format
-msgid "There was a problem completing the operation. Applied to 0/%d modules."
-msgstr ""
-
-#: ../../godmode/agentes/module_manager.php:443
-#: ../../godmode/agentes/module_manager.php:484
-msgid "Operation finished successfully."
-msgstr ""
-
-#: ../../godmode/agentes/module_manager.php:447
-#: ../../godmode/agentes/module_manager.php:488
-#, php-format
-msgid "There was a problem completing the operation. Applied to %d/%d modules."
-msgstr ""
-
-#: ../../godmode/agentes/module_manager.php:794
-#: ../../godmode/reporting/map_builder.php:454
-#: ../../godmode/reporting/map_builder.php:471
-#: ../../include/ajax/module.php:560
-#: ../../operation/agentes/datos_agente.php:295
-msgid "No available data to show"
-msgstr ""
-
-#: ../../godmode/agentes/module_manager.php:841
-#: ../../godmode/snmpconsole/snmp_alert.php:1184
-#: ../../godmode/reporting/reporting_builder.list_items.php:371
-#: ../../godmode/reporting/graph_builder.graph_editor.php:211
-#: ../../include/ajax/alert_list.ajax.php:271 ../../include/ajax/module.php:974
-#: ../../operation/agentes/alerts_status.php:531
-#: ../../operation/agentes/alerts_status.php:567
-#: ../../operation/agentes/status_monitor.php:1303
-msgid "P."
-msgstr ""
-
-#: ../../godmode/agentes/module_manager.php:844
-#: ../../mobile/operation/agents.php:387
-#: ../../include/ajax/alert_list.ajax.php:272
-#: ../../include/ajax/alert_list.ajax.php:297
-#: ../../include/class/AuditLog.class.php:128
-#: ../../include/functions_events.php:2560
-#: ../../operation/agentes/alerts_status.php:533
-#: ../../operation/agentes/alerts_status.php:569
-#: ../../operation/agentes/alerts_status.php:604
-#: ../../operation/agentes/alerts_status.php:637
-msgid "S."
-msgstr ""
-
-#: ../../godmode/agentes/module_manager.php:868
-msgid "Del."
-msgstr ""
-
-#: ../../godmode/agentes/module_manager.php:1042
-#: ../../godmode/agentes/module_manager.php:1050
-#: ../../include/ajax/module.php:1084 ../../include/ajax/module.php:1092
-msgid "Adopted"
-msgstr ""
-
-#: ../../godmode/agentes/module_manager.php:1050
-#: ../../godmode/agentes/module_manager.php:1053
-#: ../../godmode/massive/massive_edit_modules.php:1055
-#: ../../include/ajax/module.php:1092 ../../include/ajax/module.php:1095
-msgid "Unlinked"
-msgstr ""
-
-#: ../../godmode/agentes/module_manager.php:1086
-msgid "Non initialized module"
-msgstr ""
-
-#: ../../godmode/agentes/module_manager.php:1105
-msgid ""
-"The policy modules of data type will only update their intervals when policy "
-"is applied."
-msgstr ""
-
-#: ../../godmode/agentes/module_manager.php:1143
-#: ../../godmode/agentes/module_manager.php:1144
-msgid "Enable module"
-msgstr ""
-
-#: ../../godmode/agentes/module_manager.php:1153
-#: ../../godmode/agentes/module_manager.php:1154
-msgid "Disable module"
-msgstr ""
-
-#: ../../godmode/agentes/module_manager.php:1180
-msgid "Normalize"
-msgstr ""
-
-#: ../../godmode/agentes/module_manager.php:1190
-msgid "Normalize (Disabled)"
-msgstr ""
-
-#: ../../godmode/agentes/module_manager.php:1205
-#: ../../include/functions_snmp_browser.php:638
-msgid "Create network component"
-msgstr ""
-
-#: ../../godmode/agentes/module_manager.php:1214
-msgid "Create network component (Disabled)"
-msgstr ""
-
-#: ../../godmode/agentes/module_manager.php:1274
-msgid "Execute action"
-msgstr ""
-
-#: ../../godmode/netflow/nf_item_list.php:27
-#: ../../operation/reporting/reporting_viewer.php:116
-msgid "Report list"
-msgstr ""
-
-#: ../../godmode/netflow/nf_item_list.php:30
-#: ../../godmode/netflow/nf_item_list.php:38
-msgid "Report items"
-msgstr ""
-
-#: ../../godmode/netflow/nf_item_list.php:33
-msgid "Edit report"
-msgstr ""
-
-#: ../../godmode/netflow/nf_item_list.php:49
-#: ../../godmode/netflow/nf_edit.php:53
-#: ../../godmode/netflow/nf_edit_form.php:69
-#: ../../operation/agentes/ver_agente.php:1339
-#: ../../operation/netflow/nf_live_view.php:141
-msgid "Main"
-msgstr ""
-
-#: ../../godmode/netflow/nf_item_list.php:53
-msgid "Netflow reports"
-msgstr ""
-
-#: ../../godmode/netflow/nf_item_list.php:57
-msgid "Item list"
-msgstr ""
-
-#: ../../godmode/netflow/nf_item_list.php:173
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2294
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2941
-#: ../../include/lib/Dashboard/Widgets/top_n.php:267
-msgid "Order"
-msgstr ""
-
-#: ../../godmode/netflow/nf_item_list.php:176
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2338
-#: ../../operation/netflow/nf_live_view.php:322
-msgid "Max. values"
-msgstr ""
-
-#: ../../godmode/netflow/nf_item_list.php:177
-#: ../../operation/agentes/graphs.php:233
-msgid "Chart type"
-msgstr ""
-
-#: ../../godmode/netflow/nf_item_list.php:226
-#: ../../godmode/netflow/nf_item_list.php:231
-msgid "Move to down"
-msgstr ""
-
-#: ../../godmode/netflow/nf_item_list.php:228
-#: ../../godmode/netflow/nf_item_list.php:230
-msgid "Move to up"
-msgstr ""
-
-#: ../../godmode/netflow/nf_item_list.php:277
-msgid "There are no defined items"
-msgstr ""
-
-#: ../../godmode/netflow/nf_item_list.php:282
-#: ../../godmode/reporting/reporting_builder.item_editor.php:3619
-msgid "Create item"
-msgstr ""
-
-#: ../../godmode/netflow/nf_edit.php:38
-msgid "Manage Netflow Filter"
-msgstr ""
-
-#: ../../godmode/netflow/nf_edit.php:47
-#: ../../operation/netflow/nf_live_view.php:133
-msgid "Not supported in Windows systems"
-msgstr ""
-
-#: ../../godmode/netflow/nf_edit.php:57 ../../godmode/netflow/nf_edit.php:63
-#: ../../godmode/netflow/nf_edit_form.php:73
-#: ../../godmode/netflow/nf_edit_form.php:83 ../../godmode/menu.php:97
-msgid "Netflow filters"
-msgstr ""
-
-#: ../../godmode/netflow/nf_edit.php:212
-#: ../../godmode/events/event_filter.php:215
-msgid "There are no defined filters"
-msgstr ""
-
-#: ../../godmode/netflow/nf_edit.php:217
-#: ../../godmode/netflow/nf_edit_form.php:189
-#: ../../godmode/snmpconsole/snmp_filters.php:37
-#: ../../godmode/events/event_filter.php:225
-#: ../../include/ajax/custom_fields.php:652
-msgid "Create filter"
-msgstr ""
-
-#: ../../godmode/netflow/nf_edit_form.php:53 ../../godmode/events/events.php:54
-msgid "Filter list"
-msgstr ""
-
-#: ../../godmode/netflow/nf_edit_form.php:55
-#: ../../godmode/netflow/nf_edit_form.php:77
-msgid "Add filter"
-msgstr ""
-
-#: ../../godmode/netflow/nf_edit_form.php:58
-msgid "Netflow Filter"
-msgstr ""
-
-#: ../../godmode/netflow/nf_edit_form.php:187
-#: ../../godmode/snmpconsole/snmp_filters.php:35
-#: ../../include/ajax/custom_fields.php:707 ../../include/ajax/events.php:663
-#: ../../include/ajax/events.php:723 ../../operation/events/events_list.php:422
-#: ../../operation/events/events_list.php:475
-msgid "Update filter"
-msgstr ""
-
-#: ../../godmode/netflow/nf_edit_form.php:234
-msgid "Filter:"
-msgstr ""
-
-#: ../../godmode/netflow/nf_edit_form.php:238
-#: ../../operation/netflow/nf_live_view.php:406
-msgid "Dst Ip"
-msgstr ""
-
-#: ../../godmode/netflow/nf_edit_form.php:238
-#: ../../operation/netflow/nf_live_view.php:406
-msgid ""
-"Destination IP. A comma separated list of destination ip. If we leave the "
-"field blank, will show all ip. Example filter by ip:"
-"<br>25.46.157.214,160.253.135.249"
-msgstr ""
-
-#: ../../godmode/netflow/nf_edit_form.php:241
-#: ../../operation/netflow/nf_live_view.php:414
-msgid "Src Ip"
-msgstr ""
-
-#: ../../godmode/netflow/nf_edit_form.php:241
-#: ../../operation/netflow/nf_live_view.php:414
-msgid ""
-"Source IP. A comma separated list of source ip. If we leave the field blank, "
-"will show all ip. Example filter by ip:<br>25.46.157.214,160.253.135.249"
-msgstr ""
-
-#: ../../godmode/netflow/nf_edit_form.php:244
-#: ../../godmode/netflow/nf_edit_form.php:257
-#: ../../operation/netflow/nf_live_view.php:342
-#: ../../operation/netflow/nf_live_view.php:425
-msgid "Dst Port"
-msgstr ""
-
-#: ../../godmode/netflow/nf_edit_form.php:244
-#: ../../operation/netflow/nf_live_view.php:425
-msgid ""
-"Destination port. A comma separated list of destination ports. If we leave "
-"the field blank, will show all ports. Example filter by ports 80 and 22:"
-"<br>80,22"
-msgstr ""
-
-#: ../../godmode/netflow/nf_edit_form.php:247
-#: ../../godmode/netflow/nf_edit_form.php:256
-#: ../../operation/netflow/nf_live_view.php:341
-#: ../../operation/netflow/nf_live_view.php:433
-msgid "Src Port"
-msgstr ""
-
-#: ../../godmode/netflow/nf_edit_form.php:247
-#: ../../operation/netflow/nf_live_view.php:433
-msgid ""
-"Source port. A comma separated list of source ports. If we leave the field "
-"blank, will show all ports. Example filter by ports 80 and 22:<br>80,22"
-msgstr ""
-
-#: ../../godmode/netflow/nf_edit_form.php:252
-#: ../../operation/netflow/nf_live_view.php:336
-msgid "Aggregate by"
-msgstr ""
-
-#: ../../godmode/netflow/nf_edit_form.php:254
-#: ../../operation/netflow/nf_live_view.php:339
-msgid "Src Ip Address"
-msgstr ""
-
-#: ../../godmode/netflow/nf_edit_form.php:255
-#: ../../operation/netflow/nf_live_view.php:340
-msgid "Dst Ip Address"
-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:87
-#: ../../operation/snmpconsole/snmp_mib_uploader.php:57
-msgid "SMNP"
-msgstr ""
-
-#: ../../godmode/snmpconsole/snmp_trap_generator.php:68
-msgid "Empty parameters"
-msgstr ""
-
-#: ../../godmode/snmpconsole/snmp_trap_generator.php:74
-msgid "Successfully generated"
-msgstr ""
-
-#: ../../godmode/snmpconsole/snmp_trap_generator.php:75
-#, php-format
-msgid "Could not be generated: %s"
-msgstr ""
-
-#: ../../godmode/snmpconsole/snmp_trap_generator.php:85
-msgid "Host address"
-msgstr ""
-
-#: ../../godmode/snmpconsole/snmp_trap_generator.php:95
-#: ../../include/functions_snmp_browser.php:727
-msgid "Community"
-msgstr ""
-
-#: ../../godmode/snmpconsole/snmp_trap_generator.php:105
-#: ../../godmode/snmpconsole/snmp_alert.php:697
-#: ../../godmode/snmpconsole/snmp_alert.php:1193
-#: ../../operation/snmpconsole/snmp_view.php:859
-msgid "Enterprise String"
-msgstr ""
-
-#: ../../godmode/snmpconsole/snmp_trap_generator.php:125
-#: ../../godmode/snmpconsole/snmp_alert.php:710
-#: ../../godmode/snmpconsole/snmp_alert.php:1189
-#: ../../operation/snmpconsole/snmp_view.php:854
-msgid "SNMP Agent"
-msgstr ""
-
-#: ../../godmode/snmpconsole/snmp_trap_generator.php:135
-msgid "SNMP Type"
-msgstr ""
-
-#: ../../godmode/snmpconsole/snmp_trap_generator.php:168
-msgid "Generate trap"
-msgstr ""
-
-#: ../../godmode/snmpconsole/snmp_alert.php:28
-#: ../../operation/snmpconsole/snmp_view.php:631
-#: ../../operation/snmpconsole/snmp_view.php:1115
-#: ../../operation/snmpconsole/snmp_view.php:1129
-msgid "Cold start (0)"
-msgstr ""
-
-#: ../../godmode/snmpconsole/snmp_alert.php:29
-#: ../../operation/snmpconsole/snmp_view.php:632
-#: ../../operation/snmpconsole/snmp_view.php:1116
-#: ../../operation/snmpconsole/snmp_view.php:1133
-msgid "Warm start (1)"
-msgstr ""
-
-#: ../../godmode/snmpconsole/snmp_alert.php:30
-#: ../../operation/snmpconsole/snmp_view.php:633
-#: ../../operation/snmpconsole/snmp_view.php:1117
-#: ../../operation/snmpconsole/snmp_view.php:1137
-msgid "Link down (2)"
-msgstr ""
-
-#: ../../godmode/snmpconsole/snmp_alert.php:31
-#: ../../operation/snmpconsole/snmp_view.php:634
-#: ../../operation/snmpconsole/snmp_view.php:1118
-#: ../../operation/snmpconsole/snmp_view.php:1141
-msgid "Link up (3)"
-msgstr ""
-
-#: ../../godmode/snmpconsole/snmp_alert.php:32
-#: ../../operation/snmpconsole/snmp_view.php:635
-#: ../../operation/snmpconsole/snmp_view.php:1119
-#: ../../operation/snmpconsole/snmp_view.php:1145
-msgid "Authentication failure (4)"
-msgstr ""
-
-#: ../../godmode/snmpconsole/snmp_alert.php:83
-#: ../../godmode/snmpconsole/snmp_alert.php:91
-#: ../../godmode/snmpconsole/snmp_alert.php:99
-#: ../../godmode/snmpconsole/snmp_filters.php:46
-#: ../../operation/snmpconsole/snmp_view.php:681
-#: ../../operation/snmpconsole/snmp_view.php:789
-msgid "SNMP Console"
-msgstr ""
-
-#: ../../godmode/snmpconsole/snmp_alert.php:83
-msgid "Update alert"
-msgstr ""
-
-#: ../../godmode/snmpconsole/snmp_alert.php:91
-msgid "Create alert"
-msgstr ""
-
-#: ../../godmode/snmpconsole/snmp_alert.php:99
-msgid "Alert overview"
-msgstr ""
-
-#: ../../godmode/snmpconsole/snmp_alert.php:274
-msgid "There was a problem creating the alert"
-msgstr ""
-
-#: ../../godmode/snmpconsole/snmp_alert.php:404
-msgid "There was a problem updating the alert"
-msgstr ""
-
-#: ../../godmode/snmpconsole/snmp_alert.php:595
-#: ../../godmode/snmpconsole/snmp_alert.php:602
-msgid "There was a problem duplicating the alert"
-msgstr ""
-
-#: ../../godmode/snmpconsole/snmp_alert.php:598
-msgid "Successfully Duplicate"
-msgstr ""
-
-#: ../../godmode/snmpconsole/snmp_alert.php:620
-msgid "There was a problem deleting the alert"
-msgstr ""
-
-#: ../../godmode/snmpconsole/snmp_alert.php:649
-#, php-format
-msgid "Successfully deleted alerts (%s / %s)"
-msgstr ""
-
-#: ../../godmode/snmpconsole/snmp_alert.php:653
-#, php-format
-msgid "Unsuccessfully deleted alerts (%s / %s)"
-msgstr ""
-
-#: ../../godmode/snmpconsole/snmp_alert.php:697
-msgid "Matches substrings. End the string with $ for exact matches."
-msgstr ""
-
-#: ../../godmode/snmpconsole/snmp_alert.php:702
-msgid "Custom Value/OID"
-msgstr ""
-
-#: ../../godmode/snmpconsole/snmp_alert.php:747
-#: ../../godmode/snmpconsole/snmp_alert.php:1045
-#: ../../include/functions_snmp.php:433
-#: ../../operation/snmpconsole/snmp_view.php:628
-msgid "Trap type"
-msgstr ""
-
-#: ../../godmode/snmpconsole/snmp_alert.php:752
-msgid "Single value"
-msgstr ""
-
-#: ../../godmode/snmpconsole/snmp_alert.php:757
-#: ../../godmode/snmpconsole/snmp_alert.php:764
-#: ../../godmode/snmpconsole/snmp_alert.php:773
-#: ../../godmode/snmpconsole/snmp_alert.php:782
-#: ../../godmode/snmpconsole/snmp_alert.php:791
-#: ../../godmode/snmpconsole/snmp_alert.php:800
-#: ../../godmode/snmpconsole/snmp_alert.php:809
-#: ../../godmode/snmpconsole/snmp_alert.php:817
-#: ../../godmode/snmpconsole/snmp_alert.php:825
-#: ../../godmode/snmpconsole/snmp_alert.php:833
-#: ../../godmode/snmpconsole/snmp_alert.php:841
-#: ../../godmode/snmpconsole/snmp_alert.php:849
-#: ../../godmode/snmpconsole/snmp_alert.php:857
-#: ../../godmode/snmpconsole/snmp_alert.php:865
-#: ../../godmode/snmpconsole/snmp_alert.php:873
-#: ../../godmode/snmpconsole/snmp_alert.php:881
-#: ../../godmode/snmpconsole/snmp_alert.php:889
-#: ../../godmode/snmpconsole/snmp_alert.php:897
-#: ../../godmode/snmpconsole/snmp_alert.php:905
-#: ../../godmode/snmpconsole/snmp_alert.php:913
-msgid "Variable bindings/Data"
-msgstr ""
-
-#: ../../godmode/snmpconsole/snmp_alert.php:955
-#: ../../godmode/alerts/configure_alert_template.php:767
-msgid "Min. number of alerts"
-msgstr ""
-
-#: ../../godmode/snmpconsole/snmp_alert.php:958
-#: ../../godmode/alerts/configure_alert_template.php:804
-msgid "Max. number of alerts"
-msgstr ""
-
-#: ../../godmode/snmpconsole/snmp_alert.php:963
-#: ../../godmode/alerts/alert_templates.php:91
-#: ../../godmode/alerts/configure_alert_template.php:752
-#: ../../godmode/alerts/alert_view.php:314
-msgid "Time threshold"
-msgstr ""
-
-#: ../../godmode/snmpconsole/snmp_alert.php:977
-msgid "Other value"
-msgstr ""
-
-#: ../../godmode/snmpconsole/snmp_alert.php:982
-#: ../../godmode/setup/setup_visuals.php:1027
-#: ../../godmode/setup/setup_visuals.php:1028
-#: ../../godmode/setup/setup_visuals.php:1339
-#: ../../include/functions_visual_map_editor.php:1223
-#: ../../include/functions_visual_map_editor.php:1224
-#: ../../include/functions.php:499 ../../include/functions.php:629
-#: ../../include/functions_html.php:2002
-#: ../../include/class/AgentsAlerts.class.php:384
-msgid "seconds"
-msgstr ""
-
-#: ../../godmode/snmpconsole/snmp_alert.php:990
-#: ../../godmode/snmpconsole/snmp_alert.php:1187
-msgid "Alert action"
-msgstr ""
-
-#: ../../godmode/snmpconsole/snmp_alert.php:1006
-#: ../../godmode/snmpconsole/snmp_alert.php:1184
-#: ../../godmode/reporting/reporting_builder.list_items.php:371
-#: ../../godmode/reporting/visual_console_builder.elements.php:107
-#: ../../include/functions_visual_map_editor.php:922
-#: ../../include/rest-api/models/VisualConsole/Items/Box.php:246
-#: ../../include/rest-api/models/VisualConsole/Item.php:1992
-msgid "Position"
-msgstr ""
-
-#: ../../godmode/snmpconsole/snmp_alert.php:1010
-#: ../../godmode/alerts/configure_alert_template.php:825
-msgid "Disable event"
-msgstr ""
-
-#: ../../godmode/snmpconsole/snmp_alert.php:1041
-msgid ""
-"Search by these fields description, OID, Custom Value, SNMP Agent (IP), "
-"Single value, each Variable bindings/Datas."
-msgstr ""
-
-#: ../../godmode/snmpconsole/snmp_alert.php:1060
-msgid "Alert SNMP control filter"
-msgstr ""
-
-#: ../../godmode/snmpconsole/snmp_alert.php:1145
-msgid "There are no SNMP alerts"
-msgstr ""
-
-#: ../../godmode/snmpconsole/snmp_alert.php:1196
-msgid "Custom Value/Enterprise String"
-msgstr ""
-
-#: ../../godmode/snmpconsole/snmp_alert.php:1201
-#: ../../include/functions_reporting_html.php:4860
-#: ../../include/functions_reporting_html.php:4982
-#: ../../include/functions_treeview.php:454
-msgid "Times fired"
-msgstr ""
-
-#: ../../godmode/snmpconsole/snmp_alert.php:1201
-msgid "TF."
-msgstr ""
-
-#: ../../godmode/snmpconsole/snmp_alert.php:1205
-#: ../../godmode/alerts/alert_view.php:76
-#: ../../include/functions_reporting_html.php:4981
-#: ../../include/ajax/alert_list.ajax.php:281
-#: ../../include/ajax/alert_list.ajax.php:306
-#: ../../include/functions_treeview.php:455
-#: ../../include/class/AgentsAlerts.class.php:902
-#: ../../operation/agentes/alerts_status.php:545
-#: ../../operation/agentes/alerts_status.php:580
-#: ../../operation/agentes/alerts_status.php:615
-#: ../../operation/agentes/alerts_status.php:647
-msgid "Last fired"
-msgstr ""
-
-#: ../../godmode/snmpconsole/snmp_alert.php:1284
-#: ../../godmode/alerts/alert_list.list.php:896
-#: ../../godmode/alerts/alert_list.list.php:903
-#: ../../godmode/alerts/alert_list.list.php:1129
-msgid "Add action"
-msgstr ""
-
-#: ../../godmode/snmpconsole/snmp_alert.php:1324
-msgid "ID Alert SNMP"
-msgstr ""
-
-#: ../../godmode/snmpconsole/snmp_alert.php:1556
-msgid "Add action "
-msgstr ""
-
-#: ../../godmode/snmpconsole/snmp_filters.php:41
-msgid "Filter overview"
-msgstr ""
-
-#: ../../godmode/snmpconsole/snmp_filters.php:108
-msgid "There was a problem updating the filter"
-msgstr ""
-
-#: ../../godmode/snmpconsole/snmp_filters.php:126
-#: ../../godmode/snmpconsole/snmp_filters.php:152
-msgid "Description is empty"
-msgstr ""
-
-#: ../../godmode/snmpconsole/snmp_filters.php:129
-msgid "Filter is empty"
-msgstr ""
-
-#: ../../godmode/snmpconsole/snmp_filters.php:149
-msgid "Filters are empty"
-msgstr ""
-
-#: ../../godmode/snmpconsole/snmp_filters.php:159
-msgid "There was a problem creating the filter"
-msgstr ""
-
-#: ../../godmode/snmpconsole/snmp_filters.php:178
-msgid "There was a problem deleting the filter"
-msgstr ""
-
-#: ../../godmode/snmpconsole/snmp_filters.php:221
-#: ../../godmode/snmpconsole/snmp_filters.php:231
-msgid ""
-"This field contains a substring, could be part of a IP address, a numeric "
-"OID, or a plain substring"
-msgstr ""
-
-#: ../../godmode/snmpconsole/snmp_filters.php:223
-msgid "Click to remove the filter"
-msgstr ""
-
-#: ../../godmode/snmpconsole/snmp_filters.php:254
-#: ../../godmode/snmpconsole/snmp_filters.php:255
-msgid "Click to add new filter"
-msgstr ""
-
-#: ../../godmode/menu.php:31 ../../godmode/setup/setup_ehorus.php:109
-#: ../../godmode/setup/setup_integria.php:564
-#: ../../operation/users/user_edit.php:711
-#: ../../operation/users/user_edit.php:757
-msgid "Start"
-msgstr ""
-
-#: ../../godmode/menu.php:33
-#: ../../godmode/wizards/DiscoveryTaskList.class.php:105
-msgid "Task list"
-msgstr ""
-
-#: ../../godmode/menu.php:41
-msgid "Network scan"
-msgstr ""
-
-#: ../../godmode/menu.php:43
-msgid "Custom network scan"
-msgstr ""
-
-#: ../../godmode/menu.php:47
-msgid "Manage scan scripts"
-msgstr ""
-
-#: ../../godmode/menu.php:50 ../../godmode/wizards/HostDevices.class.php:204
-msgid "Host & devices"
-msgstr ""
-
-#: ../../godmode/menu.php:62 ../../godmode/wizards/HostDevices.class.php:190
-#: ../../godmode/servers/discovery.php:59
-msgid "Discovery"
-msgstr ""
-
-#: ../../godmode/menu.php:80
-msgid "Component groups"
-msgstr ""
-
-#: ../../godmode/menu.php:83
-msgid "Module categories"
-msgstr ""
-
-#: ../../godmode/menu.php:87
-msgid "Module types"
-msgstr ""
-
-#: ../../godmode/menu.php:111
-msgid "Manage agents groups"
-msgstr ""
-
-#: ../../godmode/menu.php:117
-msgid "Module tags"
-msgstr ""
-
-#: ../../godmode/menu.php:125
-msgid "Users management"
-msgstr ""
-
-#: ../../godmode/menu.php:151 ../../include/class/ConfigPEN.class.php:337
-#: ../../include/class/ConfigPEN.class.php:345
-msgid "Private Enterprise Numbers"
-msgstr ""
-
-#: ../../godmode/menu.php:153
-msgid "Local components"
-msgstr ""
-
-#: ../../godmode/menu.php:155
-msgid "Remote components"
-msgstr ""
-
-#: ../../godmode/menu.php:183 ../../godmode/massive/massive_operations.php:329
-msgid "Bulk operations"
-msgstr ""
-
-#: ../../godmode/menu.php:188 ../../godmode/massive/massive_operations.php:257
-msgid "Agents operations"
-msgstr ""
-
-#: ../../godmode/menu.php:189 ../../godmode/massive/massive_operations.php:269
-msgid "Modules operations"
-msgstr ""
-
-#: ../../godmode/menu.php:190 ../../godmode/massive/massive_operations.php:281
-msgid "Plugins operations"
-msgstr ""
-
-#: ../../godmode/menu.php:192 ../../godmode/massive/massive_operations.php:245
-msgid "Users operations"
-msgstr ""
-
-#: ../../godmode/menu.php:195 ../../godmode/massive/massive_operations.php:233
-msgid "Alerts operations"
-msgstr ""
-
-#: ../../godmode/menu.php:225
-msgid "List of Alerts"
-msgstr ""
-
-#: ../../godmode/menu.php:237
-msgid "Commands"
-msgstr ""
-
-#: ../../godmode/menu.php:240 ../../godmode/menu.php:241
-msgid "Special days list"
-msgstr ""
-
-#: ../../godmode/menu.php:245
-msgid "SNMP alerts"
-msgstr ""
-
-#: ../../godmode/menu.php:257
-msgid "Event filters"
-msgstr ""
-
-#: ../../godmode/menu.php:262
-msgid "Custom events"
-msgstr ""
-
-#: ../../godmode/menu.php:264 ../../godmode/events/events.php:68
-msgid "Event responses"
-msgstr ""
-
-#: ../../godmode/menu.php:269 ../../mobile/include/functions_web.php:25
-#: ../../mobile/operation/home.php:51 ../../mobile/operation/events.php:609
-#: ../../include/functions.php:4077 ../../include/functions_reports.php:851
-#: ../../include/functions_reports.php:855
-#: ../../include/functions_reports.php:859 ../../operation/menu.php:370
-#: ../../operation/events/events.php:934 ../../operation/events/events.php:948
-msgid "Events"
-msgstr ""
-
-#: ../../godmode/menu.php:278 ../../godmode/setup/os.php:222
-#: ../../godmode/reporting/visual_console_builder.wizard.php:333
-#: ../../mobile/include/functions_web.php:28
-msgid "Servers"
-msgstr ""
-
-#: ../../godmode/menu.php:285
-msgid "Manage servers"
-msgstr ""
-
-#: ../../godmode/menu.php:293
-msgid "Plugins"
-msgstr ""
-
-#: ../../godmode/menu.php:296
-msgid "Register Plugin"
-msgstr ""
-
-#: ../../godmode/menu.php:322
-#: ../../include/class/OrderInterpreter.class.php:141
-msgid "General Setup"
-msgstr ""
-
-#: ../../godmode/menu.php:331 ../../godmode/setup/setup.php:110
-#: ../../godmode/setup/setup.php:252
-msgid "Authentication"
-msgstr ""
-
-#: ../../godmode/menu.php:334 ../../godmode/setup/setup.php:122
-#: ../../godmode/setup/setup.php:257
-msgid "Performance"
-msgstr ""
-
-#: ../../godmode/menu.php:337 ../../godmode/setup/setup.php:134
-#: ../../godmode/setup/setup.php:263
-msgid "Visual styles"
-msgstr ""
-
-#: ../../godmode/menu.php:342 ../../godmode/setup/setup.php:148
-#: ../../godmode/setup/setup.php:268 ../../include/functions_reports.php:893
-#: ../../include/functions_reports.php:897
-#: ../../include/functions_reports.php:901
-msgid "Netflow"
-msgstr ""
-
-#: ../../godmode/menu.php:347 ../../godmode/setup/setup.php:174
-#: ../../godmode/setup/setup.php:274
-#: ../../operation/agentes/ver_agente.php:1569
-msgid "eHorus"
-msgstr ""
-
-#: ../../godmode/menu.php:350 ../../godmode/setup/setup.php:162
-#: ../../godmode/setup/setup.php:280 ../../godmode/setup/setup_integria.php:578
-msgid "Integria IMS"
-msgstr ""
-
-#: ../../godmode/menu.php:355 ../../godmode/setup/setup.php:201
-#: ../../godmode/setup/setup.php:297
-msgid "Notifications"
-msgstr ""
-
-#: ../../godmode/menu.php:358
-msgid "Websocket Engine"
-msgstr ""
-
-#: ../../godmode/menu.php:361 ../../godmode/setup/setup.php:221
-#: ../../godmode/setup/setup.php:308
-#: ../../operation/agentes/ver_agente.php:1655
-msgid "External Tools"
-msgstr ""
-
-#: ../../godmode/menu.php:365 ../../godmode/setup/setup.php:292
-msgid "Map conections GIS"
-msgstr ""
-
-#: ../../godmode/menu.php:369 ../../godmode/setup/os.php:208
-#: ../../godmode/setup/os.php:226
-msgid "Edit OS"
-msgstr ""
-
-#: ../../godmode/menu.php:371
-msgid "License"
-msgstr ""
-
-#: ../../godmode/menu.php:380
-msgid "Admin tools"
-msgstr ""
-
-#: ../../godmode/menu.php:388
-msgid "System audit log"
-msgstr ""
-
-#: ../../godmode/menu.php:390 ../../godmode/menu.php:510
-#: ../../general/links_menu.php:17
-msgid "Links"
-msgstr ""
-
-#: ../../godmode/menu.php:392
-msgid "Diagnostic info"
-msgstr ""
-
-#: ../../godmode/menu.php:397
-msgid "Site news"
-msgstr ""
-
-#: ../../godmode/menu.php:399 ../../godmode/setup/file_manager.php:43
-msgid "File manager"
-msgstr ""
-
-#: ../../godmode/menu.php:403
-msgid "DB Schema Check"
-msgstr ""
-
-#: ../../godmode/menu.php:406
-msgid "DB Interface"
-msgstr ""
-
-#: ../../godmode/menu.php:493
-msgid "Extension manager view"
-msgstr ""
-
-#: ../../godmode/menu.php:497
-msgid "Extension manager"
-msgstr ""
-
-#: ../../godmode/menu.php:528
-msgid "Update manager"
-msgstr ""
-
-#: ../../godmode/menu.php:533
-msgid "Update Manager offline"
-msgstr ""
-
-#: ../../godmode/menu.php:536
-msgid "Update Manager online"
-msgstr ""
-
-#: ../../godmode/menu.php:538
-msgid "Update Manager options"
-msgstr ""
-
-#: ../../godmode/menu.php:546
-#: ../../godmode/module_library/module_library_view.php:78
-msgid "Module library"
-msgstr ""
-
-#: ../../godmode/menu.php:553
-#: ../../godmode/module_library/module_library_view.php:51
-#: ../../godmode/module_library/module_library_view.php:65
-#: ../../godmode/module_library/module_library_view.php:101
-msgid "Categories"
-msgstr ""
-
-#: ../../godmode/gis_maps/configure_gis_map.php:157
-msgid "Map successfully created"
-msgstr ""
-
-#: ../../godmode/gis_maps/configure_gis_map.php:158
-msgid "Map could not be created"
-msgstr ""
-
-#: ../../godmode/gis_maps/configure_gis_map.php:263
-msgid "Map successfully update"
-msgstr ""
-
-#: ../../godmode/gis_maps/configure_gis_map.php:264
-msgid "Map could not be updated"
-msgstr ""
-
-#: ../../godmode/gis_maps/configure_gis_map.php:280
-#: ../../operation/gis_maps/gis_map.php:30
-#: ../../operation/gis_maps/render_view.php:127
-msgid "GIS Maps list"
-msgstr ""
-
-#: ../../godmode/gis_maps/configure_gis_map.php:292
-msgid "View GIS"
-msgstr ""
-
-#: ../../godmode/gis_maps/configure_gis_map.php:300
-msgid "GIS Maps builder"
-msgstr ""
-
-#: ../../godmode/gis_maps/configure_gis_map.php:349
-msgid "Do you want to use the default data from the connection?"
-msgstr ""
-
-#: ../../godmode/gis_maps/configure_gis_map.php:383
-msgid "The connection"
-msgstr ""
-
-#: ../../godmode/gis_maps/configure_gis_map.php:383
-msgid "just added previously."
-msgstr ""
-
-#: ../../godmode/gis_maps/configure_gis_map.php:446
-msgid "Map Name"
-msgstr ""
-
-#: ../../godmode/gis_maps/configure_gis_map.php:465
-msgid "Add Map connection"
-msgstr ""
-
-#: ../../godmode/massive/massive_copy_modules.php:111
-#: ../../godmode/massive/massive_copy_modules.php:264
-#: ../../godmode/massive/massive_standby_alerts.php:176
-#: ../../godmode/massive/massive_delete_action_alerts.php:209
-#: ../../godmode/massive/massive_delete_modules.php:381
-#: ../../godmode/massive/massive_add_alerts.php:216
-#: ../../godmode/massive/massive_delete_agents.php:198
-#: ../../godmode/massive/massive_enable_disable_alerts.php:163
-#: ../../godmode/massive/massive_edit_agents.php:430
-#: ../../godmode/massive/massive_delete_alerts.php:293
-#: ../../godmode/massive/massive_add_action_alerts.php:203
-#: ../../godmode/massive/massive_edit_modules.php:358
-#: ../../include/functions_html.php:1163 ../../include/functions_html.php:1315
-#: ../../include/lib/Dashboard/Widgets/events_list.php:436
-msgid "Group recursion"
-msgstr ""
-
-#: ../../godmode/massive/massive_copy_modules.php:118
-#: ../../godmode/massive/massive_copy_modules.php:278
-#: ../../godmode/massive/massive_delete_modules.php:417
-#: ../../godmode/massive/massive_delete_modules.php:438
-#: ../../godmode/massive/massive_delete_agents.php:212
-#: ../../godmode/massive/massive_edit_agents.php:445
-#: ../../godmode/massive/massive_edit_modules.php:377
-#: ../../godmode/massive/massive_edit_modules.php:463
-#: ../../godmode/reporting/reporting_builder.item_editor.php:3525
-#: ../../godmode/events/event_edit_filter.php:309
-#: ../../mobile/operation/modules.php:55 ../../include/functions.php:1276
-#: ../../include/lib/Dashboard/Widgets/events_list.php:308
-#: ../../include/functions_events.php:3248
-#: ../../operation/agentes/estado_agente.php:274
-#: ../../operation/agentes/status_monitor.php:496
-#: ../../operation/events/events_list.php:938
-#: ../../operation/events/events.php:1063
-msgid "Not normal"
-msgstr ""
-
-#: ../../godmode/massive/massive_copy_modules.php:143
-#: ../../godmode/reporting/reporting_builder.item_editor.php:1478
-#: ../../godmode/events/event_edit_filter.php:621
-#: ../../godmode/events/custom_events.php:109
-#: ../../include/functions_events.php:204
-#: ../../include/functions_events.php:274
-#: ../../include/functions_events.php:4554
-#: ../../include/functions_events.php:4635
-#: ../../include/functions_events.php:6670
-#: ../../operation/agentes/log_sources_status.php:56
-#: ../../operation/agentes/pandora_networkmap.editor.php:336
-#: ../../operation/agentes/pandora_networkmap.view.php:136
-#: ../../operation/events/events_list.php:995
-#: ../../operation/events/events.php:1177
-#: ../../operation/events/events.build_table.php:293
-msgid "Source"
-msgstr ""
-
-#: ../../godmode/massive/massive_copy_modules.php:184
-#: ../../godmode/alerts/alert_list.list.php:482
-#: ../../godmode/wizards/DiscoveryTaskList.class.php:564
-msgid "Operations"
-msgstr ""
-
-#: ../../godmode/massive/massive_copy_modules.php:187
-msgid "Copy modules"
-msgstr ""
-
-#: ../../godmode/massive/massive_copy_modules.php:192
-msgid "Copy alerts"
-msgstr ""
-
-#: ../../godmode/massive/massive_copy_modules.php:195
-#: ../../godmode/massive/massive_delete_modules.php:453
-#: ../../godmode/massive/massive_edit_modules.php:408
-msgid "Filter Modules"
-msgstr ""
-
-#: ../../godmode/massive/massive_copy_modules.php:212
-msgid "No modules for this agent"
-msgstr ""
-
-#: ../../godmode/massive/massive_copy_modules.php:229
-msgid "No alerts for this agent"
-msgstr ""
-
-#: ../../godmode/massive/massive_copy_modules.php:234
-#: ../../godmode/massive/massive_operations.php:361
-#: ../../godmode/massive/massive_add_profiles.php:256
-#: ../../include/functions_events.php:4301
-#: ../../operation/reporting/reporting_viewer.php:344
-#: ../../operation/reporting/graph_viewer.php:310
-#: ../../general/ui/agents_list.php:146
-msgid "Loading"
-msgstr ""
-
-#: ../../godmode/massive/massive_copy_modules.php:238
-msgid "Targets"
-msgstr ""
-
-#: ../../godmode/massive/massive_copy_modules.php:291
-#: ../../godmode/massive/massive_delete_modules.php:525
-msgid "Filter Agents"
-msgstr ""
-
-#: ../../godmode/massive/massive_copy_modules.php:308
-msgid "To agent(s)"
-msgstr ""
-
-#: ../../godmode/massive/massive_copy_modules.php:550
-#: ../../include/functions_agents.php:832
-msgid "No source agent to copy"
-msgstr ""
-
-#: ../../godmode/massive/massive_copy_modules.php:558
-msgid "No operation selected"
-msgstr ""
-
-#: ../../godmode/massive/massive_copy_modules.php:563
-#: ../../include/functions_agents.php:863
-msgid "No modules have been selected"
-msgstr ""
-
-#: ../../godmode/massive/massive_copy_modules.php:568
-#: ../../include/functions_agents.php:837
-msgid "No destiny agent(s) to copy"
-msgstr ""
-
-#: ../../godmode/massive/massive_operations.php:59
-msgid "Bulk alert add"
-msgstr ""
-
-#: ../../godmode/massive/massive_operations.php:60
-msgid "Bulk alert delete"
-msgstr ""
-
-#: ../../godmode/massive/massive_operations.php:61
-msgid "Bulk alert actions add"
-msgstr ""
-
-#: ../../godmode/massive/massive_operations.php:62
-msgid "Bulk alert actions delete"
-msgstr ""
-
-#: ../../godmode/massive/massive_operations.php:63
-msgid "Bulk alert enable/disable"
-msgstr ""
-
-#: ../../godmode/massive/massive_operations.php:64
-msgid "Bulk alert setting standby"
-msgstr ""
-
-#: ../../godmode/massive/massive_operations.php:68
-msgid "Bulk agent edit"
-msgstr ""
-
-#: ../../godmode/massive/massive_operations.php:69
-#: ../../godmode/massive/massive_operations.php:73
-msgid "Bulk agent delete"
-msgstr ""
-
-#: ../../godmode/massive/massive_operations.php:79
-msgid "Bulk profile add"
-msgstr ""
-
-#: ../../godmode/massive/massive_operations.php:80
-msgid "Bulk profile delete"
-msgstr ""
-
-#: ../../godmode/massive/massive_operations.php:87
-msgid "Bulk module edit"
-msgstr ""
-
-#: ../../godmode/massive/massive_operations.php:88
-msgid "Bulk module copy"
-msgstr ""
-
-#: ../../godmode/massive/massive_operations.php:89
-msgid "Bulk module delete"
-msgstr ""
-
-#: ../../godmode/massive/massive_operations.php:93
-msgid "Bulk plugin edit"
-msgstr ""
-
-#: ../../godmode/massive/massive_operations.php:347
-msgid ""
-"In order to perform massive operations, PHP needs a correct configuration in "
-"timeout parameters. Please, open your PHP configuration file (php.ini) for "
-"example: <i>sudo vi /etc/php5/apache2/php.ini;</i><br> And set your timeout "
-"parameters to a correct value: <br><i> max_execution_time = 0</i> and "
-"<i>max_input_time = -1</i>"
-msgstr ""
-
-#: ../../godmode/massive/massive_operations.php:389
-#, php-format
-msgid ""
-"No changes have been made because they exceed the maximum allowed (%d). Make "
-"fewer changes or contact the administrator."
-msgstr ""
-
-#: ../../godmode/massive/massive_operations.php:390
-#: ../../godmode/massive/massive_edit_plugins.php:916
-msgid "Massive operations"
-msgstr ""
-
-#: ../../godmode/massive/massive_operations.php:417
-#, php-format
-msgid ""
-"This node is configured with centralized mode. To delete agents go to %s"
-msgstr ""
-
-#: ../../godmode/massive/massive_operations.php:440
-msgid "The blank fields will not be updated"
-msgstr ""
-
-#: ../../godmode/massive/massive_standby_alerts.php:102
-#: ../../godmode/alerts/alert_list.php:405
-msgid "Successfully set off standby"
-msgstr ""
-
-#: ../../godmode/massive/massive_standby_alerts.php:102
-#: ../../godmode/alerts/alert_list.php:406
-msgid "Could not be set off standby"
-msgstr ""
-
-#: ../../godmode/massive/massive_standby_alerts.php:120
-#: ../../godmode/alerts/alert_list.php:384
-msgid "Successfully set standby"
-msgstr ""
-
-#: ../../godmode/massive/massive_standby_alerts.php:120
-#: ../../godmode/alerts/alert_list.php:385
-msgid "Could not be set standby"
-msgstr ""
-
-#: ../../godmode/massive/massive_standby_alerts.php:193
-#: ../../godmode/massive/massive_add_alerts.php:268
-#: ../../godmode/massive/massive_enable_disable_alerts.php:181
-#: ../../godmode/massive/massive_delete_alerts.php:259
-msgid "Alert template"
-msgstr ""
-
-#: ../../godmode/massive/massive_standby_alerts.php:199
-msgid "Not standby alerts"
-msgstr ""
-
-#: ../../godmode/massive/massive_standby_alerts.php:199
-#: ../../godmode/massive/massive_standby_alerts.php:234
-#: ../../godmode/massive/massive_enable_disable_alerts.php:187
-#: ../../godmode/massive/massive_enable_disable_alerts.php:222
-#: ../../include/class/ModuleTemplates.class.php:1208
-msgid "Format"
-msgstr ""
-
-#: ../../godmode/massive/massive_standby_alerts.php:228
-#: ../../godmode/massive/massive_standby_alerts.php:232
-msgid "Set standby selected alerts"
-msgstr ""
-
-#: ../../godmode/massive/massive_standby_alerts.php:234
-msgid "Standby alerts"
-msgstr ""
-
-#: ../../godmode/massive/massive_delete_action_alerts.php:75
-msgid "Could not be deleted. No agents selected"
-msgstr ""
-
-#: ../../godmode/massive/massive_delete_action_alerts.php:122
-msgid "Could not be deleted. No alerts selected"
-msgstr ""
-
-#: ../../godmode/massive/massive_delete_action_alerts.php:163
-#: ../../godmode/massive/massive_add_alerts.php:157
-#: ../../godmode/massive/massive_add_action_alerts.php:75
-#: ../../godmode/massive/massive_add_action_alerts.php:134
-#: ../../godmode/massive/massive_add_action_alerts.php:154
-#: ../../godmode/massive/massive_add_action_alerts.php:157
-#: ../../godmode/massive/massive_add_action_alerts.php:160
-#: ../../godmode/alerts/alert_list.php:266
-msgid "Could not be added"
-msgstr ""
-
-#: ../../godmode/massive/massive_delete_action_alerts.php:169
-msgid "Could not be deleted. No action selected"
-msgstr ""
-
-#: ../../godmode/massive/massive_delete_action_alerts.php:218
-#: ../../godmode/massive/massive_add_action_alerts.php:206
-msgid "Agents with templates"
-msgstr ""
-
-#: ../../godmode/massive/massive_delete_action_alerts.php:227
-#: ../../godmode/massive/massive_add_action_alerts.php:212
-#: ../../godmode/alerts/alert_templates.php:136
-#: ../../godmode/alerts/alert_templates.php:188
-#: ../../godmode/alerts/alert_templates.php:211
-#: ../../godmode/alerts/alert_templates.php:232
-msgid "Alert templates"
-msgstr ""
-
-#: ../../godmode/massive/massive_delete_action_alerts.php:229
-#: ../../godmode/massive/massive_delete_modules.php:546
-#: ../../godmode/massive/massive_add_alerts.php:248
-#: ../../godmode/massive/massive_delete_alerts.php:323
-#: ../../godmode/massive/massive_add_action_alerts.php:214
-#: ../../godmode/massive/massive_edit_modules.php:512
-msgid "When select agents"
-msgstr ""
-
-#: ../../godmode/massive/massive_delete_action_alerts.php:235
-#: ../../godmode/massive/massive_delete_modules.php:552
-#: ../../godmode/massive/massive_add_action_alerts.php:220
-#: ../../godmode/massive/massive_edit_modules.php:518
-msgid "Show unknown and not init modules"
-msgstr ""
-
-#: ../../godmode/massive/massive_delete_modules.php:82
-msgid "No module selected"
-msgstr ""
-
-#: ../../godmode/massive/massive_delete_modules.php:87
-#: ../../godmode/massive/massive_add_alerts.php:100
-#: ../../godmode/massive/massive_delete_agents.php:61
-#: ../../godmode/massive/massive_edit_agents.php:151
-#: ../../godmode/massive/massive_delete_alerts.php:113
-#: ../../godmode/massive/massive_add_action_alerts.php:75
-#: ../../include/functions_visual_map.php:2566
-#: ../../include/functions_visual_map.php:2947
-msgid "No agents selected"
-msgstr ""
-
-#: ../../godmode/massive/massive_delete_modules.php:156
-msgid ""
-"There was an error deleting the modules, the operation has been cancelled"
-msgstr ""
-
-#: ../../godmode/massive/massive_delete_modules.php:313
-#: ../../godmode/massive/massive_edit_modules.php:292
-msgid "Selection mode"
-msgstr ""
-
-#: ../../godmode/massive/massive_delete_modules.php:314
-#: ../../godmode/massive/massive_edit_modules.php:293
-msgid "Select modules first "
-msgstr ""
-
-#: ../../godmode/massive/massive_delete_modules.php:315
-#: ../../godmode/massive/massive_edit_modules.php:294
-msgid "Select agents first "
-msgstr ""
-
-#: ../../godmode/massive/massive_delete_modules.php:338
-#: ../../godmode/massive/massive_edit_modules.php:313
-msgid "Select all modules of this type"
-msgstr ""
-
-#: ../../godmode/massive/massive_delete_modules.php:367
-#: ../../godmode/massive/massive_edit_modules.php:344
-msgid "Agent group"
-msgstr ""
-
-#: ../../godmode/massive/massive_delete_modules.php:382
-#: ../../godmode/massive/massive_edit_modules.php:359
-msgid "Select all modules of this group"
-msgstr ""
-
-#: ../../godmode/massive/massive_delete_modules.php:431
-#: ../../godmode/massive/massive_edit_modules.php:370
-#: ../../godmode/events/custom_events.php:116
-#: ../../include/functions_events.php:295
-#: ../../operation/events/events.build_table.php:340
-msgid "Module Status"
-msgstr ""
-
-#: ../../godmode/massive/massive_delete_modules.php:472
-#: ../../godmode/massive/massive_edit_modules.php:424
-msgid "Select all modules"
-msgstr ""
-
-#: ../../godmode/massive/massive_delete_modules.php:474
-#: ../../godmode/massive/massive_edit_modules.php:426
-msgid "When select modules"
-msgstr ""
-
-#: ../../godmode/massive/massive_delete_modules.php:478
-#: ../../godmode/massive/massive_edit_modules.php:430
-msgid "Show common agents"
-msgstr ""
-
-#: ../../godmode/massive/massive_delete_modules.php:479
-#: ../../godmode/massive/massive_edit_modules.php:431
-msgid "Show all agents"
-msgstr ""
-
-#: ../../godmode/massive/massive_delete_modules.php:544
-#: ../../godmode/massive/massive_edit_modules.php:510
-msgid "Select all agents"
-msgstr ""
-
-#: ../../godmode/massive/massive_delete_modules.php:590
-#: ../../godmode/massive/massive_edit_modules.php:1248
-msgid "Please, select an agent first"
-msgstr ""
-
-#: ../../godmode/massive/massive_add_alerts.php:105
-#: ../../godmode/massive/massive_delete_alerts.php:108
-msgid "No alert selected"
-msgstr ""
-
-#: ../../godmode/massive/massive_add_alerts.php:156
-#: ../../godmode/massive/massive_add_action_alerts.php:154
-#: ../../godmode/alerts/alert_list.php:265
-msgid "Successfully added"
-msgstr ""
-
-#: ../../godmode/massive/massive_add_alerts.php:312
-#: ../../godmode/massive/massive_edit_agents.php:954
-#: ../../godmode/massive/massive_delete_alerts.php:370
-msgid ""
-"Unsucessful sending the data, please contact with your administrator or make "
-"with less elements."
-msgstr ""
-
-#: ../../godmode/massive/massive_delete_agents.php:122
-#, php-format
-msgid ""
-"There was an error deleting the agent, the operation has been cancelled "
-"Could not delete agent %s"
-msgstr ""
-
-#: ../../godmode/massive/massive_delete_agents.php:132
-#, php-format
-msgid "Successfully deleted (%s)"
-msgstr ""
-
-#: ../../godmode/massive/massive_delete_agents.php:225
-#: ../../godmode/massive/massive_edit_agents.php:457
-msgid "Show agents"
-msgstr ""
-
-#: ../../godmode/massive/massive_delete_agents.php:251
-#: ../../include/lib/Dashboard/Widget.php:584
-#: ../../include/functions_events.php:4913
-msgid "Node"
-msgstr ""
-
-#: ../../godmode/massive/massive_edit_plugins.php:177
-msgid "Error retrieving the plugin macros"
-msgstr ""
-
-#: ../../godmode/massive/massive_edit_plugins.php:185
-msgid "Error retrieving the modified macros"
-msgstr ""
-
-#: ../../godmode/massive/massive_edit_plugins.php:208
-msgid "Error retrieving the module plugin macros"
-msgstr ""
-
-#: ../../godmode/massive/massive_edit_plugins.php:226
-msgid "Error retrieving the module plugin macros data"
-msgstr ""
-
-#: ../../godmode/massive/massive_edit_plugins.php:264
-msgid "Error building the new macros"
-msgstr ""
-
-#: ../../godmode/massive/massive_edit_plugins.php:293
-#, php-format
-msgid "%d modules updated"
-msgstr ""
-
-#: ../../godmode/massive/massive_edit_plugins.php:314
-msgid "There are not registered plugins"
-msgstr ""
-
-#: ../../godmode/massive/massive_edit_plugins.php:459
-msgid "Invalid plugin data"
-msgstr ""
-
-#: ../../godmode/massive/massive_edit_plugins.php:566
-msgid "Clear"
-msgstr ""
-
-#: ../../godmode/massive/massive_edit_plugins.php:594
-msgid "Invalid macros array"
-msgstr ""
-
-#: ../../godmode/massive/massive_edit_plugins.php:619
-msgid "Multiple values"
-msgstr ""
-
-#: ../../godmode/massive/massive_edit_plugins.php:651
-#: ../../godmode/massive/massive_edit_plugins.php:787
-#: ../../godmode/massive/massive_edit_plugins.php:803
-msgid "Invalid agents array"
-msgstr ""
-
-#: ../../godmode/massive/massive_edit_plugins.php:667
-msgid "Invalid agent element"
-msgstr ""
-
-#: ../../godmode/massive/massive_edit_plugins.php:678
-msgid "Invalid modules array"
-msgstr ""
-
-#: ../../godmode/massive/massive_edit_plugins.php:706
-msgid "Invalid module element"
-msgstr ""
-
-#: ../../godmode/massive/massive_edit_plugins.php:915
-msgid "There are no modules using this plugin"
-msgstr ""
-
-#: ../../godmode/massive/massive_edit_plugins.php:1000
-msgid "There was a problem loading the module plugin macros data"
-msgstr ""
-
-#: ../../godmode/massive/massive_enable_disable_alerts.php:187
-msgid "Enabled alerts"
-msgstr ""
-
-#: ../../godmode/massive/massive_enable_disable_alerts.php:216
-msgid "Disable selected alerts"
-msgstr ""
-
-#: ../../godmode/massive/massive_enable_disable_alerts.php:220
-msgid "Enable selected alerts"
-msgstr ""
-
-#: ../../godmode/massive/massive_enable_disable_alerts.php:222
-msgid "Disabled alerts"
-msgstr ""
-
-#: ../../godmode/massive/massive_edit_agents.php:155
-msgid "No values changed"
-msgstr ""
-
-#: ../../godmode/massive/massive_edit_agents.php:200
-msgid "Configuration files deleted successfully"
-msgstr ""
-
-#: ../../godmode/massive/massive_edit_agents.php:201
-msgid "Configuration files cannot be deleted"
-msgstr ""
-
-#: ../../godmode/massive/massive_edit_agents.php:396
-#, php-format
-msgid "Agents updated successfully (%d)"
-msgstr ""
-
-#: ../../godmode/massive/massive_edit_agents.php:397
-msgid "Agents cannot be updated (maybe there was no field to update)"
-msgstr ""
-
-#: ../../godmode/massive/massive_edit_agents.php:579
-#: ../../godmode/massive/massive_edit_agents.php:595
-#: ../../godmode/massive/massive_edit_agents.php:608
-#: ../../godmode/massive/massive_edit_agents.php:616
-#: ../../godmode/massive/massive_edit_agents.php:640
-#: ../../godmode/massive/massive_edit_agents.php:687
-#: ../../godmode/massive/massive_edit_agents.php:694
-#: ../../godmode/massive/massive_edit_agents.php:735
-#: ../../godmode/massive/massive_edit_agents.php:739
-#: ../../godmode/massive/massive_edit_agents.php:748
-#: ../../godmode/massive/massive_edit_agents.php:776
-#: ../../godmode/massive/massive_edit_agents.php:845
-#: ../../godmode/massive/massive_edit_modules.php:603
-#: ../../godmode/massive/massive_edit_modules.php:625
-#: ../../godmode/massive/massive_edit_modules.php:694
-#: ../../godmode/massive/massive_edit_modules.php:716
-#: ../../godmode/massive/massive_edit_modules.php:747
-#: ../../godmode/massive/massive_edit_modules.php:756
-#: ../../godmode/massive/massive_edit_modules.php:815
-#: ../../godmode/massive/massive_edit_modules.php:833
-#: ../../godmode/massive/massive_edit_modules.php:852
-#: ../../godmode/massive/massive_edit_modules.php:856
-#: ../../godmode/massive/massive_edit_modules.php:867
-#: ../../godmode/massive/massive_edit_modules.php:887
-#: ../../godmode/massive/massive_edit_modules.php:912
-#: ../../godmode/massive/massive_edit_modules.php:924
-#: ../../godmode/massive/massive_edit_modules.php:985
-#: ../../godmode/massive/massive_edit_modules.php:1031
-#: ../../godmode/massive/massive_edit_modules.php:1049
-#: ../../godmode/massive/massive_edit_modules.php:1055
-#: ../../godmode/massive/massive_edit_modules.php:1068
-#: ../../godmode/massive/massive_edit_modules.php:1096
-#: ../../godmode/massive/massive_edit_modules.php:1200
-#: ../../include/functions_html.php:1733 ../../include/functions_html.php:1834
-#: ../../include/functions_html.php:1972
-msgid "No change"
-msgstr ""
-
-#: ../../godmode/massive/massive_edit_agents.php:695
-msgid ""
-"If the remote configuration is enabled, it will also go into standby mode "
-"when disabling it."
-msgstr ""
-
-#: ../../godmode/massive/massive_edit_agents.php:696
-msgid "Active"
-msgstr ""
-
-#: ../../godmode/massive/massive_edit_agents.php:702
-msgid "Delete available remote configurations"
-msgstr ""
-
-#: ../../godmode/massive/massive_edit_agents.php:735
-msgid "Without status"
-msgstr ""
-
-#: ../../godmode/massive/massive_edit_agents.php:735
-#: ../../include/lib/Dashboard/Widgets/maps_status.php:360
-msgid "Bad"
-msgstr ""
-
-#: ../../godmode/massive/massive_edit_agents.php:745
-msgid "The agent still runs but the alerts and events will be stop"
-msgstr ""
-
-#: ../../godmode/massive/massive_edit_agents.php:762
-#, php-format
-msgid ""
-"This mode allow %s to disable all modules \n"
-"of this agent while the selected module is on CRITICAL status"
-msgstr ""
-
-#: ../../godmode/massive/massive_delete_profiles.php:52
-#: ../../godmode/massive/massive_add_profiles.php:52
-#, php-format
-msgid ""
-"This node is configured with centralized mode. All profiles user information "
-"is read only. Go to %s to manage it."
-msgstr ""
-
-#: ../../godmode/massive/massive_delete_profiles.php:121
-msgid "Profiles deleted successfully"
-msgstr ""
-
-#: ../../godmode/massive/massive_delete_profiles.php:122
-msgid "Profiles cannot be deleted"
-msgstr ""
-
-#: ../../godmode/massive/massive_delete_profiles.php:141
-#: ../../godmode/massive/massive_add_profiles.php:137
-#: ../../include/functions_reporting.php:11031
-#: ../../operation/search_results.php:93
-msgid "Users"
-msgstr ""
-
-#: ../../godmode/massive/massive_delete_alerts.php:289
-msgid "Show alerts on disabled modules"
-msgstr ""
-
-#: ../../godmode/massive/massive_add_action_alerts.php:134
-msgid "No alerts selected"
-msgstr ""
-
-#: ../../godmode/massive/massive_add_action_alerts.php:160
-msgid "No actions selected"
-msgstr ""
-
-#: ../../godmode/massive/massive_add_action_alerts.php:246
-#: ../../godmode/alerts/alert_list.list.php:750
-#: ../../godmode/alerts/alert_list.builder.php:126
-#: ../../include/ajax/alert_list.ajax.php:502
-#: ../../include/class/AgentsAlerts.class.php:311
-msgid "Number of alerts match from"
-msgstr ""
-
-#: ../../godmode/massive/massive_add_action_alerts.php:248
-#: ../../godmode/alerts/alert_list.list.php:641
-#: ../../godmode/alerts/alert_list.list.php:761
-#: ../../godmode/alerts/alert_templates.php:98
-#: ../../godmode/alerts/alert_list.builder.php:128
-#: ../../include/functions_reporting_html.php:148
-#: ../../include/functions_reporting_html.php:2766
-#: ../../include/ajax/alert_list.ajax.php:513
-#: ../../include/class/AgentsAlerts.class.php:313
-#: ../../include/functions_reporting.php:13500
-#: ../../operation/reporting/reporting_viewer.php:305
-msgid "to"
-msgstr ""
-
-#: ../../godmode/massive/massive_add_profiles.php:116
-msgid "Profiles added successfully"
-msgstr ""
-
-#: ../../godmode/massive/massive_add_profiles.php:117
-msgid "Profiles cannot be added"
-msgstr ""
-
-#: ../../godmode/massive/massive_edit_modules.php:137
-msgid "Error updating the modules from a module type"
-msgstr ""
-
-#: ../../godmode/massive/massive_edit_modules.php:160
-msgid "Error updating the modules from an agent group"
-msgstr ""
-
-#: ../../godmode/massive/massive_edit_modules.php:178
-msgid "Error updating the modules (maybe there was no field to update)"
-msgstr ""
-
-#: ../../godmode/massive/massive_edit_modules.php:456
-msgid "Agent Status"
-msgstr ""
-
-#: ../../godmode/massive/massive_edit_modules.php:494
-#: ../../include/lib/Dashboard/Widgets/tree_view.php:405
-msgid "Filter agents"
-msgstr ""
-
-#: ../../godmode/massive/massive_edit_modules.php:542
-msgid "Dynamic Min."
-msgstr ""
-
-#: ../../godmode/massive/massive_edit_modules.php:784
-msgid "SMNP community"
-msgstr ""
-
-#: ../../godmode/massive/massive_edit_modules.php:921
-#: ../../godmode/alerts/alert_view.php:425
-msgid "Mode"
-msgstr ""
-
-#: ../../godmode/massive/massive_edit_modules.php:986
-msgid "Active Counters"
-msgstr ""
-
-#: ../../godmode/massive/massive_edit_modules.php:987
-msgid "Inactive Counters"
-msgstr ""
-
-#: ../../godmode/massive/massive_edit_modules.php:1012
-msgid "Module execution flip flop time interval (in secs)."
-msgstr ""
-
-#: ../../godmode/massive/massive_edit_modules.php:1026
-msgid ""
-"Timeout in secs from start of flip flop counting. If this value is exceeded, "
-"FF counter is reset. Set to 0 for no timeout."
-msgstr ""
-
-#: ../../godmode/massive/massive_edit_modules.php:1054
-msgid "Policy linking status"
-msgstr ""
-
-#: ../../godmode/massive/massive_edit_modules.php:1054
-msgid "This field only has sense in modules adopted by a policy."
-msgstr ""
-
-#: ../../godmode/massive/massive_edit_modules.php:1055
-msgid "Linked"
-msgstr ""
-
-#: ../../godmode/massive/massive_edit_modules.php:1093
-msgid "The module still store data but the alerts and events will be stop"
-msgstr ""
-
-#: ../../godmode/massive/massive_edit_modules.php:1119
-msgid "Seconds that agent will wait for the execution of the module."
-msgstr ""
-
-#: ../../godmode/massive/massive_edit_modules.php:1125
-msgid "Number of retries that the module will attempt to run."
-msgstr ""
-
-#: ../../godmode/alerts/configure_alert_command.php:43
-msgid "Configure alert command"
-msgstr ""
-
-#: ../../godmode/alerts/configure_alert_command.php:172
-#: ../../godmode/alerts/alert_commands.php:629
-#, php-format
-msgid ""
-"This node is configured with centralized mode. All alert commands "
-"information is read only. Go to %s to manage it."
-msgstr ""
-
-#: ../../godmode/alerts/configure_alert_command.php:183
-msgid "Update Command"
-msgstr ""
-
-#: ../../godmode/alerts/configure_alert_command.php:183
-#: ../../godmode/alerts/configure_alert_action.php:272
-msgid "Create Command"
-msgstr ""
-
-#: ../../godmode/alerts/configure_alert_command.php:273
-#, php-format
-msgid "Field %s description"
-msgstr ""
-
-#: ../../godmode/alerts/configure_alert_command.php:301
-#, php-format
-msgid "Field %s values"
-msgstr ""
-
-#: ../../godmode/alerts/configure_alert_command.php:303
-msgid "value1,tag1;value2,tag2;value3,tag3"
-msgstr ""
-
-#: ../../godmode/alerts/configure_alert_command.php:339
-msgid "Hide"
-msgstr ""
-
-#: ../../godmode/alerts/alert_actions.php:74
-#: ../../include/functions_reporting.php:2690
-msgid "Alert actions"
-msgstr ""
-
-#: ../../godmode/alerts/alert_actions.php:132
-#: ../../godmode/alerts/alert_commands.php:611
-#: ../../godmode/reporting/map_builder.php:317
-#: ../../godmode/reporting/map_builder.php:324
-#: ../../godmode/reporting/reporting_builder.php:748
-#: ../../include/functions_agents.php:1014
-msgid "Successfully copied"
-msgstr ""
-
-#: ../../godmode/alerts/alert_actions.php:133
-#: ../../godmode/alerts/alert_commands.php:612
-#: ../../godmode/reporting/reporting_builder.php:749
-msgid "Could not be copied"
-msgstr ""
-
-#: ../../godmode/alerts/alert_actions.php:228
-#: ../../godmode/alerts/configure_alert_action.php:117
-#, php-format
-msgid ""
-"This node is configured with centralized mode. All alert actions information "
-"is read only. Go to %s to manage it."
-msgstr ""
-
-#: ../../godmode/alerts/alert_actions.php:402
-msgid ""
-"You cannot edit this action, You don't have the permission to edit All group."
-msgstr ""
-
-#: ../../godmode/alerts/alert_actions.php:413
-msgid ""
-"The action and the command associated with it do not have the same group. "
-"Please contact an administrator to fix it."
-msgstr ""
-
-#: ../../godmode/alerts/alert_actions.php:471
-msgid "No alert actions configured"
-msgstr ""
-
-#: ../../godmode/alerts/alert_list.list.php:56
-msgid "Template name"
-msgstr ""
-
-#: ../../godmode/alerts/alert_list.list.php:123
-msgid "Field content"
-msgstr ""
-
-#: ../../godmode/alerts/alert_list.list.php:135
-#: ../../mobile/operation/alerts.php:46
-#: ../../operation/agentes/alerts_status.functions.php:93
-msgid "All (Enabled)"
-msgstr ""
-
-#: ../../godmode/alerts/alert_list.list.php:137
-#: ../../mobile/operation/alerts.php:48
-#: ../../include/functions_reporting_html.php:2175
-#: ../../include/functions_reporting_html.php:2958
-#: ../../include/functions_reporting_html.php:2959
-#: ../../operation/agentes/alerts_status.functions.php:95
-#: ../../operation/snmpconsole/snmp_view.php:229
-#: ../../operation/snmpconsole/snmp_view.php:1254
-msgid "Fired"
-msgstr ""
-
-#: ../../godmode/alerts/alert_list.list.php:138
-#: ../../mobile/operation/alerts.php:49
-#: ../../operation/agentes/alerts_status.functions.php:96
-#: ../../operation/snmpconsole/snmp_view.php:228
-#: ../../operation/snmpconsole/snmp_view.php:1263
-msgid "Not fired"
-msgstr ""
-
-#: ../../godmode/alerts/alert_list.list.php:141
-#: ../../include/ajax/alert_list.ajax.php:272
-#: ../../include/ajax/alert_list.ajax.php:297
-#: ../../operation/agentes/alerts_status.php:533
-#: ../../operation/agentes/alerts_status.php:569
-#: ../../operation/agentes/alerts_status.php:604
-#: ../../operation/agentes/alerts_status.php:637
-#: ../../operation/agentes/alerts_status.functions.php:123
-msgid "Standby"
-msgstr ""
-
-#: ../../godmode/alerts/alert_list.list.php:143
-#: ../../mobile/operation/alerts.php:55 ../../include/functions_ui.php:1146
-#: ../../operation/agentes/alerts_status.functions.php:101
-msgid "Standby on"
-msgstr ""
-
-#: ../../godmode/alerts/alert_list.list.php:144
-#: ../../mobile/operation/alerts.php:56
-#: ../../operation/agentes/alerts_status.functions.php:102
-msgid "Standby off"
-msgstr ""
-
-#: ../../godmode/alerts/alert_list.list.php:178
-#: ../../operation/agentes/alerts_status.php:494
-msgid "Alert control filter"
-msgstr ""
-
-#: ../../godmode/alerts/alert_list.list.php:480
-#: ../../godmode/alerts/alert_view.php:72
-#: ../../godmode/alerts/alert_list.builder.php:139
-#: ../../godmode/reporting/reporting_builder.item_editor.php:197
-#: ../../godmode/reporting/reporting_builder.item_editor.php:809
-#: ../../mobile/operation/alerts.php:323
-#: ../../include/functions_reporting_html.php:2956
-#: ../../include/functions_reporting_html.php:2959
-#: ../../include/functions_cron.php:602
-#: ../../include/ajax/alert_list.ajax.php:279
-#: ../../include/ajax/alert_list.ajax.php:304
-#: ../../include/functions_treeview.php:412
-#: ../../include/functions_treeview.php:453
-#: ../../include/class/AgentsAlerts.class.php:335
-#: ../../include/class/AgentsAlerts.class.php:973
-#: ../../operation/agentes/alerts_status.php:543
-#: ../../operation/agentes/alerts_status.php:578
-#: ../../operation/agentes/alerts_status.php:613
-#: ../../operation/agentes/alerts_status.php:645
-#: ../../operation/search_alerts.php:35
-#: ../../operation/servers/recon_view.php:106
-msgid "Template"
-msgstr ""
-
-#: ../../godmode/alerts/alert_list.list.php:556
-#: ../../godmode/alerts/alert_view.php:82 ../../mobile/operation/alerts.php:305
-#: ../../include/functions.php:1227 ../../include/functions_agents.php:2912
-#: ../../include/functions_agents.php:2923 ../../include/functions_ui.php:1238
-#: ../../include/class/AgentsAlerts.class.php:946
-#: ../../include/functions_reporting.php:11777
-#: ../../include/functions_events.php:2862
-#: ../../include/functions_events.php:3216
-#: ../../operation/agentes/group_view.php:231
-#: ../../operation/snmpconsole/snmp_view.php:1018
-#: ../../operation/events/sound_events.php:133
-msgid "Alert fired"
-msgstr ""
-
-#: ../../godmode/alerts/alert_list.list.php:556
-#: ../../godmode/alerts/alert_view.php:82 ../../mobile/operation/alerts.php:305
-#: ../../include/functions_ui.php:1238
-#: ../../include/class/AgentsAlerts.class.php:946
-msgid "time(s)"
-msgstr ""
-
-#: ../../godmode/alerts/alert_list.list.php:559
-#: ../../godmode/alerts/alert_view.php:85 ../../mobile/operation/alerts.php:308
-#: ../../include/functions_ui.php:1241
-#: ../../include/class/AgentsAlerts.class.php:949
-#: ../../include/functions_reporting.php:11786
-msgid "Alert disabled"
-msgstr ""
-
-#: ../../godmode/alerts/alert_list.list.php:562
-#: ../../godmode/alerts/alert_view.php:88 ../../mobile/operation/alerts.php:311
-#: ../../include/functions_agents.php:2914
-#: ../../include/functions_agents.php:2925 ../../include/functions_ui.php:1244
-#: ../../include/class/AgentsAlerts.class.php:952
-#: ../../include/functions_reporting.php:11700
-#: ../../operation/snmpconsole/snmp_view.php:1020
-msgid "Alert not fired"
-msgstr ""
-
-#: ../../godmode/alerts/alert_list.list.php:633
-#: ../../godmode/alerts/alert_view.php:202
-#: ../../include/functions_alerts.php:680
-msgid "Always"
-msgstr ""
-
-#: ../../godmode/alerts/alert_list.list.php:635
-#: ../../include/class/Diagnostics.class.php:1179
-#: ../../include/class/Diagnostics.class.php:1183
-msgid "On"
-msgstr ""
-
-#: ../../godmode/alerts/alert_list.list.php:639
-msgid "Until"
-msgstr ""
-
-#: ../../godmode/alerts/alert_list.list.php:648
-#: ../../godmode/alerts/alert_list.list.php:774
-#: ../../godmode/alerts/configure_alert_action.php:281
-#: ../../godmode/alerts/alert_view.php:393
-#: ../../godmode/alerts/alert_list.builder.php:172
-#: ../../include/functions_reporting_html.php:3213
-#: ../../include/functions_reporting_html.php:4980
-#: ../../include/ajax/alert_list.ajax.php:526
-#: ../../include/class/AgentsAlerts.class.php:382
-msgid "Threshold"
-msgstr ""
-
-#: ../../godmode/alerts/alert_list.list.php:659
-#: ../../godmode/alerts/alert_view.php:362
-msgid ""
-"The default actions will be executed every time that the alert is fired and "
-"no other action is executed"
-msgstr ""
-
-#: ../../godmode/alerts/alert_list.list.php:670
-msgid "Delete action"
-msgstr ""
-
-#: ../../godmode/alerts/alert_list.list.php:685
-#: ../../godmode/alerts/alert_list.list.php:1166
-msgid "Update action"
-msgstr ""
-
-#: ../../godmode/alerts/alert_list.list.php:927
-msgid "View alert advanced details"
-msgstr ""
-
-#: ../../godmode/alerts/alert_list.list.php:943
-#: ../../include/functions_reporting_html.php:2948
-msgid "No alerts defined"
-msgstr ""
-
-#: ../../godmode/alerts/alert_list.list.php:1054
-msgid "Set off standby"
-msgstr ""
-
-#: ../../godmode/alerts/alert_list.list.php:1081
-msgid "Set standby"
-msgstr ""
-
-#: ../../godmode/alerts/alert_commands.php:100
-#: ../../godmode/alerts/alert_commands.php:105
-#: ../../godmode/alerts/alert_commands.php:121
-#: ../../godmode/alerts/alert_commands.php:127
-#: ../../godmode/alerts/configure_alert_template.php:1005
-#: ../../godmode/alerts/alert_view.php:471
-#: ../../godmode/alerts/alert_view.php:552
-#, php-format
-msgid "Field %s"
-msgstr ""
-
-#: ../../godmode/alerts/alert_commands.php:143
-msgid ""
-"For sending emails, text must be HTML format, if you want to use plain text, "
-"type it between the following labels: <pre></pre>"
-msgstr ""
-
-#: ../../godmode/alerts/alert_commands.php:219
-#: ../../godmode/alerts/alert_commands.php:250
-msgid "Text/plain"
-msgstr ""
-
-#: ../../godmode/alerts/alert_commands.php:221
-#: ../../godmode/alerts/alert_commands.php:252
-msgid "For sending emails only text plain"
-msgstr ""
-
-#: ../../godmode/alerts/alert_commands.php:235
-#: ../../godmode/alerts/alert_commands.php:266
-msgid "Text/html"
-msgstr ""
-
-#: ../../godmode/alerts/alert_commands.php:474
-msgid "Permissions warning"
-msgstr ""
-
-#: ../../godmode/alerts/alert_commands.php:477
-msgid ""
-"Command management is limited to administrator users or user profiles with "
-"permissions PM"
-msgstr ""
-
-#: ../../godmode/alerts/alert_commands.php:494
-msgid "Alert commands"
-msgstr ""
-
-#: ../../godmode/alerts/alert_commands.php:552
-#: ../../include/functions_alerts.php:2671
-msgid "No name specified"
-msgstr ""
-
-#: ../../godmode/alerts/alert_commands.php:556
-#: ../../include/functions_alerts.php:2666
-msgid "No command specified"
-msgstr ""
-
-#: ../../godmode/alerts/alert_commands.php:605
-msgid " (copy)"
-msgstr ""
-
-#: ../../godmode/alerts/alert_commands.php:726
-msgid "No alert commands configured"
-msgstr ""
-
-#: ../../godmode/alerts/alert_templates.php:61
-msgid "Everyday"
-msgstr ""
-
-#: ../../godmode/alerts/alert_templates.php:73
-#: ../../include/functions_config.php:1520
-msgid "Days"
-msgstr ""
-
-#: ../../godmode/alerts/alert_templates.php:73
-msgid "Every"
-msgstr ""
-
-#: ../../godmode/alerts/alert_templates.php:84
-msgid "and"
-msgstr ""
-
-#: ../../godmode/alerts/alert_templates.php:273
-#, 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:417
-msgid ""
-"You cannot edit this alert template, You don't have the permission to edit "
-"All group."
-msgstr ""
-
-#: ../../godmode/alerts/alert_templates.php:478
-msgid "No alert templates defined"
-msgstr ""
-
-#: ../../godmode/alerts/configure_alert_action.php:74
-#: ../../godmode/alerts/configure_alert_action.php:87
-msgid "Configure alert action"
-msgstr ""
-
-#: ../../godmode/alerts/configure_alert_action.php:164
-msgid "Update Action"
-msgstr ""
-
-#: ../../godmode/alerts/configure_alert_action.php:166
-#: ../../godmode/alerts/alert_list.builder.php:135
-#: ../../include/class/AgentsAlerts.class.php:329
-msgid "Create Action"
-msgstr ""
-
-#: ../../godmode/alerts/configure_alert_action.php:201
-msgid "This action may stop working, if you change its name."
-msgstr ""
-
-#: ../../godmode/alerts/configure_alert_action.php:302
-#: ../../godmode/alerts/alert_view.php:422
-msgid "Firing"
-msgstr ""
-
-#: ../../godmode/alerts/configure_alert_action.php:303
-msgid "Recovery"
-msgstr ""
-
-#: ../../godmode/alerts/configure_alert_action.php:307
-#: ../../godmode/alerts/alert_view.php:511
-#: ../../godmode/alerts/alert_view.php:601 ../../godmode/servers/plugin.php:421
-msgid "Command preview"
-msgstr ""
-
-#: ../../godmode/alerts/configure_alert_action.php:327
-msgid "Create workunit on recovery"
-msgstr ""
-
-#: ../../godmode/alerts/configure_alert_action.php:328
-msgid ""
-"If closed status is set on recovery, a workunit will be added to the ticket "
-"in Integria IMS rather that closing the ticket."
-msgstr ""
-
-#: ../../godmode/alerts/configure_alert_template.php:79
-#: ../../godmode/alerts/configure_alert_template.php:103
-#: ../../godmode/alerts/configure_alert_template.php:135
-#: ../../include/functions_menu.php:491
-msgid "Configure alert template"
-msgstr ""
-
-#: ../../godmode/alerts/configure_alert_template.php:192
-#: ../../godmode/alerts/configure_alert_template.php:196
-#: ../../godmode/alerts/configure_alert_template.php:213
-#: ../../godmode/alerts/configure_alert_template.php:217
-#: ../../godmode/alerts/configure_alert_template.php:234
-#: ../../godmode/alerts/configure_alert_template.php:238
-#: ../../include/functions_config.php:1536
-msgid "Step"
-msgstr ""
-
-#: ../../godmode/alerts/configure_alert_template.php:193
-#: ../../godmode/alerts/configure_alert_template.php:197
-#: ../../godmode/setup/setup.php:93 ../../godmode/setup/setup.php:246
-#: ../../godmode/servers/plugin.php:366 ../../godmode/servers/plugin.php:371
-#: ../../include/ajax/events.php:1425 ../../include/functions_reports.php:770
-#: ../../include/functions_reporting.php:8872
-msgid "General"
-msgstr ""
-
-#: ../../godmode/alerts/configure_alert_template.php:214
-#: ../../godmode/alerts/configure_alert_template.php:218
-msgid "Conditions"
-msgstr ""
-
-#: ../../godmode/alerts/configure_alert_template.php:235
-#: ../../godmode/alerts/configure_alert_template.php:239
-msgid "Advanced fields"
-msgstr ""
-
-#: ../../godmode/alerts/configure_alert_template.php:389
-#, php-format
-msgid ""
-"This node is configured with centralized mode. All alerts templates "
-"information is read only. Go to Go to %s to manage it."
-msgstr ""
-
-#: ../../godmode/alerts/configure_alert_template.php:517
-msgid "No template name specified"
-msgstr ""
-
-#: ../../godmode/alerts/configure_alert_template.php:598
-#: ../../godmode/alerts/alert_list.builder.php:168
-#: ../../include/class/AgentsAlerts.class.php:376
-msgid "Create Template"
-msgstr ""
-
-#: ../../godmode/alerts/configure_alert_template.php:618
-msgid "Days of week"
-msgstr ""
-
-#: ../../godmode/alerts/configure_alert_template.php:676
-#: ../../godmode/alerts/alert_view.php:310
-msgid "Use special days list"
-msgstr ""
-
-#: ../../godmode/alerts/configure_alert_template.php:710
-#: ../../godmode/reporting/reporting_builder.item_editor.php:1388
-msgid "Time from"
-msgstr ""
-
-#: ../../godmode/alerts/configure_alert_template.php:730
-#: ../../godmode/reporting/reporting_builder.item_editor.php:1406
-msgid "Time to"
-msgstr ""
-
-#: ../../godmode/alerts/configure_alert_template.php:788
-msgid "Reset counter for non-sustained alerts"
-msgstr ""
-
-#: ../../godmode/alerts/configure_alert_template.php:790
-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:834
-#: ../../godmode/alerts/alert_list.builder.php:116
-#: ../../include/class/AgentsAlerts.class.php:301
-msgid "Default action"
-msgstr ""
-
-#: ../../godmode/alerts/configure_alert_template.php:865
-msgid ""
-"Unless they're left blank, the fields from the action will override those "
-"set on the template."
-msgstr ""
-
-#: ../../godmode/alerts/configure_alert_template.php:869
-msgid "Condition type"
-msgstr ""
-
-#: ../../godmode/alerts/configure_alert_template.php:886
-msgid "Trigger when matches the value"
-msgstr ""
-
-#: ../../godmode/alerts/configure_alert_template.php:909
-msgid "The regular expression is valid"
-msgstr ""
-
-#: ../../godmode/alerts/configure_alert_template.php:919
-msgid "The regular expression is not valid"
-msgstr ""
-
-#: ../../godmode/alerts/configure_alert_template.php:974
-msgid "Alert recovery"
-msgstr ""
-
-#: ../../godmode/alerts/configure_alert_template.php:995
-#: ../../godmode/alerts/alert_view.php:440
-#: ../../godmode/alerts/alert_view.php:534
-msgid "Firing fields"
-msgstr ""
-
-#: ../../godmode/alerts/configure_alert_template.php:996
-msgid "Recovery fields"
-msgstr ""
-
-#: ../../godmode/alerts/configure_alert_template.php:1209
-msgid "No wizard"
-msgstr ""
-
-#: ../../godmode/alerts/configure_alert_template.php:1244
-#: ../../godmode/wizards/HostDevices.class.php:1569
-#: ../../include/class/CustomNetScan.class.php:725
-msgid "Finish"
-msgstr ""
-
-#: ../../godmode/alerts/configure_alert_template.php:1284
-#: ../../godmode/alerts/alert_view.php:138 ../../include/functions_ui.php:1325
-msgid "The alert would fire when the value matches <span id=\"value\"></span>"
-msgstr ""
-
-#: ../../godmode/alerts/configure_alert_template.php:1285
-#, php-format
-msgid "The alert would fire when the value doesn\\'t match %s"
-msgstr ""
-
-#: ../../godmode/alerts/configure_alert_template.php:1286
-#: ../../godmode/alerts/alert_view.php:147 ../../include/functions_ui.php:1314
-msgid "The alert would fire when the value is <span id=\"value\"></span>"
-msgstr ""
-
-#: ../../godmode/alerts/configure_alert_template.php:1287
-#: ../../godmode/alerts/alert_view.php:152 ../../include/functions_ui.php:1319
-msgid "The alert would fire when the value is not <span id=\"value\"></span>"
-msgstr ""
-
-#: ../../godmode/alerts/configure_alert_template.php:1288
-#: ../../godmode/alerts/alert_view.php:158 ../../include/functions_ui.php:1337
-msgid ""
-"The alert would fire when the value is between <span id=\"min\"></span> and "
-"<span id=\"max\"></span>"
-msgstr ""
-
-#: ../../godmode/alerts/configure_alert_template.php:1289
-msgid ""
-"The alert would fire when the value is not between <span id=min></span> and "
-"<span id=max></span>"
-msgstr ""
-
-#: ../../godmode/alerts/configure_alert_template.php:1290
-#: ../../godmode/alerts/alert_view.php:168
-msgid "The alert would fire when the value is below <span id=\"min\"></span>"
-msgstr ""
-
-#: ../../godmode/alerts/configure_alert_template.php:1291
-#: ../../godmode/alerts/alert_view.php:173
-msgid "The alert would fire when the value is above <span id=\"max\"></span>"
-msgstr ""
-
-#: ../../godmode/alerts/configure_alert_template.php:1292
-#: ../../godmode/alerts/alert_view.php:186 ../../include/functions_ui.php:1356
-msgid "The alert would fire when the module is in warning status"
-msgstr ""
-
-#: ../../godmode/alerts/configure_alert_template.php:1293
-#: ../../godmode/alerts/alert_view.php:190 ../../include/functions_ui.php:1361
-msgid "The alert would fire when the module is in critical status"
-msgstr ""
-
-#: ../../godmode/alerts/configure_alert_template.php:1294
-#: ../../godmode/alerts/alert_view.php:179
-msgid "The alert would fire when the module value changes"
-msgstr ""
-
-#: ../../godmode/alerts/configure_alert_template.php:1295
-#: ../../godmode/alerts/alert_view.php:181
-msgid "The alert would fire when the module value does not change"
-msgstr ""
-
-#: ../../godmode/alerts/configure_alert_template.php:1296
-#: ../../godmode/alerts/alert_view.php:198
-msgid "The alert would fire when the module is in unknown status"
-msgstr ""
-
-#: ../../godmode/alerts/configure_alert_template.php:1297
-msgid ""
-"The alert template cannot have the same value for min and max thresholds."
-msgstr ""
-
-#: ../../godmode/alerts/configure_alert_template.php:1298
-#: ../../godmode/alerts/alert_view.php:194
-msgid "The alert would fire when the module is in not normal status"
-msgstr ""
-
-#: ../../godmode/alerts/configure_alert_template.php:1477
-msgid ""
-"The alert would fire when the module is in unknown status. Warning: "
-"unknown_updates of pandora_server.conf must be equal to 1"
-msgstr ""
-
-#: ../../godmode/alerts/alert_view.php:49
-#: ../../godmode/alerts/alert_view.php:331
-#: ../../include/functions_events.php:4548
-msgid "Alert details"
-msgstr ""
-
-#: ../../godmode/alerts/alert_view.php:60
-#: ../../godmode/alerts/alert_view.php:61
-#: ../../godmode/alerts/alert_list.php:438
-msgid "List alerts"
-msgstr ""
-
-#: ../../godmode/alerts/alert_view.php:105
-#: ../../mobile/operation/alerts.php:107 ../../mobile/operation/alerts.php:108
-#: ../../mobile/operation/alerts.php:237 ../../mobile/operation/alerts.php:238
-msgid "Stand by"
-msgstr ""
-
-#: ../../godmode/alerts/alert_view.php:140 ../../include/functions_ui.php:1328
-msgid ""
-"The alert would fire when the value doesn't match <span id=\"value\"></span>"
-msgstr ""
-
-#: ../../godmode/alerts/alert_view.php:160 ../../include/functions_ui.php:1340
-msgid ""
-"The alert would fire when the value is not between <span id=\"min\"></span> "
-"and <span id=\"max\"></span>"
-msgstr ""
-
-#: ../../godmode/alerts/alert_view.php:318
-msgid "Number of alerts"
-msgstr ""
-
-#: ../../godmode/alerts/alert_view.php:318
-#: ../../godmode/reporting/reporting_builder.item_editor.php:1284
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2363
-#: ../../include/functions_reporting_html.php:4515
-#: ../../include/functions_ui.php:2595
-#: ../../include/functions_reporting.php:1500
-msgid "Min"
-msgstr ""
-
-#: ../../godmode/alerts/alert_view.php:318
-#: ../../godmode/reporting/reporting_builder.item_editor.php:1286
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2356
-#: ../../include/functions_reporting_html.php:4514
-#: ../../include/functions_ui.php:2595
-#: ../../include/functions_reporting.php:1496
-msgid "Max"
-msgstr ""
-
-#: ../../godmode/alerts/alert_view.php:332
-msgid "Firing conditions"
-msgstr ""
-
-#: ../../godmode/alerts/alert_view.php:355
-#: ../../godmode/alerts/alert_view.php:375
-msgid "Every time that the alert is fired"
-msgstr ""
-
-#: ../../godmode/alerts/alert_view.php:416
-msgid ""
-"Select the desired action and mode to see the Firing/Recovery fields for "
-"this action"
-msgstr ""
-
-#: ../../godmode/alerts/alert_view.php:419
-msgid "Select the action"
-msgstr ""
-
-#: ../../godmode/alerts/alert_view.php:423
-msgid "Recovering"
-msgstr ""
-
-#: ../../godmode/alerts/alert_view.php:440
-msgid ""
-"Fields passed to the command executed by this action when the alert is fired"
-msgstr ""
-
-#: ../../godmode/alerts/alert_view.php:442
-#: ../../godmode/alerts/alert_view.php:533
-msgid "Fields configured on the command associated to the action"
-msgstr ""
-
-#: ../../godmode/alerts/alert_view.php:443
-msgid "Template fields"
-msgstr ""
-
-#: ../../godmode/alerts/alert_view.php:443
-msgid "Triggering fields configured in template"
-msgstr ""
-
-#: ../../godmode/alerts/alert_view.php:444
-msgid "Action fields"
-msgstr ""
-
-#: ../../godmode/alerts/alert_view.php:444
-msgid "Triggering fields configured in action"
-msgstr ""
-
-#: ../../godmode/alerts/alert_view.php:446
-msgid "Executed on firing"
-msgstr ""
-
-#: ../../godmode/alerts/alert_view.php:446
-#: ../../godmode/alerts/alert_view.php:534
-msgid "Fields used on execution when the alert is fired"
-msgstr ""
-
-#: ../../godmode/alerts/alert_view.php:519
-msgid "The alert recovering is disabled on this template."
-msgstr ""
-
-#: ../../godmode/alerts/alert_view.php:531
-msgid "Recovering fields"
-msgstr ""
-
-#: ../../godmode/alerts/alert_view.php:531
-msgid ""
-"Fields passed to the command executed by this action when the alert is "
-"recovered"
-msgstr ""
-
-#: ../../godmode/alerts/alert_view.php:535
-msgid "Template recovery fields"
-msgstr ""
-
-#: ../../godmode/alerts/alert_view.php:535
-msgid "Recovery fields configured in alert template"
-msgstr ""
-
-#: ../../godmode/alerts/alert_view.php:536
-msgid "Action recovery fields"
-msgstr ""
-
-#: ../../godmode/alerts/alert_view.php:536
-msgid "Recovery fields configured in alert action"
-msgstr ""
-
-#: ../../godmode/alerts/alert_view.php:537
-msgid "Executed on recovery"
-msgstr ""
-
-#: ../../godmode/alerts/alert_view.php:537
-msgid "Fields used on execution when the alert is recovered"
-msgstr ""
-
-#: ../../godmode/alerts/alert_list.builder.php:90
-msgid "Latest value"
-msgstr ""
-
-#: ../../godmode/alerts/alert_list.builder.php:200
-msgid "Finish and view cluster"
-msgstr ""
-
-#: ../../godmode/alerts/alert_list.builder.php:203
-#: ../../include/class/AgentsAlerts.class.php:393
-msgid "Add alert"
-msgstr ""
-
-#: ../../godmode/alerts/alert_list.php:115
-msgid "Already added"
-msgstr ""
-
-#: ../../godmode/alerts/alert_list.php:169
-msgid "No template specified"
-msgstr ""
-
-#: ../../godmode/alerts/alert_list.php:173
-msgid "No module specified"
-msgstr ""
-
-#: ../../godmode/alerts/alert_list.php:442
-msgid "Builder alert"
-msgstr ""
-
-#: ../../godmode/setup/license.php:48
-msgid "License management"
-msgstr ""
-
-#: ../../godmode/setup/license.php:74
-msgid "License updated"
-msgstr ""
-
-#: ../../godmode/setup/license.php:90
-msgid "Error while connecting to licence server."
-msgstr ""
-
-#: ../../godmode/setup/license.php:91
-msgid "Invalid response while validating license."
-msgstr ""
-
-#: ../../godmode/setup/license.php:92
-msgid "Unknown error"
-msgstr ""
-
-#: ../../godmode/setup/license.php:112
-msgid "Licence"
-msgstr ""
-
-#: ../../godmode/setup/license.php:120
-#: ../../include/class/Diagnostics.class.php:1150
-msgid "Customer key"
-msgstr ""
-
-#: ../../godmode/setup/license.php:126
-#: ../../include/class/Diagnostics.class.php:1158
-msgid "Platform Limit"
-msgstr ""
-
-#: ../../godmode/setup/license.php:127 ../../godmode/setup/license.php:130
-#: ../../godmode/setup/license.php:133 ../../godmode/setup/license.php:136
-msgid "agents"
-msgstr ""
-
-#: ../../godmode/setup/license.php:127 ../../godmode/setup/license.php:130
-#: ../../godmode/setup/license.php:133 ../../godmode/setup/license.php:136
-#: ../../operation/tree.php:156
-msgid "modules"
-msgstr ""
-
-#: ../../godmode/setup/license.php:129
-#: ../../include/class/Diagnostics.class.php:1162
-msgid "Current Platform Count"
-msgstr ""
-
-#: ../../godmode/setup/license.php:132
-#: ../../include/class/Diagnostics.class.php:1166
-msgid "Current Platform Count (enabled: items)"
-msgstr ""
-
-#: ../../godmode/setup/license.php:135
-#: ../../include/class/Diagnostics.class.php:1170
-msgid "Current Platform Count (disabled: items)"
-msgstr ""
-
-#: ../../godmode/setup/license.php:138
-#: ../../include/class/Diagnostics.class.php:1174
-msgid "License Mode"
-msgstr ""
-
-#: ../../godmode/setup/license.php:141
-msgid "NMS"
-msgstr ""
-
-#: ../../godmode/setup/license.php:142 ../../godmode/setup/license.php:145
-msgid "enabled"
-msgstr ""
-
-#: ../../godmode/setup/license.php:142 ../../godmode/setup/license.php:145
-msgid "disabled"
-msgstr ""
-
-#: ../../godmode/setup/license.php:144
-#: ../../godmode/servers/modificar_server.php:42
-#: ../../include/functions_ui.php:857
-#: ../../include/class/Diagnostics.class.php:1182
-msgid "Satellite"
-msgstr ""
-
-#: ../../godmode/setup/license.php:147
-#: ../../include/class/Diagnostics.class.php:1186
-msgid "Licensed to"
-msgstr ""
-
-#: ../../godmode/setup/license.php:156 ../../mobile/operation/events.php:570
-#: ../../include/ajax/alert_list.ajax.php:266
-#: ../../include/ajax/alert_list.ajax.php:292
-#: ../../operation/agentes/alerts_status.php:561
-#: ../../operation/agentes/alerts_status.php:598
-#: ../../operation/agentes/alerts_status.php:631
-#: ../../operation/agentes/alerts_status.php:717
-#: ../../operation/snmpconsole/snmp_view.php:1027
-#: ../../operation/snmpconsole/snmp_view.php:1217
-#: ../../operation/snmpconsole/snmp_view.php:1267
-msgid "Validate"
-msgstr ""
-
-#: ../../godmode/setup/license.php:158 ../../godmode/setup/license.php:173
-msgid "Request new license"
-msgstr ""
-
-#: ../../godmode/setup/license.php:177
-#, php-format
-msgid "To get your <b>%s Enterprise License</b>:"
-msgstr ""
-
-#: ../../godmode/setup/license.php:180
-#, php-format
-msgid "Go to %s"
-msgstr ""
-
-#: ../../godmode/setup/license.php:183
-msgid "Enter the <b>auth key</b> and the following <b>request key</b>:"
-msgstr ""
-
-#: ../../godmode/setup/license.php:189
-msgid "Enter your name (or a company name) and a contact email address."
-msgstr ""
-
-#: ../../godmode/setup/license.php:192
-msgid "Click on <b>Generate</b>."
-msgstr ""
-
-#: ../../godmode/setup/license.php:195
-msgid ""
-"Click <a href=\"javascript: close_code_license_dialog();\">here</a>, enter "
-"the generated license key and click on <b>Validate</b>."
-msgstr ""
-
-#: ../../godmode/setup/news.php:29
-msgid "Site news management"
-msgstr ""
-
-#: ../../godmode/setup/news.php:152 ../../godmode/setup/links.php:89
-msgid "Name error"
-msgstr ""
-
-#: ../../godmode/setup/news.php:183 ../../godmode/setup/news.php:246
-#: ../../operation/messages/message_list.php:199
-#: ../../operation/messages/message_edit.php:350
-msgid "Subject"
-msgstr ""
-
-#: ../../godmode/setup/news.php:191
-msgid "Modal screen"
-msgstr ""
-
-#: ../../godmode/setup/news.php:194
-msgid "Expire"
-msgstr ""
-
-#: ../../godmode/setup/news.php:197 ../../godmode/setup/news.php:250
-msgid "Expiration"
-msgstr ""
-
-#: ../../godmode/setup/news.php:205 ../../godmode/setup/setup_visuals.php:1286
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2138
-#: ../../include/functions_reports.php:822
-#: ../../include/functions_reporting.php:6301
-#: ../../include/lib/Dashboard/Widgets/post.php:214
-msgid "Text"
-msgstr ""
-
-#: ../../godmode/setup/news.php:241
-msgid "There are no defined news"
-msgstr ""
-
-#: ../../godmode/setup/news.php:248
-#: ../../operation/agentes/estado_generalagente.php:622
-msgid "Author"
-msgstr ""
-
-#: ../../godmode/setup/news.php:268
-msgid "Modal"
-msgstr ""
-
-#: ../../godmode/setup/news.php:270
-msgid "Board"
-msgstr ""
-
-#: ../../godmode/setup/news.php:281
-msgid "Expired"
-msgstr ""
-
-#: ../../godmode/setup/gis.php:65
-msgid "Map connection name"
-msgstr ""
-
-#: ../../godmode/setup/gis.php:83
-msgid "Do you wan delete this connection?"
-msgstr ""
-
-#: ../../godmode/setup/setup.php:187 ../../godmode/setup/setup.php:286
-msgid "Module Library"
-msgstr ""
-
-#: ../../godmode/setup/setup.php:213
-msgid "Websocket engine"
-msgstr ""
-
-#: ../../godmode/setup/setup.php:231
-msgid "GIS Map connection"
-msgstr ""
-
-#: ../../godmode/setup/setup.php:302
-msgid "Pandora Websocket Engine"
-msgstr ""
-
-#: ../../godmode/setup/setup.php:337
-msgid "Correct update the setup options"
-msgstr ""
-
-#: ../../godmode/setup/setup_ehorus.php:55
-#: ../../include/functions_config.php:1612
-msgid "Enable eHorus"
-msgstr ""
-
-#: ../../godmode/setup/setup_ehorus.php:90
-msgid "API Hostname"
-msgstr ""
-
-#: ../../godmode/setup/setup_ehorus.php:96
-msgid "API Port"
-msgstr ""
-
-#: ../../godmode/setup/setup_ehorus.php:102
-#: ../../godmode/setup/setup_integria.php:306
-msgid "Request timeout"
-msgstr ""
-
-#: ../../godmode/setup/setup_ehorus.php:108
-#: ../../godmode/setup/setup_integria.php:563
-#: ../../operation/users/user_edit.php:710
-#: ../../operation/users/user_edit.php:756
-msgid "Test"
-msgstr ""
-
-#: ../../godmode/setup/setup_ehorus.php:128
-msgid "Remote Management System"
-msgstr ""
-
-#: ../../godmode/setup/setup_ehorus.php:136
-msgid "Custom field eHorusID created"
-msgstr ""
-
-#: ../../godmode/setup/setup_ehorus.php:136
-msgid "Error creating custom field"
-msgstr ""
-
-#: ../../godmode/setup/setup_ehorus.php:140
-msgid "eHorus has his own agent identifiers"
-msgstr ""
-
-#: ../../godmode/setup/setup_ehorus.php:141
-msgid "To store them, it will be necessary to use an agent custom field"
-msgstr ""
-
-#: ../../godmode/setup/setup_ehorus.php:142
-msgid ""
-"Possibly the eHorus id will have to be filled in by hand for every agent"
-msgstr ""
-
-#: ../../godmode/setup/setup_ehorus.php:147
-msgid "The custom field does not exists already"
-msgstr ""
-
-#: ../../godmode/setup/setup_ehorus.php:161
-msgid "eHorus API"
-msgstr ""
-
-#: ../../godmode/setup/setup_ehorus.php:243
-#: ../../godmode/setup/setup_integria.php:712
-msgid "Connection timeout"
-msgstr ""
-
-#: ../../godmode/setup/setup_ehorus.php:244
-#: ../../godmode/setup/setup_integria.php:713
-#: ../../godmode/setup/setup_integria.php:794
-#: ../../operation/users/user_edit.php:1242
-#: ../../operation/users/user_edit.php:1320
-msgid "Empty user or password"
-msgstr ""
-
-#: ../../godmode/setup/setup_ehorus.php:245
-#: ../../godmode/setup/setup_integria.php:714
-#: ../../godmode/setup/setup_integria.php:795
-#: ../../operation/users/user_edit.php:1243
-#: ../../operation/users/user_edit.php:1321
-msgid "User not found"
-msgstr ""
-
-#: ../../godmode/setup/setup_ehorus.php:246
-#: ../../godmode/setup/setup_integria.php:715
-#: ../../godmode/setup/setup_integria.php:796
-#: ../../operation/users/user_edit.php:1244
-#: ../../operation/users/user_edit.php:1322
-msgid "Invalid password"
-msgstr ""
-
-#: ../../godmode/setup/os.builder.php:32
-#: ../../godmode/reporting/visual_console_builder.data.php:106
-msgid "Name:"
-msgstr ""
-
-#: ../../godmode/setup/setup_websocket_engine.php:38
-msgid "WebSocket settings"
-msgstr ""
-
-#: ../../godmode/setup/setup_websocket_engine.php:47
-msgid "Bind address"
-msgstr ""
-
-#: ../../godmode/setup/setup_websocket_engine.php:57
-msgid "Bind port"
-msgstr ""
-
-#: ../../godmode/setup/setup_websocket_engine.php:67
-#: ../../include/functions_config.php:1766
-msgid "WebSocket proxy url"
-msgstr ""
-
-#: ../../godmode/setup/os.list.php:53
-#, php-format
-msgid ""
-"This node is configured with centralized mode. All OS definitions are read "
-"only. Go to %s to manage them."
-msgstr ""
-
-#: ../../godmode/setup/os.list.php:138
-msgid "There are no defined operating systems"
-msgstr ""
-
-#: ../../godmode/setup/os.list.php:144
-msgid "Create OS"
-msgstr ""
-
-#: ../../godmode/setup/os.php:187
-msgid "List OS"
-msgstr ""
-
-#: ../../godmode/setup/os.php:199
-msgid "Builder OS"
-msgstr ""
-
-#: ../../godmode/setup/os.php:208
-msgid "List of OS"
-msgstr ""
-
-#: ../../godmode/setup/os.php:235 ../../include/functions_api.php:2165
-msgid "Success creating OS"
-msgstr ""
-
-#: ../../godmode/setup/os.php:239
-msgid "Fail creating OS"
-msgstr ""
-
-#: ../../godmode/setup/os.php:243 ../../include/functions_api.php:2204
-msgid "Success updating OS"
-msgstr ""
-
-#: ../../godmode/setup/os.php:247
-msgid "Error updating OS"
-msgstr ""
-
-#: ../../godmode/setup/os.php:251
-msgid "There are agents with this OS."
-msgstr ""
-
-#: ../../godmode/setup/os.php:255
-msgid "Success deleting"
-msgstr ""
-
-#: ../../godmode/setup/os.php:259
-msgid "Error deleting"
-msgstr ""
-
-#: ../../godmode/setup/gis_step_2.php:34
-msgid "GIS Maps connections"
-msgstr ""
-
-#: ../../godmode/setup/gis_step_2.php:51
-msgid "Create new map connection"
-msgstr ""
-
-#: ../../godmode/setup/gis_step_2.php:78
-msgid "Edit map connection"
-msgstr ""
-
-#: ../../godmode/setup/gis_step_2.php:210
-msgid "Connection Name"
-msgstr ""
-
-#: ../../godmode/setup/gis_step_2.php:216
-msgid "Number of zoom levels"
-msgstr ""
-
-#: ../../godmode/setup/gis_step_2.php:220
-msgid "Default zoom level"
-msgstr ""
-
-#: ../../godmode/setup/gis_step_2.php:223
-msgid "Basic configuration"
-msgstr ""
-
-#: ../../godmode/setup/gis_step_2.php:228
-msgid "Open Street Maps"
-msgstr ""
-
-#: ../../godmode/setup/gis_step_2.php:229
-msgid "Google Maps"
-msgstr ""
-
-#: ../../godmode/setup/gis_step_2.php:230
-#: ../../godmode/reporting/visual_console_builder.elements.php:182
-#: ../../include/functions_visual_map_editor.php:1387
-#: ../../include/functions_visual_map.php:4214
-#: ../../operation/visual_console/view.php:296
-msgid "Static Image"
-msgstr ""
-
-#: ../../godmode/setup/gis_step_2.php:231
-msgid "WMS Server"
-msgstr ""
-
-#: ../../godmode/setup/gis_step_2.php:233
-msgid "Please select the connection type"
-msgstr ""
-
-#: ../../godmode/setup/gis_step_2.php:235
-msgid "Map connection type"
-msgstr ""
-
-#: ../../godmode/setup/gis_step_2.php:283
-msgid "Tile Server URL"
-msgstr ""
-
-#: ../../godmode/setup/gis_step_2.php:296
-msgid "Google Physical"
-msgstr ""
-
-#: ../../godmode/setup/gis_step_2.php:297
-msgid "Google Hybrid"
-msgstr ""
-
-#: ../../godmode/setup/gis_step_2.php:298
-msgid "Google Satelite"
-msgstr ""
-
-#: ../../godmode/setup/gis_step_2.php:300
-msgid "Google Map Type"
-msgstr ""
-
-#: ../../godmode/setup/gis_step_2.php:324
-msgid "Google Maps Key"
-msgstr ""
-
-#: ../../godmode/setup/gis_step_2.php:333
-msgid "Image URL"
-msgstr ""
-
-#: ../../godmode/setup/gis_step_2.php:340
-msgid "Corners of the area of the image"
-msgstr ""
-
-#: ../../godmode/setup/gis_step_2.php:340
-#: ../../include/rest-api/models/VisualConsole/Item.php:1929
-msgid "Left"
-msgstr ""
-
-#: ../../godmode/setup/gis_step_2.php:347
-#: ../../include/rest-api/models/VisualConsole/Item.php:1926
-#: ../../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:354
-#: ../../include/rest-api/models/VisualConsole/Item.php:1928
-msgid "Right"
-msgstr ""
-
-#: ../../godmode/setup/gis_step_2.php:361
-#: ../../include/rest-api/models/VisualConsole/Item.php:1927
-msgid "Top"
-msgstr ""
-
-#: ../../godmode/setup/gis_step_2.php:368
-msgid "Image Size"
-msgstr ""
-
-#: ../../godmode/setup/gis_step_2.php:368
-#: ../../godmode/reporting/visual_console_builder.wizard.php:180
-#: ../../godmode/events/event_responses.editor.php:137
-#: ../../include/functions_visual_map_editor.php:97
-#: ../../include/functions_visual_map_editor.php:668
-#: ../../include/rest-api/models/VisualConsole/Items/Line.php:475
-#: ../../include/rest-api/models/VisualConsole/Items/NetworkLink.php:926
-msgid "Width"
-msgstr ""
-
-#: ../../godmode/setup/gis_step_2.php:375
-#: ../../godmode/reporting/visual_console_builder.wizard.php:181
-#: ../../godmode/events/event_responses.editor.php:139
-#: ../../include/functions_visual_map_editor.php:673
-msgid "Height"
-msgstr ""
-
-#: ../../godmode/setup/gis_step_2.php:385
-msgid "WMS Server URL"
-msgstr ""
-
-#: ../../godmode/setup/gis_step_2.php:392
-msgid "Layers"
-msgstr ""
-
-#: ../../godmode/setup/gis_step_2.php:427
-msgid ""
-"Preview to select the center of the map and the default position of an agent "
-"without gis data"
-msgstr ""
-
-#: ../../godmode/setup/gis_step_2.php:428
-msgid "Load preview map"
-msgstr ""
-
-#: ../../godmode/setup/gis_step_2.php:437
-msgid "Map Center"
-msgstr ""
-
-#: ../../godmode/setup/gis_step_2.php:438
-msgid "Default position for agents without GIS data"
-msgstr ""
-
-#: ../../godmode/setup/gis_step_2.php:440
-msgid "Change in the map"
-msgstr ""
-
-#: ../../godmode/setup/gis_step_2.php:462
-#: ../../operation/agentes/gis_view.php:215
-msgid "Latitude"
-msgstr ""
-
-#: ../../godmode/setup/gis_step_2.php:480
-#: ../../operation/agentes/gis_view.php:214
-msgid "Longitude"
-msgstr ""
-
-#: ../../godmode/setup/gis_step_2.php:498
-#: ../../operation/agentes/gis_view.php:216
-msgid "Altitude"
-msgstr ""
-
-#: ../../godmode/setup/gis_step_2.php:561
-#: ../../godmode/setup/gis_step_2.php:656
-msgid "Center"
-msgstr ""
-
-#: ../../godmode/setup/gis_step_2.php:621
-msgid "Refresh preview map"
-msgstr ""
-
-#: ../../godmode/setup/setup_auth.php:53 ../../include/functions_config.php:628
-msgid "Fallback to local authentication"
-msgstr ""
-
-#: ../../godmode/setup/setup_auth.php:66 ../../include/functions_config.php:540
-msgid "Autocreate remote users"
-msgstr ""
-
-#: ../../godmode/setup/setup_auth.php:89 ../../include/functions_config.php:596
-msgid "LDAP server"
-msgstr ""
-
-#: ../../godmode/setup/setup_auth.php:102
-#: ../../include/functions_config.php:600
-msgid "LDAP port"
-msgstr ""
-
-#: ../../godmode/setup/setup_auth.php:120
-#: ../../include/functions_config.php:604
-msgid "LDAP version"
-msgstr ""
-
-#: ../../godmode/setup/setup_auth.php:134
-#: ../../include/functions_config.php:572
-#: ../../include/functions_config.php:608
-msgid "Start TLS"
-msgstr ""
-
-#: ../../godmode/setup/setup_auth.php:145
-#: ../../include/functions_config.php:612
-msgid "Base DN"
-msgstr ""
-
-#: ../../godmode/setup/setup_auth.php:158
-#: ../../include/functions_config.php:616
-msgid "Login attribute"
-msgstr ""
-
-#: ../../godmode/setup/setup_auth.php:171
-#: ../../include/functions_config.php:620
-msgid "Admin LDAP login"
-msgstr ""
-
-#: ../../godmode/setup/setup_auth.php:184
-#: ../../include/functions_config.php:624
-msgid "Admin LDAP password"
-msgstr ""
-
-#: ../../godmode/setup/setup_auth.php:235
-msgid "Force 2FA for all users is enabled"
-msgstr ""
-
-#: ../../godmode/setup/setup_auth.php:256
-msgid "Session timeout (mins)"
-msgstr ""
-
-#: ../../godmode/setup/setup_auth.php:299
-#, php-format
-msgid "Local %s"
-msgstr ""
-
-#: ../../godmode/setup/setup_auth.php:300
-msgid "ldap"
-msgstr ""
-
-#: ../../godmode/setup/setup_auth.php:307
-#: ../../include/functions_config.php:536
-#: ../../include/class/AgentWizard.class.php:836
-msgid "Authentication method"
-msgstr ""
-
-#: ../../godmode/setup/setup_integria.php:61
-#: ../../operation/incidents/configure_integriaims_incident.php:41
-#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:31
-#: ../../operation/incidents/list_integriaims_incidents.php:42
-msgid "Integria IMS API is not reachable"
-msgstr ""
-
-#: ../../godmode/setup/setup_integria.php:258
-#: ../../include/functions_config.php:1650
-msgid "Enable Integria IMS"
-msgstr ""
-
-#: ../../godmode/setup/setup_integria.php:293
-msgid "URL to Integria IMS setup"
-msgstr ""
-
-#: ../../godmode/setup/setup_integria.php:293
-msgid ""
-"Full URL to your Integria IMS setup (e.g., http://192.168.1.20/integria, "
-"https://support.mycompany.com)."
-msgstr ""
-
-#: ../../godmode/setup/setup_integria.php:299
-msgid "API Password"
-msgstr ""
-
-#: ../../godmode/setup/setup_integria.php:312
-msgid "Sync inventory"
-msgstr ""
-
-#: ../../godmode/setup/setup_integria.php:330
-#: ../../godmode/setup/setup_integria.php:451
-#: ../../include/rest-api/models/VisualConsole/Items/Odometer.php:404
-#: ../../include/lib/Dashboard/Widget.php:545
-#: ../../operation/agentes/estado_generalagente.php:629
-#: ../../operation/incidents/integriaims_export_csv.php:81
-#: ../../operation/incidents/configure_integriaims_incident.php:213
-#: ../../operation/incidents/list_integriaims_incidents.php:516
-msgid "Title"
-msgstr ""
-
-#: ../../godmode/setup/setup_integria.php:345
-#: ../../godmode/setup/setup_integria.php:466
-msgid "Ticket body"
-msgstr ""
-
-#: ../../godmode/setup/setup_integria.php:394
-#: ../../godmode/setup/setup_integria.php:516
-#: ../../godmode/events/custom_events.php:111
-#: ../../mobile/operation/events.php:520 ../../include/functions_events.php:206
-#: ../../include/functions_events.php:280
-#: ../../include/functions_events.php:4931
-#: ../../include/functions_events.php:6621
-#: ../../operation/incidents/integriaims_export_csv.php:89
-#: ../../operation/incidents/configure_integriaims_incident.php:312
-#: ../../operation/incidents/list_integriaims_incidents.php:342
-#: ../../operation/incidents/list_integriaims_incidents.php:522
-#: ../../operation/events/events.build_table.php:212
-msgid "Owner"
-msgstr ""
-
-#: ../../godmode/setup/setup_integria.php:596
-msgid "Integria API settings"
-msgstr ""
-
-#: ../../godmode/setup/setup_integria.php:607
-msgid "Alert default values"
-msgstr ""
-
-#: ../../godmode/setup/setup_integria.php:617
-msgid "Event custom response default values"
-msgstr ""
-
-#: ../../godmode/setup/setup_integria.php:629
-#: ../../godmode/wizards/HostDevices.class.php:772
-#: ../../include/class/CustomNetScan.class.php:553
-msgid "Update and continue"
-msgstr ""
-
-#: ../../godmode/setup/links.php:25
-msgid "Link management"
-msgstr ""
-
-#: ../../godmode/setup/links.php:39
-msgid "There was a problem creating link"
-msgstr ""
-
-#: ../../godmode/setup/links.php:58
-msgid "There was a problem modifying link"
-msgstr ""
-
-#: ../../godmode/setup/links.php:71
-msgid "There was a problem deleting link"
-msgstr ""
-
-#: ../../godmode/setup/links.php:113 ../../godmode/setup/links.php:142
-msgid "Link name"
-msgstr ""
-
-#: ../../godmode/setup/links.php:116
-msgid "Link"
-msgstr ""
-
-#: ../../godmode/setup/links.php:138
-msgid "There isn't links"
-msgstr ""
-
-#: ../../godmode/setup/snmp_wizard.php:42
-#: ../../include/functions_snmp_browser.php:556
-msgid "OID"
-msgstr ""
-
-#: ../../godmode/setup/snmp_wizard.php:44
-msgid "OP"
-msgstr ""
-
-#: ../../godmode/setup/snmp_wizard.php:155
-msgid "Unsucessful update the snmp translation"
-msgstr ""
-
-#: ../../godmode/setup/snmp_wizard.php:162
-msgid "Unsucessful update the snmp translation."
-msgstr ""
-
-#: ../../godmode/setup/snmp_wizard.php:210
-msgid "Unsucessful delete the snmp translation"
-msgstr ""
-
-#: ../../godmode/setup/snmp_wizard.php:217
-msgid "Unsucessful delete the snmp translation."
-msgstr ""
-
-#: ../../godmode/setup/snmp_wizard.php:278
-msgid "Unsucessful save the snmp translation"
-msgstr ""
-
-#: ../../godmode/setup/snmp_wizard.php:287
-msgid "Unsucessful save the snmp translation."
-msgstr ""
-
-#: ../../godmode/setup/setup_netflow.php:37
-#: ../../include/functions_config.php:1419
-msgid "Data storage path"
-msgstr ""
-
-#: ../../godmode/setup/setup_netflow.php:40
-#: ../../include/functions_config.php:1423
-msgid "Daemon interval"
-msgstr ""
-
-#: ../../godmode/setup/setup_netflow.php:43
-#: ../../include/functions_config.php:1427
-msgid "Daemon binary path"
-msgstr ""
-
-#: ../../godmode/setup/setup_netflow.php:46
-#: ../../include/functions_config.php:1431
-msgid "Nfdump binary path"
-msgstr ""
-
-#: ../../godmode/setup/setup_netflow.php:49
-#: ../../include/functions_config.php:1435
-msgid "Nfexpire binary path"
-msgstr ""
-
-#: ../../godmode/setup/setup_netflow.php:52
-#: ../../include/functions_config.php:1439
-msgid "Maximum chart resolution"
-msgstr ""
-
-#: ../../godmode/setup/setup_netflow.php:55
-#: ../../include/functions_config.php:1443
-msgid "Disable custom live view filters"
-msgstr ""
-
-#: ../../godmode/setup/setup_netflow.php:57
-#: ../../include/functions_config.php:1447
-msgid "Netflow max lifetime"
-msgstr ""
-
-#: ../../godmode/setup/setup_netflow.php:60
-#: ../../include/functions_config.php:1451
-msgid "Name resolution for IP address"
-msgstr ""
-
-#: ../../godmode/setup/setup_netflow.php:61
-#: ../../operation/netflow/nf_live_view.php:451
-msgid "IP address resolution can take a lot of time"
-msgstr ""
-
-#: ../../godmode/setup/setup_visuals.php:76
-msgid "Paginated module view"
-msgstr ""
-
-#: ../../godmode/setup/setup_visuals.php:85
-#: ../../include/functions_config.php:1220
-msgid "Display data of proc modules in other format"
-msgstr ""
-
-#: ../../godmode/setup/setup_visuals.php:94
-#: ../../include/functions_config.php:1224
-msgid "Display text proc modules have state is ok"
-msgstr ""
-
-#: ../../godmode/setup/setup_visuals.php:98
-#: ../../include/functions_config.php:1228
-msgid "Display text when proc modules have state critical"
-msgstr ""
-
-#: ../../godmode/setup/setup_visuals.php:103
-msgid "Click to display lateral menus"
-msgstr ""
-
-#: ../../godmode/setup/setup_visuals.php:113
-#: ../../include/functions_config.php:1239
-msgid "Service label font size"
-msgstr ""
-
-#: ../../godmode/setup/setup_visuals.php:117
-msgid "Space between items in Service maps"
-msgstr ""
-
-#: ../../godmode/setup/setup_visuals.php:134
-#: ../../include/functions_config.php:952
-msgid "Style template"
-msgstr ""
-
-#: ../../godmode/setup/setup_visuals.php:147
-#: ../../include/functions_config.php:972
-msgid "Status icon set"
-msgstr ""
-
-#: ../../godmode/setup/setup_visuals.php:148
-msgid "Colors"
-msgstr ""
-
-#: ../../godmode/setup/setup_visuals.php:149
-msgid "Faces"
-msgstr ""
-
-#: ../../godmode/setup/setup_visuals.php:150
-msgid "Colors and text"
-msgstr ""
-
-#: ../../godmode/setup/setup_visuals.php:173
-#: ../../include/functions_config.php:1048
-msgid "Login background"
-msgstr ""
-
-#: ../../godmode/setup/setup_visuals.php:187
-#: ../../include/functions_config.php:984
-msgid "Custom favicon"
-msgstr ""
-
-#: ../../godmode/setup/setup_visuals.php:209
-msgid "Custom background logo"
-msgstr ""
-
-#: ../../godmode/setup/setup_visuals.php:276
-msgid "Custom logo (menu)"
-msgstr ""
-
-#: ../../godmode/setup/setup_visuals.php:281
-msgid "Custom logo collapsed (menu)"
-msgstr ""
-
-#: ../../godmode/setup/setup_visuals.php:286
-msgid "Custom logo (header white background)"
-msgstr ""
-
-#: ../../godmode/setup/setup_visuals.php:325
-msgid "Custom logo (login)"
-msgstr ""
-
-#: ../../godmode/setup/setup_visuals.php:364
-msgid "Custom Splash (login)"
-msgstr ""
-
-#: ../../godmode/setup/setup_visuals.php:390
-#: ../../include/functions_config.php:1008
-msgid "Custom documentation logo"
-msgstr ""
-
-#: ../../godmode/setup/setup_visuals.php:410
-#: ../../include/functions_config.php:1012
-msgid "Custom support logo"
-msgstr ""
-
-#: ../../godmode/setup/setup_visuals.php:429
-#: ../../include/functions_config.php:1016
-#: ../../include/functions_config.php:1020
-msgid "Custom networkmap center logo"
-msgstr ""
-
-#: ../../godmode/setup/setup_visuals.php:448
-msgid "Custom mobile console icon"
-msgstr ""
-
-#: ../../godmode/setup/setup_visuals.php:468
-msgid "Title (header)"
-msgstr ""
-
-#: ../../godmode/setup/setup_visuals.php:473
-msgid "Subtitle (header)"
-msgstr ""
-
-#: ../../godmode/setup/setup_visuals.php:479
-msgid "Title 1 (login)"
-msgstr ""
-
-#: ../../godmode/setup/setup_visuals.php:486
-msgid "Title 2 (login)"
-msgstr ""
-
-#: ../../godmode/setup/setup_visuals.php:492
-msgid "Docs URL (login)"
-msgstr ""
-
-#: ../../godmode/setup/setup_visuals.php:498
-msgid "Support URL (login)"
-msgstr ""
-
-#: ../../godmode/setup/setup_visuals.php:504
-#: ../../include/functions_config.php:1060
-msgid "Product name"
-msgstr ""
-
-#: ../../godmode/setup/setup_visuals.php:510
-#: ../../include/functions_config.php:1064
-msgid "Copyright notice"
-msgstr ""
-
-#: ../../godmode/setup/setup_visuals.php:516
-msgid "Disable logo in graphs"
-msgstr ""
-
-#: ../../godmode/setup/setup_visuals.php:532
-msgid "Disable helps"
-msgstr ""
-
-#: ../../godmode/setup/setup_visuals.php:541
-#: ../../include/functions_config.php:1180
-msgid "Fixed header"
-msgstr ""
-
-#: ../../godmode/setup/setup_visuals.php:552
-msgid "Automatically hide submenu"
-msgstr ""
-
-#: ../../godmode/setup/setup_visuals.php:560
-msgid "Visual effects and animation"
-msgstr ""
-
-#: ../../godmode/setup/setup_visuals.php:580
-#: ../../include/functions_config.php:1152
-msgid "GIS Labels"
-msgstr ""
-
-#: ../../godmode/setup/setup_visuals.php:595
-#: ../../include/functions_config.php:1160
-msgid "Default icon in GIS"
-msgstr ""
-
-#: ../../godmode/setup/setup_visuals.php:601
-msgid "Agent icon group"
-msgstr ""
-
-#: ../../godmode/setup/setup_visuals.php:619
-msgid "Graphs font size"
-msgstr ""
-
-#: ../../godmode/setup/setup_visuals.php:650
-#: ../../include/functions_config.php:1128
-#: ../../include/functions_config.php:1132
-msgid "Agent size text"
-msgstr ""
-
-#: ../../godmode/setup/setup_visuals.php:651
-#: ../../godmode/setup/setup_visuals.php:656
-msgid "Small:"
-msgstr ""
-
-#: ../../godmode/setup/setup_visuals.php:652
-#: ../../godmode/setup/setup_visuals.php:657
-msgid "Normal:"
-msgstr ""
-
-#: ../../godmode/setup/setup_visuals.php:655
-#: ../../include/functions_config.php:1136
-msgid "Module size text"
-msgstr ""
-
-#: ../../godmode/setup/setup_visuals.php:660
-#: ../../include/functions_config.php:1140
-#: ../../include/functions_config.php:1144
-msgid "Description size text"
-msgstr ""
-
-#: ../../godmode/setup/setup_visuals.php:664
-#: ../../include/functions_config.php:1148
-msgid "Item title size text"
-msgstr ""
-
-#: ../../godmode/setup/setup_visuals.php:675
-msgid "Show unit along with value in reports"
-msgstr ""
-
-#: ../../godmode/setup/setup_visuals.php:695
-#: ../../include/functions_config.php:899
-msgid "Graph color #1"
-msgstr ""
-
-#: ../../godmode/setup/setup_visuals.php:706
-#: ../../include/functions_config.php:903
-msgid "Graph color #2"
-msgstr ""
-
-#: ../../godmode/setup/setup_visuals.php:717
-#: ../../include/functions_config.php:907
-msgid "Graph color #3"
-msgstr ""
-
-#: ../../godmode/setup/setup_visuals.php:728
-#: ../../include/functions_config.php:911
-msgid "Graph color #4"
-msgstr ""
-
-#: ../../godmode/setup/setup_visuals.php:739
-#: ../../include/functions_config.php:915
-msgid "Graph color #5"
-msgstr ""
-
-#: ../../godmode/setup/setup_visuals.php:750
-#: ../../include/functions_config.php:919
-msgid "Graph color #6"
-msgstr ""
-
-#: ../../godmode/setup/setup_visuals.php:761
-#: ../../include/functions_config.php:923
-msgid "Graph color #7"
-msgstr ""
-
-#: ../../godmode/setup/setup_visuals.php:772
-#: ../../include/functions_config.php:927
-msgid "Graph color #8"
-msgstr ""
-
-#: ../../godmode/setup/setup_visuals.php:783
-#: ../../include/functions_config.php:931
-msgid "Graph color #9"
-msgstr ""
-
-#: ../../godmode/setup/setup_visuals.php:794
-#: ../../include/functions_config.php:935
-msgid "Graph color #10"
-msgstr ""
-
-#: ../../godmode/setup/setup_visuals.php:805
-#: ../../include/functions_config.php:939
-msgid "Value to interface graphics"
-msgstr ""
-
-#: ../../godmode/setup/setup_visuals.php:821
-msgid "Data precision"
-msgstr ""
-
-#: ../../godmode/setup/setup_visuals.php:839
-msgid "Data precision in graphs"
-msgstr ""
-
-#: ../../godmode/setup/setup_visuals.php:854
-#: ../../include/functions_config.php:1204
-msgid "Default line thickness for the Custom Graph."
-msgstr ""
-
-#: ../../godmode/setup/setup_visuals.php:866
-msgid "Number of elements in Custom Graph"
-msgstr ""
-
-#: ../../godmode/setup/setup_visuals.php:880
-#: ../../include/functions_config.php:960
-msgid "Use round corners"
-msgstr ""
-
-#: ../../godmode/setup/setup_visuals.php:889
-#: ../../include/functions_config.php:964
-msgid "Chart fit to content"
-msgstr ""
-
-#: ../../godmode/setup/setup_visuals.php:898
-msgid "Type of module charts"
-msgstr ""
-
-#: ../../godmode/setup/setup_visuals.php:899
-#: ../../godmode/setup/setup_visuals.php:916
-#: ../../godmode/reporting/create_container.php:358
-#: ../../godmode/reporting/graph_builder.main.php:214
-#: ../../include/functions_visual_map_editor.php:558
-#: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:652
-#: ../../include/lib/Dashboard/Widgets/custom_graph.php:315
-#: ../../operation/agentes/graphs.php:236
-#: ../../operation/agentes/graphs.php:243
-#: ../../operation/agentes/graphs.php:409
-#: ../../operation/agentes/graphs.php:428
-#: ../../operation/reporting/graph_viewer.php:364
-msgid "Area"
-msgstr ""
-
-#: ../../godmode/setup/setup_visuals.php:906
-#: ../../godmode/setup/setup_visuals.php:923
-#: ../../godmode/reporting/create_container.php:359
-#: ../../godmode/reporting/visual_console_builder.elements.php:333
-#: ../../godmode/reporting/graph_builder.main.php:216
-#: ../../include/functions_visual_map_editor.php:72
-#: ../../include/functions_visual_map_editor.php:557
-#: ../../include/functions_visual_map_editor.php:1399
-#: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:651
-#: ../../include/lib/Dashboard/Widgets/custom_graph.php:317
-#: ../../operation/visual_console/view.php:361
-#: ../../operation/agentes/graphs.php:238
-#: ../../operation/agentes/graphs.php:244
-#: ../../operation/agentes/graphs.php:417
-#: ../../operation/agentes/graphs.php:432
-#: ../../operation/reporting/graph_viewer.php:366
-msgid "Line"
-msgstr ""
-
-#: ../../godmode/setup/setup_visuals.php:915
-msgid "Type of interface charts"
-msgstr ""
-
-#: ../../godmode/setup/setup_visuals.php:932
-#: ../../godmode/reporting/visual_console_builder.elements.php:212
-#: ../../godmode/reporting/visual_console_builder.wizard.php:285
-#: ../../include/functions_visual_map_editor.php:686
-#: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:458
-msgid "Percentile"
-msgstr ""
-
-#: ../../godmode/setup/setup_visuals.php:943
-msgid "Graph TIP view:"
-msgstr ""
-
-#: ../../godmode/setup/setup_visuals.php:948
-msgid "On Boolean graphs"
-msgstr ""
-
-#: ../../godmode/setup/setup_visuals.php:964
-msgid "Graph mode"
-msgstr ""
-
-#: ../../godmode/setup/setup_visuals.php:967
-msgid "Show only average by default"
-msgstr ""
-
-#: ../../godmode/setup/setup_visuals.php:968
-msgid "Show MAX/AVG/MIN by default"
-msgstr ""
-
-#: ../../godmode/setup/setup_visuals.php:983
-msgid "Zoom graphs:"
-msgstr ""
-
-#: ../../godmode/setup/setup_visuals.php:1017
-msgid "Legacy Visual Console View"
-msgstr ""
-
-#: ../../godmode/setup/setup_visuals.php:1029
-#: ../../godmode/setup/setup_visuals.php:1030
-#: ../../godmode/setup/setup_visuals.php:1031
-#: ../../godmode/setup/setup_visuals.php:1032
-#: ../../godmode/setup/setup_visuals.php:1340
-#: ../../include/functions_visual_map_editor.php:1225
-#: ../../include/functions_visual_map_editor.php:1226
-#: ../../include/functions_visual_map_editor.php:1227
-#: ../../include/functions_visual_map_editor.php:1228
-#: ../../include/functions.php:503 ../../include/functions.php:633
-#: ../../include/functions_html.php:2003
-msgid "minutes"
-msgstr ""
-
-#: ../../godmode/setup/setup_visuals.php:1033
-#: ../../include/functions_visual_map_editor.php:1229
-msgid "hour"
-msgstr ""
-
-#: ../../godmode/setup/setup_visuals.php:1035
-msgid "Default cache expiration"
-msgstr ""
-
-#: ../../godmode/setup/setup_visuals.php:1040
-#: ../../include/functions_visual_map_editor.php:1255
-msgid "No cache"
-msgstr ""
-
-#: ../../godmode/setup/setup_visuals.php:1052
-#: ../../include/functions_config.php:1108
-msgid "Default interval for refresh on Visual Console"
-msgstr ""
-
-#: ../../godmode/setup/setup_visuals.php:1056
-msgid "Classic view"
-msgstr ""
-
-#: ../../godmode/setup/setup_visuals.php:1057
-msgid "View of favorites"
-msgstr ""
-
-#: ../../godmode/setup/setup_visuals.php:1058
-msgid "Type of view of visual consoles"
-msgstr ""
-
-#: ../../godmode/setup/setup_visuals.php:1062
-msgid "Number of favorite visual consoles to show in the menu"
-msgstr ""
-
-#: ../../godmode/setup/setup_visuals.php:1066
-#: ../../include/functions_config.php:1120
-msgid "Default line thickness for the Visual Console"
-msgstr ""
-
-#: ../../godmode/setup/setup_visuals.php:1080
-msgid "Number of favorite services to show in the menu"
-msgstr ""
-
-#: ../../godmode/setup/setup_visuals.php:1094
-msgid "Show report info with description"
-msgstr ""
-
-#: ../../godmode/setup/setup_visuals.php:1103
-msgid "Custom report front page"
-msgstr ""
-
-#: ../../godmode/setup/setup_visuals.php:1113
-#: ../../include/functions_config.php:1377
-msgid "PDF font size (px)"
-msgstr ""
-
-#: ../../godmode/setup/setup_visuals.php:1118
-#: ../../include/functions_config.php:1373
-msgid "HTML font size for SLA (em)"
-msgstr ""
-
-#: ../../godmode/setup/setup_visuals.php:1123
-msgid "Graph image height for HTML reports"
-msgstr ""
-
-#: ../../godmode/setup/setup_visuals.php:1132
-msgid "Interval description"
-msgstr ""
-
-#: ../../godmode/setup/setup_visuals.php:1146
-#: ../../godmode/setup/setup_visuals.php:1161
-#: ../../godmode/setup/setup_visuals.php:1169
-#: ../../godmode/setup/setup_visuals.php:1189
-#: ../../godmode/setup/setup_visuals.php:1205
-#: ../../include/functions_config.php:1381
-#: ../../include/functions_config.php:1385
-#: ../../include/functions_config.php:1389
-#: ../../include/functions_config.php:1393
-#: ../../include/functions_config.php:1397
-#: ../../include/functions_config.php:1401
-msgid "Custom report front"
-msgstr ""
-
-#: ../../godmode/setup/setup_visuals.php:1146
-#: ../../include/functions_config.php:988
-#: ../../include/functions_config.php:1389
-msgid "Custom logo"
-msgstr ""
-
-#: ../../godmode/setup/setup_visuals.php:1147
-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:1169
-#: ../../include/functions_config.php:1393
-msgid "Header"
-msgstr ""
-
-#: ../../godmode/setup/setup_visuals.php:1189
-#: ../../include/functions_config.php:1397
-msgid "First page"
-msgstr ""
-
-#: ../../godmode/setup/setup_visuals.php:1205
-#: ../../include/functions_config.php:1401
-msgid "Footer"
-msgstr ""
-
-#: ../../godmode/setup/setup_visuals.php:1233
-#: ../../include/functions_config.php:1192
-msgid "Networkmap max width"
-msgstr ""
-
-#: ../../godmode/setup/setup_visuals.php:1244
-msgid "Show only the group name"
-msgstr ""
-
-#: ../../godmode/setup/setup_visuals.php:1253
-#: ../../include/functions_config.php:891
-msgid "Date format string"
-msgstr ""
-
-#: ../../godmode/setup/setup_visuals.php:1254
-msgid "Example"
-msgstr ""
-
-#: ../../godmode/setup/setup_visuals.php:1272
-msgid "Timestamp, time comparison, or compact mode"
-msgstr ""
-
-#: ../../godmode/setup/setup_visuals.php:1274
-msgid "Comparation in rollover"
-msgstr ""
-
-#: ../../godmode/setup/setup_visuals.php:1275
-msgid "Timestamp in rollover"
-msgstr ""
-
-#: ../../godmode/setup/setup_visuals.php:1276
-msgid "Compact mode"
-msgstr ""
-
-#: ../../godmode/setup/setup_visuals.php:1284
-msgid "Custom values post process"
-msgstr ""
-
-#: ../../godmode/setup/setup_visuals.php:1305
-#: ../../godmode/setup/setup_visuals.php:1373
-msgid "Delete custom values"
-msgstr ""
-
-#: ../../godmode/setup/setup_visuals.php:1337
-msgid "Interval values"
-msgstr ""
-
-#: ../../godmode/setup/setup_visuals.php:1341 ../../include/functions.php:504
-#: ../../include/functions.php:634 ../../include/functions_snmp.php:402
-#: ../../include/functions_html.php:2004
-msgid "hours"
-msgstr ""
-
-#: ../../godmode/setup/setup_visuals.php:1343 ../../include/functions.php:501
-#: ../../include/functions.php:631 ../../include/functions_html.php:2007
-msgid "months"
-msgstr ""
-
-#: ../../godmode/setup/setup_visuals.php:1344 ../../include/functions.php:502
-#: ../../include/functions.php:632 ../../include/functions_html.php:2008
-msgid "years"
-msgstr ""
-
-#: ../../godmode/setup/setup_visuals.php:1354
-#: ../../include/functions_config.php:1341
-msgid "Delete interval"
-msgstr ""
-
-#: ../../godmode/setup/setup_visuals.php:1365
-msgid "Module units"
-msgstr ""
-
-#: ../../godmode/setup/setup_visuals.php:1397
-#: ../../include/functions_config.php:1405
-msgid "CSV divider"
-msgstr ""
-
-#: ../../godmode/setup/setup_visuals.php:1443
-#: ../../include/functions_config.php:1409
-msgid "CSV decimal separator"
-msgstr ""
-
-#: ../../godmode/setup/setup_visuals.php:1448
-msgid "Data multiplier to use in graphs/data"
-msgstr ""
-
-#: ../../godmode/setup/setup_visuals.php:1450
-msgid "Use 1024 when module unit are bytes"
-msgstr ""
-
-#: ../../godmode/setup/setup_visuals.php:1451
-msgid "Use always 1000"
-msgstr ""
-
-#: ../../godmode/setup/setup_visuals.php:1452
-msgid "Use always 1024"
-msgstr ""
-
-#: ../../godmode/setup/setup_visuals.php:1481
-msgid "Behaviour configuration"
-msgstr ""
-
-#: ../../godmode/setup/setup_visuals.php:1486
-msgid "GIS configuration"
-msgstr ""
-
-#: ../../godmode/setup/setup_visuals.php:1491
-msgid "Style configuration"
-msgstr ""
-
-#: ../../godmode/setup/setup_visuals.php:1496
-msgid "Charts configuration"
-msgstr ""
-
-#: ../../godmode/setup/setup_visuals.php:1501
-msgid "Font and Text configuration"
-msgstr ""
-
-#: ../../godmode/setup/setup_visuals.php:1506
-msgid "Visual consoles configuration"
-msgstr ""
-
-#: ../../godmode/setup/setup_visuals.php:1511
-msgid "Reports configuration "
-msgstr ""
-
-#: ../../godmode/setup/setup_visuals.php:1516
-msgid "Services configuration"
-msgstr ""
-
-#: ../../godmode/setup/setup_visuals.php:1521
-msgid "Other configuration"
-msgstr ""
-
-#: ../../godmode/setup/setup_visuals.php:1749
-msgid "Logo preview"
-msgstr ""
-
-#: ../../godmode/setup/setup_visuals.php:1779
-msgid "Splash Preview"
-msgstr ""
-
-#: ../../godmode/setup/setup_visuals.php:1798
-msgid "Mobile console logo preview"
-msgstr ""
-
-#: ../../godmode/setup/setup_visuals.php:1803
-msgid "Background preview"
-msgstr ""
-
-#: ../../godmode/setup/setup_visuals.php:1833
-msgid "Gis icons preview"
-msgstr ""
-
-#: ../../godmode/setup/setup_visuals.php:1899
-msgid "Status set preview"
-msgstr ""
-
-#: ../../godmode/setup/setup_general.php:77
-#: ../../include/functions_register.php:122
-msgid "Language code"
-msgstr ""
-
-#: ../../godmode/setup/setup_general.php:88
-#: ../../include/functions_config.php:172
-msgid "Remote config directory"
-msgstr ""
-
-#: ../../godmode/setup/setup_general.php:98
-msgid "Phantomjs bin directory"
-msgstr ""
-
-#: ../../godmode/setup/setup_general.php:110
-#: ../../include/functions_config.php:180
-msgid "Auto login (hash) password"
-msgstr ""
-
-#: ../../godmode/setup/setup_general.php:124
-#: ../../include/functions_config.php:184
-msgid "Time source"
-msgstr ""
-
-#: ../../godmode/setup/setup_general.php:125
-#: ../../mobile/operation/events.php:127
-#: ../../include/functions_reporting_html.php:1115
-#: ../../include/functions_reporting_html.php:2276
-#: ../../include/functions.php:1234 ../../include/functions_graph.php:2855
-#: ../../include/functions_graph.php:3621
-#: ../../include/functions_graph.php:3623
-#: ../../include/functions_reporting.php:10201
-#: ../../include/lib/Dashboard/Widgets/top_n_events_by_module.php:437
-#: ../../include/lib/Dashboard/Widgets/top_n_events_by_group.php:433
-#: ../../include/functions_events.php:2649
-#: ../../include/functions_events.php:3236
-#: ../../operation/events/events.php:2248
-msgid "System"
-msgstr ""
-
-#: ../../godmode/setup/setup_general.php:126
-msgid "Database"
-msgstr ""
-
-#: ../../godmode/setup/setup_general.php:137
-#: ../../include/functions_config.php:188
-msgid "Automatic check for updates"
-msgstr ""
-
-#: ../../godmode/setup/setup_general.php:145
-msgid "Enforce https Information"
-msgstr ""
-
-#: ../../godmode/setup/setup_general.php:146
-msgid "If SSL is not properly configured you will lose access to "
-msgstr ""
-
-#: ../../godmode/setup/setup_general.php:146
-#: ../../godmode/setup/setup_general.php:340
-msgid " Console"
-msgstr ""
-
-#: ../../godmode/setup/setup_general.php:149
-#: ../../include/functions_config.php:196
-msgid "Enforce https"
-msgstr ""
-
-#: ../../godmode/setup/setup_general.php:160
-msgid "Use cert of SSL"
-msgstr ""
-
-#: ../../godmode/setup/setup_general.php:173
-msgid "Path of SSL Cert."
-msgstr ""
-
-#: ../../godmode/setup/setup_general.php:183
-#: ../../include/functions_config.php:207
-msgid "Attachment store"
-msgstr ""
-
-#: ../../godmode/setup/setup_general.php:193
-#: ../../include/functions_config.php:220
-msgid "IP list with API access"
-msgstr ""
-
-#: ../../godmode/setup/setup_general.php:212
-#: ../../include/functions_config.php:224
-msgid "API password"
-msgstr ""
-
-#: ../../godmode/setup/setup_general.php:223
-#: ../../include/functions_config.php:228
-msgid "Enable GIS features"
-msgstr ""
-
-#: ../../godmode/setup/setup_general.php:231
-#: ../../include/functions_config.php:244
-msgid "Enable Netflow"
-msgstr ""
-
-#: ../../godmode/setup/setup_general.php:249
-#: ../../include/functions_visual_map_editor.php:290
-#: ../../include/rest-api/models/VisualConsole/Items/Clock.php:271
-#: ../../include/functions_register.php:134
-msgid "Africa"
-msgstr ""
-
-#: ../../godmode/setup/setup_general.php:250
-#: ../../include/functions_visual_map_editor.php:291
-#: ../../include/rest-api/models/VisualConsole/Items/Clock.php:272
-#: ../../include/functions_register.php:135
-msgid "America"
-msgstr ""
-
-#: ../../godmode/setup/setup_general.php:251
-#: ../../include/functions_visual_map_editor.php:292
-#: ../../include/rest-api/models/VisualConsole/Items/Clock.php:273
-#: ../../include/functions_register.php:136
-msgid "Antarctica"
-msgstr ""
-
-#: ../../godmode/setup/setup_general.php:252
-#: ../../include/functions_visual_map_editor.php:293
-#: ../../include/rest-api/models/VisualConsole/Items/Clock.php:274
-#: ../../include/functions_register.php:137
-msgid "Arctic"
-msgstr ""
-
-#: ../../godmode/setup/setup_general.php:253
-#: ../../include/functions_visual_map_editor.php:294
-#: ../../include/rest-api/models/VisualConsole/Items/Clock.php:275
-#: ../../include/functions_register.php:138
-msgid "Asia"
-msgstr ""
-
-#: ../../godmode/setup/setup_general.php:254
-#: ../../include/functions_visual_map_editor.php:295
-#: ../../include/rest-api/models/VisualConsole/Items/Clock.php:276
-#: ../../include/functions_register.php:139
-msgid "Atlantic"
-msgstr ""
-
-#: ../../godmode/setup/setup_general.php:255
-#: ../../include/functions_visual_map_editor.php:296
-#: ../../include/rest-api/models/VisualConsole/Items/Clock.php:277
-#: ../../include/functions_register.php:140
-msgid "Australia"
-msgstr ""
-
-#: ../../godmode/setup/setup_general.php:256
-#: ../../include/functions_visual_map_editor.php:297
-#: ../../include/rest-api/models/VisualConsole/Items/Clock.php:278
-#: ../../include/functions_register.php:141
-msgid "Europe"
-msgstr ""
-
-#: ../../godmode/setup/setup_general.php:257
-#: ../../include/functions_visual_map_editor.php:298
-#: ../../include/rest-api/models/VisualConsole/Items/Clock.php:279
-#: ../../include/functions_register.php:142
-msgid "Indian"
-msgstr ""
-
-#: ../../godmode/setup/setup_general.php:258
-#: ../../include/functions_visual_map_editor.php:299
-#: ../../include/rest-api/models/VisualConsole/Items/Clock.php:280
-#: ../../include/functions_register.php:143
-msgid "Pacific"
-msgstr ""
-
-#: ../../godmode/setup/setup_general.php:259
-#: ../../include/functions_visual_map_editor.php:300
-#: ../../include/rest-api/models/VisualConsole/Items/Clock.php:281
-#: ../../include/functions_register.php:144
-msgid "UTC"
-msgstr ""
-
-#: ../../godmode/setup/setup_general.php:279
-#: ../../include/functions_register.php:164
-#: ../../include/functions_config.php:250
-msgid "Timezone setup"
-msgstr ""
-
-#: ../../godmode/setup/setup_general.php:296
-msgid "Change timezone"
-msgstr ""
-
-#: ../../godmode/setup/setup_general.php:319
-#: ../../include/functions_config.php:282
-msgid "Public URL"
-msgstr ""
-
-#: ../../godmode/setup/setup_general.php:329
-#: ../../include/functions_config.php:286
-msgid "Force use Public URL"
-msgstr ""
-
-#: ../../godmode/setup/setup_general.php:338
-msgid "Enforce public URL usage information"
-msgstr ""
-
-#: ../../godmode/setup/setup_general.php:340
-msgid "If public URL is not properly configured you will lose access to "
-msgstr ""
-
-#: ../../godmode/setup/setup_general.php:343
-#: ../../include/functions_config.php:290
-msgid "Public URL host exclusions"
-msgstr ""
-
-#: ../../godmode/setup/setup_general.php:353
-#: ../../include/functions_config.php:294
-msgid "Referer security"
-msgstr ""
-
-#: ../../godmode/setup/setup_general.php:361
-#: ../../include/functions_config.php:298
-msgid "Event storm protection"
-msgstr ""
-
-#: ../../godmode/setup/setup_general.php:370
-#: ../../include/functions_config.php:302
-msgid "Command Snapshot"
-msgstr ""
-
-#: ../../godmode/setup/setup_general.php:378
-msgid "Change remote config encoding"
-msgstr ""
-
-#: ../../godmode/setup/setup_general.php:386
-#: ../../include/functions_config.php:310
-msgid "Server logs directory"
-msgstr ""
-
-#: ../../godmode/setup/setup_general.php:396
-#: ../../include/functions_config.php:314
-msgid "Log size limit in system logs viewer extension"
-msgstr ""
-
-#: ../../godmode/setup/setup_general.php:407
-msgid "Full mode"
-msgstr ""
-
-#: ../../godmode/setup/setup_general.php:408
-msgid "On demand"
-msgstr ""
-
-#: ../../godmode/setup/setup_general.php:409
-msgid "Expert"
-msgstr ""
-
-#: ../../godmode/setup/setup_general.php:411
-#: ../../include/functions_config.php:318
-msgid "Tutorial mode"
-msgstr ""
-
-#: ../../godmode/setup/setup_general.php:425
-#: ../../include/functions_config.php:322
-msgid "Allow create scheduled downtimes in the past"
-msgstr ""
-
-#: ../../godmode/setup/setup_general.php:433
-msgid "Limit for bulk operations"
-msgstr ""
-
-#: ../../godmode/setup/setup_general.php:443
-msgid "Include agents manually disabled"
-msgstr ""
-
-#: ../../godmode/setup/setup_general.php:451
-msgid "Set alias as name by default in agent creation"
-msgstr ""
-
-#: ../../godmode/setup/setup_general.php:467
-msgid "Enable console log"
-msgstr ""
-
-#: ../../godmode/setup/setup_general.php:468
-#: ../../godmode/setup/setup_general.php:479
-msgid "Log location"
-msgstr ""
-
-#: ../../godmode/setup/setup_general.php:478
-msgid "Enable audit log"
-msgstr ""
-
-#: ../../godmode/setup/setup_general.php:489
-msgid "Module custom ID readonly"
-msgstr ""
-
-#: ../../godmode/setup/setup_general.php:490
-msgid "Useful for integrations"
-msgstr ""
-
-#: ../../godmode/setup/setup_general.php:503
-msgid "General options"
-msgstr ""
-
-#: ../../godmode/setup/setup_general.php:518
-msgid "Mail configuration"
-msgstr ""
-
-#: ../../godmode/setup/setup_general.php:522
-msgid ""
-"Please notice that some providers like Gmail or Office365 need to setup/"
-"enable manually external connections using SMTP and you need to use STARTTLS "
-"on port 587.\n"
-"\n"
-"    If you have manual settings in your pandora_server.conf, please note "
-"these settings will ignore this console setup."
-msgstr ""
-
-#: ../../godmode/setup/setup_general.php:528
-msgid "From address"
-msgstr ""
-
-#: ../../godmode/setup/setup_general.php:538
-#: ../../include/functions_config.php:366
-msgid "From name"
-msgstr ""
-
-#: ../../godmode/setup/setup_general.php:548
-msgid "SMTP Server"
-msgstr ""
-
-#: ../../godmode/setup/setup_general.php:558
-msgid "SMTP Port"
-msgstr ""
-
-#: ../../godmode/setup/setup_general.php:568
-#: ../../include/functions_config.php:374
-msgid "Encryption"
-msgstr ""
-
-#: ../../godmode/setup/setup_general.php:574
-#: ../../godmode/reporting/create_container.php:294
-#: ../../godmode/reporting/create_container.php:310
-#: ../../include/ajax/events.php:919 ../../include/ajax/graph.ajax.php:145
-#: ../../operation/events/events_list.php:1609
-#: ../../operation/events/events_list.php:1700
-msgid "none"
-msgstr ""
-
-#: ../../godmode/setup/setup_general.php:579
-#: ../../include/functions_config.php:378
-msgid "Email user"
-msgstr ""
-
-#: ../../godmode/setup/setup_general.php:589
-#: ../../include/functions_config.php:382
-msgid "Email password"
-msgstr ""
-
-#: ../../godmode/setup/setup_general.php:608
-msgid "Email test"
-msgstr ""
-
-#: ../../godmode/setup/setup_general.php:649
-#: ../../operation/agentes/ver_agente.php:1143
-msgid "Address"
-msgstr ""
-
-#: ../../godmode/setup/setup_general.php:660 ../../general/header.php:809
-msgid "Send"
-msgstr ""
-
-#: ../../godmode/setup/setup_general.php:670
-msgid "Check mail configuration"
-msgstr ""
-
-#: ../../godmode/setup/performance.php:178
-msgid "Pandora_db running in active database."
-msgstr ""
-
-#: ../../godmode/setup/performance.php:179
-#: ../../godmode/setup/performance.php:235
-msgid "Executed:"
-msgstr ""
-
-#: ../../godmode/setup/performance.php:185
-#: ../../godmode/setup/performance.php:240 ../../general/logon_ok.php:191
-msgid "ago"
-msgstr ""
-
-#: ../../godmode/setup/performance.php:234
-msgid "Pandora_db running in historical database."
-msgstr ""
-
-#: ../../godmode/setup/performance.php:242
-msgid "not executed"
-msgstr ""
-
-#: ../../godmode/setup/performance.php:257
-#: ../../godmode/setup/performance.php:444
-#: ../../include/functions_config.php:769
-msgid "Max. days before delete events"
-msgstr ""
-
-#: ../../godmode/setup/performance.php:268
-#: ../../include/functions_config.php:774
-msgid "Max. days before delete traps"
-msgstr ""
-
-#: ../../godmode/setup/performance.php:278
-#: ../../include/functions_config.php:782
-msgid "Max. days before delete audit events"
-msgstr ""
-
-#: ../../godmode/setup/performance.php:288
-#: ../../godmode/setup/performance.php:454
-#: ../../include/functions_config.php:778
-msgid "Max. days before delete string data"
-msgstr ""
-
-#: ../../godmode/setup/performance.php:298
-#: ../../include/functions_config.php:786
-msgid "Max. days before delete GIS data"
-msgstr ""
-
-#: ../../godmode/setup/performance.php:308
-#: ../../godmode/setup/performance.php:414
-#: ../../include/functions_config.php:790
-msgid "Max. days before purge"
-msgstr ""
-
-#: ../../godmode/setup/performance.php:318
-#: ../../godmode/setup/performance.php:424
-#: ../../include/functions_config.php:798
-msgid "Max. days before compact data"
-msgstr ""
-
-#: ../../godmode/setup/performance.php:328
-#: ../../include/functions_config.php:794
-msgid "Max. days before delete unknown modules"
-msgstr ""
-
-#: ../../godmode/setup/performance.php:338
-msgid "Max. days before delete autodisabled agents"
-msgstr ""
-
-#: ../../godmode/setup/performance.php:348
-#: ../../include/functions_config.php:846
-msgid "Retention period of past special days"
-msgstr ""
-
-#: ../../godmode/setup/performance.php:358
-#: ../../include/functions_config.php:850
-msgid "Max. macro data fields"
-msgstr ""
-
-#: ../../godmode/setup/performance.php:372
-#: ../../include/functions_config.php:855
-msgid "Max. days before delete inventory data"
-msgstr ""
-
-#: ../../godmode/setup/performance.php:434
-#: ../../godmode/setup/performance.php:515
-#: ../../include/functions_config.php:810
-msgid "Compact interpolation in hours (1 Fine-20 bad)"
-msgstr ""
-
-#: ../../godmode/setup/performance.php:472
-#: ../../include/functions_config.php:860
-msgid "Max. days before delete old messages"
-msgstr ""
-
-#: ../../godmode/setup/performance.php:485
-#: ../../include/functions_config.php:864
-msgid "Max. days before delete old network matrix data"
-msgstr ""
-
-#: ../../godmode/setup/performance.php:505
-msgid "Item limit for realtime reports"
-msgstr ""
-
-#: ../../godmode/setup/performance.php:526
-#: ../../godmode/reporting/create_container.php:346
-#: ../../include/functions.php:2683 ../../include/functions.php:3350
-#: ../../include/ajax/module.php:200 ../../include/ajax/graph.ajax.php:146
-#: ../../operation/gis_maps/render_view.php:153
-msgid "1 hour"
-msgstr ""
-
-#: ../../godmode/setup/performance.php:527 ../../include/ajax/module.php:202
-msgid "12 hours"
-msgstr ""
-
-#: ../../godmode/setup/performance.php:528
-msgid "Last day"
-msgstr ""
-
-#: ../../godmode/setup/performance.php:529
-msgid "2 days"
-msgstr ""
-
-#: ../../godmode/setup/performance.php:530
-msgid "10 days"
-msgstr ""
-
-#: ../../godmode/setup/performance.php:531
-msgid "Last week"
-msgstr ""
-
-#: ../../godmode/setup/performance.php:532
-msgid "2 weeks"
-msgstr ""
-
-#: ../../godmode/setup/performance.php:533
-msgid "Last month"
-msgstr ""
-
-#: ../../godmode/setup/performance.php:535
-#: ../../include/functions_config.php:814
-msgid "Default hours for event view"
-msgstr ""
-
-#: ../../godmode/setup/performance.php:545
-#: ../../include/functions_config.php:818
-msgid "Use realtime statistics"
-msgstr ""
-
-#: ../../godmode/setup/performance.php:553
-#: ../../include/functions_config.php:822
-msgid "Batch statistics period (secs)"
-msgstr ""
-
-#: ../../godmode/setup/performance.php:563
-#: ../../include/functions_config.php:826
-msgid "Use agent access graph"
-msgstr ""
-
-#: ../../godmode/setup/performance.php:566
-#: ../../include/functions_config.php:830
-msgid "Max. recommended number of files in attachment directory"
-msgstr ""
-
-#: ../../godmode/setup/performance.php:576
-#: ../../include/functions_config.php:834
-msgid "Delete not init modules"
-msgstr ""
-
-#: ../../godmode/setup/performance.php:579
-msgid "Big Operation Step to purge old data"
-msgstr ""
-
-#: ../../godmode/setup/performance.php:589
-#: ../../include/functions_config.php:842
-msgid "Small Operation Step to purge old data"
-msgstr ""
-
-#: ../../godmode/setup/performance.php:599
-#: ../../include/functions_config.php:868
-msgid "Graph container - Max. Items"
-msgstr ""
-
-#: ../../godmode/setup/performance.php:609
-msgid "Events response max. execution"
-msgstr ""
-
-#: ../../godmode/setup/performance.php:619
-#: ../../include/functions_config.php:876
-msgid "Row limit in csv log"
-msgstr ""
-
-#: ../../godmode/setup/performance.php:629
-msgid "SNMP walk binary"
-msgstr ""
-
-#: ../../godmode/setup/performance.php:640
-msgid ""
-"SNMP bulk walk is not able to request V1 SNMP, this option will be used "
-"instead (by default snmpwalk, slower)."
-msgstr ""
-
-#: ../../godmode/setup/performance.php:643
-msgid "SNMP walk binary (fallback)"
-msgstr ""
-
-#: ../../godmode/setup/performance.php:656
-msgid "Database maintenance status"
-msgstr ""
-
-#: ../../godmode/setup/performance.php:661
-msgid "Database maintenance options"
-msgstr ""
-
-#: ../../godmode/setup/performance.php:667
-msgid "Historical database maintenance options"
-msgstr ""
-
-#: ../../godmode/setup/performance.php:673
-#: ../../include/functions_visual_map.php:2866
-#: ../../include/functions_netflow.php:1853
-#: ../../operation/network/network_report.php:324
-msgid "Others"
-msgstr ""
-
-#: ../../godmode/setup/file_manager.php:63 ../../godmode/servers/plugin.php:235
-#: ../../include/functions_filemanager.php:617
-#, php-format
-msgid "Index of %s"
-msgstr ""
-
-#: ../../godmode/reporting/visual_console_builder.data.php:94
-msgid "Create visual console"
-msgstr ""
-
-#: ../../godmode/reporting/visual_console_builder.data.php:106
-msgid ""
-"Use [ or ( as first character, for example '[*] Map name', to render this "
-"map name in main menu"
-msgstr ""
-
-#: ../../godmode/reporting/visual_console_builder.data.php:169
-#: ../../godmode/reporting/visual_console_builder.elements.php:151
-#: ../../include/functions_visual_map_editor.php:55
-#: ../../include/functions_visual_map_editor.php:632
-#: ../../include/lib/Dashboard/Widget.php:556
-msgid "Background"
-msgstr ""
-
-#: ../../godmode/reporting/visual_console_builder.data.php:179
-msgid "Background image"
-msgstr ""
-
-#: ../../godmode/reporting/visual_console_builder.data.php:181
-#: ../../include/functions_visual_map_editor.php:347
-#: ../../include/rest-api/models/VisualConsole/Items/BarsGraph.php:469
-#: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:524
-msgid "Background color"
-msgstr ""
-
-#: ../../godmode/reporting/visual_console_builder.data.php:211
-msgid "Layout size"
-msgstr ""
-
-#: ../../godmode/reporting/visual_console_builder.data.php:214
-msgid "Set custom size"
-msgstr ""
-
-#: ../../godmode/reporting/visual_console_builder.data.php:220
-msgid "Get default image size"
-msgstr ""
-
-#: ../../godmode/reporting/visual_console_builder.data.php:222
-msgid "Favourite visual console"
-msgstr ""
-
-#: ../../godmode/reporting/visual_console_builder.data.php:225
-msgid "Auto adjust to screen in fullscreen"
-msgstr ""
-
-#: ../../godmode/reporting/visual_console_builder.php:210
-msgid "This file isn't image"
-msgstr ""
-
-#: ../../godmode/reporting/visual_console_builder.php:213
-msgid "This file isn't image."
-msgstr ""
-
-#: ../../godmode/reporting/visual_console_builder.php:219
-#: ../../godmode/reporting/visual_console_builder.php:222
-msgid "File already are exists."
-msgstr ""
-
-#: ../../godmode/reporting/visual_console_builder.php:230
-#: ../../godmode/reporting/visual_console_builder.php:233
-msgid "The file have not image extension."
-msgstr ""
-
-#: ../../godmode/reporting/visual_console_builder.php:245
-#: ../../godmode/reporting/visual_console_builder.php:248
-#: ../../godmode/reporting/visual_console_builder.php:258
-#: ../../godmode/reporting/visual_console_builder.php:264
-msgid "Problems with move file to target."
-msgstr ""
-
-#: ../../godmode/reporting/visual_console_builder.php:295
-msgid "Successfully update."
-msgstr ""
-
-#: ../../godmode/reporting/visual_console_builder.php:311
-msgid "Could not be update."
-msgstr ""
-
-#: ../../godmode/reporting/visual_console_builder.php:328
-msgid "Successfully created."
-msgstr ""
-
-#: ../../godmode/reporting/visual_console_builder.php:344
-msgid "Could not be created."
-msgstr ""
-
-#: ../../godmode/reporting/visual_console_builder.php:392
-msgid "Successfully multiple delete."
-msgstr ""
-
-#: ../../godmode/reporting/visual_console_builder.php:393
-msgid "Unsuccessful multiple delete."
-msgstr ""
-
-#: ../../godmode/reporting/visual_console_builder.php:513
-msgid "Successfully delete."
-msgstr ""
-
-#: ../../godmode/reporting/visual_console_builder.php:804
-#: ../../operation/visual_console/view.php:122
-#: ../../operation/visual_console/legacy_view.php:121
-msgid "Visual consoles list"
-msgstr ""
-
-#: ../../godmode/reporting/visual_console_builder.php:808
-#: ../../operation/visual_console/view.php:150
-#: ../../operation/visual_console/legacy_view.php:137
-#: ../../operation/gis_maps/render_view.php:142
-msgid "Show link to public Visual Console"
-msgstr ""
-
-#: ../../godmode/reporting/visual_console_builder.php:812
-#: ../../godmode/reporting/graph_builder.php:299
-#: ../../godmode/reporting/reporting_builder.main.php:73
-#: ../../godmode/reporting/reporting_builder.php:3490
-#: ../../operation/visual_console/view.php:160
-#: ../../operation/visual_console/legacy_view.php:147
-#: ../../operation/reporting/reporting_viewer.php:136
-#: ../../operation/reporting/graph_viewer.php:187
-msgid "Main data"
-msgstr ""
-
-#: ../../godmode/reporting/visual_console_builder.php:816
-#: ../../operation/visual_console/view.php:168
-#: ../../operation/visual_console/legacy_view.php:155
-msgid "List elements"
-msgstr ""
-
-#: ../../godmode/reporting/visual_console_builder.php:822
-#: ../../operation/visual_console/view.php:178
-#: ../../operation/visual_console/legacy_view.php:165
-msgid "Services wizard"
-msgstr ""
-
-#: ../../godmode/reporting/visual_console_builder.php:828
-#: ../../godmode/reporting/visual_console_builder.wizard.php:518
-#: ../../operation/visual_console/view.php:188
-#: ../../operation/visual_console/legacy_view.php:175
-msgid "Wizard"
-msgstr ""
-
-#: ../../godmode/reporting/visual_console_builder.php:833
-#: ../../operation/visual_console/legacy_view.php:183
-msgid "Builder"
-msgstr ""
-
-#: ../../godmode/reporting/visual_console_builder.php:847
-msgid "New visual console"
-msgstr ""
-
-#: ../../godmode/reporting/reporting_builder.list_items.php:222
-#: ../../godmode/events/events.php:90 ../../godmode/events/events.php:110
-msgid "Filters"
-msgstr ""
-
-#: ../../godmode/reporting/reporting_builder.list_items.php:378
-#: ../../godmode/reporting/reporting_builder.list_items.php:397
-#: ../../godmode/reporting/reporting_builder.list_items.php:416
-msgid "Ascendent"
-msgstr ""
-
-#: ../../godmode/reporting/reporting_builder.list_items.php:385
-#: ../../godmode/reporting/reporting_builder.list_items.php:404
-#: ../../godmode/reporting/reporting_builder.list_items.php:420
-msgid "Descent"
-msgstr ""
-
-#: ../../godmode/reporting/reporting_builder.list_items.php:424
-#: ../../godmode/reporting/create_container.php:364
-#: ../../godmode/reporting/create_container.php:473
-#: ../../godmode/reporting/create_container.php:527
-#: ../../godmode/reporting/reporting_builder.item_editor.php:1195
-msgid "Time lapse"
-msgstr ""
-
-#: ../../godmode/reporting/reporting_builder.list_items.php:425
-msgid "Name or Description"
-msgstr ""
-
-#: ../../godmode/reporting/reporting_builder.list_items.php:440
-#: ../../godmode/reporting/reporting_builder.list_items.php:740
-#: ../../godmode/reporting/graph_builder.graph_editor.php:217
-#: ../../godmode/reporting/graph_builder.graph_editor.php:318
-msgid "Sort"
-msgstr ""
-
-#: ../../godmode/reporting/reporting_builder.list_items.php:445
-#: ../../include/functions_graph.php:1529
-msgid "No items."
-msgstr ""
-
-#: ../../godmode/reporting/reporting_builder.list_items.php:706
-#: ../../godmode/reporting/reporting_builder.list_items.php:710
-#: ../../godmode/reporting/graph_builder.graph_editor.php:284
-#: ../../godmode/reporting/graph_builder.graph_editor.php:288
-msgid "Sort items"
-msgstr ""
-
-#: ../../godmode/reporting/reporting_builder.list_items.php:713
-msgid "Sort selected items from position: "
-msgstr ""
-
-#: ../../godmode/reporting/reporting_builder.list_items.php:716
-msgid "Move before to"
-msgstr ""
-
-#: ../../godmode/reporting/reporting_builder.list_items.php:717
-msgid "Move after to"
-msgstr ""
-
-#: ../../godmode/reporting/reporting_builder.list_items.php:757
-#: ../../godmode/reporting/reporting_builder.list_items.php:761
-msgid "Delete items"
-msgstr ""
-
-#: ../../godmode/reporting/reporting_builder.list_items.php:764
-msgid "Delete selected items from position: "
-msgstr ""
-
-#: ../../godmode/reporting/reporting_builder.list_items.php:767
-msgid "Delete above to"
-msgstr ""
-
-#: ../../godmode/reporting/reporting_builder.list_items.php:768
-msgid "Delete below to"
-msgstr ""
-
-#: ../../godmode/reporting/reporting_builder.list_items.php:824
-msgid ""
-"Are you sure to sort the items into the report?\\n. This action change the "
-"sorting of items into data base."
-msgstr ""
-
-#: ../../godmode/reporting/reporting_builder.list_items.php:844
-#: ../../godmode/reporting/graph_builder.graph_editor.php:407
-msgid "Please select any item to order"
-msgstr ""
-
-#: ../../godmode/reporting/reporting_builder.list_items.php:874
-msgid "Are you sure to delete the items into the report?\\n"
-msgstr ""
-
-#: ../../godmode/reporting/reporting_builder.list_items.php:901
-msgid "Please select any item to delete"
-msgstr ""
-
-#: ../../godmode/reporting/create_container.php:155
-msgid "Container name is missing."
-msgstr ""
-
-#: ../../godmode/reporting/create_container.php:188
-#: ../../godmode/reporting/graph_container.php:101
-#: ../../godmode/reporting/graph_container.php:109
-msgid "Graph container"
-msgstr ""
-
-#: ../../godmode/reporting/create_container.php:196
-#: ../../godmode/reporting/graph_container.php:134
-msgid "Create container"
-msgstr ""
-
-#: ../../godmode/reporting/create_container.php:205
-msgid "Container stored successfully"
-msgstr ""
-
-#: ../../godmode/reporting/create_container.php:205
-msgid "There was a problem storing container"
-msgstr ""
-
-#: ../../godmode/reporting/create_container.php:212
-msgid "Update the container"
-msgstr ""
-
-#: ../../godmode/reporting/create_container.php:212
-msgid "Bad update the container"
-msgstr ""
-
-#: ../../godmode/reporting/create_container.php:287
-msgid "Parent container"
-msgstr ""
-
-#: ../../godmode/reporting/create_container.php:345
-#: ../../include/functions.php:2672
-msgid "custom"
-msgstr ""
-
-#: ../../godmode/reporting/create_container.php:347
-#: ../../godmode/reporting/create_container.php:348
-#: ../../godmode/reporting/create_container.php:349
-#: ../../include/functions.php:2684 ../../include/functions.php:2685
-#: ../../include/ajax/graph.ajax.php:147 ../../include/ajax/graph.ajax.php:148
-#: ../../include/ajax/graph.ajax.php:149
-#, php-format
-msgid "%s hours"
-msgstr ""
-
-#: ../../godmode/reporting/create_container.php:350
-#: ../../include/functions.php:2686 ../../include/ajax/module.php:203
-#: ../../include/ajax/graph.ajax.php:150
-msgid "1 day"
-msgstr ""
-
-#: ../../godmode/reporting/create_container.php:351
-#: ../../godmode/reporting/create_container.php:352
-#: ../../include/ajax/graph.ajax.php:151 ../../include/ajax/graph.ajax.php:152
-#, php-format
-msgid "%s days"
-msgstr ""
-
-#: ../../godmode/reporting/create_container.php:353
-#: ../../include/functions.php:2687 ../../include/ajax/module.php:204
-#: ../../include/ajax/graph.ajax.php:153
-msgid "1 week"
-msgstr ""
-
-#: ../../godmode/reporting/create_container.php:354
-#: ../../include/functions.php:2688 ../../include/ajax/module.php:205
-#: ../../include/ajax/graph.ajax.php:154
-msgid "15 days"
-msgstr ""
-
-#: ../../godmode/reporting/create_container.php:355
-#: ../../include/functions.php:2689 ../../include/ajax/module.php:206
-#: ../../include/ajax/graph.ajax.php:155
-msgid "1 month"
-msgstr ""
-
-#: ../../godmode/reporting/create_container.php:365
-#: ../../godmode/reporting/create_container.php:474
-#: ../../godmode/reporting/create_container.php:528
-msgid ""
-"This is the interval or period of time with which the graph data will be "
-"obtained. For example, a week means data from a week ago from now. "
-msgstr ""
-
-#: ../../godmode/reporting/create_container.php:418
-#: ../../godmode/reporting/reporting_builder.item_editor.php:1644
-#: ../../godmode/reporting/reporting_builder.item_editor.php:3942
-#: ../../godmode/reporting/reporting_builder.item_editor.php:3979
-#: ../../godmode/reporting/reporting_builder.item_editor.php:4072
-#: ../../godmode/reporting/reporting_builder.item_editor.php:4345
-#: ../../godmode/reporting/reporting_builder.item_editor.php:4379
-#: ../../godmode/reporting/reporting_builder.item_editor.php:4433
-#: ../../include/functions_ui.php:5723 ../../include/functions_html.php:5135
-msgid "Select an Agent first"
-msgstr ""
-
-#: ../../godmode/reporting/create_container.php:428
-#: ../../godmode/reporting/create_container.php:583
-#: ../../godmode/reporting/graph_builder.main.php:208
-#: ../../include/functions_visual_map_editor.php:554
-msgid "Type of graph"
-msgstr ""
-
-#: ../../godmode/reporting/create_container.php:437
-#: ../../godmode/reporting/create_container.php:494
-#: ../../godmode/reporting/create_container.php:589
-#: ../../godmode/reporting/graph_builder.main.php:285
-#: ../../operation/agentes/stat_win.php:406
-#: ../../operation/agentes/interface_traffic_graph_win.php:238
-msgid "Show full scale graph (TIP)"
-msgstr ""
-
-#: ../../godmode/reporting/create_container.php:448
-#: ../../godmode/reporting/create_container.php:501
-#: ../../godmode/reporting/create_container.php:596
-msgid "Add item"
-msgstr ""
-
-#: ../../godmode/reporting/create_container.php:480
-#: ../../godmode/reporting/create_container.php:624
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2042
-#: ../../godmode/reporting/visual_console_builder.elements.php:105
-#: ../../godmode/reporting/visual_console_builder.elements.php:575
-#: ../../include/functions_visual_map_editor.php:397
-#: ../../include/functions_visual_map_editor.php:400
-#: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:625
-#: ../../include/functions_reports.php:561
-#: ../../include/functions_reports.php:648
-#: ../../include/functions_reports.php:654
-#: ../../include/functions_reporting.php:9320
-msgid "Custom graph"
-msgstr ""
-
-#: ../../godmode/reporting/create_container.php:566
-#: ../../godmode/reporting/create_container.php:629
-#: ../../mobile/operation/modules.php:176
-#: ../../mobile/operation/modules.php:177
-#: ../../mobile/operation/modules.php:289
-#: ../../mobile/operation/modules.php:290
-#: ../../operation/agentes/group_view.php:317
-msgid "Tag"
-msgstr ""
-
-#: ../../godmode/reporting/create_container.php:614
-msgid "There are no items in this container."
-msgstr ""
-
-#: ../../godmode/reporting/create_container.php:623
-msgid "Agent/Module"
-msgstr ""
-
-#: ../../godmode/reporting/create_container.php:626
-msgid "M.Group"
-msgstr ""
-
-#: ../../godmode/reporting/map_builder.php:75
-#: ../../godmode/reporting/map_builder.php:121
-#: ../../godmode/reporting/visual_console_favorite.php:72
-msgid "Visual Console List"
-msgstr ""
-
-#: ../../godmode/reporting/map_builder.php:87
-#: ../../godmode/reporting/visual_console_favorite.php:84
-msgid "Visual Favourite Console"
-msgstr ""
-
-#: ../../godmode/reporting/map_builder.php:100
-#: ../../godmode/reporting/visual_console_favorite.php:97
-msgid "Visual Console Template"
-msgstr ""
-
-#: ../../godmode/reporting/map_builder.php:112
-#: ../../godmode/reporting/visual_console_favorite.php:109
-msgid "Visual Console Template Wizard"
-msgstr ""
-
-#: ../../godmode/reporting/map_builder.php:320
-#: ../../godmode/reporting/map_builder.php:328
-msgid "Not copied. Error copying data"
-msgstr ""
-
-#: ../../godmode/reporting/map_builder.php:370
-#: ../../godmode/reporting/visual_console_favorite.php:185
-msgid "Group Recursion"
-msgstr ""
-
-#: ../../godmode/reporting/map_builder.php:386
-msgid "Map name"
-msgstr ""
-
-#: ../../godmode/reporting/map_builder.php:388
-msgid "Items"
-msgstr ""
-
-#: ../../godmode/reporting/map_builder.php:464
-#: ../../general/first_task/map_builder.php:23
-msgid "There are no visual console defined yet."
-msgstr ""
-
-#: ../../godmode/reporting/graph_builder.php:288
-#: ../../godmode/reporting/graph_container.php:77
-#: ../../godmode/reporting/graphs.php:67 ../../godmode/reporting/graphs.php:81
-#: ../../operation/reporting/graph_viewer.php:176
-#: ../../operation/reporting/graph_viewer.php:208
-msgid "Graph list"
-msgstr ""
-
-#: ../../godmode/reporting/graph_builder.php:310
-#: ../../operation/reporting/graph_viewer.php:198
-msgid "Graph editor"
-msgstr ""
-
-#: ../../godmode/reporting/graph_builder.php:321
-#: ../../operation/reporting/graph_viewer.php:217
-msgid "View graph"
-msgstr ""
-
-#: ../../godmode/reporting/graph_builder.php:337
-msgid "Graph builder"
-msgstr ""
-
-#: ../../godmode/reporting/graph_builder.php:367
-#: ../../godmode/reporting/graph_container.php:118
-#: ../../godmode/reporting/graphs.php:129
-#: ../../godmode/reporting/reporting_builder.php:572
-#: ../../godmode/reporting/reporting_builder.php:579
-#: ../../godmode/reporting/reporting_builder.php:592
-#: ../../godmode/reporting/reporting_builder.php:3432
-#: ../../godmode/reporting/reporting_builder.php:3439
-#: ../../godmode/reporting/reporting_builder.php:3452
-#: ../../godmode/reporting/reporting_builder.php:3543
-#: ../../godmode/reporting/reporting_builder.php:3550
-#: ../../godmode/reporting/reporting_builder.php:3566
-#: ../../godmode/reporting/reporting_builder.php:3614
-#: ../../operation/menu.php:308
-#: ../../operation/reporting/reporting_viewer.php:208
-#: ../../operation/reporting/reporting_viewer.php:213
-#: ../../operation/reporting/reporting_viewer.php:226
-#: ../../operation/reporting/custom_reporting.php:23
-#: ../../operation/reporting/graph_viewer.php:261
-#: ../../operation/reporting/graph_viewer.php:507
-msgid "Reporting"
-msgstr ""
-
-#: ../../godmode/reporting/graph_builder.php:371
-#: ../../godmode/reporting/graph_container.php:122
-#: ../../godmode/reporting/graphs.php:133 ../../operation/menu.php:324
-#: ../../operation/reporting/graph_viewer.php:265
-msgid "Custom graphs"
-msgstr ""
-
-#: ../../godmode/reporting/graph_builder.php:379
-msgid "Graph stored successfully"
-msgstr ""
-
-#: ../../godmode/reporting/graph_builder.php:380
-msgid "There was a problem storing Graph"
-msgstr ""
-
-#: ../../godmode/reporting/graph_builder.php:388
-msgid "There was a problem adding Module"
-msgstr ""
-
-#: ../../godmode/reporting/graph_builder.php:395
-msgid "Update the graph"
-msgstr ""
-
-#: ../../godmode/reporting/graph_builder.php:396
-msgid "Bad update the graph"
-msgstr ""
-
-#: ../../godmode/reporting/graph_builder.php:403
-msgid "Graph deleted successfully"
-msgstr ""
-
-#: ../../godmode/reporting/graph_builder.php:404
-msgid "There was a problem deleting Graph"
-msgstr ""
-
-#: ../../godmode/reporting/graphs.php:106
-msgid "Graphs containers"
-msgstr ""
-
-#: ../../godmode/reporting/graphs.php:120
-msgid "List of custom graphs"
-msgstr ""
-
-#: ../../godmode/reporting/graphs.php:225
-#: ../../godmode/reporting/reporting_builder.php:790
-msgid "Free text for search: "
-msgstr ""
-
-#: ../../godmode/reporting/graphs.php:226
-#: ../../godmode/reporting/reporting_builder.php:792
-msgid "Search by report name or description, list matches."
-msgstr ""
-
-#: ../../godmode/reporting/graphs.php:238
-#: ../../godmode/reporting/reporting_builder.php:818
-msgid "Show Option"
-msgstr ""
-
-#: ../../godmode/reporting/graphs.php:300
-#: ../../include/functions_container.php:146
-#: ../../operation/search_graphs.php:29
-#: ../../operation/reporting/graph_viewer.php:518
-msgid "Graph name"
-msgstr ""
-
-#: ../../godmode/reporting/graphs.php:302
-#: ../../include/functions_container.php:148
-msgid "Number of Graphs"
-msgstr ""
-
-#: ../../godmode/reporting/graphs.php:392
-msgid "Create graph"
-msgstr ""
-
-#: ../../godmode/reporting/visual_console_favorite.php:118
-msgid "Favourite Visual Console"
-msgstr ""
-
-#: ../../godmode/reporting/visual_console_favorite.php:223
-msgid "No favourite consoles defined"
-msgstr ""
-
-#: ../../godmode/reporting/graph_builder.graph_editor.php:199
-#, php-format
-msgid ""
-"The maximum number of items in a chart is %d. You have %d elements, only "
-"first %d will be displayed."
-msgstr ""
-
-#: ../../godmode/reporting/graph_builder.graph_editor.php:214
-#: ../../godmode/reporting/reporting_builder.item_editor.php:1099
-#: ../../godmode/reporting/visual_console_builder.elements.php:104
-#: ../../godmode/reporting/visual_console_builder.elements.php:283
-#: ../../godmode/reporting/visual_console_builder.wizard.php:446
-#: ../../include/functions_visual_map_editor.php:67
-#: ../../include/functions_visual_map_editor.php:193
-#: ../../include/functions_visual_map_editor.php:779
-#: ../../include/functions_visual_map_editor.php:1394
-#: ../../include/functions_visual_map.php:4224
-#: ../../include/rest-api/models/VisualConsole/Item.php:1910
-#: ../../include/rest-api/models/VisualConsole/Item.php:2104
-#: ../../include/lib/Dashboard/Widgets/sla_percent.php:285
-#: ../../include/lib/Dashboard/Widgets/module_icon.php:304
-#: ../../include/lib/Dashboard/Widgets/module_value.php:278
-#: ../../include/lib/Dashboard/Widgets/graph_module_histogram.php:274
-#: ../../include/lib/Dashboard/Widgets/module_status.php:294
-#: ../../operation/visual_console/view.php:336
-msgid "Label"
-msgstr ""
-
-#: ../../godmode/reporting/graph_builder.graph_editor.php:215
-#: ../../godmode/reporting/graph_builder.graph_editor.php:345
-#: ../../include/functions.php:3964
-msgid "Weight"
-msgstr ""
-
-#: ../../godmode/reporting/graph_builder.graph_editor.php:291
-msgid "Sort selected items"
-msgstr ""
-
-#: ../../godmode/reporting/graph_builder.graph_editor.php:294
-msgid "before to"
-msgstr ""
-
-#: ../../godmode/reporting/graph_builder.graph_editor.php:295
-msgid "after to"
-msgstr ""
-
-#: ../../godmode/reporting/graph_builder.graph_editor.php:367
-msgid "Please, select a module"
-msgstr ""
-
-#: ../../godmode/reporting/reporting_builder.item_editor.php:56
-msgid "Only table"
-msgstr ""
-
-#: ../../godmode/reporting/reporting_builder.item_editor.php:57
-msgid "Table & Graph"
-msgstr ""
-
-#: ../../godmode/reporting/reporting_builder.item_editor.php:58
-msgid "Only graph"
-msgstr ""
-
-#: ../../godmode/reporting/reporting_builder.item_editor.php:62
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2297
-#: ../../include/lib/Dashboard/Widgets/top_n.php:262
-msgid "Ascending"
-msgstr ""
-
-#: ../../godmode/reporting/reporting_builder.item_editor.php:63
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2304
-#: ../../include/lib/Dashboard/Widgets/top_n.php:261
-msgid "Descending"
-msgstr ""
-
-#: ../../godmode/reporting/reporting_builder.item_editor.php:185
-msgid "Local metaconsole"
-msgstr ""
-
-#: ../../godmode/reporting/reporting_builder.item_editor.php:955
-msgid "Item Editor"
-msgstr ""
-
-#: ../../godmode/reporting/reporting_builder.item_editor.php:976
-msgid "Not valid"
-msgstr ""
-
-#: ../../godmode/reporting/reporting_builder.item_editor.php:984
-msgid ""
-"This type of report brings a lot of data loading, it is recommended to use "
-"it for scheduled reports and not for real-time view."
-msgstr ""
-
-#: ../../godmode/reporting/reporting_builder.item_editor.php:1134
-msgid "Log number"
-msgstr ""
-
-#: ../../godmode/reporting/reporting_builder.item_editor.php:1136
-msgid ""
-"Warning: this parameter limits the contents of the logs and affects the "
-"performance."
-msgstr ""
-
-#: ../../godmode/reporting/reporting_builder.item_editor.php:1148
-msgid "Filter by network"
-msgstr ""
-
-#: ../../godmode/reporting/reporting_builder.item_editor.php:1167
-msgid "Show alive IPs only"
-msgstr ""
-
-#: ../../godmode/reporting/reporting_builder.item_editor.php:1180
-msgid "Show IPs not assigned to an agent"
-msgstr ""
-
-#: ../../godmode/reporting/reporting_builder.item_editor.php:1197
-msgid ""
-"This is the range, or period of time over which the report renders the "
-"information for this report type. For example, a week means data from a week "
-"ago from now. "
-msgstr ""
-
-#: ../../godmode/reporting/reporting_builder.item_editor.php:1218
-#: ../../include/functions_reports.php:765
-msgid "Last value"
-msgstr ""
-
-#: ../../godmode/reporting/reporting_builder.item_editor.php:1220
-#: ../../godmode/reporting/reporting_builder.item_editor.php:6654
-msgid ""
-"Warning: period 0 reports cannot be used to show information back in time. "
-"Information contained in this kind of reports will be always reporting the "
-"most recent information"
-msgstr ""
-
-#: ../../godmode/reporting/reporting_builder.item_editor.php:1260
-msgid "Projection period"
-msgstr ""
-
-#: ../../godmode/reporting/reporting_builder.item_editor.php:1279
-msgid "Data range"
-msgstr ""
-
-#: ../../godmode/reporting/reporting_builder.item_editor.php:1292
-msgid "Only display wrong SLAs"
-msgstr ""
-
-#: ../../godmode/reporting/reporting_builder.item_editor.php:1306
-msgid "Current month"
-msgstr ""
-
-#: ../../godmode/reporting/reporting_builder.item_editor.php:1322
-msgid "Working time"
-msgstr ""
-
-#: ../../godmode/reporting/reporting_builder.item_editor.php:1424
-msgid "Show 24x7 item"
-msgstr ""
-
-#: ../../godmode/reporting/reporting_builder.item_editor.php:1756
-msgid "Show modules"
-msgstr ""
-
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2027
-msgid "Last"
-msgstr ""
-
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2106
-msgid "Target server"
-msgstr ""
-
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2154
-msgid "Custom SQL template"
-msgstr ""
-
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2174
-#: ../../include/functions_reports.php:803
-msgid "SQL query"
-msgstr ""
-
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2175
-msgid "The entities of the fields that contain them must be included."
-msgstr ""
-
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2189
-msgid "Max items"
-msgstr ""
-
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2201
-msgid "Serialized header"
-msgstr ""
-
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2202
-msgid "The separator character is |"
-msgstr ""
-
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2232
-msgid "Protocol must be specified in URL (e.g.: \"https://\")"
-msgstr ""
-
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2238
-msgid "Field separator"
-msgstr ""
-
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2239
-msgid "Separator for different fields in the serialized text chain"
-msgstr ""
-
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2259
-msgid "Line separator"
-msgstr ""
-
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2260
-msgid ""
-"Separator in different lines (composed by fields) of the serialized text "
-"chain"
-msgstr ""
-
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2280
-msgid "Group by agent"
-msgstr ""
-
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2311
-#: ../../include/lib/Dashboard/Widgets/top_n.php:263
-msgid "By agent name"
-msgstr ""
-
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2323
-#: ../../include/lib/Dashboard/Widgets/top_n.php:249
-msgid "Quantity (n)"
-msgstr ""
-
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2353
-#: ../../include/lib/Dashboard/Widgets/top_n.php:286
-#: ../../operation/agentes/ver_agente.php:1592
-msgid "Display"
-msgstr ""
-
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2370
-#: ../../include/functions_reporting_html.php:4513
-#: ../../include/functions_reporting.php:1506
-msgid "Avg"
-msgstr ""
-
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2384
-msgid "Graph render"
-msgstr ""
-
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2390
-msgid "Avg, max & min"
-msgstr ""
-
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2391
-msgid "Max only"
-msgstr ""
-
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2392
-msgid "Min only"
-msgstr ""
-
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2393
-msgid "Avg only"
-msgstr ""
-
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2407
-msgid "Full resolution graph (TIP)"
-msgstr ""
-
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2408
-#: ../../operation/agentes/stat_win.php:408
-#: ../../operation/agentes/interface_traffic_graph_win.php:240
-msgid ""
-"TIP mode charts do not support average - maximum - minimum series, you can "
-"only enable TIP or average, maximum or minimum series"
-msgstr ""
-
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2427
-#: ../../mobile/operation/module_graph.php:434
-#: ../../operation/agentes/stat_win.php:380
-msgid "Time compare (Overlapped)"
-msgstr ""
-
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2442
-#: ../../godmode/reporting/graph_builder.main.php:245
-#: ../../include/functions.php:4099 ../../include/functions.php:4107
-msgid "Percentil"
-msgstr ""
-
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2462
-msgid "Condition"
-msgstr ""
-
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2466
-#: ../../include/functions_reporting.php:2895
-msgid "Everything"
-msgstr ""
-
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2467
-msgid "Greater or equal (>=)"
-msgstr ""
-
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2468
-msgid "Less or equal (<=)"
-msgstr ""
-
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2469
-msgid "Less (<)"
-msgstr ""
-
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2470
-msgid "Greater (>)"
-msgstr ""
-
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2471
-msgid "Equal (=)"
-msgstr ""
-
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2472
-msgid "Not equal (!=)"
-msgstr ""
-
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2474
-#: ../../include/functions_reporting_html.php:3086
-msgid "Not OK"
-msgstr ""
-
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2486
-msgid "Show graph"
-msgstr ""
-
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2500
-msgid "Select fields to show"
-msgstr ""
-
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2508
-#: ../../include/functions_reporting_html.php:3655
-msgid "Total time"
-msgstr ""
-
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2516
-#: ../../include/functions_reporting_html.php:3661
-msgid "Time failed"
-msgstr ""
-
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2524
-msgid "Time in OK status"
-msgstr ""
-
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2532
-#: ../../include/functions_reporting_html.php:3673
-msgid "Time in warning status"
-msgstr ""
-
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2540
-msgid "Time in unknown status"
-msgstr ""
-
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2552
-msgid "Time of not initialized module"
-msgstr ""
-
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2564
-msgid "Time of downtime"
-msgstr ""
-
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2576
-msgid "Show address instead module name"
-msgstr ""
-
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2577
-msgid "Show the main address of agent."
-msgstr ""
-
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2596
-msgid "Show resume"
-msgstr ""
-
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2597
-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:2616
-msgid "<p class= \"mrgn_lft_15px\">Select fields to show</p>"
-msgstr ""
-
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2624
-#: ../../include/functions_reporting_html.php:3749
-msgid "Total checks"
-msgstr ""
-
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2632
-#: ../../include/functions_reporting_html.php:3755
-msgid "Checks failed"
-msgstr ""
-
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2640
-msgid "Checks in OK status"
-msgstr ""
-
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2652
-msgid "Checks in Warning status"
-msgstr ""
-
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2664
-msgid "Unknown checks"
-msgstr ""
-
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2676
-msgid "<p class=\"mrgn_lft_15px\">Select fields to show</p>"
-msgstr ""
-
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2684
-#: ../../include/functions_reporting_html.php:4069
-msgid "Agent max value"
-msgstr ""
-
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2692
-msgid "Agent min values"
-msgstr ""
-
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2705
-msgid "Show Summary group"
-msgstr ""
-
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2722
-msgid "Only data"
-msgstr ""
-
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2737
-#: ../../godmode/events/event_filter.php:140
-#: ../../godmode/events/event_edit_filter.php:326
-#: ../../godmode/events/custom_events.php:106
-#: ../../mobile/operation/events.php:397 ../../mobile/operation/events.php:398
-#: ../../mobile/operation/events.php:532 ../../mobile/operation/events.php:690
-#: ../../mobile/operation/events.php:691
-#: ../../include/functions_reporting_html.php:1042
-#: ../../include/functions_reporting_html.php:1050
-#: ../../include/functions_reporting_html.php:1261
-#: ../../include/functions_reporting_html.php:1269
-#: ../../include/functions_reporting_html.php:2220
-#: ../../include/functions_snmp.php:335
-#: ../../include/lib/Dashboard/Widgets/events_list.php:393
-#: ../../include/functions_events.php:201
-#: ../../include/functions_events.php:265
-#: ../../include/functions_events.php:2560
-#: ../../include/functions_events.php:4972
-#: ../../include/functions_events.php:6652
-#: ../../operation/snmpconsole/snmp_view.php:572
-#: ../../operation/events/events_list.php:949
-#: ../../operation/events/events.php:1146
-#: ../../operation/events/events.build_table.php:263
-msgid "Severity"
-msgstr ""
-
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2764
-#: ../../godmode/events/event_filter.php:138
-#: ../../godmode/events/event_edit_filter.php:311
-#: ../../include/lib/Dashboard/Widgets/events_list.php:321
-#: ../../include/functions_events.php:198
-#: ../../include/functions_events.php:6633
-#: ../../operation/events/events_list.php:933
-#: ../../operation/events/events.php:1073
-msgid "Event type"
-msgstr ""
-
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2791
-msgid "Event Status"
-msgstr ""
-
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2820
-msgid "Include extended events"
-msgstr ""
-
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2835
-#: ../../operation/agentes/tactical.php:254
-msgid "Event graphs"
-msgstr ""
-
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2839
-msgid "By agent "
-msgstr ""
-
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2849
-msgid "By user validator "
-msgstr ""
-
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2859
-msgid "By criticity "
-msgstr ""
-
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2869
-msgid "Validated vs unvalidated "
-msgstr ""
-
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2883
-msgid "Query History Database"
-msgstr ""
-
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2884
-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:2899
-msgid "Height (dynamic graphs)"
-msgstr ""
-
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2918
-msgid "Show in the same row"
-msgstr ""
-
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2920
-msgid "Show one module per row with all its operations"
-msgstr ""
-
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2942
-msgid "SLA items sorted by fulfillment value"
-msgstr ""
-
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2964
-msgid "Priority mode"
-msgstr ""
-
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2969
-msgid "Priority ok mode"
-msgstr ""
-
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2981
-msgid "Priority unknown mode"
-msgstr ""
-
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2997
-msgid "Failover mode"
-msgstr ""
-
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2998
-msgid ""
-"SLA calculation must be performed taking into account the failover modules "
-"assigned to the primary module"
-msgstr ""
-
-#: ../../godmode/reporting/reporting_builder.item_editor.php:3017
-msgid "Failover type"
-msgstr ""
-
-#: ../../godmode/reporting/reporting_builder.item_editor.php:3022
-msgid "Failover normal"
-msgstr ""
-
-#: ../../godmode/reporting/reporting_builder.item_editor.php:3034
-msgid "Failover simple"
-msgstr ""
-
-#: ../../godmode/reporting/reporting_builder.item_editor.php:3050
-#: ../../godmode/wizards/DiscoveryTaskList.class.php:1362
-#: ../../include/functions_reporting_html.php:4353
-#: ../../include/functions_reporting_html.php:4623
-#: ../../include/functions_reporting_html.php:4760
-#: ../../include/functions_netflow.php:1052
-#: ../../include/lib/Dashboard/Widgets/tactical.php:286
-msgid "Summary"
-msgstr ""
-
-#: ../../godmode/reporting/reporting_builder.item_editor.php:3069
-msgid "Include filter"
-msgstr ""
-
-#: ../../godmode/reporting/reporting_builder.item_editor.php:3073
-#: ../../godmode/reporting/reporting_builder.item_editor.php:3082
-msgid "Free text string search on event description"
-msgstr ""
-
-#: ../../godmode/reporting/reporting_builder.item_editor.php:3078
-msgid "Exclude filter"
-msgstr ""
-
-#: ../../godmode/reporting/reporting_builder.item_editor.php:3089
-msgid "Calculate for custom intervals"
-msgstr ""
-
-#: ../../godmode/reporting/reporting_builder.item_editor.php:3101
-msgid "Time lapse intervals"
-msgstr ""
-
-#: ../../godmode/reporting/reporting_builder.item_editor.php:3104
-msgid ""
-"Lapses of time in which the period is divided to make more precise "
-"calculations"
-msgstr ""
-
-#: ../../godmode/reporting/reporting_builder.item_editor.php:3145
-msgid "Table only"
-msgstr ""
-
-#: ../../godmode/reporting/reporting_builder.item_editor.php:3156
-msgid "Graph only"
-msgstr ""
-
-#: ../../godmode/reporting/reporting_builder.item_editor.php:3167
-msgid "Graph and table"
-msgstr ""
-
-#: ../../godmode/reporting/reporting_builder.item_editor.php:3184
-msgid "Uncompress module"
-msgstr ""
-
-#: ../../godmode/reporting/reporting_builder.item_editor.php:3185
-msgid "Use uncompressed module data."
-msgstr ""
-
-#: ../../godmode/reporting/reporting_builder.item_editor.php:3208
-#: ../../include/functions_reporting.php:4234
-msgid "Unassigned group"
-msgstr ""
-
-#: ../../godmode/reporting/reporting_builder.item_editor.php:3254
-#: ../../include/functions_reporting.php:4228
-msgid "Unnasigned group"
-msgstr ""
-
-#: ../../godmode/reporting/reporting_builder.item_editor.php:3277
-msgid "Select by group"
-msgstr ""
-
-#: ../../godmode/reporting/reporting_builder.item_editor.php:3295
-msgid "Show Summary"
-msgstr ""
-
-#: ../../godmode/reporting/reporting_builder.item_editor.php:3312
-msgid "Group by"
-msgstr ""
-
-#: ../../godmode/reporting/reporting_builder.item_editor.php:3347
-msgid "Show item in landscape format (only PDF)"
-msgstr ""
-
-#: ../../godmode/reporting/reporting_builder.item_editor.php:3356
-msgid "Page break at the end of the item (only PDF)"
-msgstr ""
-
-#: ../../godmode/reporting/reporting_builder.item_editor.php:3365
-msgid "Display options"
-msgstr ""
-
-#: ../../godmode/reporting/reporting_builder.item_editor.php:3423
-msgid "Agent group filter"
-msgstr ""
-
-#: ../../godmode/reporting/reporting_builder.item_editor.php:3443
-msgid "Agent OS filter"
-msgstr ""
-
-#: ../../godmode/reporting/reporting_builder.item_editor.php:3469
-msgid "Agent custom field"
-msgstr ""
-
-#: ../../godmode/reporting/reporting_builder.item_editor.php:3491
-msgid "Agent custom field filter"
-msgstr ""
-
-#: ../../godmode/reporting/reporting_builder.item_editor.php:3515
-msgid "Agent status filter"
-msgstr ""
-
-#: ../../godmode/reporting/reporting_builder.item_editor.php:3553
-msgid "Agent version filter"
-msgstr ""
-
-#: ../../godmode/reporting/reporting_builder.item_editor.php:3577
-msgid "Agent has remote configuration"
-msgstr ""
-
-#: ../../godmode/reporting/reporting_builder.item_editor.php:3578
-msgid "Filter agents by remote configuration enabled."
-msgstr ""
-
-#: ../../godmode/reporting/reporting_builder.item_editor.php:3589
-msgid "Agent module filter"
-msgstr ""
-
-#: ../../godmode/reporting/reporting_builder.item_editor.php:3695
-#: ../../godmode/reporting/reporting_builder.item_editor.php:4129
-msgid "Agent Failover"
-msgstr ""
-
-#: ../../godmode/reporting/reporting_builder.item_editor.php:3700
-#: ../../godmode/reporting/reporting_builder.item_editor.php:4132
-msgid "Module Failover"
-msgstr ""
-
-#: ../../godmode/reporting/reporting_builder.item_editor.php:3708
-#: ../../include/lib/Dashboard/Widgets/service_map.php:287
-msgid "Service"
-msgstr ""
-
-#: ../../godmode/reporting/reporting_builder.item_editor.php:3713
-msgid "SLA Min. (value)"
-msgstr ""
-
-#: ../../godmode/reporting/reporting_builder.item_editor.php:3718
-msgid "SLA Max. (value)"
-msgstr ""
-
-#: ../../godmode/reporting/reporting_builder.item_editor.php:3723
-msgid "SLA Limit (%)"
-msgstr ""
-
-#: ../../godmode/reporting/reporting_builder.item_editor.php:3740
-msgid "Please save the item before adding entries to this list."
-msgstr ""
-
-#: ../../godmode/reporting/reporting_builder.item_editor.php:4105
-msgid "rate"
-msgstr ""
-
-#: ../../godmode/reporting/reporting_builder.item_editor.php:4106
-msgid "max"
-msgstr ""
-
-#: ../../godmode/reporting/reporting_builder.item_editor.php:4107
-msgid "min"
-msgstr ""
-
-#: ../../godmode/reporting/reporting_builder.item_editor.php:4108
-msgid "sum"
-msgstr ""
-
-#: ../../godmode/reporting/reporting_builder.item_editor.php:4153
-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:4173
-msgid "Please save the report to start adding items into the list."
-msgstr ""
-
-#: ../../godmode/reporting/reporting_builder.item_editor.php:4439
-#: ../../godmode/reporting/reporting_builder.item_editor.php:4443
-#: ../../godmode/reporting/reporting_builder.item_editor.php:4447
-#: ../../godmode/reporting/reporting_builder.item_editor.php:4451
-#: ../../godmode/reporting/reporting_builder.item_editor.php:4455
-#: ../../godmode/reporting/reporting_builder.item_editor.php:4459
-#: ../../godmode/reporting/reporting_builder.item_editor.php:4463
-#: ../../godmode/reporting/reporting_builder.item_editor.php:4467
-msgid "Item Editor Information"
-msgstr ""
-
-#: ../../godmode/reporting/reporting_builder.item_editor.php:4440
-msgid "Please select a name."
-msgstr ""
-
-#: ../../godmode/reporting/reporting_builder.item_editor.php:4444
-msgid "Please select an agent."
-msgstr ""
-
-#: ../../godmode/reporting/reporting_builder.item_editor.php:4452
-msgid "Please insert a SQL query."
-msgstr ""
-
-#: ../../godmode/reporting/reporting_builder.item_editor.php:4456
-msgid "Please insert a URL."
-msgstr ""
-
-#: ../../godmode/reporting/reporting_builder.item_editor.php:4460
-msgid "Please checked a custom interval option."
-msgstr ""
-
-#: ../../godmode/reporting/reporting_builder.item_editor.php:4464
-msgid "Please select a user."
-msgstr ""
-
-#: ../../godmode/reporting/reporting_builder.item_editor.php:4468
-msgid "Please select a group."
-msgstr ""
-
-#: ../../godmode/reporting/visual_console_builder.elements.php:105
-#: ../../godmode/reporting/visual_console_builder.wizard.php:151
-#: ../../include/functions_visual_map_editor.php:250
-#: ../../include/rest-api/models/VisualConsole/Items/Icon.php:175
-#: ../../include/rest-api/models/VisualConsole/Items/StaticGraph.php:333
-#: ../../include/rest-api/models/VisualConsole/Items/Group.php:520
-#: ../../include/functions_filemanager.php:668
-msgid "Image"
-msgstr ""
-
-#: ../../godmode/reporting/visual_console_builder.elements.php:106
-msgid "Width x Height<br>Max value"
-msgstr ""
-
-#: ../../godmode/reporting/visual_console_builder.elements.php:108
-msgid "Map linked"
-msgstr ""
-
-#: ../../godmode/reporting/visual_console_builder.elements.php:118
-#: ../../mobile/operation/agents.php:388
-#: ../../include/class/AuditLog.class.php:128
-msgid "A."
-msgstr ""
-
-#: ../../godmode/reporting/visual_console_builder.elements.php:193
-msgid "Percentile Bar"
-msgstr ""
-
-#: ../../godmode/reporting/visual_console_builder.elements.php:203
-msgid "Percentile Bubble"
-msgstr ""
-
-#: ../../godmode/reporting/visual_console_builder.elements.php:221
-#: ../../mobile/operation/events.php:549
-#: ../../include/functions_visual_map_editor.php:1389
-#: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:555
-#: ../../operation/visual_console/view.php:306
-msgid "Module Graph"
-msgstr ""
-
-#: ../../godmode/reporting/visual_console_builder.elements.php:231
-#: ../../include/functions_visual_map_editor.php:59
-#: ../../include/functions_visual_map_editor.php:1392
-#: ../../include/functions_visual_map.php:4194
-#: ../../operation/visual_console/view.php:326
-msgid "Event history graph"
-msgstr ""
-
-#: ../../godmode/reporting/visual_console_builder.elements.php:240
-#: ../../include/functions_visual_map_editor.php:1393
-#: ../../include/functions_visual_map.php:4219
-#: ../../include/rest-api/models/VisualConsole/Item.php:2100
-#: ../../operation/visual_console/view.php:331
-msgid "Simple Value"
-msgstr ""
-
-#: ../../godmode/reporting/visual_console_builder.elements.php:251
-msgid "Simple Value (Process Max)"
-msgstr ""
-
-#: ../../godmode/reporting/visual_console_builder.elements.php:262
-msgid "Simple Value (Process Min)"
-msgstr ""
-
-#: ../../godmode/reporting/visual_console_builder.elements.php:273
-msgid "Simple Value (Process Avg)"
-msgstr ""
-
-#: ../../godmode/reporting/visual_console_builder.elements.php:303
-#: ../../include/functions_visual_map_editor.php:71
-#: ../../include/functions_visual_map_editor.php:1398
-#: ../../include/functions_visual_map.php:4174
-#: ../../operation/visual_console/view.php:356
-msgid "Box"
-msgstr ""
-
-#: ../../godmode/reporting/visual_console_builder.elements.php:322
-#: ../../include/functions_visual_map_editor.php:1405
-#: ../../operation/visual_console/view.php:371
-msgid "Network link"
-msgstr ""
-
-#: ../../godmode/reporting/visual_console_builder.elements.php:343
-#: ../../include/functions_visual_map_editor.php:73
-#: ../../include/functions_visual_map_editor.php:1400
-#: ../../include/functions_visual_map.php:4234
-#: ../../include/rest-api/models/VisualConsole/Item.php:2112
-#: ../../operation/visual_console/view.php:366
-msgid "Color cloud"
-msgstr ""
-
-#: ../../godmode/reporting/visual_console_builder.elements.php:351
-#: ../../include/rest-api/models/VisualConsole/Item.php:2124
-#: ../../operation/visual_console/view.php:311
-msgid "Basic chart"
-msgstr ""
-
-#: ../../godmode/reporting/visual_console_builder.elements.php:359
-#: ../../include/rest-api/models/VisualConsole/Item.php:2120
-#: ../../operation/visual_console/view.php:376
-msgid "Odometer"
-msgstr ""
-
-#: ../../godmode/reporting/visual_console_builder.elements.php:367
-#: ../../include/functions_visual_map_editor.php:69
-#: ../../include/functions_visual_map_editor.php:1396
-#: ../../include/functions_visual_map.php:4184
-#: ../../include/rest-api/models/VisualConsole/Item.php:2072
-#: ../../include/lib/Dashboard/Widgets/clock.php:158
-#: ../../include/lib/Dashboard/Widgets/clock.php:310
-#: ../../operation/visual_console/view.php:346
-msgid "Clock"
-msgstr ""
-
-#: ../../godmode/reporting/visual_console_builder.elements.php:394
-#: ../../godmode/reporting/visual_console_builder.elements.php:832
-msgid "Edit label"
-msgstr ""
-
-#: ../../godmode/reporting/reporting_builder.main.php:146
-msgid "Only the group can view the report"
-msgstr ""
-
-#: ../../godmode/reporting/reporting_builder.main.php:147
-msgid "The next group can edit the report"
-msgstr ""
-
-#: ../../godmode/reporting/reporting_builder.main.php:148
-msgid "Only the user and admin user can edit the report"
-msgstr ""
-
-#: ../../godmode/reporting/reporting_builder.main.php:150
-msgid "Write Access"
-msgstr ""
-
-#: ../../godmode/reporting/reporting_builder.main.php:152
-msgid ""
-"For example, you want a report that the people of \"All\" groups can see but "
-"you want to edit only for you or your group."
-msgstr ""
-
-#: ../../godmode/reporting/reporting_builder.main.php:193
-msgid "Non interactive report"
-msgstr ""
-
-#: ../../godmode/reporting/reporting_builder.main.php:226
-msgid "Generate cover page in PDF render"
-msgstr ""
-
-#: ../../godmode/reporting/reporting_builder.main.php:234
-msgid "Generate index in PDF render"
-msgstr ""
-
-#: ../../godmode/reporting/reporting_builder.php:210
-#: ../../operation/reporting/reporting_viewer.php:98
-msgid "Your report has been planned, and the system will email you a "
-msgstr ""
-
-#: ../../godmode/reporting/reporting_builder.php:211
-#: ../../operation/reporting/reporting_viewer.php:99
-msgid "An error has ocurred"
-msgstr ""
-
-#: ../../godmode/reporting/reporting_builder.php:535
-#: ../../godmode/reporting/reporting_builder.php:3400
-#: ../../godmode/reporting/reporting_builder.php:3483
-#: ../../godmode/reporting/reporting_builder.php:3531
-msgid "Reports list"
-msgstr ""
-
-#: ../../godmode/reporting/reporting_builder.php:551
-#: ../../godmode/reporting/reporting_builder.php:3411
-#: ../../operation/menu.php:315
-#: ../../operation/reporting/custom_reporting.php:23
-msgid "Custom reporting"
-msgstr ""
-
-#: ../../godmode/reporting/reporting_builder.php:583
-msgid "List of reports"
-msgstr ""
-
-#: ../../godmode/reporting/reporting_builder.php:596
-#: ../../godmode/reporting/reporting_builder.php:3456
-#: ../../godmode/reporting/reporting_builder.php:3570
-#: ../../godmode/reporting/reporting_builder.php:3618
-#: ../../operation/reporting/reporting_viewer.php:230
-msgid "Custom reports"
-msgstr ""
-
-#: ../../godmode/reporting/reporting_builder.php:921
-#: ../../include/functions_cron.php:607 ../../operation/search_reports.php:41
-#: ../../operation/search_reports.php:57
-#: ../../operation/reporting/custom_reporting.php:34
-msgid "Report name"
-msgstr ""
-
-#: ../../godmode/reporting/reporting_builder.php:923
-#: ../../operation/search_reports.php:43 ../../operation/search_reports.php:59
-#: ../../operation/reporting/custom_reporting.php:36
-msgid "HTML"
-msgstr ""
-
-#: ../../godmode/reporting/reporting_builder.php:924
-#: ../../operation/search_reports.php:44 ../../operation/search_reports.php:60
-#: ../../operation/reporting/custom_reporting.php:37
-msgid "XML"
-msgstr ""
-
-#: ../../godmode/reporting/reporting_builder.php:1055
-msgid "This report exceeds the item limit for realtime operations"
-msgstr ""
-
-#: ../../godmode/reporting/reporting_builder.php:1064
-msgid "HTML view"
-msgstr ""
-
-#: ../../godmode/reporting/reporting_builder.php:1074
-msgid "Export to XML"
-msgstr ""
-
-#: ../../godmode/reporting/reporting_builder.php:1271
-#: ../../include/functions_reporting.php:2663
-msgid "No data found."
-msgstr ""
-
-#: ../../godmode/reporting/reporting_builder.php:1287
-msgid "Create report"
-msgstr ""
-
-#: ../../godmode/reporting/reporting_builder.php:3494
-#: ../../operation/reporting/reporting_viewer.php:145
-msgid "List items"
-msgstr ""
-
-#: ../../godmode/reporting/reporting_builder.php:3498
-#: ../../operation/reporting/reporting_viewer.php:154
-msgid "Item editor"
-msgstr ""
-
-#: ../../godmode/reporting/reporting_builder.php:3515
-#: ../../operation/reporting/reporting_viewer.php:170
-msgid "View report"
-msgstr ""
-
-#: ../../godmode/reporting/reporting_builder.php:3534
-msgid "Create Custom Report"
-msgstr ""
-
-#: ../../godmode/reporting/reporting_builder.php:3593
-msgid "Successfull action"
-msgstr ""
-
-#: ../../godmode/reporting/reporting_builder.php:3594
-msgid "Unsuccessful action<br><br>"
-msgstr ""
-
-#: ../../godmode/reporting/visual_console_builder.wizard.php:127
-#: ../../include/functions_visual_map_editor.php:56
-msgid "Static Graph"
-msgstr ""
-
-#: ../../godmode/reporting/visual_console_builder.wizard.php:128
-#: ../../include/functions_visual_map_editor.php:57
-#: ../../include/functions_visual_map_editor.php:1388
-#: ../../operation/visual_console/view.php:301
-msgid "Percentile Item"
-msgstr ""
-
-#: ../../godmode/reporting/visual_console_builder.wizard.php:129
-#: ../../mobile/operation/home.php:102
-#: ../../include/functions_visual_map_editor.php:397
-#: ../../include/functions_visual_map.php:4179
-#: ../../include/rest-api/models/VisualConsole/Item.php:2068
-msgid "Module graph"
-msgstr ""
-
-#: ../../godmode/reporting/visual_console_builder.wizard.php:130
-#: ../../include/functions_visual_map_editor.php:60
-msgid "Simple value"
-msgstr ""
-
-#: ../../godmode/reporting/visual_console_builder.wizard.php:165
-msgid "Range between elements (px)"
-msgstr ""
-
-#: ../../godmode/reporting/visual_console_builder.wizard.php:178
-msgid "Size (px)"
-msgstr ""
-
-#: ../../godmode/reporting/visual_console_builder.wizard.php:215
-msgid "Font"
-msgstr ""
-
-#: ../../godmode/reporting/visual_console_builder.wizard.php:228
-#: ../../include/functions_config.php:980
-msgid "Font size"
-msgstr ""
-
-#: ../../godmode/reporting/visual_console_builder.wizard.php:256
-#: ../../include/functions_visual_map_editor.php:612
-#: ../../include/rest-api/models/VisualConsole/Items/SimpleValue.php:371
-msgid "Process"
-msgstr ""
-
-#: ../../godmode/reporting/visual_console_builder.wizard.php:259
-#: ../../include/functions_visual_map_editor.php:615
-msgid "Min value"
-msgstr ""
-
-#: ../../godmode/reporting/visual_console_builder.wizard.php:260
-#: ../../godmode/reporting/visual_console_builder.wizard.php:278
-#: ../../include/functions_visual_map_editor.php:616
-#: ../../include/functions_visual_map_editor.php:682
-msgid "Max value"
-msgstr ""
-
-#: ../../godmode/reporting/visual_console_builder.wizard.php:261
-#: ../../include/functions_visual_map_editor.php:617
-msgid "Avg value"
-msgstr ""
-
-#: ../../godmode/reporting/visual_console_builder.wizard.php:273
-msgid "Width (px)"
-msgstr ""
-
-#: ../../godmode/reporting/visual_console_builder.wizard.php:295
-#: ../../include/functions_visual_map_editor.php:687
-#: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:459
-msgid "Bubble"
-msgstr ""
-
-#: ../../godmode/reporting/visual_console_builder.wizard.php:307
-#: ../../include/functions_visual_map_editor.php:711
-#: ../../include/functions_visual_map_editor.php:729
-#: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:509
-msgid "Value to show"
-msgstr ""
-
-#: ../../godmode/reporting/visual_console_builder.wizard.php:309
-#: ../../include/functions_visual_map_editor.php:692
-#: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:504
-msgid "Percent"
-msgstr ""
-
-#: ../../godmode/reporting/visual_console_builder.wizard.php:378
-msgid "One item per agent"
-msgstr ""
-
-#: ../../godmode/reporting/visual_console_builder.wizard.php:408
-msgid "If you select several agents, only the common modules will be displayed"
-msgstr ""
-
-#: ../../godmode/reporting/visual_console_builder.wizard.php:448
-#: ../../godmode/reporting/visual_console_builder.wizard.php:765
-msgid "Agent - Module"
-msgstr ""
-
-#: ../../godmode/reporting/visual_console_builder.wizard.php:465
-msgid "Enable link agent"
-msgstr ""
-
-#: ../../godmode/reporting/visual_console_builder.wizard.php:476
-msgid "Set Parent"
-msgstr ""
-
-#: ../../godmode/reporting/visual_console_builder.wizard.php:479
-msgid "Item created in the visualmap"
-msgstr ""
-
-#: ../../godmode/reporting/visual_console_builder.wizard.php:480
-msgid "Use the agents relationship (from selected agents)"
-msgstr ""
-
-#: ../../godmode/reporting/visual_console_builder.wizard.php:489
-msgid "Item in the map"
-msgstr ""
-
-#: ../../godmode/reporting/visual_console_builder.wizard.php:490
-#, php-format
-msgid "The parenting relationships in %s will be drawn on the map."
-msgstr ""
-
-#: ../../godmode/reporting/visual_console_builder.wizard.php:510
-#: ../../godmode/reporting/visual_console_builder.wizard.php:514
-msgid "Are you sure to add many elements\\nin visual map?"
-msgstr ""
-
-#: ../../godmode/reporting/visual_console_builder.wizard.php:538
-#: ../../mobile/operation/agents.php:444 ../../mobile/operation/modules.php:786
-#: ../../mobile/operation/module_graph.php:475
-#: ../../mobile/operation/events.php:864
-#: ../../mobile/operation/tactical.php:238
-msgid "Loading..."
-msgstr ""
-
-#: ../../godmode/reporting/visual_console_builder.wizard.php:686
-msgid "Please select any module or modules."
-msgstr ""
-
-#: ../../godmode/reporting/visual_console_builder.editor.php:163
-msgid "Min allowed size is 1024x768"
-msgstr ""
-
-#: ../../godmode/reporting/visual_console_builder.editor.php:167
-#: ../../godmode/reporting/visual_console_builder.editor.php:169
-#: ../../godmode/reporting/visual_console_builder.editor.php:171
-#: ../../operation/snmpconsole/snmp_browser.php:222
-msgid "Action in progress"
-msgstr ""
-
-#: ../../godmode/reporting/visual_console_builder.editor.php:167
-msgid "Loading in progress"
-msgstr ""
-
-#: ../../godmode/reporting/visual_console_builder.editor.php:169
-msgid "Saving in progress"
-msgstr ""
-
-#: ../../godmode/reporting/visual_console_builder.editor.php:171
-msgid "Deletion in progress"
-msgstr ""
-
-#: ../../godmode/reporting/graph_builder.main.php:215
-#: ../../include/lib/Dashboard/Widgets/custom_graph.php:316
-#: ../../operation/reporting/graph_viewer.php:365
-msgid "Stacked area"
-msgstr ""
-
-#: ../../godmode/reporting/graph_builder.main.php:217
-#: ../../include/lib/Dashboard/Widgets/custom_graph.php:318
-#: ../../operation/reporting/graph_viewer.php:367
-msgid "Stacked line"
-msgstr ""
-
-#: ../../godmode/reporting/graph_builder.main.php:218
-#: ../../include/lib/Dashboard/Widgets/custom_graph.php:319
-#: ../../operation/reporting/graph_viewer.php:368
-msgid "Bullet chart"
-msgstr ""
-
-#: ../../godmode/reporting/graph_builder.main.php:219
-#: ../../include/lib/Dashboard/Widgets/custom_graph.php:320
-#: ../../operation/reporting/graph_viewer.php:369
-msgid "Gauge"
-msgstr ""
-
-#: ../../godmode/reporting/graph_builder.main.php:220
-msgid "Horizontal bars"
-msgstr ""
-
-#: ../../godmode/reporting/graph_builder.main.php:221
-msgid "Vertical bars"
-msgstr ""
-
-#: ../../godmode/reporting/graph_builder.main.php:222
-#: ../../include/lib/Dashboard/Widgets/custom_graph.php:323
-#: ../../operation/reporting/graph_viewer.php:372
-msgid "Pie"
-msgstr ""
-
-#: ../../godmode/reporting/graph_builder.main.php:230
-msgid "Equalize maximum thresholds"
-msgstr ""
-
-#: ../../godmode/reporting/graph_builder.main.php:258
-msgid "Add summatory series"
-msgstr ""
-
-#: ../../godmode/reporting/graph_builder.main.php:268
-msgid "Add average series"
-msgstr ""
-
-#: ../../godmode/reporting/graph_builder.main.php:279
-msgid "Modules and series"
-msgstr ""
-
-#: ../../godmode/um_client/views/offline.php:64
-msgid "Drop the package here or"
-msgstr ""
-
-#: ../../godmode/um_client/views/offline.php:65
-msgid "Browse it"
-msgstr ""
-
-#: ../../godmode/um_client/views/offline.php:66
-msgid "The package has been uploaded successfully."
-msgstr ""
-
-#: ../../godmode/um_client/views/offline.php:67
-#, php-format
-msgid ""
-"Please keep in mind that this package is going to override your actual %s "
-"files and that it's recommended to conduct a backup before continuing the "
-"updating process."
-msgstr ""
-
-#: ../../godmode/um_client/views/offline.php:68
-msgid "Click on the file below to begin."
-msgstr ""
-
-#: ../../godmode/um_client/views/offline.php:69
-#: ../../godmode/um_client/views/online.php:122
-#: ../../godmode/um_client/views/online.php:163
-msgid "This action will upgrade this console to version "
-msgstr ""
-
-#: ../../godmode/um_client/views/offline.php:70
-msgid "This action will upgrade all servers to version "
-msgstr ""
-
-#: ../../godmode/um_client/views/offline.php:72
-#: ../../godmode/um_client/views/online.php:89
-msgid "Updating to"
-msgstr ""
-
-#: ../../godmode/um_client/views/offline.php:73
-#: ../../godmode/um_client/views/online.php:90
-msgid "Do you really want to leave our brilliant application?"
-msgstr ""
-
-#: ../../godmode/um_client/views/offline.php:74
-#: ../../godmode/um_client/views/online.php:91
-msgid "There are no updates available"
-msgstr ""
-
-#: ../../godmode/um_client/views/offline.php:75
-#: ../../godmode/um_client/views/online.php:92
-msgid "Searching for updates..."
-msgstr ""
-
-#: ../../godmode/um_client/views/offline.php:76
-#: ../../godmode/um_client/views/online.php:93
-msgid "Package"
-msgstr ""
-
-#: ../../godmode/um_client/views/offline.php:77
-#: ../../godmode/um_client/views/online.php:94
-msgid "Successfully updated."
-msgstr ""
-
-#: ../../godmode/um_client/views/offline.php:78
-msgid "Package rejected. These package changes will not apply."
-msgstr ""
-
-#: ../../godmode/um_client/views/offline.php:80
-#, php-format
-msgid ""
-"This update does not correspond with next version of %s. Are you sure you "
-"want to install it?"
-msgstr ""
-
-#: ../../godmode/um_client/views/offline.php:81
-msgid ""
-"This server update does not correspond with current console version. Are you "
-"sure you want to install it?"
-msgstr ""
-
-#: ../../godmode/um_client/views/offline.php:82
-msgid ""
-"File name does not match required format: package_NUMBER.oum or "
-"pandorafms_server[_enterprise]-7.0NG.NUMBER_x86[_64].tar.gz, you can use "
-"numbers with decimals."
-msgstr ""
-
-#: ../../godmode/um_client/views/offline.php:83
-msgid "Files included in this package"
-msgstr ""
-
-#: ../../godmode/um_client/views/offline.php:84
-msgid "Ignore"
-msgstr ""
-
-#: ../../godmode/um_client/views/offline.php:85
-msgid "Verify package signature"
-msgstr ""
-
-#: ../../godmode/um_client/views/offline.php:86
-#, php-format
-msgid ""
-"Copy into the textarea the signature validation token you can retrieve from "
-"%s and press OK to verify the package, press ignore to avoid signature "
-"verification"
-msgstr ""
-
-#: ../../godmode/um_client/views/register.php:48
-msgid "Register to Update Manager"
-msgstr ""
-
-#: ../../godmode/um_client/views/register.php:55
-#, php-format
-msgid "Keep this %s console up to date with latest updates."
-msgstr ""
-
-#: ../../godmode/um_client/views/register.php:62
-#, php-format
-msgid ""
-"When you subscribe to the %s Update Manager service, you accept that we\n"
-"            register your %s instance as an identifier on a database owned "
-"by %s. This data will solely be used to\n"
-"            provide you with information about %s and will not be conceded "
-"to third parties. You can unregister from\n"
-"            said database at any time from the Update Manager options."
-msgstr ""
-
-#: ../../godmode/um_client/views/register.php:75
-msgid "Visit our privacy policy for more information"
-msgstr ""
-
-#: ../../godmode/um_client/views/register.php:79
-#: ../../include/class/Diagnostics.class.php:1908
-msgid "Your email"
-msgstr ""
-
-#: ../../godmode/um_client/views/register.php:97
-msgid "OK!"
-msgstr ""
-
-#: ../../godmode/um_client/views/register.php:112
-msgid "Are you sure you don't want to use update manager?"
-msgstr ""
-
-#: ../../godmode/um_client/views/register.php:116
-msgid ""
-"You will need to update your system manually, through source code or RPM\n"
-"            packages to be up to date with latest updates."
-msgstr ""
-
-#: ../../godmode/um_client/views/register.php:207
-msgid "Unsuccessful subscription"
-msgstr ""
-
-#: ../../godmode/um_client/views/register.php:212
-msgid "Pandora successfully subscribed with UID: "
-msgstr ""
-
-#: ../../godmode/um_client/views/online.php:64
-msgid "Update to next version"
-msgstr ""
-
-#: ../../godmode/um_client/views/online.php:65
-msgid "Update to latest version"
-msgstr ""
-
-#: ../../godmode/um_client/views/online.php:123
-#: ../../godmode/um_client/views/online.php:164
-msgid "Update to"
-msgstr ""
-
-#: ../../godmode/um_client/views/online.php:144
-#: ../../godmode/um_client/views/online.php:148
-msgid "Failed to update to "
-msgstr ""
-
-#: ../../godmode/um_client/views/online.php:187
-msgid "Failed to update:"
-msgstr ""
-
-#: ../../godmode/um_client/index.php:99
-#, php-format
-msgid ""
-"You cannot use update manager %s. You are exceding monitoring limits by %s "
-"elements. Please update your license or disable enterprise section by moving "
-"enterprise directory to another location and try again."
-msgstr ""
-
-#: ../../godmode/um_client/index.php:110
-#, php-format
-msgid ""
-"You cannot use update manager %s. This license has expired %d days ago. "
-"Please update your license or disable enterprise section by moving "
-"enterprise directory to another location and try again."
-msgstr ""
-
-#: ../../godmode/um_client/index.php:127
-#, php-format
-msgid ""
-"You cannot use update manager %s. This license is a trial license to test "
-"all %s features. Please update your license to unlock all %s features."
-msgstr ""
-
-#: ../../godmode/um_client/index.php:227
-#, php-format
-msgid "Master server version %s does not match console version %s."
-msgstr ""
-
-#: ../../godmode/um_client/index.php:240
-#, php-format
-msgid ""
-"'%s' recommended value is %s or greater. Please, change it on your PHP "
-"configuration file (php.ini) or contact with administrator"
-msgstr ""
-
-#: ../../godmode/um_client/index.php:329
-msgid "Update manager online requires registration."
-msgstr ""
-
-#: ../../godmode/um_client/index.php:334
-msgid ""
-"Applying offline patches may make your console unusable, we recommend to "
-"completely backup your files before applying any patch."
-msgstr ""
-
-#: ../../godmode/um_client/lib/UpdateManager/UI/Manager.php:431
-msgid "Next update"
-msgstr ""
-
-#: ../../godmode/um_client/lib/UpdateManager/UI/Manager.php:436
-msgid "Show details"
-msgstr ""
-
-#: ../../godmode/um_client/lib/UpdateManager/UI/Manager.php:461
-#, php-format
-msgid "%s update(s) available more"
-msgstr ""
-
-#: ../../godmode/um_client/lib/UpdateManager/UI/Manager.php:473
-msgid "details"
-msgstr ""
-
-#: ../../godmode/um_client/lib/UpdateManager/UI/Manager.php:552
-msgid "Failed creating temporary directory."
-msgstr ""
-
-#: ../../godmode/um_client/lib/UpdateManager/UI/Manager.php:562
-msgid "Failed storing uploaded file."
-msgstr ""
-
-#: ../../godmode/um_client/lib/UpdateManager/UI/Manager.php:594
-#, php-format
-msgid "Invalid extension. The package needs to be in `%s` or `%s` format."
-msgstr ""
-
-#: ../../godmode/um_client/lib/UpdateManager/UI/Manager.php:603
-msgid "Failed uploading file."
-msgstr ""
-
-#: ../../godmode/um_client/lib/UpdateManager/UI/Manager.php:639
-msgid "Signatures does not match."
-msgstr ""
-
-#: ../../godmode/um_client/lib/UpdateManager/UI/Manager.php:699
-#, php-format
-msgid "Update %s successfully installed."
-msgstr ""
-
-#: ../../godmode/um_client/lib/UpdateManager/UI/Manager.php:702
-#, php-format
-msgid "Failed while updating: %s"
-msgstr ""
-
-#: ../../godmode/um_client/lib/UpdateManager/Client.php:664
-#, php-format
-msgid "server update %d"
-msgstr ""
-
-#: ../../godmode/um_client/lib/UpdateManager/Client.php:666
-#, php-format
-msgid "console update %d"
-msgstr ""
-
-#: ../../godmode/um_client/lib/UpdateManager/Client.php:684
-#, php-format
-msgid "Downloading %s %.2f/ %.2f MB."
-msgstr ""
-
-#: ../../godmode/um_client/lib/UpdateManager/Client.php:695
-#, php-format
-msgid "Downloading %.2f MB"
-msgstr ""
-
-#: ../../godmode/um_client/lib/UpdateManager/Client.php:1356
-#, php-format
-msgid "Failed to analyze package: %s"
-msgstr ""
-
-#: ../../godmode/um_client/lib/UpdateManager/Client.php:1447
-msgid "Searching update package"
-msgstr ""
-
-#: ../../godmode/um_client/lib/UpdateManager/Client.php:1476
-msgid "Retrieving update"
-msgstr ""
-
-#: ../../godmode/um_client/lib/UpdateManager/Client.php:1567
-msgid "Extracting package"
-msgstr ""
-
-#: ../../godmode/um_client/lib/UpdateManager/Client.php:1631
-msgid "Testing files"
-msgstr ""
-
-#: ../../godmode/um_client/lib/UpdateManager/Client.php:1663
-#, php-format
-msgid "Applying MR %s"
-msgstr ""
-
-#: ../../godmode/um_client/lib/UpdateManager/Client.php:1700
-msgid "Applying file updates"
-msgstr ""
-
-#: ../../godmode/um_client/lib/UpdateManager/Client.php:1722
-msgid "Retrieving server update"
-msgstr ""
-
-#: ../../godmode/um_client/lib/UpdateManager/Client.php:1737
-msgid "Cleaning"
-msgstr ""
-
-#: ../../godmode/um_client/lib/UpdateManager/Client.php:1755
-msgid "Completed"
-msgstr ""
-
-#: ../../godmode/um_client/lib/UpdateManager/Client.php:1791
-msgid "Updating to "
-msgstr ""
-
-#: ../../godmode/events/event_filter.php:139
-#: ../../godmode/events/event_edit_filter.php:344
-#: ../../include/lib/Dashboard/Widgets/events_list.php:378
-#: ../../operation/events/events_list.php:966
-#: ../../operation/events/events.php:1087
-#: ../../operation/events/events.php:1611
-msgid "Event status"
-msgstr ""
-
-#: ../../godmode/events/event_responses.editor.php:73
-msgid "Edit event responses"
-msgstr ""
-
-#: ../../godmode/events/event_responses.editor.php:121
-msgid "Location"
-msgstr ""
-
-#: ../../godmode/events/event_responses.editor.php:121
-msgid "For Command type Modal Window mode is enforced"
-msgstr ""
-
-#: ../../godmode/events/event_responses.editor.php:123
-msgid "Modal window"
-msgstr ""
-
-#: ../../godmode/events/event_responses.editor.php:124
-msgid "New window"
-msgstr ""
-
-#: ../../godmode/events/event_responses.editor.php:144
-#: ../../include/ajax/events.php:1927
-#: ../../include/class/ExternalTools.class.php:354
-#: ../../include/lib/Dashboard/Widgets/events_list.php:771
-#: ../../include/functions_events.php:3818
-#: ../../operation/events/events.php:1834
-msgid "Parameters"
-msgstr ""
-
-#: ../../godmode/events/event_responses.editor.php:173
-#: ../../include/class/AgentWizard.class.php:541
-#: ../../include/functions_snmp_browser.php:766
-msgid "Local console"
-msgstr ""
-
-#: ../../godmode/events/event_responses.editor.php:190
-#: ../../include/class/AgentWizard.class.php:693
-msgid "Server to execute command"
-msgstr ""
-
-#: ../../godmode/events/event_responses.editor.php:196
-msgid "Command timeout (s)"
-msgstr ""
-
-#: ../../godmode/events/event_responses.editor.php:202
-msgid "Display command"
-msgstr ""
-
-#: ../../godmode/events/event_responses.editor.php:202
-msgid ""
-"If enabled the command will be displayed to any user that can execute this "
-"event response"
-msgstr ""
-
-#: ../../godmode/events/event_edit_filter.php:243
-msgid "Update Filter"
-msgstr ""
-
-#: ../../godmode/events/event_edit_filter.php:245
-msgid "Create Filter"
-msgstr ""
-
-#: ../../godmode/events/event_edit_filter.php:255
-#: ../../include/ajax/custom_fields.php:571
-#: ../../include/ajax/custom_fields.php:618
-#: ../../include/ajax/custom_fields.php:662 ../../include/ajax/events.php:670
-#: ../../operation/events/events_list.php:429
-msgid "Filter name"
-msgstr ""
-
-#: ../../godmode/events/event_edit_filter.php:258
-msgid "Save in group"
-msgstr ""
-
-#: ../../godmode/events/event_edit_filter.php:258
-msgid ""
-"This group will be use to restrict the visibility of this filter with ACLs"
-msgstr ""
-
-#: ../../godmode/events/event_edit_filter.php:365
-#: ../../mobile/operation/home.php:166
-#: ../../operation/events/events_list.php:765
-#: ../../operation/events/events.php:1235
-msgid "Agent search"
-msgstr ""
-
-#: ../../godmode/events/event_edit_filter.php:398
-#: ../../mobile/operation/events.php:705 ../../include/functions_snmp.php:401
-#: ../../include/class/AuditLog.class.php:187
-#: ../../include/lib/Dashboard/Widgets/events_list.php:336
-#: ../../include/lib/Dashboard/Widgets/top_n_events_by_module.php:270
-#: ../../include/lib/Dashboard/Widgets/top_n_events_by_group.php:270
-#: ../../operation/snmpconsole/snmp_view.php:616
-#: ../../operation/events/events_list.php:969
-#: ../../operation/events/events.php:1100
-#: ../../operation/events/events.php:1641
-msgid "Max. hours old"
-msgstr ""
-
-#: ../../godmode/events/event_edit_filter.php:408
-#: ../../operation/events/events_list.php:786
-#: ../../operation/events/events.php:1286
-msgid "User ack."
-msgstr ""
-
-#: ../../godmode/events/event_edit_filter.php:408
-msgid "Choose between the users who have validated an event. "
-msgstr ""
-
-#: ../../godmode/events/event_edit_filter.php:430
-#: ../../operation/events/events_list.php:979
-#: ../../operation/events/events.php:1107
-msgid "All events"
-msgstr ""
-
-#: ../../godmode/events/event_edit_filter.php:431
-#: ../../operation/events/events_list.php:980
-#: ../../operation/events/events.php:1108
-#: ../../operation/events/events.php:1661
-msgid "Group events"
-msgstr ""
-
-#: ../../godmode/events/event_edit_filter.php:432
-#: ../../mobile/operation/events.php:528
-#: ../../include/functions_events.php:4958
-#: ../../operation/events/events_list.php:978
-#: ../../operation/events/events.php:1118
-msgid "Repeated"
-msgstr ""
-
-#: ../../godmode/events/event_edit_filter.php:443
-#: ../../operation/events/events_list.php:867
-msgid "Date from"
-msgstr ""
-
-#: ../../godmode/events/event_edit_filter.php:446
-#: ../../operation/events/events_list.php:871
-msgid "Date to"
-msgstr ""
-
-#: ../../godmode/events/event_edit_filter.php:487
-#: ../../operation/events/events_list.php:888
-#: ../../operation/events/events_list.php:891
-#: ../../operation/events/events.php:1457
-#: ../../operation/events/events.php:1460
-msgid "Events with following tags"
-msgstr ""
-
-#: ../../godmode/events/event_edit_filter.php:540
-#: ../../operation/events/events_list.php:889
-#: ../../operation/events/events_list.php:892
-#: ../../operation/events/events.php:1458
-#: ../../operation/events/events.php:1461
-msgid "Events without following tags"
-msgstr ""
-
-#: ../../godmode/events/event_edit_filter.php:592
-#: ../../operation/events/events_list.php:833
-#: ../../operation/events/events.php:1309
-msgid "Alert events"
-msgstr ""
-
-#: ../../godmode/events/event_edit_filter.php:596
-#: ../../operation/events/events_list.php:836
-#: ../../operation/events/events.php:1293
-msgid "Filter alert events"
-msgstr ""
-
-#: ../../godmode/events/event_edit_filter.php:597
-#: ../../operation/events/events_list.php:837
-#: ../../operation/events/events.php:1294
-msgid "Only alert events"
-msgstr ""
-
-#: ../../godmode/events/event_edit_filter.php:608
-#: ../../operation/events/events_list.php:805
-#: ../../operation/events/events.php:1252
-msgid "Module search"
-msgstr ""
-
-#: ../../godmode/events/event_edit_filter.php:624
-#: ../../include/functions_events.php:6676
-#: ../../operation/events/events_list.php:997
-#: ../../operation/events/events.php:1184
-#: ../../operation/events/events.build_table.php:303
-msgid "Extra ID"
-msgstr ""
-
-#: ../../godmode/events/event_edit_filter.php:627
-#: ../../godmode/events/custom_events.php:107
-#: ../../godmode/wizards/HostDevices.class.php:958
-#: ../../include/class/CustomNetScan.class.php:468
-#: ../../include/functions_events.php:202
-#: ../../include/functions_events.php:268
-#: ../../include/functions_events.php:3709
-#: ../../include/functions_events.php:6658
-#: ../../include/functions_events.php:7044
-#: ../../operation/events/events_list.php:999
-#: ../../operation/events/events.php:1197
-#: ../../operation/events/events.build_table.php:273
-#: ../../operation/events/events.build_table.php:702
-msgid "Comment"
-msgstr ""
-
-#: ../../godmode/events/event_edit_filter.php:631
-msgid "Id souce event"
-msgstr ""
-
-#: ../../godmode/events/events.php:100 ../../include/ajax/events.php:1475
-msgid "Responses"
-msgstr ""
-
-#: ../../godmode/events/event_responses.list.php:32
-msgid "No responses found"
-msgstr ""
-
-#: ../../godmode/events/event_responses.list.php:92
-msgid "Create response"
-msgstr ""
-
-#: ../../godmode/events/custom_events.php:74
-msgid "Show event fields"
-msgstr ""
-
-#: ../../godmode/events/custom_events.php:76
-msgid "Load the fields from previous events"
-msgstr ""
-
-#: ../../godmode/events/custom_events.php:76
-msgid "Event fields will be loaded. Do you want to continue?"
-msgstr ""
-
-#: ../../godmode/events/custom_events.php:94
-#: ../../include/functions_events.php:229
-msgid "Event Id"
-msgstr ""
-
-#: ../../godmode/events/custom_events.php:95
-#: ../../mobile/operation/events.php:124 ../../include/functions_events.php:232
-#: ../../include/functions_events.php:6595
-#: ../../operation/events/events.build_table.php:172
-msgid "Event Name"
-msgstr ""
-
-#: ../../godmode/events/custom_events.php:96
-#: ../../include/functions_events.php:235
-#: ../../operation/events/events.php:1871
-msgid "Agent ID"
-msgstr ""
-
-#: ../../godmode/events/custom_events.php:97
-msgid "Agent Name"
-msgstr ""
-
-#: ../../godmode/events/custom_events.php:98
-#: ../../include/functions_events.php:311
-msgid "Agent IP"
-msgstr ""
-
-#: ../../godmode/events/custom_events.php:103
-#: ../../include/functions_events.php:256
-#: ../../operation/events/events.build_table.php:232
-msgid "Event Type"
-msgstr ""
-
-#: ../../godmode/events/custom_events.php:104
-#: ../../include/class/ModuleTemplates.class.php:1207
-#: ../../include/class/AgentWizard.class.php:1185
-#: ../../include/class/AgentWizard.class.php:3965
-#: ../../include/functions_events.php:259
-#: ../../operation/events/events.build_table.php:243
-msgid "Module Name"
-msgstr ""
-
-#: ../../godmode/events/custom_events.php:110
-#: ../../include/functions_events.php:277
-msgid "Extra Id"
-msgstr ""
-
-#: ../../godmode/events/custom_events.php:112
-#: ../../include/functions_events.php:207
-#: ../../include/functions_events.php:283
-#: ../../include/functions_events.php:6682
-#: ../../operation/events/events.build_table.php:313
-msgid "ACK Timestamp"
-msgstr ""
-
-#: ../../godmode/events/custom_events.php:113
-#: ../../include/functions_events.php:208
-#: ../../include/functions_events.php:286
-#: ../../include/functions_events.php:4613
-#: ../../include/functions_events.php:6688
-#: ../../operation/events/events.php:2742
-#: ../../operation/events/events.build_table.php:323
-msgid "Instructions"
-msgstr ""
-
-#: ../../godmode/events/custom_events.php:114
-#: ../../include/functions_events.php:289
-msgid "Server Name"
-msgstr ""
-
-#: ../../godmode/events/custom_events.php:117
-#: ../../include/functions_events.php:307
-msgid "Severity mini"
-msgstr ""
-
-#: ../../godmode/events/custom_events.php:118
-#: ../../include/functions_events.php:298
-#: ../../include/functions_events.php:5080
-msgid "Module custom ID"
-msgstr ""
-
-#: ../../godmode/events/event_responses.php:51
-msgid "Response added succesfully"
-msgstr ""
-
-#: ../../godmode/events/event_responses.php:53
-msgid "Response cannot be added"
-msgstr ""
-
-#: ../../godmode/events/event_responses.php:77
-msgid "Response updated succesfully"
-msgstr ""
-
-#: ../../godmode/events/event_responses.php:79
-msgid "Response cannot be updated"
-msgstr ""
-
-#: ../../godmode/events/event_responses.php:89
-msgid "Response deleted succesfully"
-msgstr ""
-
-#: ../../godmode/events/event_responses.php:91
-msgid "Response cannot be deleted"
-msgstr ""
-
-#: ../../godmode/wizards/HostDevices.class.php:152
-msgid "Net Scan"
-msgstr ""
-
-#: ../../godmode/wizards/HostDevices.class.php:159
-msgid "Import CSV"
-msgstr ""
-
-#: ../../godmode/wizards/HostDevices.class.php:165
-#: ../../godmode/wizards/DiscoveryTaskList.class.php:775
-msgid "Agent deployment"
-msgstr ""
-
-#: ../../godmode/wizards/HostDevices.class.php:172
-msgid "Custom NetScan"
-msgstr ""
-
-#: ../../godmode/wizards/HostDevices.class.php:180
-msgid "Manage NetScan scripts"
-msgstr ""
-
-#: ../../godmode/wizards/HostDevices.class.php:196
-#: ../../include/class/ManageNetScanScripts.class.php:104
-#: ../../include/class/CustomNetScan.class.php:352
-msgid "Host & Devices"
-msgstr ""
-
-#: ../../godmode/wizards/HostDevices.class.php:325
-#, php-format
-msgid "Invalid mimetype for csv file: %s"
-msgstr ""
-
-#: ../../godmode/wizards/HostDevices.class.php:348
-#, php-format
-msgid "Invalid content readed from csv file: %s"
-msgstr ""
-
-#: ../../godmode/wizards/HostDevices.class.php:391
-msgid ""
-"This network scan task has been already defined. Please edit it or create a "
-"new one."
-msgstr ""
-
-#: ../../godmode/wizards/HostDevices.class.php:412
-#: ../../include/class/CustomNetScan.class.php:158
-msgid "You have no access to edit this task."
-msgstr ""
-
-#: ../../godmode/wizards/HostDevices.class.php:422
-#: ../../include/class/CustomNetScan.class.php:168
-msgid "You must provide a task name."
-msgstr ""
-
-#: ../../godmode/wizards/HostDevices.class.php:427
-#: ../../include/class/CustomNetScan.class.php:173
-msgid "You must select a Discovery Server."
-msgstr ""
-
-#: ../../godmode/wizards/HostDevices.class.php:433
-msgid "You must provide a valid network."
-msgstr ""
-
-#: ../../godmode/wizards/HostDevices.class.php:438
-#: ../../include/class/CustomNetScan.class.php:178
-msgid "You must select a valid group."
-msgstr ""
-
-#: ../../godmode/wizards/HostDevices.class.php:483
-#: ../../godmode/wizards/HostDevices.class.php:595
-#: ../../include/class/CustomNetScan.class.php:222
-msgid "Failed to find network scan task."
-msgstr ""
-
-#: ../../godmode/wizards/HostDevices.class.php:696
-msgid "NetScan"
-msgstr ""
-
-#: ../../godmode/wizards/HostDevices.class.php:700
-#, php-format
-msgid "\"%s\" features"
-msgstr ""
-
-#: ../../godmode/wizards/HostDevices.class.php:728
-#: ../../include/class/CustomNetScan.class.php:403
-msgid "Internal error, please re-run this wizard."
-msgstr ""
-
-#: ../../godmode/wizards/HostDevices.class.php:799
-#: ../../include/class/CustomNetScan.class.php:521
-msgid "Manual interval means that it will be executed only On-demand"
-msgstr ""
-
-#: ../../godmode/wizards/HostDevices.class.php:806
-#: ../../include/functions_reporting_html.php:2174
-#: ../../include/class/CustomNetScan.class.php:528
-msgid "Defined"
-msgstr ""
-
-#: ../../godmode/wizards/HostDevices.class.php:807
-#: ../../godmode/wizards/DiscoveryTaskList.class.php:664
-#: ../../include/class/CustomNetScan.class.php:529
-msgid "Manual"
-msgstr ""
-
-#: ../../godmode/wizards/HostDevices.class.php:813
-#: ../../include/class/CustomNetScan.class.php:545
-msgid "The minimum recomended interval for Recon Task is 5 minutes"
-msgstr ""
-
-#: ../../godmode/wizards/HostDevices.class.php:838
-#: ../../godmode/wizards/DiscoveryTaskList.class.php:540
-#: ../../include/class/CustomNetScan.class.php:446
-#: ../../operation/servers/recon_view.php:94
-msgid "Task name"
-msgstr ""
-
-#: ../../godmode/wizards/HostDevices.class.php:848
-#: ../../include/functions_servers.php:595
-#: ../../include/functions_servers.php:1341
-#: ../../include/class/CustomNetScan.class.php:479
-#: ../../general/first_task/recon_view.php:22
-msgid "Discovery server"
-msgstr ""
-
-#: ../../godmode/wizards/HostDevices.class.php:849
-#: ../../include/class/CustomNetScan.class.php:480
-msgid ""
-"You must select a Discovery Server to run the Task, otherwise the Recon Task "
-"will never run"
-msgstr ""
-
-#: ../../godmode/wizards/HostDevices.class.php:868
-msgid "Use CSV file definition"
-msgstr ""
-
-#: ../../godmode/wizards/HostDevices.class.php:869
-msgid "Define targets using csv o network definition."
-msgstr ""
-
-#: ../../godmode/wizards/HostDevices.class.php:887
-msgid "Networks (csv)"
-msgstr ""
-
-#: ../../godmode/wizards/HostDevices.class.php:888
-msgid ""
-"You can upload a CSV file. Each line must contain a network in IP/MASK "
-"format. For instance: 192.168.1.1/32"
-msgstr ""
-
-#: ../../godmode/wizards/HostDevices.class.php:900
-msgid "Networks (current)"
-msgstr ""
-
-#: ../../godmode/wizards/HostDevices.class.php:901
-msgid "Please upload a new file to overwrite this content."
-msgstr ""
-
-#: ../../godmode/wizards/HostDevices.class.php:916
-#: ../../godmode/wizards/DiscoveryTaskList.class.php:549
-#: ../../include/functions_ui.php:861 ../../operation/menu.php:75
-#: ../../operation/servers/recon_view.php:100
-msgid "Network"
-msgstr ""
-
-#: ../../godmode/wizards/HostDevices.class.php:917
-msgid ""
-"You can specify several networks, separated by commas, for example: "
-"192.168.50.0/24,192.168.60.0/24"
-msgstr ""
-
-#: ../../godmode/wizards/HostDevices.class.php:1047
-msgid "Filter by opened ports"
-msgstr ""
-
-#: ../../godmode/wizards/HostDevices.class.php:1049
-msgid ""
-"Targets will be scanned if at least one of defined ports (comma separated) "
-"is open."
-msgstr ""
-
-#: ../../godmode/wizards/HostDevices.class.php:1062
-msgid "Auto discover known hardware"
-msgstr ""
-
-#: ../../godmode/wizards/HostDevices.class.php:1064
-msgid ""
-"Targets will be monitorized based on its <i>Private Enterprise Number</i>. "
-"Requires SNMP."
-msgstr ""
-
-#: ../../godmode/wizards/HostDevices.class.php:1079
-msgid "Module <i>Host Alive</i> will be added to discovered agents by default."
-msgstr ""
-
-#: ../../godmode/wizards/HostDevices.class.php:1127
-#, php-format
-msgid ""
-"Configured networks could generate %d agents, your license only allows %d, "
-"'review results' is mandatory."
-msgstr ""
-
-#: ../../godmode/wizards/HostDevices.class.php:1135
-#: ../../godmode/wizards/DiscoveryTaskList.class.php:860
-msgid "Review results"
-msgstr ""
-
-#: ../../godmode/wizards/HostDevices.class.php:1137
-msgid "Targets must be validated by user before create agents."
-msgstr ""
-
-#: ../../godmode/wizards/HostDevices.class.php:1163
-msgid "Apply autoconfiguration rules"
-msgstr ""
-
-#: ../../godmode/wizards/HostDevices.class.php:1165
-msgid ""
-"System is able to auto configure detected host & devices by applying your "
-"defined configuration rules."
-msgstr ""
-
-#: ../../godmode/wizards/HostDevices.class.php:1181
-msgid "SNMP enabled"
-msgstr ""
-
-#: ../../godmode/wizards/HostDevices.class.php:1223
-msgid "SNMP communities to try with"
-msgstr ""
-
-#: ../../godmode/wizards/HostDevices.class.php:1225
-msgid ""
-"You can specify several values, separated by commas, for example: public,"
-"mysecret,1234"
-msgstr ""
-
-#: ../../godmode/wizards/HostDevices.class.php:1248
-msgid "Context"
-msgstr ""
-
-#: ../../godmode/wizards/HostDevices.class.php:1353
-msgid "OS detection"
-msgstr ""
-
-#: ../../godmode/wizards/HostDevices.class.php:1365
-msgid "Name resolution"
-msgstr ""
-
-#: ../../godmode/wizards/HostDevices.class.php:1376
-msgid "Parent detection"
-msgstr ""
-
-#: ../../godmode/wizards/HostDevices.class.php:1387
-msgid "Parent recursion"
-msgstr ""
-
-#: ../../godmode/wizards/HostDevices.class.php:1398
-msgid "VLAN enabled"
-msgstr ""
-
-#: ../../godmode/wizards/HostDevices.class.php:1409
-msgid "WMI enabled"
-msgstr ""
-
-#: ../../godmode/wizards/HostDevices.class.php:1434
-#: ../../godmode/wizards/HostDevices.class.php:1437
-msgid "No credentials available"
-msgstr ""
-
-#: ../../godmode/wizards/HostDevices.class.php:1447
-msgid "Credentials to try with"
-msgstr ""
-
-#: ../../godmode/wizards/HostDevices.class.php:1589
-#: ../../include/class/CustomNetScan.class.php:758
-msgid "Task configured."
-msgstr ""
-
-#: ../../godmode/wizards/HostDevices.class.php:1593
-#: ../../include/class/CustomNetScan.class.php:762
-msgid "Wizard failed. Cannot configure task."
-msgstr ""
-
-#: ../../godmode/wizards/DiscoveryTaskList.class.php:249
-msgid "Task successfully deleted"
-msgstr ""
-
-#: ../../godmode/wizards/DiscoveryTaskList.class.php:353
-msgid "Console Task successfully deleted"
-msgstr ""
-
-#: ../../godmode/wizards/DiscoveryTaskList.class.php:395
-msgid "Task successfully disabled"
-msgstr ""
-
-#: ../../godmode/wizards/DiscoveryTaskList.class.php:440
-msgid "Task successfully enabled"
-msgstr ""
-
-#: ../../godmode/wizards/DiscoveryTaskList.class.php:472
-#: ../../operation/servers/recon_view.php:33
-msgid "Discovery Server is disabled"
-msgstr ""
-
-#: ../../godmode/wizards/DiscoveryTaskList.class.php:536
-#: ../../godmode/wizards/DiscoveryTaskList.class.php:626
-#: ../../include/ajax/module.php:1052 ../../include/functions_ui.php:1153
-#: ../../operation/agentes/group_view.php:218
-#: ../../operation/agentes/group_view.php:273
-#: ../../operation/servers/recon_view.php:91
-#: ../../operation/servers/recon_view.php:123
-msgid "Force"
-msgstr ""
-
-#: ../../godmode/wizards/DiscoveryTaskList.class.php:543
-#: ../../include/functions_events.php:209
-msgid "Server name"
-msgstr ""
-
-#: ../../godmode/wizards/DiscoveryTaskList.class.php:555
-msgid "Task type"
-msgstr ""
-
-#: ../../godmode/wizards/DiscoveryTaskList.class.php:558
-#: ../../operation/servers/recon_view.php:109
-#: ../../operation/servers/recon_view.php:158
-msgid "Progress"
-msgstr ""
-
-#: ../../godmode/wizards/DiscoveryTaskList.class.php:561
-#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:367
-#: ../../operation/servers/recon_view.php:112
-msgid "Updated at"
-msgstr ""
-
-#: ../../godmode/wizards/DiscoveryTaskList.class.php:634
-msgid "This task has not been completely defined, please edit it"
-msgstr ""
-
-#: ../../godmode/wizards/DiscoveryTaskList.class.php:684
-msgid "Discovery Cloud Azure Compute"
-msgstr ""
-
-#: ../../godmode/wizards/DiscoveryTaskList.class.php:688
-msgid "Cloud.Azure.Compute"
-msgstr ""
-
-#: ../../godmode/wizards/DiscoveryTaskList.class.php:697
-msgid "Discovery Cloud AWS EC2"
-msgstr ""
-
-#: ../../godmode/wizards/DiscoveryTaskList.class.php:701
-msgid "Cloud.AWS.EC2"
-msgstr ""
-
-#: ../../godmode/wizards/DiscoveryTaskList.class.php:710
-msgid "Discovery Cloud RDS"
-msgstr ""
-
-#: ../../godmode/wizards/DiscoveryTaskList.class.php:714
-msgid "Discovery.Cloud.Aws.RDS"
-msgstr ""
-
-#: ../../godmode/wizards/DiscoveryTaskList.class.php:723
-msgid "Discovery Cloud S3"
-msgstr ""
-
-#: ../../godmode/wizards/DiscoveryTaskList.class.php:727
-msgid "Discovery.Cloud.Aws.S3"
-msgstr ""
-
-#: ../../godmode/wizards/DiscoveryTaskList.class.php:736
-msgid "Discovery Applications MySQL"
-msgstr ""
-
-#: ../../godmode/wizards/DiscoveryTaskList.class.php:740
-msgid "Discovery.App.MySQL"
-msgstr ""
-
-#: ../../godmode/wizards/DiscoveryTaskList.class.php:749
-msgid "Discovery Applications Oracle"
-msgstr ""
-
-#: ../../godmode/wizards/DiscoveryTaskList.class.php:753
-msgid "Discovery.App.Oracle"
-msgstr ""
-
-#: ../../godmode/wizards/DiscoveryTaskList.class.php:762
-msgid "Discovery Applications DB2"
-msgstr ""
-
-#: ../../godmode/wizards/DiscoveryTaskList.class.php:766
-msgid "Discovery.App.DB2"
-msgstr ""
-
-#: ../../godmode/wizards/DiscoveryTaskList.class.php:777
-msgid "Discovery.Agent.Deployment"
-msgstr ""
-
-#: ../../godmode/wizards/DiscoveryTaskList.class.php:785
-msgid "Discovery Applications Microsoft SQL Server"
-msgstr ""
-
-#: ../../godmode/wizards/DiscoveryTaskList.class.php:787
-msgid "Discovery.App.Microsoft SQL Server"
-msgstr ""
-
-#: ../../godmode/wizards/DiscoveryTaskList.class.php:798
-msgid "Discovery NetScan"
-msgstr ""
-
-#: ../../godmode/wizards/DiscoveryTaskList.class.php:802
-msgid "Discovery.NetScan"
-msgstr ""
-
-#: ../../godmode/wizards/DiscoveryTaskList.class.php:848
-msgid "Not executed yet"
-msgstr ""
-
-#: ../../godmode/wizards/DiscoveryTaskList.class.php:872
-msgid "View summary"
-msgstr ""
-
-#: ../../godmode/wizards/DiscoveryTaskList.class.php:893
-msgid "View map"
-msgstr ""
-
-#: ../../godmode/wizards/DiscoveryTaskList.class.php:917
-#: ../../godmode/wizards/DiscoveryTaskList.class.php:943
-msgid "Edit task"
-msgstr ""
-
-#: ../../godmode/wizards/DiscoveryTaskList.class.php:927
-#: ../../godmode/wizards/DiscoveryTaskList.class.php:953
-msgid "Delete task"
-msgstr ""
-
-#: ../../godmode/wizards/DiscoveryTaskList.class.php:966
-msgid "enable task"
-msgstr ""
-
-#: ../../godmode/wizards/DiscoveryTaskList.class.php:976
-msgid "Disable task"
-msgstr ""
-
-#: ../../godmode/wizards/DiscoveryTaskList.class.php:995
-msgid "has no discovery tasks assigned"
-msgstr ""
-
-#: ../../godmode/wizards/DiscoveryTaskList.class.php:1002
-msgid "Server Tasks"
-msgstr ""
-
-#: ../../godmode/wizards/DiscoveryTaskList.class.php:1009
-#: ../../include/ajax/snmp_browser.ajax.php:260
-#: ../../include/functions_ui.php:289
-#: ../../include/class/ConfigPEN.class.php:737
-#: ../../include/class/HelpFeedBack.class.php:359
-#: ../../include/class/Diagnostics.class.php:2085
-#: ../../include/class/CredentialStore.class.php:1173
-#: ../../include/class/ModuleTemplates.class.php:1417
-#: ../../include/class/WebServerModuleDebug.class.php:359
-#: ../../include/class/AgentWizard.class.php:5752
-#: ../../operation/visual_console/view.php:801
-msgid "Success"
-msgstr ""
-
-#: ../../godmode/wizards/DiscoveryTaskList.class.php:1010
-#: ../../include/ajax/snmp_browser.ajax.php:259
-#: ../../include/class/ConfigPEN.class.php:744
-#: ../../include/class/ConfigPEN.class.php:749
-#: ../../include/class/HelpFeedBack.class.php:354
-#: ../../include/class/Diagnostics.class.php:2084
-#: ../../include/class/CredentialStore.class.php:1180
-#: ../../include/class/CredentialStore.class.php:1185
-#: ../../include/class/ModuleTemplates.class.php:1424
-#: ../../include/class/ModuleTemplates.class.php:1429
-#: ../../include/class/WebServerModuleDebug.class.php:366
-#: ../../include/class/WebServerModuleDebug.class.php:371
-#: ../../include/class/AgentWizard.class.php:5759
-#: ../../include/class/AgentWizard.class.php:5764
-#: ../../include/lib/Dashboard/Widgets/wux_transaction.php:372
-#: ../../operation/visual_console/view.php:808
-#: ../../operation/visual_console/view.php:813
-msgid "Failed"
-msgstr ""
-
-#: ../../godmode/wizards/DiscoveryTaskList.class.php:1149
-msgid "Overall Progress"
-msgstr ""
-
-#: ../../godmode/wizards/DiscoveryTaskList.class.php:1168
-msgid "Scanning network"
-msgstr ""
-
-#: ../../godmode/wizards/DiscoveryTaskList.class.php:1172
-msgid "Checking"
-msgstr ""
-
-#: ../../godmode/wizards/DiscoveryTaskList.class.php:1176
-msgid "Finding AFT connectivity"
-msgstr ""
-
-#: ../../godmode/wizards/DiscoveryTaskList.class.php:1180
-msgid "Finding traceroute connectivity"
-msgstr ""
-
-#: ../../godmode/wizards/DiscoveryTaskList.class.php:1184
-msgid "Finding gateway connectivity"
-msgstr ""
-
-#: ../../godmode/wizards/DiscoveryTaskList.class.php:1188
-msgid "Searching for devices..."
-msgstr ""
-
-#: ../../godmode/wizards/DiscoveryTaskList.class.php:1192
-msgid "Analyzing application..."
-msgstr ""
-
-#: ../../godmode/wizards/DiscoveryTaskList.class.php:1196
-msgid "Executing custom queries..."
-msgstr ""
-
-#: ../../godmode/wizards/DiscoveryTaskList.class.php:1200
-msgid "Testing modules..."
-msgstr ""
-
-#: ../../godmode/wizards/DiscoveryTaskList.class.php:1204
-msgid "Processing results..."
-msgstr ""
-
-#: ../../godmode/wizards/DiscoveryTaskList.class.php:1208
-msgid "Processing..."
-msgstr ""
-
-#: ../../godmode/wizards/DiscoveryTaskList.class.php:1241
-#: ../../godmode/wizards/DiscoveryTaskList.class.php:1798
-#: ../../operation/agentes/log_sources_status.php:57
-msgid "Review"
-msgstr ""
-
-#: ../../godmode/wizards/DiscoveryTaskList.class.php:1318
-msgid "Host&devices total"
-msgstr ""
-
-#: ../../godmode/wizards/DiscoveryTaskList.class.php:1323
-msgid "Agents monitored"
-msgstr ""
-
-#: ../../godmode/wizards/DiscoveryTaskList.class.php:1328
-msgid "Agents pending"
-msgstr ""
-
-#: ../../godmode/wizards/DiscoveryTaskList.class.php:1334
-msgid "Hosts discovered"
-msgstr ""
-
-#: ../../godmode/wizards/DiscoveryTaskList.class.php:1339
-msgid "Alive"
-msgstr ""
-
-#: ../../godmode/wizards/DiscoveryTaskList.class.php:1344
-msgid "Not alive"
-msgstr ""
-
-#: ../../godmode/wizards/DiscoveryTaskList.class.php:1350
-msgid "Responding SNMP"
-msgstr ""
-
-#: ../../godmode/wizards/DiscoveryTaskList.class.php:1355
-msgid "Responding WMI"
-msgstr ""
-
-#: ../../godmode/wizards/DiscoveryTaskList.class.php:1397
-msgid "Task completed."
-msgstr ""
-
-#: ../../godmode/wizards/DiscoveryTaskList.class.php:1399
-msgid "This task has never executed"
-msgstr ""
-
-#: ../../godmode/wizards/DiscoveryTaskList.class.php:1411
-msgid "Task queued, please wait."
-msgstr ""
-
-#: ../../godmode/wizards/DiscoveryTaskList.class.php:1455
-msgid ""
-"Please ensure instances or regions are being monitorized and 'scan and "
-"general monitoring' is enabled."
-msgstr ""
-
-#: ../../godmode/wizards/DiscoveryTaskList.class.php:1473
-#: ../../godmode/wizards/DiscoveryTaskList.class.php:1615
-msgid "Invalid task"
-msgstr ""
-
-#: ../../godmode/wizards/DiscoveryTaskList.class.php:1572
-msgid "Please select devices to be monitored"
-msgstr ""
-
-#: ../../godmode/wizards/DiscoveryTaskList.class.php:1575
-msgid "select all"
-msgstr ""
-
-#: ../../godmode/wizards/DiscoveryTaskList.class.php:1578
-msgid "deselect all"
-msgstr ""
-
-#: ../../godmode/wizards/DiscoveryTaskList.class.php:1581
-msgid "expand all"
-msgstr ""
-
-#: ../../godmode/wizards/DiscoveryTaskList.class.php:1584
-msgid "collapse all"
-msgstr ""
-
-#: ../../godmode/wizards/DiscoveryTaskList.class.php:1598
-msgid "No devices found in temporary resources, please re-launch."
-msgstr ""
-
-#: ../../godmode/wizards/DiscoveryTaskList.class.php:1665
-#, php-format
-msgid "Your selection exceeds the agents available on your license. Limit %d"
-msgstr ""
-
-#: ../../godmode/wizards/DiscoveryTaskList.class.php:1689
-#: ../../godmode/wizards/DiscoveryTaskList.class.php:1708
-msgid "Removed"
-msgstr ""
-
-#: ../../godmode/wizards/DiscoveryTaskList.class.php:1745
-msgid "No changes. Re-Scheduled"
-msgstr ""
-
-#: ../../godmode/wizards/DiscoveryTaskList.class.php:1747
-msgid "Scheduled for creation"
-msgstr ""
-
-#: ../../godmode/wizards/DiscoveryTaskList.class.php:1774
-msgid "Cancelled"
-msgstr ""
-
-#: ../../godmode/wizards/DiscoveryTaskList.class.php:1775
-msgid "Server has been restarted while executing this task, please retry."
-msgstr ""
-
-#: ../../godmode/wizards/DiscoveryTaskList.class.php:1782
-#: ../../godmode/wizards/DiscoveryTaskList.class.php:1788
-#: ../../include/help/clippy/operation_agentes_ver_agente.php:40
-#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:119
-#: ../../operation/servers/recon_view.php:140
-msgid "Done"
-msgstr ""
-
-#: ../../godmode/wizards/DiscoveryTaskList.class.php:1786
-#: ../../godmode/wizards/DiscoveryTaskList.class.php:1803
-msgid "Not started"
-msgstr ""
-
-#: ../../godmode/wizards/DiscoveryTaskList.class.php:1790
-#: ../../operation/servers/recon_view.php:142
-msgid "Pending"
-msgstr ""
-
-#: ../../godmode/wizards/DiscoveryTaskList.class.php:1806
-#: ../../include/functions_ui.php:3402
-msgid "Processing"
-msgstr ""
-
-#: ../../godmode/wizards/DiscoveryTaskList.class.php:1808
-msgid "Searching"
-msgstr ""
-
-#: ../../godmode/servers/servers.build_table.php:37
-msgid "There are no servers configured into the database"
-msgstr ""
-
-#: ../../godmode/servers/servers.build_table.php:70
-msgid "Lag"
-msgstr ""
-
-#: ../../godmode/servers/servers.build_table.php:70
-msgid "Avg. Delay(sec)/Modules delayed"
-msgstr ""
-
-#: ../../godmode/servers/servers.build_table.php:71
-msgid "T/Q"
-msgstr ""
-
-#: ../../godmode/servers/servers.build_table.php:71
-msgid "Threads / Queued modules currently"
-msgstr ""
-
-#: ../../godmode/servers/servers.build_table.php:104
-msgid "Server has crashed."
-msgstr ""
-
-#: ../../godmode/servers/servers.build_table.php:112
-msgid "Server is stopped."
-msgstr ""
-
-#: ../../godmode/servers/servers.build_table.php:120
-msgid "This is a master server"
-msgstr ""
-
-#: ../../godmode/servers/servers.build_table.php:124
-msgid "Exec server enabled"
-msgstr ""
-
-#: ../../godmode/servers/servers.build_table.php:139
-#: ../../godmode/servers/servers.build_table.php:145
-msgid "of"
-msgstr ""
-
-#: ../../godmode/servers/servers.build_table.php:182
-msgid "Manage Discovery tasks"
-msgstr ""
-
-#: ../../godmode/servers/servers.build_table.php:197
-msgid "Reset module status and fired alert counts"
-msgstr ""
-
-#: ../../godmode/servers/servers.build_table.php:208
-msgid "Claim back SNMP modules"
-msgstr ""
-
-#: ../../godmode/servers/servers.build_table.php:246
-msgid "Modules run by this server will stop working. Do you want to continue?"
-msgstr ""
-
-#: ../../godmode/servers/servers.build_table.php:273
-msgid "Tactical server information"
-msgstr ""
-
-#: ../../godmode/servers/modificar_server.php:34
-msgid "Update Server"
-msgstr ""
-
-#: ../../godmode/servers/modificar_server.php:40
-#: ../../godmode/servers/plugin.php:345 ../../godmode/servers/plugin.php:844
-msgid "Standard"
-msgstr ""
-
-#: ../../godmode/servers/modificar_server.php:75
-msgid "Exec Server"
-msgstr ""
-
-#: ../../godmode/servers/modificar_server.php:83
-msgid "Leave blank to use SSH default port (22)"
-msgstr ""
-
-#: ../../godmode/servers/modificar_server.php:88
-msgid "Check Exec Server"
-msgstr ""
-
-#: ../../godmode/servers/modificar_server.php:104
-msgid "Credential boxes"
-msgstr ""
-
-#: ../../godmode/servers/modificar_server.php:128
-msgid "Standard editor"
-msgstr ""
-
-#: ../../godmode/servers/modificar_server.php:132
-msgid "Advanced editor"
-msgstr ""
-
-#: ../../godmode/servers/modificar_server.php:139
-msgid "Remote Configuration"
-msgstr ""
-
-#: ../../godmode/servers/modificar_server.php:148
-#, php-format
-msgid "%s servers"
-msgstr ""
-
-#: ../../godmode/servers/modificar_server.php:155
-#: ../../godmode/servers/modificar_server.php:166
-msgid "Unsuccessfull action"
-msgstr ""
-
-#: ../../godmode/servers/modificar_server.php:157
-#: ../../godmode/servers/modificar_server.php:168
-msgid "Successfully action"
-msgstr ""
-
-#: ../../godmode/servers/modificar_server.php:178
-msgid "Server deleted successfully"
-msgstr ""
-
-#: ../../godmode/servers/modificar_server.php:180
-msgid "There was a problem deleting the server"
-msgstr ""
-
-#: ../../godmode/servers/modificar_server.php:199
-msgid "Server updated successfully"
-msgstr ""
-
-#: ../../godmode/servers/modificar_server.php:201
-msgid "There was a problem updating the server"
-msgstr ""
-
-#: ../../godmode/servers/plugin_registration.php:59
-#: ../../godmode/servers/plugin.php:289 ../../godmode/servers/plugin.php:616
-msgid "To manage plugin you must activate centralized management"
-msgstr ""
-
-#: ../../godmode/servers/plugin_registration.php:65
-msgid "PLUGIN REGISTRATION"
-msgstr ""
-
-#: ../../godmode/servers/plugin_registration.php:76
-#, php-format
-msgid ""
-"This console is not manager of this environment, please manage this feature "
-"from feature from %s."
-msgstr ""
-
-#: ../../godmode/servers/plugin_registration.php:95
-msgid "Plugin Registration"
-msgstr ""
-
-#: ../../godmode/servers/plugin_registration.php:99
-#: ../../godmode/servers/plugin.php:294
-msgid "Plugin registration"
-msgstr ""
-
-#: ../../godmode/servers/plugin_registration.php:103
-msgid "You can get more plugins in our"
-msgstr ""
-
-#: ../../godmode/servers/plugin_registration.php:105
-msgid "Public Resource Library"
-msgstr ""
-
-#: ../../godmode/servers/plugin_registration.php:133
-msgid "Failed to create temporary directory"
-msgstr ""
-
-#: ../../godmode/servers/plugin_registration.php:152
-msgid "Cannot load INI file"
-msgstr ""
-
-#: ../../godmode/servers/plugin_registration.php:177
-msgid "Plugin exec not found. Aborting!"
-msgstr ""
-
-#: ../../godmode/servers/plugin_registration.php:188
-msgid "Plugin already registered. Aborting!"
-msgstr ""
-
-#: ../../godmode/servers/plugin_registration.php:355
-msgid "Plug-in Remote Registered unsuccessfull"
-msgstr ""
-
-#: ../../godmode/servers/plugin_registration.php:358
-msgid "Please check the syntax of file \"plugin_definition.ini\""
-msgstr ""
-
-#: ../../godmode/servers/plugin_registration.php:498
-msgid "Module plugin registered"
-msgstr ""
-
-#: ../../godmode/servers/plugin_registration.php:503
-msgid "Registered successfully"
-msgstr ""
-
-#: ../../godmode/servers/plugin_registration.php:516
-msgid "Unable to uncompress uploaded file"
-msgstr ""
-
-#: ../../godmode/servers/plugin_registration.php:534
-#, php-format
-msgid "Cannot move uploaded file to %s."
-msgstr ""
-
-#: ../../godmode/servers/plugin.php:73
-msgid "Network Components"
-msgstr ""
-
-#: ../../godmode/servers/plugin.php:173
-#: ../../include/functions_filemanager.php:764
-msgid "Edit file"
-msgstr ""
-
-#: ../../godmode/servers/plugin.php:192
-msgid "Compatibility mode"
-msgstr ""
-
-#: ../../godmode/servers/plugin.php:302
-msgid "Plugin update"
-msgstr ""
-
-#: ../../godmode/servers/plugin.php:313 ../../godmode/servers/plugin.php:635
-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:344
-msgid "Plugin type"
-msgstr ""
-
-#: ../../godmode/servers/plugin.php:346 ../../godmode/servers/plugin.php:846
-msgid "Nagios"
-msgstr ""
-
-#: ../../godmode/servers/plugin.php:351
-msgid "Max. timeout"
-msgstr ""
-
-#: ../../godmode/servers/plugin.php:351
-msgid ""
-"This value only will be applied if is minor than the server general "
-"configuration plugin timeout"
-msgstr ""
-
-#: ../../godmode/servers/plugin.php:351
-msgid "If you set a 0 seconds timeout, the server plugin timeout will be used"
-msgstr ""
-
-#: ../../godmode/servers/plugin.php:400
-msgid "Plugin command"
-msgstr ""
-
-#: ../../godmode/servers/plugin.php:400
-msgid ""
-"Specify interpreter and plugin path. The server needs permissions to run it."
-msgstr ""
-
-#: ../../godmode/servers/plugin.php:412
-msgid "Plug-in parameters"
-msgstr ""
-
-#: ../../godmode/servers/plugin.php:491
-#: ../../include/class/ManageNetScanScripts.class.php:636
-msgid "Default value"
-msgstr ""
-
-#: ../../godmode/servers/plugin.php:504
-#: ../../include/class/ManageNetScanScripts.class.php:667
-msgid "Hide value"
-msgstr ""
-
-#: ../../godmode/servers/plugin.php:505
-#: ../../include/class/ManageNetScanScripts.class.php:669
-msgid "This field will show up as dots like a password"
-msgstr ""
-
-#: ../../godmode/servers/plugin.php:525 ../../include/functions_ui.php:1437
-#: ../../include/class/ManageNetScanScripts.class.php:690
-msgid "Help"
-msgstr ""
-
-#: ../../godmode/servers/plugin.php:553
-#: ../../include/class/ManageNetScanScripts.class.php:724
-msgid "Add macro"
-msgstr ""
-
-#: ../../godmode/servers/plugin.php:567
-#: ../../include/class/ManageNetScanScripts.class.php:742
-msgid "Delete macro"
-msgstr ""
-
-#: ../../godmode/servers/plugin.php:580 ../../godmode/servers/plugin.php:585
-msgid "Parameters macros"
-msgstr ""
-
-#: ../../godmode/servers/plugin.php:622
-#, php-format
-msgid "Plug-ins registered on %s"
-msgstr ""
-
-#: ../../godmode/servers/plugin.php:644
-msgid "You need to create your own plugins with Windows compatibility"
-msgstr ""
-
-#: ../../godmode/servers/plugin.php:710
-msgid "Problem updating plugin"
-msgstr ""
-
-#: ../../godmode/servers/plugin.php:712
-msgid "Plugin updated successfully"
-msgstr ""
-
-#: ../../godmode/servers/plugin.php:770
-msgid "Problem creating plugin"
-msgstr ""
-
-#: ../../godmode/servers/plugin.php:772
-msgid "Plugin created successfully"
-msgstr ""
-
-#: ../../godmode/servers/plugin.php:784
-msgid "Problem deleting plugin"
-msgstr ""
-
-#: ../../godmode/servers/plugin.php:786 ../../godmode/servers/plugin.php:798
-msgid "Plugin deleted successfully"
-msgstr ""
-
-#: ../../godmode/servers/plugin.php:883
-msgid "All the modules that are using this plugin will be deleted"
-msgstr ""
-
-#: ../../godmode/servers/plugin.php:900
-msgid "There are no plugins in the system"
-msgstr ""
-
-#: ../../godmode/servers/plugin.php:914
-#, php-format
-msgid "List of modules and components created by \"%s\" "
-msgstr ""
-
-#: ../../godmode/servers/plugin.php:1020 ../../godmode/servers/plugin.php:1036
-msgid "Some modules or components are using the plugin"
-msgstr ""
-
-#: ../../godmode/servers/plugin.php:1021
-msgid ""
-"The modules or components should be updated manually or using the bulk "
-"operations for plugins after this change"
-msgstr ""
-
-#: ../../godmode/servers/plugin.php:1023
-msgid "Are you sure you want to perform this action?"
-msgstr ""
-
-#: ../../godmode/servers/plugin.php:1037
-msgid "Are you sure you want to unlock this item?"
-msgstr ""
-
-#: ../../godmode/servers/plugin.php:1057
-msgid ""
-"The plugin command cannot be updated because some modules or components are "
-"using the plugin."
-msgstr ""
-
-#: ../../godmode/servers/plugin.php:1063
-msgid ""
-"The plugin macros cannot be updated because some modules or components are "
-"using the plugin"
-msgstr ""
-
-#: ../../godmode/servers/discovery.php:182
-msgid "You must create a task first"
-msgstr ""
-
-#: ../../godmode/tag/tag.php:114
-msgid "Number of modules"
-msgstr ""
-
-#: ../../godmode/tag/tag.php:116
-msgid "Number of policy modules"
-msgstr ""
-
-#: ../../godmode/tag/tag.php:137 ../../godmode/tag/edit_tag.php:54
-#: ../../godmode/tag/edit_tag.php:72
-msgid "List tags"
-msgstr ""
-
-#: ../../godmode/tag/tag.php:149 ../../godmode/tag/edit_tag.php:82
-msgid "Tags configuration"
-msgstr ""
-
-#: ../../godmode/tag/tag.php:165
-msgid "Error deleting tag"
-msgstr ""
-
-#: ../../godmode/tag/tag.php:168
-msgid "Successfully deleted tag"
-msgstr ""
-
-#: ../../godmode/tag/tag.php:184
-#, php-format
-msgid ""
-"This node is configured with centralized mode. All tags information is read "
-"only. Go to %s to manage it."
-msgstr ""
-
-#: ../../godmode/tag/tag.php:266
-msgid "Tag name"
-msgstr ""
-
-#: ../../godmode/tag/tag.php:268
-msgid "Detail information"
-msgstr ""
-
-#: ../../godmode/tag/tag.php:269
-msgid "Number of modules affected"
-msgstr ""
-
-#: ../../godmode/tag/tag.php:270 ../../godmode/tag/edit_tag.php:220
-#: ../../include/functions_cron.php:540 ../../include/functions_cron.php:608
-#: ../../operation/search_users.php:44
-msgid "Email"
-msgstr ""
-
-#: ../../godmode/tag/tag.php:271 ../../godmode/tag/edit_tag.php:232
-msgid "Phone"
-msgstr ""
-
-#: ../../godmode/tag/tag.php:300
-msgid "Tag details"
-msgstr ""
-
-#: ../../godmode/tag/tag.php:333
-#, php-format
-msgid "Emails for the tag: %s"
-msgstr ""
-
-#: ../../godmode/tag/tag.php:356
-#, php-format
-msgid "Phones for the tag: %s"
-msgstr ""
-
-#: ../../godmode/tag/tag.php:402
-msgid "No tags defined"
-msgstr ""
-
-#: ../../godmode/tag/tag.php:417
-msgid "Create tag"
-msgstr ""
-
-#: ../../godmode/tag/edit_tag.php:115
-msgid "Error updating tag"
-msgstr ""
-
-#: ../../godmode/tag/edit_tag.php:118
-msgid "Successfully updated tag"
-msgstr ""
-
-#: ../../godmode/tag/edit_tag.php:144
-msgid "Error creating tag"
-msgstr ""
-
-#: ../../godmode/tag/edit_tag.php:149
-msgid "Successfully created tag"
-msgstr ""
-
-#: ../../godmode/tag/edit_tag.php:182
-msgid "Update Tag"
-msgstr ""
-
-#: ../../godmode/tag/edit_tag.php:186
-msgid "Create Tag"
-msgstr ""
-
-#: ../../godmode/tag/edit_tag.php:208
-#: ../../include/functions_reporting.php:6262
-#: ../../include/lib/Dashboard/Widgets/url.php:216
-msgid "Url"
-msgstr ""
-
-#: ../../godmode/tag/edit_tag.php:210
-msgid "Hyperlink to help information that has to exist previously."
-msgstr ""
-
-#: ../../godmode/tag/edit_tag.php:222
-msgid "Associated Email direction to use later in alerts associated to Tags."
-msgstr ""
-
-#: ../../godmode/tag/edit_tag.php:234
-msgid "Associated phone number to use later in alerts associated to Tags."
-msgstr ""
-
-#: ../../godmode/category/category.php:60
-#: ../../godmode/category/category.php:74
-#: ../../godmode/category/edit_category.php:44
-#: ../../godmode/category/edit_category.php:58
-msgid "List categories"
-msgstr ""
-
-#: ../../godmode/category/category.php:86
-#: ../../godmode/category/category.php:88
-#: ../../godmode/category/edit_category.php:70
-#: ../../godmode/category/edit_category.php:72
-msgid "Categories configuration"
-msgstr ""
-
-#: ../../godmode/category/category.php:105
-#, php-format
-msgid ""
-"This node is configured with centralized mode. All categories information is "
-"read only. Go to %s to manage it."
-msgstr ""
-
-#: ../../godmode/category/category.php:117
-msgid "Error deleting category"
-msgstr ""
-
-#: ../../godmode/category/category.php:120
-msgid "Successfully deleted category"
-msgstr ""
-
-#: ../../godmode/category/category.php:159
-msgid "Category name"
-msgstr ""
-
-#: ../../godmode/category/category.php:217
-msgid "No categories found"
-msgstr ""
-
-#: ../../godmode/category/category.php:230
-#: ../../godmode/category/edit_category.php:156
-msgid "Create category"
-msgstr ""
-
-#: ../../godmode/category/edit_category.php:70
-msgid "Editor"
-msgstr ""
-
-#: ../../godmode/category/edit_category.php:89
-msgid "Error updating category"
-msgstr ""
-
-#: ../../godmode/category/edit_category.php:92
-msgid "Successfully updated category"
-msgstr ""
-
-#: ../../godmode/category/edit_category.php:111
-msgid "Error creating category"
-msgstr ""
-
-#: ../../godmode/category/edit_category.php:116
-msgid "Successfully created category"
-msgstr ""
-
-#: ../../godmode/category/edit_category.php:148
-msgid "Update category"
-msgstr ""
-
-#: ../../godmode/module_library/module_library_view.php:65
-msgid "Main view"
-msgstr ""
-
-#: ../../godmode/module_library/module_library_view.php:144
-msgid "View all categories"
-msgstr ""
-
-#: ../../godmode/module_library/module_library_view.php:155
-msgid "More details"
-msgstr ""
-
-#: ../../godmode/module_library/module_library_view.php:157
-msgid "View in Module Library"
-msgstr ""
-
-#: ../../godmode/module_library/module_library_view.php:158
-msgid "No module found"
-msgstr ""
-
-#: ../../godmode/module_library/module_library_view.php:159
-msgid "Problem with authentication. Check your internet connection"
-msgstr ""
-
-#: ../../godmode/module_library/module_library_view.php:160
-msgid "Invalid username or password"
-msgstr ""
-
-#: ../../godmode/module_library/module_library_view.php:161
-msgid "Error loading Module Library"
-msgstr ""
-
-#: ../../godmode/module_library/module_library_view.php:162
-msgid "Error loading category"
-msgstr ""
-
-#: ../../godmode/module_library/module_library_view.php:163
-msgid "Error loading categories"
-msgstr ""
-
-#: ../../godmode/module_library/module_library_view.php:164
-msgid "There is no such category"
-msgstr ""
-
-#: ../../godmode/module_library/module_library_view.php:165
-msgid "Error loading results"
-msgstr ""
-
-#: ../../mobile/include/functions_web.php:24
-#: ../../include/functions_reporting_html.php:4899
-#: ../../include/functions_reporting_html.php:5053
-msgid "Monitor"
-msgstr ""
-
-#: ../../mobile/include/functions_web.php:34
-#: ../../mobile/include/ui.class.php:225
-#: ../../mobile/include/user.class.php:402 ../../mobile/operation/home.php:147
-#: ../../general/header.php:428 ../../general/header.php:430
-msgid "Logout"
-msgstr ""
-
-#: ../../mobile/include/functions_web.php:83
-#, php-format
-msgid "Pandora FMS %s - Build %s"
-msgstr ""
-
-#: ../../mobile/include/functions_web.php:84
-#: ../../mobile/include/ui.class.php:321
-#: ../../include/functions_reporting.php:14473
-msgid "Generated at"
-msgstr ""
-
-#: ../../mobile/include/system.class.php:156
-msgid ""
-"Access to this page is restricted to authorized users only, please contact "
-"your system administrator if you should need help."
-msgstr ""
-
-#: ../../mobile/include/system.class.php:156
-#, php-format
-msgid ""
-"Please remember that any attempts to access this page will be recorded on "
-"the %s System Database."
-msgstr ""
-
-#: ../../mobile/include/ui.class.php:120
-#, php-format
-msgid "%s mobile"
-msgstr ""
-
-#: ../../mobile/include/ui.class.php:217
-#, php-format
-msgid "%s : Mobile"
-msgstr ""
-
-#: ../../mobile/include/ui.class.php:238 ../../mobile/operation/home.php:159
-msgid "Home"
-msgstr ""
-
-#: ../../mobile/include/ui.class.php:321
-#, php-format
-msgid "%s %s - Build %s"
-msgstr ""
-
-#: ../../mobile/include/ui.class.php:767
-msgid "Not found header."
-msgstr ""
-
-#: ../../mobile/include/ui.class.php:769
-msgid "Not found content."
-msgstr ""
-
-#: ../../mobile/include/ui.class.php:771
-msgid "Not found footer."
-msgstr ""
-
-#: ../../mobile/include/ui.class.php:773
-msgid "Incorrect form."
-msgstr ""
-
-#: ../../mobile/include/ui.class.php:775
-msgid "Incorrect grid."
-msgstr ""
-
-#: ../../mobile/include/ui.class.php:777
-msgid "Incorrect collapsible."
-msgstr ""
-
-#: ../../mobile/include/user.class.php:133
-msgid "User cannot log in into this console, please contact administrator"
-msgstr ""
-
-#: ../../mobile/include/user.class.php:226
-#: ../../mobile/include/user.class.php:241
-#: ../../mobile/include/user.class.php:248
-msgid "Double authentication failed"
-msgstr ""
-
-#: ../../mobile/include/user.class.php:227
-msgid "Secret code not found"
-msgstr ""
-
-#: ../../mobile/include/user.class.php:227
-msgid "Please contact the administrator to reset your double authentication"
-msgstr ""
-
-#: ../../mobile/include/user.class.php:242
-#: ../../include/ajax/double_auth.ajax.php:500 ../../index.php:332
-msgid "Invalid code"
-msgstr ""
-
-#: ../../mobile/include/user.class.php:249
-msgid "There was an error checking the code"
-msgstr ""
-
-#: ../../mobile/include/user.class.php:290
-msgid "Login Failed"
-msgstr ""
-
-#: ../../mobile/include/user.class.php:294
-msgid "User not found in database or incorrect password."
-msgstr ""
-
-#: ../../mobile/include/user.class.php:303
-msgid "Login out"
-msgstr ""
-
-#: ../../mobile/include/user.class.php:304 ../../general/login_page.php:521
-#, php-format
-msgid ""
-"Your session has ended. Please close your browser window to close this %s "
-"session."
-msgstr ""
-
-#: ../../mobile/include/user.class.php:334
-msgid "user"
-msgstr ""
-
-#: ../../mobile/include/user.class.php:341
-msgid "password"
-msgstr ""
-
-#: ../../mobile/include/user.class.php:346 ../../general/login_page.php:291
-msgid "Login"
-msgstr ""
-
-#: ../../mobile/include/user.class.php:366 ../../general/login_page.php:259
-msgid "Login with SAML"
-msgstr ""
-
-#: ../../mobile/include/user.class.php:429
-#: ../../mobile/include/user.class.php:430
-msgid "Authenticator code"
-msgstr ""
-
-#: ../../mobile/include/user.class.php:434 ../../general/login_page.php:310
-msgid "Check code"
-msgstr ""
-
-#: ../../mobile/index.php:256 ../../mobile/operation/agents.php:168
-#: ../../mobile/operation/modules.php:200 ../../mobile/operation/groups.php:59
-#: ../../mobile/operation/agent.php:99 ../../mobile/operation/alerts.php:158
-#: ../../mobile/operation/visualmap.php:191
-#: ../../mobile/operation/visualmaps.php:152
+#: ../../general/noaccess.php:130 ../../general/noaccess2.php:16
+#: ../../general/noaccess2.php:18 ../../general/noaccesssaml.php:130
+#: ../../enterprise/meta/general/metaconsole_no_activated.php:12
+#: ../../enterprise/meta/general/noaccess.php:130
+#: ../../enterprise/meta/general/noaccesssaml.php:130
+#: ../../mobile/operation/agent.php:117 ../../mobile/operation/modules.php:218
+#: ../../mobile/operation/visualmaps.php:159
+#: ../../mobile/operation/visualmap.php:185
+#: ../../mobile/operation/tactical.php:79 ../../mobile/operation/alerts.php:176
+#: ../../mobile/operation/events.php:468
 #: ../../mobile/operation/module_graph.php:255
-#: ../../mobile/operation/events.php:468 ../../mobile/operation/tactical.php:79
-#: ../../general/noaccesssaml.php:130 ../../general/noaccess.php:130
-#: ../../general/noaccess2.php:16 ../../general/noaccess2.php:18
+#: ../../mobile/operation/agents.php:186 ../../mobile/operation/groups.php:59
+#: ../../mobile/index.php:258
 msgid "You don't have access to this page"
 msgstr ""
 
-#: ../../mobile/operation/agents.php:199
-#, php-format
-msgid "Filter Agents by %s"
-msgstr ""
-
-#: ../../mobile/operation/agents.php:241 ../../mobile/operation/modules.php:306
-#: ../../mobile/operation/alerts.php:247 ../../mobile/operation/events.php:717
-msgid "Apply Filter"
-msgstr ""
-
-#: ../../mobile/operation/agents.php:435
-msgid "No agents"
-msgstr ""
-
-#: ../../mobile/operation/agents.php:530 ../../mobile/operation/modules.php:872
-#: ../../mobile/operation/alerts.php:360 ../../mobile/operation/events.php:1148
-msgid "(Default)"
-msgstr ""
-
-#: ../../mobile/operation/agents.php:536 ../../mobile/operation/modules.php:878
-#: ../../mobile/operation/alerts.php:373 ../../mobile/operation/events.php:1181
-#, php-format
-msgid "Group: %s"
-msgstr ""
-
-#: ../../mobile/operation/agents.php:543 ../../mobile/operation/modules.php:900
-#: ../../mobile/operation/alerts.php:380 ../../mobile/operation/events.php:1201
-#, php-format
-msgid "Status: %s"
-msgstr ""
-
-#: ../../mobile/operation/agents.php:550 ../../mobile/operation/modules.php:907
-#: ../../mobile/operation/alerts.php:387
-#, php-format
-msgid "Free Search: %s"
-msgstr ""
-
-#: ../../mobile/operation/modules.php:231
-#, php-format
-msgid "Filter Modules by %s"
-msgstr ""
-
-#: ../../mobile/operation/modules.php:529
-#: ../../mobile/operation/modules.php:592
-#: ../../include/functions_modules.php:2831
-#: ../../include/functions_modules.php:4065
-#: ../../include/functions_events.php:62
-#: ../../operation/agentes/status_monitor.php:1573
-#: ../../operation/search_modules.php:107
-#: ../../operation/events/events.php:2105
-msgid "NOT INIT"
-msgstr ""
-
-#: ../../mobile/operation/modules.php:535
-#: ../../mobile/operation/modules.php:558
-#: ../../mobile/operation/modules.php:598
-#: ../../mobile/operation/modules.php:621 ../../include/functions.php:1359
-#: ../../include/functions.php:1398 ../../include/functions_modules.php:2840
-#: ../../include/functions_modules.php:2846
-#: ../../include/functions_modules.php:4049
-#: ../../include/functions_modules.php:4081 ../../include/functions_ui.php:3740
-#: ../../include/functions_ui.php:3806 ../../include/class/Tree.class.php:651
-#: ../../include/lib/Module.php:570 ../../include/functions_events.php:56
-#: ../../include/functions_events.php:108
-#: ../../include/functions_events.php:171
-#: ../../operation/agentes/status_monitor.php:1580
-#: ../../operation/agentes/status_monitor.php:1586
-#: ../../operation/agentes/status_monitor.php:1663
-#: ../../operation/agentes/status_monitor.php:1669
-#: ../../operation/agentes/pandora_networkmap.view.php:1772
-#: ../../operation/agentes/pandora_networkmap.view.php:1780
-#: ../../operation/search_modules.php:113
-#: ../../operation/search_modules.php:140
-#: ../../operation/events/events.php:2001
-#: ../../operation/events/events.php:2068
-#: ../../operation/events/events.php:2095
-msgid "NORMAL"
-msgstr ""
-
-#: ../../mobile/operation/modules.php:541
-#: ../../mobile/operation/modules.php:566
-#: ../../mobile/operation/modules.php:604
-#: ../../mobile/operation/modules.php:629 ../../include/functions.php:1347
-#: ../../include/functions.php:1379 ../../include/functions_modules.php:2834
-#: ../../include/functions_modules.php:2850
-#: ../../include/functions_modules.php:4053
-#: ../../include/functions_modules.php:4073 ../../include/functions_ui.php:3746
-#: ../../include/functions_ui.php:3816 ../../include/class/Tree.class.php:621
-#: ../../include/lib/Module.php:554 ../../include/functions_events.php:59
-#: ../../include/functions_events.php:112
-#: ../../include/functions_events.php:156
-#: ../../operation/agentes/status_monitor.php:1594
-#: ../../operation/agentes/status_monitor.php:1602
-#: ../../operation/agentes/status_monitor.php:1679
-#: ../../operation/agentes/status_monitor.php:1685
-#: ../../operation/agentes/pandora_networkmap.view.php:1766
-#: ../../operation/agentes/pandora_networkmap.view.php:1785
-#: ../../operation/search_modules.php:119
-#: ../../operation/search_modules.php:148
-#: ../../operation/events/events.php:1976
-#: ../../operation/events/events.php:2074
-#: ../../operation/events/events.php:2100
-msgid "CRITICAL"
-msgstr ""
-
-#: ../../mobile/operation/modules.php:547
-#: ../../mobile/operation/modules.php:574
-#: ../../mobile/operation/modules.php:610
-#: ../../mobile/operation/modules.php:637 ../../include/functions.php:1350
-#: ../../include/functions.php:1386 ../../include/functions_modules.php:2837
-#: ../../include/functions_modules.php:2854
-#: ../../include/functions_modules.php:4057
-#: ../../include/functions_modules.php:4089 ../../include/functions_ui.php:3734
-#: ../../include/functions_ui.php:3811 ../../include/class/Tree.class.php:629
-#: ../../include/class/NetworkMap.class.php:2795
-#: ../../include/lib/Module.php:558 ../../include/functions_events.php:70
-#: ../../include/functions_events.php:104
-#: ../../include/functions_events.php:174
-#: ../../operation/agentes/status_monitor.php:1610
-#: ../../operation/agentes/status_monitor.php:1618
-#: ../../operation/agentes/status_monitor.php:1695
-#: ../../operation/agentes/status_monitor.php:1701
-#: ../../operation/agentes/pandora_networkmap.view.php:1769
-#: ../../operation/agentes/pandora_networkmap.view.php:1790
-#: ../../operation/search_modules.php:125
-#: ../../operation/search_modules.php:156
-#: ../../operation/events/events.php:2006
-#: ../../operation/events/events.php:2062
-#: ../../operation/events/events.php:2117
-msgid "WARNING"
-msgstr ""
-
-#: ../../mobile/operation/modules.php:558
-#: ../../mobile/operation/modules.php:566
-#: ../../mobile/operation/modules.php:574
-#: ../../mobile/operation/modules.php:621
-#: ../../mobile/operation/modules.php:629
-#: ../../mobile/operation/modules.php:637 ../../include/functions.php:1363
-#: ../../include/functions.php:1389 ../../include/functions_modules.php:2846
-#: ../../include/functions_modules.php:2850
-#: ../../include/functions_modules.php:2854
-#: ../../include/functions_modules.php:4061 ../../include/functions_ui.php:3753
-#: ../../include/functions_ui.php:3831 ../../include/class/Tree.class.php:635
-#: ../../include/lib/Module.php:561 ../../include/functions_events.php:73
-#: ../../include/functions_events.php:117
-#: ../../include/functions_events.php:177
-#: ../../operation/agentes/status_monitor.php:1626
-#: ../../operation/agentes/status_monitor.php:1634
-#: ../../operation/agentes/status_monitor.php:1663
-#: ../../operation/agentes/status_monitor.php:1669
-#: ../../operation/agentes/status_monitor.php:1679
-#: ../../operation/agentes/status_monitor.php:1685
-#: ../../operation/agentes/status_monitor.php:1695
-#: ../../operation/agentes/status_monitor.php:1701
-#: ../../operation/agentes/pandora_networkmap.view.php:1780
-#: ../../operation/agentes/pandora_networkmap.view.php:1785
-#: ../../operation/agentes/pandora_networkmap.view.php:1790
-#: ../../operation/search_modules.php:131
-#: ../../operation/search_modules.php:140
-#: ../../operation/search_modules.php:148
-#: ../../operation/search_modules.php:156
-#: ../../operation/events/events.php:1973
-#: ../../operation/events/events.php:2081
-#: ../../operation/events/events.php:2092
-msgid "UNKNOWN"
-msgstr ""
-
-#: ../../mobile/operation/modules.php:558
-#: ../../mobile/operation/modules.php:566
-#: ../../mobile/operation/modules.php:574
-#: ../../mobile/operation/modules.php:621
-#: ../../mobile/operation/modules.php:629
-#: ../../mobile/operation/modules.php:637
-#: ../../include/functions_modules.php:2846
-#: ../../include/functions_modules.php:2850
-#: ../../include/functions_modules.php:2854
-#: ../../operation/agentes/status_monitor.php:1663
-#: ../../operation/agentes/status_monitor.php:1669
-#: ../../operation/agentes/status_monitor.php:1679
-#: ../../operation/agentes/status_monitor.php:1685
-#: ../../operation/agentes/status_monitor.php:1695
-#: ../../operation/agentes/status_monitor.php:1701
-#: ../../operation/agentes/pandora_networkmap.view.php:1780
-#: ../../operation/agentes/pandora_networkmap.view.php:1785
-#: ../../operation/agentes/pandora_networkmap.view.php:1790
-#: ../../operation/search_modules.php:140
-#: ../../operation/search_modules.php:148
-#: ../../operation/search_modules.php:156
-msgid "Last status"
-msgstr ""
-
-#: ../../mobile/operation/modules.php:646
-msgid "Interval."
-msgstr ""
-
-#: ../../mobile/operation/modules.php:648
-msgid "Last update."
-msgstr ""
-
-#: ../../mobile/operation/modules.php:893
-#, php-format
-msgid "Module group: %s"
-msgstr ""
-
-#: ../../mobile/operation/modules.php:915
-#, php-format
-msgid "Tag: %s"
-msgstr ""
-
-#: ../../mobile/operation/home.php:66 ../../mobile/operation/visualmaps.php:177
-#: ../../operation/search_results.php:145 ../../operation/search_main.php:70
-msgid "Visual consoles"
-msgstr ""
-
-#: ../../mobile/operation/groups.php:149
-#: ../../include/functions_reporting_html.php:5348
-#: ../../include/functions_agents.php:3864
-msgid "Agents not init"
-msgstr ""
-
-#: ../../mobile/operation/groups.php:152
-#: ../../include/functions_reporting_html.php:5330
-#: ../../include/functions_agents.php:3830
-msgid "Agents critical"
-msgstr ""
-
-#: ../../mobile/operation/groups.php:155
-#: ../../include/functions_reporting_html.php:5342
-#: ../../include/functions_agents.php:3850
-msgid "Agents unknown"
-msgstr ""
-
-#: ../../mobile/operation/groups.php:173
-#: ../../include/lib/Dashboard/Widgets/system_group_status.php:576
-#: ../../operation/agentes/ver_agente.php:1077
-msgid "Alerts fired"
-msgstr ""
-
-#: ../../mobile/operation/agent.php:143
-msgid "No agent found"
-msgstr ""
-
-#: ../../mobile/operation/agent.php:219
-msgid "Modules by status"
-msgstr ""
-
-#: ../../mobile/operation/agent.php:249
-#: ../../include/functions_treeview.php:831
-msgid "Events (24h)"
-msgstr ""
-
-#: ../../mobile/operation/agent.php:357
-#, php-format
-msgid "Last %s Events"
-msgstr ""
-
-#: ../../mobile/operation/alerts.php:189
-#, php-format
-msgid "Filter Alerts by %s"
-msgstr ""
-
-#: ../../mobile/operation/alerts.php:327
-msgid "Last Fired"
-msgstr ""
-
-#: ../../mobile/operation/alerts.php:338
-msgid "No alerts"
-msgstr ""
-
-#: ../../mobile/operation/alerts.php:366
-#, php-format
-msgid "Standby: %s"
-msgstr ""
-
-#: ../../mobile/operation/visualmaps.php:208
-msgid "No maps defined"
-msgstr ""
-
-#: ../../mobile/operation/module_graph.php:359
-#: ../../mobile/operation/module_graph.php:371
-#, php-format
-msgid "%s: %s"
-msgstr ""
-
-#: ../../mobile/operation/module_graph.php:403
-#, php-format
-msgid "Options for %s : %s"
-msgstr ""
-
-#: ../../mobile/operation/module_graph.php:410
-msgid "Show Alerts"
-msgstr ""
-
-#: ../../mobile/operation/module_graph.php:418
-msgid "Show Events"
-msgstr ""
-
-#: ../../mobile/operation/module_graph.php:426
-#: ../../operation/agentes/stat_win.php:388
-#: ../../operation/agentes/stat_win.php:450
-msgid "Time compare (Separated)"
-msgstr ""
-
-#: ../../mobile/operation/module_graph.php:442
-#: ../../operation/agentes/stat_win.php:328
-msgid "Show unknown graph"
-msgstr ""
-
-#: ../../mobile/operation/module_graph.php:447
-msgid "Time range (hours)"
-msgstr ""
-
-#: ../../mobile/operation/module_graph.php:459
-#: ../../operation/agentes/stat_win.php:300
-#: ../../operation/agentes/stat_win.php:419
-#: ../../operation/agentes/interface_traffic_graph_win.php:181
-#: ../../operation/agentes/graphs.php:207
-#: ../../operation/agentes/exportdata.php:317
-msgid "Begin date"
-msgstr ""
-
-#: ../../mobile/operation/module_graph.php:466
-msgid "Update graph"
-msgstr ""
-
-#: ../../mobile/operation/module_graph.php:476
-msgid "Error get the graph"
-msgstr ""
-
-#: ../../mobile/operation/events.php:267
-#: ../../include/functions_reporting_html.php:1069
-#: ../../include/functions_reporting_html.php:1292
-#: ../../include/functions_reporting_html.php:2237
-#: ../../include/ajax/events.php:1713
-#: ../../include/functions_reporting.php:10164
-#: ../../include/functions_events.php:2609
-#: ../../include/functions_events.php:4741
-#: ../../include/functions_events.php:6749
-#: ../../operation/events/events.php:2190
-#: ../../operation/events/events.build_table.php:413
-msgid "New event"
-msgstr ""
-
-#: ../../mobile/operation/events.php:272
-#: ../../include/functions_reporting_html.php:1074
-#: ../../include/functions_reporting_html.php:1297
-#: ../../include/functions_reporting_html.php:2242
-#: ../../include/ajax/events.php:1718
-#: ../../include/functions_reporting.php:10169
-#: ../../include/functions_events.php:2614
-#: ../../include/functions_events.php:4747
-#: ../../include/functions_events.php:6754
-#: ../../operation/events/events.php:2196
-#: ../../operation/events/events.build_table.php:418
-msgid "Event validated"
-msgstr ""
-
-#: ../../mobile/operation/events.php:277
-#: ../../include/functions_reporting_html.php:1079
-#: ../../include/functions_reporting_html.php:1302
-#: ../../include/functions_reporting_html.php:2247
-#: ../../include/ajax/events.php:1723
-#: ../../include/functions_reporting.php:10174
-#: ../../include/functions_events.php:2619
-#: ../../include/functions_events.php:4753
-#: ../../include/functions_events.php:6759
-#: ../../operation/events/events.php:2202
-#: ../../operation/events/events.build_table.php:423
-msgid "Event in process"
-msgstr ""
-
-#: ../../mobile/operation/events.php:405 ../../mobile/operation/events.php:414
-#: ../../mobile/operation/events.php:642 ../../mobile/operation/events.php:643
-msgid "Preset Filters"
-msgstr ""
-
-#: ../../mobile/operation/events.php:485
-msgid "ERROR: Event detail"
-msgstr ""
-
-#: ../../mobile/operation/events.php:486
-msgid "Error connecting to DB."
-msgstr ""
-
-#: ../../mobile/operation/events.php:501
-msgid "Event detail"
-msgstr ""
-
-#: ../../mobile/operation/events.php:512
-#: ../../include/functions_events.php:4900
-#: ../../include/functions_events.php:6589
-#: ../../operation/events/events.build_table.php:162
-msgid "Event ID"
-msgstr ""
-
-#: ../../mobile/operation/events.php:540
-#: ../../include/functions_events.php:5000
-msgid "Acknowledged by"
-msgstr ""
-
-#: ../../mobile/operation/events.php:584
-msgid "Sucessful validate"
-msgstr ""
-
-#: ../../mobile/operation/events.php:586
-msgid "Fail validate"
-msgstr ""
-
-#: ../../mobile/operation/events.php:624
-#, php-format
-msgid "Filter Events by %s"
-msgstr ""
-
-#: ../../mobile/operation/events.php:858
-#: ../../include/functions_reporting_html.php:5704
-#: ../../include/functions_reporting_html.php:5889
-#: ../../include/functions_reporting.php:1976
-#: ../../include/functions_reporting.php:2275
-#: ../../include/functions_events.php:2533
-#: ../../include/functions_events.php:2536
-#: ../../operation/events/events.build_table.php:134
-#: ../../operation/events/events.build_table.php:1157
-msgid "No events"
-msgstr ""
-
-#: ../../mobile/operation/events.php:1153
-#, php-format
-msgid "Filter: %s"
-msgstr ""
-
-#: ../../mobile/operation/events.php:1165
-#, php-format
-msgid "Severity: %s"
-msgstr ""
-
-#: ../../mobile/operation/events.php:1194
-#, php-format
-msgid "Type: %s"
-msgstr ""
-
-#: ../../mobile/operation/events.php:1208
-#, php-format
-msgid "Free search: %s"
-msgstr ""
-
-#: ../../mobile/operation/events.php:1215
-#, php-format
-msgid "Hours: %s"
-msgstr ""
-
-#: ../../mobile/operation/tactical.php:215
-msgid "Last activity"
-msgstr ""
-
-#: ../../mobile/operation/tactical.php:350
-#: ../../include/functions_reporting_html.php:5501
-#: ../../include/functions.php:3036 ../../include/class/AuditLog.class.php:111
-#: ../../operation/snmpconsole/snmp_statistics.php:182
-#: ../../general/logon_ok.php:250
-msgid "Source IP"
-msgstr ""
-
-#: ../../include/functions_visual_map_editor.php:62
-msgid ""
-"To use 'label'field, you should write\n"
-"\t\t\t\t\ta text to replace '(_VALUE_)' and the value of the module will be "
-"printed at the end."
-msgstr ""
-
-#: ../../include/functions_visual_map_editor.php:107
-#: ../../include/functions_visual_map_editor.php:133
-#: ../../include/rest-api/models/VisualConsole/Items/Box.php:299
-msgid "Border color"
-msgstr ""
-
-#: ../../include/functions_visual_map_editor.php:151
-msgid "Border width"
-msgstr ""
-
-#: ../../include/functions_visual_map_editor.php:160
-#: ../../include/rest-api/models/VisualConsole/Items/Box.php:323
-#: ../../include/rest-api/models/VisualConsole/Items/Clock.php:364
-msgid "Fill color"
-msgstr ""
-
-#: ../../include/functions_visual_map_editor.php:239
-msgid ""
-"Scroll the mouse wheel over the label editor to change the background color"
-msgstr ""
-
-#: ../../include/functions_visual_map_editor.php:255
-#: ../../include/rest-api/models/VisualConsole/Items/Clock.php:333
-msgid "Clock animation"
-msgstr ""
-
-#: ../../include/functions_visual_map_editor.php:258
-#: ../../include/rest-api/models/VisualConsole/Items/Clock.php:328
-msgid "Simple analogic"
-msgstr ""
-
-#: ../../include/functions_visual_map_editor.php:259
-#: ../../include/rest-api/models/VisualConsole/Items/Clock.php:329
-msgid "Simple digital"
-msgstr ""
-
-#: ../../include/functions_visual_map_editor.php:273
-#: ../../include/rest-api/models/VisualConsole/Items/Clock.php:351
-msgid "Time format"
-msgstr ""
-
-#: ../../include/functions_visual_map_editor.php:276
-#: ../../include/rest-api/models/VisualConsole/Items/Clock.php:346
-msgid "Only time"
-msgstr ""
-
-#: ../../include/functions_visual_map_editor.php:277
-#: ../../include/rest-api/models/VisualConsole/Items/Clock.php:347
-msgid "Time and date"
-msgstr ""
-
-#: ../../include/functions_visual_map_editor.php:313
-#: ../../include/rest-api/models/VisualConsole/Items/Clock.php:302
-msgid "Time zone"
-msgstr ""
-
-#: ../../include/functions_visual_map_editor.php:329
-msgid "Enable link"
-msgstr ""
-
-#: ../../include/functions_visual_map_editor.php:350
-#: ../../include/rest-api/models/VisualConsole/Items/BarsGraph.php:463
-#: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:518
-msgid "White"
-msgstr ""
-
-#: ../../include/functions_visual_map_editor.php:351
-#: ../../include/rest-api/models/VisualConsole/Items/BarsGraph.php:464
-#: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:519
-msgid "Black"
-msgstr ""
-
-#: ../../include/functions_visual_map_editor.php:352
-#: ../../include/rest-api/models/VisualConsole/Items/BarsGraph.php:465
-#: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:520
-msgid "Transparent"
-msgstr ""
-
-#: ../../include/functions_visual_map_editor.php:378
-#: ../../include/rest-api/models/VisualConsole/Items/BarsGraph.php:499
-msgid "Grid color"
-msgstr ""
-
-#: ../../include/functions_visual_map_editor.php:498
-msgid "Data image"
-msgstr ""
-
-#: ../../include/functions_visual_map_editor.php:503
-#: ../../include/rest-api/models/VisualConsole/Items/DonutGraph.php:258
-msgid "Resume data color"
-msgstr ""
-
-#: ../../include/functions_visual_map_editor.php:517
-#: ../../include/rest-api/models/VisualConsole/Items/EventsHistory.php:269
-msgid "24h"
-msgstr ""
-
-#: ../../include/functions_visual_map_editor.php:518
-#: ../../include/rest-api/models/VisualConsole/Items/EventsHistory.php:271
-msgid "8h"
-msgstr ""
-
-#: ../../include/functions_visual_map_editor.php:519
-#: ../../include/rest-api/models/VisualConsole/Items/EventsHistory.php:272
-msgid "2h"
-msgstr ""
-
-#: ../../include/functions_visual_map_editor.php:520
-#: ../../include/rest-api/models/VisualConsole/Items/EventsHistory.php:273
-msgid "1h"
-msgstr ""
-
-#: ../../include/functions_visual_map_editor.php:524
-#: ../../include/rest-api/models/VisualConsole/Items/EventsHistory.php:277
-msgid "Max. Time"
-msgstr ""
-
-#: ../../include/functions_visual_map_editor.php:640
-msgid "Original Size"
-msgstr ""
-
-#: ../../include/functions_visual_map_editor.php:641
-msgid "Apply"
-msgstr ""
-
-#: ../../include/functions_visual_map_editor.php:648
-msgid "Aspect ratio"
-msgstr ""
-
-#: ../../include/functions_visual_map_editor.php:649
-msgid "Proportional Width"
-msgstr ""
-
-#: ../../include/functions_visual_map_editor.php:657
-msgid "Height proportional"
-msgstr ""
-
-#: ../../include/functions_visual_map_editor.php:688
-#: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:460
-msgid "Circular porgress bar"
-msgstr ""
-
-#: ../../include/functions_visual_map_editor.php:689
-#: ../../include/functions_visual_map.php:4209
-#: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:462
-#: ../../include/rest-api/models/VisualConsole/Item.php:2096
-msgid "Circular progress bar (interior)"
-msgstr ""
-
-#: ../../include/functions_visual_map_editor.php:739
-#: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:522
-msgid "Element color"
-msgstr ""
-
-#: ../../include/functions_visual_map_editor.php:759
-#: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:534
-msgid "Value color"
-msgstr ""
-
-#: ../../include/functions_visual_map_editor.php:793
-#: ../../include/rest-api/models/VisualConsole/Items/Group.php:557
-msgid "Show statistics"
-msgstr ""
-
-#: ../../include/functions_visual_map_editor.php:801
-msgid "Diameter"
-msgstr ""
-
-#: ../../include/functions_visual_map_editor.php:808
-#: ../../include/rest-api/models/VisualConsole/Items/ColorCloud.php:426
-msgid "Default color"
-msgstr ""
-
-#: ../../include/functions_visual_map_editor.php:812
-msgid ""
-"The color of the element will be the one selected in the first range created "
-"in which the value of the module is found (with the initial and final values "
-"of the range included)"
-msgstr ""
-
-#: ../../include/functions_visual_map_editor.php:815
-msgid "Ranges"
-msgstr ""
-
-#: ../../include/functions_visual_map_editor.php:815
-msgid "From value"
-msgstr ""
-
-#: ../../include/functions_visual_map_editor.php:815
-msgid "To value"
-msgstr ""
-
-#: ../../include/functions_visual_map_editor.php:815
-#: ../../include/rest-api/index.php:336
-#: ../../include/rest-api/models/VisualConsole/Items/ColorCloud.php:471
-#: ../../include/rest-api/models/VisualConsole/Items/ColorCloud.php:530
-#: ../../include/rest-api/models/VisualConsole/Items/Line.php:487
-#: ../../include/rest-api/models/VisualConsole/Items/NetworkLink.php:938
-msgid "Color"
-msgstr ""
-
-#: ../../include/functions_visual_map_editor.php:820
-msgid "Always show on top"
-msgstr ""
-
-#: ../../include/functions_visual_map_editor.php:821
-msgid ""
-"It allows the element to be superimposed to the rest of items of the visual "
-"console"
-msgstr ""
-
-#: ../../include/functions_visual_map_editor.php:824
-#: ../../include/rest-api/models/VisualConsole/Items/StaticGraph.php:390
-msgid "Hide last value on boolean modules"
-msgstr ""
-
-#: ../../include/functions_visual_map_editor.php:830
-msgid "Show last value"
-msgstr ""
-
-#: ../../include/functions_visual_map_editor.php:843
-#: ../../include/rest-api/models/VisualConsole/Items/BarsGraph.php:483
-msgid "Vertical"
-msgstr ""
-
-#: ../../include/functions_visual_map_editor.php:844
-#: ../../include/rest-api/models/VisualConsole/Items/BarsGraph.php:482
-msgid "Horizontal"
-msgstr ""
-
-#: ../../include/functions_visual_map_editor.php:934
-msgid "For use the original image file size, set 0 width and 0 height."
-msgstr ""
-
-#: ../../include/functions_visual_map_editor.php:974
-#: ../../include/rest-api/models/VisualConsole/Item.php:2402
-msgid "Linked visual console"
-msgstr ""
-
-#: ../../include/functions_visual_map_editor.php:1081
-#: ../../include/rest-api/models/VisualConsole/Item.php:2453
-msgid "By status weight"
-msgstr ""
-
-#: ../../include/functions_visual_map_editor.php:1082
-#: ../../include/rest-api/models/VisualConsole/Item.php:2454
-msgid "By critical elements"
-msgstr ""
-
-#: ../../include/functions_visual_map_editor.php:1097
-#: ../../include/rest-api/models/VisualConsole/Item.php:2461
-msgid "Type of the status calculation of the linked visual console"
-msgstr ""
-
-#: ../../include/functions_visual_map_editor.php:1102
-#: ../../include/rest-api/models/VisualConsole/Item.php:2452
-msgid "By default"
-msgstr ""
-
-#: ../../include/functions_visual_map_editor.php:1122
-#: ../../include/rest-api/models/VisualConsole/Item.php:2477
-msgid "Linked visual console weight"
-msgstr ""
-
-#: ../../include/functions_visual_map_editor.php:1148
-#: ../../include/rest-api/models/VisualConsole/Item.php:2491
-msgid "Critical weight"
-msgstr ""
-
-#: ../../include/functions_visual_map_editor.php:1174
-#: ../../include/rest-api/models/VisualConsole/Item.php:2505
-msgid "Warning weight"
-msgstr ""
-
-#: ../../include/functions_visual_map_editor.php:1189
-msgid "Lines haven't advanced options"
-msgstr ""
-
-#: ../../include/functions_visual_map_editor.php:1206
-#: ../../include/rest-api/models/VisualConsole/Item.php:2157
-msgid "Restrict access to group"
-msgstr ""
-
-#: ../../include/functions_visual_map_editor.php:1217
-msgid ""
-"If selected, restrict visualization of this item in the visual console to "
-"users who have access to selected group. This is also used on calculating "
-"child visual consoles."
-msgstr ""
-
-#: ../../include/functions_visual_map_editor.php:1248
-#: ../../include/rest-api/models/VisualConsole/Item.php:2170
-msgid "Cache expiration"
-msgstr ""
-
-#: ../../include/functions_visual_map_editor.php:1287
-msgid "Click start point<br />of the line"
-msgstr ""
-
-#: ../../include/functions_visual_map_editor.php:1290
-msgid "Click end point<br />of the line"
-msgstr ""
-
-#: ../../include/functions_visual_map_editor.php:1390
-#: ../../operation/visual_console/view.php:316
-msgid "Serialized pie graph"
-msgstr ""
-
-#: ../../include/functions_visual_map_editor.php:1391
-#: ../../operation/visual_console/view.php:321
-msgid "Bars Graph"
-msgstr ""
-
-#: ../../include/functions_visual_map_editor.php:1420
-msgid "Show grid"
-msgstr ""
-
-#: ../../include/functions_visual_map_editor.php:1422
-msgid "Delete item"
-msgstr ""
-
-#: ../../include/functions_visual_map_editor.php:1423
-msgid "Copy item"
-msgstr ""
-
-#: ../../include/functions_visual_map_editor.php:1463
-#: ../../include/functions_visual_map_editor.php:1467
-#: ../../include/functions_visual_map_editor.php:1471
-#: ../../include/functions_visual_map_editor.php:1475
-#: ../../include/functions_visual_map_editor.php:1479
-#: ../../include/functions_visual_map_editor.php:1483
-#: ../../include/functions_visual_map_editor.php:1487
-#: ../../include/functions_visual_map_editor.php:1491
-#: ../../include/functions_visual_map_editor.php:1495
-#: ../../include/functions_visual_map_editor.php:1499
-#: ../../include/functions_visual_map_editor.php:1503
-#: ../../include/functions_visual_map_editor.php:1507
-#: ../../include/functions_visual_map_editor.php:1511
-#: ../../include/functions_visual_map_editor.php:1515
-#: ../../include/functions_visual_map_editor.php:1519
-#: ../../include/functions_visual_map_editor.php:1523
-#: ../../include/functions_visual_map_editor.php:1527
-#: ../../include/functions_visual_map_editor.php:1531
-#: ../../include/functions_visual_map_editor.php:1535
-msgid "Visual Console Builder Information"
-msgstr ""
-
-#: ../../include/functions_visual_map_editor.php:1464
-msgid "Min allowed size is 1024x768."
-msgstr ""
-
-#: ../../include/functions_visual_map_editor.php:1468
-#: ../../include/functions_visual_map_editor.php:1536
-msgid "No custom graph defined."
-msgstr ""
-
-#: ../../include/functions_visual_map_editor.php:1472
-msgid "No image or name defined."
-msgstr ""
-
-#: ../../include/functions_visual_map_editor.php:1476
-msgid "No label defined."
-msgstr ""
-
-#: ../../include/functions_visual_map_editor.php:1480
-msgid "No service defined."
-msgstr ""
-
-#: ../../include/functions_visual_map_editor.php:1484
-msgid "No image defined."
-msgstr ""
-
-#: ../../include/functions_visual_map_editor.php:1488
-msgid "No process defined."
-msgstr ""
-
-#: ../../include/functions_visual_map_editor.php:1492
-msgid "No Max value defined."
-msgstr ""
-
-#: ../../include/functions_visual_map_editor.php:1496
-msgid "No width defined."
-msgstr ""
-
-#: ../../include/functions_visual_map_editor.php:1500
-msgid "No height defined."
-msgstr ""
-
-#: ../../include/functions_visual_map_editor.php:1504
-msgid "The width must not exceed the size of the visual console container."
-msgstr ""
-
-#: ../../include/functions_visual_map_editor.php:1508
-msgid "The height must not exceed the size of the visual console container."
-msgstr ""
-
-#: ../../include/functions_visual_map_editor.php:1512
-msgid "No period defined."
-msgstr ""
-
-#: ../../include/functions_visual_map_editor.php:1516
-msgid "No agent defined."
-msgstr ""
-
-#: ../../include/functions_visual_map_editor.php:1520
-msgid "No module defined."
-msgstr ""
-
-#: ../../include/functions_visual_map_editor.php:1524
-msgid "No module defined. This module must be string type."
-msgstr ""
-
-#: ../../include/functions_visual_map_editor.php:1528
-msgid "Successfully save the changes."
-msgstr ""
-
-#: ../../include/functions_visual_map_editor.php:1532
-msgid "Could not be save."
-msgstr ""
-
-#: ../../include/graphs/export_data.php:88
-#: ../../include/graphs/export_data.php:154
-msgid "An error occured exporting the data"
-msgstr ""
-
-#: ../../include/graphs/export_data.php:100
-msgid "Selected"
-msgstr ""
-
-#: ../../include/graphs/functions_gd.php:183
-#: ../../include/graphs/functions_gd.php:466
-#: ../../include/functions_graph.php:2889
-#: ../../include/functions_graph.php:2937
-msgid "Out of limits"
-msgstr ""
-
-#: ../../include/graphs/functions_flot.php:365
-msgid "Cancel zoom"
-msgstr ""
-
-#: ../../include/graphs/functions_flot.php:367
-msgid "Warning and Critical thresholds"
-msgstr ""
-
-#: ../../include/graphs/functions_flot.php:372
-msgid "Overview graph"
-msgstr ""
-
-#: ../../include/graphs/functions_flot.php:509
-#: ../../include/functions_reporting_html.php:647
-#: ../../include/functions_reporting_html.php:4190
-#: ../../include/functions_treeview.php:315
-msgid "No data"
-msgstr ""
-
-#: ../../include/functions_servers.php:556
-#: ../../include/functions_servers.php:1305
-msgid "Data server"
-msgstr ""
-
-#: ../../include/functions_servers.php:569
-#: ../../include/functions_servers.php:1308
-#: ../../include/class/AgentWizard.class.php:1286
-msgid "Network server"
-msgstr ""
-
-#: ../../include/functions_servers.php:582
-msgid "SNMP Trap server"
-msgstr ""
-
-#: ../../include/functions_servers.php:608
-#: ../../include/functions_servers.php:1320
-#: ../../include/class/AgentWizard.class.php:1267
-msgid "Plugin server"
-msgstr ""
-
-#: ../../include/functions_servers.php:621
-msgid "Prediction server"
-msgstr ""
-
-#: ../../include/functions_servers.php:634
-#: ../../include/functions_servers.php:1326
-#: ../../include/class/AgentWizard.class.php:1277
-msgid "WMI server"
-msgstr ""
-
-#: ../../include/functions_servers.php:647
-#: ../../include/functions_servers.php:1332
-msgid "Export server"
-msgstr ""
-
-#: ../../include/functions_servers.php:660
-#: ../../include/functions_servers.php:1335
-msgid "Inventory server"
-msgstr ""
-
-#: ../../include/functions_servers.php:673
-#: ../../include/functions_servers.php:1329
-msgid "Web server"
-msgstr ""
-
-#: ../../include/functions_servers.php:686
-#: ../../include/functions_servers.php:1338
-msgid "Event server"
-msgstr ""
-
-#: ../../include/functions_servers.php:699
-msgid "Correlation server"
-msgstr ""
-
-#: ../../include/functions_servers.php:712
-#: ../../include/functions_servers.php:1314
-msgid "Enterprise ICMP server"
-msgstr ""
-
-#: ../../include/functions_servers.php:725
-#: ../../include/functions_servers.php:1317
-msgid "Enterprise SNMP server"
-msgstr ""
-
-#: ../../include/functions_servers.php:738
-#: ../../include/class/AgentWizard.class.php:1257
-msgid "Enterprise Satellite server"
-msgstr ""
-
-#: ../../include/functions_servers.php:751
-msgid "Enterprise Transactional server"
-msgstr ""
-
-#: ../../include/functions_servers.php:764
-msgid "Mainframe server"
-msgstr ""
-
-#: ../../include/functions_servers.php:777
-msgid "Sync server"
-msgstr ""
-
-#: ../../include/functions_servers.php:790
-msgid "Wux server"
-msgstr ""
-
-#: ../../include/functions_servers.php:803
-#: ../../include/functions_servers.php:1344
-msgid "Log server"
-msgstr ""
-
-#: ../../include/functions_servers.php:816
-#: ../../include/functions_servers.php:1359
-msgid "NCM server"
-msgstr ""
-
-#: ../../include/functions_servers.php:829
-msgid "Autoprovision server"
-msgstr ""
-
-#: ../../include/functions_servers.php:842
-msgid "Migration server"
-msgstr ""
-
-#: ../../include/functions_servers.php:855
-#: ../../include/functions_servers.php:1356
-msgid "Alert server"
-msgstr ""
-
-#: ../../include/functions_servers.php:1311
-msgid "SNMP server"
-msgstr ""
-
-#: ../../include/functions_servers.php:1323
-msgid "Prediction Server"
-msgstr ""
-
-#: ../../include/functions_servers.php:1347
-msgid "WUX server"
-msgstr ""
-
-#: ../../include/functions_servers.php:1350
-msgid "Satellite server"
-msgstr ""
-
-#: ../../include/functions_servers.php:1353
-msgid "Transactional server"
-msgstr ""
-
-#: ../../include/functions_reporting_html.php:90
-#: ../../include/functions_reporting_html.php:5303
-#: ../../include/functions_treeview.php:319
-#: ../../operation/agentes/interface_view.functions.php:539
-msgid "Last data"
-msgstr ""
-
-#: ../../include/functions_reporting_html.php:109
-msgid "Label: "
-msgstr ""
-
-#: ../../include/functions_reporting_html.php:138
-msgid "Generated"
-msgstr ""
-
-#: ../../include/functions_reporting_html.php:141
-msgid "Report date"
-msgstr ""
-
-#: ../../include/functions_reporting_html.php:150
-#: ../../operation/reporting/reporting_viewer.php:304
-msgid "Items period before"
-msgstr ""
-
-#: ../../include/functions_reporting_html.php:536
-msgid "Max/Min Values"
-msgstr ""
-
-#: ../../include/functions_reporting_html.php:537
-msgid "SLA Limit"
-msgstr ""
-
-#: ../../include/functions_reporting_html.php:538
-msgid "SLA Compliance"
-msgstr ""
-
-#: ../../include/functions_reporting_html.php:570
-msgid "Global Time"
-msgstr ""
-
-#: ../../include/functions_reporting_html.php:571
-msgid "Time Total"
-msgstr ""
-
-#: ../../include/functions_reporting_html.php:572
-msgid "Time Failed"
-msgstr ""
-
-#: ../../include/functions_reporting_html.php:573
-#: ../../include/functions_reporting_html.php:3667
-msgid "Time OK"
-msgstr ""
-
-#: ../../include/functions_reporting_html.php:574
-#: ../../include/functions_reporting_html.php:3679
-msgid "Time Unknown"
-msgstr ""
-
-#: ../../include/functions_reporting_html.php:575
-msgid "Time Not Init"
-msgstr ""
-
-#: ../../include/functions_reporting_html.php:576
-msgid "Downtime"
-msgstr ""
-
-#: ../../include/functions_reporting_html.php:603
-msgid "Checks Time"
-msgstr ""
-
-#: ../../include/functions_reporting_html.php:604
-msgid "Checks Total"
-msgstr ""
-
-#: ../../include/functions_reporting_html.php:605
-msgid "Checks Failed"
-msgstr ""
-
-#: ../../include/functions_reporting_html.php:606
-#: ../../include/functions_reporting_html.php:3761
-msgid "Checks OK"
-msgstr ""
-
-#: ../../include/functions_reporting_html.php:607
-msgid "Checks Unknown"
-msgstr ""
-
-#: ../../include/functions_reporting_html.php:625
-#: ../../include/functions_reporting_html.php:664
-#: ../../include/functions_reporting_html.php:735
-#: ../../include/functions_reporting_html.php:813
-#: ../../include/functions_reporting_html.php:3843
-#: ../../include/functions_reporting_html.php:3990
-msgid "24 x 7"
-msgstr ""
-
-#: ../../include/functions_reporting_html.php:654
-#: ../../include/functions_config.php:1227
-#: ../../include/functions_config.php:3077
-msgid "Fail"
-msgstr ""
-
-#: ../../include/functions_reporting_html.php:793
-#: ../../include/functions_reporting_html.php:4032
-#: ../../include/functions_reporting_html.php:4581
-#: ../../include/functions_reporting_html.php:4584
-#: ../../include/functions_reporting.php:1558
-#: ../../include/functions_reporting.php:2987
-msgid "There are no Agent/Modules defined"
-msgstr ""
-
-#: ../../include/functions_reporting_html.php:856
-#: ../../include/functions_reporting_html.php:4384
-msgid "Unknow"
-msgstr ""
-
-#: ../../include/functions_reporting_html.php:861
-#: ../../include/functions_reporting_html.php:4389
-msgid "Not Init"
-msgstr ""
-
-#: ../../include/functions_reporting_html.php:866
-#: ../../include/functions_reporting_html.php:4394
-msgid "Downtimes"
-msgstr ""
-
-#: ../../include/functions_reporting_html.php:987
-#: ../../include/functions_reporting_html.php:2098
-#: ../../include/functions_reporting_html.php:4072
-#: ../../include/functions_reporting_html.php:4608
-#: ../../include/rest-api/models/VisualConsole/Items/SimpleValue.php:367
-msgid "Min Value"
-msgstr ""
-
-#: ../../include/functions_reporting_html.php:988
-#: ../../include/functions_reporting_html.php:2099
-#: ../../include/functions_reporting_html.php:4073
-#: ../../include/functions_reporting_html.php:4609
-msgid "Average Value"
-msgstr ""
-
-#: ../../include/functions_reporting_html.php:989
-#: ../../include/functions_reporting_html.php:2100
-#: ../../include/functions_reporting_html.php:4070
-#: ../../include/functions_reporting_html.php:4611
-#: ../../include/rest-api/models/VisualConsole/Items/SimpleValue.php:366
-msgid "Max Value"
-msgstr ""
-
-#: ../../include/functions_reporting_html.php:1038
-#: ../../include/functions_reporting_html.php:1262
-#: ../../include/functions_reporting_html.php:2215
-#: ../../operation/snmpconsole/snmp_view.php:865
-msgid "Count"
-msgstr ""
-
-#: ../../include/functions_reporting_html.php:1043
-#: ../../include/functions_reporting_html.php:1051
-#: ../../include/functions_reporting_html.php:2221
-msgid "Val. by"
-msgstr ""
-
-#: ../../include/functions_reporting_html.php:1110
-#, php-format
-msgid "%s System"
-msgstr ""
-
-#: ../../include/functions_reporting_html.php:1158
-#: ../../include/functions_reporting_html.php:1358
-msgid "Events by agent"
-msgstr ""
-
-#: ../../include/functions_reporting_html.php:1175
-#: ../../include/functions_reporting_html.php:1375
-msgid "Events by user validator"
-msgstr ""
-
-#: ../../include/functions_reporting_html.php:1192
-#: ../../include/functions_reporting_html.php:1392
-msgid "Events by Severity"
-msgstr ""
-
-#: ../../include/functions_reporting_html.php:1209
-#: ../../include/functions_reporting_html.php:1409
-msgid "Events validated vs unvalidated"
-msgstr ""
-
-#: ../../include/functions_reporting_html.php:1259
-#: ../../include/functions_reporting_html.php:1267
-#: ../../include/functions_reporting_html.php:4791
-#: ../../include/functions_events.php:192
-#: ../../include/functions_events.php:2568
-#: ../../include/functions_events.php:4906
-msgid "Event name"
-msgstr ""
-
-#: ../../include/functions_reporting_html.php:1500
-msgid "Sec. groups"
-msgstr ""
-
-#: ../../include/functions_reporting_html.php:1520
-msgid "Remote conf."
-msgstr ""
-
-#: ../../include/functions_reporting_html.php:1643
-msgid "Added"
-msgstr ""
-
-#: ../../include/functions_reporting_html.php:1654
-#: ../../include/functions_filemanager.php:372
-#: ../../include/functions_filemanager.php:389
-msgid "Deleted"
-msgstr ""
-
-#: ../../include/functions_reporting_html.php:1877
-#: ../../include/lib/Dashboard/Widgets/agent_module.php:497
-#, php-format
-msgid "%s in %s : NORMAL"
-msgstr ""
-
-#: ../../include/functions_reporting_html.php:1894
-#: ../../include/lib/Dashboard/Widgets/agent_module.php:513
-#, php-format
-msgid "%s in %s : CRITICAL"
-msgstr ""
-
-#: ../../include/functions_reporting_html.php:1911
-#: ../../include/lib/Dashboard/Widgets/agent_module.php:529
-#, php-format
-msgid "%s in %s : WARNING"
-msgstr ""
-
-#: ../../include/functions_reporting_html.php:1928
-#: ../../include/lib/Dashboard/Widgets/agent_module.php:545
-#, php-format
-msgid "%s in %s : UNKNOWN"
-msgstr ""
-
-#: ../../include/functions_reporting_html.php:1947
-#: ../../include/lib/Dashboard/Widgets/agent_module.php:578
-#, php-format
-msgid "%s in %s : ALERTS FIRED"
-msgstr ""
-
-#: ../../include/functions_reporting_html.php:1964
-#: ../../include/lib/Dashboard/Widgets/agent_module.php:561
-#, php-format
-msgid "%s in %s : Not initialize"
-msgstr ""
-
-#: ../../include/functions_reporting_html.php:1994
-msgid "Cell turns grey when the module is in 'not initialize' status"
-msgstr ""
-
-#: ../../include/functions_reporting_html.php:2164
-#: ../../include/functions_reporting_html.php:5178
-msgid "Monitors"
-msgstr ""
-
-#: ../../include/functions_reporting_html.php:2183
-msgid "Events (not validated)"
-msgstr ""
-
-#: ../../include/functions_reporting_html.php:2320
-msgid "Events validated by user"
-msgstr ""
-
-#: ../../include/functions_reporting_html.php:2337
-#: ../../include/functions_reporting_html.php:5467
-msgid "Events by severity"
-msgstr ""
-
-#: ../../include/functions_reporting_html.php:2354
-msgid "Amount events validated"
-msgstr ""
-
-#: ../../include/functions_reporting_html.php:2778
-msgid "Total summary"
-msgstr ""
-
-#: ../../include/functions_reporting_html.php:2785
-msgid "No alerts fired"
-msgstr ""
-
-#: ../../include/functions_reporting_html.php:2876
-#, php-format
-msgid "Interface '%s' throughput graph"
-msgstr ""
-
-#: ../../include/functions_reporting_html.php:2880
-msgid "Mac"
-msgstr ""
-
-#: ../../include/functions_reporting_html.php:2881
-msgid "Actual status"
-msgstr ""
-
-#: ../../include/functions_reporting_html.php:3203
-#: ../../include/functions_reporting_html.php:3205
-msgid "Empty modules"
-msgstr ""
-
-#: ../../include/functions_reporting_html.php:3212
-msgid "Warning<br/>Critical"
-msgstr ""
-
-#: ../../include/functions_reporting_html.php:3339
-#: ../../include/functions_reporting_html.php:3368
-#: ../../include/functions_reporting_html.php:3409
-#: ../../include/functions_reporting_html.php:3432
-#: ../../include/functions_reporting_html.php:3435
-#: ../../include/functions_reporting_html.php:3442
-#: ../../include/functions_reporting.php:6133
-#: ../../include/functions_reporting.php:6156
-#: ../../include/functions_reporting.php:6171
-#: ../../include/functions_reporting.php:6187
-#: ../../include/functions_reporting.php:6202
-msgid "Maximun"
-msgstr ""
-
-#: ../../include/functions_reporting_html.php:3347
-#: ../../include/functions_reporting_html.php:3416
-msgid "Minimun"
-msgstr ""
-
-#: ../../include/functions_reporting_html.php:3356
-#: ../../include/functions_reporting_html.php:3424
-msgid "Average"
-msgstr ""
-
-#: ../../include/functions_reporting_html.php:3408
-#: ../../include/functions_reporting_html.php:3415
-#: ../../include/functions_reporting_html.php:3423
-#: ../../include/functions_reporting_html.php:3434
-#: ../../include/functions_reporting_html.php:3439
-#: ../../include/functions_reporting.php:6151
-msgid "Lapse"
-msgstr ""
-
-#: ../../include/functions_reporting_html.php:3526
-msgid "From data"
-msgstr ""
-
-#: ../../include/functions_reporting_html.php:3527
-msgid "To data"
-msgstr ""
-
-#: ../../include/functions_reporting_html.php:3528
-#: ../../include/functions_reports.php:761
-#: ../../include/functions_reporting.php:8727
-msgid "Increment"
-msgstr ""
-
-#: ../../include/functions_reporting_html.php:3555
-msgid "Negative increase: "
-msgstr ""
-
-#: ../../include/functions_reporting_html.php:3557
-msgid "Positive increase: "
-msgstr ""
-
-#: ../../include/functions_reporting_html.php:3559
-msgid "Neutral increase: "
-msgstr ""
-
-#: ../../include/functions_reporting_html.php:3685
-msgid "Time Not Init Module"
-msgstr ""
-
-#: ../../include/functions_reporting_html.php:3691
-msgid "Time Downtime"
-msgstr ""
-
-#: ../../include/functions_reporting_html.php:3696
-msgid "% Ok"
-msgstr ""
-
-#: ../../include/functions_reporting_html.php:3767
-msgid "Checks Warning"
-msgstr ""
-
-#: ../../include/functions_reporting_html.php:3773
-msgid "Checks Uknown"
-msgstr ""
-
-#: ../../include/functions_reporting_html.php:3812
-#: ../../include/functions_reporting_html.php:3959
-#: ../../include/functions_reporting_html.php:4284
-#: ../../include/functions_reporting_html.php:4290
-msgid "Primary"
-msgstr ""
-
-#: ../../include/functions_reporting_html.php:4071
-msgid "Agent min value"
-msgstr ""
-
-#: ../../include/functions_reporting_html.php:4516
-msgid "Sum"
-msgstr ""
-
-#: ../../include/functions_reporting_html.php:4722
-#: ../../include/lib/Dashboard/Widgets/module_status.php:173
-#: ../../include/lib/Dashboard/Widgets/module_status.php:535
-#: ../../include/functions_events.php:211
-#: ../../include/functions_events.php:6700 ../../operation/tree.php:279
-msgid "Module status"
-msgstr ""
-
-#: ../../include/functions_reporting_html.php:4723
-#: ../../include/functions_reporting.php:10742
-#: ../../include/functions_reporting.php:10763
-msgid "Alert level"
-msgstr ""
-
-#: ../../include/functions_reporting_html.php:4859
-msgid "Alert description"
-msgstr ""
-
-#: ../../include/functions_reporting_html.php:4952
-#, php-format
-msgid "Agents in group: %s"
-msgstr ""
-
-#: ../../include/functions_reporting_html.php:5054
-msgid "Last failure"
-msgstr ""
-
-#: ../../include/functions_reporting_html.php:5144
-msgid "N/A(*)"
-msgstr ""
-
-#: ../../include/functions_reporting_html.php:5333
-#: ../../include/functions_agents.php:3840
-msgid "Agents warning"
-msgstr ""
-
-#: ../../include/functions_reporting_html.php:5339
-#: ../../include/functions_agents.php:3820
-#: ../../include/functions_agents.php:3874
-msgid "Agents ok"
-msgstr ""
-
-#: ../../include/functions_reporting_html.php:5357
-#: ../../include/functions_reporting_html.php:5362
-msgid "Agents by status"
-msgstr ""
-
-#: ../../include/functions_reporting_html.php:5392
-#: ../../include/functions_reporting.php:10974
-msgid "Monitor checks"
-msgstr ""
-
-#: ../../include/functions_reporting_html.php:5399
-#: ../../include/functions_reporting.php:10993
-msgid "Total agents and monitors"
-msgstr ""
-
-#: ../../include/functions_reporting_html.php:5412
-#: ../../operation/agentes/pandora_networkmap.php:708
-msgid "Nodes"
-msgstr ""
-
-#: ../../include/functions_reporting_html.php:5418
-#: ../../include/functions_reporting_html.php:5423
-msgid "Node overview"
-msgstr ""
-
-#: ../../include/functions_reporting_html.php:5443
-#: ../../include/functions_reporting_html.php:5455
-msgid "Critical events"
-msgstr ""
-
-#: ../../include/functions_reporting_html.php:5446
-#: ../../include/functions_reporting_html.php:5457
-msgid "Warning events"
-msgstr ""
-
-#: ../../include/functions_reporting_html.php:5449
-#: ../../include/functions_reporting_html.php:5459
-msgid "OK events"
-msgstr ""
-
-#: ../../include/functions_reporting_html.php:5452
-#: ../../include/functions_reporting_html.php:5461
-msgid "Unknown events"
-msgstr ""
-
-#: ../../include/functions_reporting_html.php:5477
-msgid "Important Events by Criticity"
-msgstr ""
-
-#: ../../include/functions_reporting_html.php:5503
-#, php-format
-msgid "Last activity in %s console"
-msgstr ""
-
-#: ../../include/functions_reporting_html.php:5594
-#: ../../include/functions_reporting_html.php:5736
-msgid "Events info (1hr.)"
-msgstr ""
-
-#: ../../include/functions_reporting_html.php:5919
-msgid "This SLA has been affected by the following scheduled downtimes"
-msgstr ""
-
-#: ../../include/functions_reporting_html.php:5920
-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:5927
-#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:380
-msgid "Dates"
-msgstr ""
-
-#: ../../include/functions_reporting_html.php:5958
-msgid "This item is affected by a malformed scheduled downtime"
-msgstr ""
-
-#: ../../include/functions_reporting_html.php:5958
-msgid "Go to the scheduled downtimes section to solve this"
-msgstr ""
-
-#: ../../include/functions_reporting_html.php:5991
-#: ../../include/functions_reporting_html.php:6014
-msgid "Full name"
-msgstr ""
-
-#: ../../include/functions_reporting_html.php:5992
-#: ../../include/functions_reporting_html.php:6015
-msgid "Permissions"
-msgstr ""
-
-#: ../../include/functions.php:231
-msgid "."
-msgstr ""
-
-#: ../../include/functions.php:233
-msgid ","
-msgstr ""
-
-#: ../../include/functions.php:488 ../../include/functions.php:639
-msgid "s"
-msgstr ""
-
-#: ../../include/functions.php:489 ../../include/functions.php:640
-msgid "d"
-msgstr ""
-
-#: ../../include/functions.php:490 ../../include/functions.php:641
-msgid "M"
-msgstr ""
-
-#: ../../include/functions.php:491 ../../include/functions.php:642
-#: ../../include/rest-api/models/VisualConsole/Items/Box.php:259
-#: ../../include/rest-api/models/VisualConsole/Item.php:2005
-msgid "Y"
-msgstr ""
-
-#: ../../include/functions.php:492 ../../include/functions.php:643
-msgid "m"
-msgstr ""
-
-#: ../../include/functions.php:493 ../../include/functions.php:644
-msgid "h"
-msgstr ""
-
-#: ../../include/functions.php:494 ../../include/functions.php:645
-msgid "N"
-msgstr ""
-
-#: ../../include/functions.php:1022 ../../include/functions.php:1268
-#: ../../include/functions.php:1302 ../../include/functions_graph.php:3524
-#: ../../include/functions_graph.php:3525
-#: ../../include/functions_graph.php:5096
-#: ../../include/functions_incidents.php:34
-#: ../../include/functions_incidents.php:75
-#: ../../include/functions_events.php:3284
-msgid "Maintenance"
-msgstr ""
-
-#: ../../include/functions.php:1026 ../../include/functions.php:1269
-#: ../../include/functions.php:1306 ../../include/functions_graph.php:3529
-#: ../../include/functions_graph.php:3530
-#: ../../include/functions_graph.php:5100
-#: ../../include/functions_events.php:3288
-msgid "Informational"
-msgstr ""
-
-#: ../../include/functions.php:1042 ../../include/functions.php:1271
-#: ../../include/functions.php:1322 ../../include/functions_graph.php:3539
-#: ../../include/functions_graph.php:3540
-#: ../../include/functions_graph.php:5116
-msgid "Minor"
-msgstr ""
-
-#: ../../include/functions.php:1046 ../../include/functions.php:1273
-#: ../../include/functions.php:1326 ../../include/functions_graph.php:3549
-#: ../../include/functions_graph.php:3550
-#: ../../include/functions_graph.php:5120
-msgid "Major"
-msgstr ""
-
-#: ../../include/functions.php:1221 ../../include/functions_events.php:3204
-msgid "Monitor Critical"
-msgstr ""
-
-#: ../../include/functions.php:1222 ../../include/functions_events.php:3208
-msgid "Monitor Warning"
-msgstr ""
-
-#: ../../include/functions.php:1223 ../../include/functions_events.php:3212
-msgid "Monitor Normal"
-msgstr ""
-
-#: ../../include/functions.php:1225
-msgid "Monitor Unknown"
-msgstr ""
-
-#: ../../include/functions.php:1228 ../../include/functions_events.php:2834
-#: ../../include/functions_events.php:3220
-msgid "Alert recovered"
-msgstr ""
-
-#: ../../include/functions.php:1229 ../../include/functions_events.php:2882
-#: ../../include/functions_events.php:3224
-msgid "Alert ceased"
-msgstr ""
-
-#: ../../include/functions.php:1230 ../../include/functions_events.php:3228
-msgid "Alert manual validation"
-msgstr ""
-
-#: ../../include/functions.php:1232
-msgid "Agent created"
-msgstr ""
-
-#: ../../include/functions.php:1233 ../../include/functions_events.php:3232
-msgid "Recon host detected"
-msgstr ""
-
-#: ../../include/functions.php:1236 ../../include/functions_events.php:2878
-#: ../../include/functions_events.php:3244
-msgid "Configuration change"
-msgstr ""
-
-#: ../../include/functions.php:1237 ../../include/functions_events.php:3252
-msgid "Network configuration manager"
-msgstr ""
-
-#: ../../include/functions.php:1353 ../../include/functions.php:1383
-msgid "ALERT FIRED"
-msgstr ""
-
-#: ../../include/functions.php:1356 ../../include/functions.php:1393
-#: ../../include/functions_modules.php:4077
-#: ../../include/class/Tree.class.php:642 ../../include/lib/Module.php:565
-#: ../../operation/agentes/status_monitor.php:1642
-#: ../../operation/agentes/status_monitor.php:1650
-msgid "NO DATA"
-msgstr ""
-
-#: ../../include/functions.php:2678
-#, php-format
-msgid "%s seconds"
-msgstr ""
-
-#: ../../include/functions.php:2681 ../../include/functions.php:2682
-#, php-format
-msgid "%s minutes"
-msgstr ""
-
-#: ../../include/functions.php:2690 ../../include/functions.php:2691
-#, php-format
-msgid "%s months"
-msgstr ""
-
-#: ../../include/functions.php:2692 ../../include/ajax/module.php:209
-msgid "1 year"
-msgstr ""
-
-#: ../../include/functions.php:2693 ../../include/functions.php:2694
-#, php-format
-msgid "%s years"
-msgstr ""
-
-#: ../../include/functions.php:2696
-msgid "Default values will be used"
-msgstr ""
-
-#: ../../include/functions.php:2889
-msgid "The uploaded file was only partially uploaded"
-msgstr ""
-
-#: ../../include/functions.php:2893
-msgid "No file was uploaded"
-msgstr ""
-
-#: ../../include/functions.php:2897
-msgid "Missing a temporary folder"
-msgstr ""
-
-#: ../../include/functions.php:2901
-msgid "Failed to write file to disk"
-msgstr ""
-
-#: ../../include/functions.php:2905
-msgid "File upload stopped by extension"
-msgstr ""
-
-#: ../../include/functions.php:2909
-msgid "Unknown upload error"
-msgstr ""
-
-#: ../../include/functions.php:3020
-msgid "No data found to export"
-msgstr ""
-
-#: ../../include/functions.php:3341
-#: ../../operation/gis_maps/render_view.php:146
-msgid "5 seconds"
-msgstr ""
-
-#: ../../include/functions.php:3342
-#: ../../operation/gis_maps/render_view.php:147
-msgid "10 seconds"
-msgstr ""
-
-#: ../../include/functions.php:3343
-msgid "15 seconds"
-msgstr ""
-
-#: ../../include/functions.php:3344
-#: ../../include/class/AgentsAlerts.class.php:813
-#: ../../operation/gis_maps/render_view.php:148
-msgid "30 seconds"
-msgstr ""
-
-#: ../../include/functions.php:3345
-#: ../../include/class/AgentsAlerts.class.php:814
-#: ../../operation/gis_maps/render_view.php:149
-msgid "1 minute"
-msgstr ""
-
-#: ../../include/functions.php:3346
-#: ../../include/class/AgentsAlerts.class.php:815
-#: ../../operation/gis_maps/render_view.php:150
-msgid "2 minutes"
-msgstr ""
-
-#: ../../include/functions.php:3347 ../../include/ajax/module.php:198
-#: ../../include/class/AgentsAlerts.class.php:816
-#: ../../operation/gis_maps/render_view.php:151
-msgid "5 minutes"
-msgstr ""
-
-#: ../../include/functions.php:3348
-msgid "15 minutes"
-msgstr ""
-
-#: ../../include/functions.php:3349 ../../include/ajax/module.php:199
-msgid "30 minutes"
-msgstr ""
-
-#: ../../include/functions.php:3864
-msgid "Summatory series"
-msgstr ""
-
-#: ../../include/functions.php:3868
-msgid "Average series"
-msgstr ""
-
-#: ../../include/functions.php:3896 ../../include/functions.php:3915
-#: ../../include/functions.php:3929 ../../include/functions.php:3951
-#: ../../include/functions.php:4032 ../../include/functions.php:4104
-msgid "Unit "
-msgstr ""
-
-#: ../../include/functions.php:3977 ../../include/functions.php:4042
-msgid "Min:"
-msgstr ""
-
-#: ../../include/functions.php:3984 ../../include/functions.php:4049
-msgid "Max:"
-msgstr ""
-
-#: ../../include/functions.php:3991 ../../include/functions.php:4056
-msgid "Avg:"
-msgstr ""
-
-#: ../../include/functions.php:4101 ../../include/functions.php:4109
-msgid "of module"
-msgstr ""
-
-#: ../../include/functions.php:4126
-msgid "Projection"
-msgstr ""
-
-#: ../../include/functions.php:5944
-msgid "Testing Pandora FMS email"
-msgstr ""
-
-#: ../../include/functions.php:5957
-msgid ""
-"This is an email test sent from Pandora FMS. If you can read this, your "
-"configuration works."
-msgstr ""
-
-#: ../../include/functions_cron.php:446
-msgid "Scheduled jobs"
-msgstr ""
-
-#: ../../include/functions_cron.php:455
-msgid "Task"
-msgstr ""
-
-#: ../../include/functions_cron.php:456
-msgid "Scheduled"
-msgstr ""
-
-#: ../../include/functions_cron.php:457
-msgid "Next execution"
-msgstr ""
-
-#: ../../include/functions_cron.php:458
-msgid "Last run"
-msgstr ""
-
-#: ../../include/functions_cron.php:483 ../../include/functions_cron.php:511
-#: ../../include/functions_cron.php:552 ../../include/functions_cron.php:621
-#: ../../include/functions_cron.php:650 ../../include/functions_cron.php:689
-#: ../../include/functions_cron.php:725 ../../include/functions_cron.php:752
-msgid "Force run"
-msgstr ""
-
-#: ../../include/functions_cron.php:539 ../../include/functions_cron.php:609
-#: ../../include/functions_cron.php:713
-msgid "Report type"
-msgstr ""
-
-#: ../../include/functions_cron.php:590
-msgid "regex"
-msgstr ""
-
-#: ../../include/functions_cron.php:606
-msgid "Report per agent"
-msgstr ""
-
-#: ../../include/functions_cron.php:639
-msgid "Custom script"
-msgstr ""
-
-#: ../../include/functions_cron.php:678 ../../include/functions_cron.php:712
-#: ../../include/class/Diagnostics.class.php:2173
-msgid "Path"
-msgstr ""
-
-#: ../../include/functions_api.php:116
-msgid "Not `set`, `get` or `help` operation selected."
-msgstr ""
-
-#: ../../include/functions_api.php:126
-msgid "This operation does not exist."
-msgstr ""
-
-#: ../../include/functions_api.php:136
-msgid "The Id does not exist in database."
-msgstr ""
-
-#: ../../include/functions_api.php:146
-msgid "This operation can not be used in cluster elements."
-msgstr ""
-
-#: ../../include/functions_api.php:156
-msgid "The user has not enough permissions for perform this action."
-msgstr ""
-
-#: ../../include/functions_api.php:166
-msgid "No data to show."
-msgstr ""
-
-#: ../../include/functions_api.php:176
-msgid ""
-"This console is not the environment administrator. Please, manage this "
-"feature from centralized manager console (Metaconsole)."
-msgstr ""
-
-#: ../../include/functions_api.php:186
-msgid "Auth error"
-msgstr ""
-
-#: ../../include/functions_api.php:1471
-msgid ""
-"The agent could not be modified. For security reasons, use a group other "
-"than 0."
-msgstr ""
-
-#: ../../include/functions_api.php:1925
-#, php-format
-msgid "Updated %d/%d agents"
-msgstr ""
-
-#: ../../include/functions_api.php:1933
-msgid "Agent updated."
-msgstr ""
-
-#: ../../include/functions_api.php:2167
-msgid "Could not create OS"
-msgstr ""
-
-#: ../../include/functions_api.php:2206
-msgid "Could not update OS"
-msgstr ""
-
-#: ../../include/functions_api.php:2407
-msgid "The agent was successfully deleted"
-msgstr ""
-
-#: ../../include/functions_api.php:3902
-msgid "Network module updated."
-msgstr ""
-
-#: ../../include/functions_api.php:4198
-msgid "Plugin module updated."
-msgstr ""
-
-#: ../../include/functions_api.php:4554
-#, php-format
-msgid "Synthetic module created ID: %s"
-msgstr ""
-
-#: ../../include/functions_api.php:4707
-msgid "Synthetic module created ID: "
-msgstr ""
-
-#: ../../include/functions_api.php:4824
-msgid "Data module updated."
-msgstr ""
-
-#: ../../include/functions_api.php:5197
-msgid "SNMP module updated."
-msgstr ""
-
-#: ../../include/functions_api.php:5804
-msgid "Error creating alert template. Id_group cannot be left blank."
-msgstr ""
-
-#: ../../include/functions_api.php:5818
-msgid ""
-"Error creating alert template. Invalid id_group or the user has not enough "
-"permission to make this action."
-msgstr ""
-
-#: ../../include/functions_api.php:5964
-msgid ""
-"Error updating alert template. Invalid id_group or the user has not enough "
-"permission to make this action."
-msgstr ""
-
-#: ../../include/functions_api.php:6048
-msgid "Successful update of the alert template"
-msgstr ""
-
-#: ../../include/functions_api.php:6096
-msgid "Error deleting alert template. Id_template doesn't exist."
-msgstr ""
-
-#: ../../include/functions_api.php:6125
-msgid "Successful delete of alert template."
-msgstr ""
-
-#: ../../include/functions_api.php:6545 ../../include/functions_api.php:12494
-#: ../../include/functions_api.php:12560 ../../include/functions_api.php:12841
-#: ../../include/functions_api.php:12921
-#, php-format
-msgid "%d agents affected"
-msgstr ""
-
-#: ../../include/functions_api.php:6691
-msgid "Correct deleting of module template."
-msgstr ""
-
-#: ../../include/functions_api.php:6799
-msgid "Successful delete of module template."
-msgstr ""
-
-#: ../../include/functions_api.php:6832
-msgid "Error validating alert. Id_template cannot be left blank."
-msgstr ""
-
-#: ../../include/functions_api.php:6840
-msgid "Error validating alert. Id_agent cannot be left blank."
-msgstr ""
-
-#: ../../include/functions_api.php:6848
-msgid "Error validating alert. Id_module cannot be left blank."
-msgstr ""
-
-#: ../../include/functions_api.php:6919
-msgid "Error validating alert. Specified alert does not exist."
-msgstr ""
-
-#: ../../include/functions_api.php:6930
-msgid "Error validating alert"
-msgstr ""
-
-#: ../../include/functions_api.php:7004
-#, php-format
-msgid "Correct validation of all alerts (total %d)."
-msgstr ""
-
-#: ../../include/functions_api.php:7098
-msgid "Correct validation of all policy alerts."
-msgstr ""
-
-#: ../../include/functions_api.php:7140
-msgid ""
-"Error stopping downtime. Periodical and running scheduled downtime cannot be "
-"stopped."
-msgstr ""
-
-#: ../../include/functions_api.php:7153
-msgid "Downtime stopped."
-msgstr ""
-
-#: ../../include/functions_api.php:7635
-msgid "and this modules are doesn't exists or not applicable a this agents: "
-msgstr ""
-
-#: ../../include/functions_api.php:7639
-msgid "and this agents are generate problems: "
-msgstr ""
-
-#: ../../include/functions_api.php:7643
-msgid "and this agents with ids are doesn't exists: "
-msgstr ""
-
-#: ../../include/functions_api.php:7791
-msgid "Planned downtime updated"
-msgstr ""
-
-#: ../../include/functions_api.php:7867
-msgid " Agents deleted"
-msgstr ""
-
-#: ../../include/functions_api.php:7948
-msgid " Agents added"
-msgstr ""
-
-#: ../../include/functions_api.php:8068
-msgid "Data policy module updated."
-msgstr ""
-
-#: ../../include/functions_api.php:8301
-msgid "Network policy module updated."
-msgstr ""
-
-#: ../../include/functions_api.php:8558
-msgid "Plugin policy module updated."
-msgstr ""
-
-#: ../../include/functions_api.php:9067
-msgid "SNMP policy module updated."
-msgstr ""
-
-#: ../../include/functions_api.php:9412
-msgid "Successful deletion"
-msgstr ""
-
-#: ../../include/functions_api.php:9728
-msgid "User created."
-msgstr ""
-
-#: ../../include/functions_api.php:9823
-msgid "User updated."
-msgstr ""
-
-#: ../../include/functions_api.php:9902
-msgid "Enabled user."
-msgstr ""
-
-#: ../../include/functions_api.php:9910
-msgid "Disabled user."
-msgstr ""
-
-#: ../../include/functions_api.php:10207
-#, php-format
-msgid "Template have been inserted in %d agents."
-msgstr ""
-
-#: ../../include/functions_api.php:10379
-msgid "XML file was generated successfully in path: "
-msgstr ""
-
-#: ../../include/functions_api.php:10519
-#, php-format
-msgid "Module has been created in %d agents."
-msgstr ""
-
-#: ../../include/functions_api.php:10649
-#, php-format
-msgid "Action has been set for %d agents."
-msgstr ""
-
-#: ../../include/functions_api.php:12084
-msgid "User deleted."
-msgstr ""
-
-#: ../../include/functions_api.php:12145
-msgid "User profile added."
-msgstr ""
-
-#: ../../include/functions_api.php:12212
-msgid "User profile deleted."
-msgstr ""
-
-#: ../../include/functions_api.php:12501
-msgid "Module disabled successfully."
-msgstr ""
-
-#: ../../include/functions_api.php:12503
-msgid "The module could not be disabled."
-msgstr ""
-
-#: ../../include/functions_api.php:12567
-msgid "Module enabled successfully."
-msgstr ""
-
-#: ../../include/functions_api.php:12569
-msgid "The module could not be enabled."
-msgstr ""
-
-#: ../../include/functions_api.php:12617 ../../include/functions_api.php:12670
-msgid "The alert could not be disabled."
-msgstr ""
-
-#: ../../include/functions_api.php:12717 ../../include/functions_api.php:12770
-msgid "The alert could not be enabled."
-msgstr ""
-
-#: ../../include/functions_api.php:14011
-msgid "Enabled agent."
-msgstr ""
-
-#: ../../include/functions_api.php:14019
-msgid "Disabled agent."
-msgstr ""
-
-#: ../../include/functions_api.php:14998
-msgid "Metaconsole and the licenses of all nodes were updated."
-msgstr ""
-
-#: ../../include/functions_api.php:15000
-#, php-format
-msgid "Metaconsole license updated but %d of %d node failed to sync."
-msgstr ""
-
-#: ../../include/functions_api.php:15003
-msgid "This function is for metaconsole only."
-msgstr ""
-
-#: ../../include/functions_api.php:15342 ../../include/functions_api.php:15413
-msgid "Successfully deleted."
-msgstr ""
-
-#: ../../include/functions_api.php:15372
-msgid "The user cannot access the cluster."
-msgstr ""
-
-#: ../../include/functions_api.php:16258
-msgid "Event filter successfully created."
-msgstr ""
-
-#: ../../include/functions_api.php:16491
-msgid "Event filter successfully updated."
-msgstr ""
-
-#: ../../include/functions_api.php:16532
-msgid "Event filter successfully deleted."
-msgstr ""
-
-#: ../../include/functions_api.php:16816
-msgid "Validated traps."
-msgstr ""
-
-#: ../../include/functions_api.php:16843
-msgid "Deleted traps."
-msgstr ""
-
-#: ../../include/functions_api.php:17036
-#, php-format
-msgid "Successfully updated module/alert count in id agent %d."
-msgstr ""
-
-#: ../../include/functions_api.php:17038
-msgid "Successfully updated module/alert count in all agents"
-msgstr ""
-
-#: ../../include/functions_api.php:17490
-#, php-format
-msgid "Successfully added to delete pending id agent %d to id policy %d."
-msgstr ""
-
-#: ../../include/functions_api.php:17650
-msgid "Error enable/disable discovery task. Id_user cannot be left blank."
-msgstr ""
-
-#: ../../include/functions_api.php:17658
-msgid ""
-"Error enable/disable discovery task. Enable/disable value cannot be left "
-"blank."
-msgstr ""
-
-#: ../../include/functions_api.php:17683
-msgid "Error in discovery task enabling/disabling."
-msgstr ""
-
-#: ../../include/functions_api.php:17691
-msgid "Enabled discovery task."
-msgstr ""
-
-#: ../../include/functions_api.php:17699
-msgid "Disabled discovery task."
-msgstr ""
-
-#: ../../include/functions_networkmap.php:1299
-#: ../../include/functions_maps.php:42
-#: ../../include/lib/Dashboard/Widgets/tree_view.php:333
-#: ../../operation/tree.php:125 ../../operation/search_results.php:171
-#: ../../operation/search_main.php:73
-msgid "Policies"
-msgstr ""
-
-#: ../../include/functions_networkmap.php:1303
-msgid "Radial dynamic"
-msgstr ""
-
-#: ../../include/functions_networkmap.php:1307
-#: ../../include/functions_maps.php:38
-msgid "Topology"
-msgstr ""
-
-#: ../../include/functions_networkmap.php:1332
-msgid "Create a new topology map"
-msgstr ""
-
-#: ../../include/functions_networkmap.php:1333
-msgid "Create a new group map"
-msgstr ""
-
-#: ../../include/functions_networkmap.php:1334
-msgid "Create a new dynamic map"
-msgstr ""
-
-#: ../../include/functions_networkmap.php:1336
-msgid "Create a new radial dynamic map"
-msgstr ""
-
-#: ../../include/functions_networkmap.php:2068
-#: ../../include/functions_maps.php:73
-msgid "Copy of "
-msgstr ""
-
-#: ../../include/functions_networkmap.php:3401
-msgid "Map not found."
-msgstr ""
-
-#: ../../include/ajax/double_auth.ajax.php:144
-msgid ""
-"This is the private code that you should use with your authenticator app"
-msgstr ""
-
-#: ../../include/ajax/double_auth.ajax.php:145
-#: ../../include/ajax/double_auth.ajax.php:288
-msgid ""
-"You could enter the code manually or use the QR code to add it automatically"
-msgstr ""
-
-#: ../../include/ajax/double_auth.ajax.php:149
-#: ../../include/ajax/double_auth.ajax.php:292
-msgid "Code"
-msgstr ""
-
-#: ../../include/ajax/double_auth.ajax.php:151
-#: ../../include/ajax/double_auth.ajax.php:294
-msgid "QR"
-msgstr ""
-
-#: ../../include/ajax/double_auth.ajax.php:190
-msgid "You are about to activate the double authentication"
-msgstr ""
-
-#: ../../include/ajax/double_auth.ajax.php:192
-msgid ""
-"With this option enabled, your account access will be more secure, \n"
-"\t\tcause a code generated by other application will be required after the "
-"login"
-msgstr ""
-
-#: ../../include/ajax/double_auth.ajax.php:197
-msgid ""
-"You will need to install the app from the following link before continue"
-msgstr ""
-
-#: ../../include/ajax/double_auth.ajax.php:202
-msgid "Download the app"
-msgstr ""
-
-#: ../../include/ajax/double_auth.ajax.php:206
-#: ../../include/ajax/double_auth.ajax.php:299
-#: ../../include/functions_register.php:188
-msgid "Continue"
-msgstr ""
-
-#: ../../include/ajax/double_auth.ajax.php:222
-msgid "Are you installed the app yet?"
-msgstr ""
-
-#: ../../include/ajax/double_auth.ajax.php:282
-msgid "A private code has been generated"
-msgstr ""
-
-#: ../../include/ajax/double_auth.ajax.php:287
-msgid ""
-"Before continue, you should create a new entry into the authenticator app"
-msgstr ""
-
-#: ../../include/ajax/double_auth.ajax.php:297
-msgid "Refresh code"
-msgstr ""
-
-#: ../../include/ajax/double_auth.ajax.php:366
-msgid "Are you introduced the code in the authenticator app yet?"
-msgstr ""
-
-#: ../../include/ajax/double_auth.ajax.php:429
-msgid "Introduce a code generated by the app"
-msgstr ""
-
-#: ../../include/ajax/double_auth.ajax.php:430
-msgid "If the code is valid, the double authentication will be activated"
-msgstr ""
-
-#: ../../include/ajax/double_auth.ajax.php:439
-msgid "Validate code"
-msgstr ""
-
-#: ../../include/ajax/double_auth.ajax.php:491
-msgid "The code is valid, you can exit now"
-msgstr ""
-
-#: ../../include/ajax/double_auth.ajax.php:508
-msgid "The code is valid, but it was an error saving the data"
-msgstr ""
-
-#: ../../include/ajax/visual_console_builder.ajax.php:343
-#: ../../include/functions_visual_map.php:2833
-msgid "No data to show"
-msgstr ""
-
-#: ../../include/ajax/alert_list.ajax.php:275
-#: ../../include/ajax/alert_list.ajax.php:300 ../../include/ajax/module.php:970
-#: ../../operation/agentes/alerts_status.php:537
-#: ../../operation/agentes/alerts_status.php:573
-#: ../../operation/agentes/alerts_status.php:607
-#: ../../operation/agentes/alerts_status.php:640
-msgid "Force execution"
-msgstr ""
-
-#: ../../include/ajax/alert_list.ajax.php:275
-#: ../../include/ajax/alert_list.ajax.php:300 ../../include/ajax/module.php:970
-#: ../../operation/agentes/alerts_status.php:537
-#: ../../operation/agentes/alerts_status.php:573
-#: ../../operation/agentes/alerts_status.php:607
-#: ../../operation/agentes/alerts_status.php:640
-msgid "F."
-msgstr ""
-
-#: ../../include/ajax/alert_list.ajax.php:327
-#: ../../operation/agentes/alerts_status.php:726
-msgid "No alerts found"
-msgstr ""
-
-#: ../../include/ajax/snmp_browser.ajax.php:113
-#: ../../include/ajax/snmp_browser.ajax.php:124
-#: ../../include/ajax/snmp_browser.ajax.php:134
-msgid "SNMP modules"
-msgstr ""
-
-#: ../../include/ajax/snmp_browser.ajax.php:117
-msgid "Error creating the following modules:"
-msgstr ""
-
-#: ../../include/ajax/snmp_browser.ajax.php:128
-msgid "Modules successfully created"
-msgstr ""
-
-#: ../../include/ajax/snmp_browser.ajax.php:138
-msgid "Module must be applied to an agent or a policy"
-msgstr ""
-
-#: ../../include/ajax/snmp_browser.ajax.php:263
-msgid "Failed to create policy"
-msgstr ""
-
-#: ../../include/ajax/snmp_browser.ajax.php:264
-msgid "Policy created succesfully"
-msgstr ""
-
-#: ../../include/ajax/module.php:201
-msgid "6 hours"
-msgstr ""
-
-#: ../../include/ajax/module.php:207
-msgid "3 months"
-msgstr ""
-
-#: ../../include/ajax/module.php:208
-msgid "6 months"
-msgstr ""
-
-#: ../../include/ajax/module.php:210
-msgid "2 years"
-msgstr ""
-
-#: ../../include/ajax/module.php:211
-msgid "3 years"
-msgstr ""
-
-#: ../../include/ajax/module.php:223
-#: ../../operation/agentes/datos_agente.php:194
-msgid "Choose a time from now"
-msgstr ""
-
-#: ../../include/ajax/module.php:249
-#: ../../operation/agentes/datos_agente.php:197
-msgid "Specify time range"
-msgstr ""
-
-#: ../../include/ajax/module.php:250
-#: ../../operation/agentes/datos_agente.php:198
-#: ../../operation/events/events_list.php:877
-msgid "Timestamp from:"
-msgstr ""
-
-#: ../../include/ajax/module.php:270
-#: ../../operation/agentes/datos_agente.php:204
-#: ../../operation/events/events_list.php:880
-msgid "Timestamp to:"
-msgstr ""
-
-#: ../../include/ajax/module.php:307
-msgid "Exact phrase"
-msgstr ""
-
-#: ../../include/ajax/module.php:399 ../../operation/agentes/stat_win.php:502
-#: ../../operation/agentes/interface_traffic_graph_win.php:308
-msgid ""
-"In Pandora FMS, data is stored compressed. The data visualization in "
-"database, charts or CSV exported data won't match, because is interpreted at "
-"runtime. Please check 'Pandora FMS Engineering' chapter from documentation."
-msgstr ""
-
-#: ../../include/ajax/module.php:981
-msgid "Thresholds"
-msgstr ""
-
-#: ../../include/ajax/module.php:1304
-msgid "Any monitors aren't with this filter."
-msgstr ""
-
-#: ../../include/ajax/module.php:1306
-msgid "This agent doesn't have any active monitors."
-msgstr ""
-
-#: ../../include/ajax/custom_fields.php:413
-#: ../../include/class/AgentWizard.class.php:1189
-msgid "Treshold"
-msgstr ""
-
-#: ../../include/ajax/custom_fields.php:414
-msgid "Current interval"
-msgstr ""
-
-#: ../../include/ajax/custom_fields.php:460
-#: ../../include/ajax/custom_fields.php:513
-msgid "Modules normal"
-msgstr ""
-
-#: ../../include/ajax/custom_fields.php:471
-msgid "Modules critical"
-msgstr ""
-
-#: ../../include/ajax/custom_fields.php:482
-msgid "Modules warning"
-msgstr ""
-
-#: ../../include/ajax/custom_fields.php:492
-msgid "Modules unknown"
-msgstr ""
-
-#: ../../include/ajax/custom_fields.php:503
-msgid "Modules no init"
-msgstr ""
-
-#: ../../include/ajax/custom_fields.php:545
-msgid "New Filter"
-msgstr ""
-
-#: ../../include/ajax/custom_fields.php:552
-msgid "Existing Filter"
-msgstr ""
-
-#: ../../include/ajax/custom_fields.php:587 ../../include/ajax/events.php:480
-#: ../../include/ajax/events.php:496
-#: ../../operation/netflow/nf_live_view.php:389
-#: ../../operation/events/events_list.php:380
-#: ../../operation/events/events_list.php:520
-#: ../../operation/events/events_list.php:531
-#: ../../operation/events/events_list.php:1049
-#: ../../operation/events/events.php:1155
-msgid "Load filter"
-msgstr ""
-
-#: ../../include/ajax/custom_fields.php:700
-msgid "Delete filter"
-msgstr ""
-
-#: ../../include/ajax/custom_fields.php:750
-msgid "Filter name already exists in the bbdd"
-msgstr ""
-
-#: ../../include/ajax/custom_fields.php:762
-msgid "Please, select a custom field"
-msgstr ""
-
-#: ../../include/ajax/custom_fields.php:790
-msgid "Success create filter."
-msgstr ""
-
-#: ../../include/ajax/custom_fields.php:797
-msgid "Error create filter."
-msgstr ""
-
-#: ../../include/ajax/custom_fields.php:822
-#: ../../include/ajax/custom_fields.php:895
-msgid "please, select a filter"
-msgstr ""
-
-#: ../../include/ajax/custom_fields.php:838
-msgid "please, select a custom field"
-msgstr ""
-
-#: ../../include/ajax/custom_fields.php:864
-msgid "Success update filter."
-msgstr ""
-
-#: ../../include/ajax/custom_fields.php:871
-msgid "Error update filter."
-msgstr ""
-
-#: ../../include/ajax/custom_fields.php:914
-msgid "Success delete filter."
-msgstr ""
-
-#: ../../include/ajax/custom_fields.php:921
-msgid "Error delete filter."
-msgstr ""
-
-#: ../../include/ajax/events.php:94
-msgid "Failed to retrieve comments"
-msgstr ""
-
-#: ../../include/ajax/events.php:655 ../../operation/events/events_list.php:414
-msgid "New filter"
-msgstr ""
-
-#: ../../include/ajax/events.php:673 ../../operation/events/events_list.php:432
-msgid "Save in Group"
-msgstr ""
-
-#: ../../include/ajax/events.php:675 ../../include/functions_html.php:1149
-#: ../../include/functions_html.php:1302
-#: ../../include/functions_snmp_browser.php:1478
-#: ../../operation/events/events_list.php:434
-msgid "Filter group"
-msgstr ""
-
-#: ../../include/ajax/events.php:709 ../../operation/events/events_list.php:461
-msgid "Overwrite filter"
-msgstr ""
-
-#: ../../include/ajax/events.php:736 ../../operation/events/events_list.php:372
-#: ../../operation/events/events_list.php:489
-#: ../../operation/events/events_list.php:1046
-#: ../../operation/events/events.php:1163
-msgid "Save filter"
-msgstr ""
-
-#: ../../include/ajax/events.php:780
-#: ../../operation/events/events_list.php:1534
-msgid "Filter name cannot be left blank"
-msgstr ""
-
-#: ../../include/ajax/events.php:1149
-msgid "Error executing response"
-msgstr ""
-
-#: ../../include/ajax/events.php:1186
-#, php-format
-msgid "Executing command: %s"
-msgstr ""
-
-#: ../../include/ajax/events.php:1203 ../../include/ajax/events.php:1227
-msgid "Execute again"
-msgstr ""
-
-#: ../../include/ajax/events.php:1431
-msgid "Related"
-msgstr ""
-
-#: ../../include/ajax/events.php:1438
-#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:59
-#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:378
-msgid "Details"
-msgstr ""
-
-#: ../../include/ajax/events.php:1443
-msgid "Agent fields"
-msgstr ""
-
-#: ../../include/ajax/events.php:1483
-msgid "Custom data"
-msgstr ""
-
-#: ../../include/ajax/events.php:1581
-msgid "Error adding comment"
-msgstr ""
-
-#: ../../include/ajax/events.php:1582
-msgid "Comment added successfully"
-msgstr ""
-
-#: ../../include/ajax/events.php:1583
-msgid "Error changing event status"
-msgstr ""
-
-#: ../../include/ajax/events.php:1584
-msgid "Event status changed successfully"
-msgstr ""
-
-#: ../../include/ajax/events.php:1585
-msgid "Error changing event owner"
-msgstr ""
-
-#: ../../include/ajax/events.php:1586
-msgid "Event owner changed successfully"
-msgstr ""
-
-#: ../../include/ajax/events.php:1792
-msgid "Show all Events 24h"
-msgstr ""
-
-#: ../../include/ajax/events.php:1929
-msgid "These commands will apply to all selected events"
-msgstr ""
-
-#: ../../include/ajax/events.php:1958
-#: ../../include/class/ExternalTools.class.php:581
-#: ../../include/functions_events.php:3792
-msgid "Execute"
-msgstr ""
-
-#: ../../include/ajax/events.php:2037
-msgid "Alert fired in module "
-msgstr ""
-
-#: ../../include/ajax/events.php:2051 ../../include/ajax/events.php:2065
-#: ../../include/ajax/events.php:2079
-msgid "Module "
-msgstr ""
-
-#: ../../include/ajax/events.php:2052
-msgid " is going to critical"
-msgstr ""
-
-#: ../../include/ajax/events.php:2066
-msgid " is going to warning"
-msgstr ""
-
-#: ../../include/ajax/events.php:2080
-msgid " is going to unknown"
-msgstr ""
-
-#: ../../include/ajax/graph.ajax.php:161
-msgid "Time container lapse"
-msgstr ""
-
-#: ../../include/functions_agents.php:1001
-msgid ""
-"There was an error copying the agent configuration, the copy has been "
-"cancelled"
-msgstr ""
-
-#: ../../include/functions_agents.php:2936
-#: ../../include/functions_agents.php:2975
-#: ../../include/functions_agents.php:3046
-msgid "No Monitors"
-msgstr ""
-
-#: ../../include/functions_agents.php:2944
-#: ../../include/functions_agents.php:2999
-#: ../../include/functions_agents.php:3054
-#: ../../include/functions_reporting.php:11745
-msgid "At least one module in CRITICAL status"
-msgstr ""
-
-#: ../../include/functions_agents.php:2950
-#: ../../include/functions_agents.php:3009
-#: ../../include/functions_agents.php:3062
-#: ../../include/functions_reporting.php:11752
-msgid "At least one module in WARNING status"
-msgstr ""
-
-#: ../../include/functions_agents.php:2956
-#: ../../include/functions_agents.php:3019
-#: ../../include/functions_agents.php:3070
-#: ../../include/functions_reporting.php:11759
-msgid "At least one module is in UKNOWN status"
-msgstr ""
-
-#: ../../include/functions_agents.php:2962
-#: ../../include/functions_agents.php:3029
-#: ../../include/functions_agents.php:3078
-#: ../../include/functions_reporting.php:11766
-msgid "All Monitors OK"
-msgstr ""
-
-#: ../../include/functions_agents.php:2987
-msgid "Alert fired on agent"
-msgstr ""
-
-#: ../../include/functions_agents.php:3970
-msgid "SAP Login OK"
-msgstr ""
-
-#: ../../include/functions_agents.php:3971
-msgid "SAP Dumps"
-msgstr ""
-
-#: ../../include/functions_agents.php:3972
-msgid "SAP lock entry list"
-msgstr ""
-
-#: ../../include/functions_agents.php:3973
-msgid "SAP canceled Jobs"
-msgstr ""
-
-#: ../../include/functions_agents.php:3974
-msgid "SAP Batch inputs erroneous"
-msgstr ""
-
-#: ../../include/functions_agents.php:3975
-msgid "SAP IDOC erroneous"
-msgstr ""
-
-#: ../../include/functions_agents.php:3976
-msgid "SAP IDOC OK"
-msgstr ""
-
-#: ../../include/functions_agents.php:3977
-msgid "SAP WP without active restart"
-msgstr ""
-
-#: ../../include/functions_agents.php:3978
-msgid "SAP WP stopped"
-msgstr ""
-
-#: ../../include/functions_agents.php:3979
-msgid "Average time of SAPGUI response"
-msgstr ""
-
-#: ../../include/functions_agents.php:3980
-msgid "Dialog response time"
-msgstr ""
-
-#: ../../include/functions_agents.php:3981
-msgid "Dialog Logged users"
-msgstr ""
-
-#: ../../include/functions_agents.php:3982
-msgid "TRFC in error"
-msgstr ""
-
-#: ../../include/functions_agents.php:3983
-msgid "QRFC in error SMQ2"
-msgstr ""
-
-#: ../../include/functions_agents.php:3984
-msgid "Number of Update WPs in error"
-msgstr ""
-
-#: ../../include/functions_plugins.php:58
-#, php-format
-msgid "Failed to erase module %d: %s"
-msgstr ""
-
-#: ../../include/functions_plugins.php:72
-#, php-format
-msgid "Failed to erase policy module: %d"
-msgstr ""
-
-#: ../../include/functions_integriaims.php:42
-msgid "Configure Integria IMS"
-msgstr ""
-
-#: ../../include/functions_integriaims.php:43
-msgid "Ticket list"
-msgstr ""
-
-#: ../../include/functions_integriaims.php:44
-msgid "New ticket"
-msgstr ""
-
-#: ../../include/functions_integriaims.php:73
-msgid "Edit ticket"
-msgstr ""
-
-#: ../../include/functions_integriaims.php:74
-msgid "View ticket"
-msgstr ""
-
-#: ../../include/functions_integriaims.php:293
-msgid ""
-"API request failed. Please check Integria IMS' access credentials in Pandora "
-"setup."
-msgstr ""
-
-#: ../../include/functions_integriaims.php:543
-msgid "File successfully added"
-msgstr ""
-
-#: ../../include/functions_integriaims.php:544
-msgid "File could not be added"
-msgstr ""
-
-#: ../../include/functions_integriaims.php:547
-msgid "File has an invalid extension"
-msgstr ""
-
-#: ../../include/functions_modules.php:4004
-msgid "Realtime SNMP graph"
-msgstr ""
-
-#: ../../include/functions_modules.php:4069
-msgid "ALL"
-msgstr ""
-
-#: ../../include/functions_modules.php:4085
-msgid "NOT NORMAL"
-msgstr ""
-
-#: ../../include/auth/mysql.php:305 ../../include/auth/mysql.php:333
-msgid ""
-"Problems with configuration permissions. Please contact with Administrator"
-msgstr ""
-
-#: ../../include/auth/mysql.php:320 ../../include/auth/mysql.php:383
-#: ../../include/auth/mysql.php:398 ../../include/auth/mysql.php:429
-msgid "User not found in database or incorrect password"
-msgstr ""
-
-#: ../../include/auth/mysql.php:346
-msgid ""
-"Ooops User not found in \n"
-"\t\t\t\tdatabase or incorrect password"
-msgstr ""
-
-#: ../../include/auth/mysql.php:358 ../../include/auth/mysql.php:388
-#: ../../include/auth/mysql.php:423
-msgid "Please, login into metaconsole first"
-msgstr ""
-
-#: ../../include/auth/mysql.php:704
-msgid "Could not changes password on remote pandora"
-msgstr ""
-
-#: ../../include/auth/mysql.php:752
-msgid "Your installation of PHP does not support LDAP"
-msgstr ""
-
-#: ../../include/api.php:237
-msgid "User or group not specified"
-msgstr ""
-
-#: ../../include/api.php:238
-msgid "User, group not specified"
-msgstr ""
-
-#: ../../include/api.php:269
-msgid "User, group or profile not specified"
-msgstr ""
-
-#: ../../include/api.php:270
-msgid "User, group or profile status not specified"
-msgstr ""
-
-#: ../../include/functions_graph.php:1088
-msgid "No data to display within the selected interval"
-msgstr ""
-
-#: ../../include/functions_graph.php:2621
-msgid "Not fired alerts"
-msgstr ""
-
-#: ../../include/functions_graph.php:2640
-#: ../../include/functions_graph.php:2776
-#: ../../include/functions_graph.php:2874
-#: ../../include/functions_graph.php:3335
-#: ../../include/functions_graph.php:3909
-#: ../../include/functions_reporting.php:1778
-#: ../../include/functions_reporting.php:2025
-#: ../../include/functions_reporting.php:2051
-#: ../../include/functions_reporting.php:2078
-#: ../../include/functions_reporting.php:2106
-#: ../../include/functions_reporting.php:3307
-#: ../../include/functions_reporting.php:3678
-#: ../../include/functions_reporting.php:3706
-#: ../../include/functions_reporting.php:3734
-#: ../../include/functions_reporting.php:9958
-#: ../../include/functions_reporting.php:9986
-#: ../../include/functions_reporting.php:10014
-#: ../../include/lib/Dashboard/Widgets/top_n_events_by_module.php:518
-#: ../../include/lib/Dashboard/Widgets/top_n_events_by_group.php:483
-msgid "other"
-msgstr ""
-
-#: ../../include/functions_graph.php:3317
-#: ../../include/functions_events.php:2586
-#: ../../include/functions_events.php:3343
-#: ../../include/functions_events.php:3632
-#: ../../include/functions_events.php:3641
-#: ../../include/functions_events.php:3648
-#: ../../include/functions_events.php:3655
-#: ../../include/functions_events.php:6112
-#: ../../include/functions_events.php:6120
-#: ../../operation/snmpconsole/snmp_view.php:588
-#: ../../operation/snmpconsole/snmp_view.php:941
-#: ../../operation/snmpconsole/snmp_view.php:1234
-msgid "Validated"
-msgstr ""
-
-#: ../../include/functions_graph.php:3446 ../../include/functions_ui.php:3727
-#: ../../include/functions_events.php:100
-#: ../../include/functions_events.php:2866
-#: ../../operation/events/events.php:2056
-msgid "SYSTEM"
-msgstr ""
-
-#: ../../include/functions_graph.php:5499
-msgid "Main node"
-msgstr ""
-
-#: ../../include/functions_gis.php:27 ../../include/functions_gis.php:31
-#: ../../include/functions_gis.php:36
-msgid "Hierarchy of agents"
-msgstr ""
-
-#: ../../include/functions_treeview.php:52
-msgid "There was a problem loading module"
-msgstr ""
-
-#: ../../include/functions_treeview.php:342
-msgid "Go to module edition"
-msgstr ""
-
-#: ../../include/functions_treeview.php:393
-msgid "There was a problem loading alerts"
-msgstr ""
-
-#: ../../include/functions_treeview.php:478
-msgid "Go to alerts edition"
-msgstr ""
-
-#: ../../include/functions_treeview.php:564
-#: ../../operation/agentes/agent_fields.php:24
-#: ../../operation/agentes/custom_fields.php:24
-#: ../../operation/agentes/estado_generalagente.php:62
-msgid "There was a problem loading agent"
-msgstr ""
-
-#: ../../include/functions_treeview.php:634
-#: ../../operation/agentes/estado_generalagente.php:486
-msgid "Other IP addresses"
-msgstr ""
-
-#: ../../include/functions_treeview.php:668
-#: ../../operation/agentes/estado_agente.php:743
-#: ../../operation/agentes/estado_generalagente.php:343
-#: ../../operation/gis_maps/ajax.php:360 ../../operation/gis_maps/ajax.php:477
-msgid "Remote"
-msgstr ""
-
-#: ../../include/functions_treeview.php:676
-msgid "Next agent contact"
-msgstr ""
-
-#: ../../include/functions_treeview.php:703
-msgid "Edit cluster"
-msgstr ""
-
-#: ../../include/functions_treeview.php:707
-msgid "Go to agent edition"
-msgstr ""
-
-#: ../../include/functions_treeview.php:719
-msgid "Agent data"
-msgstr ""
-
-#: ../../include/functions_treeview.php:731
-#: ../../operation/agentes/estado_generalagente.php:227
-#: ../../operation/gis_maps/ajax.php:341
-msgid "Agent Version"
-msgstr ""
-
-#: ../../include/functions_treeview.php:750
-#: ../../operation/agentes/estado_generalagente.php:452
-msgid "Position (Long, Lat)"
-msgstr ""
-
-#: ../../include/functions_treeview.php:767
-#: ../../operation/agentes/estado_generalagente.php:494
-msgid "Timezone Offset"
-msgstr ""
-
-#: ../../include/functions_treeview.php:783
-#: ../../operation/agentes/agent_fields.php:44
-#: ../../operation/agentes/estado_generalagente.php:525
-msgid "Custom field"
-msgstr ""
-
-#: ../../include/functions_treeview.php:799
-msgid "Advanced information"
-msgstr ""
-
-#: ../../include/functions_treeview.php:812
-msgid "Agent access rate (24h)"
-msgstr ""
-
-#: ../../include/functions_treeview.php:878
-#: ../../operation/agentes/pandora_networkmap.view.php:1234
-#: ../../operation/agentes/estado_generalagente.php:700
-msgid "Interface traffic"
-msgstr ""
-
-#: ../../include/functions_treeview.php:901
-msgid "Interface information"
-msgstr ""
-
-#: ../../include/functions_menu.php:483
-msgid "Configure user"
-msgstr ""
-
-#: ../../include/functions_menu.php:484
-msgid "Configure profile"
-msgstr ""
-
-#: ../../include/functions_menu.php:486
-msgid "Module templates management"
-msgstr ""
-
-#: ../../include/functions_menu.php:487
-msgid "Inventory modules management"
-msgstr ""
-
-#: ../../include/functions_menu.php:489
-msgid "Agents management"
-msgstr ""
-
-#: ../../include/functions_menu.php:494
-msgid "Builder visual console"
-msgstr ""
-
-#: ../../include/functions_menu.php:496
-msgid "View reporting"
-msgstr ""
-
-#: ../../include/functions_menu.php:497
-msgid "Graph viewer"
-msgstr ""
-
-#: ../../include/functions_menu.php:499
-msgid "Manage custom graphs"
-msgstr ""
-
-#: ../../include/functions_menu.php:500
-msgid "View graph containers"
-msgstr ""
-
-#: ../../include/functions_menu.php:501
-msgid "Manage graph containers"
-msgstr ""
-
-#: ../../include/functions_menu.php:502
-msgid "View graph templates"
-msgstr ""
-
-#: ../../include/functions_menu.php:503
-msgid "Manage graph templates"
-msgstr ""
-
-#: ../../include/functions_menu.php:504
-msgid "Graph template items"
-msgstr ""
-
-#: ../../include/functions_menu.php:505
-msgid "Graph template wizard"
-msgstr ""
-
-#: ../../include/functions_menu.php:506
-msgid "Templates wizard"
-msgstr ""
-
-#: ../../include/functions_menu.php:509
-msgid "Manage GIS Maps"
-msgstr ""
-
-#: ../../include/functions_menu.php:512
-msgid "Manage messages"
-msgstr ""
-
-#: ../../include/functions_menu.php:514
-msgid "Manage module groups"
-msgstr ""
-
-#: ../../include/functions_menu.php:515
-msgid "Manage custom field"
-msgstr ""
-
-#: ../../include/functions_menu.php:517
-msgid "Manage alert actions"
-msgstr ""
-
-#: ../../include/functions_menu.php:518
-msgid "Manage commands"
-msgstr ""
-
-#: ../../include/functions_menu.php:520
-msgid "Manage export targets"
-msgstr ""
-
-#: ../../include/functions_menu.php:522 ../../operation/menu.php:133
-msgid "SNMP trap generator"
-msgstr ""
-
-#: ../../include/functions_menu.php:523 ../../operation/menu.php:122
-msgid "SNMP console"
-msgstr ""
-
-#: ../../include/functions_menu.php:525
-msgid "Manage incident"
-msgstr ""
-
-#: ../../include/functions_menu.php:527
-msgid "Manage groups"
-msgstr ""
-
-#: ../../include/functions_menu.php:528
-msgid "Tags management"
-msgstr ""
-
-#: ../../include/functions_menu.php:587
-msgid "Administration"
-msgstr ""
-
-#: ../../include/functions_incidents.php:29
-#: ../../include/functions_incidents.php:55
-msgid "Informative"
-msgstr ""
-
-#: ../../include/functions_incidents.php:30
-#: ../../include/functions_incidents.php:59
-#: ../../include/functions_netflow.php:1620
-msgid "Low"
-msgstr ""
-
-#: ../../include/functions_incidents.php:31
-#: ../../include/functions_incidents.php:63
-#: ../../include/functions_netflow.php:1621
-msgid "Medium"
-msgstr ""
-
-#: ../../include/functions_incidents.php:32
-#: ../../include/functions_incidents.php:67
-msgid "Serious"
-msgstr ""
-
-#: ../../include/functions_incidents.php:33
-#: ../../include/functions_incidents.php:71
-msgid "Very serious"
-msgstr ""
-
-#: ../../include/functions_incidents.php:95
-#: ../../include/functions_incidents.php:116
-msgid "Active incidents"
-msgstr ""
-
-#: ../../include/functions_incidents.php:96
-#: ../../include/functions_incidents.php:120
-msgid "Active incidents, with comments"
-msgstr ""
-
-#: ../../include/functions_incidents.php:97
-#: ../../include/functions_incidents.php:124
-msgid "Rejected incidents"
-msgstr ""
-
-#: ../../include/functions_incidents.php:98
-#: ../../include/functions_incidents.php:128
-msgid "Expired incidents"
-msgstr ""
-
-#: ../../include/functions_incidents.php:99
-#: ../../include/functions_incidents.php:132
-msgid "Closed incidents"
-msgstr ""
-
-#: ../../include/help/clippy/topology_group.php:35
-msgid "Topology Group"
-msgstr ""
-
-#: ../../include/help/clippy/topology_group.php:35
-msgid ""
-"Please note that group topology maps do not show the parent relationship "
-"between nodes, it only shows the group parentship and the agent distribution "
-"inside them. "
-msgstr ""
-
-#: ../../include/help/clippy/homepage.php:75
-msgid "Hi, can I help you?"
-msgstr ""
-
-#: ../../include/help/clippy/homepage.php:75
-#, php-format
-msgid ""
-"Let me introduce my self: I am Pandorin, the annoying assistant of %s. You "
-"can follow my steps to do basic tasks in %s or you can close me and never "
-"see me again."
-msgstr ""
-
-#: ../../include/help/clippy/homepage.php:75
-msgid "Close this wizard and don't open it again."
-msgstr ""
-
-#: ../../include/help/clippy/homepage.php:79
-msgid "Which task would you like to do first?"
-msgstr ""
-
-#: ../../include/help/clippy/homepage.php:79
-#, php-format
-msgid "Ping a Linux or Windows server using a %s agent."
-msgstr ""
-
-#: ../../include/help/clippy/homepage.php:79
-msgid "Create a alert by email in a critical module."
-msgstr ""
-
-#: ../../include/help/clippy/homepage.php:190
-#, php-format
-msgid ""
-"The first thing you have to do is to setup the e-mail config on the %s "
-"Server."
-msgstr ""
-
-#: ../../include/help/clippy/homepage.php:190
-msgid "If you have it already configured you can go to the next step."
-msgstr ""
-
-#: ../../include/help/clippy/homepage.php:195
-msgid "Now, pull down the Manage alerts menu and click on Actions. "
-msgstr ""
-
-#: ../../include/help/clippy/module_unknow.php:35
-msgid "You have unknown modules in this agent."
-msgstr ""
-
-#: ../../include/help/clippy/module_unknow.php:35
-msgid ""
-"Unknown modules are modules which receive data normally at least in one "
-"occassion, but at this time are not receving data. Please check our "
-"troubleshoot help page to help you determine why you have unknown modules."
-msgstr ""
-
-#: ../../include/help/clippy/modules_not_learning_mode.php:46
-msgid ""
-"Please note that you have your agent setup to do not add new modules coming "
-"from the data XML."
-msgstr ""
-
-#: ../../include/help/clippy/modules_not_learning_mode.php:46
-msgid ""
-"That means if you have a local plugin or add manually new modules to the "
-"configuration file, you won't have it in your agent, unless you first create "
-"manually in the interface (with the exact name and type as coming in the XML "
-"file)."
-msgstr ""
-
-#: ../../include/help/clippy/modules_not_learning_mode.php:46
-msgid ""
-"You should use the \"normal\" mode (non learn) only when you don't intend to "
-"add more modules to the agent."
-msgstr ""
-
-#: ../../include/help/clippy/operation_agentes_ver_agente.php:35
-msgid ""
-"The last step is to check the alert created. Click on the round icon to "
-"force the action execution and after a few minutes you will receive the "
-"alert in your email."
-msgstr ""
-
-#: ../../include/help/clippy/operation_agentes_ver_agente.php:35
-msgid ""
-"And restart your pandora server to read again general configuration tokens."
-msgstr ""
-
-#: ../../include/help/clippy/godmode_alerts_alert_actions.php:35
-msgid ""
-"Let me show you how to create an email action: Click on Create button and "
-"fill the form showed in the following screen."
-msgstr ""
-
-#: ../../include/help/clippy/godmode_alerts_alert_actions.php:49
-msgid ""
-"Now, you have to go to the monitors list and look for a critical module to "
-"apply the alert."
-msgstr ""
-
-#: ../../include/help/clippy/godmode_alerts_alert_actions.php:54
-msgid ""
-"Click on the arrow to drop down the Monitoring submenu and select Monitor "
-"Detail."
-msgstr ""
-
-#: ../../include/help/clippy/agent_out_of_limits.php:35
-msgid "Agent contact date passed it's ETA!."
-msgstr ""
-
-#: ../../include/help/clippy/agent_out_of_limits.php:35
-msgid ""
-"This happen when your agent stopped reporting or the server have any problem "
-"(too load or just down). Check also connectivity between the agent and the "
-"server."
-msgstr ""
-
-#: ../../include/help/clippy/godmode_agentes_modificar_agente.php:34
-msgid "I'm going to show you how to monitor a server."
-msgstr ""
-
-#: ../../include/help/clippy/godmode_agentes_modificar_agente.php:38
-msgid "Please, type an agent to save the modules for monitoring a server."
-msgstr ""
-
-#: ../../include/help/clippy/godmode_agentes_modificar_agente.php:43
-msgid "If you have typed the name correctly you will see the agent."
-msgstr ""
-
-#: ../../include/help/clippy/godmode_agentes_modificar_agente.php:57
-msgid "Now, please choose the agent you searched."
-msgstr ""
-
-#: ../../include/help/clippy/godmode_agentes_modificar_agente.php:62
-msgid "Choose the agent and click on the name."
-msgstr ""
-
-#: ../../include/help/clippy/modules_not_init.php:35
-msgid "You have non initialized modules"
-msgstr ""
-
-#: ../../include/help/clippy/modules_not_init.php:35
-msgid ""
-"This happen when you have just created a module and it's not executed at "
-"first time. Usually in a few seconds should be initialized and you will be "
-"able to see in main view. If you keep non-init modules for more than 24hr "
-"(due a problem in it's execution or configuration) they will be "
-"automatically deleted by the system. Non-init are not visible in the “main "
-"view”, you can see/edit them in the module administration section, in the "
-"agent administrator."
-msgstr ""
-
-#: ../../include/help/clippy/godmode_alerts_configure_alert_action.php:34
-msgid "Fill the name of your action."
-msgstr ""
-
-#: ../../include/help/clippy/godmode_alerts_configure_alert_action.php:38
-msgid ""
-"Select the group in the drop-down list and filter for ACL (the user in this "
-"group can use your action to create an alert)."
-msgstr ""
-
-#: ../../include/help/clippy/godmode_alerts_configure_alert_action.php:42
-msgid "In the command field select \"email\"."
-msgstr ""
-
-#: ../../include/help/clippy/godmode_alerts_configure_alert_action.php:46
-msgid ""
-"In the threshold field enter the seconds. The help icon show more "
-"information."
-msgstr ""
-
-#: ../../include/help/clippy/godmode_alerts_configure_alert_action.php:51
-msgid ""
-"In the first field enter the email address/addresses where you want to "
-"receive the email alerts separated with comas ( , ) or white spaces."
-msgstr ""
-
-#: ../../include/help/clippy/godmode_alerts_configure_alert_action.php:56
-msgid ""
-"In the \"Subject\"  field  you can use the macros _agent_ or _module_ for "
-"each name."
-msgstr ""
-
-#: ../../include/help/clippy/godmode_alerts_configure_alert_action.php:61
-msgid ""
-"In the text field, you can also use macros. Get more information about the "
-"macros by clicking on the help icon."
-msgstr ""
-
-#: ../../include/help/clippy/godmode_alerts_configure_alert_action.php:66
-msgid "Click on Create button to create the action."
-msgstr ""
-
-#: ../../include/help/clippy/data_configuration_module.php:35
-msgid "Data Configuration Module."
-msgstr ""
-
-#: ../../include/help/clippy/data_configuration_module.php:35
-msgid ""
-"Please note that information provided here affects how the agent collect "
-"information and generate the data XML. Any data/configuration reported by "
-"the agent, different from data or description is discarded, and the "
-"configuration shown in the console prevails over any configuration coming "
-"from the agent, this applies for example for crit/warn thresholds, interval, "
-"module group, min/max value, tags, etc."
-msgstr ""
-
-#: ../../include/help/clippy/data_configuration_module.php:35
-msgid ""
-"Information imported FIRST time from the XML will fill the information you "
-"can see in the console, but after the first import, system will ignore any "
-"update coming from the XML/Agent."
-msgstr ""
-
-#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:34
-msgid "Now you must go to Modules. Don't worry I'll lead you."
-msgstr ""
-
-#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:39
-msgid "Click in this tab.."
-msgstr ""
-
-#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:53
-msgid "Now you must create the module. Don't worry, i'll teach you."
-msgstr ""
-
-#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:57
-msgid "Choose the network server module."
-msgstr ""
-
-#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:61
-msgid "And click the button."
-msgstr ""
-
-#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:75
-msgid "Now you must create the module. Don't worry, i'll teach you ."
-msgstr ""
-
-#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:79
-msgid "Now we are going to fill the form."
-msgstr ""
-
-#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:83
-msgid "Please choose Network Management."
-msgstr ""
-
-#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:87
-msgid "Choose the component named \"Host alive\"."
-msgstr ""
-
-#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:91
-msgid "You can change the name if you want."
-msgstr ""
-
-#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:95
-msgid "Check if the IP showed is the IP of your machine."
-msgstr ""
-
-#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:99
-msgid "And only to finish it is clicking this button."
-msgstr ""
-
-#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:114
-msgid ""
-"Congrats! Your module has been created. <br /> and the status color is "
-"<b>blue.</b><br /> 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 <b>red</b> or <b>green</b>."
-msgstr ""
-
-#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:129
-msgid "Click on alerts tab and then fill the form to add an alert."
-msgstr ""
-
-#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:143
-msgid "Select the critical module."
-msgstr ""
-
-#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:147
-msgid "In template select \"Critical Condition\"."
-msgstr ""
-
-#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:151
-msgid "Now, select the action created before."
-msgstr ""
-
-#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:156
-msgid "Click on Add Alert button to create the alert."
-msgstr ""
-
-#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:171
-msgid ""
-"To test the alert you've just created go to the main view by clicking on the "
-"eye tab."
-msgstr ""
-
-#: ../../include/help/clippy/server_queued_modules.php:35
-msgid "Excesive Queued."
-msgstr ""
-
-#: ../../include/help/clippy/server_queued_modules.php:35
-msgid ""
-"You have too much items in the processing queue. This can happen if your "
-"server is too loaded and/or not properly configured. This could be something "
-"temporal, or a bottleneck. One possible solution is increase number of "
-"server threads, but you should consider getting support about this."
-msgstr ""
-
-#: ../../include/help/clippy/servers_down.php:35
-msgid "All servers down"
-msgstr ""
-
-#: ../../include/help/clippy/servers_down.php:35
-msgid ""
-"Can you up all servers. You go to terminal in linux and execute the next "
-"command: \"sudo /etc/init.d/pandora_server restart\". It's possible need "
-"introduce root pass."
-msgstr ""
-
-#: ../../include/help/clippy/interval_agent_min.php:35
-msgid "Interval Agent."
-msgstr ""
-
-#: ../../include/help/clippy/interval_agent_min.php:35
-msgid ""
-"Please note that having agents with a monitoring interval below 300 seconds "
-"is not recommended. This will impact seriously in the performance of the "
-"server. For example, having 200 agents with one minute interval, is the same "
-"than having 1000 agents with a 5 minute interval. The probability of getting "
-"unknown modules is higher, and the impact on the server is higher because it "
-"requires a shorter response time."
-msgstr ""
-
-#: ../../include/help/clippy/operation_agentes_status_monitor.php:34
-msgid ""
-"Now, you have to go to the monitors list and look for a \"critical\" module "
-"to apply the alert."
-msgstr ""
-
-#: ../../include/help/clippy/operation_agentes_status_monitor.php:38
-msgid ""
-"If you know the name of the agent or the name of the module in critical "
-"status, type it in this field to make the module list shorter. You can write "
-"the entire name or just a part of it."
-msgstr ""
-
-#: ../../include/help/clippy/operation_agentes_status_monitor.php:43
-msgid "Click on Show button to get the modules list filtered."
-msgstr ""
-
-#: ../../include/help/clippy/operation_agentes_status_monitor.php:58
-msgid ""
-"Now, to edit the module, click on the wrench that appears in the type column."
-msgstr ""
-
-#: ../../include/help/clippy/extension_cron_send_email.php:35
-msgid ""
-"The configuration of email for the task email is in the enterprise setup:"
-msgstr ""
-
-#: ../../include/help/clippy/extension_cron_send_email.php:35
-msgid "Please check if the email configuration is correct."
-msgstr ""
-
-#: ../../include/functions_profile.php:188
-#: ../../operation/users/user_edit.php:786
-#: ../../operation/users/user_edit.php:795
-msgid "Profiles/Groups assigned to this user"
-msgstr ""
-
-#: ../../include/functions_profile.php:216
-msgid "No hierarchy"
-msgstr ""
-
-#: ../../include/functions_network.php:34
-msgid "Top listeners"
-msgstr ""
-
-#: ../../include/functions_network.php:35
-msgid "Top talkers"
-msgstr ""
-
-#: ../../include/functions_network.php:45
-msgid "Top TCP protocols"
-msgstr ""
-
-#: ../../include/functions_network.php:46
-msgid "Top UDP protocols"
-msgstr ""
-
-#: ../../include/functions_ui.php:282
-msgid "Information"
-msgstr ""
-
-#: ../../include/functions_ui.php:456
-msgid "Request successfully processed"
-msgstr ""
-
-#: ../../include/functions_ui.php:460
-msgid "Error processing request"
-msgstr ""
-
-#: ../../include/functions_ui.php:616
-msgid ""
-"Is possible that this view uses part of information which your user has not "
-"access"
-msgstr ""
-
-#: ../../include/functions_ui.php:865
-msgid "Software"
-msgstr ""
-
-#: ../../include/functions_ui.php:1346
-msgid "The alert would fire when the value is over <span id=\"max\"></span>"
-msgstr ""
-
-#: ../../include/functions_ui.php:1351
-msgid "The alert would fire when the value is under <span id=\"min\"></span>"
-msgstr ""
-
-#: ../../include/functions_ui.php:1366
-msgid "Unknown option."
-msgstr ""
-
-#: ../../include/functions_ui.php:1720 ../../include/functions_config.php:2341
-msgid "the Flexible Monitoring System"
-msgstr ""
-
-#: ../../include/functions_ui.php:2098 ../../include/functions_ui.php:2124
-#, php-format
-msgid "Total items: %s"
-msgstr ""
-
-#: ../../include/functions_ui.php:2525
-msgid "Unknown type"
-msgstr ""
-
-#: ../../include/functions_ui.php:3488 ../../include/functions_ui.php:3489
-msgid "Export current page to CSV"
-msgstr ""
-
-#: ../../include/functions_ui.php:3718 ../../include/functions_events.php:67
-#: ../../include/functions_events.php:93 ../../operation/events/events.php:2047
-#: ../../operation/events/events.php:2112
-msgid "ALERT"
-msgstr ""
-
-#: ../../include/functions_ui.php:3796 ../../include/functions_events.php:159
-#: ../../operation/events/events.php:1981
-msgid "MAINTENANCE"
-msgstr ""
-
-#: ../../include/functions_ui.php:3801 ../../include/functions_events.php:162
-#: ../../operation/events/events.php:1986
-msgid "INFORMATIONAL"
-msgstr ""
-
-#: ../../include/functions_ui.php:3821 ../../include/functions_events.php:168
-#: ../../operation/events/events.php:1996
-msgid "MINOR"
-msgstr ""
-
-#: ../../include/functions_ui.php:3826 ../../include/functions_events.php:165
-#: ../../operation/events/events.php:1991
-msgid "MAJOR"
-msgstr ""
-
-#: ../../include/functions_ui.php:4632 ../../include/functions_html.php:920
-#: ../../include/functions_html.php:3183 ../../include/functions_html.php:3675
-#: ../../include/functions_reporting.php:10814
-#: ../../include/functions_reporting.php:10971
-#: ../../include/functions_reporting.php:10985
-#: ../../include/functions_reporting.php:13306
-#: ../../include/functions_reporting.php:13381
-msgid "Enterprise version not installed"
-msgstr ""
-
-#: ../../include/functions_ui.php:4989
-msgid "Type at least two characters to search."
-msgstr ""
-
-#: ../../include/functions_ui.php:5924
-msgid "Unhandled error"
-msgstr ""
-
-#: ../../include/functions_ui.php:5925
-msgid "An unhandled error occurs"
-msgstr ""
-
-#: ../../include/functions_ui.php:6170
-msgid "Snapshot view"
-msgstr ""
-
-#: ../../include/functions_ui.php:6196
-#, 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:6500
-msgid "Query"
-msgstr ""
-
-#: ../../include/functions_ui.php:6517
-msgid "Execute query"
-msgstr ""
-
-#: ../../include/functions_ui.php:6539
-msgid "Results"
-msgstr ""
-
-#: ../../include/functions_ui.php:6603
-msgid "Show password"
-msgstr ""
-
-#: ../../include/functions_visual_map.php:1746
-#: ../../include/functions_visual_map.php:1748
-#: ../../include/rest-api/models/VisualConsole/Items/StaticGraph.php:274
-#: ../../include/rest-api/models/VisualConsole/Items/StaticGraph.php:276
-msgid "Last value: "
-msgstr ""
-
-#: ../../include/functions_visual_map.php:2632
-msgid "Agent successfully added to layout"
-msgstr ""
-
-#: ../../include/functions_visual_map.php:2816
-msgid "Modules successfully added to layout"
-msgstr ""
-
-#: ../../include/functions_visual_map.php:3141
-msgid "Agents successfully added to layout"
-msgstr ""
-
-#: ../../include/functions_visual_map.php:3537
-msgid "Cannot load the visualmap"
-msgstr ""
-
-#: ../../include/functions_visual_map.php:4189
-#: ../../include/rest-api/models/VisualConsole/Item.php:2076
-msgid "Bars graph"
-msgstr ""
-
-#: ../../include/functions_visual_map.php:4199
-#: ../../include/rest-api/models/VisualConsole/Item.php:2084
-msgid "Percentile bar"
-msgstr ""
-
-#: ../../include/functions_visual_map.php:4204
-#: ../../include/rest-api/models/VisualConsole/Item.php:2092
-msgid "Circular progress bar"
-msgstr ""
-
-#: ../../include/functions_clippy.php:152
-#, php-format
-msgid "%s assistant"
-msgstr ""
-
-#: ../../include/functions_clippy.php:189
-#: ../../include/functions_clippy.php:194
-msgid "End wizard"
-msgstr ""
-
-#: ../../include/functions_clippy.php:227
-msgid "Next &rarr;"
-msgstr ""
-
-#: ../../include/functions_clippy.php:228
-msgid "&larr; Back"
-msgstr ""
-
-#: ../../include/functions_clippy.php:240
-msgid "Do you want to exit the help tour?"
-msgstr ""
-
-#: ../../include/functions_alerts.php:474
-msgid "copy"
-msgstr ""
-
-#: ../../include/functions_alerts.php:670
-msgid "Regular expression"
-msgstr ""
-
-#: ../../include/functions_alerts.php:671
-msgid "Max and min"
-msgstr ""
-
-#: ../../include/functions_alerts.php:674
-msgid "Equal to"
-msgstr ""
-
-#: ../../include/functions_alerts.php:675
-msgid "Not equal to"
-msgstr ""
-
-#: ../../include/functions_alerts.php:678
-msgid "Unknown status"
-msgstr ""
-
-#: ../../include/functions_alerts.php:679
-msgid "On Change"
-msgstr ""
-
-#: ../../include/functions_alerts.php:681
-msgid "Not normal status"
-msgstr ""
-
-#: ../../include/functions_alerts.php:1154
-#: ../../include/functions_network_components.php:590
-msgid "Copy of"
-msgstr ""
-
-#: ../../include/functions_alerts.php:1709
-msgid "No actions defined"
-msgstr ""
-
-#: ../../include/functions_alerts.php:2677
-msgid "Alert and command group does not match"
-msgstr ""
-
-#: ../../include/functions_snmp.php:65
-msgid "Load Average (Last minute)"
-msgstr ""
-
-#: ../../include/functions_snmp.php:69
-msgid "Load Average (Last 5 minutes)"
-msgstr ""
-
-#: ../../include/functions_snmp.php:73
-msgid "Load Average (Last 15 minutes)"
-msgstr ""
-
-#: ../../include/functions_snmp.php:77
-msgid "Total Swap Size configured for the host"
-msgstr ""
-
-#: ../../include/functions_snmp.php:81
-msgid "Available Swap Space on the host"
-msgstr ""
-
-#: ../../include/functions_snmp.php:85
-msgid "Total Real/Physical Memory Size on the host"
-msgstr ""
-
-#: ../../include/functions_snmp.php:89
-msgid "Available Real/Physical Memory Space on the host"
-msgstr ""
-
-#: ../../include/functions_snmp.php:93
-msgid "Total Available Memory on the host"
-msgstr ""
-
-#: ../../include/functions_snmp.php:97
-msgid "Total Cached Memory"
-msgstr ""
-
-#: ../../include/functions_snmp.php:101
-msgid "Total Buffered Memory"
-msgstr ""
-
-#: ../../include/functions_snmp.php:105
-msgid "Amount of memory swapped in from disk (kB/s)"
-msgstr ""
-
-#: ../../include/functions_snmp.php:109
-msgid "Amount of memory swapped to disk (kB/s)"
-msgstr ""
-
-#: ../../include/functions_snmp.php:113
-msgid "Number of blocks sent to a block device"
-msgstr ""
-
-#: ../../include/functions_snmp.php:117
-msgid "Number of blocks received from a block device"
-msgstr ""
-
-#: ../../include/functions_snmp.php:121
-msgid "Number of interrupts processed"
-msgstr ""
-
-#: ../../include/functions_snmp.php:125
-msgid "Number of context switches"
-msgstr ""
-
-#: ../../include/functions_snmp.php:129
-msgid "user CPU time"
-msgstr ""
-
-#: ../../include/functions_snmp.php:133
-msgid "system CPU time"
-msgstr ""
-
-#: ../../include/functions_snmp.php:137
-msgid "idle CPU time"
-msgstr ""
-
-#: ../../include/functions_snmp.php:141
-msgid "system Up time"
-msgstr ""
-
-#: ../../include/functions_snmp.php:349
-msgid "Pagination"
-msgstr ""
-
-#: ../../include/functions_snmp.php:381 ../../include/functions_snmp.php:389
-msgid "Group by Enterprise String / IP"
-msgstr ""
-
-#: ../../include/functions_snmp.php:441
-msgid "Active filter"
-msgstr ""
-
-#: ../../include/functions_snmp.php:441
-msgid "Active filters"
-msgstr ""
-
-#: ../../include/functions_db.php:147
-#, php-format
-msgid "Error connecting to database %s at %s."
-msgstr ""
-
-#: ../../include/functions_db.php:1904
-msgid "Database debug"
-msgstr ""
-
-#: ../../include/functions_db.php:1921
-msgid "SQL sentence"
-msgstr ""
-
-#: ../../include/functions_db.php:1923
-msgid "Rows"
-msgstr ""
-
-#: ../../include/functions_db.php:1924
-msgid "Saved"
-msgstr ""
-
-#: ../../include/functions_db.php:1925
-msgid "Time (ms)"
-msgstr ""
-
-#: ../../include/rest-api/models/VisualConsole/Items/ColorCloud.php:438
-msgid "Add new range"
-msgstr ""
-
-#: ../../include/rest-api/models/VisualConsole/Items/ColorCloud.php:495
-msgid "Current ranges"
-msgstr ""
-
-#: ../../include/rest-api/models/VisualConsole/Items/Box.php:217
-#: ../../include/rest-api/models/VisualConsole/Item.php:1963
-msgid "width"
-msgstr ""
-
-#: ../../include/rest-api/models/VisualConsole/Items/Box.php:227
-#: ../../include/rest-api/models/VisualConsole/Item.php:1973
-msgid "height"
-msgstr ""
-
-#: ../../include/rest-api/models/VisualConsole/Items/Box.php:249
-#: ../../include/rest-api/models/VisualConsole/Item.php:1995
-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:2032
-msgid "Show on top"
-msgstr ""
-
-#: ../../include/rest-api/models/VisualConsole/Items/Box.php:311
-msgid "Border Width"
-msgstr ""
-
-#: ../../include/rest-api/models/VisualConsole/Items/Box.php:335
-msgid "Fill transparent"
-msgstr ""
-
-#: ../../include/rest-api/models/VisualConsole/Items/BasicChart.php:325
-msgid "Module name color"
-msgstr ""
-
-#: ../../include/rest-api/models/VisualConsole/Items/StaticGraph.php:396
-msgid "Show Last Value"
-msgstr ""
-
-#: ../../include/rest-api/models/VisualConsole/Items/SimpleValue.php:365
-msgid "Avg Value"
-msgstr ""
-
-#: ../../include/rest-api/models/VisualConsole/Items/BarsGraph.php:487
-#: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:658
-msgid "Graph Type"
-msgstr ""
-
-#: ../../include/rest-api/models/VisualConsole/Items/EventsHistory.php:270
-msgid "12h"
-msgstr ""
-
-#: ../../include/rest-api/models/VisualConsole/Items/EventsHistory.php:290
-msgid "Legend color"
-msgstr ""
-
-#: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:567
-msgid "Custom Graph"
-msgstr ""
-
-#: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:672
-#: ../../include/lib/Dashboard/Widgets/custom_graph.php:339
-#: ../../include/lib/Dashboard/Widgets/single_graph.php:295
-msgid "Show legend"
-msgstr ""
-
-#: ../../include/rest-api/models/VisualConsole/Items/NetworkLink.php:538
-#: ../../include/rest-api/models/VisualConsole/Items/NetworkLink.php:619
-#: ../../include/rest-api/models/VisualConsole/Items/Odometer.php:280
-#: ../../include/rest-api/models/VisualConsole/View.php:705
-#: ../../include/rest-api/models/VisualConsole/View.php:784
-msgid "Failed to connect to node"
-msgstr ""
-
-#: ../../include/rest-api/models/VisualConsole/Items/Odometer.php:416
-msgid "Title color"
-msgstr ""
-
-#: ../../include/rest-api/models/VisualConsole/View.php:66
-msgid "Label settings"
-msgstr ""
-
-#: ../../include/rest-api/models/VisualConsole/View.php:72
-#: ../../include/rest-api/models/VisualConsole/View.php:104
-msgid "General settings"
-msgstr ""
-
-#: ../../include/rest-api/models/VisualConsole/View.php:78
-#: ../../include/rest-api/models/VisualConsole/View.php:94
-#: ../../include/rest-api/models/VisualConsole/View.php:110
-msgid "Specific settings"
-msgstr ""
-
-#: ../../include/rest-api/models/VisualConsole/View.php:213
-msgid "Item type not valid ["
-msgstr ""
-
-#: ../../include/rest-api/models/VisualConsole/View.php:218
-msgid "Item type has no getFormInputs method ["
-msgstr ""
-
-#: ../../include/rest-api/models/VisualConsole/View.php:722
-msgid "NetworkLink from"
-msgstr ""
-
-#: ../../include/rest-api/models/VisualConsole/View.php:726
-#: ../../include/rest-api/models/VisualConsole/View.php:805
-#, php-format
-msgid "Interface %s status"
-msgstr ""
-
-#: ../../include/rest-api/models/VisualConsole/View.php:731
-#: ../../include/rest-api/models/VisualConsole/View.php:810
-#: ../../operation/agentes/interface_traffic_graph_win.php:78
-msgid "In"
-msgstr ""
-
-#: ../../include/rest-api/models/VisualConsole/View.php:732
-#: ../../include/rest-api/models/VisualConsole/View.php:811
-#: ../../operation/agentes/interface_traffic_graph_win.php:79
-msgid "Out"
-msgstr ""
-
-#: ../../include/rest-api/models/VisualConsole/View.php:801
-msgid "NetworkLink to"
-msgstr ""
-
-#: ../../include/rest-api/models/VisualConsole/View.php:853
-#, php-format
-msgid "Failed to generate charts: %s"
-msgstr ""
-
-#: ../../include/rest-api/models/VisualConsole/Item.php:1933
-msgid "Label position"
-msgstr ""
-
-#: ../../include/rest-api/models/VisualConsole/Item.php:2020
-msgid "Link enabled"
-msgstr ""
-
-#: ../../include/rest-api/models/VisualConsole/Item.php:2062
-msgid "Static graph"
-msgstr ""
-
-#: ../../include/rest-api/models/VisualConsole/Item.php:2080
-msgid "Event History Graph"
-msgstr ""
-
-#: ../../include/rest-api/models/VisualConsole/Item.php:2088
-msgid "Percentile bubble"
-msgstr ""
-
-#: ../../include/rest-api/models/VisualConsole/Item.php:2553
-#: ../../include/rest-api/models/VisualConsole/Item.php:2554
-msgid "Image Vc"
-msgstr ""
-
-#: ../../include/functions_notifications.php:811
-msgid "Subtype customization"
-msgstr ""
-
-#: ../../include/functions_notifications.php:841
-msgid "Notified users"
-msgstr ""
-
-#: ../../include/functions_notifications.php:841
-msgid "Notified groups"
-msgstr ""
-
-#: ../../include/functions_notifications.php:842
-msgid "Add users"
-msgstr ""
-
-#: ../../include/functions_notifications.php:842
-msgid "Add groups"
-msgstr ""
-
-#: ../../include/functions_notifications.php:843
-msgid "Delete users"
-msgstr ""
-
-#: ../../include/functions_notifications.php:843
-msgid "Delete groups"
-msgstr ""
-
-#: ../../include/functions_notifications.php:939
-msgid "Add elements"
-msgstr ""
-
-#: ../../include/functions_notifications.php:952
-msgid "Remove elements"
-msgstr ""
-
-#: ../../include/functions_notifications.php:1070
-msgid "Click here to get more information"
-msgstr ""
-
-#: ../../include/functions_reports.php:638
-#: ../../include/functions_reports.php:642
-#: ../../include/functions_reports.php:647
-#: ../../include/functions_reports.php:653
-#: ../../include/functions_reports.php:659
-#: ../../include/functions_reports.php:663
-#: ../../include/functions_reports.php:667
-#: ../../include/functions_reports.php:674
-#: ../../include/functions_reports.php:680
-#: ../../include/functions_reports.php:685
-#: ../../include/functions_groups.php:123
-#: ../../include/functions_groups.php:187
-#: ../../operation/search_results.php:119
-#: ../../operation/agentes/ver_agente.php:1520
-msgid "Graphs"
-msgstr ""
-
-#: ../../include/functions_reports.php:639
-#: ../../include/functions_reporting.php:9394
-#: ../../include/functions_reporting.php:9554
-msgid "Simple graph"
-msgstr ""
-
-#: ../../include/functions_reports.php:643
-msgid "Simple baseline graph"
-msgstr ""
-
-#: ../../include/functions_reports.php:660
-msgid "SQL vertical bar graph"
-msgstr ""
-
-#: ../../include/functions_reports.php:664
-msgid "SQL pie graph"
-msgstr ""
-
-#: ../../include/functions_reports.php:668
-msgid "SQL horizontal bar graph"
-msgstr ""
-
-#: ../../include/functions_reports.php:675
-msgid "Automatic combined Graph"
-msgstr ""
-
-#: ../../include/functions_reports.php:681
-msgid "Availability graph"
-msgstr ""
-
-#: ../../include/functions_reports.php:686
-msgid "Module Histogram graph"
-msgstr ""
-
-#: ../../include/functions_reports.php:691
-msgid "IPAM"
-msgstr ""
-
-#: ../../include/functions_reports.php:692
-msgid "IPAM networks"
-msgstr ""
-
-#: ../../include/functions_reports.php:697
-#: ../../include/functions_reports.php:702
-#: ../../include/functions_reports.php:706
-#: ../../include/functions_reports.php:710
-#: ../../include/functions_reports.php:716
-msgid "SLA"
-msgstr ""
-
-#: ../../include/functions_reports.php:698
-#: ../../include/functions_reporting.php:926
-msgid "S.L.A."
-msgstr ""
-
-#: ../../include/functions_reports.php:703
-msgid "Monthly S.L.A."
-msgstr ""
-
-#: ../../include/functions_reports.php:707
-msgid "Weekly S.L.A."
-msgstr ""
-
-#: ../../include/functions_reports.php:711
-msgid "Hourly S.L.A."
-msgstr ""
-
-#: ../../include/functions_reports.php:717
-msgid "Services S.L.A."
-msgstr ""
-
-#: ../../include/functions_reports.php:723
-#: ../../include/functions_reports.php:727
-msgid "Forecasting"
-msgstr ""
-
-#: ../../include/functions_reports.php:724
-msgid "Prediction date"
-msgstr ""
-
-#: ../../include/functions_reports.php:728
-msgid "Projection graph"
-msgstr ""
-
-#: ../../include/functions_reports.php:733
-msgid "Avg. value"
-msgstr ""
-
-#: ../../include/functions_reports.php:737
-msgid "Max. value"
-msgstr ""
-
-#: ../../include/functions_reports.php:741
-msgid "Min. value"
-msgstr ""
-
-#: ../../include/functions_reports.php:745
-msgid "Monitor report"
-msgstr ""
-
-#: ../../include/functions_reports.php:749
-msgid "Serialize data"
-msgstr ""
-
-#: ../../include/functions_reports.php:753
-#: ../../include/functions_reporting.php:5912
-#: ../../include/functions_reporting.php:9210
-msgid "Summatory"
-msgstr ""
-
-#: ../../include/functions_reports.php:757
-msgid "Historical Data"
-msgstr ""
-
-#: ../../include/functions_reports.php:769
-#: ../../include/functions_reports.php:775
-#: ../../include/functions_reports.php:781
-#: ../../include/functions_reports.php:787
-#: ../../include/functions_reports.php:793
-#: ../../include/functions_reports.php:802
-#: ../../include/functions_reports.php:808
-#: ../../include/functions_reports.php:812
-#: ../../include/functions_reports.php:816
-msgid "Grouped"
-msgstr ""
-
-#: ../../include/functions_reports.php:776
-#: ../../include/functions_reports.php:782
-msgid "Group report"
-msgstr ""
-
-#: ../../include/functions_reports.php:788
-#: ../../include/functions_reporting.php:2873
-msgid "Exception"
-msgstr ""
-
-#: ../../include/functions_reports.php:809
-msgid "Top n"
-msgstr ""
-
-#: ../../include/functions_reports.php:813
-msgid "Network interfaces"
-msgstr ""
-
-#: ../../include/functions_reports.php:817
-#: ../../include/functions_reporting.php:7597
-#: ../../include/functions_reporting.php:7989
-msgid "Availability"
-msgstr ""
-
-#: ../../include/functions_reports.php:821
-#: ../../include/functions_reports.php:825
-msgid "Text/HTML "
-msgstr ""
-
-#: ../../include/functions_reports.php:826
-msgid "Import text from URL"
-msgstr ""
-
-#: ../../include/functions_reports.php:831
-msgid "Module alert report"
-msgstr ""
-
-#: ../../include/functions_reports.php:835
-msgid "Agent alert report "
-msgstr ""
-
-#: ../../include/functions_reports.php:841
-msgid "Group alert report"
-msgstr ""
-
-#: ../../include/functions_reports.php:847
-msgid "Actions alert report "
-msgstr ""
-
-#: ../../include/functions_reports.php:852
-msgid "Module event report"
-msgstr ""
-
-#: ../../include/functions_reports.php:856
-msgid "Agent event report"
-msgstr ""
-
-#: ../../include/functions_reports.php:860
-msgid "Group event report"
-msgstr ""
-
-#: ../../include/functions_reports.php:866
-msgid "Agents inventory"
-msgstr ""
-
-#: ../../include/functions_reports.php:878
-msgid "Inventory changes"
-msgstr ""
-
-#: ../../include/functions_reports.php:886
-#: ../../include/functions_reporting.php:5727
-msgid "Agent configuration"
-msgstr ""
-
-#: ../../include/functions_reports.php:890
-#: ../../include/functions_reporting.php:4301
-msgid "Group configuration"
-msgstr ""
-
-#: ../../include/functions_reports.php:894
-msgid "Netflow area chart"
-msgstr ""
-
-#: ../../include/functions_reports.php:898
-msgid "Netflow data table"
-msgstr ""
-
-#: ../../include/functions_reports.php:902
-msgid "Netflow summary table"
-msgstr ""
-
-#: ../../include/functions_reports.php:908
-msgid "Log"
-msgstr ""
-
-#: ../../include/functions_reports.php:909
-msgid "Log report"
-msgstr ""
-
-#: ../../include/functions_reports.php:915
-#: ../../include/functions_reports.php:916
-#: ../../include/functions_reporting.php:4179
-msgid "Permissions report"
-msgstr ""
-
-#: ../../include/functions_reports.php:921
-msgid "NCM"
-msgstr ""
-
-#: ../../include/functions_reports.php:922
-msgid "Network configuration changes"
-msgstr ""
-
-#: ../../include/functions_maps.php:50
-#: ../../include/functions_reporting.php:1036
-#: ../../include/functions_reporting.php:8398
-#: ../../operation/agentes/pandora_networkmap.php:778
-msgid "Dynamic"
-msgstr ""
-
-#: ../../include/functions_html.php:585 ../../include/functions_html.php:957
-msgid "Please select an item from this list."
-msgstr ""
-
-#: ../../include/functions_html.php:611 ../../include/functions_html.php:5586
-msgid "Please select..."
-msgstr ""
-
-#: ../../include/functions_html.php:1497
-msgid "Type to search agents"
-msgstr ""
-
-#: ../../include/functions_html.php:1511
-msgid "Type to search modules"
-msgstr ""
-
-#: ../../include/functions_html.php:2006
-msgid "weeks"
-msgstr ""
-
-#: ../../include/functions_html.php:2168
-msgid "Month day"
-msgstr ""
-
-#: ../../include/functions_html.php:2169
-msgid "Month"
-msgstr ""
-
-#: ../../include/functions_html.php:2170
-msgid "Week day"
-msgstr ""
-
-#: ../../include/functions_html.php:4368
-msgid "Type at least two characters to search the module."
-msgstr ""
-
-#: ../../include/functions_html.php:4529 ../../index.php:479
-#: ../../index.php:762 ../../index.php:836
-#, php-format
-msgid "%s cannot verify the origin of the request. Try again, please."
-msgstr ""
-
-#: ../../include/functions_html.php:5341
-msgid "Type at least two characters to search the user."
-msgstr ""
-
-#: ../../include/functions_register.php:105
-#, php-format
-msgid "%s configuration wizard"
-msgstr ""
-
-#: ../../include/functions_register.php:108
-#, php-format
-msgid ""
-"Please fill the following information in order to configure your %s instance "
-"successfully"
-msgstr ""
-
-#: ../../include/functions_register.php:165
-msgid ""
-"Must have the same time zone as the system or database to avoid mismatches "
-"of time."
-msgstr ""
-
-#: ../../include/functions_register.php:171
-msgid "E-mail for receiving alerts"
-msgstr ""
-
-#: ../../include/functions_register.php:196
-msgid "All fields required"
-msgstr ""
-
-#: ../../include/functions_register.php:205
-msgid "Are you sure you don't want to configure a base email?"
-msgstr ""
-
-#: ../../include/functions_register.php:207
-msgid ""
-"You could change this options later in \"alert actions\" and setting your "
-"account."
-msgstr ""
-
-#: ../../include/functions_config.php:132
-msgid "Failed updated: User did not login."
-msgstr ""
-
-#: ../../include/functions_config.php:140
-msgid "Failed updated: User is not admin."
-msgstr ""
-
-#: ../../include/functions_config.php:168
-msgid "Language settings"
-msgstr ""
-
-#: ../../include/functions_config.php:176
-msgid "phantomjs config directory"
-msgstr ""
-
-#: ../../include/functions_config.php:192
-msgid "SSL cert path"
-msgstr ""
-
-#: ../../include/functions_config.php:200
-msgid "Use cert."
-msgstr ""
-
-#: ../../include/functions_config.php:209
-msgid "Path doesn't exists or is not writable"
-msgstr ""
-
-#: ../../include/functions_config.php:214
-msgid "Attachment store."
-msgstr ""
-
-#: ../../include/functions_config.php:232
-msgid "Integria inventory"
-msgstr ""
-
-#: ../../include/functions_config.php:236
-#: ../../include/functions_config.php:1676
-msgid "Integria API password"
-msgstr ""
-
-#: ../../include/functions_config.php:240
-msgid "Integria URL"
-msgstr ""
-
-#: ../../include/functions_config.php:255
-#: ../../include/class/ExternalTools.class.php:213
-msgid "Sound for Alert fired"
-msgstr ""
-
-#: ../../include/functions_config.php:259
-#: ../../include/class/ExternalTools.class.php:243
-msgid "Sound for Monitor critical"
-msgstr ""
-
-#: ../../include/functions_config.php:263
-#: ../../include/class/ExternalTools.class.php:273
-msgid "Sound for Monitor warning"
-msgstr ""
-
-#: ../../include/functions_config.php:276
-msgid "License information"
-msgstr ""
-
-#: ../../include/functions_config.php:306
-msgid "Use custom encoding"
-msgstr ""
-
-#: ../../include/functions_config.php:326
-msgid "Limit parameters bulk"
-msgstr ""
-
-#: ../../include/functions_config.php:330
-msgid "Identification_reminder"
-msgstr ""
-
-#: ../../include/functions_config.php:334
-msgid "Include_agents"
-msgstr ""
-
-#: ../../include/functions_config.php:338
-msgid "alias_as_name"
-msgstr ""
-
-#: ../../include/functions_config.php:342
-msgid "Console log enabled"
-msgstr ""
-
-#: ../../include/functions_config.php:346
-msgid "Audit log enabled"
-msgstr ""
-
-#: ../../include/functions_config.php:350
-msgid "Module Custom ID read only"
-msgstr ""
-
-#: ../../include/functions_config.php:354
-msgid "unique_ip"
-msgstr ""
-
-#: ../../include/functions_config.php:358
-msgid "Server SMTP"
-msgstr ""
-
-#: ../../include/functions_config.php:362
-msgid "From dir"
-msgstr ""
-
-#: ../../include/functions_config.php:370
-msgid "Port SMTP"
-msgstr ""
-
-#: ../../include/functions_config.php:389
-msgid "Forward SNMP traps to agent (if exist)"
-msgstr ""
-
-#: ../../include/functions_config.php:393
-msgid "Use Enterprise ACL System"
-msgstr ""
-
-#: ../../include/functions_config.php:397
-msgid "Activate Metaconsole"
-msgstr ""
-
-#: ../../include/functions_config.php:401
-msgid "Size of collection"
-msgstr ""
-
-#: ../../include/functions_config.php:405
-msgid "Events replication"
-msgstr ""
-
-#: ../../include/functions_config.php:410
-msgid "Replication interval"
-msgstr ""
-
-#: ../../include/functions_config.php:414
-msgid "Replication limit"
-msgstr ""
-
-#: ../../include/functions_config.php:418
-msgid "Replication mode"
-msgstr ""
-
-#: ../../include/functions_config.php:422
-msgid "Show events list in local console (read only)"
-msgstr ""
-
-#: ../../include/functions_config.php:427
-msgid "Replication DB engine"
-msgstr ""
-
-#: ../../include/functions_config.php:431
-msgid "Replication DB host"
-msgstr ""
-
-#: ../../include/functions_config.php:435
-msgid "Replication DB database"
-msgstr ""
-
-#: ../../include/functions_config.php:439
-msgid "Replication DB user"
-msgstr ""
-
-#: ../../include/functions_config.php:443
-msgid "Replication DB password"
-msgstr ""
-
-#: ../../include/functions_config.php:447
-msgid "Replication DB port"
-msgstr ""
-
-#: ../../include/functions_config.php:451
-msgid "Metaconsole agent cache"
-msgstr ""
-
-#: ../../include/functions_config.php:455
-msgid "Activate Log Collector"
-msgstr ""
-
-#: ../../include/functions_config.php:459
-msgid "Enable Update Manager"
-msgstr ""
-
-#: ../../include/functions_config.php:463
-msgid "Ipam Ocuppied Manager Critical"
-msgstr ""
-
-#: ../../include/functions_config.php:467
-msgid "Ipam Ocuppied Manager Warning"
-msgstr ""
-
-#: ../../include/functions_config.php:471
-msgid "SAP/R3 Plugin Licence"
-msgstr ""
-
-#: ../../include/functions_config.php:476
-msgid "Inventory changes blacklist"
-msgstr ""
-
-#: ../../include/functions_config.php:484
-msgid "Enable password policy"
-msgstr ""
-
-#: ../../include/functions_config.php:488
-msgid "Min. size password"
-msgstr ""
-
-#: ../../include/functions_config.php:492
-msgid "Password expiration"
-msgstr ""
-
-#: ../../include/functions_config.php:496
-msgid "Force change password on first login"
-msgstr ""
-
-#: ../../include/functions_config.php:500
-msgid "User blocked if login fails"
-msgstr ""
-
-#: ../../include/functions_config.php:504
-msgid "Number of failed login attempts"
-msgstr ""
-
-#: ../../include/functions_config.php:508
-msgid "Password must have numbers"
-msgstr ""
-
-#: ../../include/functions_config.php:512
-msgid "Password must have symbols"
-msgstr ""
-
-#: ../../include/functions_config.php:516
-msgid "Apply password policy to admin users"
-msgstr ""
-
-#: ../../include/functions_config.php:520
-msgid "Enable password history"
-msgstr ""
-
-#: ../../include/functions_config.php:524
-msgid "Compare previous password"
-msgstr ""
-
-#: ../../include/functions_config.php:528
-msgid "Activate reset password"
-msgstr ""
-
-#: ../../include/functions_config.php:544
-msgid "Autocreate profile"
-msgstr ""
-
-#: ../../include/functions_config.php:548
-msgid "Autocreate profile group"
-msgstr ""
-
-#: ../../include/functions_config.php:552
-msgid "Autocreate profile tags"
-msgstr ""
-
-#: ../../include/functions_config.php:556
-msgid "Automatically assigned no hierarchy"
-msgstr ""
-
-#: ../../include/functions_config.php:560
-msgid "Autocreate blacklist"
-msgstr ""
-
-#: ../../include/functions_config.php:564
-msgid "Active directory server"
-msgstr ""
-
-#: ../../include/functions_config.php:568
-msgid "Active directory port"
-msgstr ""
-
-#: ../../include/functions_config.php:576
-msgid "Advanced Config AD"
-msgstr ""
-
-#: ../../include/functions_config.php:580
-msgid "Advanced Config LDAP"
-msgstr ""
-
-#: ../../include/functions_config.php:584
-msgid "Domain"
-msgstr ""
-
-#: ../../include/functions_config.php:588
-msgid "Advanced Permisions AD"
-msgstr ""
-
-#: ../../include/functions_config.php:592
-msgid "Advanced Permissions LDAP"
-msgstr ""
-
-#: ../../include/functions_config.php:632
-msgid "Login user attribute"
-msgstr ""
-
-#: ../../include/functions_config.php:636
-msgid "LDAP function"
-msgstr ""
-
-#: ../../include/functions_config.php:641
-#: ../../include/functions_config.php:753
-msgid "Save Password"
-msgstr ""
-
-#: ../../include/functions_config.php:648
-msgid "Save profile"
-msgstr ""
-
-#: ../../include/functions_config.php:652
-msgid "MySQL host"
-msgstr ""
-
-#: ../../include/functions_config.php:656
-#: ../../include/functions_config.php:676
-msgid "MySQL port"
-msgstr ""
-
-#: ../../include/functions_config.php:660
-#: ../../include/functions_config.php:680
-#: ../../include/functions_config.php:1495
-msgid "Database name"
-msgstr ""
-
-#: ../../include/functions_config.php:672
-msgid "Integria host"
-msgstr ""
-
-#: ../../include/functions_config.php:692
-msgid "Saml path"
-msgstr ""
-
-#: ../../include/functions_config.php:696
-msgid "Saml source"
-msgstr ""
-
-#: ../../include/functions_config.php:700
-msgid "Saml user id parameter"
-msgstr ""
-
-#: ../../include/functions_config.php:704
-msgid "Saml mail parameter"
-msgstr ""
-
-#: ../../include/functions_config.php:708
-msgid "Saml group name parameter"
-msgstr ""
-
-#: ../../include/functions_config.php:712
-msgid "Saml attr type parameter"
-msgstr ""
-
-#: ../../include/functions_config.php:716
-msgid "Saml profiles and tags parameter"
-msgstr ""
-
-#: ../../include/functions_config.php:720
-msgid "Saml profile parameters"
-msgstr ""
-
-#: ../../include/functions_config.php:724
-msgid "Saml tag parameter"
-msgstr ""
-
-#: ../../include/functions_config.php:728
-msgid "Saml profile and tag separator"
-msgstr ""
-
-#: ../../include/functions_config.php:736
-msgid "2FA all users"
-msgstr ""
-
-#: ../../include/functions_config.php:740
-#: ../../include/functions_config.php:746
-msgid "Session timeout"
-msgstr ""
-
-#: ../../include/functions_config.php:743
-msgid "Session timeout forced to 90 minutes"
-msgstr ""
-
-#: ../../include/functions_config.php:802
-msgid "Max. days before autodisable deletion"
-msgstr ""
-
-#: ../../include/functions_config.php:806
-msgid "Item limit for realtime reports)"
-msgstr ""
-
-#: ../../include/functions_config.php:838
-msgid "Big Operatiopn Step to purge old data"
-msgstr ""
-
-#: ../../include/functions_config.php:872
-msgid "Max execution event response"
-msgstr ""
-
-#: ../../include/functions_config.php:880
-msgid "SNMP walk binary path"
-msgstr ""
-
-#: ../../include/functions_config.php:884
-msgid "SNMP walk binary path (fallback for v1)"
-msgstr ""
-
-#: ../../include/functions_config.php:895
-msgid "Timestamp or time comparation"
-msgstr ""
-
-#: ../../include/functions_config.php:938
-#: ../../include/functions_config.php:2993
-#: ../../operation/network/network_report.php:206
-#: ../../operation/network/network_report.php:236
-msgid "Bytes"
-msgstr ""
-
-#: ../../include/functions_config.php:943
-msgid "Data precision for reports"
-msgstr ""
-
-#: ../../include/functions_config.php:968
-msgid "Show QR code header"
-msgstr ""
-
-#: ../../include/functions_config.php:976
-msgid "Font path"
-msgstr ""
-
-#: ../../include/functions_config.php:992
-msgid "Custom logo collapsed"
-msgstr ""
-
-#: ../../include/functions_config.php:996
-msgid "Custom logo white background"
-msgstr ""
-
-#: ../../include/functions_config.php:1000
-msgid "Custom logo login"
-msgstr ""
-
-#: ../../include/functions_config.php:1004
-msgid "Custom splash login"
-msgstr ""
-
-#: ../../include/functions_config.php:1024
-msgid "Custom title header"
-msgstr ""
-
-#: ../../include/functions_config.php:1028
-msgid "Custom subtitle header"
-msgstr ""
-
-#: ../../include/functions_config.php:1032
-msgid "Meta custom title header"
-msgstr ""
-
-#: ../../include/functions_config.php:1036
-msgid "Meta custom subtitle header"
-msgstr ""
-
-#: ../../include/functions_config.php:1040
-msgid "Custom title1 login"
-msgstr ""
-
-#: ../../include/functions_config.php:1044
-msgid "Custom title2 login"
-msgstr ""
-
-#: ../../include/functions_config.php:1052
-#: ../../include/functions_config.php:1092
-msgid "Custom Docs url"
-msgstr ""
-
-#: ../../include/functions_config.php:1056
-#: ../../include/functions_config.php:1096
-msgid "Custom support url"
-msgstr ""
-
-#: ../../include/functions_config.php:1068
-msgid "Custom logo metaconsole (white background)"
-msgstr ""
-
-#: ../../include/functions_config.php:1072
-msgid "Custom logo login metaconsole"
-msgstr ""
-
-#: ../../include/functions_config.php:1076
-msgid "Custom splash login metaconsole"
-msgstr ""
-
-#: ../../include/functions_config.php:1080
-msgid "Custom title1 login metaconsole"
-msgstr ""
-
-#: ../../include/functions_config.php:1084
-msgid "Custom title2 login metaconsole"
-msgstr ""
-
-#: ../../include/functions_config.php:1088
-msgid "Login background metaconsole"
-msgstr ""
-
-#: ../../include/functions_config.php:1100
-msgid "Use the legacy Visual Console"
-msgstr ""
-
-#: ../../include/functions_config.php:1104
-msgid "Default expiration of the Visual Console item's cache"
-msgstr ""
-
-#: ../../include/functions_config.php:1112
-msgid "Default line favourite_view for the Visual Console"
-msgstr ""
-
-#: ../../include/functions_config.php:1116
-msgid "Default line menu items for the Visual Console"
-msgstr ""
-
-#: ../../include/functions_config.php:1124
-msgid "Default line menu items for the Services"
-msgstr ""
-
-#: ../../include/functions_config.php:1156
-msgid "Show units in values report"
-msgstr ""
-
-#: ../../include/functions_config.php:1164
-msgid "Autohidden menu"
-msgstr ""
-
-#: ../../include/functions_config.php:1168
-msgid "visual_animation"
-msgstr ""
-
-#: ../../include/functions_config.php:1172
-msgid "Disable help"
-msgstr ""
-
-#: ../../include/functions_config.php:1176
-msgid "Fixed graph"
-msgstr ""
-
-#: ../../include/functions_config.php:1184
-msgid "Paginate module"
-msgstr ""
-
-#: ../../include/functions_config.php:1188
-#: ../../include/class/ExternalTools.class.php:303
-msgid "Custom graphviz directory"
-msgstr ""
-
-#: ../../include/functions_config.php:1196
-msgid "Shortened module graph data"
-msgstr ""
-
-#: ../../include/functions_config.php:1200
-msgid "Show the group name instead the group icon."
-msgstr ""
-
-#: ../../include/functions_config.php:1208
-msgid "Default type of module charts."
-msgstr ""
-
-#: ../../include/functions_config.php:1212
-msgid "Default Number of elements in Custom Graph."
-msgstr ""
-
-#: ../../include/functions_config.php:1216
-msgid "Default type of interface charts."
-msgstr ""
-
-#: ../../include/functions_config.php:1233
-msgid "Display lateral menus with left click"
-msgstr ""
-
-#: ../../include/functions_config.php:1243
-msgid "Service item padding size"
-msgstr ""
-
-#: ../../include/functions_config.php:1248
-msgid "Default percentil"
-msgstr ""
-
-#: ../../include/functions_config.php:1252
-msgid "Default full scale (TIP)"
-msgstr ""
-
-#: ../../include/functions_config.php:1256
-msgid "Default soft graphs"
-msgstr ""
-
-#: ../../include/functions_config.php:1260
-msgid "Default zoom graphs"
-msgstr ""
-
-#: ../../include/functions_config.php:1269
-msgid "Default height of the chart image"
-msgstr ""
-
-#: ../../include/functions_config.php:1291
-msgid "Add the custom post process"
-msgstr ""
-
-#: ../../include/functions_config.php:1299
-msgid "Delete the custom post process"
-msgstr ""
-
-#: ../../include/functions_config.php:1356
-msgid "Add custom module unit"
-msgstr ""
-
-#: ../../include/functions_config.php:1362
-msgid "Delete custom module unit"
-msgstr ""
-
-#: ../../include/functions_config.php:1368
-msgid "Custom report info"
-msgstr ""
-
-#: ../../include/functions_config.php:1385
-msgid "Font family"
-msgstr ""
-
-#: ../../include/functions_config.php:1413
-msgid "Use data multiplier"
-msgstr ""
-
-#: ../../include/functions_config.php:1457
-msgid "IP ElasticSearch server"
-msgstr ""
-
-#: ../../include/functions_config.php:1461
-msgid "Port ElasticSearch server"
-msgstr ""
-
-#: ../../include/functions_config.php:1465
-msgid "Number of logs viewed"
-msgstr ""
-
-#: ../../include/functions_config.php:1469
-msgid "Days to purge old information"
-msgstr ""
-
-#: ../../include/functions_config.php:1482
-msgid "Active and historical database cannot be the same."
-msgstr ""
-
-#: ../../include/functions_config.php:1487
-msgid "Host"
-msgstr ""
-
-#: ../../include/functions_config.php:1500
-msgid "Enable history database"
-msgstr ""
-
-#: ../../include/functions_config.php:1504
-msgid "Enable history event"
-msgstr ""
-
-#: ../../include/functions_config.php:1508
-msgid "Database user"
-msgstr ""
-
-#: ../../include/functions_config.php:1512
-msgid "Database password"
-msgstr ""
-
-#: ../../include/functions_config.php:1528
-msgid "Event Days"
-msgstr ""
-
-#: ../../include/functions_config.php:1544
-msgid "Delay"
-msgstr ""
-
-#: ../../include/functions_config.php:1576
-msgid "Historical database purge"
-msgstr ""
-
-#: ../../include/functions_config.php:1585
-msgid "Historical database partitions"
-msgstr ""
-
-#: ../../include/functions_config.php:1594
-msgid "Historical database events purge"
-msgstr ""
-
-#: ../../include/functions_config.php:1603
-msgid "Historical database string purge"
-msgstr ""
-
-#: ../../include/functions_config.php:1616
-msgid "eHorus user login"
-msgstr ""
-
-#: ../../include/functions_config.php:1628
-msgid "eHorus API hostname"
-msgstr ""
-
-#: ../../include/functions_config.php:1632
-msgid "eHorus API port"
-msgstr ""
-
-#: ../../include/functions_config.php:1636
-msgid "eHorus request timeout"
-msgstr ""
-
-#: ../../include/functions_config.php:1640
-msgid "eHorus id custom field"
-msgstr ""
-
-#: ../../include/functions_config.php:1646
-msgid "Integria user login"
-msgstr ""
-
-#: ../../include/functions_config.php:1654
-msgid "Integria user"
-msgstr ""
-
-#: ../../include/functions_config.php:1658
-msgid "Integria password"
-msgstr ""
-
-#: ../../include/functions_config.php:1672
-msgid "integria API hostname"
-msgstr ""
-
-#: ../../include/functions_config.php:1680
-msgid "Integria request timeout"
-msgstr ""
-
-#: ../../include/functions_config.php:1684
-msgid "Integria default group"
-msgstr ""
-
-#: ../../include/functions_config.php:1688
-msgid "Integria custom response default group"
-msgstr ""
-
-#: ../../include/functions_config.php:1692
-msgid "Integria default priority"
-msgstr ""
-
-#: ../../include/functions_config.php:1696
-msgid "Integria custom response default priority"
-msgstr ""
-
-#: ../../include/functions_config.php:1700
-msgid "Integria default creator"
-msgstr ""
-
-#: ../../include/functions_config.php:1704
-msgid "Integria default owner"
-msgstr ""
-
-#: ../../include/functions_config.php:1708
-msgid "Integria custom response default owner"
-msgstr ""
-
-#: ../../include/functions_config.php:1712
-msgid "Integria default ticket type"
-msgstr ""
-
-#: ../../include/functions_config.php:1716
-msgid "Integria custom response default ticket type"
-msgstr ""
-
-#: ../../include/functions_config.php:1720
-msgid "Integria default ticket status"
-msgstr ""
-
-#: ../../include/functions_config.php:1724
-msgid "Integria custom response default ticket status"
-msgstr ""
-
-#: ../../include/functions_config.php:1728
-msgid "Integria default ticket title"
-msgstr ""
-
-#: ../../include/functions_config.php:1732
-msgid "Integria custom response default ticket title"
-msgstr ""
-
-#: ../../include/functions_config.php:1736
-msgid "Integria default ticket content"
-msgstr ""
-
-#: ../../include/functions_config.php:1740
-msgid "Integria custom response default ticket content"
-msgstr ""
-
-#: ../../include/functions_config.php:1758
-msgid "WebSocket bind address"
-msgstr ""
-
-#: ../../include/functions_config.php:1762
-msgid "WebSocket port"
-msgstr ""
-
-#: ../../include/functions_config.php:1784
-#, php-format
-msgid "Failed updated: the next values cannot update: %s"
-msgstr ""
-
-#: ../../include/functions_config.php:2337
-#: ../../operation/agentes/networkmap.dinamic.php:226
-msgid "Pandora FMS"
-msgstr ""
-
-#: ../../include/functions_config.php:2345
-msgid "PandoraFMS Metaconsole"
-msgstr ""
-
-#: ../../include/functions_config.php:2349
-msgid "Centralized operation console"
-msgstr ""
-
-#: ../../include/functions_config.php:2353
-msgid "PANDORA FMS"
-msgstr ""
-
-#: ../../include/functions_config.php:2357
-msgid "ONE TOOL TO MONITOR THEM ALL"
-msgstr ""
-
-#: ../../include/functions_config.php:2397
-msgid "PANDORA FMS NEXT GENERATION"
-msgstr ""
-
-#: ../../include/functions_config.php:2401
-msgid "METACONSOLE"
-msgstr ""
-
-#: ../../include/get_file.php:39
-msgid "Security error. Please contact the administrator."
-msgstr ""
-
-#: ../../include/get_file.php:74
-msgid "File is missing in disk storage. Please contact the administrator."
-msgstr ""
-
-#: ../../include/functions_netflow.php:346
-msgid "Total flows"
-msgstr ""
-
-#: ../../include/functions_netflow.php:351
-msgid "Total bytes"
-msgstr ""
-
-#: ../../include/functions_netflow.php:356
-msgid "Total packets"
-msgstr ""
-
-#: ../../include/functions_netflow.php:361
-msgid "Average bits per second"
-msgstr ""
-
-#: ../../include/functions_netflow.php:366
-msgid "Average packets per second"
-msgstr ""
-
-#: ../../include/functions_netflow.php:371
-msgid "Average bytes per packet"
-msgstr ""
-
-#: ../../include/functions_netflow.php:1051
-msgid "Area graph"
-msgstr ""
-
-#: ../../include/functions_netflow.php:1053
-#: ../../operation/agentes/exportdata.php:377
-msgid "Data table"
-msgstr ""
-
-#: ../../include/functions_netflow.php:1054
-msgid "Circular mesh"
-msgstr ""
-
-#: ../../include/functions_netflow.php:1055
-#: ../../include/functions_netflow.php:1272
-msgid "Host detailed traffic"
-msgstr ""
-
-#: ../../include/functions_netflow.php:1259
-msgid "Sent"
-msgstr ""
-
-#: ../../include/functions_netflow.php:1267
-msgid "Received"
-msgstr ""
-
-#: ../../include/functions_netflow.php:1403
-msgid "Dst port"
-msgstr ""
-
-#: ../../include/functions_netflow.php:1406
-msgid "Dst IP"
-msgstr ""
-
-#: ../../include/functions_netflow.php:1409
-msgid "Src IP"
-msgstr ""
-
-#: ../../include/functions_netflow.php:1412
-msgid "Src port"
-msgstr ""
-
-#: ../../include/functions_netflow.php:1598
-#, php-format
-msgid "nfdump binary (%s) not found!"
-msgstr ""
-
-#: ../../include/functions_netflow.php:1605
-msgid "Make sure nfdump version 1.6.8 or newer is installed!"
-msgstr ""
-
-#: ../../include/functions_netflow.php:1622
-msgid "High"
-msgstr ""
-
-#: ../../include/functions_netflow.php:1623
-msgid "Ultra High"
-msgstr ""
-
-#: ../../include/functions_netflow.php:1624
-msgid "Hourly"
-msgstr ""
-
-#: ../../include/functions_netflow.php:1656
-#, php-format
-msgid "Agregate by %s"
-msgstr ""
-
-#: ../../include/functions_netflow.php:1664
-#, php-format
-msgid "Resolution %s"
-msgstr ""
-
-#: ../../include/class/Tree.class.php:770
-#: ../../include/class/Tree.class.php:772
-msgid "Module alerts"
-msgstr ""
-
-#: ../../include/class/ConfigPEN.class.php:428
-#: ../../include/class/ConfigPEN.class.php:597
-#: ../../include/class/ModuleTemplates.class.php:1074
-msgid "PEN"
-msgstr ""
-
-#: ../../include/class/ConfigPEN.class.php:435
-#: ../../include/class/ConfigPEN.class.php:598
-msgid "Manufacturer"
-msgstr ""
-
-#: ../../include/class/ConfigPEN.class.php:483
-msgid "PEN is required"
-msgstr ""
-
-#: ../../include/class/ConfigPEN.class.php:509
-msgid "PEN is required."
-msgstr ""
-
-#: ../../include/class/ConfigPEN.class.php:513
-msgid "Manufacturer is required"
-msgstr ""
-
-#: ../../include/class/ConfigPEN.class.php:530
-msgid "This PEN definition does not exist"
-msgstr ""
-
-#: ../../include/class/ConfigPEN.class.php:544
-msgid "created"
-msgstr ""
-
-#: ../../include/class/ConfigPEN.class.php:550
-msgid "This PEN definition already exists"
-msgstr ""
-
-#: ../../include/class/ConfigPEN.class.php:564
-msgid "updated"
-msgstr ""
-
-#: ../../include/class/ConfigPEN.class.php:571
-#, php-format
-msgid "Succesfully %s"
-msgstr ""
-
-#: ../../include/class/ConfigPEN.class.php:651
-msgid "Register manufacturer"
-msgstr ""
-
-#: ../../include/class/ConfigPEN.class.php:667
-msgid "Are you sure you want to delete this PEN?"
-msgstr ""
-
-#: ../../include/class/ConfigPEN.class.php:694
-msgid "Register new manufacturer"
-msgstr ""
-
-#: ../../include/class/HelpFeedBack.class.php:99
-msgid "Page not found"
-msgstr ""
-
-#: ../../include/class/HelpFeedBack.class.php:104
-msgid "Browser not compatible."
-msgstr ""
-
-#: ../../include/class/HelpFeedBack.class.php:147
-msgid "Suggestion"
-msgstr ""
-
-#: ../../include/class/HelpFeedBack.class.php:158
-msgid "Something is wrong"
-msgstr ""
-
-#: ../../include/class/HelpFeedBack.class.php:171
-#: ../../include/class/Diagnostics.class.php:1892
-msgid "What happened?"
-msgstr ""
-
-#: ../../include/class/HelpFeedBack.class.php:181
-msgid "Your Email"
-msgstr ""
-
-#: ../../include/class/HelpFeedBack.class.php:198
-msgid "Submit"
-msgstr ""
-
-#: ../../include/class/HelpFeedBack.class.php:213
-#: ../../include/class/Diagnostics.class.php:1965 ../../general/header.php:352
-#: ../../general/header.php:354
-msgid "Feedback"
-msgstr ""
-
-#: ../../include/class/HelpFeedBack.class.php:253
-msgid "[pandorafms wiki] New suggestion"
-msgstr ""
-
-#: ../../include/class/HelpFeedBack.class.php:255
-msgid "[pandorafms wiki] New report"
-msgstr ""
-
-#: ../../include/class/HelpFeedBack.class.php:261
-msgid "Please provide your email address, we promise not to bother you"
-msgstr ""
-
-#: ../../include/class/HelpFeedBack.class.php:309
-msgid "Something went wrong while sending the report."
-msgstr ""
-
-#: ../../include/class/HelpFeedBack.class.php:360
-msgid "Your report had been successfully sent to Artica."
-msgstr ""
-
-#: ../../include/class/HelpFeedBack.class.php:360
-msgid "Thank you!"
-msgstr ""
-
-#: ../../include/class/Diagnostics.class.php:142
-msgid "Export to PDF"
-msgstr ""
-
-#: ../../include/class/Diagnostics.class.php:155
-#, php-format
-msgid "%s Diagnostic tool"
-msgstr ""
-
-#: ../../include/class/Diagnostics.class.php:220
-#, php-format
-msgid "Info status %s"
-msgstr ""
-
-#: ../../include/class/Diagnostics.class.php:224
-msgid "PHP setup"
-msgstr ""
-
-#: ../../include/class/Diagnostics.class.php:232
-msgid "Database health status"
-msgstr ""
-
-#: ../../include/class/Diagnostics.class.php:236
-msgid "Database status info"
-msgstr ""
-
-#: ../../include/class/Diagnostics.class.php:240
-msgid "System Info"
-msgstr ""
-
-#: ../../include/class/Diagnostics.class.php:244
-msgid "MySQL Performance metrics"
-msgstr ""
-
-#: ../../include/class/Diagnostics.class.php:249
-#, php-format
-msgid "Tables fragmentation in the %s database"
-msgstr ""
-
-#: ../../include/class/Diagnostics.class.php:255
-#, php-format
-msgid "%s logs dates"
-msgstr ""
-
-#: ../../include/class/Diagnostics.class.php:259
-#, php-format
-msgid "%s Licence Information"
-msgstr ""
-
-#: ../../include/class/Diagnostics.class.php:263
-#: ../../include/class/Diagnostics.class.php:1249
-msgid "Status of the attachment folder"
-msgstr ""
-
-#: ../../include/class/Diagnostics.class.php:267
-msgid "Information from the tagente_datos table"
-msgstr ""
-
-#: ../../include/class/Diagnostics.class.php:271
-#, php-format
-msgid "%s server threads"
-msgstr ""
-
-#: ../../include/class/Diagnostics.class.php:275
-msgid "SQL show engine innodb status"
-msgstr ""
-
-#: ../../include/class/Diagnostics.class.php:323
-msgid "Graph of the Agents Unknown module."
-msgstr ""
-
-#: ../../include/class/Diagnostics.class.php:330
-msgid "Graph of the Database Maintenance module."
-msgstr ""
-
-#: ../../include/class/Diagnostics.class.php:337
-msgid "Graph of the Free Disk Spool Dir module."
-msgstr ""
-
-#: ../../include/class/Diagnostics.class.php:343
-msgid "Graph of the Free RAM module."
-msgstr ""
-
-#: ../../include/class/Diagnostics.class.php:349
-msgid "Graph of the Queued Modules module."
-msgstr ""
-
-#: ../../include/class/Diagnostics.class.php:355
-msgid "Graph of the Status module."
-msgstr ""
-
-#: ../../include/class/Diagnostics.class.php:361
-msgid "Graph of the System Load AVG module."
-msgstr ""
-
-#: ../../include/class/Diagnostics.class.php:368
-msgid "Graph of the Execution Time module."
-msgstr ""
-
-#: ../../include/class/Diagnostics.class.php:377
-msgid "Graphs modules that represent the self-monitoring system"
-msgstr ""
-
-#: ../../include/class/Diagnostics.class.php:434
-#, php-format
-msgid "%s Build"
-msgstr ""
-
-#: ../../include/class/Diagnostics.class.php:438
-#, php-format
-msgid "%s Version"
-msgstr ""
-
-#: ../../include/class/Diagnostics.class.php:442
-msgid "Minor Release"
-msgstr ""
-
-#: ../../include/class/Diagnostics.class.php:446
-msgid "Homedir"
-msgstr ""
-
-#: ../../include/class/Diagnostics.class.php:450
-msgid "HomeUrl"
-msgstr ""
-
-#: ../../include/class/Diagnostics.class.php:454
-msgid "Enterprise installed"
-msgstr ""
-
-#: ../../include/class/Diagnostics.class.php:455
-msgid "true"
-msgstr ""
-
-#: ../../include/class/Diagnostics.class.php:455
-msgid "false"
-msgstr ""
-
-#: ../../include/class/Diagnostics.class.php:458
-msgid "Update Key"
-msgstr ""
-
-#: ../../include/class/Diagnostics.class.php:462
-msgid "Updating code path"
-msgstr ""
-
-#: ../../include/class/Diagnostics.class.php:466
-msgid "Current Update #"
-msgstr ""
-
-#: ../../include/class/Diagnostics.class.php:490
-msgid "PHP Version"
-msgstr ""
-
-#: ../../include/class/Diagnostics.class.php:494
-msgid "PHP Max execution time"
-msgstr ""
-
-#: ../../include/class/Diagnostics.class.php:498
-msgid "PHP Max input time"
-msgstr ""
-
-#: ../../include/class/Diagnostics.class.php:502
-msgid "PHP Memory limit"
-msgstr ""
-
-#: ../../include/class/Diagnostics.class.php:506
-msgid "Session cookie lifetime"
-msgstr ""
-
-#: ../../include/class/Diagnostics.class.php:555
-msgid "Total groups"
-msgstr ""
-
-#: ../../include/class/Diagnostics.class.php:559
-msgid "Total module data records"
-msgstr ""
-
-#: ../../include/class/Diagnostics.class.php:563
-msgid "Total agent access record"
-msgstr ""
-
-#: ../../include/class/Diagnostics.class.php:571
-msgid "Total traps"
-msgstr ""
-
-#: ../../include/class/Diagnostics.class.php:575
-msgid "Total users"
-msgstr ""
-
-#: ../../include/class/Diagnostics.class.php:579
-msgid "Total sessions"
-msgstr ""
-
-#: ../../include/class/Diagnostics.class.php:618
-msgid "Pandora DB has never been executed"
-msgstr ""
-
-#: ../../include/class/Diagnostics.class.php:625
-msgid "Ago"
-msgstr ""
-
-#: ../../include/class/Diagnostics.class.php:632
-msgid "Total unknown agents"
-msgstr ""
-
-#: ../../include/class/Diagnostics.class.php:636
-msgid "Total not-init modules"
-msgstr ""
-
-#: ../../include/class/Diagnostics.class.php:640
-msgid "Pandora DB Last run"
-msgstr ""
-
-#: ../../include/class/Diagnostics.class.php:672
-msgid "DB Schema Version (first installed)"
-msgstr ""
-
-#: ../../include/class/Diagnostics.class.php:676
-msgid "DB Schema Version (actual)"
-msgstr ""
-
-#: ../../include/class/Diagnostics.class.php:680
-msgid "DB Schema Build"
-msgstr ""
-
-#: ../../include/class/Diagnostics.class.php:684
-msgid "DB Size"
-msgstr ""
-
-#: ../../include/class/Diagnostics.class.php:720
-msgid "CPU"
-msgstr ""
-
-#: ../../include/class/Diagnostics.class.php:724
-msgid "RAM"
-msgstr ""
-
-#: ../../include/class/Diagnostics.class.php:728
-msgid "Os"
-msgstr ""
-
-#: ../../include/class/Diagnostics.class.php:732
-#: ../../include/class/Diagnostics.class.php:750
-msgid "Hostname"
-msgstr ""
-
-#: ../../include/class/Diagnostics.class.php:736
-#: ../../include/class/Diagnostics.class.php:754
-#: ../../include/class/NetworkMap.class.php:2899
-msgid "Ip"
-msgstr ""
-
-#: ../../include/class/Diagnostics.class.php:782
-msgid "InnoDB buffer pool size"
-msgstr ""
-
-#: ../../include/class/Diagnostics.class.php:786
-#, php-format
-msgid ""
-"It has to be 40% of the server memory not recommended to be greater or less"
-msgstr ""
-
-#: ../../include/class/Diagnostics.class.php:791
-msgid "InnoDB file per table"
-msgstr ""
-
-#: ../../include/class/Diagnostics.class.php:794
-#: ../../include/class/Diagnostics.class.php:866
-msgid "Recommended ON"
-msgstr ""
-
-#: ../../include/class/Diagnostics.class.php:798
-msgid "InnoDB flush log at trx-commit"
-msgstr ""
-
-#: ../../include/class/Diagnostics.class.php:801
-msgid "Recommended Value"
-msgstr ""
-
-#: ../../include/class/Diagnostics.class.php:805
-msgid "InnoDB lock wait timeout"
-msgstr ""
-
-#: ../../include/class/Diagnostics.class.php:808
-#: ../../include/class/Diagnostics.class.php:815
-#: ../../include/class/Diagnostics.class.php:822
-#: ../../include/class/Diagnostics.class.php:829
-#: ../../include/class/Diagnostics.class.php:836
-#: ../../include/class/Diagnostics.class.php:845
-#: ../../include/class/Diagnostics.class.php:852
-#: ../../include/class/Diagnostics.class.php:859
-#: ../../include/class/Diagnostics.class.php:873
-#: ../../include/class/Diagnostics.class.php:880
-#: ../../include/class/Diagnostics.class.php:887
-#: ../../include/class/Diagnostics.class.php:901
-#: ../../include/class/Diagnostics.class.php:908
-msgid "Min. Recommended Value"
-msgstr ""
-
-#: ../../include/class/Diagnostics.class.php:812
-msgid "InnoDB log buffer size"
-msgstr ""
-
-#: ../../include/class/Diagnostics.class.php:819
-msgid "InnoDB log file size"
-msgstr ""
-
-#: ../../include/class/Diagnostics.class.php:826
-msgid "Maximun allowed packet"
-msgstr ""
-
-#: ../../include/class/Diagnostics.class.php:833
-msgid "Maximun connections"
-msgstr ""
-
-#: ../../include/class/Diagnostics.class.php:838
-msgid "conections"
-msgstr ""
-
-#: ../../include/class/Diagnostics.class.php:842
-msgid "Query cache limit"
-msgstr ""
-
-#: ../../include/class/Diagnostics.class.php:849
-msgid "Query cache min-res-unit"
-msgstr ""
-
-#: ../../include/class/Diagnostics.class.php:856
-msgid "Query cache size"
-msgstr ""
-
-#: ../../include/class/Diagnostics.class.php:863
-msgid "Query cache type"
-msgstr ""
-
-#: ../../include/class/Diagnostics.class.php:870
-msgid "Read buffer size"
-msgstr ""
-
-#: ../../include/class/Diagnostics.class.php:877
-msgid "Read rnd-buffer size"
-msgstr ""
-
-#: ../../include/class/Diagnostics.class.php:884
-msgid "Sort buffer size"
-msgstr ""
-
-#: ../../include/class/Diagnostics.class.php:891
-msgid "Sql mode"
-msgstr ""
-
-#: ../../include/class/Diagnostics.class.php:894
-msgid "Must be empty"
-msgstr ""
-
-#: ../../include/class/Diagnostics.class.php:898
-msgid "Thread cache size"
-msgstr ""
-
-#: ../../include/class/Diagnostics.class.php:905
-msgid "Thread stack"
-msgstr ""
-
-#: ../../include/class/Diagnostics.class.php:968
-msgid ""
-"Table fragmentation is higher than recommended. They should be defragmented."
-msgstr ""
-
-#: ../../include/class/Diagnostics.class.php:972
-msgid "Table fragmentation is correct."
-msgstr ""
-
-#: ../../include/class/Diagnostics.class.php:981
-msgid "Tables fragmentation (maximum recommended value)"
-msgstr ""
-
-#: ../../include/class/Diagnostics.class.php:986
-msgid "Tables fragmentation (current value)"
-msgstr ""
-
-#: ../../include/class/Diagnostics.class.php:990
-msgid "Table fragmentation status"
-msgstr ""
-
-#: ../../include/class/Diagnostics.class.php:1025
-msgid "Size server logs (current value)"
-msgstr ""
-
-#: ../../include/class/Diagnostics.class.php:1029
-msgid "Status server logs"
-msgstr ""
-
-#: ../../include/class/Diagnostics.class.php:1034
-msgid "Size error logs (current value)"
-msgstr ""
-
-#: ../../include/class/Diagnostics.class.php:1038
-msgid "Status error logs"
-msgstr ""
-
-#: ../../include/class/Diagnostics.class.php:1043
-msgid "Size console logs (current value)"
-msgstr ""
-
-#: ../../include/class/Diagnostics.class.php:1047
-msgid "Status console logs"
-msgstr ""
-
-#: ../../include/class/Diagnostics.class.php:1082
-msgid "License capacity is less than 90 percent"
-msgstr ""
-
-#: ../../include/class/Diagnostics.class.php:1085
-msgid "License capacity exceeds 90 percent"
-msgstr ""
-
-#: ../../include/class/Diagnostics.class.php:1093
-msgid ""
-"The average of modules per agent is more than 40. You can have performance "
-"problems"
-msgstr ""
-
-#: ../../include/class/Diagnostics.class.php:1098
-msgid "The average of modules per agent is less than 40"
-msgstr ""
-
-#: ../../include/class/Diagnostics.class.php:1134
-msgid "The system has no load"
-msgstr ""
-
-#: ../../include/class/Diagnostics.class.php:1154
-msgid "Support expires"
-msgstr ""
-
-#: ../../include/class/Diagnostics.class.php:1178
-msgid "Network Management System"
-msgstr ""
-
-#: ../../include/class/Diagnostics.class.php:1179
-#: ../../include/class/Diagnostics.class.php:1183
-msgid "Off"
-msgstr ""
-
-#: ../../include/class/Diagnostics.class.php:1190
-msgid "Status of agents capacity"
-msgstr ""
-
-#: ../../include/class/Diagnostics.class.php:1195
-msgid "Status of average modules per agent"
-msgstr ""
-
-#: ../../include/class/Diagnostics.class.php:1201
-msgid "Interval average of the network modules"
-msgstr ""
-
-#: ../../include/class/Diagnostics.class.php:1231
-msgid "The attached folder contains more than 700 files."
-msgstr ""
-
-#: ../../include/class/Diagnostics.class.php:1236
-msgid "The attached folder contains less than 700 files."
-msgstr ""
-
-#: ../../include/class/Diagnostics.class.php:1245
-msgid "Total files in the attached folder"
-msgstr ""
-
-#: ../../include/class/Diagnostics.class.php:1275
-msgid ""
-"The tagente_datos table contains too much data. A historical database is "
-"recommended."
-msgstr ""
-
-#: ../../include/class/Diagnostics.class.php:1280
-msgid "The tagente_datos table contains an acceptable amount of data."
-msgstr ""
-
-#: ../../include/class/Diagnostics.class.php:1289
-msgid "Total data in tagente_datos table"
-msgstr ""
-
-#: ../../include/class/Diagnostics.class.php:1293
-msgid "Tagente_datos table status"
-msgstr ""
-
-#: ../../include/class/Diagnostics.class.php:1329
-msgid "Threads"
-msgstr ""
-
-#: ../../include/class/Diagnostics.class.php:1339
-msgid "Total threads"
-msgstr ""
-
-#: ../../include/class/Diagnostics.class.php:1346
-msgid "Current pandora_server running threads"
-msgstr ""
-
-#: ../../include/class/Diagnostics.class.php:1350
-msgid ""
-"There's more pandora_server threads than configured, are you running "
-"multiple servers simultaneusly?."
-msgstr ""
-
-#: ../../include/class/Diagnostics.class.php:1484
-msgid ""
-"Please check your Pandora Server setup and make sure that the database "
-"maintenance daemon is running."
-msgstr ""
-
-#: ../../include/class/Diagnostics.class.php:1488
-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:1750
-msgid "You have more than 10 MB of logs"
-msgstr ""
-
-#: ../../include/class/Diagnostics.class.php:1753
-msgid "You have less than 10 MB of logs"
-msgstr ""
-
-#: ../../include/class/Diagnostics.class.php:1816
-msgid "Succesfuly"
-msgstr ""
-
-#: ../../include/class/Diagnostics.class.php:1920
-msgid "Include installation data"
-msgstr ""
-
-#: ../../include/class/Diagnostics.class.php:1957
-msgid "Hello Feedback-Men"
-msgstr ""
-
-#: ../../include/class/Diagnostics.class.php:1967
-msgid "Hello"
-msgstr ""
-
-#: ../../include/class/Diagnostics.class.php:1971
-#, php-format
-msgid "User %s is reporting an issue in its %s experience"
-msgstr ""
-
-#: ../../include/class/Diagnostics.class.php:1980
-msgid "Find some files attached to this mail"
-msgstr ""
-
-#: ../../include/class/Diagnostics.class.php:1983
-msgid "PDF is the diagnostic information retrieved at report time"
-msgstr ""
-
-#: ../../include/class/Diagnostics.class.php:1986
-msgid "CSV contains the statuses of every product file"
-msgstr ""
-
-#: ../../include/class/Diagnostics.class.php:1991
-#, 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:1995
-msgid "LEGAL WARNING"
-msgstr ""
-
-#: ../../include/class/Diagnostics.class.php:1997
-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:2001
-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:2005
-msgid "If you have received this transmission in error, do not read it"
-msgstr ""
-
-#: ../../include/class/Diagnostics.class.php:2009
-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:2088
-msgid "Invalid cron task"
-msgstr ""
-
-#: ../../include/class/Diagnostics.class.php:2089
-msgid "Sending of information has been processed"
-msgstr ""
-
-#: ../../include/class/Diagnostics.class.php:2124
-#: ../../include/class/Diagnostics.class.php:2134
-msgid "Diagnostics Info"
-msgstr ""
-
-#: ../../include/class/Diagnostics.class.php:2128
-#: ../../include/class/Diagnostics.class.php:2246
-#, php-format
-msgid "Automated %s report for user defined report"
-msgstr ""
-
-#: ../../include/class/Diagnostics.class.php:2242
-#: ../../include/class/Diagnostics.class.php:2252
-msgid "PHP Info"
-msgstr ""
-
-#: ../../include/class/NetworkMap.class.php:2312
-msgid "Failed to generate dotmap, please select different layout schema"
-msgstr ""
-
-#: ../../include/class/NetworkMap.class.php:2440
-msgid "Failed to retrieve graph data."
-msgstr ""
-
-#: ../../include/class/NetworkMap.class.php:2652
-msgid "Holding Area"
-msgstr ""
-
-#: ../../include/class/NetworkMap.class.php:2780
-#, php-format
-msgid "Edit node %s"
-msgstr ""
-
-#: ../../include/class/NetworkMap.class.php:2782
-msgid "Show details and options"
-msgstr ""
-
-#: ../../include/class/NetworkMap.class.php:2783
-msgid "Add a interface link"
-msgstr ""
-
-#: ../../include/class/NetworkMap.class.php:2784
-msgid "Set parent interface"
-msgstr ""
-
-#: ../../include/class/NetworkMap.class.php:2785
-msgid "Set as children"
-msgstr ""
-
-#: ../../include/class/NetworkMap.class.php:2786
-msgid "Set parent"
-msgstr ""
-
-#: ../../include/class/NetworkMap.class.php:2787
-#: ../../include/class/NetworkMap.class.php:2800
-msgid "Abort the action of set relationship"
-msgstr ""
-
-#: ../../include/class/NetworkMap.class.php:2789
-#: ../../include/class/NetworkMap.class.php:3145
-msgid "Add node"
-msgstr ""
-
-#: ../../include/class/NetworkMap.class.php:2790
-msgid "Set center"
-msgstr ""
-
-#: ../../include/class/NetworkMap.class.php:2792
-msgid "Refresh Holding area"
-msgstr ""
-
-#: ../../include/class/NetworkMap.class.php:2793
-#: ../../include/class/NetworkMap.class.php:2796
-msgid "Proceed"
-msgstr ""
-
-#: ../../include/class/NetworkMap.class.php:2794
-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:2798
-msgid "Restart map"
-msgstr ""
-
-#: ../../include/class/NetworkMap.class.php:2799
-msgid "Abort the interface relationship"
-msgstr ""
-
-#: ../../include/class/NetworkMap.class.php:2817
-#: ../../include/class/NetworkMap.class.php:2866
-msgid "Edit node"
-msgstr ""
-
-#: ../../include/class/NetworkMap.class.php:2827
-#: ../../include/class/NetworkMap.class.php:2876
-msgid "Adresses"
-msgstr ""
-
-#: ../../include/class/NetworkMap.class.php:2829
-#: ../../include/class/NetworkMap.class.php:2878
-msgid "OS type"
-msgstr ""
-
-#: ../../include/class/NetworkMap.class.php:2836
-#: ../../include/class/NetworkMap.class.php:2837
-#: ../../include/class/NetworkMap.class.php:2885
-#: ../../include/class/NetworkMap.class.php:2886
-msgid "Node Details"
-msgstr ""
-
-#: ../../include/class/NetworkMap.class.php:2900
-msgid "MAC"
-msgstr ""
-
-#: ../../include/class/NetworkMap.class.php:2911
-#: ../../include/class/NetworkMap.class.php:2912
-msgid "Interface Information (SNMP)"
-msgstr ""
-
-#: ../../include/class/NetworkMap.class.php:2923
-msgid "Shape"
-msgstr ""
-
-#: ../../include/class/NetworkMap.class.php:2926
-msgid "Circle"
-msgstr ""
-
-#: ../../include/class/NetworkMap.class.php:2927
-msgid "Square"
-msgstr ""
-
-#: ../../include/class/NetworkMap.class.php:2928
-msgid "Rhombus"
-msgstr ""
-
-#: ../../include/class/NetworkMap.class.php:2941
-msgid "name node"
-msgstr ""
-
-#: ../../include/class/NetworkMap.class.php:2947
-msgid "Update node"
-msgstr ""
-
-#: ../../include/class/NetworkMap.class.php:2959
-#: ../../include/class/NetworkMap.class.php:3262
-msgid "name fictional node"
-msgstr ""
-
-#: ../../include/class/NetworkMap.class.php:2964
-#: ../../include/class/NetworkMap.class.php:3267
-msgid "Networkmap to link"
-msgstr ""
-
-#: ../../include/class/NetworkMap.class.php:2976
-msgid "Update fictional node"
-msgstr ""
-
-#: ../../include/class/NetworkMap.class.php:2986
-#: ../../include/class/NetworkMap.class.php:2987
-msgid "Node options"
-msgstr ""
-
-#: ../../include/class/NetworkMap.class.php:2998
-#: ../../include/class/NetworkMap.class.php:3091
-msgid "Node source"
-msgstr ""
-
-#: ../../include/class/NetworkMap.class.php:2999
-#: ../../include/class/NetworkMap.class.php:3092
-msgid "Interface source"
-msgstr ""
-
-#: ../../include/class/NetworkMap.class.php:3000
-#: ../../include/class/NetworkMap.class.php:3093
-msgid "Interface Target"
-msgstr ""
-
-#: ../../include/class/NetworkMap.class.php:3002
-#: ../../include/class/NetworkMap.class.php:3094
-msgid "Node target"
-msgstr ""
-
-#: ../../include/class/NetworkMap.class.php:3003
-msgid "E."
-msgstr ""
-
-#: ../../include/class/NetworkMap.class.php:3065
-msgid "There are not relations"
-msgstr ""
-
-#: ../../include/class/NetworkMap.class.php:3076
-#: ../../include/class/NetworkMap.class.php:3077
-msgid "Relations"
-msgstr ""
-
-#: ../../include/class/NetworkMap.class.php:3133
-msgid "Add interface link"
-msgstr ""
-
-#: ../../include/class/NetworkMap.class.php:3164
-#: ../../include/class/NetworkMap.class.php:3186
-#: ../../include/class/NetworkMap.class.php:3187
-#: ../../include/class/NetworkMap.class.php:3237
-#: ../../include/class/NetworkMap.class.php:3249
-#: ../../include/class/NetworkMap.class.php:3290
-msgid "Add agent node"
-msgstr ""
-
-#: ../../include/class/NetworkMap.class.php:3248
-msgid "Add agent node (filter by group)"
-msgstr ""
-
-#: ../../include/class/NetworkMap.class.php:3279
-msgid "Add fictional node"
-msgstr ""
-
-#: ../../include/class/NetworkMap.class.php:3289
-msgid "Add fictional point"
-msgstr ""
-
-#: ../../include/class/NetworkMap.class.php:3503
-msgid "Open Minimap"
-msgstr ""
-
-#: ../../include/class/NetworkMap.class.php:3509
-msgid "Hide Labels"
-msgstr ""
-
-#: ../../include/class/AgentsAlerts.class.php:499
-msgid "There are no agents with alerts"
-msgstr ""
-
-#: ../../include/class/AgentsAlerts.class.php:577
-msgid "Previous alerts"
-msgstr ""
-
-#: ../../include/class/AgentsAlerts.class.php:640
-msgid "More alerts"
-msgstr ""
-
-#: ../../include/class/AgentsAlerts.class.php:738
-msgid "Agents/Alerts"
-msgstr ""
-
-#: ../../include/class/AgentsAlerts.class.php:787
-msgid "Show modules without alerts"
-msgstr ""
-
-#: ../../include/class/AgentsAlerts.class.php:817
-#: ../../operation/gis_maps/render_view.php:152
-msgid "10 minutes"
-msgstr ""
-
-#: ../../include/class/ManageNetScanScripts.class.php:122
-msgid "Net scan scripts"
-msgstr ""
-
-#: ../../include/class/ManageNetScanScripts.class.php:223
-msgid "Problem creating"
-msgstr ""
-
-#: ../../include/class/ManageNetScanScripts.class.php:234
-#: ../../include/class/ManageNetScanScripts.class.php:321
-msgid "Name or Script fullpath they can not be empty"
-msgstr ""
-
-#: ../../include/class/ManageNetScanScripts.class.php:255
-#: ../../include/class/ManageNetScanScripts.class.php:342
-msgid "Problem deleting Net scan Scripts, Not selected script"
-msgstr ""
-
-#: ../../include/class/ManageNetScanScripts.class.php:310
-msgid "Problem updating"
-msgstr ""
-
-#: ../../include/class/ManageNetScanScripts.class.php:361
-msgid "Problem deleting Net scan Scripts"
-msgstr ""
-
-#: ../../include/class/ManageNetScanScripts.class.php:366
-msgid "Deleted successfully"
-msgstr ""
-
-#: ../../include/class/ManageNetScanScripts.class.php:439
-msgid "Are you sure delete script?"
-msgstr ""
-
-#: ../../include/class/ManageNetScanScripts.class.php:459
-msgid "Delete Script"
-msgstr ""
-
-#: ../../include/class/ManageNetScanScripts.class.php:478
-msgid "There are no net scan scripts in the system"
-msgstr ""
-
-#: ../../include/class/ManageNetScanScripts.class.php:552
-msgid "Script fullpath"
-msgstr ""
-
-#: ../../include/class/CredentialStore.class.php:608
-#, php-format
-msgid "Not a valid JSON: %s"
-msgstr ""
-
-#: ../../include/class/CredentialStore.class.php:618
-msgid "Key identifier is required"
-msgstr ""
-
-#: ../../include/class/CredentialStore.class.php:620
-msgid "You must select a group where store this key!"
-msgstr ""
-
-#: ../../include/class/CredentialStore.class.php:622
-msgid "You must specify a product type"
-msgstr ""
-
-#: ../../include/class/CredentialStore.class.php:624
-msgid "You must specify a username and/or password"
-msgstr ""
-
-#: ../../include/class/CredentialStore.class.php:730
-msgid "identifier cannot be empty"
-msgstr ""
-
-#: ../../include/class/CredentialStore.class.php:735
-msgid "Not allowed"
-msgstr ""
-
-#: ../../include/class/CredentialStore.class.php:774
-msgid "How to configure encryption."
-msgstr ""
-
-#: ../../include/class/CredentialStore.class.php:773
-#, php-format
-msgid ""
-"Database encryption is not enabled. Credentials will be stored in plaintext. "
-"%s"
-msgstr ""
-
-#: ../../include/class/CredentialStore.class.php:791
-#: ../../include/class/CredentialStore.class.php:899
-msgid "Identifier"
-msgstr ""
-
-#: ../../include/class/CredentialStore.class.php:792
-#: ../../include/class/CredentialStore.class.php:925
-msgid "Product"
-msgstr ""
-
-#: ../../include/class/CredentialStore.class.php:857
-msgid "Add key"
-msgstr ""
-
-#: ../../include/class/CredentialStore.class.php:934
-msgid "Aws"
-msgstr ""
-
-#: ../../include/class/CredentialStore.class.php:935
-msgid "Azure"
-msgstr ""
-
-#: ../../include/class/CredentialStore.class.php:936
-msgid "SAP"
-msgstr ""
-
-#: ../../include/class/CredentialStore.class.php:937
-msgid "Google"
-msgstr ""
-
-#: ../../include/class/CredentialStore.class.php:947
-msgid "Extra"
-msgstr ""
-
-#: ../../include/class/CredentialStore.class.php:948
-msgid "Extra (2)"
-msgstr ""
-
-#: ../../include/class/CredentialStore.class.php:958
-#: ../../include/class/CredentialStore.class.php:1129
-msgid "Access key ID"
-msgstr ""
-
-#: ../../include/class/CredentialStore.class.php:959
-#: ../../include/class/CredentialStore.class.php:1130
-msgid "Secret access key"
-msgstr ""
-
-#: ../../include/class/CredentialStore.class.php:965
-#: ../../include/class/CredentialStore.class.php:982
-msgid "Account ID"
-msgstr ""
-
-#: ../../include/class/CredentialStore.class.php:966
-#: ../../include/class/CredentialStore.class.php:1137
-msgid "Application secret"
-msgstr ""
-
-#: ../../include/class/CredentialStore.class.php:967
-#: ../../include/class/CredentialStore.class.php:1138
-msgid "Tenant or domain name"
-msgstr ""
-
-#: ../../include/class/CredentialStore.class.php:968
-#: ../../include/class/CredentialStore.class.php:1139
-msgid "Subscription id"
-msgstr ""
-
-#: ../../include/class/CredentialStore.class.php:972
-#: ../../include/class/CredentialStore.class.php:1155
-msgid "Auth JSON"
-msgstr ""
-
-#: ../../include/class/CredentialStore.class.php:1136
-msgid "Client ID"
-msgstr ""
-
-#: ../../include/class/CredentialStore.class.php:1145
-msgid "Account ID."
-msgstr ""
-
-#: ../../include/class/CredentialStore.class.php:1231
-msgid "Register new key into keystore"
-msgstr ""
-
-#: ../../include/class/CredentialStore.class.php:1235
-msgid "Update key"
-msgstr ""
-
-#: ../../include/class/AuditLog.class.php:136
-#, php-format
-msgid "%s audit"
-msgstr ""
-
-#: ../../include/class/AuditLog.class.php:136
-msgid "Review Logs"
-msgstr ""
-
-#: ../../include/class/AuditLog.class.php:145
-msgid "Admin Tools"
-msgstr ""
-
-#: ../../include/class/AuditLog.class.php:149
-msgid "System Audit log"
-msgstr ""
-
-#: ../../include/class/AuditLog.class.php:376
-msgid "There is no additional information to display"
-msgstr ""
-
-#: ../../include/class/OrderInterpreter.class.php:105
-msgid "Tactical View"
-msgstr ""
-
-#: ../../include/class/OrderInterpreter.class.php:123
-msgid "Agent Management"
-msgstr ""
-
-#: ../../include/class/OrderInterpreter.class.php:157
-msgid "Manage Policies"
-msgstr ""
-
-#: ../../include/class/OrderInterpreter.class.php:171
-msgid "List Alerts"
-msgstr ""
-
-#: ../../include/class/OrderInterpreter.class.php:195
-msgid "View Events"
-msgstr ""
-
-#: ../../include/class/OrderInterpreter.class.php:233
-#: ../../include/lib/Dashboard/Widgets/maps_made_by_user.php:174
-#: ../../include/lib/Dashboard/Widgets/maps_made_by_user.php:536
-#: ../../general/first_task/map_builder.php:31
-msgid "Visual Console"
-msgstr ""
-
-#: ../../include/class/OrderInterpreter.class.php:247
-msgid "Manage Servers"
-msgstr ""
-
-#: ../../include/class/OrderInterpreter.class.php:261
-msgid "Edit User"
-msgstr ""
-
-#: ../../include/class/OrderInterpreter.class.php:271
-msgid "Tree View"
-msgstr ""
-
-#: ../../include/class/OrderInterpreter.class.php:281
-msgid "Network Component"
-msgstr ""
-
-#: ../../include/class/OrderInterpreter.class.php:295
-msgid "Task List"
-msgstr ""
-
-#: ../../include/class/OrderInterpreter.class.php:339
-msgid "Update Manager"
-msgstr ""
-
-#: ../../include/class/OrderInterpreter.class.php:353
-msgid "Manage Agent Groups"
-msgstr ""
-
-#: ../../include/class/OrderInterpreter.class.php:394
-msgid "GO TO "
-msgstr ""
-
-#: ../../include/class/OrderInterpreter.class.php:423
-msgid "results found"
-msgstr ""
-
-#: ../../include/class/OrderInterpreter.class.php:427
-msgid "Press enter to search"
-msgstr ""
-
-#: ../../include/class/CustomNetScan.class.php:134
-msgid "This task has been already defined. Please edit it or create a new one."
-msgstr ""
-
-#: ../../include/class/CustomNetScan.class.php:369
-#: ../../include/class/CustomNetScan.class.php:394
-msgid "NetScan Custom"
-msgstr ""
-
-#: ../../include/class/CustomNetScan.class.php:611
-msgid "Recon script"
-msgstr ""
-
-#: ../../include/class/CustomNetScan.class.php:652
-msgid "Explanation"
-msgstr ""
-
-#: ../../include/class/CustomNetScan.class.php:668
-msgid "macro_desc"
-msgstr ""
-
-#: ../../include/class/ModuleTemplates.class.php:353
-#, php-format
-msgid "Template %s successfully updated"
-msgstr ""
-
-#: ../../include/class/ModuleTemplates.class.php:355
-msgid "Error updating template"
-msgstr ""
-
-#: ../../include/class/ModuleTemplates.class.php:400
-#, php-format
-msgid "Template %s successfully created"
-msgstr ""
-
-#: ../../include/class/ModuleTemplates.class.php:402
-msgid "Error creating template"
-msgstr ""
-
-#: ../../include/class/ModuleTemplates.class.php:410
-#, php-format
-msgid "Template %s successfully deleted"
-msgstr ""
-
-#: ../../include/class/ModuleTemplates.class.php:412
-#, php-format
-msgid "Error deleting %s template"
-msgstr ""
-
-#: ../../include/class/ModuleTemplates.class.php:559
-msgid "Module successfully deleted"
-msgstr ""
-
-#: ../../include/class/ModuleTemplates.class.php:561
-msgid "Error deleting module"
-msgstr ""
-
-#: ../../include/class/ModuleTemplates.class.php:572
-msgid "Block successfully deleted"
-msgstr ""
-
-#: ../../include/class/ModuleTemplates.class.php:574
-msgid "Error deleting block"
-msgstr ""
-
-#: ../../include/class/ModuleTemplates.class.php:586
-msgid "All templates deleted"
-msgstr ""
-
-#: ../../include/class/ModuleTemplates.class.php:588
-msgid "Error deleting all templates"
-msgstr ""
-
-#: ../../include/class/ModuleTemplates.class.php:597
-msgid "Selected templates deleted"
-msgstr ""
-
-#: ../../include/class/ModuleTemplates.class.php:599
-msgid "Error deleting selected templates"
-msgstr ""
-
-#: ../../include/class/ModuleTemplates.class.php:611
-msgid "Something gone wrong. Please, try again"
-msgstr ""
-
-#: ../../include/class/ModuleTemplates.class.php:662
-msgid "The modules is already added"
-msgstr ""
-
-#: ../../include/class/ModuleTemplates.class.php:1111
-#: ../../include/class/ModuleTemplates.class.php:1383
-msgid "Add components"
-msgstr ""
-
-#: ../../include/class/ModuleTemplates.class.php:1163
-#: ../../include/class/ModuleTemplates.class.php:1298
-msgid "No module blocks for this profile"
-msgstr ""
-
-#: ../../include/class/ModuleTemplates.class.php:1186
-msgid "Delete this block"
-msgstr ""
-
-#: ../../include/class/ModuleTemplates.class.php:1188
-msgid "Do you want delete this block?"
-msgstr ""
-
-#: ../../include/class/ModuleTemplates.class.php:1283
-msgid "Delete this module"
-msgstr ""
-
-#: ../../include/class/ModuleTemplates.class.php:1285
-msgid "Do you want delete this module?"
-msgstr ""
-
-#: ../../include/class/ModuleTemplates.class.php:1476
-msgid "Do you want delete all templates?"
-msgstr ""
-
-#: ../../include/class/ModuleTemplates.class.php:1479
-msgid "Do you want delete the selected templates?"
-msgstr ""
-
-#: ../../include/class/ConsoleSupervisor.php:837
-msgid "Limited mode."
-msgstr ""
-
-#: ../../include/class/ConsoleSupervisor.php:849
-msgid "License is about to expire"
-msgstr ""
-
-#: ../../include/class/ConsoleSupervisor.php:852
-msgid "Support is about to expire"
-msgstr ""
-
-#: ../../include/class/ConsoleSupervisor.php:870
-msgid "Expired license"
-msgstr ""
-
-#: ../../include/class/ConsoleSupervisor.php:871
-msgid "Your license has expired. Please, contact our sales department."
-msgstr ""
-
-#: ../../include/class/ConsoleSupervisor.php:873
-msgid "Support expired"
-msgstr ""
-
-#: ../../include/class/ConsoleSupervisor.php:874
-msgid ""
-"This license is outside of support. Please, contact our sales department."
-msgstr ""
-
-#: ../../include/class/ConsoleSupervisor.php:955
-msgid "Attachment directory is not writable"
-msgstr ""
-
-#: ../../include/class/ConsoleSupervisor.php:957
-#, php-format
-msgid ""
-"Directory %s is not writable. Please, configure corresponding permissions."
-msgstr ""
-
-#: ../../include/class/ConsoleSupervisor.php:977
-msgid "There are too many files in attachment directory"
-msgstr ""
-
-#: ../../include/class/ConsoleSupervisor.php:979
-#, php-format
-msgid ""
-"There are more than %d files in attachment, consider cleaning up attachment "
-"directory manually."
-msgstr ""
-
-#: ../../include/class/ConsoleSupervisor.php:1011
-msgid "Remote configuration directory is not readable"
-msgstr ""
-
-#: ../../include/class/ConsoleSupervisor.php:1013
-#, php-format
-msgid ""
-"Remote configuration directory %s is not readable. Please, adjust "
-"configuration."
-msgstr ""
-
-#: ../../include/class/ConsoleSupervisor.php:1030
-msgid "Remote configuration directory is not writable"
-msgstr ""
-
-#: ../../include/class/ConsoleSupervisor.php:1032
-#, php-format
-msgid ""
-"Remote configuration directory %s is not writable. Please, adjust "
-"configuration."
-msgstr ""
-
-#: ../../include/class/ConsoleSupervisor.php:1048
-msgid "Remote collections directory is not writable"
-msgstr ""
-
-#: ../../include/class/ConsoleSupervisor.php:1050
-#, php-format
-msgid "Collections directory %s is not writable. Please, adjust configuration."
-msgstr ""
-
-#: ../../include/class/ConsoleSupervisor.php:1066
-msgid "Remote md5 directory is not writable"
-msgstr ""
-
-#: ../../include/class/ConsoleSupervisor.php:1068
-#, php-format
-msgid "MD5 directory %s is not writable. Please, adjust configuration."
-msgstr ""
-
-#: ../../include/class/ConsoleSupervisor.php:1096
-msgid "There are too much files in spool"
-msgstr ""
-
-#: ../../include/class/ConsoleSupervisor.php:1098
-#, php-format
-msgid ""
-"There are more than %d files in %s. Consider checking DataServer performance"
-msgstr ""
-
-#: ../../include/class/ConsoleSupervisor.php:1119
-msgid "There are too many BADXML files in spool"
-msgstr ""
-
-#: ../../include/class/ConsoleSupervisor.php:1121
-#, php-format
-msgid "There are more than %d files in %s. Consider checking software agents."
-msgstr ""
-
-#: ../../include/class/ConsoleSupervisor.php:1208
-#, php-format
-msgid "%s (%s) is lacking performance."
-msgstr ""
-
-#: ../../include/class/ConsoleSupervisor.php:1276
-msgid "No servers available."
-msgstr ""
-
-#: ../../include/class/ConsoleSupervisor.php:1277
-msgid ""
-"There are no servers registered in this console. Please, check installation "
-"guide."
-msgstr ""
-
-#: ../../include/class/ConsoleSupervisor.php:1322
-#, php-format
-msgid "%s (%s) has crashed."
-msgstr ""
-
-#: ../../include/class/ConsoleSupervisor.php:1328
-#, php-format
-msgid "%s (%s) has crashed, please check log files."
-msgstr ""
-
-#: ../../include/class/ConsoleSupervisor.php:1335
-#, php-format
-msgid "%s (%s) is not running."
-msgstr ""
-
-#: ../../include/class/ConsoleSupervisor.php:1340
-#, php-format
-msgid ""
-"%s (%s) is not running. Please, check configuration file or remove this "
-"server from server list."
-msgstr ""
-
-#: ../../include/class/ConsoleSupervisor.php:1392
-msgid "No master servers found."
-msgstr ""
-
-#: ../../include/class/ConsoleSupervisor.php:1393
-msgid ""
-"At least one server must be defined to run as master. Please, check "
-"documentation."
-msgstr ""
-
-#: ../../include/class/ConsoleSupervisor.php:1448
-msgid "PHP safe mode is enabled. Some features may not work properly"
-msgstr ""
-
-#: ../../include/class/ConsoleSupervisor.php:1449
-msgid ""
-"To disable it, go to your PHP configuration file (php.ini) and put safe_mode "
-"= Off (Do not forget to restart apache process after changes)"
-msgstr ""
-
-#: ../../include/class/ConsoleSupervisor.php:1467
-#, php-format
-msgid "'%s' value in PHP configuration is not recommended"
-msgstr ""
-
-#: ../../include/class/ConsoleSupervisor.php:1471
-#, php-format
-msgid "Recommended value is %s"
-msgstr ""
-
-#: ../../include/class/ConsoleSupervisor.php:1472
-#: ../../include/class/ConsoleSupervisor.php:1496
-msgid "Unlimited"
-msgstr ""
-
-#: ../../include/class/ConsoleSupervisor.php:1473
-msgid ""
-"Please, change it on your PHP configuration file (php.ini) or contact with "
-"administrator (Do not forget to restart Apache process after)"
-msgstr ""
-
-#: ../../include/class/ConsoleSupervisor.php:1491
-#: ../../include/class/ConsoleSupervisor.php:1515
-#: ../../include/class/ConsoleSupervisor.php:1544
-#: ../../include/class/ConsoleSupervisor.php:1622
-#, php-format
-msgid "Not recommended '%s' value in PHP configuration"
-msgstr ""
-
-#: ../../include/class/ConsoleSupervisor.php:1495
-#: ../../include/class/ConsoleSupervisor.php:1519
-#: ../../include/class/ConsoleSupervisor.php:1548
-#: ../../include/class/ConsoleSupervisor.php:1626
-#, php-format
-msgid "Recommended value is: %s"
-msgstr ""
-
-#: ../../include/class/ConsoleSupervisor.php:1497
-#: ../../include/class/ConsoleSupervisor.php:1521
-#: ../../include/class/ConsoleSupervisor.php:1568
-msgid ""
-"Please, change it on your PHP configuration file (php.ini) or contact with "
-"administrator (Dont forget restart apache process after changes)"
-msgstr ""
-
-#: ../../include/class/ConsoleSupervisor.php:1520
-#: ../../include/class/ConsoleSupervisor.php:1549
-#, php-format
-msgid "%s or greater"
-msgstr ""
-
-#: ../../include/class/ConsoleSupervisor.php:1550
-#: ../../include/class/ConsoleSupervisor.php:1628
-msgid ""
-"Please, change it on your PHP configuration file (php.ini) or contact with "
-"administrator"
-msgstr ""
-
-#: ../../include/class/ConsoleSupervisor.php:1567
-msgid "Problems with disable_functions in php.ini"
-msgstr ""
-
-#: ../../include/class/ConsoleSupervisor.php:1568
-msgid ""
-"The variable disable_functions contains functions system() or exec() in PHP "
-"configuration file (php.ini)"
-msgstr ""
-
-#: ../../include/class/ConsoleSupervisor.php:1585
-msgid "PhantomJS is not installed"
-msgstr ""
-
-#: ../../include/class/ConsoleSupervisor.php:1586
-msgid ""
-"To be able to create images of the graphs for PDFs, please install the "
-"PhantomJS extension. For that, it is necessary to follow these steps:"
-msgstr ""
-
-#: ../../include/class/ConsoleSupervisor.php:1603
-msgid "PHP UPDATE REQUIRED"
-msgstr ""
-
-#: ../../include/class/ConsoleSupervisor.php:1604
-#: ../../general/php7_message.php:30
-msgid ""
-"For a correct operation of PandoraFMS, PHP must be updated to version 7.0 or "
-"higher."
-msgstr ""
-
-#: ../../include/class/ConsoleSupervisor.php:1604
-#: ../../general/php7_message.php:31
-msgid "Otherwise, functionalities will be lost."
-msgstr ""
-
-#: ../../include/class/ConsoleSupervisor.php:1604
-#: ../../general/php7_message.php:33
-msgid "Report download in PDF format"
-msgstr ""
-
-#: ../../include/class/ConsoleSupervisor.php:1604
-#: ../../general/php7_message.php:34
-msgid "Emails Sending"
-msgstr ""
-
-#: ../../include/class/ConsoleSupervisor.php:1604
-#: ../../general/php7_message.php:35
-msgid "Metaconsole Collections"
-msgstr ""
-
-#: ../../include/class/ConsoleSupervisor.php:1670
-msgid "Historical database not available"
-msgstr ""
-
-#: ../../include/class/ConsoleSupervisor.php:1671
-msgid ""
-"Historical database is enabled, though not accessible with the current "
-"configuration."
-msgstr ""
-
-#: ../../include/class/ConsoleSupervisor.php:1714
-msgid "Database maintenance problem"
-msgstr ""
-
-#: ../../include/class/ConsoleSupervisor.php:1716
-#, php-format
-msgid ""
-"Your database hasn't been through maintenance for 48hrs. Please, check "
-"documentation on how to perform this maintenance process on %s and enable it "
-"as soon as possible."
-msgstr ""
-
-#: ../../include/class/ConsoleSupervisor.php:1776
-msgid "Historical database maintenance problem."
-msgstr ""
-
-#: ../../include/class/ConsoleSupervisor.php:1778
-#, php-format
-msgid ""
-"Your historical database hasn't been through maintenance for 48hrs. Please, "
-"check documentation on how to perform this maintenance process on %s and "
-"enable it as soon as possible."
-msgstr ""
-
-#: ../../include/class/ConsoleSupervisor.php:1816
-msgid "Historical database MR mismatch"
-msgstr ""
-
-#: ../../include/class/ConsoleSupervisor.php:1817
-msgid ""
-"Your historical database is not using the same schema as the main DB. This "
-"could produce anomalies while storing historical data."
-msgstr ""
-
-#: ../../include/class/ConsoleSupervisor.php:1857
-msgid "Log collector cannot connect to ElasticSearch"
-msgstr ""
-
-#: ../../include/class/ConsoleSupervisor.php:1858
-msgid "ElasticSearch is not available using current configuration."
-msgstr ""
-
-#: ../../include/class/ConsoleSupervisor.php:1927
-msgid "Metaconsole DB is not available."
-msgstr ""
-
-#: ../../include/class/ConsoleSupervisor.php:1928
-msgid "Cannot connect with Metaconsole DB using current configuration."
-msgstr ""
-
-#: ../../include/class/ConsoleSupervisor.php:1956
-msgid "Scheduled downtime running."
-msgstr ""
-
-#: ../../include/class/ConsoleSupervisor.php:1957
-msgid ""
-"A scheduled downtime is running. Some monitoring data won't be available "
-"while downtime is taking place."
-msgstr ""
-
-#: ../../include/class/ConsoleSupervisor.php:2113
-msgid "Downtime scheduled soon."
-msgstr ""
-
-#: ../../include/class/ConsoleSupervisor.php:2115
-#, php-format
-msgid ""
-"A scheduled downtime is going to be executed from %s to %s. Some monitoring "
-"data won't be available while downtime is taking place."
-msgstr ""
-
-#: ../../include/class/ConsoleSupervisor.php:2145
-msgid "This instance is not registered in the Update manager section"
-msgstr ""
-
-#: ../../include/class/ConsoleSupervisor.php:2146
-msgid ""
-"Click <a class=\"bolder underline\" href=\"javascript: force_run_register();"
-"\"> here</a> to start the registration process"
-msgstr ""
-
-#: ../../include/class/ConsoleSupervisor.php:2178
-msgid "Default password for \"Admin\" user has not been changed"
-msgstr ""
-
-#: ../../include/class/ConsoleSupervisor.php:2179
-msgid ""
-"Please, change the default password since it is a commonly reported "
-"vulnerability."
-msgstr ""
-
-#: ../../include/class/ConsoleSupervisor.php:2214
-msgid "Default font doesn't exist"
-msgstr ""
-
-#: ../../include/class/ConsoleSupervisor.php:2215
-msgid ""
-"Your defined font doesn't exist or is not defined. Please, check font "
-"parameters in your config"
-msgstr ""
-
-#: ../../include/class/ConsoleSupervisor.php:2238
-msgid "Developer mode is enabled"
-msgstr ""
-
-#: ../../include/class/ConsoleSupervisor.php:2240
-#, php-format
-msgid ""
-"Your %s has the \"develop_bypass\" mode enabled. This is a developer mode "
-"and should be disabled in a production environment. This value is located in "
-"the main index.php file"
-msgstr ""
-
-#: ../../include/class/ConsoleSupervisor.php:2264
-msgid "Event storm protection is enabled."
-msgstr ""
-
-#: ../../include/class/ConsoleSupervisor.php:2265
-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:2291
-msgid "Failed to retrieve updates, please configure utility"
-msgstr ""
-
-#: ../../include/class/ConsoleSupervisor.php:2309
-#, php-format
-msgid "New %s Console update"
-msgstr ""
-
-#: ../../include/class/ConsoleSupervisor.php:2312
-msgid "There is a new update available. Please<a class=\"bolder\" href=\""
-msgstr ""
-
-#: ../../include/class/ConsoleSupervisor.php:2346
-msgid "Minor release/s available"
-msgstr ""
-
-#: ../../include/class/ConsoleSupervisor.php:2348
-#, php-format
-msgid ""
-"There is one or more minor releases available. <a id=\"aviable_updates\" "
-"target=\"blank\" href=\"%s\">.About minor release update</a>."
-msgstr ""
-
-#: ../../include/class/ConsoleSupervisor.php:2374
-msgid "DiscoveryConsoleTasks is not running properly"
-msgstr ""
-
-#: ../../include/class/ConsoleSupervisor.php:2376
-msgid "Discovery relies on an appropriate cron setup."
-msgstr ""
-
-#: ../../include/class/ConsoleSupervisor.php:2377
-msgid "Please, add the following line to your crontab file:"
-msgstr ""
-
-#: ../../include/class/ConsoleSupervisor.php:2390
-msgid "Last execution"
-msgstr ""
-
-#: ../../include/class/ConsoleSupervisor.php:2392
-msgid "Please, make sure process is not locked."
-msgstr ""
-
-#: ../../include/class/ConsoleSupervisor.php:2403
-msgid "DiscoveryConsoleTasks is not configured."
-msgstr ""
-
-#: ../../include/class/ConsoleSupervisor.php:2496
-#, php-format
-msgid "%s version misaligned with Console"
-msgstr ""
-
-#: ../../include/class/ConsoleSupervisor.php:2500
-#, php-format
-msgid ""
-"Server %s and this console have different versions. This might cause several "
-"malfunctions. Please, update this server."
-msgstr ""
-
-#: ../../include/class/ConsoleSupervisor.php:2552
-msgid "AllowOverride is disabled"
-msgstr ""
-
-#: ../../include/class/ConsoleSupervisor.php:2598
-msgid "Desynchronized operation on the node "
-msgstr ""
-
-#: ../../include/class/ConsoleSupervisor.php:2621
-msgid "Pandora FMS console log file changed location"
-msgstr ""
-
-#: ../../include/class/ConsoleSupervisor.php:2625
-#, php-format
-msgid ""
-"Pandora FMS console log file has been moved to new location %s/log. "
-"Currently you have an outdated and inoperative version of this file at %s. "
-"Please, consider deleting it."
-msgstr ""
-
-#: ../../include/class/ConsoleSupervisor.php:2660
-msgid "Pandora FMS audit log file changed location"
-msgstr ""
-
-#: ../../include/class/ConsoleSupervisor.php:2664
-#, php-format
-msgid ""
-"Pandora FMS audit log file has been moved to new location %s/log. Currently "
-"you have an outdated and inoperative version of this file at %s. Please, "
-"consider deleting it."
-msgstr ""
-
-#: ../../include/class/ConsoleSupervisor.php:2750
-#, php-format
-msgid "Node %s sync queue length exceeded, "
-msgstr ""
-
-#: ../../include/class/ConsoleSupervisor.php:2752
-#, php-format
-msgid ""
-"Synchronization queue lenght for node %s is %d items, this value should be 0 "
-"or lower than %d, please check the queue status."
-msgstr ""
-
-#: ../../include/class/ConsoleSupervisor.php:2805
-#, php-format
-msgid "Node %s sync queue failed, "
-msgstr ""
-
-#: ../../include/class/ConsoleSupervisor.php:2807
-#, php-format
-msgid ""
-"Node %s cannot process synchronization queue due %s, please check the queue "
-"status."
-msgstr ""
-
-#: ../../include/class/CalendarManager.class.php:161
-msgid "Alert calendar list"
-msgstr ""
-
-#: ../../include/class/CalendarManager.class.php:183
-msgid "Edit calendar"
-msgstr ""
-
-#: ../../include/class/CalendarManager.class.php:197
-msgid "Alert special days"
-msgstr ""
-
-#: ../../include/class/CalendarManager.class.php:272
-#: ../../include/class/CalendarManager.class.php:473
-#, php-format
-msgid "Calendar not found: %s"
-msgstr ""
-
-#: ../../include/class/CalendarManager.class.php:284
-msgid "Calendar successfully deleted"
-msgstr ""
-
-#: ../../include/class/CalendarManager.class.php:307
-#, php-format
-msgid "Special day not found: %s"
-msgstr ""
-
-#: ../../include/class/CalendarManager.class.php:319
-msgid "Special day successfully deleted"
-msgstr ""
-
-#: ../../include/class/CalendarManager.class.php:392
-msgid "Skipped dates: "
-msgstr ""
-
-#: ../../include/class/CalendarManager.class.php:430
-msgid "Success to upload iCalendar"
-msgstr ""
-
-#: ../../include/class/CalendarManager.class.php:431
-msgid "Fail to upload iCalendar"
-msgstr ""
-
-#: ../../include/class/CalendarManager.class.php:488
-#: ../../include/class/CalendarManager.class.php:841
-msgid "Failed to update"
-msgstr ""
-
-#: ../../include/class/CalendarManager.class.php:491
-#: ../../include/class/CalendarManager.class.php:844
-msgid "Failed to create"
-msgstr ""
-
-#: ../../include/class/CalendarManager.class.php:507
-msgid "Failed saving calendar: name exists"
-msgstr ""
-
-#: ../../include/class/CalendarManager.class.php:516
-msgid "Failed saving calendar: "
-msgstr ""
-
-#: ../../include/class/CalendarManager.class.php:523
-#: ../../include/class/CalendarManager.class.php:895
-#, php-format
-msgid "Error: %s"
-msgstr ""
-
-#: ../../include/class/CalendarManager.class.php:783
-#, php-format
-msgid "Special days not found: %s"
-msgstr ""
-
-#: ../../include/class/CalendarManager.class.php:826
-#, php-format
-msgid "SpecialDay not found: %s"
-msgstr ""
-
-#: ../../include/class/CalendarManager.class.php:879
-msgid "Failed saving calendar: already exists"
-msgstr ""
-
-#: ../../include/class/CalendarManager.class.php:888
-msgid "Failed saving special day: "
-msgstr ""
-
-#: ../../include/class/CalendarManager.class.php:956
-#, php-format
-msgid "Same as %s"
-msgstr ""
-
-#: ../../include/class/CalendarManager.class.php:958
-msgid "Templates not being fired"
-msgstr ""
-
-#: ../../include/class/WelcomeWindow.class.php:157
-msgid "Welcome to"
-msgstr ""
-
-#: ../../include/class/WelcomeWindow.class.php:158
-msgid "Do not show anymore"
-msgstr ""
-
-#: ../../include/class/WelcomeWindow.class.php:167
-msgid "Cancel Configuration Window"
-msgstr ""
-
-#: ../../include/class/WelcomeWindow.class.php:172
-msgid "Are you sure you want to cancel this tutorial?"
-msgstr ""
-
-#: ../../include/class/WelcomeWindow.class.php:428
-msgid "Please ensure mail configuration matches your needs"
-msgstr ""
-
-#: ../../include/class/WelcomeWindow.class.php:462
-msgid "Create an agent"
-msgstr ""
-
-#: ../../include/class/WelcomeWindow.class.php:487
-msgid "Create a module to check if an agent is online"
-msgstr ""
-
-#: ../../include/class/WelcomeWindow.class.php:512
-msgid "Be warned if something is wrong, create an alert on the module"
-msgstr ""
-
-#: ../../include/class/WelcomeWindow.class.php:537
-msgid "Discover hosts and devices in your network"
-msgstr ""
-
-#: ../../include/class/WelcomeWindow.class.php:565
-msgid "If something is not working as expected, look for this icon and report!"
-msgstr ""
-
-#: ../../include/class/WebServerModuleDebug.class.php:143
-msgid "Performing query. Please wait."
-msgstr ""
-
-#: ../../include/class/WebServerModuleDebug.class.php:174
-msgid "No results"
-msgstr ""
-
-#: ../../include/class/WebServerModuleDebug.class.php:197
-msgid "Error performing execution"
-msgstr ""
-
-#: ../../include/class/WebServerModuleDebug.class.php:229
-msgid "Please, wait for a first execution of module"
-msgstr ""
-
-#: ../../include/class/AgentWizard.class.php:448
-msgid "There are not defined Remote components for this performance."
-msgstr ""
-
-#: ../../include/class/AgentWizard.class.php:572
-msgid "SNMP Walk"
-msgstr ""
-
-#: ../../include/class/AgentWizard.class.php:577
-msgid "WMI Explorer"
-msgstr ""
-
-#: ../../include/class/AgentWizard.class.php:651
-msgid "namespace"
-msgstr ""
-
-#: ../../include/class/AgentWizard.class.php:821
-msgid "User authentication"
-msgstr ""
-
-#: ../../include/class/AgentWizard.class.php:850
-msgid "Password authentication"
-msgstr ""
-
-#: ../../include/class/AgentWizard.class.php:1003
-#, php-format
-msgid "The PEN (%s) is not registered."
-msgstr ""
-
-#: ../../include/class/AgentWizard.class.php:1070
-msgid "The SNMP Walk does not return anything with the received arguments."
-msgstr ""
-
-#: ../../include/class/AgentWizard.class.php:1123
-#, php-format
-msgid "The target host response with an error: %s"
-msgstr ""
-
-#: ../../include/class/AgentWizard.class.php:1173
-msgid "No selected modules"
-msgstr ""
-
-#: ../../include/class/AgentWizard.class.php:1210
-msgid "Module exists in policy"
-msgstr ""
-
-#: ../../include/class/AgentWizard.class.php:1220
-msgid "Module exists in agent"
-msgstr ""
-
-#: ../../include/class/AgentWizard.class.php:1227
-msgid "Module with the same name in the module creation list"
-msgstr ""
-
-#: ../../include/class/AgentWizard.class.php:1575
-#, php-format
-msgid "Module \"%s\" exits in this policy"
-msgstr ""
-
-#: ../../include/class/AgentWizard.class.php:1677
-#: ../../include/class/AgentWizard.class.php:2105
-#, php-format
-msgid "Module %s module_exec not configuration"
-msgstr ""
-
-#: ../../include/class/AgentWizard.class.php:1833
-#: ../../include/class/AgentWizard.class.php:2280
-#, php-format
-msgid "Module %s satellite execution not configuration"
-msgstr ""
-
-#: ../../include/class/AgentWizard.class.php:1925
-#, php-format
-msgid "Module \"%s\" problems insert in bbdd"
-msgstr ""
-
-#: ../../include/class/AgentWizard.class.php:1933
-#: ../../include/class/AgentWizard.class.php:2363
-msgid "Modules created"
-msgstr ""
-
-#: ../../include/class/AgentWizard.class.php:1963
-#, php-format
-msgid "Module \"%s\" exists in this agent"
-msgstr ""
-
-#: ../../include/class/AgentWizard.class.php:2554
-msgid "Select all filtered interfaces"
-msgstr ""
-
-#: ../../include/class/AgentWizard.class.php:2577
-msgid "OperStatus UP"
-msgstr ""
-
-#: ../../include/class/AgentWizard.class.php:2588
-msgid "AdminStatus UP"
-msgstr ""
-
-#: ../../include/class/AgentWizard.class.php:3274
-msgid "No information could be retrieved."
-msgstr ""
-
-#: ../../include/class/AgentWizard.class.php:3558
-msgid "Create modules"
-msgstr ""
-
-#: ../../include/class/AgentWizard.class.php:3867
-msgid "Add general monitoring for all selected interfaces"
-msgstr ""
-
-#: ../../include/class/AgentWizard.class.php:3888
-#: ../../include/class/AgentWizard.class.php:3889
-#: ../../include/class/AgentWizard.class.php:3908
-#: ../../include/class/AgentWizard.class.php:3909
-msgid "Modules selected"
-msgstr ""
-
-#: ../../include/class/AgentWizard.class.php:3977
-msgid "Module info"
-msgstr ""
-
-#: ../../include/class/AgentWizard.class.php:4006
-msgid "Current value"
-msgstr ""
-
-#: ../../include/class/AgentWizard.class.php:5492
-#, php-format
-msgid "The operation '%s' is not permitted. Review for remote components."
-msgstr ""
-
-#: ../../include/class/AgentWizard.class.php:5907
-msgid "Modules about to be created"
-msgstr ""
-
-#: ../../include/class/ExternalTools.class.php:185
-msgid "Changes successfully saved."
-msgstr ""
-
-#: ../../include/class/ExternalTools.class.php:186
-msgid "Changes not saved."
-msgstr ""
-
-#: ../../include/class/ExternalTools.class.php:233
-#: ../../include/class/ExternalTools.class.php:263
-#: ../../include/class/ExternalTools.class.php:293
-msgid "Play sound"
-msgstr ""
-
-#: ../../include/class/ExternalTools.class.php:313
-msgid "Traceroute path"
-msgstr ""
-
-#: ../../include/class/ExternalTools.class.php:316
-msgid "Ping path"
-msgstr ""
-
-#: ../../include/class/ExternalTools.class.php:319
-msgid "Nmap path"
-msgstr ""
-
-#: ../../include/class/ExternalTools.class.php:322
-msgid "Dig path"
-msgstr ""
-
-#: ../../include/class/ExternalTools.class.php:325
-msgid "Snmpget path"
-msgstr ""
-
-#: ../../include/class/ExternalTools.class.php:331
-msgid "Custom commands"
-msgstr ""
-
-#: ../../include/class/ExternalTools.class.php:342
-msgid "Add new custom command"
-msgstr ""
-
-#: ../../include/class/ExternalTools.class.php:354
-msgid "Adding `_address_` macro will use agent's IP when perform the execution"
-msgstr ""
-
-#: ../../include/class/ExternalTools.class.php:438
-msgid "Delete this custom command"
-msgstr ""
-
-#: ../../include/class/ExternalTools.class.php:486
-msgid "The agent doesn`t have an IP yet"
-msgstr ""
-
-#: ../../include/class/ExternalTools.class.php:508
-msgid "Traceroute"
-msgstr ""
-
-#: ../../include/class/ExternalTools.class.php:509
-msgid "Ping host & Latency"
-msgstr ""
-
-#: ../../include/class/ExternalTools.class.php:510
-msgid "SNMP Interface status"
-msgstr ""
-
-#: ../../include/class/ExternalTools.class.php:511
-msgid "Basic TCP Port Scan"
-msgstr ""
-
-#: ../../include/class/ExternalTools.class.php:512
-msgid "DiG/Whois Lookup"
-msgstr ""
-
-#: ../../include/class/ExternalTools.class.php:537
-msgid "Please select"
-msgstr ""
-
-#: ../../include/class/ExternalTools.class.php:542
-msgid "IP Adress"
-msgstr ""
-
-#: ../../include/class/ExternalTools.class.php:554
-msgid "SNMP Version"
-msgstr ""
-
-#: ../../include/class/ExternalTools.class.php:570
-msgid "SNMP Community"
-msgstr ""
-
-#: ../../include/class/ExternalTools.class.php:707
-msgid "Command not response"
-msgstr ""
-
-#: ../../include/class/ExternalTools.class.php:716
-msgid "The command failed and obtained the return code:"
-msgstr ""
-
-#: ../../include/class/ExternalTools.class.php:726
-msgid ""
-"Something went wrong while perform the execution. Please check the "
-"configuration."
-msgstr ""
-
-#: ../../include/class/ExternalTools.class.php:763
-msgid "SNMP information for "
-msgstr ""
-
-#: ../../include/class/ExternalTools.class.php:768
-#: ../../include/class/ExternalTools.class.php:780
-msgid "Target unreachable."
-msgstr ""
-
-#: ../../include/class/ExternalTools.class.php:771
-msgid "Uptime"
-msgstr ""
-
-#: ../../include/class/ExternalTools.class.php:783
-msgid "Device info"
-msgstr ""
-
-#: ../../include/class/ExternalTools.class.php:794
-msgid "Interface"
-msgstr ""
-
-#: ../../include/class/ExternalTools.class.php:825
-msgid "Domain and IP information for "
-msgstr ""
-
-#: ../../include/class/ExternalTools.class.php:830
-msgid "Dig executable does not exist."
-msgstr ""
-
-#: ../../include/class/ExternalTools.class.php:838
-msgid "Whois executable does not exist."
-msgstr ""
-
-#: ../../include/class/ExternalTools.class.php:849
-msgid "Traceroute executable does not exist."
-msgstr ""
-
-#: ../../include/class/ExternalTools.class.php:852
-#, php-format
-msgid "Traceroute to %s"
-msgstr ""
-
-#: ../../include/class/ExternalTools.class.php:860
-msgid "Ping executable does not exist."
-msgstr ""
-
-#: ../../include/class/ExternalTools.class.php:863
-#, php-format
-msgid "Ping to %s"
-msgstr ""
-
-#: ../../include/class/ExternalTools.class.php:871
-msgid "Nmap executable does not exist."
-msgstr ""
-
-#: ../../include/class/ExternalTools.class.php:874
-#, php-format
-msgid "Basic TCP Scan on %s"
-msgstr ""
-
-#: ../../include/class/ExternalTools.class.php:892
-#, php-format
-msgid "Performing %s execution on %s"
-msgstr ""
-
-#: ../../include/class/ExternalTools.class.php:894
-#, php-format
-msgid "Performing %s execution"
-msgstr ""
-
-#: ../../include/functions_reporting.php:370
-msgid " agents"
-msgstr ""
-
-#: ../../include/functions_reporting.php:380
-msgid " modules"
-msgstr ""
-
-#: ../../include/functions_reporting.php:972
-#: ../../include/functions_reporting.php:8031
-msgid "There are no SLAs defined"
-msgstr ""
-
-#: ../../include/functions_reporting.php:1047
-#: ../../include/functions_reporting.php:8409
-msgid "Inverse"
-msgstr ""
-
-#: ../../include/functions_reporting.php:1486
-msgid "Top N"
-msgstr ""
-
-#: ../../include/functions_reporting.php:1510
-#: ../../operation/snmpconsole/snmp_statistics.php:169
-#: ../../operation/snmpconsole/snmp_statistics.php:237
-#, php-format
-msgid "Top %d"
-msgstr ""
-
-#: ../../include/functions_reporting.php:1614
-msgid "Insuficient data"
-msgstr ""
-
-#: ../../include/functions_reporting.php:1865
-msgid "Event Report Group"
-msgstr ""
-
-#: ../../include/functions_reporting.php:1913
-msgid "Exclude "
-msgstr ""
-
-#: ../../include/functions_reporting.php:2161
-msgid "Event Report Module"
-msgstr ""
-
-#: ../../include/functions_reporting.php:2493
-msgid "Inventory Changes"
-msgstr ""
-
-#: ../../include/functions_reporting.php:2566
-msgid "No changes found."
-msgstr ""
-
-#: ../../include/functions_reporting.php:2793
-msgid "Agent/Modules"
-msgstr ""
-
-#: ../../include/functions_reporting.php:2894
-msgid "Exception - Everything"
-msgstr ""
-
-#: ../../include/functions_reporting.php:2900
-#, php-format
-msgid "Exception - Modules over or equal to %s"
-msgstr ""
-
-#: ../../include/functions_reporting.php:2903
-#, php-format
-msgid "Modules over or equal to %s"
-msgstr ""
-
-#: ../../include/functions_reporting.php:2908
-#, php-format
-msgid "Exception - Modules under or equal to %s"
-msgstr ""
-
-#: ../../include/functions_reporting.php:2911
-#, php-format
-msgid "Modules under or equal to %s"
-msgstr ""
-
-#: ../../include/functions_reporting.php:2916
-#, php-format
-msgid "Exception - Modules under %s"
-msgstr ""
-
-#: ../../include/functions_reporting.php:2919
-#, php-format
-msgid "Modules under %s"
-msgstr ""
-
-#: ../../include/functions_reporting.php:2924
-#, php-format
-msgid "Exception - Modules over %s"
-msgstr ""
-
-#: ../../include/functions_reporting.php:2927
-#, php-format
-msgid "Modules over %s"
-msgstr ""
-
-#: ../../include/functions_reporting.php:2932
-#, php-format
-msgid "Exception - Equal to %s"
-msgstr ""
-
-#: ../../include/functions_reporting.php:2935
-#, php-format
-msgid "Equal to %s"
-msgstr ""
-
-#: ../../include/functions_reporting.php:2940
-#, php-format
-msgid "Exception - Not equal to %s"
-msgstr ""
-
-#: ../../include/functions_reporting.php:2943
-#, php-format
-msgid "Not equal to %s"
-msgstr ""
-
-#: ../../include/functions_reporting.php:2947
-msgid "Exception - Modules at normal status"
-msgstr ""
-
-#: ../../include/functions_reporting.php:2948
-msgid "Modules at normal status"
-msgstr ""
-
-#: ../../include/functions_reporting.php:2952
-msgid "Exception - Modules at critical or warning status"
-msgstr ""
-
-#: ../../include/functions_reporting.php:2953
-msgid "Modules at critical or warning status"
-msgstr ""
-
-#: ../../include/functions_reporting.php:3172
-msgid "There are no Modules under those conditions."
-msgstr ""
-
-#: ../../include/functions_reporting.php:3176
-#, php-format
-msgid "There are no Modules over or equal to %s."
-msgstr ""
-
-#: ../../include/functions_reporting.php:3180
-#, php-format
-msgid "There are no Modules less or equal to %s."
-msgstr ""
-
-#: ../../include/functions_reporting.php:3184
-#, php-format
-msgid "There are no Modules less %s."
-msgstr ""
-
-#: ../../include/functions_reporting.php:3188
-#, php-format
-msgid "There are no Modules over %s."
-msgstr ""
-
-#: ../../include/functions_reporting.php:3192
-#, php-format
-msgid "There are no Modules equal to %s"
-msgstr ""
-
-#: ../../include/functions_reporting.php:3196
-#, php-format
-msgid "There are no Modules not equal to %s"
-msgstr ""
-
-#: ../../include/functions_reporting.php:3200
-msgid "There are no Modules normal status"
-msgstr ""
-
-#: ../../include/functions_reporting.php:3204
-msgid "There are no Modules at critial or warning status"
-msgstr ""
-
-#: ../../include/functions_reporting.php:3361
-msgid "Group Report"
-msgstr ""
-
-#: ../../include/functions_reporting.php:3541
-msgid "Event Report Agent"
-msgstr ""
-
-#: ../../include/functions_reporting.php:3905
-msgid "Database Serialized"
-msgstr ""
-
-#: ../../include/functions_reporting.php:4086
-msgid "Last Value"
-msgstr ""
-
-#: ../../include/functions_reporting.php:4390
-msgid "Network interfaces report"
-msgstr ""
-
-#: ../../include/functions_reporting.php:4493
-msgid "The group has no agents or none of the agents has any network interface"
-msgstr ""
-
-#: ../../include/functions_reporting.php:4514
-msgid "bytes/s"
-msgstr ""
-
-#: ../../include/functions_reporting.php:4634
-msgid "Alert Report Group"
-msgstr ""
-
-#: ../../include/functions_reporting.php:4721
-#: ../../include/functions_reporting.php:4738
-#: ../../include/functions_reporting.php:4755
-msgid "Not triggered"
-msgstr ""
-
-#: ../../include/functions_reporting.php:4814
-msgid "Alert Report Agent"
-msgstr ""
-
-#: ../../include/functions_reporting.php:4981
-msgid "Alert Report Module"
-msgstr ""
-
-#: ../../include/functions_reporting.php:5181
-msgid "SQL Graph Vertical Bars"
-msgstr ""
-
-#: ../../include/functions_reporting.php:5185
-msgid "SQL Graph Horizontal Bars"
-msgstr ""
-
-#: ../../include/functions_reporting.php:5189
-msgid "SQL Graph Pie"
-msgstr ""
-
-#: ../../include/functions_reporting.php:5273
-msgid "Monitor Report"
-msgstr ""
-
-#: ../../include/functions_reporting.php:5412
-msgid "Netflow Area"
-msgstr ""
-
-#: ../../include/functions_reporting.php:5416
-msgid "Netflow Summary"
-msgstr ""
-
-#: ../../include/functions_reporting.php:5420
-msgid "Netflow Data"
-msgstr ""
-
-#: ../../include/functions_reporting.php:5424
-msgid "Unknown report"
-msgstr ""
-
-#: ../../include/functions_reporting.php:5501
-msgid "Prediction Date"
-msgstr ""
-
-#: ../../include/functions_reporting.php:5606
-msgid "Projection Graph"
-msgstr ""
-
-#: ../../include/functions_reporting.php:5917
-msgid "AVG. Value"
-msgstr ""
-
-#: ../../include/functions_reporting.php:6324
-msgid "SQL"
-msgstr ""
-
-#: ../../include/functions_reporting.php:6402
-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:7814
-#: ../../include/functions_reporting.php:8532
-msgid "No Address"
-msgstr ""
-
-#: ../../include/functions_reporting.php:8831
-msgid ""
-"The monitor have no data in this range of dates or monitor type is not "
-"numeric"
-msgstr ""
-
-#: ../../include/functions_reporting.php:8849
-msgid "The monitor type is not numeric"
-msgstr ""
-
-#: ../../include/functions_reporting.php:9214
-msgid "Minimum"
-msgstr ""
-
-#: ../../include/functions_reporting.php:9218
-msgid "Maximum"
-msgstr ""
-
-#: ../../include/functions_reporting.php:9223
-msgid "Rate"
-msgstr ""
-
-#: ../../include/functions_reporting.php:9322
-msgid "Automatic combined graph"
-msgstr ""
-
-#: ../../include/functions_reporting.php:10151
-msgid "Maximum of events shown"
-msgstr ""
-
-#: ../../include/functions_reporting.php:10727
-#: ../../include/functions_reporting.php:10751
-msgid "Server health"
-msgstr ""
-
-#: ../../include/functions_reporting.php:10727
-#, php-format
-msgid "%d Downed servers"
-msgstr ""
-
-#: ../../include/functions_reporting.php:10732
-#: ../../include/functions_reporting.php:10755
-msgid "Monitor health"
-msgstr ""
-
-#: ../../include/functions_reporting.php:10732
-#, php-format
-msgid "%d Not Normal monitors"
-msgstr ""
-
-#: ../../include/functions_reporting.php:10732
-#: ../../include/functions_reporting.php:10756
-msgid "of monitors up"
-msgstr ""
-
-#: ../../include/functions_reporting.php:10737
-#: ../../include/functions_reporting.php:10759
-msgid "Module sanity"
-msgstr ""
-
-#: ../../include/functions_reporting.php:10737
-#, php-format
-msgid "%d Not inited monitors"
-msgstr ""
-
-#: ../../include/functions_reporting.php:10737
-#: ../../include/functions_reporting.php:10760
-msgid "of total modules inited"
-msgstr ""
-
-#: ../../include/functions_reporting.php:10742
-#: ../../include/functions_reporting.php:11836
-#: ../../include/functions_reporting.php:11846
-#, php-format
-msgid "%d Fired alerts"
-msgstr ""
-
-#: ../../include/functions_reporting.php:10742
-#: ../../include/functions_reporting.php:10764
-msgid "of defined alerts not fired"
-msgstr ""
-
-#: ../../include/functions_reporting.php:10803
-msgid "Defined alerts"
-msgstr ""
-
-#: ../../include/functions_reporting.php:10836
-msgid "Defined and fired alerts"
-msgstr ""
-
-#: ../../include/functions_reporting.php:10879
-#: ../../operation/events/sound_events.php:142
-msgid "Monitor critical"
-msgstr ""
-
-#: ../../include/functions_reporting.php:10883
-#: ../../operation/events/sound_events.php:160
-msgid "Monitor warning"
-msgstr ""
-
-#: ../../include/functions_reporting.php:10890
-msgid "Monitor normal"
-msgstr ""
-
-#: ../../include/functions_reporting.php:10894
-#: ../../operation/events/sound_events.php:151
-msgid "Monitor unknown"
-msgstr ""
-
-#: ../../include/functions_reporting.php:10901
-msgid "Monitor not init"
-msgstr ""
-
-#: ../../include/functions_reporting.php:10921
-#: ../../include/functions_reporting.php:10927
-msgid "Monitors by status"
-msgstr ""
-
-#: ../../include/functions_reporting.php:11015
-msgid "Defined users"
-msgstr ""
-
-#: ../../include/functions_reporting.php:11693
-msgid "Agent without data"
-msgstr ""
-
-#: ../../include/functions_reporting.php:11822
-#: ../../include/functions_reporting.php:11831
-#, php-format
-msgid "%d Total modules"
-msgstr ""
-
-#: ../../include/functions_reporting.php:11823
-#, php-format
-msgid "%d Modules in normal status"
-msgstr ""
-
-#: ../../include/functions_reporting.php:11824
-#, php-format
-msgid "%d Modules in critical status"
-msgstr ""
-
-#: ../../include/functions_reporting.php:11825
-#, php-format
-msgid "%d Modules in warning status"
-msgstr ""
-
-#: ../../include/functions_reporting.php:11826
-#, php-format
-msgid "%d Modules in unknown status"
-msgstr ""
-
-#: ../../include/functions_reporting.php:11827
-#, php-format
-msgid "%d Modules in not init status"
-msgstr ""
-
-#: ../../include/functions_reporting.php:11832
-#, php-format
-msgid "%d Normal modules"
-msgstr ""
-
-#: ../../include/functions_reporting.php:11833
-#, php-format
-msgid "%d Critical modules"
-msgstr ""
-
-#: ../../include/functions_reporting.php:11834
-#, php-format
-msgid "%d Warning modules"
-msgstr ""
-
-#: ../../include/functions_reporting.php:11835
-#, php-format
-msgid "%d Unknown modules"
-msgstr ""
-
-#: ../../include/functions_reporting.php:11840
-#, php-format
-msgid "%d Total agents"
-msgstr ""
-
-#: ../../include/functions_reporting.php:11841
-#, php-format
-msgid "%d Normal agents"
-msgstr ""
-
-#: ../../include/functions_reporting.php:11842
-#, php-format
-msgid "%d Critical agents"
-msgstr ""
-
-#: ../../include/functions_reporting.php:11843
-#, php-format
-msgid "%d Warning agents"
-msgstr ""
-
-#: ../../include/functions_reporting.php:11844
-#, php-format
-msgid "%d Unknown agents"
-msgstr ""
-
-#: ../../include/functions_reporting.php:11845
-#, php-format
-msgid "%d not init agents"
-msgstr ""
-
-#: ../../include/functions_reporting.php:13273
-msgid "Total running modules"
-msgstr ""
-
-#: ../../include/functions_reporting.php:13276
-#: ../../include/functions_reporting.php:13291
-#: ../../include/functions_reporting.php:13303
-#: ../../include/functions_reporting.php:13321
-#: ../../include/functions_reporting.php:13333
-#: ../../include/functions_reporting.php:13345
-#: ../../include/functions_reporting.php:13357
-msgid "Ratio"
-msgstr ""
-
-#: ../../include/functions_reporting.php:13276
-#: ../../include/functions_reporting.php:13291
-#: ../../include/functions_reporting.php:13303
-#: ../../include/functions_reporting.php:13321
-#: ../../include/functions_reporting.php:13333
-#: ../../include/functions_reporting.php:13345
-#: ../../include/functions_reporting.php:13357
-msgid "Modules by second"
-msgstr ""
-
-#: ../../include/functions_reporting.php:13288
-msgid "Local modules"
-msgstr ""
-
-#: ../../include/functions_reporting.php:13298
-msgid "Network modules"
-msgstr ""
-
-#: ../../include/functions_reporting.php:13317
-msgid "Plugin modules"
-msgstr ""
-
-#: ../../include/functions_reporting.php:13329
-msgid "Prediction modules"
-msgstr ""
-
-#: ../../include/functions_reporting.php:13341
-msgid "WMI modules"
-msgstr ""
-
-#: ../../include/functions_reporting.php:13353
-msgid "Web modules"
-msgstr ""
-
-#: ../../include/functions_reporting.php:13391
-#: ../../include/lib/Dashboard/Widgets/tactical.php:274
-msgid "Server performance"
-msgstr ""
-
-#: ../../include/functions_reporting.php:13510
-msgid "Weekly:"
-msgstr ""
-
-#: ../../include/functions_reporting.php:13552
-msgid "Monthly:"
-msgstr ""
-
-#: ../../include/functions_reporting.php:13553
-msgid "From day"
-msgstr ""
-
-#: ../../include/functions_reporting.php:13554
-msgid "To day"
-msgstr ""
-
-#: ../../include/functions_reporting.php:14088
-msgid "Module Histogram Graph"
-msgstr ""
-
-#: ../../include/functions_reporting.php:14464
-#: ../../include/functions_groups.php:139
-#: ../../operation/search_results.php:132
-msgid "Reports"
-msgstr ""
-
-#: ../../include/functions_reporting.php:14467
-msgid "Greetings"
-msgstr ""
-
-#: ../../include/functions_reporting.php:14469
-msgid "Attached to this email there's a PDF file of the"
-msgstr ""
-
-#: ../../include/functions_reporting.php:14470
-msgid "report"
-msgstr ""
-
-#: ../../include/functions_reporting.php:14475
-msgid "Thanks for your time."
-msgstr ""
-
-#: ../../include/functions_reporting.php:14477
-msgid "Best regards, Pandora FMS"
-msgstr ""
-
-#: ../../include/functions_reporting.php:14479
+#: ../../general/noaccess.php:135
+#: ../../enterprise/meta/general/noaccess.php:135
 msgid ""
-"This is an automatically generated email from Pandora FMS, please do not "
-"reply."
-msgstr ""
-
-#: ../../include/functions_filemanager.php:177
-#: ../../include/functions_filemanager.php:225
-#: ../../include/functions_filemanager.php:277
-#: ../../include/functions_filemanager.php:370
-msgid "Security error"
+"Access to this page is restricted to authorized users only, please contact "
+"system administrator if you need assistance."
 msgstr ""
 
-#: ../../include/functions_filemanager.php:194
+#: ../../general/noaccess.php:137
+#: ../../enterprise/meta/general/noaccess.php:137
 #, php-format
-msgid "Issue setting umask: %s"
-msgstr ""
-
-#: ../../include/functions_filemanager.php:199
-#: ../../include/functions_filemanager.php:231
-msgid "Upload correct"
-msgstr ""
-
-#: ../../include/functions_filemanager.php:204
-msgid "Upload error"
-msgstr ""
-
-#: ../../include/functions_filemanager.php:228
-msgid "It was impossible to uncompress your file"
-msgstr ""
-
-#: ../../include/functions_filemanager.php:244
 msgid ""
-"File size seems to be too large. Please check your php.ini configuration or "
-"contact with the administrator"
-msgstr ""
-
-#: ../../include/functions_filemanager.php:290
-msgid "File created correctly"
-msgstr ""
-
-#: ../../include/functions_filemanager.php:293
-msgid "Error creating file"
-msgstr ""
-
-#: ../../include/functions_filemanager.php:300
-#: ../../include/functions_filemanager.php:350
-msgid "Error creating file with empty name"
-msgstr ""
-
-#: ../../include/functions_filemanager.php:326
-msgid "Security error."
-msgstr ""
-
-#: ../../include/functions_filemanager.php:341
-msgid "Directory created"
-msgstr ""
-
-#: ../../include/functions_filemanager.php:344
-msgid "Something gone wrong creating directory"
-msgstr ""
-
-#: ../../include/functions_filemanager.php:566
-#: ../../include/functions_filemanager.php:802
-msgid "Create a Directory"
-msgstr ""
-
-#: ../../include/functions_filemanager.php:570
-#: ../../include/functions_filemanager.php:813
-#: ../../include/functions_filemanager.php:816
-msgid "Create a Text"
-msgstr ""
-
-#: ../../include/functions_filemanager.php:574
-#: ../../include/functions_filemanager.php:827
-#: ../../include/functions_filemanager.php:830
-msgid "Upload Files"
-msgstr ""
-
-#: ../../include/functions_filemanager.php:605
-#, php-format
-msgid "Directory %s doesn't exist!"
-msgstr ""
-
-#: ../../include/functions_filemanager.php:650
-msgid "Parent directory"
-msgstr ""
-
-#: ../../include/functions_filemanager.php:664
-msgid "Directory"
-msgstr ""
-
-#: ../../include/functions_filemanager.php:672
-msgid "Compressed file"
-msgstr ""
-
-#: ../../include/functions_filemanager.php:676
-#: ../../include/functions_filemanager.php:683
-msgid "Text file"
-msgstr ""
-
-#: ../../include/functions_filemanager.php:716
-msgid "This file could be executed by any user"
-msgstr ""
-
-#: ../../include/functions_filemanager.php:717
-msgid "Make sure it can't perform dangerous tasks"
-msgstr ""
-
-#: ../../include/functions_filemanager.php:785
-msgid "No files or directories to show."
-msgstr ""
-
-#: ../../include/functions_filemanager.php:799
-#: ../../include/functions_filemanager.php:854
-msgid "Create directory"
-msgstr ""
-
-#: ../../include/functions_filemanager.php:840
-msgid "The zip upload in this dir, easy to upload multiple files."
-msgstr ""
-
-#: ../../include/functions_filemanager.php:840
-msgid "Decompress"
-msgstr ""
-
-#: ../../include/functions_filemanager.php:840
-msgid "Go"
-msgstr ""
-
-#: ../../include/functions_filemanager.php:866
-msgid "Create text"
-msgstr ""
-
-#: ../../include/functions_filemanager.php:878
-msgid "Upload file/s"
-msgstr ""
-
-#: ../../include/functions_filemanager.php:887
-msgid "The directory is read-only"
-msgstr ""
-
-#: ../../include/functions_tags.php:712
-msgid "Click here to open a popup window with URL tag"
-msgstr ""
-
-#: ../../include/lib/Dashboard/Manager.php:599
-#, php-format
-msgid "Copy of %s"
-msgstr ""
-
-#: ../../include/lib/Dashboard/Manager.php:988
-msgid "Error create or update dashboard"
-msgstr ""
-
-#: ../../include/lib/Dashboard/Manager.php:1461
-msgid "Icon image dashboard"
-msgstr ""
-
-#: ../../include/lib/Dashboard/Widget.php:450
-#: ../../include/lib/Dashboard/Widgets/maps_made_by_user.php:227
-#: ../../include/lib/Dashboard/Widgets/maps_made_by_user.php:311
-#: ../../include/lib/Dashboard/Widgets/reports.php:274
-#, php-format
-msgid "Failed to connect to node %d"
-msgstr ""
-
-#: ../../include/lib/Dashboard/Widget.php:465
-#: ../../include/lib/Dashboard/Widgets/agent_module.php:600
-msgid "Please configure this widget before usage"
-msgstr ""
-
-#: ../../include/lib/Dashboard/Widget.php:473
-msgid "Widget cannot be loaded"
-msgstr ""
-
-#: ../../include/lib/Dashboard/Widget.php:477
-msgid "Please, configure the widget again to recover it"
-msgstr ""
-
-#: ../../include/lib/Dashboard/Widget.php:591
-msgid "This metaconsole"
-msgstr ""
-
-#: ../../include/lib/Dashboard/Widgets/groups_status.php:158
-#: ../../include/lib/Dashboard/Widgets/groups_status.php:481
-msgid "General group status"
-msgstr ""
-
-#: ../../include/lib/Dashboard/Widgets/groups_status.php:435
-msgid "Not agents in this group"
-msgstr ""
-
-#: ../../include/lib/Dashboard/Widgets/system_group_status.php:158
-#: ../../include/lib/Dashboard/Widgets/system_group_status.php:622
-msgid "Groups status"
-msgstr ""
-
-#: ../../include/lib/Dashboard/Widgets/system_group_status.php:314
-msgid "Alert Fired"
-msgstr ""
-
-#: ../../include/lib/Dashboard/Widgets/system_group_status.php:522
-msgid "Modules in normal status"
-msgstr ""
-
-#: ../../include/lib/Dashboard/Widgets/system_group_status.php:538
-msgid "Modules in warning status"
-msgstr ""
-
-#: ../../include/lib/Dashboard/Widgets/system_group_status.php:555
-msgid "Modules in critical status"
-msgstr ""
-
-#: ../../include/lib/Dashboard/Widgets/system_group_status.php:601
-msgid "No modules in selected groups"
-msgstr ""
-
-#: ../../include/lib/Dashboard/Widgets/sla_percent.php:174
-#: ../../include/lib/Dashboard/Widgets/sla_percent.php:482
-msgid "SLA percentage"
-msgstr ""
-
-#: ../../include/lib/Dashboard/Widgets/sla_percent.php:344
-#: ../../include/lib/Dashboard/Widgets/module_icon.php:408
-#: ../../include/lib/Dashboard/Widgets/module_value.php:325
-msgid "Text size of value in px"
-msgstr ""
-
-#: ../../include/lib/Dashboard/Widgets/sla_percent.php:356
-#: ../../include/lib/Dashboard/Widgets/module_icon.php:420
-#: ../../include/lib/Dashboard/Widgets/module_value.php:337
-#: ../../include/lib/Dashboard/Widgets/module_table_value.php:301
-#: ../../include/lib/Dashboard/Widgets/graph_module_histogram.php:335
-#: ../../include/lib/Dashboard/Widgets/module_status.php:398
-msgid "Text size of label in px"
-msgstr ""
-
-#: ../../include/lib/Dashboard/Widgets/sla_percent.php:413
-#: ../../include/lib/Dashboard/Widgets/sla_percent.php:424
-#: ../../include/lib/Dashboard/Widgets/events_list.php:517
-#: ../../include/lib/Dashboard/Widgets/agent_module.php:625
-msgid "You don't have access"
-msgstr ""
-
-#: ../../include/lib/Dashboard/Widgets/post.php:158
-#: ../../include/lib/Dashboard/Widgets/post.php:276
-msgid "Panel with a message"
-msgstr ""
-
-#: ../../include/lib/Dashboard/Widgets/service_view.php:190
-msgid "Service View"
-msgstr ""
-
-#: ../../include/lib/Dashboard/Widgets/service_view.php:246
-msgid "Tree"
-msgstr ""
-
-#: ../../include/lib/Dashboard/Widgets/service_view.php:247
-msgid "Table"
-msgstr ""
-
-#: ../../include/lib/Dashboard/Widgets/service_view.php:298
-#: ../../include/lib/Dashboard/Widgets/service_map.php:347
-msgid "The user doesn't have permission to read agents"
-msgstr ""
-
-#: ../../include/lib/Dashboard/Widgets/service_view.php:456
-msgid "Services view"
-msgstr ""
-
-#: ../../include/lib/Dashboard/Widgets/maps_status.php:158
-#: ../../include/lib/Dashboard/Widgets/maps_status.php:388
-msgid "General visual maps report"
-msgstr ""
-
-#: ../../include/lib/Dashboard/Widgets/maps_status.php:263
-msgid "Maps"
-msgstr ""
-
-#: ../../include/lib/Dashboard/Widgets/example.php:158
-#: ../../include/lib/Dashboard/Widgets/example.php:277
-#, php-format
-msgid "Welcome message to %s"
+"Please know that all attempts to access this page are recorded in security "
+"logs of %s System Database"
 msgstr ""
 
-#: ../../include/lib/Dashboard/Widgets/example.php:245
 #: ../../general/login_help_dialog.php:39
+#: ../../include/lib/Dashboard/Widgets/example.php:245
 #, php-format
 msgid "Welcome to %s"
 msgstr ""
 
-#: ../../include/lib/Dashboard/Widgets/example.php:249
-msgid "This is an example of a dashboard widget. A widget may contain elements"
-msgstr ""
-
-#: ../../include/lib/Dashboard/Widgets/example.php:250
-msgid ""
-"To add more elements, click on \"<em>Add widgets</em>\" on the top of this "
-"page."
-msgstr ""
-
-#: ../../include/lib/Dashboard/Widgets/example.php:251
-#: ../../include/lib/Dashboard/Widgets/example.php:253
-msgid ""
-"To delete this message, click on the delete button on top right corner of "
-"this element."
-msgstr ""
-
-#: ../../include/lib/Dashboard/Widgets/example.php:252
-msgid ""
-"To do so, just click on the title and drag and drop it to the desired place."
-msgstr ""
-
-#: ../../include/lib/Dashboard/Widgets/example.php:254
-#, php-format
-msgid "Thanks for using %s."
-msgstr ""
-
-#: ../../include/lib/Dashboard/Widgets/monitor_health.php:158
-#: ../../include/lib/Dashboard/Widgets/monitor_health.php:337
-msgid "Global health info"
-msgstr ""
-
-#: ../../include/lib/Dashboard/Widgets/network_map.php:172
-#: ../../include/lib/Dashboard/Widgets/network_map.php:478
-#: ../../operation/menu.php:162
-msgid "Network map"
-msgstr ""
-
-#: ../../include/lib/Dashboard/Widgets/network_map.php:258
-msgid "It is recommended to have only one such widget in the control panel."
-msgstr ""
-
-#: ../../include/lib/Dashboard/Widgets/network_map.php:323
-#: ../../operation/gis_maps/render_view.php:175
-msgid "Map"
-msgstr ""
-
-#: ../../include/lib/Dashboard/Widgets/network_map.php:335
-msgid "Introduce x-axis data. Right=positive Left=negative"
-msgstr ""
-
-#: ../../include/lib/Dashboard/Widgets/network_map.php:339
-msgid "X offset"
-msgstr ""
-
-#: ../../include/lib/Dashboard/Widgets/network_map.php:350
-msgid "Introduce Y-axis data. Top=positive Bottom=negative"
-msgstr ""
-
-#: ../../include/lib/Dashboard/Widgets/network_map.php:354
-msgid "Y offset"
-msgstr ""
-
-#: ../../include/lib/Dashboard/Widgets/network_map.php:378
-msgid "Zoom level"
-msgstr ""
-
-#: ../../include/lib/Dashboard/Widgets/alerts_fired.php:162
-#: ../../include/lib/Dashboard/Widgets/alerts_fired.php:360
-msgid "Triggered alerts report"
-msgstr ""
-
-#: ../../include/lib/Dashboard/Widgets/alerts_fired.php:333
-msgid "Not alert fired"
-msgstr ""
-
-#: ../../include/lib/Dashboard/Widgets/alerts_fired.php:342
-#: ../../include/lib/Dashboard/Widgets/events_list.php:510
-msgid "You must select some group"
-msgstr ""
-
-#: ../../include/lib/Dashboard/Widgets/events_list.php:175
-#: ../../include/lib/Dashboard/Widgets/events_list.php:793
-msgid "List of latest events"
-msgstr ""
-
-#: ../../include/lib/Dashboard/Widgets/events_list.php:294
-msgid "Custom filters"
-msgstr ""
-
-#: ../../include/lib/Dashboard/Widgets/events_list.php:359
-msgid "Limit"
-msgstr ""
-
-#: ../../include/lib/Dashboard/Widgets/events_list.php:372
-#: ../../include/functions_events.php:3335
-#: ../../include/functions_events.php:3341
-#: ../../include/functions_events.php:3363
-msgid "All event"
-msgstr ""
-
-#: ../../include/lib/Dashboard/Widgets/events_list.php:373
-#: ../../include/functions_events.php:3337
-#: ../../include/functions_events.php:3371
-msgid "Only validated"
-msgstr ""
-
-#: ../../include/lib/Dashboard/Widgets/events_list.php:374
-msgid "Only pending"
-msgstr ""
-
-#: ../../include/lib/Dashboard/Widgets/events_list.php:775
-msgid "There are no events matching selected search filters"
-msgstr ""
-
-#: ../../include/lib/Dashboard/Widgets/wux_transaction_stats.php:172
-#: ../../include/lib/Dashboard/Widgets/wux_transaction_stats.php:378
-msgid "WUX transaction stats"
-msgstr ""
-
-#: ../../include/lib/Dashboard/Widgets/wux_transaction_stats.php:270
-#: ../../include/lib/Dashboard/Widgets/wux_transaction.php:259
-msgid "Wux transaction"
-msgstr ""
-
-#: ../../include/lib/Dashboard/Widgets/wux_transaction_stats.php:288
-msgid "View all statistics"
-msgstr ""
-
-#: ../../include/lib/Dashboard/Widgets/module_icon.php:178
-#: ../../include/lib/Dashboard/Widgets/module_icon.php:537
-msgid "Icon and module value"
-msgstr ""
-
-#: ../../include/lib/Dashboard/Widgets/module_icon.php:432
-#: ../../include/lib/Dashboard/Widgets/module_status.php:410
-msgid "Size of icon"
-msgstr ""
-
-#: ../../include/lib/Dashboard/Widgets/url.php:158
-#: ../../include/lib/Dashboard/Widgets/url.php:286
-msgid "URL content"
-msgstr ""
-
-#: ../../include/lib/Dashboard/Widgets/url.php:263
-msgid "Please, configure this widget before use"
-msgstr ""
-
-#: ../../include/lib/Dashboard/Widgets/module_value.php:173
-#: ../../include/lib/Dashboard/Widgets/module_value.php:433
-msgid "Module value"
-msgstr ""
-
-#: ../../include/lib/Dashboard/Widgets/wux_transaction.php:169
-#: ../../include/lib/Dashboard/Widgets/wux_transaction.php:418
-msgid "Agent WUX transaction"
-msgstr ""
-
-#: ../../include/lib/Dashboard/Widgets/wux_transaction.php:320
-msgid "No wux transaction selected."
-msgstr ""
-
-#: ../../include/lib/Dashboard/Widgets/wux_transaction.php:370
-#: ../../include/lib/Dashboard/Widgets/wux_transaction.php:375
-msgid "Global status"
-msgstr ""
-
-#: ../../include/lib/Dashboard/Widgets/wux_transaction.php:398
-msgid "Phase modules not found"
-msgstr ""
-
-#: ../../include/lib/Dashboard/Widgets/top_n_events_by_module.php:163
-#: ../../include/lib/Dashboard/Widgets/top_n_events_by_module.php:541
-msgid "Top N events by module"
-msgstr ""
-
-#: ../../include/lib/Dashboard/Widgets/top_n_events_by_module.php:258
-#: ../../include/lib/Dashboard/Widgets/top_n_events_by_group.php:258
-msgid "Amount to show"
-msgstr ""
-
-#: ../../include/lib/Dashboard/Widgets/top_n_events_by_module.php:318
-#: ../../include/lib/Dashboard/Widgets/top_n_events_by_group.php:318
-msgid "No legend"
-msgstr ""
-
-#: ../../include/lib/Dashboard/Widgets/top_n_events_by_module.php:322
-#: ../../include/lib/Dashboard/Widgets/top_n_events_by_group.php:322
-msgid "Legend Position"
-msgstr ""
-
-#: ../../include/lib/Dashboard/Widgets/top_n_events_by_module.php:373
-#: ../../include/lib/Dashboard/Widgets/top_n_events_by_group.php:375
-msgid "Please select one or more groups."
-msgstr ""
-
-#: ../../include/lib/Dashboard/Widgets/top_n_events_by_module.php:427
-#: ../../include/lib/Dashboard/Widgets/top_n_events_by_group.php:423
-msgid "There is not data to show."
-msgstr ""
-
-#: ../../include/lib/Dashboard/Widgets/module_table_value.php:175
-msgid "Show module value in a table"
-msgstr ""
-
-#: ../../include/lib/Dashboard/Widgets/module_table_value.php:312
-msgid "Carriage Return"
-msgstr ""
-
-#: ../../include/lib/Dashboard/Widgets/module_table_value.php:313
-msgid "Vertical Bar"
-msgstr ""
-
-#: ../../include/lib/Dashboard/Widgets/module_table_value.php:314
-msgid "Semicolon"
-msgstr ""
-
-#: ../../include/lib/Dashboard/Widgets/module_table_value.php:315
-msgid "Colon"
-msgstr ""
-
-#: ../../include/lib/Dashboard/Widgets/module_table_value.php:316
-msgid "Commas"
-msgstr ""
-
-#: ../../include/lib/Dashboard/Widgets/module_table_value.php:317
-msgid "Blank"
-msgstr ""
-
-#: ../../include/lib/Dashboard/Widgets/module_table_value.php:321
-msgid "Data separator"
-msgstr ""
-
-#: ../../include/lib/Dashboard/Widgets/module_table_value.php:397
-msgid "Module in a table"
-msgstr ""
-
-#: ../../include/lib/Dashboard/Widgets/graph_module_histogram.php:175
-#: ../../include/lib/Dashboard/Widgets/graph_module_histogram.php:431
-msgid "Module histogram"
-msgstr ""
-
-#: ../../include/lib/Dashboard/Widgets/service_map.php:192
-msgid "Service Map"
-msgstr ""
-
-#: ../../include/lib/Dashboard/Widgets/service_map.php:280
-msgid ""
-"ZOOM functionality is only available when there is only one such widget in "
-"the dashboard"
-msgstr ""
-
-#: ../../include/lib/Dashboard/Widgets/service_map.php:358
-msgid "Missing Service id"
-msgstr ""
-
-#: ../../include/lib/Dashboard/Widgets/service_map.php:449
-msgid "Service map"
-msgstr ""
-
-#: ../../include/lib/Dashboard/Widgets/agent_module.php:173
-#: ../../include/lib/Dashboard/Widgets/agent_module.php:788
-msgid "Agent/Module View"
-msgstr ""
-
-#: ../../include/lib/Dashboard/Widgets/agent_module.php:246
-#: ../../include/lib/Dashboard/Widgets/tree_view.php:439
-msgid "Filter modules"
-msgstr ""
-
-#: ../../include/lib/Dashboard/Widgets/custom_graph.php:168
-#: ../../include/lib/Dashboard/Widgets/custom_graph.php:521
-msgid "Defined custom graph"
-msgstr ""
-
-#: ../../include/lib/Dashboard/Widgets/custom_graph.php:294
-msgid "This graph has been deleted."
-msgstr ""
-
-#: ../../include/lib/Dashboard/Widgets/custom_graph.php:321
-#: ../../operation/reporting/graph_viewer.php:370
-msgid "Horizontal Bars"
-msgstr ""
-
-#: ../../include/lib/Dashboard/Widgets/custom_graph.php:322
-#: ../../operation/reporting/graph_viewer.php:371
-msgid "Vertical Bars"
-msgstr ""
-
-#: ../../include/lib/Dashboard/Widgets/single_graph.php:170
-#: ../../include/lib/Dashboard/Widgets/single_graph.php:394
-msgid "Agent module graph"
-msgstr ""
-
-#: ../../include/lib/Dashboard/Widgets/reports.php:164
-#: ../../include/lib/Dashboard/Widgets/reports.php:441
-msgid "Custom report"
-msgstr ""
-
-#: ../../include/lib/Dashboard/Widgets/tree_view.php:341
-msgid "Type tree"
-msgstr ""
-
-#: ../../include/lib/Dashboard/Widgets/tree_view.php:373
-msgid "Open all groups"
-msgstr ""
-
-#: ../../include/lib/Dashboard/Widgets/tree_view.php:393
-msgid "Agents status"
-msgstr ""
-
-#: ../../include/lib/Dashboard/Widgets/tree_view.php:427
-msgid "Modules status"
-msgstr ""
-
-#: ../../include/lib/Dashboard/Widgets/tree_view.php:493
+#: ../../general/login_help_dialog.php:43
 #, 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:601
-#: ../../operation/tree.php:407
-msgid "Policies found"
-msgstr ""
-
-#: ../../include/lib/Dashboard/Widgets/tree_view.php:605
-#: ../../operation/tree.php:410
-msgid "Operating systems found"
-msgstr ""
-
-#: ../../include/lib/Dashboard/Widgets/tree_view.php:609
-#: ../../operation/tree.php:413
-msgid "Tags found"
-msgstr ""
-
-#: ../../include/lib/Dashboard/Widgets/tree_view.php:613
-#: ../../operation/tree.php:416
-msgid "Module Groups found"
-msgstr ""
-
-#: ../../include/lib/Dashboard/Widgets/tree_view.php:617
-#: ../../operation/tree.php:419 ../../operation/search_main.php:56
-msgid "Modules found"
-msgstr ""
-
-#: ../../include/lib/Dashboard/Widgets/tree_view.php:622
-#: ../../operation/tree.php:423
-msgid "Groups found"
-msgstr ""
-
-#: ../../include/lib/Dashboard/Widgets/top_n.php:163
-#: ../../include/lib/Dashboard/Widgets/top_n.php:499
-msgid "Top N of agent modules"
-msgstr ""
-
-#: ../../include/lib/Dashboard/Widgets/top_n.php:207
-msgid ""
-"Case insensitive regular expression for agent name. For example: Network.* "
-"will match with the following agent names: network_agent1, NetworK CHECKS"
-msgstr ""
-
-#: ../../include/lib/Dashboard/Widgets/top_n.php:222
-msgid ""
-"Case insensitive regular expression or string for module name. For example: ."
-"*usage.* will match: cpu_usage, vram usage."
-msgstr ""
-
-#: ../../include/lib/Dashboard/Widgets/top_n.php:280
-msgid "Avg."
-msgstr ""
-
-#: ../../include/lib/Dashboard/Widgets/top_n.php:448
-msgid "There are no agents/modules found matching filter set"
-msgstr ""
-
-#: ../../include/lib/Dashboard/Widgets/tactical.php:262
-msgid "Status and Monitor checks"
-msgstr ""
-
-#: ../../include/lib/Dashboard/Widgets/clock.php:216
-msgid "Analogic"
-msgstr ""
-
-#: ../../include/lib/Dashboard/Widgets/clock.php:217
-msgid "Digital"
-msgstr ""
-
-#: ../../include/lib/Dashboard/Widgets/top_n_events_by_group.php:163
-#: ../../include/lib/Dashboard/Widgets/top_n_events_by_group.php:506
-msgid "Top N events by agent"
-msgstr ""
-
-#: ../../include/lib/Agent.php:349 ../../include/lib/Module.php:1165
-#: ../../include/lib/Entity.php:303
-#, php-format
-msgid "Cannot connect to node %d"
-msgstr ""
-
-#: ../../include/lib/View.php:69
-#, php-format
-msgid "View %s not found"
-msgstr ""
-
-#: ../../include/lib/Module.php:256
-msgid " error: Module has no agent assigned."
-msgstr ""
-
-#: ../../include/lib/Module.php:798
-#, php-format
-msgid "Module already exists: \"%s\""
-msgstr ""
-
-#: ../../include/lib/Module.php:1032
-msgid "Module name empty."
-msgstr ""
-
-#: ../../include/lib/Module.php:1038
-msgid "Invalid characters in module name"
-msgstr ""
-
-#: ../../include/lib/Module.php:1044
-msgid "Module already exists please select another name or agent."
-msgstr ""
-
-#: ../../include/lib/Module.php:1050
-msgid "Insufficent permissions to perform this action"
-msgstr ""
-
-#: ../../include/lib/Module.php:1057
-#, php-format
-msgid "Error while processing: %s"
-msgstr ""
-
-#: ../../include/lib/Group.php:299
-#, php-format
-msgid "Failed to save group %s"
-msgstr ""
-
-#: ../../include/functions_snmp_browser.php:355
-msgid "The server did not return any response."
-msgstr ""
-
-#: ../../include/functions_snmp_browser.php:558
-msgid "Numeric OID"
-msgstr ""
-
-#: ../../include/functions_snmp_browser.php:576
-msgid "Syntax"
-msgstr ""
-
-#: ../../include/functions_snmp_browser.php:582
-msgid "Display hint"
-msgstr ""
-
-#: ../../include/functions_snmp_browser.php:588
-msgid "Max access"
-msgstr ""
-
-#: ../../include/functions_snmp_browser.php:612
-msgid "OID Information"
-msgstr ""
-
-#: ../../include/functions_snmp_browser.php:647
-msgid "Create agent module"
-msgstr ""
-
-#: ../../include/functions_snmp_browser.php:736
-msgid "Starting OID"
-msgstr ""
-
-#: ../../include/functions_snmp_browser.php:786
-msgid "Server to execute"
-msgstr ""
-
-#: ../../include/functions_snmp_browser.php:801
-msgid "Browse"
-msgstr ""
-
-#: ../../include/functions_snmp_browser.php:939
-msgid "First match"
-msgstr ""
-
-#: ../../include/functions_snmp_browser.php:952
-msgid "Previous match"
-msgstr ""
-
-#: ../../include/functions_snmp_browser.php:965
-msgid "Next match"
-msgstr ""
-
-#: ../../include/functions_snmp_browser.php:978
-msgid "Last match"
-msgstr ""
-
-#: ../../include/functions_snmp_browser.php:992
-msgid "Expand the tree (can be slow)"
-msgstr ""
-
-#: ../../include/functions_snmp_browser.php:1005
-msgid "Collapse the tree"
-msgstr ""
-
-#: ../../include/functions_snmp_browser.php:1034
-msgid "SNMP v3 options"
-msgstr ""
-
-#: ../../include/functions_snmp_browser.php:1044
-msgid "Search options"
-msgstr ""
-
-#: ../../include/functions_snmp_browser.php:1065
-msgid "Search matches"
-msgstr ""
-
-#: ../../include/functions_snmp_browser.php:1081
-msgid "Create agent modules"
-msgstr ""
-
-#: ../../include/functions_snmp_browser.php:1090
-msgid "Create policy modules"
-msgstr ""
-
-#: ../../include/functions_snmp_browser.php:1099
-msgid "Create network components"
-msgstr ""
-
-#: ../../include/functions_snmp_browser.php:1511
-msgid " available"
-msgstr ""
-
-#: ../../include/functions_snmp_browser.php:1511
-#: ../../include/functions_snmp_browser.php:1513
-msgid "Select all"
-msgstr ""
-
-#: ../../include/functions_snmp_browser.php:1513
-msgid " to apply"
-msgstr ""
-
-#: ../../include/functions_snmp_browser.php:1534
-#: ../../operation/snmpconsole/snmp_browser.php:538
-msgid "Create new policy"
-msgstr ""
-
-#: ../../include/functions_snmp_browser.php:1566
-msgid "Undo"
-msgstr ""
-
-#: ../../include/chart_generator.php:125
-#: ../../operation/agentes/stat_win.php:51
-#: ../../operation/agentes/stat_win.php:174
-#: ../../operation/agentes/realtime_win.php:51
-#: ../../operation/agentes/interface_traffic_graph_win.php:54
-msgid "There was a problem connecting with the node"
-msgstr ""
-
-#: ../../include/functions_groups.php:75
-msgid "Alert Actions"
-msgstr ""
-
-#: ../../include/functions_groups.php:91
-msgid "Alert Templates"
-msgstr ""
-
-#: ../../include/functions_groups.php:107
-#: ../../operation/agentes/pandora_networkmap.editor.php:337
-#: ../../operation/agentes/pandora_networkmap.view.php:137
-msgid "Discovery task"
-msgstr ""
-
-#: ../../include/functions_groups.php:155
-msgid "Layout visual console"
-msgstr ""
-
-#: ../../include/functions_groups.php:171
-msgid "Plannet down time"
-msgstr ""
-
-#: ../../include/functions_groups.php:203
-msgid "GIS maps"
-msgstr ""
-
-#: ../../include/functions_groups.php:219
-msgid "GIS connections"
-msgstr ""
-
-#: ../../include/functions_groups.php:235
-msgid "GIS map layers"
-msgstr ""
-
-#: ../../include/functions_groups.php:251
-msgid "Network maps"
-msgstr ""
-
-#: ../../include/functions_events.php:134
-msgid "NEW"
-msgstr ""
-
-#: ../../include/functions_events.php:137
-msgid "IN PROCESS"
-msgstr ""
-
-#: ../../include/functions_events.php:140
-msgid "VALIDATED"
-msgstr ""
-
-#: ../../include/functions_events.php:191
-msgid "Event id"
-msgstr ""
-
-#: ../../include/functions_events.php:199
-msgid "Agent module"
-msgstr ""
-
-#: ../../include/functions_events.php:205
-#: ../../include/functions_events.php:4625
-msgid "Extra id"
-msgstr ""
-
-#: ../../include/functions_events.php:212
-msgid "Module custom id"
-msgstr ""
-
-#: ../../include/functions_events.php:241
-msgid "Agent alias"
-msgstr ""
-
-#: ../../include/functions_events.php:2546
-#: ../../operation/agentes/tactical.php:228
-msgid "Latest events"
-msgstr ""
-
-#: ../../include/functions_events.php:2586
-msgid "V."
-msgstr ""
-
-#: ../../include/functions_events.php:2683
-msgid "Events -by module-"
-msgstr ""
-
-#: ../../include/functions_events.php:2689
-#: ../../operation/agentes/tactical.php:245
-msgid "Event graph"
-msgstr ""
-
-#: ../../include/functions_events.php:2691
-#: ../../operation/agentes/tactical.php:248
-msgid "Event graph by agent"
-msgstr ""
-
-#: ../../include/functions_events.php:2830
-msgid "Going to unknown"
-msgstr ""
-
-#: ../../include/functions_events.php:2838
-msgid "Alert manually validated"
-msgstr ""
-
-#: ../../include/functions_events.php:2842
-msgid "Going from critical to warning"
-msgstr ""
-
-#: ../../include/functions_events.php:2848
-msgid "Going up to critical state"
-msgstr ""
-
-#: ../../include/functions_events.php:2854
-msgid "Going up to normal state"
-msgstr ""
-
-#: ../../include/functions_events.php:2858
-msgid "Going down from normal to warning"
-msgstr ""
-
-#: ../../include/functions_events.php:2870
-msgid "Discovery server detected a new host"
-msgstr ""
-
-#: ../../include/functions_events.php:2874
-msgid "New agent created"
-msgstr ""
-
-#: ../../include/functions_events.php:2891
-msgid "Unknown type:"
-msgstr ""
-
-#: ../../include/functions_events.php:3336
-#: ../../include/functions_events.php:3367
-msgid "Only new"
-msgstr ""
-
-#: ../../include/functions_events.php:3338
-#: ../../include/functions_events.php:3375
-msgid "Only in process"
-msgstr ""
-
-#: ../../include/functions_events.php:3339
-#: ../../include/functions_events.php:3379
-msgid "Only not validated"
-msgstr ""
-
-#: ../../include/functions_events.php:3342
-#: ../../include/functions_events.php:3630
-msgid "New"
-msgstr ""
-
-#: ../../include/functions_events.php:3344
-#: ../../include/functions_events.php:3631
-#: ../../include/functions_events.php:3640
-msgid "In process"
-msgstr ""
-
-#: ../../include/functions_events.php:3345
-msgid "Not Validated"
-msgstr ""
-
-#: ../../include/functions_events.php:3534
-msgid "Change owner"
-msgstr ""
-
-#: ../../include/functions_events.php:3615
-msgid "Change status"
-msgstr ""
-
-#: ../../include/functions_events.php:3712
-#: ../../include/functions_events.php:5280
-#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:314
-msgid "Add comment"
-msgstr ""
-
-#: ../../include/functions_events.php:3733
-#: ../../include/functions_events.php:3737
-#: ../../include/functions_events.php:7180
-#: ../../operation/events/events.php:2168
-#: ../../operation/events/events.build_table.php:877
-msgid "Delete event"
-msgstr ""
-
-#: ../../include/functions_events.php:3757
-msgid "Custom responses"
-msgstr ""
-
-#: ../../include/functions_events.php:4300
-msgid "Extended information"
-msgstr ""
-
-#: ../../include/functions_events.php:4328
-msgid "There was an error connecting to the node"
-msgstr ""
-
-#: ../../include/functions_events.php:4367
-msgid "Agent details"
-msgstr ""
-
-#: ../../include/functions_events.php:4381
-msgid "This agent belongs to metaconsole, is not possible display it"
-msgstr ""
-
-#: ../../include/functions_events.php:4425
-#: ../../operation/agentes/ver_agente.php:991
-msgid "Last remote contact"
-msgstr ""
-
-#: ../../include/functions_events.php:4432
-msgid "View custom fields"
-msgstr ""
-
-#: ../../include/functions_events.php:4455
-msgid "Module details"
-msgstr ""
-
-#: ../../include/functions_events.php:4471
-msgid "No assigned"
-msgstr ""
-
-#: ../../include/functions_events.php:4562
-#: ../../include/functions_events.php:4571
-msgid "Go to data overview"
-msgstr ""
-
-#: ../../include/functions_events.php:4687
-#, php-format
-msgid "Invalid custom data: %s"
-msgstr ""
-
-#: ../../include/functions_events.php:4922
-msgid "First event"
-msgstr ""
-
-#: ../../include/functions_events.php:4922
-msgid "Last event"
-msgstr ""
-
-#: ../../include/functions_events.php:5004
-msgid "Autovalidated"
-msgstr ""
-
-#: ../../include/functions_events.php:5070
-msgid "ID extra"
-msgstr ""
-
-#: ../../include/functions_events.php:5135
-msgid "There are no comments"
-msgstr ""
-
-#: ../../include/functions_events.php:5193 ../../general/logon_ok.php:206
-msgid "by"
-msgstr ""
-
-#: ../../include/functions_events.php:5290
-msgid ""
-"If event replication is ongoing, it won't be possible to enter comments "
-"here. This option is only to allow local pandora users to see comments, but "
-"not to operate with them. The operation, when event replication is enabled, "
-"must be done only in the Metaconsole."
-msgstr ""
-
-#: ../../include/functions_events.php:5494
-msgid "Pandora System"
-msgstr ""
-
-#: ../../include/functions_events.php:5693
-msgid "Validated but not assigned"
-msgstr ""
-
-#: ../../include/functions_events.php:6114
-#: ../../include/functions_events.php:6121
-#: ../../operation/snmpconsole/snmp_view.php:587
-#: ../../operation/snmpconsole/snmp_view.php:931
-#: ../../operation/snmpconsole/snmp_view.php:1243
-msgid "Not validated"
-msgstr ""
-
-#: ../../include/functions_events.php:6640
-msgid "Agent Module"
-msgstr ""
-
-#: ../../include/functions_events.php:7166
-#: ../../operation/events/events.php:2144
-#: ../../operation/events/events.build_table.php:849
-msgid "Validate event"
-msgstr ""
-
-#: ../../include/functions_events.php:7189
-#: ../../operation/events/events.build_table.php:887
-msgid "Is not allowed delete events in process"
-msgstr ""
-
-#: ../../include/functions_events.php:7200
-#: ../../operation/snmpconsole/snmp_view.php:1061
-#: ../../operation/snmpconsole/snmp_view.php:1062 ../../operation/menu.php:236
-#: ../../operation/menu.php:238 ../../operation/events/events.php:1963
-#: ../../operation/events/events.php:2129
-#: ../../operation/events/events.build_table.php:836
-msgid "Show more"
-msgstr ""
-
-#: ../../include/functions_planned_downtimes.php:575
-msgid "Succesful stopped the Downtime"
-msgstr ""
-
-#: ../../include/functions_planned_downtimes.php:576
-msgid "Unsuccesful stopped the Downtime"
-msgstr ""
-
-#: ../../include/functions_planned_downtimes.php:716
-#, php-format
-msgid "Enabled %s elements from the downtime"
-msgstr ""
-
-#: ../../include/functions_planned_downtimes.php:775
-msgid "The downtime must be quiet, disable_agents or disable_agents_alerts"
-msgstr ""
-
-#: ../../include/functions_planned_downtimes.php:780
-msgid "The execution must be once or periodically"
-msgstr ""
-
-#: ../../include/functions_planned_downtimes.php:785
-msgid "The periodicity must be weekly or monthly"
-msgstr ""
-
-#: ../../include/functions_planned_downtimes.php:790
-msgid "There is no user with such id"
-msgstr ""
-
-#: ../../include/functions_planned_downtimes.php:795
-msgid "There is no group with such id"
-msgstr ""
-
-#: ../../include/functions_planned_downtimes.php:800
-msgid "Date is wrong formatted"
-msgstr ""
-
-#: ../../include/functions_planned_downtimes.php:907
-msgid "This scheduled downtime are executed now. Can't delete in this moment."
-msgstr ""
-
-#: ../../include/functions_planned_downtimes.php:914
-msgid "Deleted this scheduled downtime successfully."
-msgstr ""
-
-#: ../../include/functions_planned_downtimes.php:916
-msgid "Problems for deleted this scheduled downtime."
-msgstr ""
-
-#: ../../index.php:344
-msgid "The code shouldn't be empty"
-msgstr ""
-
-#: ../../index.php:357
-msgid "Expired login"
-msgstr ""
-
-#: ../../index.php:364 ../../index.php:370
-msgid "Login error"
-msgstr ""
-
-#: ../../index.php:790
-msgid "Password changed successfully"
-msgstr ""
-
-#: ../../index.php:796
-msgid "Failed to change password"
-msgstr ""
-
-#: ../../index.php:801
-msgid "Passwords must be the same"
-msgstr ""
-
-#: ../../index.php:813
-msgid "Too much time since password change request"
-msgstr ""
-
-#: ../../index.php:820
-msgid "This user has not requested a password change"
-msgstr ""
-
-#: ../../index.php:847
-msgid "Id user cannot be empty"
-msgstr ""
-
-#: ../../index.php:855
-msgid "Error in reset password request"
-msgstr ""
-
-#: ../../index.php:863
-msgid "This user doesn't have a valid email address"
-msgstr ""
-
-#: ../../index.php:873
-msgid "Reset password"
-msgstr ""
-
-#: ../../index.php:874
-msgid "This is an automatically sent message for user "
-msgstr ""
-
-#: ../../index.php:877
-msgid "Please click the link below to reset your password"
-msgstr ""
-
-#: ../../index.php:879
-msgid "Reset your password"
-msgstr ""
-
-#: ../../index.php:883
-msgid "Please do not reply to this email."
-msgstr ""
-
-#: ../../index.php:888
-msgid "Error at sending the email"
-msgstr ""
-
-#: ../../index.php:944
-msgid "User doesn\\'t exist."
-msgstr ""
-
-#: ../../index.php:966
-msgid "User only can use the API."
-msgstr ""
-
-#: ../../index.php:1161
-#, php-format
-msgid "Metaconsole MR (%d) is different than this one (%d)"
-msgstr ""
-
-#: ../../index.php:1167
-msgid "Please keep all environment updated to same version."
-msgstr ""
-
-#: ../../index.php:1255
-msgid "Sorry! I can't find the page!"
-msgstr ""
-
-#: ../../index.php:1393
-#: ../../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:87
-msgid "Connection with server has been lost"
-msgstr ""
-
-#: ../../index.php:1394
-#: ../../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:88
-msgid ""
-"Connection to the server has been lost. Please check your internet "
-"connection or contact with administrator."
-msgstr ""
-
-#: ../../operation/search_users.php:23 ../../operation/search_agents.php:30
-#: ../../operation/search_alerts.php:24 ../../operation/search_reports.php:25
-#: ../../operation/search_graphs.php:21 ../../operation/search_modules.php:23
-#: ../../operation/search_policies.php:22 ../../operation/search_maps.php:19
-msgid "Zero results found"
-msgstr ""
-
-#: ../../operation/search_users.php:46
-msgid "Profile"
-msgstr ""
-
-#: ../../operation/search_agents.php:132 ../../operation/search_agents.php:133
-#: ../../operation/agentes/ver_agente.php:1319
-#: ../../operation/servers/recon_view.php:47
-msgid "Manage"
-msgstr ""
-
-#: ../../operation/tree.php:137
-#, php-format
-msgid "Sort the agents by %s"
-msgstr ""
-
-#: ../../operation/tree.php:140
-msgid "tags"
-msgstr ""
-
-#: ../../operation/tree.php:148
-msgid "groups"
-msgstr ""
-
-#: ../../operation/tree.php:152
-msgid "module groups"
-msgstr ""
-
-#: ../../operation/tree.php:161
-msgid "policies"
-msgstr ""
-
-#: ../../operation/tree.php:217
-msgid "Search group"
-msgstr ""
-
-#: ../../operation/tree.php:221 ../../operation/tree.php:273
-msgid "Show not init modules"
-msgstr ""
-
-#: ../../operation/tree.php:230
-msgid "Search agent"
-msgstr ""
-
-#: ../../operation/tree.php:233
-msgid "Show not init agents"
-msgstr ""
-
-#: ../../operation/tree.php:241
-msgid "Show full hirearchy"
-msgstr ""
-
-#: ../../operation/tree.php:244
-msgid "Agent status"
-msgstr ""
-
-#: ../../operation/tree.php:270
-msgid "Search module"
-msgstr ""
-
-#: ../../operation/tree.php:302
-msgid "Tree search"
-msgstr ""
-
-#: ../../operation/tree.php:526 ../../operation/agentes/status_monitor.php:2049
-#: ../../operation/agentes/estado_monitores.php:421
-msgid "Module: "
-msgstr ""
-
-#: ../../operation/users/user_edit.php:153
-msgid "Current password of user is required to perform password change"
-msgstr ""
-
-#: ../../operation/users/user_edit.php:155
-msgid "Current password of user is not correct"
-msgstr ""
-
-#: ../../operation/users/user_edit.php:159
-msgid ""
-"Passwords didn't match or other problem encountered while updating passwords"
-msgstr ""
-
-#: ../../operation/users/user_edit.php:172
-#: ../../operation/users/user_edit.php:187
-msgid "Password successfully updated"
-msgstr ""
-
-#: ../../operation/users/user_edit.php:182
-#: ../../operation/users/user_edit.php:230
-msgid "Error updating user info"
-msgstr ""
-
-#: ../../operation/users/user_edit.php:189
-msgid "Skin successfully updated"
-msgstr ""
-
-#: ../../operation/users/user_edit.php:192
-msgid "No changes have been made"
-msgstr ""
-
-#: ../../operation/users/user_edit.php:203
-msgid "Please enter a valid email"
-msgstr ""
-
-#: ../../operation/users/user_edit.php:205
-msgid "Please enter a valid phone number"
-msgstr ""
-
-#: ../../operation/users/user_edit.php:211
-msgid "Error updating passwords: "
-msgstr ""
-
-#: ../../operation/users/user_edit.php:235
-msgid "Edit my User"
-msgstr ""
-
-#: ../../operation/users/user_edit.php:297
-msgid "New Password"
-msgstr ""
-
-#: ../../operation/users/user_edit.php:299
-msgid "Current password"
-msgstr ""
-
-#: ../../operation/users/user_edit.php:301
-msgid "You cannot change your password under the current authentication scheme"
-msgstr ""
-
-#: ../../operation/users/user_edit.php:316
-msgid "If checkbox is clicked then block size global configuration is used"
-msgstr ""
-
-#: ../../operation/users/user_edit.php:410
-msgid "This change will only apply to nodes"
-msgstr ""
-
-#: ../../operation/users/user_edit.php:447
-msgid "Event filter"
-msgstr ""
-
-#: ../../operation/users/user_edit.php:518
-msgid "Autorefresh"
-msgstr ""
-
-#: ../../operation/users/user_edit.php:519
-msgid "This will activate autorefresh in selected pages"
-msgstr ""
-
-#: ../../operation/users/user_edit.php:554
-msgid "Full list of pages"
-msgstr ""
-
-#: ../../operation/users/user_edit.php:563
-#: ../../operation/users/user_edit.php:564
-msgid "Push selected pages into autorefresh list"
-msgstr ""
-
-#: ../../operation/users/user_edit.php:572
-#: ../../operation/users/user_edit.php:573
-msgid "Pop selected pages out of autorefresh list"
-msgstr ""
-
-#: ../../operation/users/user_edit.php:578
-msgid "List of pages with autorefresh"
-msgstr ""
-
-#: ../../operation/users/user_edit.php:587
-msgid "Time autorefresh"
-msgstr ""
-
-#: ../../operation/users/user_edit.php:589
-msgid ""
-"Interval of autorefresh of the elements, by default they are 30 seconds, "
-"needing to enable the autorefresh first"
-msgstr ""
-
-#: ../../operation/users/user_edit.php:684
-msgid "eHorus user configuration"
-msgstr ""
-
-#: ../../operation/users/user_edit.php:689
-msgid "eHorus user acces enabled"
-msgstr ""
-
-#: ../../operation/users/user_edit.php:736
-msgid "Integria user configuration"
-msgstr ""
-
-#: ../../operation/users/user_edit.php:773
-msgid ""
-"You can not change your user info under the current authentication scheme"
-msgstr ""
-
-#: ../../operation/users/user_edit.php:850
-msgid "This user doesn't have any assigned profile/group."
-msgstr ""
-
-#: ../../operation/users/user_edit_header.php:102
-#: ../../operation/users/user_edit_notifications.php:36
-msgid "User notifications"
-msgstr ""
-
-#: ../../operation/users/user_edit_header.php:127
-#: ../../operation/messages/message_list.php:86
-#: ../../operation/messages/message_edit.php:99 ../../operation/menu.php:450
-msgid "Workspace"
-msgstr ""
-
-#: ../../operation/users/user_edit_header.php:131
-msgid "Edit user"
-msgstr ""
-
-#: ../../operation/users/user_edit_notifications.php:65
-msgid "Also receive an email"
-msgstr ""
-
-#: ../../operation/users/user_edit_notifications.php:94
-msgid "Controls have been disabled by the system administrator"
-msgstr ""
-
-#: ../../operation/search_helps.php:17
-msgid "Zero results found."
-msgstr ""
-
-#: ../../operation/search_helps.php:18
-#, php-format
-msgid ""
-"You can find more help in the <a class=\"underline\" href=\"%s\">wiki</a>"
-msgstr ""
-
-#: ../../operation/search_helps.php:31
-msgid "Matches"
-msgstr ""
-
-#: ../../operation/visual_console/view.php:387
-msgid "Delete Item"
-msgstr ""
-
-#: ../../operation/visual_console/view.php:393
-msgid "Copy Item"
-msgstr ""
-
-#: ../../operation/visual_console/view.php:406
-#: ../../operation/agentes/estado_generalagente.php:326
-msgid "Force remote checks"
-msgstr ""
-
-#: ../../operation/visual_console/view.php:729
-msgid "Are you sure"
-msgstr ""
-
-#: ../../operation/visual_console/legacy_public_view.php:165
-#: ../../operation/visual_console/public_view.php:150
-msgid "QR code of the page"
-msgstr ""
-
-#: ../../operation/visual_console/legacy_public_view.php:195
-#: ../../operation/visual_console/legacy_view.php:339
-msgid "Until refresh"
-msgstr ""
-
-#: ../../operation/search_results.php:67
-msgid "Global search"
-msgstr ""
-
-#: ../../operation/agentes/stat_win.php:116
-#, php-format
-msgid "%s Graph"
-msgstr ""
-
-#: ../../operation/agentes/stat_win.php:147
-msgid "There was a problem locating the source of the graph"
-msgstr ""
-
-#: ../../operation/agentes/stat_win.php:265
-#: ../../operation/agentes/interface_traffic_graph_win.php:167
-msgid "Refresh time"
-msgstr ""
-
-#: ../../operation/agentes/stat_win.php:276
-#: ../../operation/agentes/graphs.php:222
-msgid "Show events"
-msgstr ""
-
-#: ../../operation/agentes/stat_win.php:295
-#, php-format
-msgid ""
-"'Show events' is disabled because this %s node is set to event replication."
-msgstr ""
-
-#: ../../operation/agentes/stat_win.php:310
-#: ../../operation/agentes/graphs.php:224
-msgid "Show alerts"
-msgstr ""
-
-#: ../../operation/agentes/stat_win.php:318
-#: ../../operation/agentes/stat_win.php:429
-#: ../../operation/agentes/interface_traffic_graph_win.php:207
-msgid "Begin time"
-msgstr ""
-
-#: ../../operation/agentes/stat_win.php:336
-#: ../../operation/agentes/stat_win.php:439
-#: ../../operation/agentes/interface_traffic_graph_win.php:213
-#: ../../operation/agentes/graphs.php:218
-#: ../../operation/reporting/graph_viewer.php:354
-msgid "Time range"
-msgstr ""
-
-#: ../../operation/agentes/stat_win.php:351
-msgid "Zoom"
-msgstr ""
-
-#: ../../operation/agentes/stat_win.php:371
-#: ../../operation/agentes/interface_traffic_graph_win.php:227
-msgid "Show percentil"
-msgstr ""
-
-#: ../../operation/agentes/stat_win.php:397
-msgid "Show AVG/MAX/MIN data series in graph"
-msgstr ""
-
-#: ../../operation/agentes/stat_win.php:462
-#: ../../operation/agentes/interface_traffic_graph_win.php:276
-msgid "Reload"
-msgstr ""
-
-#: ../../operation/agentes/stat_win.php:500
-#: ../../operation/agentes/interface_traffic_graph_win.php:306
-msgid "Graph configuration menu"
-msgstr ""
-
-#: ../../operation/agentes/alerts_status.php:203
-msgid "Alerts view"
-msgstr ""
-
-#: ../../operation/agentes/alerts_status.php:211
-msgid "Insufficient permissions to validate alerts"
-msgstr ""
-
-#: ../../operation/agentes/alerts_status.php:736
-msgid "Full list of alerts"
-msgstr ""
-
-#: ../../operation/agentes/gis_view.php:93
-msgid "Period to show data as path"
-msgstr ""
-
-#: ../../operation/agentes/gis_view.php:97
-msgid "Refresh path"
-msgstr ""
-
-#: ../../operation/agentes/gis_view.php:155
-msgid "This agent doesn't have any GIS data."
-msgstr ""
-
-#: ../../operation/agentes/gis_view.php:167
-msgid "Positional data from the last"
-msgstr ""
-
-#: ../../operation/agentes/gis_view.php:206
-#, php-format
-msgid "%s Km"
-msgstr ""
-
-#: ../../operation/agentes/gis_view.php:220
-msgid "Distance"
-msgstr ""
-
-#: ../../operation/agentes/gis_view.php:221
-msgid "# of Packages"
-msgstr ""
-
-#: ../../operation/agentes/gis_view.php:222
-#: ../../operation/gis_maps/ajax.php:242
-msgid "Manual placement"
-msgstr ""
-
-#: ../../operation/agentes/exportdata.csv.php:66
-#: ../../operation/agentes/exportdata.php:71
-#: ../../operation/agentes/exportdata.excel.php:66
-msgid "Invalid time specified"
-msgstr ""
-
-#: ../../operation/agentes/exportdata.csv.php:178
-#: ../../operation/agentes/exportdata.php:209
-#: ../../operation/agentes/exportdata.excel.php:161
-msgid "No modules specified"
-msgstr ""
-
-#: ../../operation/agentes/log_sources_status.php:75
-msgid "Review in log viewer"
-msgstr ""
-
-#: ../../operation/agentes/log_sources_status.php:98
-msgid "No log sources found"
-msgstr ""
-
-#: ../../operation/agentes/log_sources_status.php:117
-msgid "Log sources status"
-msgstr ""
-
-#: ../../operation/agentes/estado_agente.php:239
-msgid "Sucessfully deleted agent"
-msgstr ""
-
-#: ../../operation/agentes/estado_agente.php:241
-msgid "There was an error message deleting the agent"
-msgstr ""
-
-#: ../../operation/agentes/estado_agente.php:282
-msgid "Search in custom fields"
-msgstr ""
-
-#: ../../operation/agentes/estado_agente.php:896
-msgid "Remote config"
-msgstr ""
-
-#: ../../operation/agentes/ehorus.php:30
-msgid "Missing agent id"
-msgstr ""
-
-#: ../../operation/agentes/ehorus.php:48
-msgid "Missing ehorus agent id"
-msgstr ""
-
-#: ../../operation/agentes/ehorus.php:97 ../../operation/agentes/ehorus.php:134
-msgid "There was an error retrieving an authorization token"
-msgstr ""
-
-#: ../../operation/agentes/ehorus.php:109
-#: ../../operation/agentes/ehorus.php:146
-#: ../../operation/agentes/ehorus.php:182
-msgid "There was an error processing the response"
-msgstr ""
-
-#: ../../operation/agentes/ehorus.php:170
-msgid "There was an error retrieving the agent data"
-msgstr ""
-
-#: ../../operation/agentes/ehorus.php:187
-msgid "Remote management of this agent with eHorus"
-msgstr ""
-
-#: ../../operation/agentes/ehorus.php:189
-msgid "Launch"
-msgstr ""
-
-#: ../../operation/agentes/ehorus.php:195
-msgid "The connection was lost and the authorization token was expired"
-msgstr ""
-
-#: ../../operation/agentes/ehorus.php:195
-msgid "Reload the page to request a new authorization token"
-msgstr ""
-
-#: ../../operation/agentes/status_events.php:26
-#: ../../operation/agentes/status_events.php:27
-msgid "Latest events for this agent"
-msgstr ""
-
-#: ../../operation/agentes/networkmap.dinamic.php:102
-#: ../../operation/agentes/pandora_networkmap.view.php:2266
-#: ../../operation/snmpconsole/snmp_statistics.php:45
-#: ../../operation/snmpconsole/snmp_browser.php:53
-#: ../../operation/snmpconsole/snmp_view.php:118
-msgid "Normal screen"
-msgstr ""
-
-#: ../../operation/agentes/networkmap.dinamic.php:126
-#: ../../operation/agentes/pandora_networkmap.view.php:2290
-msgid "List of networkmap"
-msgstr ""
-
-#: ../../operation/agentes/agent_fields.php:37
-#: ../../operation/agentes/status_monitor.php:863
-msgid "Agent custom fields"
-msgstr ""
-
-#: ../../operation/agentes/agent_fields.php:47
-#: ../../operation/agentes/custom_fields.php:90
-msgid "empty"
-msgstr ""
-
-#: ../../operation/agentes/realtime_win.php:85
-#, php-format
-msgid "%s Realtime Module Graph"
-msgstr ""
-
-#: ../../operation/agentes/realtime_win.php:112
-msgid "Realtime extension is not enabled."
-msgstr ""
-
-#: ../../operation/agentes/pandora_networkmap.editor.php:205
-msgid "Network maps editor"
-msgstr ""
-
-#: ../../operation/agentes/pandora_networkmap.editor.php:324
-#: ../../operation/agentes/pandora_networkmap.view.php:127
-msgid "Position X"
-msgstr ""
-
-#: ../../operation/agentes/pandora_networkmap.editor.php:326
-#: ../../operation/agentes/pandora_networkmap.view.php:129
-msgid "Position Y"
-msgstr ""
-
-#: ../../operation/agentes/pandora_networkmap.editor.php:329
-#: ../../operation/agentes/pandora_networkmap.view.php:132
-msgid "Zoom scale"
-msgstr ""
-
-#: ../../operation/agentes/pandora_networkmap.editor.php:334
-#: ../../operation/agentes/pandora_networkmap.view.php:134
-msgid ""
-"Introduce zoom level. 1 = Highest resolution. Figures may include decimals"
-msgstr ""
-
-#: ../../operation/agentes/pandora_networkmap.editor.php:337
-#: ../../operation/agentes/pandora_networkmap.view.php:137
-msgid "CIDR IP mask"
-msgstr ""
-
-#: ../../operation/agentes/pandora_networkmap.editor.php:339
-#: ../../operation/agentes/pandora_networkmap.view.php:164
-msgid "Source from recon task"
-msgstr ""
-
-#: ../../operation/agentes/pandora_networkmap.editor.php:341
-#: ../../operation/agentes/pandora_networkmap.view.php:166
-msgid ""
-"It is setted any recon task, the nodes get from the recontask IP mask "
-"instead from the group."
-msgstr ""
-
-#: ../../operation/agentes/pandora_networkmap.editor.php:358
-#: ../../operation/agentes/pandora_networkmap.view.php:182
-msgid "Show only the task with the recon script \"SNMP L2 Recon\"."
-msgstr ""
-
-#: ../../operation/agentes/pandora_networkmap.editor.php:362
-#: ../../operation/agentes/pandora_networkmap.view.php:186
-msgid "Source from CIDR IP mask"
-msgstr ""
-
-#: ../../operation/agentes/pandora_networkmap.editor.php:365
-msgid "Source group"
-msgstr ""
-
-#: ../../operation/agentes/pandora_networkmap.editor.php:382
-msgid "Source id group changed. All elements in networkmap will be lost."
-msgstr ""
-
-#: ../../operation/agentes/pandora_networkmap.editor.php:387
-#: ../../operation/agentes/pandora_networkmap.view.php:198
-msgid "Don't show subgroups:"
-msgstr ""
-
-#: ../../operation/agentes/pandora_networkmap.editor.php:405
-#: ../../operation/agentes/pandora_networkmap.view.php:232
-msgid "Method generation networkmap"
-msgstr ""
-
-#: ../../operation/agentes/pandora_networkmap.editor.php:425
-#: ../../operation/agentes/pandora_networkmap.view.php:247
-msgid "Node separation"
-msgstr ""
-
-#: ../../operation/agentes/pandora_networkmap.editor.php:426
-#: ../../operation/agentes/pandora_networkmap.view.php:248
-msgid "Separation between nodes. By default 0.25"
-msgstr ""
-
-#: ../../operation/agentes/pandora_networkmap.editor.php:428
-#: ../../operation/agentes/pandora_networkmap.view.php:250
-msgid "Rank separation"
-msgstr ""
-
-#: ../../operation/agentes/pandora_networkmap.editor.php:429
-#: ../../operation/agentes/pandora_networkmap.view.php:251
-msgid ""
-"Only flat and radial. Separation between arrows. By default 0.5 in flat and "
-"1.0 in radial"
-msgstr ""
-
-#: ../../operation/agentes/pandora_networkmap.editor.php:431
-#: ../../operation/agentes/pandora_networkmap.view.php:253
-msgid "Min nodes dist"
-msgstr ""
-
-#: ../../operation/agentes/pandora_networkmap.editor.php:432
-#: ../../operation/agentes/pandora_networkmap.view.php:254
-msgid "Only circular. Minimum separation between all nodes. By default 1.0"
-msgstr ""
-
-#: ../../operation/agentes/pandora_networkmap.editor.php:434
-#: ../../operation/agentes/pandora_networkmap.view.php:256
-msgid "Default ideal node separation"
-msgstr ""
-
-#: ../../operation/agentes/pandora_networkmap.editor.php:435
-#: ../../operation/agentes/pandora_networkmap.view.php:257
-msgid "Only fdp. Default ideal node separation in the layout. By default 0.3"
-msgstr ""
-
-#: ../../operation/agentes/pandora_networkmap.editor.php:601
-msgid "Source id group changed. All elements in Networkmap will be lost"
-msgstr ""
-
-#: ../../operation/agentes/pandora_networkmap.php:139
-#: ../../operation/agentes/pandora_networkmap.php:374
-msgid "Succesfully created"
-msgstr ""
-
-#: ../../operation/agentes/pandora_networkmap.php:215
-#: ../../operation/agentes/pandora_networkmap.php:507
-msgid "Succesfully updated"
-msgstr ""
-
-#: ../../operation/agentes/pandora_networkmap.php:532
-msgid "Succesfully duplicate"
-msgstr ""
-
-#: ../../operation/agentes/pandora_networkmap.php:533
-msgid "Could not be duplicated"
-msgstr ""
-
-#: ../../operation/agentes/pandora_networkmap.php:546
-msgid "Succesfully deleted"
-msgstr ""
-
-#: ../../operation/agentes/pandora_networkmap.php:656
-msgid "List of network maps"
-msgstr ""
-
-#: ../../operation/agentes/pandora_networkmap.php:776
-msgid "Empty map"
-msgstr ""
-
-#: ../../operation/agentes/pandora_networkmap.php:780
-msgid "Pending to generate"
-msgstr ""
-
-#: ../../operation/agentes/pandora_networkmap.php:800
-msgid "Config"
-msgstr ""
-
-#: ../../operation/agentes/pandora_networkmap.php:811
-msgid "There are no maps defined."
-msgstr ""
-
-#: ../../operation/agentes/pandora_networkmap.php:818
-msgid "Create network map"
-msgstr ""
-
-#: ../../operation/agentes/pandora_networkmap.php:825
-msgid "Create empty network map"
-msgstr ""
-
-#: ../../operation/agentes/interface_traffic_graph_win.php:95
-#, php-format
-msgid "%s Interface Graph"
-msgstr ""
-
-#: ../../operation/agentes/interface_traffic_graph_win.php:250
-msgid "Zoom factor"
-msgstr ""
-
-#: ../../operation/agentes/interface_traffic_graph_win.php:257
-msgid "Full"
-msgstr ""
-
-#: ../../operation/agentes/graphs.php:143
-msgid "Other modules"
-msgstr ""
-
-#: ../../operation/agentes/graphs.php:150
-msgid "Modules network no proc"
-msgstr ""
-
-#: ../../operation/agentes/graphs.php:157
-msgid "Modules boolean"
-msgstr ""
-
-#: ../../operation/agentes/graphs.php:224
-msgid "the combined graph does not show the alerts into this graph"
-msgstr ""
-
-#: ../../operation/agentes/graphs.php:226
-msgid "Show as one combined graph"
-msgstr ""
-
-#: ../../operation/agentes/graphs.php:228
-msgid "several graphs for each module"
-msgstr ""
-
-#: ../../operation/agentes/graphs.php:229
-msgid "One combined graph"
-msgstr ""
-
-#: ../../operation/agentes/graphs.php:237
-#: ../../operation/agentes/graphs.php:413
-msgid "Area stack"
-msgstr ""
-
-#: ../../operation/agentes/graphs.php:239
-#: ../../operation/agentes/graphs.php:421
-msgid "Line stack"
-msgstr ""
-
-#: ../../operation/agentes/graphs.php:256
-msgid "Save as custom graph"
-msgstr ""
-
-#: ../../operation/agentes/graphs.php:269
-msgid "Filter graphs"
-msgstr ""
-
-#: ../../operation/agentes/graphs.php:296
-msgid "There was an error loading the graph"
-msgstr ""
-
-#: ../../operation/agentes/graphs.php:304
-#: ../../operation/agentes/graphs.php:308
-msgid "Name custom graph"
-msgstr ""
-
-#: ../../operation/agentes/graphs.php:354
-msgid "Save custom graph"
-msgstr ""
-
-#: ../../operation/agentes/graphs.php:375
-msgid "Custom graph create from the tab graphs in the agent."
-msgstr ""
-
-#: ../../operation/agentes/datos_agente.php:173
-msgid "Received data from"
-msgstr ""
-
-#: ../../operation/agentes/datos_agente.php:180
-msgid "Main database"
-msgstr ""
-
-#: ../../operation/agentes/datos_agente.php:180
-msgid "History database"
-msgstr ""
-
-#: ../../operation/agentes/datos_agente.php:181
-msgid ""
-"Switch between the main database and the history database to retrieve module "
-"data"
-msgstr ""
-
-#: ../../operation/agentes/datos_agente.php:211
-#: ../../operation/agentes/alerts_status.functions.php:117
-msgid "Free text for search"
-msgstr ""
-
-#: ../../operation/agentes/interface_view.functions.php:93
-#: ../../operation/agentes/interface_view.functions.php:131
-#: ../../operation/agentes/ver_agente.php:1370
-msgid "Interfaces"
-msgstr ""
-
-#: ../../operation/agentes/interface_view.functions.php:170
-#: ../../operation/agentes/interface_view.functions.php:171
-msgid "Interface filter"
-msgstr ""
-
-#: ../../operation/agentes/interface_view.functions.php:489
-msgid "IfName"
-msgstr ""
-
-#: ../../operation/agentes/interface_view.functions.php:499
-msgid "IfSpeed"
-msgstr ""
-
-#: ../../operation/agentes/interface_view.functions.php:507
-msgid "IfInOctets"
-msgstr ""
-
-#: ../../operation/agentes/interface_view.functions.php:515
-msgid "IfOutOctets"
-msgstr ""
-
-#: ../../operation/agentes/interface_view.functions.php:523
-msgid "% Bandwidth usage (in)"
-msgstr ""
-
-#: ../../operation/agentes/interface_view.functions.php:531
-msgid "% Bandwidth usage (out)"
-msgstr ""
-
-#: ../../operation/agentes/interface_view.functions.php:728
-msgid "No search parameters"
-msgstr ""
-
-#: ../../operation/agentes/snapshot_view.php:42
-msgid "Cannot connect with node to display the module data."
-msgstr ""
-
-#: ../../operation/agentes/snapshot_view.php:88
-#, php-format
-msgid "%s Snapshot data view for module (%s)"
-msgstr ""
-
-#: ../../operation/agentes/snapshot_view.php:94
-#, php-format
-msgid "Current data at %s"
-msgstr ""
-
-#: ../../operation/agentes/exportdata.php:34 ../../operation/menu.php:512
-msgid "Export data"
-msgstr ""
-
-#: ../../operation/agentes/exportdata.php:247
-msgid "Source agent"
-msgstr ""
-
-#: ../../operation/agentes/exportdata.php:282
-msgid "No modules of type string. You can not calculate their average"
-msgstr ""
-
-#: ../../operation/agentes/exportdata.php:346
-#: ../../operation/network/network_report.php:126
-#: ../../operation/network/network_usage_map.php:99
-#: ../../operation/netflow/nf_live_view.php:287
-msgid "End date"
-msgstr ""
-
-#: ../../operation/agentes/exportdata.php:374
-msgid "Export type"
-msgstr ""
-
-#: ../../operation/agentes/exportdata.php:379
-msgid "MS Excel"
-msgstr ""
-
-#: ../../operation/agentes/exportdata.php:380
-msgid "Average per hour/day"
-msgstr ""
-
-#: ../../operation/agentes/custom_fields.php:59
-msgid "No fields defined"
-msgstr ""
-
-#: ../../operation/agentes/interface_view.php:63 ../../operation/menu.php:61
-msgid "Interface view"
-msgstr ""
-
-#: ../../operation/agentes/status_monitor.php:95 ../../operation/menu.php:58
-msgid "Monitor detail"
-msgstr ""
-
-#: ../../operation/agentes/status_monitor.php:119
-msgid "Monitor view"
-msgstr ""
-
-#: ../../operation/agentes/status_monitor.php:500
-msgid "Monitor status"
-msgstr ""
-
-#: ../../operation/agentes/status_monitor.php:559
-#: ../../operation/agentes/alerts_status.functions.php:107
-msgid "Only it is show tags in use."
-msgstr ""
-
-#: ../../operation/agentes/status_monitor.php:564
-#: ../../operation/agentes/alerts_status.functions.php:112
-msgid "No tags"
-msgstr ""
-
-#: ../../operation/agentes/status_monitor.php:645
-msgid "Wux server module"
-msgstr ""
-
-#: ../../operation/agentes/status_monitor.php:660
-msgid "Show monitors..."
-msgstr ""
-
-#: ../../operation/agentes/status_monitor.php:666
-msgid "Min. hours in current status"
-msgstr ""
-
-#: ../../operation/agentes/status_monitor.php:776
-msgid "Not condition"
-msgstr ""
-
-#: ../../operation/agentes/status_monitor.php:776
-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:845
-msgid "Advanced Options"
-msgstr ""
-
-#: ../../operation/agentes/status_monitor.php:854
-msgid "Show filters"
-msgstr ""
-
-#: ../../operation/agentes/status_monitor.php:1313
-msgid "Data Type"
-msgstr ""
-
-#: ../../operation/agentes/status_monitor.php:1432
-#: ../../operation/agentes/pandora_networkmap.view.php:1743
-msgid "(Adopt) "
-msgstr ""
-
-#: ../../operation/agentes/status_monitor.php:1440
-#: ../../operation/agentes/pandora_networkmap.view.php:1751
-msgid "(Unlinked) (Adopt) "
-msgstr ""
-
-#: ../../operation/agentes/status_monitor.php:1443
-#: ../../operation/agentes/pandora_networkmap.view.php:1754
-msgid "(Unlinked) "
-msgstr ""
-
-#: ../../operation/agentes/status_monitor.php:1974
-msgid "This group doesn't have any monitor"
-msgstr ""
-
-#: ../../operation/agentes/status_monitor.php:1976
-msgid "Sorry no search parameters"
-msgstr ""
-
-#: ../../operation/agentes/group_view.php:177
-msgid "Summary of the status groups"
-msgstr ""
-
-#: ../../operation/agentes/group_view.php:310
-#, php-format
-msgid ""
-"This %s installation are using the secondary groups feature. For this "
-"reason, an agent can be counted several times."
-msgstr ""
-
-#: ../../operation/agentes/estado_monitores.php:51
-msgid "Tag's information"
-msgstr ""
-
-#: ../../operation/agentes/estado_monitores.php:109
-msgid "Relationship information"
-msgstr ""
-
-#: ../../operation/agentes/estado_monitores.php:160
-msgid "Non-initialized modules found."
-msgstr ""
-
-#: ../../operation/agentes/estado_monitores.php:181
-msgid "List of modules"
-msgstr ""
-
-#: ../../operation/agentes/estado_monitores.php:182
-msgid ""
-"To see the list of modules paginated, enable this option in the Styles "
-"Configuration."
-msgstr ""
-
-#: ../../operation/agentes/estado_monitores.php:518
-msgid "Status:"
-msgstr ""
-
-#: ../../operation/agentes/estado_monitores.php:524
-msgid "Not Normal"
-msgstr ""
-
-#: ../../operation/agentes/estado_monitores.php:539
-#: ../../operation/agentes/alerts_status.functions.php:177
-msgid "Free text for search (*):"
-msgstr ""
-
-#: ../../operation/agentes/estado_monitores.php:540
-msgid "Search by module name, list matches."
-msgstr ""
-
-#: ../../operation/agentes/estado_monitores.php:602
-msgid "Reset"
-msgstr ""
-
-#: ../../operation/agentes/pandora_networkmap.view.php:1611
-msgid "Success be updated."
-msgstr ""
-
-#: ../../operation/agentes/pandora_networkmap.view.php:1613
-msgid "Could not be updated."
-msgstr ""
-
-#: ../../operation/agentes/pandora_networkmap.view.php:1708
-msgid "Name: "
-msgstr ""
-
-#: ../../operation/agentes/pandora_networkmap.view.php:1758
-msgid "Policy: "
-msgstr ""
-
-#: ../../operation/agentes/pandora_networkmap.view.php:1805
-msgid "Status: "
-msgstr ""
-
-#: ../../operation/agentes/pandora_networkmap.view.php:1855
-msgid "Data: "
-msgstr ""
-
-#: ../../operation/agentes/pandora_networkmap.view.php:1857
-#: ../../operation/agentes/estado_generalagente.php:797
-msgid "Last contact: "
-msgstr ""
-
-#: ../../operation/agentes/ver_agente.php:979
-msgid "Main IP"
-msgstr ""
-
-#: ../../operation/agentes/ver_agente.php:1036
-msgid "Monitors down"
-msgstr ""
-
-#: ../../operation/agentes/ver_agente.php:1194
-msgid "Sons"
-msgstr ""
-
-#: ../../operation/agentes/ver_agente.php:1542
-msgid "Log Viewer"
-msgstr ""
-
-#: ../../operation/agentes/ver_agente.php:1581
-msgid "Terminal"
-msgstr ""
-
-#: ../../operation/agentes/ver_agente.php:1603
-msgid "Processes"
-msgstr ""
-
-#: ../../operation/agentes/ver_agente.php:1614
-#: ../../general/first_task/service_list.php:23
-msgid "Services"
-msgstr ""
-
-#: ../../operation/agentes/ver_agente.php:1625
-msgid "Files"
-msgstr ""
-
-#: ../../operation/agentes/ver_agente.php:1643
-#: ../../operation/agentes/ver_agente.php:1844
-msgid "SAP view"
-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:214
-msgid "IP address"
-msgstr ""
-
-#: ../../operation/agentes/estado_generalagente.php:267
-msgid "Remote configuration enabled"
-msgstr ""
-
-#: ../../operation/agentes/estado_generalagente.php:309
-msgid "Agent contact"
-msgstr ""
-
-#: ../../operation/agentes/estado_generalagente.php:316
-msgid "Refresh data"
-msgstr ""
-
-#: ../../operation/agentes/estado_generalagente.php:357
-msgid "Next contact"
-msgstr ""
-
-#: ../../operation/agentes/estado_generalagente.php:445
-msgid "Agent info"
-msgstr ""
-
-#: ../../operation/agentes/estado_generalagente.php:458
-msgid "There is no GIS data."
-msgstr ""
-
-#: ../../operation/agentes/estado_generalagente.php:579
-msgid "Agent access rate (Last 24h)"
-msgstr ""
-
-#: ../../operation/agentes/estado_generalagente.php:618
-msgid "Active incident on this agent"
-msgstr ""
-
-#: ../../operation/agentes/estado_generalagente.php:777
-msgid "Events info (24hr.)"
-msgstr ""
-
-#: ../../operation/agentes/estado_generalagente.php:870
-msgid "Events (Last 24h)"
-msgstr ""
-
-#: ../../operation/agentes/estado_generalagente.php:922
-msgid "Interface information (SNMP)"
-msgstr ""
-
-#: ../../operation/agentes/alerts_status.functions.php:50
-msgid "Alert(s) validated"
-msgstr ""
-
-#: ../../operation/agentes/alerts_status.functions.php:51
-msgid "Error processing alert(s)"
-msgstr ""
-
-#: ../../operation/agentes/alerts_status.functions.php:118
-msgid "Filter by agent name, module name, template name or action name"
-msgstr ""
-
-#: ../../operation/agentes/alerts_status.functions.php:129
-msgid "No actions"
-msgstr ""
-
-#: ../../operation/agentes/alerts_status.functions.php:178
-msgid "Filter by module name, template name or action name"
-msgstr ""
-
-#: ../../operation/agentes/tactical.php:201
-msgid "Report of State"
-msgstr ""
-
-#: ../../operation/messages/message_list.php:46
-#: ../../operation/messages/message_list.php:55
-#: ../../operation/messages/message_edit.php:66
-msgid "Sent messages"
-msgstr ""
-
-#: ../../operation/messages/message_list.php:46
-#: ../../operation/messages/message_list.php:50
-#: ../../operation/messages/message_edit.php:54
-msgid "Received messages"
-msgstr ""
-
-#: ../../operation/messages/message_list.php:64
-#: ../../operation/messages/message_list.php:304
-#: ../../operation/messages/message_edit.php:78
-msgid "Create message"
-msgstr ""
-
-#: ../../operation/messages/message_list.php:90
-#: ../../operation/messages/message_edit.php:103 ../../operation/menu.php:490
-msgid "Messages"
-msgstr ""
-
-#: ../../operation/messages/message_list.php:136
-msgid "Not deleted. Error deleting messages"
-msgstr ""
-
-#: ../../operation/messages/message_list.php:144
-#: ../../operation/messages/message_list.php:153
-msgid "You have"
-msgstr ""
-
-#: ../../operation/messages/message_list.php:144
-msgid "sent message(s)"
-msgstr ""
-
-#: ../../operation/messages/message_list.php:153
-msgid "unread message(s)"
-msgstr ""
-
-#: ../../operation/messages/message_list.php:164
-msgid "There are no messages."
-msgstr ""
-
-#: ../../operation/messages/message_list.php:194
-#: ../../operation/messages/message_edit.php:269
-msgid "Destination"
-msgstr ""
-
-#: ../../operation/messages/message_list.php:196
-#: ../../operation/messages/message_edit.php:265
-msgid "Sender"
-msgstr ""
-
-#: ../../operation/messages/message_list.php:214
-msgid "Click to read"
-msgstr ""
-
-#: ../../operation/messages/message_list.php:218
-msgid "Mark as unread"
-msgstr ""
-
-#: ../../operation/messages/message_list.php:224
-#: ../../operation/messages/message_list.php:228
-msgid "Message unread - click to read"
-msgstr ""
-
-#: ../../operation/messages/message_list.php:256
-msgid "No Subject"
-msgstr ""
-
-#: ../../operation/messages/message_edit.php:90
-msgid "Compose message"
-msgstr ""
-
-#: ../../operation/messages/message_edit.php:119
-msgid "This message does not exist in the system"
-msgstr ""
-
-#: ../../operation/messages/message_edit.php:188
-msgid "wrote"
-msgstr ""
-
-#: ../../operation/messages/message_edit.php:203
-msgid "Delete conversation"
-msgstr ""
-
-#: ../../operation/messages/message_edit.php:211
-msgid "Reply"
-msgstr ""
-
-#: ../../operation/messages/message_edit.php:226
-msgid "User or group must be selected."
-msgstr ""
-
-#: ../../operation/messages/message_edit.php:244
-#, php-format
-msgid "Message successfully sent to user %s"
-msgstr ""
-
-#: ../../operation/messages/message_edit.php:245
-#, php-format
-msgid "Error sending message to user %s"
-msgstr ""
-
-#: ../../operation/messages/message_edit.php:324
-msgid "Select user"
-msgstr ""
-
-#: ../../operation/messages/message_edit.php:330
-msgid "OR"
-msgstr ""
-
-#: ../../operation/messages/message_edit.php:341
-msgid "Select group"
-msgstr ""
-
-#: ../../operation/messages/message_edit.php:360
-msgid "Message"
-msgstr ""
-
-#: ../../operation/messages/message_edit.php:396
-msgid "Send message"
-msgstr ""
-
-#: ../../operation/network/network_report.php:67
-#: ../../operation/network/network_usage_map.php:124
-msgid "Data to show"
-msgstr ""
-
-#: ../../operation/network/network_report.php:78
-#: ../../operation/network/network_usage_map.php:104
-msgid "Number of result to show"
-msgstr ""
-
-#: ../../operation/network/network_report.php:102
-#: ../../operation/network/network_usage_map.php:75
-#: ../../operation/netflow/nf_live_view.php:263
-msgid "Start date"
-msgstr ""
-
-#: ../../operation/network/network_report.php:109
-#: ../../operation/network/network_usage_map.php:82
-msgid "Time Period"
-msgstr ""
-
-#: ../../operation/network/network_report.php:121
-#: ../../operation/network/network_usage_map.php:94
-#: ../../operation/netflow/nf_live_view.php:284
-msgid "Select this checkbox to write interval instead a date."
-msgstr ""
-
-#: ../../operation/network/network_report.php:186
-#: ../../operation/network/network_report.php:233
-msgid "Flows"
-msgstr ""
-
-#: ../../operation/network/network_report.php:197
-#: ../../operation/network/network_report.php:235
-msgid "Packets"
-msgstr ""
-
-#: ../../operation/network/network_report.php:256
-#, php-format
-msgid "Filtered by port %s. Click here to remove the filter."
-msgstr ""
-
-#: ../../operation/network/network_report.php:256
-#, php-format
-msgid "Filtered by IP %s. Click here to remove the filter."
-msgstr ""
-
-#: ../../operation/network/network_usage_map.php:29
-#: ../../operation/menu.php:103
-msgid "Network usage map"
-msgstr ""
-
-#: ../../operation/network/network_usage_map.php:139
-msgid "Show netflow map"
-msgstr ""
-
-#: ../../operation/network/network_usage_map.php:175
-msgid "No data retrieved"
-msgstr ""
-
-#: ../../operation/netflow/nf_live_view.php:123
-#: ../../operation/netflow/nf_live_view.php:145
-#: ../../operation/netflow/nf_live_view.php:151
-msgid "Netflow live view"
-msgstr ""
-
-#: ../../operation/netflow/nf_live_view.php:162
-msgid "Error creating filter"
-msgstr ""
-
-#: ../../operation/netflow/nf_live_view.php:164
-msgid "Filter created successfully"
-msgstr ""
-
-#: ../../operation/netflow/nf_live_view.php:183
-msgid "Filter updated successfully"
-msgstr ""
-
-#: ../../operation/netflow/nf_live_view.php:184
-msgid "Error updating filter"
-msgstr ""
-
-#: ../../operation/netflow/nf_live_view.php:208
-msgid "Draw live filter"
-msgstr ""
-
-#: ../../operation/netflow/nf_live_view.php:242
-msgid "Connection"
-msgstr ""
-
-#: ../../operation/netflow/nf_live_view.php:295
-#: ../../operation/incidents/integriaims_export_csv.php:84
-#: ../../operation/incidents/configure_integriaims_incident.php:325
-#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:323
-#: ../../operation/incidents/list_integriaims_incidents.php:359
-msgid "Resolution"
-msgstr ""
-
-#: ../../operation/netflow/nf_live_view.php:295
-msgid "The interval will be divided in chunks the length of the resolution."
-msgstr ""
-
-#: ../../operation/netflow/nf_live_view.php:396
-msgid "Select a filter"
-msgstr ""
-
-#: ../../operation/netflow/nf_live_view.php:469
-msgid "IP address resolution"
-msgstr ""
-
-#: ../../operation/netflow/nf_live_view.php:469
-msgid "Resolve the IP addresses to get their hostnames."
-msgstr ""
-
-#: ../../operation/netflow/nf_live_view.php:472
-msgid "Source ip"
-msgstr ""
-
-#: ../../operation/netflow/nf_live_view.php:495
-msgid "Draw"
-msgstr ""
-
-#: ../../operation/netflow/nf_live_view.php:499
-msgid "Save as new filter"
-msgstr ""
-
-#: ../../operation/netflow/nf_live_view.php:500
-msgid "Update current filter"
-msgstr ""
-
-#: ../../operation/netflow/nf_live_view.php:514
-msgid "No filter selected"
-msgstr ""
-
-#: ../../operation/netflow/netflow_explorer.php:37 ../../operation/menu.php:89
-msgid "Netflow explorer"
-msgstr ""
-
-#: ../../operation/snmpconsole/snmp_statistics.php:78
-#: ../../operation/snmpconsole/snmp_view.php:99
-#: ../../operation/incidents/incident_statistics.php:21
-msgid "Statistics"
-msgstr ""
-
-#: ../../operation/snmpconsole/snmp_statistics.php:85
-msgid "SNMP Statistics"
-msgstr ""
-
-#: ../../operation/snmpconsole/snmp_statistics.php:102
-#: ../../operation/snmpconsole/snmp_view.php:697
-#: ../../operation/snmpconsole/snmp_view.php:806 ../../operation/menu.php:138
-msgid "SNMP"
-msgstr ""
-
-#: ../../operation/snmpconsole/snmp_statistics.php:156
-#: ../../operation/snmpconsole/snmp_view.php:720
-msgid "There are no SNMP traps in database"
-msgstr ""
-
-#: ../../operation/snmpconsole/snmp_statistics.php:169
-msgid "Traps received by source"
-msgstr ""
-
-#: ../../operation/snmpconsole/snmp_statistics.php:183
-#: ../../operation/snmpconsole/snmp_statistics.php:251
-msgid "Number"
-msgstr ""
-
-#: ../../operation/snmpconsole/snmp_statistics.php:197
-#: ../../operation/snmpconsole/snmp_view.php:962
-msgid "View agent details"
-msgstr ""
-
-#: ../../operation/snmpconsole/snmp_statistics.php:237
-msgid "Traps received by Enterprise String"
-msgstr ""
-
-#: ../../operation/snmpconsole/snmp_statistics.php:250
-msgid "Trap Enterprise String"
-msgstr ""
-
-#: ../../operation/snmpconsole/snmp_browser.php:74
-msgid "SNMP Browser"
-msgstr ""
-
-#: ../../operation/snmpconsole/snmp_browser.php:215
-msgid "Adding modules in progress"
-msgstr ""
-
-#: ../../operation/snmpconsole/snmp_browser.php:549
-msgid "Create policy"
-msgstr ""
-
-#: ../../operation/snmpconsole/snmp_browser.php:636
-msgid "Create module"
-msgstr ""
-
-#: ../../operation/snmpconsole/snmp_browser.php:641
-msgid "Are you sure you want add module?"
-msgstr ""
-
-#: ../../operation/snmpconsole/snmp_view.php:602
-msgid ""
-"Search by any alphanumeric field in the trap.\n"
-"\t\tREMEMBER trap sources need to be searched by IP Address"
-msgstr ""
-
-#: ../../operation/snmpconsole/snmp_view.php:628
-msgid "Search by trap type"
-msgstr ""
-
-#: ../../operation/snmpconsole/snmp_view.php:652
-msgid "Group by Enterprise String/IP"
-msgstr ""
-
-#: ../../operation/snmpconsole/snmp_view.php:718
-msgid "There are no SNMP traps in database that contains this filter"
-msgstr ""
-
-#: ../../operation/snmpconsole/snmp_view.php:758
-msgid "Refresh every"
-msgstr ""
-
-#: ../../operation/snmpconsole/snmp_view.php:770
-msgid "SNMP Traps"
-msgstr ""
-
-#: ../../operation/snmpconsole/snmp_view.php:871
-msgid "Trap subtype"
-msgstr ""
-
-#: ../../operation/snmpconsole/snmp_view.php:1076
-msgid "Variable bindings:"
-msgstr ""
-
-#: ../../operation/snmpconsole/snmp_view.php:1089
-msgid "See more details"
-msgstr ""
-
-#: ../../operation/snmpconsole/snmp_view.php:1101
-msgid "Enterprise String:"
-msgstr ""
-
-#: ../../operation/snmpconsole/snmp_view.php:1107
-msgid "Description:"
-msgstr ""
-
-#: ../../operation/snmpconsole/snmp_view.php:1153
-msgid "Trap type:"
-msgstr ""
-
-#: ../../operation/snmpconsole/snmp_view.php:1179
-msgid "Count:"
-msgstr ""
-
-#: ../../operation/snmpconsole/snmp_view.php:1183
-msgid "First trap:"
-msgstr ""
-
-#: ../../operation/snmpconsole/snmp_view.php:1187
-msgid "Last trap:"
-msgstr ""
-
-#: ../../operation/snmpconsole/snmp_view.php:1208
-msgid "No matching traps found"
-msgstr ""
-
-#: ../../operation/snmpconsole/snmp_mib_uploader.php:44
-#: ../../operation/menu.php:128
-msgid "MIB uploader"
-msgstr ""
-
-#: ../../operation/snmpconsole/snmp_mib_uploader.php:83
-msgid ""
-"MIB files will be installed on the system. Please note that a MIB may depend "
-"on other MIB. To customize trap definitions use the SNMP trap editor."
-msgstr ""
-
-#: ../../operation/menu.php:93
-msgid "Netflow Live View"
-msgstr ""
-
-#: ../../operation/menu.php:123
-msgid "SNMP browser"
-msgstr ""
-
-#: ../../operation/menu.php:132
-msgid "SNMP filters"
-msgstr ""
-
-#: ../../operation/menu.php:257 ../../operation/gis_maps/gis_map.php:35
-msgid "GIS Maps"
-msgstr ""
-
-#: ../../operation/menu.php:262
-msgid "List of Gis maps"
-msgstr ""
-
-#: ../../operation/menu.php:413
-msgid "RSS"
-msgstr ""
-
-#: ../../operation/menu.php:422 ../../operation/events/sound_events.php:61
-msgid "Sound Events"
-msgstr ""
-
-#: ../../operation/menu.php:440 ../../operation/events/events.php:957
-msgid "Sound Alerts"
-msgstr ""
-
-#: ../../operation/menu.php:457 ../../general/header.php:403
-#: ../../general/header.php:413
-msgid "Edit my user"
-msgstr ""
-
-#: ../../operation/menu.php:462
-msgid "Configure user notifications"
-msgstr ""
-
-#: ../../operation/menu.php:482
-msgid "Integria IMS statistics"
-msgstr ""
-
-#: ../../operation/menu.php:483
-msgid "Integria IMS ticket list"
-msgstr ""
-
-#: ../../operation/menu.php:496
-msgid "Messages List"
-msgstr ""
-
-#: ../../operation/menu.php:497
-msgid "New message"
-msgstr ""
-
-#: ../../operation/menu.php:518
-msgid "Scheduled downtime"
-msgstr ""
-
-#: ../../operation/menu.php:592
-msgid "Tools"
-msgstr ""
-
-#: ../../operation/gis_maps/gis_map.php:200
-msgid "No maps found"
-msgstr ""
-
-#: ../../operation/gis_maps/gis_map.php:219
-msgid "Caution: Do you want delete the map?"
-msgstr ""
-
-#: ../../operation/gis_maps/gis_map.php:226
-msgid "Do you want to set default the map?"
-msgstr ""
-
-#: ../../operation/gis_maps/gis_map.php:234
-msgid "There was error on setup the default map."
-msgstr ""
-
-#: ../../operation/gis_maps/render_view.php:154
-msgid "2 hours"
-msgstr ""
-
-#: ../../operation/gis_maps/render_view.php:167
-msgid "Filter by status"
-msgstr ""
-
-#: ../../operation/gis_maps/ajax.php:237 ../../operation/gis_maps/ajax.php:275
-#: ../../operation/gis_maps/ajax.php:444
-msgid "Position (Lat, Long, Alt)"
-msgstr ""
-
-#: ../../operation/gis_maps/ajax.php:238
-msgid "Start contact"
-msgstr ""
-
-#: ../../operation/gis_maps/ajax.php:240
-msgid "Num reports"
-msgstr ""
-
-#: ../../operation/gis_maps/ajax.php:279 ../../operation/gis_maps/ajax.php:448
-msgid "Default position of map."
-msgstr ""
-
-#: ../../operation/gis_maps/ajax.php:339
-msgid "Satellite Version"
-msgstr ""
-
-#: ../../operation/gis_maps/ajax.php:385 ../../operation/gis_maps/ajax.php:502
-msgid "Number of non-validated critical events"
-msgstr ""
-
-#: ../../operation/gis_maps/ajax.php:395 ../../operation/gis_maps/ajax.php:512
-msgid "Alert(s) fired"
-msgstr ""
-
-#: ../../operation/incidents/integriaims_export_csv.php:80
-msgid "ID Ticket"
-msgstr ""
-
-#: ../../operation/incidents/integriaims_export_csv.php:82
-#: ../../operation/incidents/list_integriaims_incidents.php:517
-msgid "Group/Company"
-msgstr ""
-
-#: ../../operation/incidents/integriaims_export_csv.php:87
-msgid "Started"
-msgstr ""
-
-#: ../../operation/incidents/integriaims_export_csv.php:88
-#: ../../operation/incidents/configure_integriaims_incident.php:282
-#: ../../operation/incidents/list_integriaims_incidents.php:345
-#: ../../operation/incidents/list_integriaims_incidents.php:521
-msgid "Creator"
-msgstr ""
-
-#: ../../operation/incidents/incident_statistics.php:29
-msgid "Incidents by status"
-msgstr ""
-
-#: ../../operation/incidents/incident_statistics.php:32
-msgid "Incidents by priority"
-msgstr ""
-
-#: ../../operation/incidents/incident_statistics.php:35
-msgid "Incidents by group"
-msgstr ""
-
-#: ../../operation/incidents/incident_statistics.php:38
-msgid "Incidents by user"
-msgstr ""
-
-#: ../../operation/incidents/configure_integriaims_incident.php:26
-msgid "Update Integria IMS Ticket"
-msgstr ""
-
-#: ../../operation/incidents/configure_integriaims_incident.php:28
-msgid "Create Integria IMS Ticket"
-msgstr ""
-
-#: ../../operation/incidents/configure_integriaims_incident.php:123
-msgid "Successfully created in Integria IMS"
-msgstr ""
-
-#: ../../operation/incidents/configure_integriaims_incident.php:124
-msgid "Could not be created in Integria IMS"
-msgstr ""
-
-#: ../../operation/incidents/configure_integriaims_incident.php:144
-msgid "Successfully updated in Integria IMS"
-msgstr ""
-
-#: ../../operation/incidents/configure_integriaims_incident.php:145
-msgid "Could not be updated in Integria IMS"
-msgstr ""
-
-#: ../../operation/incidents/configure_integriaims_incident.php:294
-msgid ""
-"This field corresponds to the Integria IMS user specified in Integria IMS "
-"setup"
-msgstr ""
-
-#: ../../operation/incidents/configure_integriaims_incident.php:352
-#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:206
-msgid "File name"
-msgstr ""
-
-#: ../../operation/incidents/configure_integriaims_incident.php:354
-#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:208
-msgid "Attachment description"
-msgstr ""
-
-#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:77
-msgid "Not yet"
-msgstr ""
-
-#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:81
-msgid "Not closed yet"
-msgstr ""
-
-#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:115
-#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:246
-msgid "Filename"
-msgstr ""
-
-#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:124
-msgid "No description available"
-msgstr ""
-
-#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:142
-msgid "File successfully deleted"
-msgstr ""
-
-#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:143
-msgid "File could not be deleted"
-msgstr ""
-
-#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:222
-msgid "Add attachment"
-msgstr ""
-
-#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:224
-#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:397
-msgid "Attached files"
-msgstr ""
-
-#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:282
-msgid "Comment successfully added"
-msgstr ""
-
-#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:283
-msgid "Comment could not be added"
-msgstr ""
-
-#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:309
-msgid "No comments found"
-msgstr ""
-
-#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:349
-msgid "Created by"
-msgstr ""
-
-#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:350
-msgid "Owned by"
-msgstr ""
-
-#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:351
-msgid "Closed by"
-msgstr ""
-
-#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:366
-msgid "Created at"
-msgstr ""
-
-#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:368
-msgid "Closed at"
-msgstr ""
-
-#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:379
-msgid "People"
-msgstr ""
-
-#: ../../operation/incidents/list_integriaims_incidents.php:24
-msgid "Integria IMS Tickets"
-msgstr ""
-
-#: ../../operation/incidents/list_integriaims_incidents.php:317
-msgid "Text filter"
-msgstr ""
-
-#: ../../operation/incidents/list_integriaims_incidents.php:381
-msgid "Created from"
-msgstr ""
-
-#: ../../operation/incidents/list_integriaims_incidents.php:393
-msgid "Created to"
-msgstr ""
-
-#: ../../operation/incidents/list_integriaims_incidents.php:518
-msgid "Status/Resolution"
-msgstr ""
-
-#: ../../operation/incidents/list_integriaims_incidents.php:520
-msgid "Updated/Started"
-msgstr ""
-
-#: ../../operation/incidents/list_integriaims_incidents.php:564
-msgid "No tickets to show"
-msgstr ""
-
-#: ../../operation/search_main.php:54
-msgid "Agents found"
-msgstr ""
-
-#: ../../operation/search_main.php:55 ../../operation/search_main.php:57
-#: ../../operation/search_main.php:65 ../../operation/search_main.php:67
-#: ../../operation/search_main.php:69 ../../operation/search_main.php:71
-#: ../../operation/search_main.php:74
-#, php-format
-msgid "%s Found"
-msgstr ""
-
-#: ../../operation/search_main.php:64
-msgid "Users found"
-msgstr ""
-
-#: ../../operation/search_main.php:66
-msgid "Graphs found"
-msgstr ""
-
-#: ../../operation/search_main.php:68
-msgid "Reports found"
-msgstr ""
-
-#: ../../operation/search_main.php:83
-#, php-format
-msgid "Show %s of %s. View all matches"
-msgstr ""
-
-#: ../../operation/reporting/reporting_viewer.php:246
-msgid "View Report"
-msgstr ""
-
-#: ../../operation/reporting/reporting_viewer.php:288
-msgid "Set initial date"
-msgstr ""
-
-#: ../../operation/reporting/reporting_viewer.php:318
-msgid "Invalid date selected. Initial date must be before end date."
-msgstr ""
-
-#: ../../operation/reporting/reporting_viewer.php:423
-#: ../../operation/reporting/graph_viewer.php:499
-msgid "Invalid date selected"
-msgstr ""
-
-#: ../../operation/reporting/custom_reporting.php:28
-#: ../../operation/reporting/graph_viewer.php:533
-msgid "There are no defined reportings"
-msgstr ""
-
-#: ../../operation/reporting/graph_viewer.php:329
-msgid "No data."
-msgstr ""
-
-#: ../../operation/reporting/graph_viewer.php:363
-#: ../../operation/reporting/graph_viewer.php:385
-msgid "Graph defined"
-msgstr ""
-
-#: ../../operation/reporting/graph_viewer.php:377
-msgid "Equalize maxiddmum thresholds"
-msgstr ""
-
-#: ../../operation/reporting/graph_viewer.php:377
-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:386
-msgid "Zoom x1"
-msgstr ""
-
-#: ../../operation/reporting/graph_viewer.php:387
-msgid "Zoom x2"
-msgstr ""
-
-#: ../../operation/reporting/graph_viewer.php:388
-msgid "Zoom x3"
-msgstr ""
-
-#: ../../operation/reporting/graph_viewer.php:507
-msgid "Custom graph viewer"
-msgstr ""
-
-#: ../../operation/events/events_list.php:356
-#: ../../operation/events/events_list.php:1095
-msgid "No filter loaded"
-msgstr ""
-
-#: ../../operation/events/events_list.php:364
-#: ../../operation/events/events_list.php:1095
-msgid "Filter loaded"
-msgstr ""
-
-#: ../../operation/events/events_list.php:981
-#: ../../operation/events/events.php:1109
-msgid "Group agents"
-msgstr ""
-
-#: ../../operation/events/events_list.php:1009
-#: ../../operation/events/events.php:1331
-msgid "Id source event"
-msgstr ""
-
-#: ../../operation/events/events_list.php:1101
-#: ../../operation/events/events_list.php:1103
-msgid "Event control filter"
-msgstr ""
-
-#: ../../operation/events/events_list.php:1111
-msgid "Error creating filter."
-msgstr ""
-
-#: ../../operation/events/events_list.php:1115
-msgid "Error creating filter is duplicated."
-msgstr ""
-
-#: ../../operation/events/events_list.php:1119
-msgid "Filter created."
-msgstr ""
-
-#: ../../operation/events/events_list.php:1124
-msgid "Filter updated."
-msgstr ""
-
-#: ../../operation/events/events_list.php:1128
-msgid "Error updating filter."
-msgstr ""
-
-#: ../../operation/events/sound_events.php:83
-msgid "Sound console"
-msgstr ""
-
-#: ../../operation/events/sound_events.php:183
-msgid "Event"
-msgstr ""
-
-#: ../../operation/events/events_rss.php:195
-msgid "Your IP is not into the IP list with API access."
-msgstr ""
-
-#: ../../operation/events/events_rss.php:214
-msgid "The URL of your feed has bad hash."
-msgstr ""
-
-#: ../../operation/events/events.php:789
-msgid "Event viewer"
-msgstr ""
-
-#: ../../operation/events/events.php:836
-msgid "History event list"
-msgstr ""
-
-#: ../../operation/events/events.php:847
-msgid "RSS Events"
-msgstr ""
-
-#: ../../operation/events/events.php:858
-msgid "Export to CSV file"
-msgstr ""
-
-#: ../../operation/events/events.php:869 ../../operation/events/events.php:917
-msgid "Sound events"
-msgstr ""
-
-#: ../../operation/events/events.php:922
-msgid "History"
-msgstr ""
-
-#: ../../operation/events/events.php:986
-msgid "Errors"
-msgstr ""
-
-#: ../../operation/events/events.php:1012
-msgid ""
-"Event viewer is disabled due event replication. For more information, please "
-"contact with the administrator"
-msgstr ""
-
-#: ../../operation/events/events.php:1389
-msgid "From (date:time)"
-msgstr ""
-
-#: ../../operation/events/events.php:1447
-msgid "To (date:time)"
-msgstr ""
-
-#: ../../operation/events/events.php:1598
-msgid "Current filter"
-msgstr ""
-
-#: ../../operation/events/events.php:1603
-msgid "Not set."
-msgstr ""
-
-#: ../../operation/events/events.php:1616
-msgid "Any status."
-msgstr ""
-
-#: ../../operation/events/events.php:1620
-msgid "New events."
-msgstr ""
-
-#: ../../operation/events/events.php:1624
-msgid "Validated."
-msgstr ""
-
-#: ../../operation/events/events.php:1628
-msgid "In proccess."
-msgstr ""
-
-#: ../../operation/events/events.php:1632
-msgid "Not validated."
-msgstr ""
-
-#: ../../operation/events/events.php:1644
-msgid "Any time."
-msgstr ""
-
-#: ../../operation/events/events.php:1646
-#: ../../operation/events/events.php:2554
-msgid "Last hour."
-msgstr ""
-
-#: ../../operation/events/events.php:1648
-#, php-format
-msgid "Last %d hours."
-msgstr ""
-
-#: ../../operation/events/events.php:1656
-msgid "Duplicated"
-msgstr ""
-
-#: ../../operation/events/events.php:1659
-msgid "All events."
-msgstr ""
-
-#: ../../operation/events/events.php:1663
-msgid "Group agents."
-msgstr ""
-
-#: ../../operation/events/events.php:1753
-msgid "In progress selected"
-msgstr ""
-
-#: ../../operation/events/events.php:1754
-msgid "Validate selected"
-msgstr ""
-
-#: ../../operation/events/events.php:1788
-#: ../../operation/events/events.build_table.php:1001
-msgid "Execute event response"
-msgstr ""
-
-#: ../../operation/events/events.php:1801
-#: ../../operation/events/events.build_table.php:1009
-#, php-format
-msgid "A maximum of %s event custom responses can be selected"
-msgstr ""
-
-#: ../../operation/events/events.php:1806
-#: ../../operation/events/events.build_table.php:1014
-msgid "Please, select an event"
-msgstr ""
-
-#: ../../operation/events/events.php:1895
-msgid "has at least"
-msgstr ""
-
-#: ../../operation/events/events.php:1897
-msgid "events"
-msgstr ""
-
-#: ../../operation/events/events.php:2141
-msgid "Validate events"
-msgstr ""
-
-#: ../../operation/events/events.php:2156
-#: ../../operation/events/events.build_table.php:860
-msgid "Change to in progress status"
-msgstr ""
-
-#: ../../operation/events/events.php:2165
-msgid "Delete events"
-msgstr ""
-
-#: ../../operation/events/events.php:2556
-msgid "hours."
-msgstr ""
-
-#: ../../operation/events/events.build_table.php:81
-msgid "More detail"
-msgstr ""
-
-#: ../../operation/events/events.build_table.php:105
-#: ../../operation/events/events.build_table.php:107
-msgid "The Agent: "
-msgstr ""
-
-#: ../../operation/events/events.build_table.php:105
-#: ../../operation/events/events.build_table.php:107
-msgid " has "
-msgstr ""
-
-#: ../../operation/events/events.build_table.php:105
-#: ../../operation/events/events.build_table.php:107
-msgid " events."
-msgstr ""
-
-#: ../../operation/search_policies.php:36
-msgid "Id_group"
-msgstr ""
-
-#: ../../operation/search_policies.php:49
-msgid "Policy updated"
-msgstr ""
-
-#: ../../operation/search_policies.php:57
-msgid "Pending update policy only database"
-msgstr ""
-
-#: ../../operation/search_policies.php:65
-msgid "Pending update policy"
-msgstr ""
-
-#: ../../operation/servers/recon_view.php:32
-#: ../../operation/servers/recon_view.php:38
-#: ../../operation/servers/recon_view.php:52
-msgid "Recon View"
-msgstr ""
-
-#: ../../operation/servers/recon_view.php:147
-msgid "Network recon task"
-msgstr ""
-
-#: ../../operation/servers/recon_view.php:174
-msgid "has no recon tasks assigned"
-msgstr ""
-
-#: ../../operation/search_maps.php:29
-msgid "Elements"
-msgstr ""
-
-#: ../../general/footer.php:47
-#, php-format
-msgid "%s %s - %s - MR %s"
-msgstr ""
-
-#: ../../general/footer.php:52
-#, php-format
-msgid "Page generated on %s"
-msgstr ""
-
-#: ../../general/php7_message.php:38
-msgid "Access Help"
-msgstr ""
-
-#: ../../general/php7_message.php:41
-msgid "Warning php version"
-msgstr ""
-
-#: ../../general/first_task/incidents.php:21
-msgid "There are no incidents defined yet."
-msgstr ""
-
-#: ../../general/first_task/incidents.php:31
-#: ../../general/first_task/incidents.php:46
-msgid "Create Incidents"
-msgstr ""
-
-#: ../../general/first_task/incidents.php:34
-#, php-format
-msgid ""
-"Besides receiving and processing data to monitor systems or applications,\n"
-"\t\t\tyou're also required to monitor possible incidents which might take "
-"place on these subsystems within the system's monitoring process.\n"
-"\t\t\tFor it, the %s team has designed an incident manager from which any "
-"user is able to open incidents,\n"
-"\t\t\tthat explain what's happened on the network, and update them with "
-"comments and files, at any time, in case there is a need to do so.\n"
-"\t\t\tThis system allows users to work as a team, along with different roles "
-"and work-flow systems which allow an incident to be\n"
-"\t\t\tmoved from one group to another, and members from different groups and "
-"different people could work on the same incident, sharing information and "
-"files.\n"
-"\t\t"
-msgstr ""
-
-#: ../../general/first_task/recon_view.php:18
-msgid "There are no discovery tasks defined yet."
-msgstr ""
-
-#: ../../general/first_task/recon_view.php:25
-msgid "Create Discovery Task"
-msgstr ""
-
-#: ../../general/first_task/recon_view.php:28
-msgid ""
-"Discovery Task are used to find new elements in the network. \n"
-"\t\tIf it detects any item, it will add that item to the monitoring, and if "
-"that item it is already being monitored, then it will \n"
-"\t\tignore it or will update its information.There are three types of "
-"detection: Based on <strong id=\"fuerte\"> ICMP </strong>(pings), \n"
-"\t\t<strong id=\"fuerte\">SNMP</strong> (detecting the topology of networks "
-"and their interfaces), and other <strong id=\"fuerte\"> customized </"
-"strong>\n"
-"\t\ttype. You can define your own customized recon script."
-msgstr ""
-
-#: ../../general/first_task/recon_view.php:37
-msgid "Discover"
-msgstr ""
-
-#: ../../general/first_task/HA_cluster_builder.php:37
-msgid "There are no HA clusters defined yet."
-msgstr ""
-
-#: ../../general/first_task/HA_cluster_builder.php:42
-#: ../../general/first_task/cluster_builder.php:29
-#: ../../general/first_task/cluster_builder.php:51
-msgid "Clusters"
-msgstr ""
-
-#: ../../general/first_task/HA_cluster_builder.php:45
-msgid "PANDORA FMS DB CLUSTER"
-msgstr ""
-
-#: ../../general/first_task/HA_cluster_builder.php:48
-msgid ""
-"With Pandora FMS Enterprise you can add high availability to your Pandora "
-"FMS installation by adding redundant MySQL servers"
-msgstr ""
-
-#: ../../general/first_task/HA_cluster_builder.php:50
-msgid ""
-"Click on \"add new node\" to start transforming your Pandora FMS DB Cluster "
-"into a Pandora FMS DB Cluster."
-msgstr ""
-
-#: ../../general/first_task/HA_cluster_builder.php:59
-msgid "Add new node"
-msgstr ""
-
-#: ../../general/first_task/map_builder.php:34
-#: ../../general/first_task/map_builder.php:45
-msgid "Create Visual Console"
-msgstr ""
-
-#: ../../general/first_task/map_builder.php:37
-#, php-format
-msgid ""
-"%s allows users to create visual maps on which each user is able to create "
-"his or her own monitoring map. The new visual console editor is much more "
-"practical, although the prior visual console editor had its advantages. On "
-"the new visual console, we've been successful in imitating the sensation and "
-"touch of a drawing application like GIMP. We've also simplified the editor "
-"by dividing it into several subject-divided tabs named 'Data', 'Preview', "
-"'Wizard', 'List of Elements' and 'Editor'. The items the %s Visual Map was "
-"designed to handle are 'static images', 'percentage bars', 'module graphs' "
-"and 'simple values'."
-msgstr ""
-
-#: ../../general/first_task/cluster_builder.php:46
-msgid "There are no clusters defined yet."
-msgstr ""
-
-#: ../../general/first_task/cluster_builder.php:54
-#: ../../general/first_task/cluster_builder.php:72
-msgid "Create Cluster"
-msgstr ""
-
-#: ../../general/first_task/cluster_builder.php:57
-msgid ""
-"A cluster is a group of devices that provide the same service in high "
-"availability."
-msgstr ""
-
-#: ../../general/first_task/cluster_builder.php:59
-msgid "Depending on how they provide that service, we can find two types:"
-msgstr ""
-
-#: ../../general/first_task/cluster_builder.php:61
-msgid ""
-"<b>Clusters to balance the service load</b>: these are  active - active (A/"
-"A)  mode clusters. It means that all the nodes (or machines that compose it) "
-"are working. They must be working because if one stops working, it will "
-"overload the others."
-msgstr ""
-
-#: ../../general/first_task/cluster_builder.php:63
-msgid ""
-"<b>Clusters to guarantee service</b>: these are active - passive (A/P) mode "
-"clusters. It means that one of the nodes (or machines that make up the "
-"cluster) will be running (primary) and another won't (secondary). When the "
-"primary goes down, the secondary must take over and give the service "
-"instead. Although many of the elements of this cluster are active-passive, "
-"it will also have active elements in both of them that indicate that the "
-"passive node is \"online\", so that in the case of a service failure in the "
-"master, the active node collects this information."
-msgstr ""
-
-#: ../../general/first_task/network_map.php:19
-msgid "There are no network map defined yet."
-msgstr ""
-
-#: ../../general/first_task/network_map.php:26
-msgid "Network Map"
-msgstr ""
-
-#: ../../general/first_task/network_map.php:29
-#: ../../general/first_task/network_map.php:50
-msgid "Create Network Map"
-msgstr ""
-
-#: ../../general/first_task/network_map.php:32
-msgid ""
-"There is also an open-source version of the network map. \n"
-"\t\t\t\t\t\t\t\tThis functionality allows to graphically display the nodes "
-"and relationships, agents, modules and groups available to the user. \n"
-"\t\t\t\t\t\t\t\tThere are three types of network maps:\n"
-"\t\t\t"
-msgstr ""
-
-#: ../../general/first_task/network_map.php:37
-msgid "Topology Map"
-msgstr ""
-
-#: ../../general/first_task/network_map.php:38
-msgid "Group Map"
-msgstr ""
-
-#: ../../general/first_task/network_map.php:39
-msgid "Radial Map (User without strict user)"
-msgstr ""
-
-#: ../../general/first_task/network_map.php:40
-msgid "Dinamic Map"
-msgstr ""
-
-#: ../../general/first_task/network_map.php:41
-msgid "Policy Map (Only Enterprise version)"
-msgstr ""
-
-#: ../../general/first_task/tags.php:18
-msgid "There are no tags defined yet."
-msgstr ""
-
-#: ../../general/first_task/tags.php:25 ../../general/first_task/tags.php:35
-msgid "Create Tags"
-msgstr ""
-
-#: ../../general/first_task/tags.php:28
-msgid ""
-"Access to modules can be configured by a tagging system.\n"
-"\t\t\t\t\t\t\t\tTags are configured on the system and are assigned to the "
-"chosen modules.\n"
-"\t\t\t\t\t\t\t\tA user's access can therefore be restricted to modules with "
-"certain tags."
-msgstr ""
-
-#: ../../general/first_task/omnishell.php:27
-msgid "There is no command defined yet."
-msgstr ""
-
-#: ../../general/first_task/omnishell.php:31
-#: ../../general/first_task/omnishell.php:34
-msgid "Omnishell"
-msgstr ""
-
-#: ../../general/first_task/omnishell.php:37
-#, php-format
-msgid ""
-"Omnishell is an enterprise feature which allows you to execute a structured "
-"command along any agent in your %s. The only requirement is to have remote "
-"configuration enabled in your agent."
-msgstr ""
-
-#: ../../general/first_task/omnishell.php:42
-msgid ""
-"You can execute any command on as many agents you need, and check the "
-"execution on all of them using the Omnishell Command View"
-msgstr ""
-
-#: ../../general/first_task/omnishell.php:50
-msgid "Define a command"
-msgstr ""
-
-#: ../../general/first_task/custom_fields.php:19
-#: ../../general/first_task/fields_manager.php:18
-msgid "There are no custom fields defined yet."
-msgstr ""
-
-#: ../../general/first_task/custom_fields.php:24
-msgid "Custom Fields"
-msgstr ""
-
-#: ../../general/first_task/custom_fields.php:27
-#: ../../general/first_task/custom_fields.php:36
-msgid "Create Custom Fields"
-msgstr ""
-
-#: ../../general/first_task/custom_fields.php:30
-msgid ""
-"Custom fields are an easy way to personalized agent's information.\n"
-"\t\t You're able to create custom fields by klicking on 'Administration' -> "
-"'Manage monitoring' -> 'Manage custom fields'. "
-msgstr ""
-
-#: ../../general/first_task/fields_manager.php:22
-msgid "Fields Manager"
-msgstr ""
-
-#: ../../general/first_task/fields_manager.php:25
-msgid "Create Fields Manager"
-msgstr ""
-
-#: ../../general/first_task/fields_manager.php:28
-msgid ""
-"Custom fields are an easy way to personalized agent's information.\n"
-"\t\t\t\tYou're able to create custom fields by klicking on 'Administration' -"
-"> 'Manage monitoring' -> 'Manage custom fields'. "
-msgstr ""
-
-#: ../../general/first_task/fields_manager.php:34
-msgid "Create Fields "
-msgstr ""
-
-#: ../../general/first_task/planned_downtime.php:18
-msgid "There are no scheduled downtime defined yet."
-msgstr ""
-
-#: ../../general/first_task/planned_downtime.php:22
-msgid "Scehduled Downtime"
-msgstr ""
-
-#: ../../general/first_task/planned_downtime.php:25
-#: ../../general/first_task/planned_downtime.php:37
-msgid "Create Scheduled Downtime"
-msgstr ""
-
-#: ../../general/first_task/planned_downtime.php:28
-#, php-format
-msgid ""
-"%s contains a scheduled downtime management system.\n"
-"\t\t\t\t\t\tThis system was designed to deactivate alerts during specific "
-"intervals whenever there is down time by deactivating the agent.\n"
-"\t\t\t\t\t\tIf an agent is deactivated, it doesn't gather information. "
-"During down time, down-time intervals aren't taken into\n"
-"\t\t\t\t\t\taccount for most metrics or report types, because agents don't "
-"contain any data within those intervals."
-msgstr ""
-
-#: ../../general/first_task/snmp_filters.php:18
-msgid "There are no SNMP filter defined yet."
-msgstr ""
-
-#: ../../general/first_task/snmp_filters.php:22
-msgid "SNMP Filter"
-msgstr ""
-
-#: ../../general/first_task/snmp_filters.php:25
-#: ../../general/first_task/snmp_filters.php:37
-msgid "Create SNMP Filter"
-msgstr ""
-
-#: ../../general/first_task/snmp_filters.php:28
-msgid ""
-"Some systems receive a high number of traps. \n"
-"\t\t\t\tWe're only interested in monitoring a tiny percentage of them. From "
-"Pandora FMS versions 3.2 and above, \n"
-"\t\t\t\tit's possible to filter the traps that the server obtains in order "
-"to avoid straining the application unnecessarily.\n"
-"\t\t\t\tIn order to define different filters, please go to 'Administration' -"
-"> 'Manage SNMP Console' and 'SNMP Filters'. \n"
-"\t\t\t\tOne trap which is going to run in conjunction with any of them - "
-"just the ones for the server are going to get ruled out automatically. "
-msgstr ""
-
-#: ../../general/first_task/service_list.php:19
-msgid "There are no services defined yet."
-msgstr ""
-
-#: ../../general/first_task/service_list.php:26
-#: ../../general/first_task/service_list.php:40
-msgid "Create Services"
-msgstr ""
-
-#: ../../general/first_task/service_list.php:30
-msgid ""
-"A service is a way to group your IT resources based on their "
-"functionalities. \n"
-"\t\t\t\t\t\tA service could be e.g. your official website, your CRM system, "
-"your support application, or even your printers.\n"
-"\t\t\t\t\t\t Services are logical groups which can include hosts, routers, "
-"switches, firewalls, CRMs, ERPs, websites and numerous other services. \n"
-"\t\t\t\t\t\t By the following example, you're able to see more clearly what "
-"a service is:\n"
-"\t\t\t\t\t\t\tA chip manufacturer sells computers by its website all around "
-"the world. \n"
-"\t\t\t\t\t\t\tHis company consists of three big departments: A management, "
-"an on-line shop and support."
-msgstr ""
-
-#: ../../general/first_task/custom_graphs.php:19
-msgid "There are no custom graphs defined yet."
-msgstr ""
-
-#: ../../general/first_task/custom_graphs.php:24
-msgid "Custom Graphs"
-msgstr ""
-
-#: ../../general/first_task/custom_graphs.php:27
-#: ../../general/first_task/custom_graphs.php:39
-msgid "Create Custom Graph"
-msgstr ""
-
-#: ../../general/first_task/custom_graphs.php:30
-#, php-format
-msgid ""
-"Graphs are designed to show the data collected by %s in a temporary scale "
-"defined by the user.\n"
-"\t\t\t\t%s Graphs display data in real time. They are generated every time "
-"the operator requires any of them and display the up-to-date state.\n"
-"\t\t\t\tThere are two types of graphs: The agent's automated graphs and the "
-"graphs the user customizes by using one or more modules to do so."
-msgstr ""
-
-#: ../../general/first_task/transactional_list.php:21
-msgid "There are no transactions defined yet."
-msgstr ""
-
-#: ../../general/first_task/transactional_list.php:28
-msgid "Transactions"
-msgstr ""
-
-#: ../../general/first_task/transactional_list.php:31
-#: ../../general/first_task/transactional_list.php:41
-msgid "Create Transactions"
-msgstr ""
-
-#: ../../general/first_task/transactional_list.php:34
-msgid ""
-"The new transactional server allows you to execute tasks dependent on the "
-"others following a user-defined design. This means that it is possible to "
-"coordinate several executions to check a target at a given time.\n"
-"\n"
-"Transaction graphs represent the different processes within our "
-"infrastructure that we use to deliver our service."
-msgstr ""
-
-#: ../../general/first_task/collections.php:18
-msgid "There are no collections defined yet."
-msgstr ""
-
-#: ../../general/first_task/collections.php:22
-msgid "Collections"
-msgstr ""
-
-#: ../../general/first_task/collections.php:25
-#: ../../general/first_task/collections.php:39
-msgid "Create Collections"
-msgstr ""
-
-#: ../../general/first_task/collections.php:28
-msgid ""
-"A file collection is a group of files (e.g. scripts or executables) which "
-"are \n"
-"\t\tautomatically copied to a specific directory of the agent (under Windows "
-"or UNIX). The file collections allow to be propagated\n"
-"\t\t along with the policies in order to be used by a group of agents, using "
-"a 'package' of scripts and modules which use them.\n"
-"\t\tFirst we learn how to use the file collections in the agent's view, how "
-"to conduct it manually, agent by agent, without using collections,\n"
-"\t\t and how to do the same thing by using policies.Our first task is to "
-"arrange a compilation of files. In order to do this, please go to the "
-"agent's \n"
-"\t\t administrator. Subsequently, we're going to see a 'sub option' called "
-"'Collections'. Please click on it in order to create a new collection as we "
-"can see on \n"
-"\t\t the picture below. "
-msgstr ""
-
-#: ../../general/header.php:47 ../../general/header.php:53
-msgid "All systems"
-msgstr ""
-
-#: ../../general/header.php:47
-msgid "Down"
-msgstr ""
-
-#: ../../general/header.php:50
-msgid "servers down"
-msgstr ""
-
-#: ../../general/header.php:53
-msgid "Ready"
-msgstr ""
-
-#: ../../general/header.php:75
-msgid "Sobre actualización de revisión menor"
-msgstr ""
-
-#: ../../general/header.php:77
-msgid "About minor release update"
-msgstr ""
-
-#: ../../general/header.php:110 ../../general/header.php:112
-msgid "Enter keywords to search"
-msgstr ""
-
-#: ../../general/header.php:231
-msgid "Configure autorefresh"
-msgstr ""
-
-#: ../../general/header.php:297 ../../general/header.php:316
-msgid "Disabled autorefresh"
-msgstr ""
-
-#: ../../general/header.php:375
-msgid "Go to support"
-msgstr ""
-
-#: ../../general/header.php:389
-msgid "Go to documentation"
-msgstr ""
-
-#: ../../general/header.php:811
-msgid "Report an issue"
+"If this is your first time using %s, we suggest a few links that'll help you "
+"learn more about the software. Monitoring can be overwhelming, but take your "
+"time to learn how to harness the power of %s!"
+msgstr ""
+
+#: ../../general/login_help_dialog.php:57
+#: ../../general/login_help_dialog.php:62
+msgid "Online help"
+msgstr ""
+
+#: ../../general/login_help_dialog.php:70
+#: ../../general/login_help_dialog.php:75
+msgid "Enterprise version"
+msgstr ""
+
+#: ../../general/login_help_dialog.php:83
+#: ../../general/login_help_dialog.php:88 ../../general/login_page.php:148
+#: ../../general/login_page.php:151 ../../enterprise/include/reset_pass.php:53
+#: ../../enterprise/include/process_reset_pass.php:58
+#: ../../enterprise/meta/general/login_page.php:64
+#: ../../enterprise/meta/include/reset_pass.php:47
+#: ../../enterprise/meta/include/process_reset_pass.php:47
+msgid "Support"
+msgstr ""
+
+#: ../../general/login_help_dialog.php:88
+msgid "Forums"
+msgstr ""
+
+#: ../../general/login_help_dialog.php:96
+#: ../../general/login_help_dialog.php:101 ../../general/mysqlerr.php:142
+msgid "Documentation"
+msgstr ""
+
+#: ../../general/login_help_dialog.php:110
+msgid "Click here to don't show again this message"
+msgstr ""
+
+#: ../../general/ui/agents_list.php:100 ../../general/ui/agents_list.php:113
+#: ../../operation/agentes/status_monitor.php:556
+#: ../../operation/agentes/alerts_status.functions.php:194
+#: ../../operation/agentes/alerts_status.functions.php:203
+#: ../../operation/agentes/estado_agente.php:267
+#: ../../operation/agentes/estado_agente.php:291
+#: ../../operation/search_results.php:192
+#: ../../include/ajax/heatmap.ajax.php:70
+#: ../../include/class/AuditLog.class.php:180
+#: ../../include/class/AgentWizard.class.php:2617
+#: ../../include/class/CalendarManager.class.php:1020
+#: ../../include/functions_snmp.php:358
+#: ../../include/functions_snmp_browser.php:925
+#: ../../include/functions_snmp_browser.php:1501
+#: ../../enterprise/tools/ipam/ipam_vlan_config.php:432
+#: ../../enterprise/tools/ipam/ipam_vlan_config.php:439
+#: ../../enterprise/tools/ipam/ipam_network_location_config.php:164
+#: ../../enterprise/tools/ipam/ipam_network_location_config.php:173
+#: ../../enterprise/tools/ipam/ipam_supernet_config.php:760
+#: ../../enterprise/tools/ipam/ipam_supernet_config.php:797
+#: ../../enterprise/tools/ipam/ipam_list.php:90
+#: ../../enterprise/tools/ipam/ipam_list.php:164
+#: ../../enterprise/operation/log/log_viewer.php:513
+#: ../../enterprise/operation/log/log_viewer.php:796
+#: ../../enterprise/operation/services/services.treeview_services.php:128
+#: ../../enterprise/operation/services/services.list.php:225
+#: ../../enterprise/operation/services/services.list.php:318
+#: ../../enterprise/operation/services/services.table_services.php:147
+#: ../../enterprise/operation/services/services.table_services.php:238
+#: ../../enterprise/operation/agentes/tag_view.php:219
+#: ../../enterprise/operation/agentes/agent_inventory.php:109
+#: ../../enterprise/operation/agentes/agent_inventory.php:114
+#: ../../enterprise/operation/inventory/inventory.php:360
+#: ../../enterprise/operation/inventory/inventory.php:413
+#: ../../enterprise/meta/general/header.php:44
+#: ../../enterprise/meta/general/header.php:46
+#: ../../enterprise/meta/general/main_header.php:689
+#: ../../enterprise/meta/general/main_header.php:691
+#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:265
+#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:362
+#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:419
+#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:687
+#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:758
+#: ../../enterprise/meta/advanced/metasetup.relations.php:451
+#: ../../enterprise/meta/advanced/metasetup.translate_string.php:186
+#: ../../enterprise/meta/advanced/collections.php:166
+#: ../../enterprise/meta/advanced/collections.php:179
+#: ../../enterprise/meta/agentsearch.php:110
+#: ../../enterprise/extensions/translate_string.php:323
+#: ../../enterprise/godmode/modules/local_components.php:573
+#: ../../enterprise/godmode/modules/local_components.php:598
+#: ../../enterprise/godmode/agentes/collection_manager.php:48
+#: ../../enterprise/godmode/agentes/collections.php:313
+#: ../../enterprise/godmode/alerts/alert_inventory_list.php:151
+#: ../../enterprise/godmode/alerts/alert_inventory_list.php:162
+#: ../../enterprise/godmode/policies/policy_agents.php:822
+#: ../../enterprise/godmode/policies/policy_agents.php:835
+#: ../../enterprise/godmode/policies/policy_collections.php:254
+#: ../../extensions/module_groups.php:283 ../../mobile/operation/agent.php:320
+#: ../../godmode/modules/manage_network_components.php:678
+#: ../../godmode/reporting/map_builder.php:350
+#: ../../godmode/reporting/map_builder.php:372
+#: ../../godmode/reporting/graphs.php:241
+#: ../../godmode/reporting/visual_console_favorite.php:158
+#: ../../godmode/reporting/visual_console_favorite.php:188
+#: ../../godmode/reporting/reporting_builder.item_editor.php:1139
+#: ../../godmode/reporting/reporting_builder.php:795
+#: ../../godmode/agentes/module_manager.php:65
+#: ../../godmode/agentes/planned_downtime.list.php:284
+#: ../../godmode/agentes/planned_downtime.list.php:368
+#: ../../godmode/agentes/modificar_agente.php:363
+#: ../../godmode/agentes/modificar_agente.php:372
+#: ../../godmode/alerts/alert_actions.php:244
+#: ../../godmode/alerts/alert_actions.php:302
+#: ../../godmode/alerts/alert_templates.php:314
+#: ../../godmode/alerts/alert_templates.php:325
+#: ../../godmode/users/user_list.php:402 ../../godmode/users/user_list.php:412
+#: ../../godmode/module_library/module_library_view.php:102
+#: ../../godmode/module_library/module_library_view.php:112
+#: ../../godmode/groups/group_list.php:785
+#: ../../godmode/groups/group_list.php:795
+msgid "Search"
+msgstr ""
+
+#: ../../general/ui/agents_list.php:146
+#: ../../operation/reporting/graph_viewer.php:316
+#: ../../operation/reporting/reporting_viewer.php:347
+#: ../../include/functions_events.php:4379
+#: ../../enterprise/operation/log/log_viewer.php:845
+#: ../../enterprise/operation/log/log_viewer.php:867
+#: ../../enterprise/include/class/CommandCenter.class.php:463
+#: ../../enterprise/meta/monitoring/wizard/wizard.php:149
+#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:195
+#: ../../enterprise/godmode/policies/policy_modules.php:1636
+#: ../../godmode/massive/massive_copy_modules.php:235
+#: ../../godmode/massive/massive_operations.php:361
+#: ../../godmode/massive/massive_add_profiles.php:292
+msgid "Loading"
+msgstr ""
+
+#: ../../general/ui/agents_list.php:152
+msgid "No agents found"
 msgstr ""
 
 #: ../../general/alert_enterprise.php:107
@@ -29773,122 +2946,12 @@ msgid ""
 "administration and increased performance."
 msgstr ""
 
-#: ../../general/login_help_dialog.php:43
-#, php-format
-msgid ""
-"If this is your first time using %s, we suggest a few links that'll help you "
-"learn more about the software. Monitoring can be overwhelming, but take your "
-"time to learn how to harness the power of %s!"
-msgstr ""
-
-#: ../../general/login_help_dialog.php:57
-#: ../../general/login_help_dialog.php:62
-msgid "Online help"
-msgstr ""
-
-#: ../../general/login_help_dialog.php:70
-#: ../../general/login_help_dialog.php:75
-msgid "Enterprise version"
-msgstr ""
-
-#: ../../general/login_help_dialog.php:83
-#: ../../general/login_help_dialog.php:88 ../../general/login_page.php:148
-#: ../../general/login_page.php:151
-msgid "Support"
-msgstr ""
-
-#: ../../general/login_help_dialog.php:88
-msgid "Forums"
-msgstr ""
-
-#: ../../general/login_help_dialog.php:96
-#: ../../general/login_help_dialog.php:101 ../../general/mysqlerr.php:142
-msgid "Documentation"
-msgstr ""
-
-#: ../../general/login_help_dialog.php:110
-msgid "Click here to don't show again this message"
-msgstr ""
-
-#: ../../general/maintenance.php:36
-msgid "Maintenance tasks in progress"
-msgstr ""
-
-#: ../../general/maintenance.php:53 ../../general/node_deactivated.php:64
-msgid "You will be automatically redirected when all tasks finish"
-msgstr ""
-
-#: ../../general/logon_ok.php:167
-#, php-format
-msgid "%s Overview"
-msgstr ""
-
-#: ../../general/logon_ok.php:220
-msgid "News board"
-msgstr ""
-
-#: ../../general/logon_ok.php:296
-msgid "Latest activity"
-msgstr ""
-
-#: ../../general/noaccesssaml.php:135
-msgid ""
-"Access to this page is restricted to authorized users SAML only, please "
-"contact system administrator if you need assistance."
-msgstr ""
-
-#: ../../general/noaccesssaml.php:137
-#, php-format
-msgid ""
-"Please make sure you have SAML authentication properly configured. For more "
-"information the error to access this page are recorded in security logs of "
-"%s System Database"
-msgstr ""
-
-#: ../../general/noaccess.php:135
-msgid ""
-"Access to this page is restricted to authorized users only, please contact "
-"system administrator if you need assistance."
-msgstr ""
-
-#: ../../general/noaccess.php:137
-#, php-format
-msgid ""
-"Please know that all attempts to access this page are recorded in security "
-"logs of %s System Database"
-msgstr ""
-
-#: ../../general/ui/agents_list.php:152
-msgid "No agents found"
-msgstr ""
-
-#: ../../general/logon_failed.php:30
-msgid ""
-"Either, your password or your login are incorrect. Please check your CAPS "
-"LOCK key, username and password are case SeNSiTiVe.<br><br>All actions, "
-"included failed login attempts are logged in Pandora FMS System logs, and "
-"these can be reviewed by each user, please report to admin any incident or "
-"malfunction."
-msgstr ""
-
-#: ../../general/node_deactivated.php:36
-msgid "You cannot use this node until system is unified"
-msgstr ""
-
-#: ../../general/node_deactivated.php:59
-msgid "command center"
-msgstr ""
-
-#: ../../general/node_deactivated.php:56
-#, php-format
-msgid "Please navigate to %s to unify system"
-msgstr ""
-
 #: ../../general/noaccess2.php:23
 msgid "Access to this page is restricted"
 msgstr ""
 
 #: ../../general/noaccess2.php:28
+#: ../../enterprise/meta/general/metaconsole_no_activated.php:20
 msgid "No access"
 msgstr ""
 
@@ -29900,6 +2963,1144 @@ msgid ""
 "security logs of Pandora System Database"
 msgstr ""
 
+#: ../../general/header.php:48 ../../general/header.php:54
+#: ../../enterprise/meta/general/header.php:66
+#: ../../enterprise/meta/general/header.php:72
+#: ../../enterprise/meta/general/main_header.php:518
+#: ../../enterprise/meta/general/main_header.php:524
+msgid "All systems"
+msgstr ""
+
+#: ../../general/header.php:48 ../../enterprise/meta/general/header.php:66
+#: ../../enterprise/meta/general/main_header.php:518
+msgid "Down"
+msgstr ""
+
+#: ../../general/header.php:51 ../../enterprise/meta/general/header.php:69
+#: ../../enterprise/meta/general/main_header.php:521
+msgid "servers down"
+msgstr ""
+
+#: ../../general/header.php:54 ../../enterprise/meta/general/header.php:72
+#: ../../enterprise/meta/general/main_header.php:524
+msgid "Ready"
+msgstr ""
+
+#: ../../general/header.php:77
+msgid "Sobre actualización de revisión menor"
+msgstr ""
+
+#: ../../general/header.php:79
+msgid "About minor release update"
+msgstr ""
+
+#: ../../general/header.php:112 ../../general/header.php:114
+msgid "Enter keywords to search"
+msgstr ""
+
+#: ../../general/header.php:235 ../../enterprise/meta/general/header.php:110
+#: ../../enterprise/meta/general/main_header.php:552
+msgid "Configure autorefresh"
+msgstr ""
+
+#: ../../general/header.php:265
+#: ../../operation/incidents/configure_integriaims_incident.php:240
+#: ../../operation/incidents/configure_integriaims_incident.php:256
+#: ../../operation/incidents/configure_integriaims_incident.php:302
+#: ../../include/functions_reports.php:1351
+#: ../../include/class/AgentsAlerts.class.php:354
+#: ../../enterprise/meta/general/header.php:121
+#: ../../enterprise/meta/general/main_header.php:558
+#: ../../enterprise/meta/include/ajax/wizard.ajax.php:742
+#: ../../enterprise/meta/monitoring/wizard/wizard.php:150
+#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:260
+#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:357
+#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:414
+#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:682
+#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:753
+#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:231
+#: ../../enterprise/meta/monitoring/wizard/wizard.manage_alert.php:231
+#: ../../enterprise/godmode/services/services.service.php:845
+#: ../../enterprise/godmode/services/services.service.php:857
+#: ../../enterprise/godmode/services/services.service.php:869
+#: ../../enterprise/godmode/services/services.service.php:881
+#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:141
+#: ../../enterprise/godmode/massive/massive_create_services.php:902
+#: ../../enterprise/godmode/massive/massive_create_services.php:914
+#: ../../enterprise/godmode/massive/massive_create_services.php:926
+#: ../../enterprise/godmode/massive/massive_create_services.php:938
+#: ../../enterprise/godmode/policies/policy_external_alerts.php:676
+#: ../../enterprise/godmode/policies/policy_alerts.php:648
+#: ../../extensions/insert_data.php:186
+#: ../../godmode/setup/setup_integria.php:367
+#: ../../godmode/setup/setup_integria.php:385
+#: ../../godmode/setup/setup_integria.php:414
+#: ../../godmode/setup/setup_integria.php:432
+#: ../../godmode/setup/setup_integria.php:489
+#: ../../godmode/setup/setup_integria.php:507
+#: ../../godmode/setup/setup_integria.php:536
+#: ../../godmode/setup/setup_integria.php:554
+#: ../../godmode/snmpconsole/snmp_trap_generator.php:159
+#: ../../godmode/massive/massive_add_alerts.php:286
+#: ../../godmode/massive/massive_delete_modules.php:334
+#: ../../godmode/massive/massive_delete_modules.php:469
+#: ../../godmode/massive/massive_copy_modules.php:138
+#: ../../godmode/massive/massive_delete_alerts.php:277
+#: ../../godmode/massive/massive_edit_modules.php:318
+#: ../../godmode/massive/massive_edit_modules.php:431
+#: ../../godmode/alerts/alert_list.builder.php:82
+#: ../../godmode/alerts/alert_list.builder.php:156
+msgid "Select"
+msgstr ""
+
+#: ../../general/header.php:301 ../../general/header.php:320
+#: ../../enterprise/meta/general/header.php:137
+#: ../../enterprise/meta/general/header.php:149
+#: ../../enterprise/meta/general/main_header.php:569
+#: ../../enterprise/meta/general/main_header.php:581
+msgid "Disabled autorefresh"
+msgstr ""
+
+#: ../../general/header.php:356 ../../general/header.php:358
+#: ../../include/class/HelpFeedBack.class.php:213
+#: ../../include/class/Diagnostics.class.php:1967
+msgid "Feedback"
+msgstr ""
+
+#: ../../general/header.php:379
+msgid "Go to support"
+msgstr ""
+
+#: ../../general/header.php:393
+msgid "Go to documentation"
+msgstr ""
+
+#: ../../general/header.php:407 ../../general/header.php:417
+#: ../../operation/menu.php:460 ../../enterprise/meta/general/header.php:204
+#: ../../enterprise/meta/general/header.php:214
+#: ../../enterprise/meta/general/main_header.php:624
+#: ../../enterprise/meta/general/main_header.php:630
+#: ../../enterprise/meta/include/functions_users_meta.php:193
+#: ../../enterprise/meta/include/functions_users_meta.php:208
+msgid "Edit my user"
+msgstr ""
+
+#: ../../general/header.php:432 ../../general/header.php:434
+#: ../../enterprise/meta/general/header.php:231
+#: ../../enterprise/meta/general/header.php:233
+#: ../../enterprise/meta/general/main_header.php:535
+#: ../../mobile/operation/home.php:148 ../../mobile/include/user.class.php:440
+#: ../../mobile/include/ui.class.php:225
+#: ../../mobile/include/functions_web.php:34
+msgid "Logout"
+msgstr ""
+
+#: ../../general/header.php:813 ../../godmode/setup/setup_general.php:660
+msgid "Send"
+msgstr ""
+
+#: ../../general/header.php:815
+msgid "Report an issue"
+msgstr ""
+
+#: ../../general/first_task/map_builder.php:23
+#: ../../godmode/reporting/map_builder.php:462
+msgid "There are no visual console defined yet."
+msgstr ""
+
+#: ../../general/first_task/map_builder.php:31
+#: ../../include/class/OrderInterpreter.class.php:233
+#: ../../include/lib/Dashboard/Widgets/maps_made_by_user.php:174
+#: ../../include/lib/Dashboard/Widgets/maps_made_by_user.php:471
+#: ../../enterprise/include/functions_enterprise.php:456
+#: ../../enterprise/meta/general/main_menu.php:346
+#: ../../enterprise/meta/general/main_header.php:240
+msgid "Visual Console"
+msgstr ""
+
+#: ../../general/first_task/map_builder.php:34
+#: ../../general/first_task/map_builder.php:45
+msgid "Create Visual Console"
+msgstr ""
+
+#: ../../general/first_task/map_builder.php:37
+#, php-format
+msgid ""
+"%s allows users to create visual maps on which each user is able to create "
+"his or her own monitoring map. The new visual console editor is much more "
+"practical, although the prior visual console editor had its advantages. On "
+"the new visual console, we've been successful in imitating the sensation and "
+"touch of a drawing application like GIMP. We've also simplified the editor "
+"by dividing it into several subject-divided tabs named 'Data', 'Preview', "
+"'Wizard', 'List of Elements' and 'Editor'. The items the %s Visual Map was "
+"designed to handle are 'static images', 'percentage bars', 'module graphs' "
+"and 'simple values'."
+msgstr ""
+
+#: ../../general/first_task/service_list.php:19
+msgid "There are no services defined yet."
+msgstr ""
+
+#: ../../general/first_task/service_list.php:23
+#: ../../operation/agentes/ver_agente.php:1645
+#: ../../enterprise/operation/services/services.treeview_services.php:61
+#: ../../enterprise/operation/services/services.treeview_services.php:81
+#: ../../enterprise/operation/services/services.service.php:83
+#: ../../enterprise/operation/services/services.list.php:58
+#: ../../enterprise/operation/services/services.list.php:75
+#: ../../enterprise/operation/services/services.service_map.php:90
+#: ../../enterprise/operation/services/services.service_map.php:109
+#: ../../enterprise/operation/services/services.table_services.php:38
+#: ../../enterprise/operation/services/services.table_services.php:58
+#: ../../enterprise/operation/menu.php:77
+#: ../../enterprise/include/functions_groups.php:65
+#: ../../enterprise/meta/general/main_menu.php:329
+#: ../../enterprise/meta/general/main_header.php:210
+#: ../../enterprise/godmode/services/services.elements.php:778
+#: ../../enterprise/godmode/services/services.elements.php:798
+#: ../../enterprise/godmode/services/services.service.php:469
+#: ../../enterprise/godmode/services/services.service.php:489
+#: ../../enterprise/godmode/services/services.massive.meta.php:42
+#: ../../enterprise/godmode/services/services.massive.elements.php:44
+#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:300
+#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:136
+#: ../../enterprise/godmode/menu.php:137
+#: ../../enterprise/godmode/massive/massive_add_service_elements.php:363
+#: ../../enterprise/godmode/massive/massive_create_services.php:966
+msgid "Services"
+msgstr ""
+
+#: ../../general/first_task/service_list.php:26
+#: ../../general/first_task/service_list.php:40
+msgid "Create Services"
+msgstr ""
+
+#: ../../general/first_task/service_list.php:30
+msgid ""
+"A service is a way to group your IT resources based on their "
+"functionalities. \n"
+"\t\t\t\t\t\tA service could be e.g. your official website, your CRM system, "
+"your support application, or even your printers.\n"
+"\t\t\t\t\t\t Services are logical groups which can include hosts, routers, "
+"switches, firewalls, CRMs, ERPs, websites and numerous other services. \n"
+"\t\t\t\t\t\t By the following example, you're able to see more clearly what "
+"a service is:\n"
+"\t\t\t\t\t\t\tA chip manufacturer sells computers by its website all around "
+"the world. \n"
+"\t\t\t\t\t\t\tHis company consists of three big departments: A management, "
+"an on-line shop and support."
+msgstr ""
+
+#: ../../general/first_task/HA_cluster_builder.php:37
+msgid "There are no HA clusters defined yet."
+msgstr ""
+
+#: ../../general/first_task/HA_cluster_builder.php:42
+#: ../../general/first_task/cluster_builder.php:29
+#: ../../general/first_task/cluster_builder.php:51
+#: ../../enterprise/views/cluster/list.php:31
+msgid "Clusters"
+msgstr ""
+
+#: ../../general/first_task/HA_cluster_builder.php:45
+msgid "PANDORA FMS DB CLUSTER"
+msgstr ""
+
+#: ../../general/first_task/HA_cluster_builder.php:48
+msgid ""
+"With Pandora FMS Enterprise you can add high availability to your Pandora "
+"FMS installation by adding redundant MySQL servers"
+msgstr ""
+
+#: ../../general/first_task/HA_cluster_builder.php:50
+msgid ""
+"Click on \"add new node\" to start transforming your Pandora FMS DB Cluster "
+"into a Pandora FMS DB Cluster."
+msgstr ""
+
+#: ../../general/first_task/HA_cluster_builder.php:59
+msgid "Add new node"
+msgstr ""
+
+#: ../../general/first_task/tags.php:18
+msgid "There are no tags defined yet."
+msgstr ""
+
+#: ../../general/first_task/tags.php:22 ../../operation/tree.php:66
+#: ../../operation/events/events.build_table.php:283
+#: ../../operation/agentes/status_monitor.php:559
+#: ../../operation/agentes/group_view.php:222
+#: ../../operation/agentes/alerts_status.functions.php:107
+#: ../../operation/users/user_edit.php:815
+#: ../../include/lib/Dashboard/Widgets/events_list.php:450
+#: ../../include/lib/Dashboard/Widgets/tree_view.php:329
+#: ../../include/functions_events.php:203
+#: ../../include/functions_events.php:272
+#: ../../include/functions_events.php:5137
+#: ../../include/functions_events.php:6744
+#: ../../include/functions_treeview.php:168
+#: ../../include/functions_profile.php:215
+#: ../../include/functions_reporting_html.php:3396
+#: ../../enterprise/operation/agentes/tag_view.php:223
+#: ../../enterprise/operation/agentes/tag_view.php:225
+#: ../../enterprise/operation/agentes/tag_view.php:678
+#: ../../enterprise/meta/include/functions_events_meta.php:106
+#: ../../enterprise/godmode/setup/setup_auth.php:231
+#: ../../enterprise/godmode/setup/setup_auth.php:510
+#: ../../enterprise/godmode/setup/setup_auth.php:1307
+#: ../../enterprise/godmode/modules/configure_local_component.php:550
+#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:971
+#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:163
+#: ../../enterprise/godmode/massive/massive_tags_edit_policy.php:120
+#: ../../mobile/operation/events.php:557
+#: ../../godmode/modules/manage_network_components_form_common.php:351
+#: ../../godmode/tag/edit_tag.php:66 ../../godmode/events/custom_events.php:108
+#: ../../godmode/massive/massive_delete_modules.php:401
+#: ../../godmode/massive/massive_delete_modules.php:515
+#: ../../godmode/massive/massive_copy_modules.php:172
+#: ../../godmode/massive/massive_edit_modules.php:405
+#: ../../godmode/massive/massive_edit_modules.php:491
+#: ../../godmode/massive/massive_edit_modules.php:1047
+msgid "Tags"
+msgstr ""
+
+#: ../../general/first_task/tags.php:25 ../../general/first_task/tags.php:35
+msgid "Create Tags"
+msgstr ""
+
+#: ../../general/first_task/tags.php:28
+msgid ""
+"Access to modules can be configured by a tagging system.\n"
+"\t\t\t\t\t\t\t\tTags are configured on the system and are assigned to the "
+"chosen modules.\n"
+"\t\t\t\t\t\t\t\tA user's access can therefore be restricted to modules with "
+"certain tags."
+msgstr ""
+
+#: ../../general/first_task/custom_fields.php:19
+#: ../../general/first_task/fields_manager.php:18
+msgid "There are no custom fields defined yet."
+msgstr ""
+
+#: ../../general/first_task/custom_fields.php:24
+#: ../../enterprise/meta/monitoring/custom_fields_view.php:250
+msgid "Custom Fields"
+msgstr ""
+
+#: ../../general/first_task/custom_fields.php:27
+#: ../../general/first_task/custom_fields.php:36
+msgid "Create Custom Fields"
+msgstr ""
+
+#: ../../general/first_task/custom_fields.php:30
+msgid ""
+"Custom fields are an easy way to personalized agent's information.\n"
+"\t\t You're able to create custom fields by klicking on 'Administration' -> "
+"'Manage monitoring' -> 'Manage custom fields'. "
+msgstr ""
+
+#: ../../general/first_task/omnishell.php:27
+msgid "There is no command defined yet."
+msgstr ""
+
+#: ../../general/first_task/omnishell.php:31
+#: ../../general/first_task/omnishell.php:34
+#: ../../enterprise/godmode/menu.php:308
+msgid "Omnishell"
+msgstr ""
+
+#: ../../general/first_task/omnishell.php:37
+#, php-format
+msgid ""
+"Omnishell is an enterprise feature which allows you to execute a structured "
+"command along any agent in your %s. The only requirement is to have remote "
+"configuration enabled in your agent."
+msgstr ""
+
+#: ../../general/first_task/omnishell.php:42
+msgid ""
+"You can execute any command on as many agents you need, and check the "
+"execution on all of them using the Omnishell Command View"
+msgstr ""
+
+#: ../../general/first_task/omnishell.php:50
+msgid "Define a command"
+msgstr ""
+
+#: ../../general/first_task/planned_downtime.php:18
+msgid "There are no scheduled downtime defined yet."
+msgstr ""
+
+#: ../../general/first_task/planned_downtime.php:22
+msgid "Scehduled Downtime"
+msgstr ""
+
+#: ../../general/first_task/planned_downtime.php:25
+#: ../../general/first_task/planned_downtime.php:37
+msgid "Create Scheduled Downtime"
+msgstr ""
+
+#: ../../general/first_task/planned_downtime.php:28
+#, php-format
+msgid ""
+"%s contains a scheduled downtime management system.\n"
+"\t\t\t\t\t\tThis system was designed to deactivate alerts during specific "
+"intervals whenever there is down time by deactivating the agent.\n"
+"\t\t\t\t\t\tIf an agent is deactivated, it doesn't gather information. "
+"During down time, down-time intervals aren't taken into\n"
+"\t\t\t\t\t\taccount for most metrics or report types, because agents don't "
+"contain any data within those intervals."
+msgstr ""
+
+#: ../../general/first_task/cluster_builder.php:38 ../../operation/tree.php:183
+#: ../../operation/menu.php:31 ../../operation/menu.php:154
+#: ../../operation/snmpconsole/snmp_mib_uploader.php:56
+#: ../../operation/snmpconsole/snmp_browser.php:86
+#: ../../operation/snmpconsole/snmp_statistics.php:98
+#: ../../operation/snmpconsole/snmp_view.php:693
+#: ../../operation/snmpconsole/snmp_view.php:802
+#: ../../operation/heatmap.php:133
+#: ../../operation/agentes/status_monitor.php:104
+#: ../../operation/agentes/alerts_status.php:200
+#: ../../operation/agentes/group_view.php:98
+#: ../../operation/agentes/interface_view.php:72
+#: ../../operation/agentes/tactical.php:78
+#: ../../operation/agentes/estado_agente.php:224
+#: ../../operation/agentes/ver_agente.php:1906
+#: ../../include/class/AgentsAlerts.class.php:750
+#: ../../enterprise/tools/ipam/ipam_editor.php:261
+#: ../../enterprise/views/cluster/list.php:31
+#: ../../enterprise/operation/services/services.treeview_services.php:61
+#: ../../enterprise/operation/services/services.list.php:58
+#: ../../enterprise/operation/services/services.table_services.php:38
+#: ../../enterprise/operation/agentes/tag_view.php:50
+#: ../../enterprise/operation/inventory/inventory.php:146
+#: ../../enterprise/include/ajax/ipam.ajax.php:455
+#: ../../enterprise/include/class/SAPView.class.php:155
+#: ../../enterprise/include/class/SAPView.class.php:199
+#: ../../enterprise/meta/general/main_menu.php:181
+#: ../../enterprise/meta/general/logon_ok.php:75
+#: ../../enterprise/meta/general/main_header.php:91
+#: ../../enterprise/extensions/vmware/vmware_view.php:1394
+#: ../../enterprise/godmode/services/services.massive.meta.php:42
+#: ../../enterprise/godmode/services/services.massive.elements.php:44
+#: ../../enterprise/godmode/reporting/aws_view.php:115
+#: ../../enterprise/godmode/reporting/aws_view.php:148
+#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:53
+#: ../../extensions/realtime_graphs.php:67
+#: ../../extensions/module_groups.php:260
+#: ../../extensions/agents_modules.php:474
+#: ../../godmode/snmpconsole/snmp_filters.php:55
+#: ../../godmode/snmpconsole/snmp_trap_generator.php:47
+msgid "Monitoring"
+msgstr ""
+
+#: ../../general/first_task/cluster_builder.php:46
+msgid "There are no clusters defined yet."
+msgstr ""
+
+#: ../../general/first_task/cluster_builder.php:54
+#: ../../general/first_task/cluster_builder.php:72
+msgid "Create Cluster"
+msgstr ""
+
+#: ../../general/first_task/cluster_builder.php:57
+msgid ""
+"A cluster is a group of devices that provide the same service in high "
+"availability."
+msgstr ""
+
+#: ../../general/first_task/cluster_builder.php:59
+msgid "Depending on how they provide that service, we can find two types:"
+msgstr ""
+
+#: ../../general/first_task/cluster_builder.php:61
+msgid ""
+"<b>Clusters to balance the service load</b>: these are  active - active (A/"
+"A)  mode clusters. It means that all the nodes (or machines that compose it) "
+"are working. They must be working because if one stops working, it will "
+"overload the others."
+msgstr ""
+
+#: ../../general/first_task/cluster_builder.php:63
+msgid ""
+"<b>Clusters to guarantee service</b>: these are active - passive (A/P) mode "
+"clusters. It means that one of the nodes (or machines that make up the "
+"cluster) will be running (primary) and another won't (secondary). When the "
+"primary goes down, the secondary must take over and give the service "
+"instead. Although many of the elements of this cluster are active-passive, "
+"it will also have active elements in both of them that indicate that the "
+"passive node is \"online\", so that in the case of a service failure in the "
+"master, the active node collects this information."
+msgstr ""
+
+#: ../../general/first_task/snmp_filters.php:18
+msgid "There are no SNMP filter defined yet."
+msgstr ""
+
+#: ../../general/first_task/snmp_filters.php:22
+msgid "SNMP Filter"
+msgstr ""
+
+#: ../../general/first_task/snmp_filters.php:25
+#: ../../general/first_task/snmp_filters.php:37
+msgid "Create SNMP Filter"
+msgstr ""
+
+#: ../../general/first_task/snmp_filters.php:28
+msgid ""
+"Some systems receive a high number of traps. \n"
+"\t\t\t\tWe're only interested in monitoring a tiny percentage of them. From "
+"Pandora FMS versions 3.2 and above, \n"
+"\t\t\t\tit's possible to filter the traps that the server obtains in order "
+"to avoid straining the application unnecessarily.\n"
+"\t\t\t\tIn order to define different filters, please go to 'Administration' -"
+"> 'Manage SNMP Console' and 'SNMP Filters'. \n"
+"\t\t\t\tOne trap which is going to run in conjunction with any of them - "
+"just the ones for the server are going to get ruled out automatically. "
+msgstr ""
+
+#: ../../general/first_task/fields_manager.php:22
+msgid "Fields Manager"
+msgstr ""
+
+#: ../../general/first_task/fields_manager.php:25
+msgid "Create Fields Manager"
+msgstr ""
+
+#: ../../general/first_task/fields_manager.php:28
+msgid ""
+"Custom fields are an easy way to personalized agent's information.\n"
+"\t\t\t\tYou're able to create custom fields by klicking on 'Administration' -"
+"> 'Manage monitoring' -> 'Manage custom fields'. "
+msgstr ""
+
+#: ../../general/first_task/fields_manager.php:34
+msgid "Create Fields "
+msgstr ""
+
+#: ../../general/first_task/custom_graphs.php:19
+msgid "There are no custom graphs defined yet."
+msgstr ""
+
+#: ../../general/first_task/custom_graphs.php:24
+msgid "Custom Graphs"
+msgstr ""
+
+#: ../../general/first_task/custom_graphs.php:27
+#: ../../general/first_task/custom_graphs.php:39
+msgid "Create Custom Graph"
+msgstr ""
+
+#: ../../general/first_task/custom_graphs.php:30
+#, php-format
+msgid ""
+"Graphs are designed to show the data collected by %s in a temporary scale "
+"defined by the user.\n"
+"\t\t\t\t%s Graphs display data in real time. They are generated every time "
+"the operator requires any of them and display the up-to-date state.\n"
+"\t\t\t\tThere are two types of graphs: The agent's automated graphs and the "
+"graphs the user customizes by using one or more modules to do so."
+msgstr ""
+
+#: ../../general/first_task/recon_view.php:18
+msgid "There are no discovery tasks defined yet."
+msgstr ""
+
+#: ../../general/first_task/recon_view.php:22
+#: ../../include/class/CustomNetScan.class.php:479
+#: ../../include/functions_servers.php:595
+#: ../../include/functions_servers.php:1341
+#: ../../enterprise/tools/ipam/ipam_editor.php:163
+#: ../../enterprise/include/ajax/ipam.ajax.php:357
+#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:450
+#: ../../enterprise/include/class/Aws.cloud.php:522
+#: ../../enterprise/include/class/Aws.cloud.php:1212
+#: ../../enterprise/include/class/Aws.S3.php:412
+#: ../../enterprise/include/class/MySQL.app.php:453
+#: ../../enterprise/include/class/Oracle.app.php:455
+#: ../../enterprise/include/class/DB2.app.php:448
+#: ../../enterprise/include/class/SAP.app.php:481
+#: ../../enterprise/include/class/VMware.app.php:593
+#: ../../enterprise/include/class/Azure.cloud.php:781
+#: ../../enterprise/include/class/Google.cloud.php:769
+#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:431
+#: ../../godmode/wizards/HostDevices.class.php:848
+msgid "Discovery server"
+msgstr ""
+
+#: ../../general/first_task/recon_view.php:25
+msgid "Create Discovery Task"
+msgstr ""
+
+#: ../../general/first_task/recon_view.php:28
+msgid ""
+"Discovery Task are used to find new elements in the network. \n"
+"\t\tIf it detects any item, it will add that item to the monitoring, and if "
+"that item it is already being monitored, then it will \n"
+"\t\tignore it or will update its information.There are three types of "
+"detection: Based on <strong id=\"fuerte\"> ICMP </strong>(pings), \n"
+"\t\t<strong id=\"fuerte\">SNMP</strong> (detecting the topology of networks "
+"and their interfaces), and other <strong id=\"fuerte\"> customized </"
+"strong>\n"
+"\t\ttype. You can define your own customized recon script."
+msgstr ""
+
+#: ../../general/first_task/recon_view.php:37
+msgid "Discover"
+msgstr ""
+
+#: ../../general/first_task/incidents.php:21
+msgid "There are no incidents defined yet."
+msgstr ""
+
+#: ../../general/first_task/incidents.php:28 ../../operation/menu.php:474
+#: ../../operation/agentes/ver_agente.php:1498
+#: ../../operation/incidents/incident_statistics.php:21
+#: ../../godmode/agentes/configurar_agente.php:581
+#: ../../godmode/agentes/configurar_agente.php:749
+msgid "Incidents"
+msgstr ""
+
+#: ../../general/first_task/incidents.php:31
+#: ../../general/first_task/incidents.php:46
+msgid "Create Incidents"
+msgstr ""
+
+#: ../../general/first_task/incidents.php:34
+#, php-format
+msgid ""
+"Besides receiving and processing data to monitor systems or applications,\n"
+"\t\t\tyou're also required to monitor possible incidents which might take "
+"place on these subsystems within the system's monitoring process.\n"
+"\t\t\tFor it, the %s team has designed an incident manager from which any "
+"user is able to open incidents,\n"
+"\t\t\tthat explain what's happened on the network, and update them with "
+"comments and files, at any time, in case there is a need to do so.\n"
+"\t\t\tThis system allows users to work as a team, along with different roles "
+"and work-flow systems which allow an incident to be\n"
+"\t\t\tmoved from one group to another, and members from different groups and "
+"different people could work on the same incident, sharing information and "
+"files.\n"
+"\t\t"
+msgstr ""
+
+#: ../../general/first_task/network_map.php:19
+msgid "There are no network map defined yet."
+msgstr ""
+
+#: ../../general/first_task/network_map.php:26
+msgid "Network Map"
+msgstr ""
+
+#: ../../general/first_task/network_map.php:29
+#: ../../general/first_task/network_map.php:50
+msgid "Create Network Map"
+msgstr ""
+
+#: ../../general/first_task/network_map.php:32
+msgid ""
+"There is also an open-source version of the network map. \n"
+"\t\t\t\t\t\t\t\tThis functionality allows to graphically display the nodes "
+"and relationships, agents, modules and groups available to the user. \n"
+"\t\t\t\t\t\t\t\tThere are three types of network maps:\n"
+"\t\t\t"
+msgstr ""
+
+#: ../../general/first_task/network_map.php:37
+msgid "Topology Map"
+msgstr ""
+
+#: ../../general/first_task/network_map.php:38
+msgid "Group Map"
+msgstr ""
+
+#: ../../general/first_task/network_map.php:39
+msgid "Radial Map (User without strict user)"
+msgstr ""
+
+#: ../../general/first_task/network_map.php:40
+msgid "Dinamic Map"
+msgstr ""
+
+#: ../../general/first_task/network_map.php:41
+msgid "Policy Map (Only Enterprise version)"
+msgstr ""
+
+#: ../../general/first_task/collections.php:18
+#: ../../enterprise/meta/advanced/collections.php:443
+msgid "There are no collections defined yet."
+msgstr ""
+
+#: ../../general/first_task/collections.php:22
+#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2109
+#: ../../enterprise/include/functions_policies.php:3796
+#: ../../enterprise/meta/include/functions_agents_meta.php:533
+#: ../../enterprise/meta/advanced/collections.editor.php:60
+#: ../../enterprise/meta/advanced/collections.data.php:33
+#: ../../enterprise/godmode/menu.php:70
+#: ../../enterprise/godmode/agentes/collections.editor.php:71
+#: ../../enterprise/godmode/agentes/collections.agents.php:44
+#: ../../enterprise/godmode/agentes/collections.data.php:54
+#: ../../enterprise/godmode/policies/policies.php:505
+#: ../../enterprise/godmode/policies/policy_collections.php:31
+msgid "Collections"
+msgstr ""
+
+#: ../../general/first_task/collections.php:25
+#: ../../general/first_task/collections.php:39
+msgid "Create Collections"
+msgstr ""
+
+#: ../../general/first_task/collections.php:28
+msgid ""
+"A file collection is a group of files (e.g. scripts or executables) which "
+"are \n"
+"\t\tautomatically copied to a specific directory of the agent (under Windows "
+"or UNIX). The file collections allow to be propagated\n"
+"\t\t along with the policies in order to be used by a group of agents, using "
+"a 'package' of scripts and modules which use them.\n"
+"\t\tFirst we learn how to use the file collections in the agent's view, how "
+"to conduct it manually, agent by agent, without using collections,\n"
+"\t\t and how to do the same thing by using policies.Our first task is to "
+"arrange a compilation of files. In order to do this, please go to the "
+"agent's \n"
+"\t\t administrator. Subsequently, we're going to see a 'sub option' called "
+"'Collections'. Please click on it in order to create a new collection as we "
+"can see on \n"
+"\t\t the picture below. "
+msgstr ""
+
+#: ../../general/first_task/transactional_list.php:21
+msgid "There are no transactions defined yet."
+msgstr ""
+
+#: ../../general/first_task/transactional_list.php:28
+msgid "Transactions"
+msgstr ""
+
+#: ../../general/first_task/transactional_list.php:31
+#: ../../general/first_task/transactional_list.php:41
+msgid "Create Transactions"
+msgstr ""
+
+#: ../../general/first_task/transactional_list.php:34
+msgid ""
+"The new transactional server allows you to execute tasks dependent on the "
+"others following a user-defined design. This means that it is possible to "
+"coordinate several executions to check a target at a given time.\n"
+"\n"
+"Transaction graphs represent the different processes within our "
+"infrastructure that we use to deliver our service."
+msgstr ""
+
+#: ../../general/links_menu.php:17
+#: ../../enterprise/meta/general/main_menu.php:596
+#: ../../enterprise/meta/general/main_menu.php:616
+#: ../../enterprise/meta/general/main_header.php:381
+#: ../../enterprise/meta/general/main_header.php:448 ../../godmode/menu.php:390
+#: ../../godmode/menu.php:510
+msgid "Links"
+msgstr ""
+
+#: ../../general/logon_ok.php:167
+#, php-format
+msgid "%s Overview"
+msgstr ""
+
+#: ../../general/logon_ok.php:191
+#: ../../enterprise/operation/agentes/wux_console_view.php:357
+#: ../../enterprise/operation/agentes/wux_console_view.php:378
+#: ../../godmode/setup/performance.php:188
+#: ../../godmode/setup/performance.php:243
+msgid "ago"
+msgstr ""
+
+#: ../../general/logon_ok.php:206 ../../include/functions_events.php:5273
+msgid "by"
+msgstr ""
+
+#: ../../general/logon_ok.php:220
+msgid "News board"
+msgstr ""
+
+#: ../../general/logon_ok.php:247 ../../general/login_page.php:230
+#: ../../general/login_page.php:272 ../../operation/search_users.php:71
+#: ../../operation/events/events.build_table.php:202
+#: ../../operation/events/events.build_table.php:707
+#: ../../operation/users/user_edit.php:696
+#: ../../operation/users/user_edit.php:742
+#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:118
+#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:249
+#: ../../include/functions_cron.php:463
+#: ../../include/class/AuditLog.class.php:108
+#: ../../include/class/AuditLog.class.php:211
+#: ../../include/class/CredentialStore.class.php:805
+#: ../../include/class/CredentialStore.class.php:1134
+#: ../../include/functions_events.php:194
+#: ../../include/functions_events.php:245
+#: ../../include/functions_events.php:6695
+#: ../../include/functions_events.php:7122
+#: ../../include/functions_config.php:708
+#: ../../include/functions_config.php:728 ../../include/functions.php:3045
+#: ../../include/functions_reporting_html.php:5674
+#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:502
+#: ../../enterprise/include/class/MySQL.app.php:523
+#: ../../enterprise/include/class/Oracle.app.php:508
+#: ../../enterprise/include/class/DB2.app.php:501
+#: ../../enterprise/include/functions_tasklist.php:152
+#: ../../enterprise/meta/general/login_page.php:125
+#: ../../enterprise/meta/general/login_page.php:167
+#: ../../enterprise/meta/include/functions_events_meta.php:70
+#: ../../enterprise/meta/include/functions_meta.php:1165
+#: ../../enterprise/meta/include/functions_meta.php:1219
+#: ../../enterprise/meta/include/functions_meta.php:1273
+#: ../../enterprise/meta/include/functions_wizard_meta.php:519
+#: ../../enterprise/meta/include/functions_wizard_meta.php:1473
+#: ../../enterprise/extensions/disabled/check_acls.php:47
+#: ../../enterprise/extensions/disabled/check_acls.php:132
+#: ../../enterprise/godmode/setup/setup_auth.php:1039
+#: ../../enterprise/godmode/setup/setup_auth.php:1071
+#: ../../enterprise/godmode/servers/manage_export_form.php:113
+#: ../../extensions/users_connected.php:143
+#: ../../extensions/api_checker.php:138 ../../mobile/operation/tactical.php:349
+#: ../../mobile/include/user.class.php:373
+#: ../../godmode/setup/setup_integria.php:283
+#: ../../godmode/setup/setup_ehorus.php:80
+#: ../../godmode/update_manager/update_manager.history.php:43
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3311
+#: ../../godmode/events/custom_events.php:99
+msgid "User"
+msgstr ""
+
+#: ../../general/logon_ok.php:248 ../../operation/snmpconsole/snmp_view.php:891
+#: ../../operation/snmpconsole/snmp_view.php:1266
+#: ../../operation/events/events.build_table.php:369
+#: ../../operation/agentes/alerts_status.php:550
+#: ../../operation/agentes/alerts_status.php:585
+#: ../../operation/agentes/alerts_status.php:620
+#: ../../operation/agentes/alerts_status.php:652
+#: ../../operation/agentes/alerts_status.functions.php:126
+#: ../../operation/search_alerts.php:37
+#: ../../include/ajax/alert_list.ajax.php:281
+#: ../../include/ajax/alert_list.ajax.php:306
+#: ../../include/ajax/alert_list.ajax.php:482
+#: ../../include/class/ModuleTemplates.class.php:894
+#: ../../include/class/AuditLog.class.php:109
+#: ../../include/class/AuditLog.class.php:201
+#: ../../include/class/AgentsAlerts.class.php:904
+#: ../../include/functions_events.php:6786
+#: ../../include/functions_ui_renders.php:117
+#: ../../include/functions_profile.php:217 ../../include/functions.php:3045
+#: ../../include/functions_reporting_html.php:3135
+#: ../../include/functions_reporting_html.php:5676
+#: ../../enterprise/tools/ipam/ipam_network_location_config.php:258
+#: ../../enterprise/tools/ipam/ipam_list.php:639
+#: ../../enterprise/operation/agentes/policy_view.php:260
+#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:433
+#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:495
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2585
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2905
+#: ../../enterprise/include/functions_services.php:1615
+#: ../../enterprise/meta/monitoring/wizard/wizard.manage_alert.php:257
+#: ../../enterprise/meta/advanced/metasetup.relations.php:550
+#: ../../enterprise/godmode/servers/manage_export.php:142
+#: ../../enterprise/godmode/modules/manage_inventory_modules.php:278
+#: ../../enterprise/godmode/services/services.massive.elements.php:66
+#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:191
+#: ../../enterprise/godmode/reporting/graph_template_list.php:209
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3524
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3722
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3745
+#: ../../enterprise/godmode/admin_access_logs.php:54
+#: ../../enterprise/godmode/alerts/alert_inventory_list.php:379
+#: ../../enterprise/godmode/alerts/alert_inventory_builder.php:241
+#: ../../enterprise/godmode/policies/policy_modules.php:1466
+#: ../../enterprise/godmode/policies/policy_alerts.php:575
+#: ../../mobile/operation/tactical.php:348
+#: ../../godmode/modules/manage_network_components.php:755
+#: ../../godmode/modules/manage_network_templates.php:248
+#: ../../godmode/modules/manage_nc_groups.php:243
+#: ../../godmode/reporting/visual_console_builder.elements.php:118
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3808
+#: ../../godmode/reporting/reporting_builder.item_editor.php:4299
+#: ../../godmode/reporting/reporting_builder.item_editor.php:4320
+#: ../../godmode/snmpconsole/snmp_alert.php:1241
+#: ../../godmode/snmpconsole/snmp_alert.php:1365
+#: ../../godmode/snmpconsole/snmp_filters.php:291
+#: ../../godmode/events/event_filter.php:141
+#: ../../godmode/netflow/nf_edit.php:161
+#: ../../godmode/netflow/nf_item_list.php:178
+#: ../../godmode/massive/massive_operations.php:426
+#: ../../godmode/massive/massive_standby_alerts.php:250
+#: ../../godmode/massive/massive_add_action_alerts.php:248
+#: ../../godmode/massive/massive_delete_action_alerts.php:270
+#: ../../godmode/massive/massive_enable_disable_alerts.php:222
+#: ../../godmode/agentes/module_manager.php:867
+#: ../../godmode/agentes/planned_downtime.editor.php:1002
+#: ../../godmode/agentes/agent_template.php:238
+#: ../../godmode/alerts/alert_list.list.php:745
+#: ../../godmode/alerts/alert_view.php:388
+msgid "Action"
+msgstr ""
+
+#: ../../general/logon_ok.php:250
+#: ../../operation/snmpconsole/snmp_statistics.php:182
+#: ../../include/class/AuditLog.class.php:111
+#: ../../include/functions_netflow.php:347 ../../include/functions.php:3045
+#: ../../include/functions_reporting_html.php:5678
+#: ../../enterprise/include/functions_reporting_csv.php:2808
+#: ../../mobile/operation/tactical.php:351
+msgid "Source IP"
+msgstr ""
+
+#: ../../general/logon_ok.php:251 ../../operation/users/user_edit.php:606
+#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:317
+#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:410
+#: ../../include/ajax/events.php:1517
+#: ../../include/class/AuditLog.class.php:112 ../../include/functions.php:3045
+#: ../../include/functions_reporting_html.php:5679
+#: ../../enterprise/tools/ipam/ipam_ajax.php:293
+#: ../../enterprise/tools/ipam/ipam_ajax.php:479
+#: ../../enterprise/tools/ipam/ipam_massive.php:83
+#: ../../enterprise/tools/ipam/ipam_network.php:403
+#: ../../enterprise/tools/ipam/ipam_network.php:672
+#: ../../enterprise/include/functions_reporting_csv.php:1935
+#: ../../enterprise/include/functions_reporting.php:2317
+#: ../../enterprise/include/functions_ipam.php:2040
+#: ../../mobile/operation/events.php:561
+#: ../../godmode/users/configure_user.php:1042
+msgid "Comments"
+msgstr ""
+
+#: ../../general/logon_ok.php:296
+msgid "Latest activity"
+msgstr ""
+
+#: ../../general/php7_message.php:30
+#: ../../include/class/ConsoleSupervisor.php:1606
+msgid ""
+"For a correct operation of PandoraFMS, PHP must be updated to version 7.0 or "
+"higher."
+msgstr ""
+
+#: ../../general/php7_message.php:31
+#: ../../include/class/ConsoleSupervisor.php:1606
+msgid "Otherwise, functionalities will be lost."
+msgstr ""
+
+#: ../../general/php7_message.php:33
+#: ../../include/class/ConsoleSupervisor.php:1606
+msgid "Report download in PDF format"
+msgstr ""
+
+#: ../../general/php7_message.php:34
+#: ../../include/class/ConsoleSupervisor.php:1606
+msgid "Emails Sending"
+msgstr ""
+
+#: ../../general/php7_message.php:35
+#: ../../include/class/ConsoleSupervisor.php:1606
+msgid "Metaconsole Collections"
+msgstr ""
+
+#: ../../general/php7_message.php:38
+msgid "Access Help"
+msgstr ""
+
+#: ../../general/php7_message.php:41
+msgid "Warning php version"
+msgstr ""
+
+#: ../../general/subselect_data_module.php:62 ../../operation/tree.php:210
+#: ../../operation/tree.php:267 ../../operation/snmpconsole/snmp_view.php:549
+#: ../../operation/snmpconsole/snmp_view.php:578
+#: ../../operation/snmpconsole/snmp_view.php:586
+#: ../../operation/snmpconsole/snmp_view.php:902
+#: ../../operation/heatmap.php:115
+#: ../../operation/events/events.build_table.php:626
+#: ../../operation/events/events.php:1080
+#: ../../operation/events/events.php:1149
+#: ../../operation/events/events.php:1258
+#: ../../operation/events/events.php:1310
+#: ../../operation/events/events.php:2315
+#: ../../operation/events/events_list.php:827
+#: ../../operation/events/events_list.php:839
+#: ../../operation/events/events_list.php:948
+#: ../../operation/events/events_list.php:960
+#: ../../operation/agentes/status_monitor.php:655
+#: ../../operation/agentes/estado_monitores.php:520
+#: ../../operation/agentes/estado_monitores.php:565
+#: ../../operation/agentes/alerts_status.functions.php:94
+#: ../../operation/agentes/alerts_status.functions.php:100
+#: ../../operation/agentes/alerts_status.functions.php:114
+#: ../../operation/agentes/alerts_status.functions.php:131
+#: ../../operation/agentes/alerts_status.functions.php:134
+#: ../../operation/agentes/estado_agente.php:281
+#: ../../operation/incidents/list_integriaims_incidents.php:326
+#: ../../operation/incidents/list_integriaims_incidents.php:337
+#: ../../operation/incidents/list_integriaims_incidents.php:354
+#: ../../operation/incidents/list_integriaims_incidents.php:365
+#: ../../include/ajax/events.php:438 ../../include/class/AuditLog.class.php:203
+#: ../../include/class/AuditLog.class.php:213
+#: ../../include/class/CredentialStore.class.php:535
+#: ../../include/lib/Dashboard/Widgets/system_group_status.php:399
+#: ../../include/lib/Dashboard/Widgets/events_list.php:401
+#: ../../include/lib/Dashboard/Widgets/tree_view.php:384
+#: ../../include/lib/Dashboard/Widgets/tree_view.php:417
+#: ../../include/functions_events.php:6435
+#: ../../include/functions_events.php:7041
+#: ../../include/functions_groups.php:646
+#: ../../include/functions_groups.php:1940
+#: ../../include/functions_notifications.php:108
+#: ../../include/functions_reporting.php:2831
+#: ../../include/functions_reporting.php:2928
+#: ../../include/functions_modules.php:3542
+#: ../../include/functions_modules.php:3544
+#: ../../include/functions_groupview.php:95
+#: ../../include/functions_html.php:915 ../../include/functions_html.php:1566
+#: ../../include/functions.php:1071 ../../include/functions.php:1331
+#: ../../include/functions_users.php:416 ../../include/functions_users.php:674
+#: ../../enterprise/operation/log/log_viewer.php:620
+#: ../../enterprise/operation/log/log_viewer.php:638
+#: ../../enterprise/operation/log/log_viewer.php:688
+#: ../../enterprise/operation/snmpconsole/snmp_view.php:33
+#: ../../enterprise/operation/agentes/tag_view.php:145
+#: ../../enterprise/operation/agentes/tag_view.php:171
+#: ../../enterprise/operation/agentes/tag_view.php:237
+#: ../../enterprise/operation/agentes/tag_view.php:301
+#: ../../enterprise/operation/agentes/tag_view.php:304
+#: ../../enterprise/operation/agentes/tag_view.php:390
+#: ../../enterprise/operation/agentes/agent_inventory.php:74
+#: ../../enterprise/operation/inventory/inventory.php:75
+#: ../../enterprise/operation/inventory/inventory.php:76
+#: ../../enterprise/operation/inventory/inventory.php:155
+#: ../../enterprise/operation/inventory/inventory.php:156
+#: ../../enterprise/operation/inventory/inventory.php:318
+#: ../../enterprise/operation/inventory/inventory.php:346
+#: ../../enterprise/operation/inventory/inventory.php:355
+#: ../../enterprise/include/class/ManageBackups.class.php:191
+#: ../../enterprise/include/functions_metaconsole.php:960
+#: ../../enterprise/include/functions_metaconsole.php:961
+#: ../../enterprise/include/functions_metaconsole.php:1309
+#: ../../enterprise/include/functions_ipam.php:1688
+#: ../../enterprise/include/functions_ipam.php:1733
+#: ../../enterprise/meta/include/ajax/wizard.ajax.php:400
+#: ../../enterprise/meta/include/ajax/wizard.ajax.php:444
+#: ../../enterprise/meta/include/functions_html_meta.php:75
+#: ../../enterprise/meta/include/functions_users_meta.php:87
+#: ../../enterprise/meta/include/functions_users_meta.php:98
+#: ../../enterprise/meta/include/functions_wizard_meta.php:322
+#: ../../enterprise/meta/monitoring/custom_fields_view.php:193
+#: ../../enterprise/meta/monitoring/custom_fields_view.php:209
+#: ../../enterprise/meta/monitoring/custom_fields_view.php:272
+#: ../../enterprise/meta/monitoring/custom_fields_view.php:762
+#: ../../enterprise/meta/monitoring/wizard/wizard.php:148
+#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:414
+#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:218
+#: ../../enterprise/meta/advanced/policymanager.queue.php:212
+#: ../../enterprise/meta/advanced/policymanager.queue.php:217
+#: ../../enterprise/meta/advanced/policymanager.queue.php:228
+#: ../../enterprise/meta/advanced/policymanager.queue.php:304
+#: ../../enterprise/meta/advanced/metasetup.relations.php:419
+#: ../../enterprise/meta/advanced/collections.data.php:412
+#: ../../enterprise/meta/advanced/metasetup.visual.php:290
+#: ../../enterprise/godmode/setup/setup_acl.php:487
+#: ../../enterprise/godmode/setup/setup_acl.php:504
+#: ../../enterprise/godmode/setup/setup_acl.php:521
+#: ../../enterprise/godmode/setup/setup_acl.php:753
+#: ../../enterprise/godmode/setup/setup_acl.php:761
+#: ../../enterprise/godmode/setup/setup_acl.php:772
+#: ../../enterprise/godmode/setup/setup_acl.php:813
+#: ../../enterprise/godmode/setup/setup_acl.php:844
+#: ../../enterprise/godmode/modules/local_components.php:541
+#: ../../enterprise/godmode/modules/local_components.php:567
+#: ../../enterprise/godmode/modules/local_components.php:592
+#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:241
+#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:243
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2022
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2825
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2852
+#: ../../enterprise/godmode/reporting/reporting_builder.global.php:143
+#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:187
+#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:612
+#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:638
+#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:131
+#: ../../enterprise/godmode/agentes/collections.data.php:506
+#: ../../enterprise/godmode/alerts/alert_inventory_builder.php:264
+#: ../../enterprise/godmode/policies/policy_agents.php:833
+#: ../../enterprise/godmode/policies/policy_queue.php:603
+#: ../../enterprise/godmode/policies/policy_queue.php:608
+#: ../../enterprise/godmode/policies/policy_queue.php:619
+#: ../../enterprise/godmode/policies/policy_queue.php:692
+#: ../../enterprise/godmode/policies/policy_external_alerts.php:358
+#: ../../extensions/files_repo/files_repo_form.php:46
+#: ../../extensions/agents_modules.php:416
+#: ../../mobile/operation/modules.php:68 ../../mobile/operation/modules.php:289
+#: ../../mobile/operation/modules.php:304 ../../mobile/operation/alerts.php:65
+#: ../../mobile/operation/alerts.php:72 ../../mobile/operation/events.php:683
+#: ../../mobile/operation/events.php:693 ../../mobile/operation/events.php:1165
+#: ../../mobile/operation/events.php:1194 ../../mobile/operation/agents.php:56
+#: ../../godmode/setup/gis_step_2.php:217
+#: ../../godmode/setup/setup_visuals.php:950
+#: ../../godmode/modules/manage_network_components.php:653
+#: ../../godmode/modules/manage_network_templates_form.php:303
+#: ../../godmode/reporting/reporting_builder.list_items.php:209
+#: ../../godmode/reporting/reporting_builder.list_items.php:211
+#: ../../godmode/reporting/reporting_builder.list_items.php:213
+#: ../../godmode/reporting/reporting_builder.list_items.php:235
+#: ../../godmode/reporting/reporting_builder.list_items.php:245
+#: ../../godmode/reporting/reporting_builder.list_items.php:255
+#: ../../godmode/reporting/create_container.php:546
+#: ../../godmode/reporting/reporting_builder.item_editor.php:1528
+#: ../../godmode/reporting/reporting_builder.item_editor.php:1546
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2007
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2826
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2853
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3471
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3537
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3559
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3617
+#: ../../godmode/reporting/visual_console_builder.wizard.php:340
+#: ../../godmode/reporting/visual_console_builder.wizard.php:354
+#: ../../godmode/events/event_edit_filter.php:323
+#: ../../godmode/events/event_edit_filter.php:338
+#: ../../godmode/events/event_edit_filter.php:601
+#: ../../godmode/massive/massive_delete_modules.php:327
+#: ../../godmode/massive/massive_delete_modules.php:374
+#: ../../godmode/massive/massive_delete_modules.php:429
+#: ../../godmode/massive/massive_delete_modules.php:450
+#: ../../godmode/massive/massive_copy_modules.php:127
+#: ../../godmode/massive/massive_copy_modules.php:287
+#: ../../godmode/massive/massive_edit_agents.php:543
+#: ../../godmode/massive/massive_edit_agents.php:556
+#: ../../godmode/massive/massive_delete_agents.php:221
+#: ../../godmode/massive/massive_delete_agents.php:235
+#: ../../godmode/massive/massive_edit_modules.php:311
+#: ../../godmode/massive/massive_edit_modules.php:358
+#: ../../godmode/massive/massive_edit_modules.php:396
+#: ../../godmode/massive/massive_edit_modules.php:482
+#: ../../godmode/alerts/alert_list.list.php:121
+#: ../../godmode/alerts/alert_list.list.php:127
+#: ../../godmode/alerts/alert_list.list.php:136
+#: ../../godmode/alerts/alert_list.list.php:145
+#: ../../godmode/alerts/alert_templates.php:308
+#: ../../godmode/alerts/alert_list.php:460
+#: ../../godmode/alerts/alert_list.php:509
+#: ../../godmode/alerts/alert_list.php:523
+msgid "All"
+msgstr ""
+
+#: ../../general/footer.php:51
+#, php-format
+msgid "%s %s - %s - MR %s"
+msgstr ""
+
+#: ../../general/footer.php:56
+#, php-format
+msgid "Page generated on %s"
+msgstr ""
+
 #: ../../general/mysqlerr.php:105
 msgid "Database error"
 msgstr ""
@@ -29916,6 +4117,21 @@ msgid ""
 "config.php or contact system administrator if you need assistance."
 msgstr ""
 
+#: ../../general/node_deactivated.php:36
+msgid "You cannot use this node until system is unified"
+msgstr ""
+
+#: ../../general/node_deactivated.php:59
+#: ../../enterprise/meta/monitoring/wizard/wizard.php:53
+#: ../../enterprise/meta/advanced/massive_operations.php:57
+msgid "command center"
+msgstr ""
+
+#: ../../general/node_deactivated.php:56
+#, php-format
+msgid "Please navigate to %s to unify system"
+msgstr ""
+
 #: ../../general/login_page.php:54
 #, php-format
 msgid "Go to %s Website"
@@ -29926,27 +4142,97 @@ msgid "Go to Login"
 msgstr ""
 
 #: ../../general/login_page.php:79
+#: ../../enterprise/meta/general/login_page.php:45
+#: ../../enterprise/meta/include/reset_pass.php:28
+#: ../../enterprise/meta/include/process_reset_pass.php:28
 msgid "Splash login"
 msgstr ""
 
 #: ../../general/login_page.php:136 ../../general/login_page.php:139
-#: ../../general/login_page.php:155
+#: ../../general/login_page.php:155 ../../enterprise/include/reset_pass.php:48
+#: ../../enterprise/include/process_reset_pass.php:53
 msgid "Docs"
 msgstr ""
 
+#: ../../general/login_page.php:244 ../../general/login_page.php:285
+#: ../../operation/users/user_edit.php:702
+#: ../../operation/users/user_edit.php:748
+#: ../../include/class/AgentWizard.class.php:672
+#: ../../include/class/CredentialStore.class.php:958
+#: ../../include/class/CredentialStore.class.php:995
+#: ../../include/class/CredentialStore.class.php:1135
+#: ../../include/class/CredentialStore.class.php:1158
+#: ../../include/functions_config.php:712
+#: ../../include/functions_config.php:732
+#: ../../enterprise/include/ajax/servers.ajax.php:101
+#: ../../enterprise/include/ajax/servers.ajax.php:159
+#: ../../enterprise/include/ajax/servers.ajax.php:285
+#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:514
+#: ../../enterprise/include/class/MySQL.app.php:535
+#: ../../enterprise/include/class/Oracle.app.php:520
+#: ../../enterprise/include/class/DB2.app.php:513
+#: ../../enterprise/include/class/VMware.app.php:732
+#: ../../enterprise/include/functions_setup.php:55
+#: ../../enterprise/include/functions_setup.php:113
+#: ../../enterprise/include/functions_ui.php:104
+#: ../../enterprise/meta/general/login_page.php:139
+#: ../../enterprise/meta/general/login_page.php:181
+#: ../../enterprise/meta/include/functions_meta.php:1177
+#: ../../enterprise/meta/include/functions_meta.php:1231
+#: ../../enterprise/meta/include/functions_meta.php:1285
+#: ../../enterprise/meta/include/functions_wizard_meta.php:523
+#: ../../enterprise/meta/include/functions_wizard_meta.php:1477
+#: ../../enterprise/godmode/setup/setup_auth.php:1045
+#: ../../enterprise/godmode/setup/setup_auth.php:1077
+#: ../../enterprise/godmode/setup/setup_module_library.php:52
+#: ../../enterprise/godmode/servers/manage_export_form.php:117
+#: ../../enterprise/godmode/servers/credential_boxes_satellite.php:250
+#: ../../enterprise/godmode/servers/manage_credential_boxes.php:59
+#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:851
+#: ../../extensions/api_checker.php:143 ../../mobile/include/user.class.php:380
+#: ../../godmode/setup/setup_integria.php:289
+#: ../../godmode/setup/setup_ehorus.php:86
+#: ../../godmode/modules/manage_network_components_form_wmi.php:49
+#: ../../godmode/massive/massive_edit_modules.php:908
+#: ../../godmode/agentes/module_manager_editor_wmi.php:116
+#: ../../godmode/users/configure_user.php:934
+msgid "Password"
+msgstr ""
+
 #: ../../general/login_page.php:251
 msgid "Login as admin"
 msgstr ""
 
+#: ../../general/login_page.php:259
+#: ../../enterprise/meta/general/login_page.php:154
+#: ../../mobile/include/user.class.php:404
+msgid "Login with SAML"
+msgstr ""
+
+#: ../../general/login_page.php:291
+#: ../../enterprise/meta/general/login_page.php:146
+#: ../../enterprise/meta/general/login_page.php:187
+#: ../../mobile/include/user.class.php:384
+msgid "Login"
+msgstr ""
+
 #: ../../general/login_page.php:307
+#: ../../enterprise/meta/general/login_page.php:109
 msgid "Authentication code"
 msgstr ""
 
+#: ../../general/login_page.php:310
+#: ../../enterprise/meta/general/login_page.php:112
+#: ../../mobile/include/user.class.php:473
+msgid "Check code"
+msgstr ""
+
 #: ../../general/login_page.php:319
 msgid "View details"
 msgstr ""
 
 #: ../../general/login_page.php:334 ../../general/login_page.php:337
+#: ../../enterprise/meta/general/login_page.php:195
 msgid "Forgot your password?"
 msgstr ""
 
@@ -29954,6 +4240,12 @@ msgstr ""
 #: ../../general/login_page.php:428 ../../general/login_page.php:431
 #: ../../general/login_page.php:445 ../../general/login_page.php:448
 #: ../../general/login_page.php:465 ../../general/login_page.php:468
+#: ../../enterprise/meta/general/login_page.php:235
+#: ../../enterprise/meta/general/login_page.php:238
+#: ../../enterprise/meta/general/login_page.php:252
+#: ../../enterprise/meta/general/login_page.php:255
+#: ../../enterprise/meta/general/login_page.php:272
+#: ../../enterprise/meta/general/login_page.php:275
 msgid "Password reset"
 msgstr ""
 
@@ -29972,36 +4264,62 @@ msgstr ""
 msgid "NEXT GENERATION"
 msgstr ""
 
-#: ../../general/login_page.php:424
+#: ../../general/login_page.php:424 ../../enterprise/include/reset_pass.php:170
+#: ../../enterprise/include/process_reset_pass.php:183
+#: ../../enterprise/meta/general/login_page.php:232
+#: ../../enterprise/meta/include/reset_pass.php:161
+#: ../../enterprise/meta/include/process_reset_pass.php:164
 msgid "Build"
 msgstr ""
 
 #: ../../general/login_page.php:435
+#: ../../enterprise/meta/general/login_page.php:242
 msgid "INFO"
 msgstr ""
 
 #: ../../general/login_page.php:436
+#: ../../enterprise/meta/general/login_page.php:243
 msgid "An email has been sent to your email address"
 msgstr ""
 
 #: ../../general/login_page.php:452 ../../general/login_page.php:494
+#: ../../enterprise/include/reset_pass.php:181
+#: ../../enterprise/meta/general/login_page.php:259
+#: ../../enterprise/meta/general/login_page.php:301
+#: ../../enterprise/meta/include/reset_pass.php:172
 msgid "ERROR"
 msgstr ""
 
 #: ../../general/login_page.php:472
+#: ../../enterprise/meta/general/login_page.php:279
 msgid "SUCCESS"
 msgstr ""
 
 #: ../../general/login_page.php:487 ../../general/login_page.php:490
 #: ../../general/login_page.php:644 ../../general/login_page.php:647
+#: ../../enterprise/include/functions_login.php:141
+#: ../../enterprise/meta/general/login_page.php:294
+#: ../../enterprise/meta/general/login_page.php:297
 msgid "Login failed"
 msgstr ""
 
 #: ../../general/login_page.php:512 ../../general/login_page.php:515
 #: ../../general/login_page.php:519
+#: ../../enterprise/meta/general/login_page.php:319
+#: ../../enterprise/meta/general/login_page.php:322
+#: ../../enterprise/meta/general/login_page.php:326
 msgid "Logged out"
 msgstr ""
 
+#: ../../general/login_page.php:521
+#: ../../enterprise/meta/general/login_page.php:327
+#: ../../mobile/include/user.class.php:342
+#, php-format
+msgid ""
+"Your session has ended. Please close your browser window to close this %s "
+"session."
+msgstr ""
+
 #: ../../general/login_page.php:536
 msgid "User node access not enabled"
 msgstr ""
@@ -30126,6 +4444,22 @@ msgid ""
 "$config[\"homeurl_static\"] = add the correct path"
 msgstr ""
 
+#: ../../general/noaccesssaml.php:135
+#: ../../enterprise/meta/general/noaccesssaml.php:135
+msgid ""
+"Access to this page is restricted to authorized users SAML only, please "
+"contact system administrator if you need assistance."
+msgstr ""
+
+#: ../../general/noaccesssaml.php:137
+#: ../../enterprise/meta/general/noaccesssaml.php:137
+#, php-format
+msgid ""
+"Please make sure you have SAML authentication properly configured. For more "
+"information the error to access this page are recorded in security logs of "
+"%s System Database"
+msgstr ""
+
 #: ../../general/pandora_help.php:23
 #, php-format
 msgid "%s help system"
@@ -30141,3 +4475,46135 @@ msgid ""
 "%s help system has been called with a help reference that currently don't "
 "exist. There is no help content to show."
 msgstr ""
+
+#: ../../operation/messages/message_list.php:46
+#: ../../operation/messages/message_list.php:55
+#: ../../operation/messages/message_edit.php:66
+msgid "Sent messages"
+msgstr ""
+
+#: ../../operation/messages/message_list.php:46
+#: ../../operation/messages/message_list.php:50
+#: ../../operation/messages/message_edit.php:54
+msgid "Received messages"
+msgstr ""
+
+#: ../../operation/messages/message_list.php:64
+#: ../../operation/messages/message_list.php:304
+#: ../../operation/messages/message_edit.php:78
+msgid "Create message"
+msgstr ""
+
+#: ../../operation/messages/message_list.php:86
+#: ../../operation/messages/message_edit.php:99 ../../operation/menu.php:453
+#: ../../operation/users/user_edit_header.php:127
+msgid "Workspace"
+msgstr ""
+
+#: ../../operation/messages/message_list.php:90
+#: ../../operation/messages/message_edit.php:103 ../../operation/menu.php:493
+#: ../../enterprise/meta/general/main_menu.php:318
+msgid "Messages"
+msgstr ""
+
+#: ../../operation/messages/message_list.php:136
+msgid "Not deleted. Error deleting messages"
+msgstr ""
+
+#: ../../operation/messages/message_list.php:144
+#: ../../operation/messages/message_list.php:153
+msgid "You have"
+msgstr ""
+
+#: ../../operation/messages/message_list.php:144
+msgid "sent message(s)"
+msgstr ""
+
+#: ../../operation/messages/message_list.php:153
+msgid "unread message(s)"
+msgstr ""
+
+#: ../../operation/messages/message_list.php:164
+msgid "There are no messages."
+msgstr ""
+
+#: ../../operation/messages/message_list.php:192
+#: ../../operation/search_policies.php:38 ../../operation/search_modules.php:36
+#: ../../operation/snmpconsole/snmp_view.php:584
+#: ../../operation/snmpconsole/snmp_view.php:849
+#: ../../operation/snmpconsole/snmp_view.php:1226
+#: ../../operation/search_agents.php:56
+#: ../../operation/events/events.build_table.php:358
+#: ../../operation/agentes/status_monitor.php:1335
+#: ../../operation/agentes/alerts_status.php:552
+#: ../../operation/agentes/alerts_status.php:587
+#: ../../operation/agentes/alerts_status.php:622
+#: ../../operation/agentes/alerts_status.php:654
+#: ../../operation/agentes/interface_view.functions.php:497
+#: ../../operation/agentes/alerts_status.functions.php:104
+#: ../../operation/agentes/estado_agente.php:280
+#: ../../operation/agentes/estado_agente.php:763
+#: ../../operation/incidents/integriaims_export_csv.php:83
+#: ../../operation/incidents/configure_integriaims_incident.php:250
+#: ../../operation/incidents/list_integriaims_incidents.php:320
+#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:322
+#: ../../include/ajax/module.php:980 ../../include/ajax/alert_list.ajax.php:283
+#: ../../include/ajax/alert_list.ajax.php:308
+#: ../../include/ajax/custom_fields.php:416
+#: ../../include/class/AgentsAlerts.class.php:906
+#: ../../include/class/ExternalTools.class.php:795
+#: ../../include/class/NetworkMap.class.php:2907
+#: ../../include/lib/Dashboard/Widgets/system_group_status.php:318
+#: ../../include/functions_events.php:196
+#: ../../include/functions_events.php:251
+#: ../../include/functions_events.php:2624
+#: ../../include/functions_events.php:5071
+#: ../../include/functions_events.php:6663 ../../include/functions_snmp.php:369
+#: ../../include/functions_snmp_browser.php:594
+#: ../../include/functions_reporting_html.php:547
+#: ../../include/functions_reporting_html.php:1045
+#: ../../include/functions_reporting_html.php:1054
+#: ../../include/functions_reporting_html.php:1266
+#: ../../include/functions_reporting_html.php:1274
+#: ../../include/functions_reporting_html.php:1520
+#: ../../include/functions_reporting_html.php:2078
+#: ../../include/functions_reporting_html.php:2348
+#: ../../include/functions_reporting_html.php:2693
+#: ../../include/functions_reporting_html.php:3342
+#: ../../include/functions_reporting_html.php:3395
+#: ../../include/functions_reporting_html.php:4967
+#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:412
+#: ../../enterprise/views/ncm/devices/list.php:120
+#: ../../enterprise/views/cluster/list.php:63
+#: ../../enterprise/operation/services/services.service.php:127
+#: ../../enterprise/operation/services/services.list.php:243
+#: ../../enterprise/operation/services/services.list.php:507
+#: ../../enterprise/operation/services/services.table_services.php:165
+#: ../../enterprise/operation/agentes/tag_view.php:607
+#: ../../enterprise/operation/agentes/tag_view.php:685
+#: ../../enterprise/operation/agentes/policy_view.php:66
+#: ../../enterprise/operation/agentes/policy_view.php:166
+#: ../../enterprise/operation/agentes/policy_view.php:262
+#: ../../enterprise/operation/agentes/policy_view.php:397
+#: ../../enterprise/operation/agentes/collection_view.php:78
+#: ../../enterprise/include/functions_reporting_csv.php:718
+#: ../../enterprise/include/functions_reporting_csv.php:881
+#: ../../enterprise/include/functions_reporting_csv.php:1993
+#: ../../enterprise/include/functions_reporting_csv.php:2739
+#: ../../enterprise/include/class/ManageBackups.class.php:165
+#: ../../enterprise/include/functions_services.php:1613
+#: ../../enterprise/include/functions_reporting.php:1857
+#: ../../enterprise/include/functions_reporting.php:2896
+#: ../../enterprise/include/functions_reporting.php:3883
+#: ../../enterprise/include/functions_reporting.php:6139
+#: ../../enterprise/meta/include/functions_events_meta.php:78
+#: ../../enterprise/meta/monitoring/custom_fields_view.php:707
+#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:466
+#: ../../enterprise/meta/advanced/policymanager.queue.php:225
+#: ../../enterprise/meta/advanced/servers.build_table.php:61
+#: ../../enterprise/meta/agentsearch.php:140
+#: ../../enterprise/meta/agentsearch.php:330
+#: ../../enterprise/extensions/vmware/vmware_view.php:1085
+#: ../../enterprise/godmode/servers/list_satellite.php:38
+#: ../../enterprise/godmode/servers/HA_cluster.php:170
+#: ../../enterprise/godmode/admin_access_logs.php:50
+#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:125
+#: ../../enterprise/godmode/agentes/collection_manager.php:112
+#: ../../enterprise/godmode/agentes/collection_manager.php:209
+#: ../../enterprise/godmode/policies/policy_agents.php:852
+#: ../../enterprise/godmode/policies/policy_agents.php:1368
+#: ../../enterprise/godmode/policies/policy_queue.php:616
+#: ../../enterprise/godmode/policies/policy_modules.php:1466
+#: ../../enterprise/godmode/policies/policies.php:405
+#: ../../enterprise/godmode/policies/policy_alerts.php:354
+#: ../../enterprise/godmode/policies/policy_collections.php:172
+#: ../../enterprise/godmode/policies/policy_collections.php:266
+#: ../../mobile/operation/modules.php:163
+#: ../../mobile/operation/modules.php:164
+#: ../../mobile/operation/modules.php:275
+#: ../../mobile/operation/modules.php:276
+#: ../../mobile/operation/modules.php:603
+#: ../../mobile/operation/modules.php:609
+#: ../../mobile/operation/modules.php:615
+#: ../../mobile/operation/modules.php:621
+#: ../../mobile/operation/modules.php:632
+#: ../../mobile/operation/modules.php:640
+#: ../../mobile/operation/modules.php:648
+#: ../../mobile/operation/modules.php:720
+#: ../../mobile/operation/modules.php:732
+#: ../../mobile/operation/modules.php:850 ../../mobile/operation/alerts.php:105
+#: ../../mobile/operation/alerts.php:106 ../../mobile/operation/alerts.php:247
+#: ../../mobile/operation/alerts.php:248 ../../mobile/operation/alerts.php:350
+#: ../../mobile/operation/events.php:368 ../../mobile/operation/events.php:369
+#: ../../mobile/operation/events.php:536 ../../mobile/operation/events.php:672
+#: ../../mobile/operation/events.php:673 ../../mobile/operation/agents.php:97
+#: ../../mobile/operation/agents.php:144 ../../mobile/operation/agents.php:243
+#: ../../mobile/operation/agents.php:244 ../../mobile/operation/agents.php:406
+#: ../../godmode/setup/setup_integria.php:426
+#: ../../godmode/setup/setup_integria.php:548
+#: ../../godmode/servers/servers.build_table.php:80
+#: ../../godmode/reporting/reporting_builder.item_editor.php:77
+#: ../../godmode/events/custom_events.php:101
+#: ../../godmode/massive/massive_delete_modules.php:415
+#: ../../godmode/massive/massive_copy_modules.php:121
+#: ../../godmode/massive/massive_copy_modules.php:281
+#: ../../godmode/massive/massive_edit_agents.php:537
+#: ../../godmode/massive/massive_edit_agents.php:905
+#: ../../godmode/massive/massive_delete_agents.php:215
+#: ../../godmode/wizards/DiscoveryTaskList.class.php:600
+#: ../../godmode/agentes/module_manager.php:863
+#: ../../godmode/agentes/status_monitor_custom_fields.php:97
+#: ../../godmode/agentes/status_monitor_custom_fields.php:148
+#: ../../godmode/agentes/agent_incidents.php:89
+#: ../../godmode/alerts/alert_list.list.php:132
+#: ../../godmode/alerts/alert_list.list.php:482
+#: ../../godmode/alerts/alert_view.php:114
+msgid "Status"
+msgstr ""
+
+#: ../../operation/messages/message_list.php:194
+#: ../../operation/messages/message_edit.php:269
+msgid "Destination"
+msgstr ""
+
+#: ../../operation/messages/message_list.php:196
+#: ../../operation/messages/message_edit.php:265
+msgid "Sender"
+msgstr ""
+
+#: ../../operation/messages/message_list.php:199
+#: ../../operation/messages/message_edit.php:350
+#: ../../enterprise/operation/reporting/custom_reporting.php:132
+#: ../../enterprise/include/functions_cron.php:190
+#: ../../enterprise/include/functions_cron.php:240
+#: ../../enterprise/include/functions_reporting.php:8186
+#: ../../godmode/setup/news.php:183 ../../godmode/setup/news.php:246
+msgid "Subject"
+msgstr ""
+
+#: ../../operation/messages/message_list.php:200
+#: ../../operation/search_modules.php:39
+#: ../../operation/snmpconsole/snmp_view.php:881
+#: ../../operation/events/events.build_table.php:192
+#: ../../operation/agentes/status_monitor.php:1365
+#: ../../operation/agentes/exportdata.csv.php:74
+#: ../../operation/agentes/exportdata.php:83
+#: ../../operation/agentes/exportdata.excel.php:74
+#: ../../operation/agentes/estado_generalagente.php:624
+#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:116
+#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:247
+#: ../../include/ajax/events_extended.php:90
+#: ../../include/ajax/custom_fields.php:415 ../../include/ajax/events.php:1809
+#: ../../include/functions_events.php:197
+#: ../../include/functions_events.php:254
+#: ../../include/functions_events.php:2620
+#: ../../include/functions_events.php:4997
+#: ../../include/functions_events.php:6689
+#: ../../include/functions_netflow.php:278
+#: ../../include/functions_reporting_html.php:1052
+#: ../../include/functions_reporting_html.php:1060
+#: ../../include/functions_reporting_html.php:1271
+#: ../../include/functions_reporting_html.php:1278
+#: ../../include/functions_reporting_html.php:2357
+#: ../../include/functions_reporting_html.php:4970
+#: ../../enterprise/operation/agentes/tag_view.php:686
+#: ../../enterprise/include/functions_reporting_csv.php:802
+#: ../../enterprise/include/functions_reporting_csv.php:875
+#: ../../enterprise/include/functions_reporting_csv.php:1458
+#: ../../enterprise/include/functions_reporting_csv.php:2281
+#: ../../enterprise/include/functions_reporting_csv.php:2317
+#: ../../enterprise/include/functions_reporting_csv.php:2629
+#: ../../enterprise/include/class/LogSource.class.php:628
+#: ../../enterprise/include/class/Omnishell.class.php:400
+#: ../../enterprise/include/functions_inventory.php:113
+#: ../../enterprise/include/functions_inventory.php:147
+#: ../../enterprise/include/functions_inventory.php:349
+#: ../../enterprise/include/functions_inventory.php:369
+#: ../../enterprise/include/functions_inventory.php:555
+#: ../../enterprise/meta/include/functions_events_meta.php:82
+#: ../../mobile/operation/modules.php:661
+#: ../../mobile/operation/modules.php:852 ../../mobile/operation/events.php:516
+#: ../../godmode/setup/news.php:249
+#: ../../godmode/update_manager/update_manager.history.php:44
+#: ../../godmode/events/custom_events.php:102
+#: ../../godmode/agentes/status_monitor_custom_fields.php:117
+#: ../../godmode/agentes/status_monitor_custom_fields.php:153
+msgid "Timestamp"
+msgstr ""
+
+#: ../../operation/messages/message_list.php:214
+msgid "Click to read"
+msgstr ""
+
+#: ../../operation/messages/message_list.php:218
+msgid "Mark as unread"
+msgstr ""
+
+#: ../../operation/messages/message_list.php:224
+#: ../../operation/messages/message_list.php:228
+msgid "Message unread - click to read"
+msgstr ""
+
+#: ../../operation/messages/message_list.php:256
+msgid "No Subject"
+msgstr ""
+
+#: ../../operation/messages/message_edit.php:90
+msgid "Compose message"
+msgstr ""
+
+#: ../../operation/messages/message_edit.php:119
+msgid "This message does not exist in the system"
+msgstr ""
+
+#: ../../operation/messages/message_edit.php:188
+msgid "wrote"
+msgstr ""
+
+#: ../../operation/messages/message_edit.php:203
+msgid "Delete conversation"
+msgstr ""
+
+#: ../../operation/messages/message_edit.php:211
+msgid "Reply"
+msgstr ""
+
+#: ../../operation/messages/message_edit.php:226
+msgid "User or group must be selected."
+msgstr ""
+
+#: ../../operation/messages/message_edit.php:244
+#, php-format
+msgid "Message successfully sent to user %s"
+msgstr ""
+
+#: ../../operation/messages/message_edit.php:245
+#, php-format
+msgid "Error sending message to user %s"
+msgstr ""
+
+#: ../../operation/messages/message_edit.php:324
+msgid "Select user"
+msgstr ""
+
+#: ../../operation/messages/message_edit.php:330
+msgid "OR"
+msgstr ""
+
+#: ../../operation/messages/message_edit.php:341
+msgid "Select group"
+msgstr ""
+
+#: ../../operation/messages/message_edit.php:360
+#: ../../enterprise/operation/reporting/custom_reporting.php:150
+#: ../../enterprise/include/functions_cron.php:194
+#: ../../enterprise/include/functions_cron.php:244
+#: ../../enterprise/include/functions_reporting.php:8204
+msgid "Message"
+msgstr ""
+
+#: ../../operation/messages/message_edit.php:396
+msgid "Send message"
+msgstr ""
+
+#: ../../operation/visual_console/legacy_public_view.php:57
+#: ../../operation/visual_console/public_view.php:38
+#: ../../operation/gis_maps/public_console.php:277
+#: ../../operation/events/sound_events.php:90
+#: ../../operation/agentes/stat_win.php:92 ../../index.php:1395
+#: ../../enterprise/meta/index.php:206
+msgid "Connection with server has been lost"
+msgstr ""
+
+#: ../../operation/visual_console/legacy_public_view.php:58
+#: ../../operation/visual_console/public_view.php:39
+#: ../../operation/gis_maps/public_console.php:278
+#: ../../operation/events/sound_events.php:91
+#: ../../operation/agentes/stat_win.php:93 ../../index.php:1396
+#: ../../enterprise/meta/index.php:207
+msgid ""
+"Connection to the server has been lost. Please check your internet "
+"connection or contact with administrator."
+msgstr ""
+
+#: ../../operation/visual_console/legacy_public_view.php:168
+#: ../../operation/visual_console/public_view.php:150
+msgid "QR code of the page"
+msgstr ""
+
+#: ../../operation/visual_console/legacy_public_view.php:198
+#: ../../operation/visual_console/legacy_view.php:339
+msgid "Until refresh"
+msgstr ""
+
+#: ../../operation/visual_console/legacy_view.php:121
+#: ../../operation/visual_console/view.php:122
+#: ../../enterprise/meta/screens/screens.visualmap.php:286
+#: ../../godmode/reporting/visual_console_builder.php:801
+msgid "Visual consoles list"
+msgstr ""
+
+#: ../../operation/visual_console/legacy_view.php:137
+#: ../../operation/visual_console/view.php:150
+#: ../../enterprise/meta/screens/screens.visualmap.php:261
+#: ../../godmode/reporting/visual_console_builder.php:805
+msgid "Show link to public Visual Console"
+msgstr ""
+
+#: ../../operation/visual_console/legacy_view.php:147
+#: ../../operation/visual_console/view.php:160
+#: ../../operation/reporting/graph_viewer.php:193
+#: ../../operation/reporting/reporting_viewer.php:139
+#: ../../enterprise/meta/screens/screens.visualmap.php:241
+#: ../../godmode/reporting/reporting_builder.main.php:73
+#: ../../godmode/reporting/visual_console_builder.php:809
+#: ../../godmode/reporting/graph_builder.php:298
+#: ../../godmode/reporting/reporting_builder.php:3529
+msgid "Main data"
+msgstr ""
+
+#: ../../operation/visual_console/legacy_view.php:155
+#: ../../operation/visual_console/view.php:168
+#: ../../enterprise/meta/screens/screens.visualmap.php:230
+#: ../../godmode/reporting/visual_console_builder.php:813
+msgid "List elements"
+msgstr ""
+
+#: ../../operation/visual_console/legacy_view.php:165
+#: ../../operation/visual_console/view.php:178
+#: ../../godmode/reporting/visual_console_builder.php:819
+msgid "Services wizard"
+msgstr ""
+
+#: ../../operation/visual_console/legacy_view.php:175
+#: ../../operation/visual_console/view.php:188
+#: ../../enterprise/include/functions_reporting.php:60
+#: ../../enterprise/include/functions_reporting.php:7990
+#: ../../enterprise/include/functions_reporting.php:8016
+#: ../../enterprise/meta/screens/screens.visualmap.php:219
+#: ../../enterprise/meta/general/main_menu.php:238
+#: ../../enterprise/meta/general/logon_ok.php:48
+#: ../../enterprise/meta/general/main_header.php:134
+#: ../../enterprise/meta/monitoring/wizard/wizard.php:123
+#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:61
+#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:94
+#: ../../godmode/reporting/visual_console_builder.php:825
+#: ../../godmode/reporting/visual_console_builder.wizard.php:518
+msgid "Wizard"
+msgstr ""
+
+#: ../../operation/visual_console/legacy_view.php:183
+#: ../../enterprise/meta/screens/screens.visualmap.php:206
+#: ../../enterprise/godmode/alerts/alert_inventory.php:80
+#: ../../godmode/reporting/visual_console_builder.php:830
+msgid "Builder"
+msgstr ""
+
+#: ../../operation/visual_console/legacy_view.php:193
+#: ../../operation/visual_console/view.php:198 ../../operation/tree.php:187
+#: ../../operation/agentes/status_monitor.php:75
+#: ../../operation/agentes/estado_agente.php:858
+#: ../../operation/agentes/estado_agente.php:861
+#: ../../operation/agentes/ver_agente.php:1907
+#: ../../enterprise/operation/agentes/policy_view.php:70
+#: ../../enterprise/include/lib/ClusterViewer/ClusterManager.php:601
+#: ../../enterprise/meta/screens/screens.visualmap.php:163
+#: ../../enterprise/meta/screens/screens.visualmap.php:194
+#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:106
+#: ../../godmode/setup/setup_visuals.php:163
+#: ../../godmode/setup/setup_visuals.php:227
+#: ../../godmode/setup/setup_visuals.php:281
+#: ../../godmode/setup/setup_visuals.php:286
+#: ../../godmode/setup/setup_visuals.php:325
+#: ../../godmode/setup/setup_visuals.php:362
+#: ../../godmode/setup/setup_visuals.php:384
+#: ../../godmode/setup/setup_visuals.php:409
+#: ../../godmode/setup/setup_visuals.php:428
+#: ../../godmode/setup/setup_visuals.php:447
+#: ../../godmode/setup/setup_visuals.php:466
+#: ../../godmode/setup/setup_visuals.php:608
+#: ../../godmode/reporting/visual_console_builder.php:836
+#: ../../godmode/menu.php:554 ../../godmode/agentes/configurar_agente.php:372
+#: ../../godmode/agentes/modificar_agente.php:82
+#: ../../godmode/agentes/modificar_agente.php:836
+#: ../../godmode/agentes/modificar_agente.php:841
+#: ../../godmode/module_library/module_library_view.php:59
+msgid "View"
+msgstr ""
+
+#: ../../operation/visual_console/view.php:226 ../../operation/menu.php:300
+#: ../../operation/agentes/pandora_networkmap.php:665
+#: ../../operation/agentes/pandora_networkmap.editor.php:214
+#: ../../enterprise/operation/services/services.treeview_services.php:77
+#: ../../enterprise/operation/services/services.service.php:79
+#: ../../enterprise/operation/services/services.list.php:71
+#: ../../enterprise/operation/services/services.service_map.php:86
+#: ../../enterprise/operation/services/services.table_services.php:54
+#: ../../enterprise/godmode/services/services.elements.php:794
+#: ../../enterprise/godmode/services/services.service.php:485
+#: ../../enterprise/godmode/reporting/visual_console_template.php:118
+#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:117
+#: ../../enterprise/godmode/agentes/pandora_networkmap_empty.editor.php:102
+#: ../../godmode/reporting/map_builder.php:130
+#: ../../godmode/reporting/visual_console_builder.php:863
+#: ../../godmode/reporting/visual_console_favorite.php:127
+#: ../../godmode/agentes/pandora_networkmap_empty.editor.php:104
+msgid "Topology maps"
+msgstr ""
+
+#: ../../operation/visual_console/view.php:230 ../../operation/menu.php:177
+#: ../../operation/menu.php:181 ../../operation/users/user_edit.php:357
+#: ../../include/lib/Dashboard/Widgets/maps_made_by_user.php:324
+#: ../../enterprise/meta/screens/screens.visualmap.php:305
+#: ../../enterprise/meta/screens/screens.visualmap.php:310
+#: ../../enterprise/godmode/reporting/visual_console_template.php:122
+#: ../../enterprise/godmode/reporting/visual_console_template.php:128
+#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:121
+#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:127
+#: ../../extensions/resource_exportation.php:436
+#: ../../godmode/reporting/map_builder.php:134
+#: ../../godmode/reporting/map_builder.php:140
+#: ../../godmode/reporting/visual_console_builder.php:867
+#: ../../godmode/reporting/visual_console_favorite.php:131
+#: ../../godmode/reporting/visual_console_favorite.php:137
+#: ../../godmode/users/configure_user.php:1110
+msgid "Visual console"
+msgstr ""
+
+#: ../../operation/visual_console/view.php:296
+#: ../../include/functions_visual_map_editor.php:1387
+#: ../../include/functions_visual_map.php:4214
+#: ../../godmode/setup/gis_step_2.php:233
+#: ../../godmode/reporting/visual_console_builder.elements.php:182
+msgid "Static Image"
+msgstr ""
+
+#: ../../operation/visual_console/view.php:301
+#: ../../include/functions_visual_map_editor.php:57
+#: ../../include/functions_visual_map_editor.php:1388
+#: ../../godmode/reporting/visual_console_builder.wizard.php:128
+msgid "Percentile Item"
+msgstr ""
+
+#: ../../operation/visual_console/view.php:306
+#: ../../include/functions_visual_map_editor.php:1389
+#: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:555
+#: ../../mobile/operation/events.php:549
+#: ../../godmode/reporting/visual_console_builder.elements.php:221
+msgid "Module Graph"
+msgstr ""
+
+#: ../../operation/visual_console/view.php:311
+#: ../../include/rest-api/models/VisualConsole/Item.php:2155
+#: ../../godmode/reporting/visual_console_builder.elements.php:351
+msgid "Basic chart"
+msgstr ""
+
+#: ../../operation/visual_console/view.php:316
+#: ../../include/functions_visual_map_editor.php:1390
+msgid "Serialized pie graph"
+msgstr ""
+
+#: ../../operation/visual_console/view.php:321
+#: ../../include/functions_visual_map_editor.php:1391
+msgid "Bars Graph"
+msgstr ""
+
+#: ../../operation/visual_console/view.php:326
+#: ../../include/functions_visual_map_editor.php:59
+#: ../../include/functions_visual_map_editor.php:1392
+#: ../../include/functions_visual_map.php:4194
+#: ../../godmode/reporting/visual_console_builder.elements.php:231
+msgid "Event history graph"
+msgstr ""
+
+#: ../../operation/visual_console/view.php:331
+#: ../../include/functions_visual_map_editor.php:1393
+#: ../../include/functions_visual_map.php:4219
+#: ../../include/rest-api/models/VisualConsole/Item.php:2131
+#: ../../godmode/reporting/visual_console_builder.elements.php:240
+msgid "Simple Value"
+msgstr ""
+
+#: ../../operation/visual_console/view.php:336
+#: ../../include/functions_visual_map_editor.php:67
+#: ../../include/functions_visual_map_editor.php:193
+#: ../../include/functions_visual_map_editor.php:779
+#: ../../include/functions_visual_map_editor.php:1394
+#: ../../include/lib/Dashboard/Widgets/sla_percent.php:285
+#: ../../include/lib/Dashboard/Widgets/module_value.php:278
+#: ../../include/lib/Dashboard/Widgets/module_status.php:294
+#: ../../include/lib/Dashboard/Widgets/graph_module_histogram.php:274
+#: ../../include/lib/Dashboard/Widgets/module_icon.php:304
+#: ../../include/functions_visual_map.php:4224
+#: ../../include/rest-api/models/VisualConsole/Item.php:1941
+#: ../../include/rest-api/models/VisualConsole/Item.php:2135
+#: ../../enterprise/include/functions_reporting_csv.php:1158
+#: ../../enterprise/meta/advanced/metasetup.consoles.php:513
+#: ../../enterprise/meta/advanced/metasetup.consoles.php:837
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1702
+#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:498
+#: ../../godmode/reporting/visual_console_builder.elements.php:104
+#: ../../godmode/reporting/visual_console_builder.elements.php:283
+#: ../../godmode/reporting/reporting_builder.item_editor.php:1116
+#: ../../godmode/reporting/graph_builder.graph_editor.php:214
+#: ../../godmode/reporting/visual_console_builder.wizard.php:446
+msgid "Label"
+msgstr ""
+
+#: ../../operation/visual_console/view.php:341
+#: ../../include/functions_visual_map_editor.php:68
+#: ../../include/functions_visual_map_editor.php:1395
+#: ../../include/lib/Dashboard/Widgets/module_status.php:374
+#: ../../include/lib/Dashboard/Widgets/module_icon.php:384
+#: ../../include/functions_visual_map.php:4239
+#: ../../include/rest-api/models/VisualConsole/Item.php:2147
+#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:103
+#: ../../godmode/setup/os.builder.php:40
+#: ../../godmode/modules/module_list.php:60
+#: ../../godmode/reporting/visual_console_builder.elements.php:292
+#: ../../godmode/groups/configure_group.php:153
+#: ../../godmode/groups/group_list.php:844
+msgid "Icon"
+msgstr ""
+
+#: ../../operation/visual_console/view.php:346
+#: ../../include/functions_visual_map_editor.php:69
+#: ../../include/functions_visual_map_editor.php:1396
+#: ../../include/lib/Dashboard/Widgets/clock.php:158
+#: ../../include/lib/Dashboard/Widgets/clock.php:310
+#: ../../include/functions_visual_map.php:4184
+#: ../../include/rest-api/models/VisualConsole/Item.php:2103
+#: ../../godmode/reporting/visual_console_builder.elements.php:367
+msgid "Clock"
+msgstr ""
+
+#: ../../operation/visual_console/view.php:356
+#: ../../include/functions_visual_map_editor.php:71
+#: ../../include/functions_visual_map_editor.php:1398
+#: ../../include/functions_visual_map.php:4174
+#: ../../godmode/reporting/visual_console_builder.elements.php:303
+msgid "Box"
+msgstr ""
+
+#: ../../operation/visual_console/view.php:361
+#: ../../operation/reporting/graph_viewer.php:372
+#: ../../operation/agentes/graphs.php:238
+#: ../../operation/agentes/graphs.php:244
+#: ../../operation/agentes/graphs.php:417
+#: ../../operation/agentes/graphs.php:432
+#: ../../include/functions_visual_map_editor.php:72
+#: ../../include/functions_visual_map_editor.php:557
+#: ../../include/functions_visual_map_editor.php:1399
+#: ../../include/lib/Dashboard/Widgets/custom_graph.php:317
+#: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:651
+#: ../../enterprise/meta/advanced/metasetup.visual.php:357
+#: ../../enterprise/godmode/reporting/graph_template_editor.php:247
+#: ../../godmode/setup/setup_visuals.php:909
+#: ../../godmode/setup/setup_visuals.php:926
+#: ../../godmode/reporting/create_container.php:359
+#: ../../godmode/reporting/visual_console_builder.elements.php:333
+#: ../../godmode/reporting/graph_builder.main.php:216
+msgid "Line"
+msgstr ""
+
+#: ../../operation/visual_console/view.php:366
+#: ../../include/functions_visual_map_editor.php:73
+#: ../../include/functions_visual_map_editor.php:1400
+#: ../../include/functions_visual_map.php:4234
+#: ../../include/rest-api/models/VisualConsole/Item.php:2143
+#: ../../godmode/reporting/visual_console_builder.elements.php:343
+msgid "Color cloud"
+msgstr ""
+
+#: ../../operation/visual_console/view.php:371
+#: ../../include/functions_visual_map_editor.php:1405
+#: ../../godmode/reporting/visual_console_builder.elements.php:322
+msgid "Network link"
+msgstr ""
+
+#: ../../operation/visual_console/view.php:376
+#: ../../include/rest-api/models/VisualConsole/Item.php:2151
+#: ../../godmode/reporting/visual_console_builder.elements.php:359
+msgid "Odometer"
+msgstr ""
+
+#: ../../operation/visual_console/view.php:387
+msgid "Delete Item"
+msgstr ""
+
+#: ../../operation/visual_console/view.php:393
+msgid "Copy Item"
+msgstr ""
+
+#: ../../operation/visual_console/view.php:406
+#: ../../operation/agentes/estado_generalagente.php:326
+msgid "Force remote checks"
+msgstr ""
+
+#: ../../operation/visual_console/view.php:734
+msgid "Are you sure"
+msgstr ""
+
+#: ../../operation/visual_console/view.php:806
+#: ../../include/ajax/snmp_browser.ajax.php:260
+#: ../../include/class/ModuleTemplates.class.php:1417
+#: ../../include/class/HelpFeedBack.class.php:359
+#: ../../include/class/WebServerModuleDebug.class.php:359
+#: ../../include/class/AgentWizard.class.php:5802
+#: ../../include/class/Diagnostics.class.php:2087
+#: ../../include/class/ConfigPEN.class.php:737
+#: ../../include/class/CredentialStore.class.php:1185
+#: ../../include/functions_ui.php:294
+#: ../../enterprise/include/class/AgentRepository.class.php:842
+#: ../../enterprise/include/class/LogSource.class.php:788
+#: ../../enterprise/include/class/ManageBackups.class.php:473
+#: ../../enterprise/include/class/Omnishell.class.php:1083
+#: ../../enterprise/include/class/DeploymentCenter.class.php:1611
+#: ../../enterprise/include/functions_HA_cluster.php:535
+#: ../../enterprise/include/functions_visual_map.php:677
+#: ../../enterprise/godmode/services/services.elements.php:840
+#: ../../enterprise/godmode/services/services.elements.php:851
+#: ../../godmode/wizards/DiscoveryTaskList.class.php:1057
+msgid "Success"
+msgstr ""
+
+#: ../../operation/visual_console/view.php:813
+#: ../../operation/visual_console/view.php:818
+#: ../../include/ajax/snmp_browser.ajax.php:259
+#: ../../include/class/ModuleTemplates.class.php:1424
+#: ../../include/class/ModuleTemplates.class.php:1429
+#: ../../include/class/HelpFeedBack.class.php:354
+#: ../../include/class/WebServerModuleDebug.class.php:366
+#: ../../include/class/WebServerModuleDebug.class.php:371
+#: ../../include/class/AgentWizard.class.php:5809
+#: ../../include/class/AgentWizard.class.php:5814
+#: ../../include/class/Diagnostics.class.php:2086
+#: ../../include/class/ConfigPEN.class.php:744
+#: ../../include/class/ConfigPEN.class.php:749
+#: ../../include/class/CredentialStore.class.php:1192
+#: ../../include/class/CredentialStore.class.php:1197
+#: ../../include/lib/Dashboard/Widgets/wux_transaction.php:372
+#: ../../enterprise/operation/agentes/wux_console_view.php:452
+#: ../../enterprise/operation/agentes/transactional_map.php:327
+#: ../../enterprise/operation/agentes/ux_console_view.php:210
+#: ../../enterprise/operation/agentes/ux_console_view.php:352
+#: ../../enterprise/include/class/AgentRepository.class.php:849
+#: ../../enterprise/include/class/AgentRepository.class.php:854
+#: ../../enterprise/include/class/LogSource.class.php:795
+#: ../../enterprise/include/class/LogSource.class.php:800
+#: ../../enterprise/include/class/ManageBackups.class.php:484
+#: ../../enterprise/include/class/ManageBackups.class.php:489
+#: ../../enterprise/include/class/Omnishell.class.php:1079
+#: ../../enterprise/include/class/DeploymentCenter.class.php:1618
+#: ../../enterprise/include/class/DeploymentCenter.class.php:1623
+#: ../../enterprise/include/class/DatabaseHA.class.php:208
+#: ../../enterprise/include/functions_HA_cluster.php:542
+#: ../../enterprise/include/functions_HA_cluster.php:547
+#: ../../enterprise/include/functions_ux_console.php:473
+#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:539
+#: ../../godmode/wizards/DiscoveryTaskList.class.php:1058
+msgid "Failed"
+msgstr ""
+
+#: ../../operation/search_reports.php:25 ../../operation/search_policies.php:22
+#: ../../operation/search_modules.php:23 ../../operation/search_users.php:23
+#: ../../operation/search_maps.php:19 ../../operation/search_graphs.php:21
+#: ../../operation/search_agents.php:30 ../../operation/search_alerts.php:24
+msgid "Zero results found"
+msgstr ""
+
+#: ../../operation/search_reports.php:42 ../../operation/search_reports.php:58
+#: ../../operation/reporting/custom_reporting.php:34
+#: ../../include/functions_cron.php:665
+#: ../../enterprise/include/functions_cron.php:232
+#: ../../enterprise/include/functions_reporting_csv.php:2218
+#: ../../enterprise/include/functions_reporting_csv.php:2222
+#: ../../enterprise/include/functions_tasklist.php:340
+#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:282
+#: ../../godmode/reporting/reporting_builder.php:910
+msgid "Report name"
+msgstr ""
+
+#: ../../operation/search_reports.php:44 ../../operation/search_reports.php:60
+#: ../../operation/reporting/custom_reporting.php:36
+#: ../../enterprise/godmode/reporting/reporting_builder.template.php:501
+#: ../../godmode/reporting/reporting_builder.php:912
+msgid "HTML"
+msgstr ""
+
+#: ../../operation/search_reports.php:45 ../../operation/search_reports.php:61
+#: ../../operation/reporting/custom_reporting.php:37
+#: ../../enterprise/godmode/reporting/reporting_builder.template.php:502
+#: ../../godmode/reporting/reporting_builder.php:913
+msgid "XML"
+msgstr ""
+
+#: ../../operation/search_main.php:54 ../../enterprise/meta/agentsearch.php:122
+msgid "Agents found"
+msgstr ""
+
+#: ../../operation/search_main.php:55 ../../operation/search_main.php:57
+#: ../../operation/search_main.php:65 ../../operation/search_main.php:67
+#: ../../operation/search_main.php:69 ../../operation/search_main.php:71
+#: ../../operation/search_main.php:74
+#, php-format
+msgid "%s Found"
+msgstr ""
+
+#: ../../operation/search_main.php:56 ../../operation/tree.php:432
+#: ../../include/lib/Dashboard/Widgets/tree_view.php:617
+msgid "Modules found"
+msgstr ""
+
+#: ../../operation/search_main.php:64
+msgid "Users found"
+msgstr ""
+
+#: ../../operation/search_main.php:66
+msgid "Graphs found"
+msgstr ""
+
+#: ../../operation/search_main.php:68
+msgid "Reports found"
+msgstr ""
+
+#: ../../operation/search_main.php:70 ../../operation/search_results.php:145
+#: ../../mobile/operation/visualmaps.php:184 ../../mobile/operation/home.php:66
+msgid "Visual consoles"
+msgstr ""
+
+#: ../../operation/search_main.php:73 ../../operation/tree.php:127
+#: ../../operation/search_results.php:171
+#: ../../include/lib/Dashboard/Widgets/tree_view.php:333
+#: ../../include/functions_maps.php:42
+#: ../../include/functions_networkmap.php:1299
+#: ../../enterprise/operation/agentes/ver_agente.php:239
+#: ../../enterprise/include/functions_groups.php:33
+#: ../../enterprise/meta/advanced/policymanager.apply.php:198
+msgid "Policies"
+msgstr ""
+
+#: ../../operation/search_main.php:83
+#, php-format
+msgid "Show %s of %s. View all matches"
+msgstr ""
+
+#: ../../operation/tree.php:78 ../../operation/tree.php:146
+#: ../../operation/gis_maps/ajax.php:297 ../../operation/search_agents.php:44
+#: ../../operation/search_agents.php:50
+#: ../../operation/agentes/estado_agente.php:748
+#: ../../operation/agentes/estado_generalagente.php:196
+#: ../../include/ajax/heatmap.ajax.php:325
+#: ../../include/class/Diagnostics.class.php:748
+#: ../../include/lib/Dashboard/Widgets/tree_view.php:332
+#: ../../include/functions_events.php:4489
+#: ../../include/functions_reporting_html.php:1496
+#: ../../include/functions_reporting_html.php:3339
+#: ../../enterprise/tools/ipam/ipam_network.php:398
+#: ../../enterprise/views/cluster/view.php:253
+#: ../../enterprise/operation/agentes/tag_view.php:602
+#: ../../enterprise/include/functions_reporting_csv.php:718
+#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:254
+#: ../../enterprise/include/class/AgentRepository.class.php:342
+#: ../../enterprise/include/class/AgentRepository.class.php:630
+#: ../../enterprise/include/class/AgentRepository.class.php:673
+#: ../../enterprise/include/class/DeploymentCenter.class.php:756
+#: ../../enterprise/include/class/DeploymentCenter.class.php:817
+#: ../../enterprise/include/class/DeploymentCenter.class.php:1289
+#: ../../enterprise/include/class/DeploymentCenter.class.php:1397
+#: ../../enterprise/meta/agentsearch.php:136
+#: ../../enterprise/godmode/modules/configure_local_component.php:177
+#: ../../enterprise/godmode/modules/local_components.php:561
+#: ../../enterprise/godmode/modules/local_components.php:586
+#: ../../enterprise/godmode/modules/local_components.php:622
+#: ../../enterprise/godmode/modules/manage_inventory_modules.php:274
+#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:103
+#: ../../mobile/operation/agents.php:94 ../../mobile/operation/agents.php:404
+#: ../../godmode/reporting/reporting_builder.item_editor.php:71
+#: ../../godmode/massive/massive_edit_agents.php:719
+#: ../../godmode/agentes/agent_manager.php:389
+#: ../../godmode/agentes/planned_downtime.editor.php:916
+#: ../../godmode/agentes/modificar_agente.php:649
+msgid "OS"
+msgstr ""
+
+#: ../../operation/tree.php:90
+#: ../../operation/agentes/pandora_networkmap.php:710
+#: ../../include/lib/Dashboard/Widgets/top_n_events_by_group.php:301
+#: ../../include/lib/Dashboard/Widgets/top_n_events_by_module.php:301
+#: ../../include/lib/Dashboard/Widgets/system_group_status.php:295
+#: ../../include/lib/Dashboard/Widgets/groups_status.php:216
+#: ../../include/lib/Dashboard/Widgets/events_list.php:420
+#: ../../include/lib/Dashboard/Widgets/tree_view.php:328
+#: ../../include/lib/Dashboard/Widgets/tree_view.php:337
+#: ../../include/lib/Dashboard/Widgets/tree_view.php:359
+#: ../../include/functions_maps.php:46
+#: ../../include/functions_networkmap.php:1295
+#: ../../enterprise/godmode/setup/setup_auth.php:230
+#: ../../enterprise/godmode/setup/setup_auth.php:509
+#: ../../enterprise/godmode/setup/setup_auth.php:1306
+#: ../../enterprise/godmode/policies/policy_agents.php:566
+#: ../../enterprise/godmode/policies/policy_agents.php:1215
+#: ../../extensions/files_repo/files_repo_form.php:55
+#: ../../extensions/module_groups.php:311 ../../mobile/operation/home.php:57
+#: ../../mobile/operation/groups.php:77
+#: ../../mobile/include/functions_web.php:27
+#: ../../godmode/reporting/visual_console_builder.wizard.php:362
+msgid "Groups"
+msgstr ""
+
+#: ../../operation/tree.php:102
+#: ../../include/lib/Dashboard/Widgets/tree_view.php:330
+#: ../../extensions/module_groups.php:422 ../../godmode/menu.php:90
+msgid "Module groups"
+msgstr ""
+
+#: ../../operation/tree.php:114 ../../operation/search_agents.php:55
+#: ../../operation/agentes/group_view.php:184
+#: ../../operation/agentes/group_view.php:217
+#: ../../operation/agentes/graphs.php:188
+#: ../../operation/agentes/exportdata.php:282
+#: ../../operation/agentes/estado_agente.php:760
+#: ../../operation/search_results.php:158
+#: ../../include/functions_reports.php:733
+#: ../../include/functions_reports.php:737
+#: ../../include/functions_reports.php:741
+#: ../../include/functions_reports.php:745
+#: ../../include/functions_reports.php:749
+#: ../../include/functions_reports.php:753
+#: ../../include/functions_reports.php:757
+#: ../../include/functions_reports.php:761
+#: ../../include/functions_reports.php:765
+#: ../../include/class/AgentsAlerts.class.php:253
+#: ../../include/lib/Dashboard/Widgets/groups_status.php:385
+#: ../../include/lib/Dashboard/Widgets/groups_status.php:391
+#: ../../include/lib/Dashboard/Widgets/agent_module.php:448
+#: ../../include/lib/Dashboard/Widgets/tree_view.php:331
+#: ../../include/functions_html.php:1708
+#: ../../include/functions_reporting_html.php:1816
+#: ../../include/functions_reporting_html.php:5326
+#: ../../enterprise/operation/services/services.service_map.php:128
+#: ../../enterprise/operation/agentes/tag_view.php:606
+#: ../../enterprise/include/functions_reporting_pdf.php:861
+#: ../../enterprise/include/functions_policies.php:3720
+#: ../../enterprise/meta/include/functions_wizard_meta.php:409
+#: ../../enterprise/meta/include/functions_wizard_meta.php:1824
+#: ../../enterprise/meta/monitoring/group_view.php:155
+#: ../../enterprise/meta/monitoring/group_view.php:221
+#: ../../enterprise/meta/monitoring/wizard/wizard.php:292
+#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:447
+#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:715
+#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:794
+#: ../../enterprise/meta/monitoring/wizard/wizard.agent.php:65
+#: ../../enterprise/meta/advanced/servers.build_table.php:64
+#: ../../enterprise/meta/agentsearch.php:139
+#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:297
+#: ../../enterprise/godmode/reporting/reporting_builder.global.php:222
+#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:229
+#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:473
+#: ../../enterprise/godmode/massive/massive_edit_tags_policy.php:128
+#: ../../enterprise/godmode/massive/massive_add_service_elements.php:362
+#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:176
+#: ../../enterprise/godmode/massive/massive_create_services.php:965
+#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:111
+#: ../../enterprise/godmode/policies/policy_modules.php:458
+#: ../../enterprise/godmode/policies/policies.php:509
+#: ../../extensions/agents_modules.php:758 ../../mobile/operation/agent.php:327
+#: ../../mobile/operation/modules.php:236 ../../mobile/operation/home.php:88
+#: ../../mobile/operation/agents.php:96 ../../mobile/operation/agents.php:409
+#: ../../godmode/servers/servers.build_table.php:83
+#: ../../godmode/reporting/reporting_builder.list_items.php:210
+#: ../../godmode/reporting/reporting_builder.list_items.php:239
+#: ../../godmode/reporting/reporting_builder.item_editor.php:1800
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2021
+#: ../../godmode/reporting/visual_console_builder.wizard.php:432
+#: ../../godmode/massive/massive_delete_modules.php:463
+#: ../../godmode/massive/massive_copy_modules.php:199
+#: ../../godmode/massive/massive_edit_plugins.php:383
+#: ../../godmode/massive/massive_edit_modules.php:425
+#: ../../godmode/agentes/configurar_agente.php:405
+#: ../../godmode/agentes/configurar_agente.php:723
+#: ../../godmode/agentes/planned_downtime.editor.php:918
+#: ../../godmode/agentes/planned_downtime.editor.php:993
+#: ../../godmode/agentes/planned_downtime.list.php:85
+#: ../../godmode/agentes/planned_downtime.list.php:115
+#: ../../godmode/agentes/modificar_agente.php:817
+msgid "Modules"
+msgstr ""
+
+#: ../../operation/tree.php:138 ../../operation/menu.php:51
+#: ../../include/lib/Dashboard/Widgets/tree_view.php:173
+#: ../../include/lib/Dashboard/Widgets/tree_view.php:714
+#: ../../enterprise/operation/services/services.treeview_services.php:61
+#: ../../enterprise/operation/services/services.treeview_services.php:68
+#: ../../enterprise/meta/general/main_menu.php:188
+#: ../../enterprise/meta/general/main_header.php:97
+#: ../../godmode/groups/group_list.php:344
+msgid "Tree view"
+msgstr ""
+
+#: ../../operation/tree.php:139
+#, php-format
+msgid "Sort the agents by %s"
+msgstr ""
+
+#: ../../operation/tree.php:142
+msgid "tags"
+msgstr ""
+
+#: ../../operation/tree.php:150
+msgid "groups"
+msgstr ""
+
+#: ../../operation/tree.php:154
+msgid "module groups"
+msgstr ""
+
+#: ../../operation/tree.php:158 ../../godmode/setup/license.php:136
+#: ../../godmode/setup/license.php:139 ../../godmode/setup/license.php:142
+#: ../../godmode/setup/license.php:145
+msgid "modules"
+msgstr ""
+
+#: ../../operation/tree.php:163
+msgid "policies"
+msgstr ""
+
+#: ../../operation/tree.php:212 ../../operation/tree.php:269
+#: ../../operation/tree.php:486 ../../operation/netflow/nf_live_view.php:384
+#: ../../operation/agentes/status_monitor.php:492
+#: ../../operation/agentes/group_view.php:226
+#: ../../operation/agentes/group_view.php:231
+#: ../../operation/agentes/estado_monitores.php:523
+#: ../../operation/agentes/tactical.php:180
+#: ../../operation/agentes/estado_agente.php:273
+#: ../../include/lib/Dashboard/Widgets/system_group_status.php:311
+#: ../../include/lib/Dashboard/Widgets/tree_view.php:385
+#: ../../include/lib/Dashboard/Widgets/tree_view.php:418
+#: ../../include/lib/Dashboard/Widgets/tree_view.php:680
+#: ../../include/functions_events.php:3335
+#: ../../include/functions_graph.php:3543
+#: ../../include/functions_graph.php:3544
+#: ../../include/functions_graph.php:5123
+#: ../../include/rest-api/models/VisualConsole/Items/Group.php:430
+#: ../../include/functions.php:1031 ../../include/functions.php:1271
+#: ../../include/functions.php:1278 ../../include/functions.php:1311
+#: ../../include/functions_reporting_html.php:2292
+#: ../../enterprise/operation/services/services.treeview_services.php:286
+#: ../../enterprise/operation/agentes/tag_view.php:131
+#: ../../enterprise/include/functions_services.php:1428
+#: ../../enterprise/meta/monitoring/custom_fields_csv.php:117
+#: ../../enterprise/meta/monitoring/custom_fields_csv.php:140
+#: ../../enterprise/meta/monitoring/group_view.php:238
+#: ../../enterprise/meta/monitoring/group_view.php:244
+#: ../../enterprise/meta/monitoring/custom_fields_view.php:179
+#: ../../enterprise/meta/monitoring/tactical.php:241
+#: ../../enterprise/godmode/services/services.elements.php:390
+#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:119
+#: ../../mobile/operation/modules.php:69 ../../mobile/operation/agents.php:58
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3601
+#: ../../godmode/netflow/nf_edit_form.php:236
+#: ../../godmode/massive/massive_delete_modules.php:418
+#: ../../godmode/massive/massive_delete_modules.php:439
+#: ../../godmode/massive/massive_copy_modules.php:115
+#: ../../godmode/massive/massive_copy_modules.php:275
+#: ../../godmode/massive/massive_edit_agents.php:531
+#: ../../godmode/massive/massive_delete_agents.php:209
+#: ../../godmode/massive/massive_edit_modules.php:385
+#: ../../godmode/massive/massive_edit_modules.php:471
+#: ../../godmode/groups/group_list.php:1074
+msgid "Normal"
+msgstr ""
+
+#: ../../operation/tree.php:213 ../../operation/tree.php:270
+#: ../../operation/tree.php:471 ../../operation/gis_maps/render_view.php:165
+#: ../../operation/netflow/nf_live_view.php:451
+#: ../../operation/agentes/status_monitor.php:493
+#: ../../operation/agentes/group_view.php:227
+#: ../../operation/agentes/group_view.php:232
+#: ../../operation/agentes/estado_monitores.php:525
+#: ../../operation/agentes/tactical.php:179
+#: ../../operation/agentes/estado_agente.php:274
+#: ../../include/class/AgentWizard.class.php:1300
+#: ../../include/class/AgentWizard.class.php:3989
+#: ../../include/class/Diagnostics.class.php:1809
+#: ../../include/lib/Dashboard/Widgets/system_group_status.php:312
+#: ../../include/lib/Dashboard/Widgets/tree_view.php:386
+#: ../../include/lib/Dashboard/Widgets/tree_view.php:419
+#: ../../include/lib/Dashboard/Widgets/tree_view.php:665
+#: ../../include/functions_events.php:3339
+#: ../../include/functions_graph.php:3553
+#: ../../include/functions_graph.php:3554
+#: ../../include/functions_graph.php:5127 ../../include/functions_ui.php:298
+#: ../../include/functions_ui.php:2604
+#: ../../include/rest-api/models/VisualConsole/Items/Group.php:423
+#: ../../include/functions.php:1035 ../../include/functions.php:1273
+#: ../../include/functions.php:1276 ../../include/functions.php:1315
+#: ../../include/functions_reporting_html.php:2294
+#: ../../update_manager_client/views/offline.php:81 ../../index.php:1175
+#: ../../enterprise/views/ncm/firmwares/edit.php:149
+#: ../../enterprise/operation/services/services.treeview_services.php:271
+#: ../../enterprise/operation/services/services.service.php:123
+#: ../../enterprise/operation/services/services.service.php:174
+#: ../../enterprise/operation/services/services.list.php:238
+#: ../../enterprise/operation/services/services.list.php:505
+#: ../../enterprise/operation/services/services.list.php:564
+#: ../../enterprise/operation/services/services.service_map.php:115
+#: ../../enterprise/operation/services/services.table_services.php:160
+#: ../../enterprise/operation/agentes/tag_view.php:132
+#: ../../enterprise/operation/agentes/transactional_map.php:333
+#: ../../enterprise/include/class/CommandCenter.class.php:564
+#: ../../enterprise/include/class/CommandCenter.class.php:603
+#: ../../enterprise/include/functions_services.php:1448
+#: ../../enterprise/include/functions_login.php:23
+#: ../../enterprise/include/functions_reporting.php:4837
+#: ../../enterprise/meta/include/functions_wizard_meta.php:980
+#: ../../enterprise/meta/include/functions_wizard_meta.php:1065
+#: ../../enterprise/meta/include/functions_wizard_meta.php:1268
+#: ../../enterprise/meta/include/functions_wizard_meta.php:1288
+#: ../../enterprise/meta/include/functions_wizard_meta.php:1505
+#: ../../enterprise/meta/include/functions_wizard_meta.php:1590
+#: ../../enterprise/meta/include/functions_wizard_meta.php:1710
+#: ../../enterprise/meta/include/functions_wizard_meta.php:1730
+#: ../../enterprise/meta/monitoring/custom_fields_csv.php:127
+#: ../../enterprise/meta/monitoring/group_view.php:239
+#: ../../enterprise/meta/monitoring/group_view.php:245
+#: ../../enterprise/meta/monitoring/custom_fields_view.php:180
+#: ../../enterprise/meta/monitoring/tactical.php:240
+#: ../../enterprise/meta/advanced/metasetup.consoles.php:439
+#: ../../enterprise/meta/index.php:862 ../../enterprise/meta/index.php:931
+#: ../../enterprise/godmode/setup/setup_history.php:583
+#: ../../enterprise/godmode/services/services.elements.php:372
+#: ../../enterprise/godmode/services/services.service.php:699
+#: ../../enterprise/godmode/services/services.service.php:930
+#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:120
+#: ../../enterprise/godmode/massive/massive_create_services.php:747
+#: ../../extensions/dbmanager.php:129 ../../mobile/operation/modules.php:70
+#: ../../mobile/operation/agents.php:59
+#: ../../godmode/setup/setup_netflow.php:71
+#: ../../godmode/modules/manage_network_components_form_wizard.php:383
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3602
+#: ../../godmode/massive/massive_delete_modules.php:419
+#: ../../godmode/massive/massive_delete_modules.php:440
+#: ../../godmode/massive/massive_copy_modules.php:116
+#: ../../godmode/massive/massive_copy_modules.php:276
+#: ../../godmode/massive/massive_edit_agents.php:532
+#: ../../godmode/massive/massive_edit_agents.php:981
+#: ../../godmode/massive/massive_delete_agents.php:210
+#: ../../godmode/massive/massive_edit_modules.php:386
+#: ../../godmode/massive/massive_edit_modules.php:472
+#: ../../godmode/users/configure_user.php:1674
+#: ../../godmode/groups/group_list.php:1059
+msgid "Warning"
+msgstr ""
+
+#: ../../operation/tree.php:214 ../../operation/tree.php:271
+#: ../../operation/tree.php:466 ../../operation/gis_maps/render_view.php:164
+#: ../../operation/agentes/status_monitor.php:494
+#: ../../operation/agentes/group_view.php:228
+#: ../../operation/agentes/group_view.php:233
+#: ../../operation/agentes/estado_monitores.php:521
+#: ../../operation/agentes/tactical.php:178
+#: ../../operation/agentes/estado_agente.php:275
+#: ../../include/class/AgentWizard.class.php:1303
+#: ../../include/class/AgentWizard.class.php:4003
+#: ../../include/lib/Dashboard/Widgets/system_group_status.php:313
+#: ../../include/lib/Dashboard/Widgets/tree_view.php:387
+#: ../../include/lib/Dashboard/Widgets/tree_view.php:420
+#: ../../include/lib/Dashboard/Widgets/tree_view.php:660
+#: ../../include/functions_events.php:3343
+#: ../../include/functions_graph.php:3563
+#: ../../include/functions_graph.php:3564
+#: ../../include/functions_graph.php:5131 ../../include/functions_ui.php:2604
+#: ../../include/rest-api/models/VisualConsole/Items/Group.php:416
+#: ../../include/functions.php:1039 ../../include/functions.php:1275
+#: ../../include/functions.php:1276 ../../include/functions.php:1278
+#: ../../include/functions.php:1319
+#: ../../include/functions_reporting_html.php:859
+#: ../../include/functions_reporting_html.php:2293
+#: ../../include/functions_reporting_html.php:4556
+#: ../../enterprise/operation/services/services.treeview_services.php:266
+#: ../../enterprise/operation/services/services.service.php:122
+#: ../../enterprise/operation/services/services.service.php:168
+#: ../../enterprise/operation/services/services.list.php:239
+#: ../../enterprise/operation/services/services.list.php:504
+#: ../../enterprise/operation/services/services.list.php:558
+#: ../../enterprise/operation/services/services.service_map.php:114
+#: ../../enterprise/operation/services/services.table_services.php:161
+#: ../../enterprise/operation/agentes/tag_view.php:133
+#: ../../enterprise/include/functions_services.php:1440
+#: ../../enterprise/include/functions_reporting.php:3190
+#: ../../enterprise/include/functions_reporting.php:4191
+#: ../../enterprise/include/functions_reporting.php:4842
+#: ../../enterprise/include/functions_reporting.php:6198
+#: ../../enterprise/meta/include/functions_wizard_meta.php:989
+#: ../../enterprise/meta/include/functions_wizard_meta.php:1074
+#: ../../enterprise/meta/include/functions_wizard_meta.php:1277
+#: ../../enterprise/meta/include/functions_wizard_meta.php:1301
+#: ../../enterprise/meta/include/functions_wizard_meta.php:1514
+#: ../../enterprise/meta/include/functions_wizard_meta.php:1599
+#: ../../enterprise/meta/include/functions_wizard_meta.php:1719
+#: ../../enterprise/meta/include/functions_wizard_meta.php:1737
+#: ../../enterprise/meta/monitoring/custom_fields_csv.php:122
+#: ../../enterprise/meta/monitoring/group_view.php:240
+#: ../../enterprise/meta/monitoring/group_view.php:246
+#: ../../enterprise/meta/monitoring/custom_fields_view.php:181
+#: ../../enterprise/meta/monitoring/tactical.php:239
+#: ../../enterprise/godmode/services/services.elements.php:363
+#: ../../enterprise/godmode/services/services.service.php:685
+#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:121
+#: ../../enterprise/godmode/massive/massive_create_services.php:733
+#: ../../extensions/module_groups.php:50 ../../mobile/operation/modules.php:71
+#: ../../mobile/operation/agents.php:57
+#: ../../godmode/modules/manage_network_components_form_wizard.php:411
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3603
+#: ../../godmode/massive/massive_delete_modules.php:420
+#: ../../godmode/massive/massive_delete_modules.php:441
+#: ../../godmode/massive/massive_copy_modules.php:117
+#: ../../godmode/massive/massive_copy_modules.php:277
+#: ../../godmode/massive/massive_edit_agents.php:533
+#: ../../godmode/massive/massive_delete_agents.php:211
+#: ../../godmode/massive/massive_edit_modules.php:387
+#: ../../godmode/massive/massive_edit_modules.php:473
+#: ../../godmode/groups/group_list.php:1054
+msgid "Critical"
+msgstr ""
+
+#: ../../operation/tree.php:215 ../../operation/tree.php:272
+#: ../../operation/tree.php:476 ../../operation/events/events.php:2245
+#: ../../operation/agentes/status_monitor.php:495
+#: ../../operation/agentes/group_view.php:224
+#: ../../operation/agentes/group_view.php:229
+#: ../../operation/agentes/estado_monitores.php:526
+#: ../../operation/agentes/tactical.php:181
+#: ../../operation/agentes/estado_agente.php:276
+#: ../../operation/agentes/pandora_networkmap.view.php:1728
+#: ../../include/functions_reports.php:557 ../../include/ajax/module.php:1071
+#: ../../include/lib/Dashboard/Widgets/tree_view.php:388
+#: ../../include/lib/Dashboard/Widgets/tree_view.php:421
+#: ../../include/lib/Dashboard/Widgets/tree_view.php:670
+#: ../../include/functions_events.php:3243
+#: ../../include/functions_alerts.php:699
+#: ../../include/functions_netflow.php:1865
+#: ../../include/functions_filemanager.php:668
+#: ../../include/functions_reporting.php:6101
+#: ../../include/functions_visual_map.php:2455
+#: ../../include/functions_visual_map.php:2483
+#: ../../include/functions_visual_map.php:2501
+#: ../../include/functions_visual_map.php:2519
+#: ../../include/graphs/functions_flot.php:305
+#: ../../include/functions_maps.php:54 ../../include/functions_ui.php:549
+#: ../../include/functions_ui.php:550
+#: ../../include/rest-api/models/VisualConsole/Items/Group.php:437
+#: ../../include/functions.php:1225 ../../include/functions.php:4100
+#: ../../include/functions_reporting_html.php:2282
+#: ../../include/functions_reporting_html.php:2295
+#: ../../include/functions_reporting_html.php:3246
+#: ../../include/functions_reporting_html.php:3654
+#: ../../enterprise/views/ncm/agent/details.php:312
+#: ../../enterprise/operation/services/services.treeview_services.php:276
+#: ../../enterprise/operation/services/services.service.php:180
+#: ../../enterprise/operation/services/services.list.php:240
+#: ../../enterprise/operation/services/services.list.php:571
+#: ../../enterprise/operation/services/services.service_map.php:117
+#: ../../enterprise/operation/services/services.table_services.php:162
+#: ../../enterprise/operation/agentes/tag_view.php:134
+#: ../../enterprise/operation/agentes/transactional_map.php:339
+#: ../../enterprise/operation/agentes/transactional_map.php:385
+#: ../../enterprise/include/functions_cron.php:585
+#: ../../enterprise/include/class/DatabaseHA.class.php:223
+#: ../../enterprise/include/lib/ClusterViewer/ClusterManager.php:582
+#: ../../enterprise/include/lib/NetworkManager.php:103
+#: ../../enterprise/include/functions_HA_cluster.php:70
+#: ../../enterprise/include/functions_reporting.php:1889
+#: ../../enterprise/include/functions_reporting.php:2939
+#: ../../enterprise/include/functions_reporting.php:3927
+#: ../../enterprise/include/functions_reporting.php:4847
+#: ../../enterprise/include/functions_reporting.php:6158
+#: ../../enterprise/include/functions_reporting_pdf.php:637
+#: ../../enterprise/meta/monitoring/custom_fields_csv.php:131
+#: ../../enterprise/meta/monitoring/group_view.php:236
+#: ../../enterprise/meta/monitoring/group_view.php:242
+#: ../../enterprise/meta/monitoring/custom_fields_view.php:182
+#: ../../enterprise/meta/monitoring/tactical.php:242
+#: ../../enterprise/godmode/services/services.elements.php:381
+#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:122
+#: ../../extensions/module_groups.php:52 ../../mobile/operation/modules.php:72
+#: ../../mobile/operation/agents.php:60
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3604
+#: ../../godmode/massive/massive_delete_modules.php:421
+#: ../../godmode/massive/massive_delete_modules.php:442
+#: ../../godmode/massive/massive_copy_modules.php:118
+#: ../../godmode/massive/massive_copy_modules.php:278
+#: ../../godmode/massive/massive_edit_agents.php:534
+#: ../../godmode/massive/massive_delete_agents.php:212
+#: ../../godmode/massive/massive_edit_modules.php:388
+#: ../../godmode/massive/massive_edit_modules.php:474
+#: ../../godmode/alerts/alert_list.builder.php:290
+#: ../../godmode/groups/group_list.php:1064
+msgid "Unknown"
+msgstr ""
+
+#: ../../operation/tree.php:216 ../../operation/tree.php:273
+#: ../../operation/tree.php:481 ../../operation/agentes/status_monitor.php:498
+#: ../../operation/agentes/group_view.php:225
+#: ../../operation/agentes/group_view.php:230
+#: ../../operation/agentes/tactical.php:182
+#: ../../operation/agentes/estado_agente.php:278
+#: ../../include/lib/Dashboard/Widgets/tree_view.php:389
+#: ../../include/lib/Dashboard/Widgets/tree_view.php:422
+#: ../../include/lib/Dashboard/Widgets/tree_view.php:675
+#: ../../include/functions_reporting_html.php:652
+#: ../../include/functions_reporting_html.php:2296
+#: ../../include/functions_reporting_html.php:4364
+#: ../../enterprise/operation/services/services.treeview_services.php:281
+#: ../../enterprise/operation/agentes/tag_view.php:137
+#: ../../enterprise/operation/agentes/transactional_map.php:345
+#: ../../enterprise/meta/monitoring/group_view.php:237
+#: ../../enterprise/meta/monitoring/group_view.php:243
+#: ../../enterprise/meta/monitoring/custom_fields_view.php:185
+#: ../../enterprise/meta/monitoring/tactical.php:243
+#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:124
+#: ../../mobile/operation/modules.php:75
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3606
+#: ../../godmode/massive/massive_delete_modules.php:423
+#: ../../godmode/massive/massive_delete_modules.php:444
+#: ../../godmode/massive/massive_copy_modules.php:120
+#: ../../godmode/massive/massive_copy_modules.php:280
+#: ../../godmode/massive/massive_edit_agents.php:536
+#: ../../godmode/massive/massive_delete_agents.php:214
+#: ../../godmode/massive/massive_edit_modules.php:390
+#: ../../godmode/massive/massive_edit_modules.php:476
+#: ../../godmode/groups/group_list.php:1069
+msgid "Not init"
+msgstr ""
+
+#: ../../operation/tree.php:219
+msgid "Search group"
+msgstr ""
+
+#: ../../operation/tree.php:223 ../../operation/tree.php:279
+msgid "Show not init modules"
+msgstr ""
+
+#: ../../operation/tree.php:232
+msgid "Search agent"
+msgstr ""
+
+#: ../../operation/tree.php:235
+msgid "Show not init agents"
+msgstr ""
+
+#: ../../operation/tree.php:243
+msgid "Show full hirearchy"
+msgstr ""
+
+#: ../../operation/tree.php:246
+#: ../../enterprise/include/functions_reporting_csv.php:2348
+#: ../../enterprise/godmode/servers/HA_cluster.php:163
+msgid "Agent status"
+msgstr ""
+
+#: ../../operation/tree.php:254
+msgid "Show only disabled"
+msgstr ""
+
+#: ../../operation/tree.php:260 ../../operation/netflow/nf_live_view.php:383
+#: ../../operation/agentes/graphs.php:265
+#: ../../operation/agentes/estado_monitores.php:594
+#: ../../operation/agentes/alerts_status.functions.php:137
+#: ../../operation/agentes/alerts_status.functions.php:146
+#: ../../operation/incidents/list_integriaims_incidents.php:435
+#: ../../operation/incidents/list_integriaims_incidents.php:439
+#: ../../include/class/ModuleTemplates.class.php:765
+#: ../../include/functions_ui.php:3371 ../../include/functions_ui.php:3392
+#: ../../include/functions_ui.php:3403
+#: ../../enterprise/operation/services/services.treeview_services.php:156
+#: ../../enterprise/operation/services/services.treeview_services.php:160
+#: ../../enterprise/operation/services/services.list.php:454
+#: ../../enterprise/operation/services/services.list.php:459
+#: ../../enterprise/operation/services/services.table_services.php:363
+#: ../../enterprise/operation/services/services.table_services.php:368
+#: ../../enterprise/include/class/SAPView.class.php:409
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2824
+#: ../../enterprise/include/functions_ipam.php:1779
+#: ../../enterprise/meta/advanced/policymanager.queue.php:235
+#: ../../enterprise/godmode/setup/setup_skins.php:96
+#: ../../enterprise/godmode/setup/setup_acl.php:574
+#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:209
+#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:269
+#: ../../enterprise/godmode/agentes/manage_config_remote.php:148
+#: ../../enterprise/godmode/policies/policy_queue.php:626
+#: ../../enterprise/godmode/policies/policy_linking.php:129
+#: ../../enterprise/godmode/policies/policies.php:337
+#: ../../godmode/modules/manage_network_templates_form.php:277
+#: ../../godmode/modules/manage_network_templates_form.php:337
+#: ../../godmode/reporting/reporting_builder.list_items.php:217
+#: ../../godmode/reporting/reporting_builder.list_items.php:261
+#: ../../godmode/reporting/reporting_builder.item_editor.php:1046
+#: ../../godmode/snmpconsole/snmp_alert.php:1088
+#: ../../godmode/snmpconsole/snmp_filters.php:203
+#: ../../godmode/snmpconsole/snmp_filters.php:290 ../../godmode/tag/tag.php:233
+#: ../../godmode/netflow/nf_item_list.php:174
+#: ../../godmode/agentes/module_manager.php:83
+msgid "Filter"
+msgstr ""
+
+#: ../../operation/tree.php:276
+msgid "Search module"
+msgstr ""
+
+#: ../../operation/tree.php:285
+#: ../../include/lib/Dashboard/Widgets/module_status.php:173
+#: ../../include/lib/Dashboard/Widgets/module_status.php:538
+#: ../../include/functions_events.php:211
+#: ../../include/functions_events.php:6780
+#: ../../include/functions_reporting_html.php:4899
+#: ../../enterprise/meta/include/functions_events_meta.php:138
+msgid "Module status"
+msgstr ""
+
+#: ../../operation/tree.php:304 ../../operation/events/events_list.php:1102
+#: ../../operation/agentes/alerts_status.php:484
+#: ../../enterprise/meta/monitoring/custom_fields_view.php:334
+#: ../../enterprise/meta/advanced/policymanager.queue.php:246
+#: ../../enterprise/meta/advanced/collections.php:192
+#: ../../enterprise/meta/agentsearch.php:113
+#: ../../enterprise/godmode/modules/local_components.php:584
+#: ../../godmode/modules/manage_network_components.php:690
+#: ../../godmode/reporting/reporting_builder.list_items.php:273
+#: ../../godmode/tag/tag.php:246 ../../godmode/tag/tag.php:412
+#: ../../godmode/alerts/alert_actions.php:315
+#: ../../godmode/alerts/alert_templates.php:337
+#: ../../godmode/users/user_list.php:444
+msgid "Show Options"
+msgstr ""
+
+#: ../../operation/tree.php:308
+msgid "Tree search"
+msgstr ""
+
+#: ../../operation/tree.php:415 ../../operation/tree.php:446
+#: ../../operation/network/network_report.php:313
+#: ../../include/class/Heatmap.class.php:684
+#: ../../include/lib/Dashboard/Widgets/tree_view.php:645
+#: ../../enterprise/tools/ipam/ipam_supernet_treeview.php:93
+#: ../../enterprise/operation/services/services.treeview_services.php:246
+#: ../../enterprise/operation/agentes/tag_view.php:578
+#: ../../enterprise/include/functions_inventory.php:271
+#: ../../godmode/groups/group_list.php:1034
+msgid "No data found"
+msgstr ""
+
+#: ../../operation/tree.php:420
+#: ../../include/lib/Dashboard/Widgets/tree_view.php:601
+#: ../../enterprise/meta/agentsearch.php:315
+msgid "Policies found"
+msgstr ""
+
+#: ../../operation/tree.php:423
+#: ../../include/lib/Dashboard/Widgets/tree_view.php:605
+msgid "Operating systems found"
+msgstr ""
+
+#: ../../operation/tree.php:426
+#: ../../include/lib/Dashboard/Widgets/tree_view.php:609
+msgid "Tags found"
+msgstr ""
+
+#: ../../operation/tree.php:429
+#: ../../include/lib/Dashboard/Widgets/tree_view.php:613
+msgid "Module Groups found"
+msgstr ""
+
+#: ../../operation/tree.php:436
+#: ../../include/lib/Dashboard/Widgets/tree_view.php:622
+msgid "Groups found"
+msgstr ""
+
+#: ../../operation/tree.php:454 ../../include/class/Diagnostics.class.php:549
+#: ../../include/lib/Dashboard/Widgets/tree_view.php:648
+#: ../../include/functions_reporting.php:11490
+#: ../../include/functions_reporting_html.php:5560
+#: ../../enterprise/operation/services/services.treeview_services.php:254
+#: ../../enterprise/include/functions_reporting_csv.php:983
+#: ../../mobile/operation/groups.php:147 ../../godmode/db/db_main.php:102
+#: ../../godmode/groups/group_list.php:1042
+msgid "Total agents"
+msgstr ""
+
+#: ../../operation/tree.php:455 ../../include/class/Diagnostics.class.php:553
+#: ../../include/lib/Dashboard/Widgets/tree_view.php:649
+#: ../../enterprise/operation/services/services.treeview_services.php:255
+#: ../../enterprise/include/functions_reporting_csv.php:983
+#: ../../godmode/module_library/module_library_view.php:159
+#: ../../godmode/groups/group_list.php:1043
+msgid "Total modules"
+msgstr ""
+
+#: ../../operation/tree.php:456 ../../operation/agentes/group_view.php:223
+#: ../../include/lib/Dashboard/Widgets/tree_view.php:650
+#: ../../include/functions_alerts.php:3360
+#: ../../include/functions_reporting_html.php:2281
+#: ../../include/functions_reporting_html.php:2291
+#: ../../enterprise/operation/services/services.treeview_services.php:256
+#: ../../enterprise/operation/agentes/agent_inventory.php:240
+#: ../../enterprise/include/functions_inventory.php:481
+#: ../../enterprise/include/functions_inventory.php:624
+#: ../../enterprise/meta/monitoring/group_view.php:235
+#: ../../godmode/groups/group_list.php:1044
+msgid "Total"
+msgstr ""
+
+#: ../../operation/tree.php:459 ../../operation/tree.php:460
+#: ../../operation/tree.php:461
+#: ../../include/lib/Dashboard/Widgets/tree_view.php:653
+#: ../../include/lib/Dashboard/Widgets/tree_view.php:654
+#: ../../include/lib/Dashboard/Widgets/tree_view.php:655
+#: ../../include/functions_graph.php:2631
+#: ../../include/functions_reporting.php:11351
+#: ../../include/functions_reporting.php:11374
+#: ../../enterprise/operation/services/services.treeview_services.php:259
+#: ../../enterprise/operation/services/services.treeview_services.php:260
+#: ../../enterprise/operation/services/services.treeview_services.php:261
+#: ../../enterprise/include/functions_reporting_csv.php:983
+#: ../../godmode/groups/group_list.php:1047
+#: ../../godmode/groups/group_list.php:1048
+#: ../../godmode/groups/group_list.php:1049
+msgid "Fired alerts"
+msgstr ""
+
+#: ../../operation/tree.php:464
+#: ../../include/lib/Dashboard/Widgets/tree_view.php:658
+#: ../../enterprise/operation/services/services.treeview_services.php:264
+#: ../../enterprise/meta/monitoring/custom_fields_view.php:533
+#: ../../godmode/groups/group_list.php:1052
+msgid "Critical agents"
+msgstr ""
+
+#: ../../operation/tree.php:465
+#: ../../include/lib/Dashboard/Widgets/tree_view.php:659
+#: ../../enterprise/operation/services/services.treeview_services.php:265
+#: ../../enterprise/include/functions_reporting_csv.php:983
+#: ../../enterprise/meta/monitoring/custom_fields_view.php:602
+#: ../../mobile/operation/groups.php:171
+#: ../../godmode/groups/group_list.php:1053
+msgid "Critical modules"
+msgstr ""
+
+#: ../../operation/tree.php:469
+#: ../../include/lib/Dashboard/Widgets/tree_view.php:663
+#: ../../enterprise/operation/services/services.treeview_services.php:269
+#: ../../enterprise/meta/monitoring/custom_fields_view.php:543
+#: ../../godmode/groups/group_list.php:1057
+msgid "Warning agents"
+msgstr ""
+
+#: ../../operation/tree.php:470
+#: ../../include/lib/Dashboard/Widgets/tree_view.php:664
+#: ../../enterprise/operation/services/services.treeview_services.php:270
+#: ../../enterprise/include/functions_reporting_csv.php:983
+#: ../../enterprise/meta/monitoring/custom_fields_view.php:613
+#: ../../mobile/operation/groups.php:168
+#: ../../godmode/groups/group_list.php:1058
+msgid "Warning modules"
+msgstr ""
+
+#: ../../operation/tree.php:474
+#: ../../include/lib/Dashboard/Widgets/tree_view.php:668
+#: ../../enterprise/operation/services/services.treeview_services.php:274
+#: ../../enterprise/meta/monitoring/custom_fields_view.php:563
+#: ../../godmode/groups/group_list.php:1062
+msgid "Unknown agents"
+msgstr ""
+
+#: ../../operation/tree.php:475
+#: ../../include/lib/Dashboard/Widgets/tree_view.php:669
+#: ../../enterprise/operation/services/services.treeview_services.php:275
+#: ../../enterprise/include/functions_reporting_csv.php:983
+#: ../../enterprise/meta/monitoring/custom_fields_view.php:635
+#: ../../mobile/operation/groups.php:159
+#: ../../godmode/groups/group_list.php:1063
+msgid "Unknown modules"
+msgstr ""
+
+#: ../../operation/tree.php:479
+#: ../../include/lib/Dashboard/Widgets/tree_view.php:673
+#: ../../enterprise/operation/services/services.treeview_services.php:279
+#: ../../enterprise/meta/monitoring/custom_fields_view.php:573
+#: ../../godmode/groups/group_list.php:1067
+msgid "Not init agents"
+msgstr ""
+
+#: ../../operation/tree.php:480
+#: ../../include/lib/Dashboard/Widgets/tree_view.php:674
+#: ../../enterprise/operation/services/services.treeview_services.php:280
+#: ../../enterprise/include/functions_reporting_csv.php:983
+#: ../../enterprise/meta/monitoring/custom_fields_view.php:646
+#: ../../mobile/operation/groups.php:162
+#: ../../godmode/groups/group_list.php:1068
+msgid "Not init modules"
+msgstr ""
+
+#: ../../operation/tree.php:484
+#: ../../include/lib/Dashboard/Widgets/tree_view.php:678
+#: ../../enterprise/operation/services/services.treeview_services.php:284
+#: ../../enterprise/meta/monitoring/custom_fields_view.php:553
+#: ../../godmode/groups/group_list.php:1072
+msgid "Normal agents"
+msgstr ""
+
+#: ../../operation/tree.php:485
+#: ../../include/lib/Dashboard/Widgets/tree_view.php:679
+#: ../../enterprise/operation/services/services.treeview_services.php:285
+#: ../../enterprise/include/functions_reporting_csv.php:983
+#: ../../enterprise/meta/monitoring/custom_fields_view.php:624
+#: ../../mobile/operation/groups.php:165
+#: ../../godmode/groups/group_list.php:1073
+msgid "Normal modules"
+msgstr ""
+
+#: ../../operation/tree.php:539 ../../operation/agentes/status_monitor.php:2056
+#: ../../operation/agentes/estado_monitores.php:421
+#: ../../enterprise/operation/services/services.treeview_services.php:341
+msgid "Module: "
+msgstr ""
+
+#: ../../operation/tree.php:573 ../../operation/reporting/graph_viewer.php:423
+#: ../../operation/reporting/reporting_viewer.php:367
+#: ../../operation/reporting/reporting_viewer.php:387
+#: ../../operation/network/network_report.php:336
+#: ../../operation/network/network_usage_map.php:184
+#: ../../operation/events/events.php:2806
+#: ../../operation/events/events_list.php:2031
+#: ../../operation/netflow/nf_live_view.php:740
+#: ../../operation/agentes/estado_monitores.php:455
+#: ../../operation/agentes/stat_win.php:617
+#: ../../operation/agentes/datos_agente.php:312
+#: ../../operation/agentes/interface_traffic_graph_win.php:434
+#: ../../include/lib/Dashboard/Widgets/tree_view.php:683
+#: ../../enterprise/operation/log/log_viewer.php:981
+#: ../../enterprise/operation/log/log_viewer.php:993
+#: ../../enterprise/operation/services/services.treeview_services.php:375
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:4311
+#: ../../enterprise/meta/advanced/cron_main.php:530
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3962
+#: ../../enterprise/godmode/reporting/reporting_builder.template.php:1169
+#: ../../enterprise/godmode/wizards/consoletask_js.php:41
+#: ../../extensions/insert_data.php:224 ../../godmode/setup/news.php:322
+#: ../../godmode/reporting/reporting_builder.item_editor.php:4832
+#: ../../godmode/agentes/planned_downtime.editor.php:1488
+#: ../../godmode/alerts/configure_alert_template.php:1456
+#: ../../godmode/alerts/configure_alert_template.php:1540
+msgid "Choose time"
+msgstr ""
+
+#: ../../operation/tree.php:574 ../../operation/reporting/graph_viewer.php:424
+#: ../../operation/reporting/reporting_viewer.php:368
+#: ../../operation/reporting/reporting_viewer.php:388
+#: ../../operation/network/network_report.php:337
+#: ../../operation/network/network_usage_map.php:185
+#: ../../operation/events/events.php:2807
+#: ../../operation/events/events_list.php:2032
+#: ../../operation/netflow/nf_live_view.php:741
+#: ../../operation/agentes/estado_monitores.php:456
+#: ../../operation/agentes/stat_win.php:618
+#: ../../operation/agentes/datos_agente.php:313
+#: ../../operation/agentes/interface_traffic_graph_win.php:435
+#: ../../include/lib/Dashboard/Widgets/tree_view.php:684
+#: ../../enterprise/operation/log/log_viewer.php:982
+#: ../../enterprise/operation/log/log_viewer.php:994
+#: ../../enterprise/operation/services/services.treeview_services.php:376
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3986
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:4312
+#: ../../enterprise/include/lib/Metaconsole/Node.php:591
+#: ../../enterprise/meta/advanced/cron_main.php:531
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3963
+#: ../../enterprise/godmode/reporting/reporting_builder.template.php:1170
+#: ../../enterprise/godmode/wizards/consoletask_js.php:42
+#: ../../extensions/insert_data.php:225 ../../godmode/setup/news.php:323
+#: ../../godmode/reporting/reporting_builder.item_editor.php:4833
+#: ../../godmode/agentes/planned_downtime.editor.php:1489
+#: ../../godmode/alerts/configure_alert_template.php:1457
+#: ../../godmode/alerts/configure_alert_template.php:1541
+msgid "Time"
+msgstr ""
+
+#: ../../operation/tree.php:575 ../../operation/reporting/graph_viewer.php:425
+#: ../../operation/reporting/reporting_viewer.php:369
+#: ../../operation/reporting/reporting_viewer.php:389
+#: ../../operation/network/network_report.php:338
+#: ../../operation/network/network_usage_map.php:186
+#: ../../operation/events/events.php:2808
+#: ../../operation/events/events_list.php:2033
+#: ../../operation/netflow/nf_live_view.php:742
+#: ../../operation/agentes/estado_monitores.php:457
+#: ../../operation/agentes/stat_win.php:619
+#: ../../operation/agentes/datos_agente.php:314
+#: ../../operation/agentes/interface_traffic_graph_win.php:436
+#: ../../include/lib/Dashboard/Widgets/tree_view.php:685
+#: ../../include/functions_html.php:2271
+#: ../../enterprise/operation/log/log_viewer.php:983
+#: ../../enterprise/operation/log/log_viewer.php:995
+#: ../../enterprise/operation/services/services.treeview_services.php:377
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3987
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:4313
+#: ../../enterprise/meta/advanced/cron_main.php:532
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3964
+#: ../../enterprise/godmode/reporting/reporting_builder.template.php:1171
+#: ../../enterprise/godmode/wizards/consoletask_js.php:43
+#: ../../extensions/insert_data.php:226 ../../godmode/setup/news.php:324
+#: ../../godmode/reporting/reporting_builder.item_editor.php:4834
+#: ../../godmode/agentes/planned_downtime.editor.php:1490
+#: ../../godmode/alerts/configure_alert_template.php:1458
+#: ../../godmode/alerts/configure_alert_template.php:1542
+msgid "Hour"
+msgstr ""
+
+#: ../../operation/tree.php:576 ../../operation/reporting/graph_viewer.php:426
+#: ../../operation/reporting/reporting_viewer.php:370
+#: ../../operation/reporting/reporting_viewer.php:390
+#: ../../operation/network/network_report.php:339
+#: ../../operation/network/network_usage_map.php:187
+#: ../../operation/events/events.php:2809
+#: ../../operation/events/events_list.php:2034
+#: ../../operation/netflow/nf_live_view.php:743
+#: ../../operation/agentes/estado_monitores.php:458
+#: ../../operation/agentes/stat_win.php:620
+#: ../../operation/agentes/datos_agente.php:315
+#: ../../operation/agentes/interface_traffic_graph_win.php:437
+#: ../../include/lib/Dashboard/Widgets/tree_view.php:686
+#: ../../include/functions_html.php:2272
+#: ../../enterprise/operation/log/log_viewer.php:984
+#: ../../enterprise/operation/log/log_viewer.php:996
+#: ../../enterprise/operation/services/services.treeview_services.php:378
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3988
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:4314
+#: ../../enterprise/meta/advanced/cron_main.php:533
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3965
+#: ../../enterprise/godmode/reporting/reporting_builder.template.php:1172
+#: ../../enterprise/godmode/wizards/consoletask_js.php:44
+#: ../../extensions/insert_data.php:227 ../../godmode/setup/news.php:325
+#: ../../godmode/reporting/reporting_builder.item_editor.php:4835
+#: ../../godmode/agentes/planned_downtime.editor.php:1491
+#: ../../godmode/alerts/configure_alert_template.php:1459
+#: ../../godmode/alerts/configure_alert_template.php:1543
+msgid "Minute"
+msgstr ""
+
+#: ../../operation/tree.php:577 ../../operation/reporting/graph_viewer.php:427
+#: ../../operation/reporting/reporting_viewer.php:371
+#: ../../operation/reporting/reporting_viewer.php:391
+#: ../../operation/network/network_report.php:340
+#: ../../operation/network/network_usage_map.php:188
+#: ../../operation/events/events.php:2810
+#: ../../operation/events/events_list.php:2035
+#: ../../operation/netflow/nf_live_view.php:744
+#: ../../operation/agentes/estado_monitores.php:459
+#: ../../operation/agentes/stat_win.php:621
+#: ../../operation/agentes/datos_agente.php:316
+#: ../../operation/agentes/interface_traffic_graph_win.php:438
+#: ../../include/lib/Dashboard/Widgets/tree_view.php:687
+#: ../../enterprise/operation/log/log_viewer.php:985
+#: ../../enterprise/operation/log/log_viewer.php:997
+#: ../../enterprise/operation/services/services.treeview_services.php:379
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3989
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:4315
+#: ../../enterprise/meta/advanced/cron_main.php:534
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3966
+#: ../../enterprise/godmode/reporting/reporting_builder.template.php:1173
+#: ../../enterprise/godmode/wizards/consoletask_js.php:45
+#: ../../extensions/insert_data.php:228 ../../godmode/setup/news.php:326
+#: ../../godmode/reporting/reporting_builder.item_editor.php:4836
+#: ../../godmode/agentes/planned_downtime.editor.php:1492
+#: ../../godmode/alerts/configure_alert_template.php:1460
+#: ../../godmode/alerts/configure_alert_template.php:1544
+msgid "Second"
+msgstr ""
+
+#: ../../operation/tree.php:578 ../../operation/reporting/graph_viewer.php:428
+#: ../../operation/reporting/reporting_viewer.php:372
+#: ../../operation/reporting/reporting_viewer.php:392
+#: ../../operation/network/network_report.php:341
+#: ../../operation/network/network_usage_map.php:189
+#: ../../operation/events/events.php:2811
+#: ../../operation/events/events_list.php:2036
+#: ../../operation/netflow/nf_live_view.php:745
+#: ../../operation/agentes/estado_monitores.php:460
+#: ../../operation/agentes/stat_win.php:622
+#: ../../operation/agentes/datos_agente.php:317
+#: ../../operation/agentes/interface_traffic_graph_win.php:439
+#: ../../include/lib/Dashboard/Widgets/tree_view.php:688
+#: ../../include/functions.php:505 ../../include/functions.php:636
+#: ../../enterprise/operation/log/log_viewer.php:986
+#: ../../enterprise/operation/log/log_viewer.php:998
+#: ../../enterprise/operation/services/services.treeview_services.php:380
+#: ../../enterprise/operation/agentes/agent_inventory.php:108
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3990
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:4316
+#: ../../enterprise/meta/advanced/cron_main.php:535
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3967
+#: ../../enterprise/godmode/reporting/reporting_builder.template.php:1174
+#: ../../enterprise/godmode/wizards/consoletask_js.php:46
+#: ../../extensions/insert_data.php:229 ../../godmode/setup/news.php:327
+#: ../../godmode/reporting/reporting_builder.item_editor.php:4837
+#: ../../godmode/agentes/planned_downtime.editor.php:1493
+#: ../../godmode/alerts/configure_alert_template.php:1461
+#: ../../godmode/alerts/configure_alert_template.php:1545
+msgid "Now"
+msgstr ""
+
+#: ../../operation/tree.php:579 ../../operation/reporting/graph_viewer.php:429
+#: ../../operation/reporting/reporting_viewer.php:373
+#: ../../operation/reporting/reporting_viewer.php:393
+#: ../../operation/network/network_report.php:342
+#: ../../operation/network/network_usage_map.php:190
+#: ../../operation/events/events.php:2812
+#: ../../operation/events/events_list.php:2037
+#: ../../operation/netflow/nf_live_view.php:746
+#: ../../operation/agentes/estado_monitores.php:461
+#: ../../operation/agentes/stat_win.php:623
+#: ../../operation/agentes/datos_agente.php:318
+#: ../../operation/agentes/interface_traffic_graph_win.php:440
+#: ../../include/class/WelcomeWindow.class.php:159
+#: ../../include/lib/Dashboard/Widgets/tree_view.php:689
+#: ../../include/functions_snmp_browser.php:600
+#: ../../enterprise/operation/log/log_viewer.php:987
+#: ../../enterprise/operation/log/log_viewer.php:999
+#: ../../enterprise/operation/services/services.treeview_services.php:381
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3991
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:4317
+#: ../../enterprise/meta/advanced/cron_main.php:536
+#: ../../enterprise/godmode/setup/setup.php:736
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3968
+#: ../../enterprise/godmode/reporting/reporting_builder.template.php:1175
+#: ../../enterprise/godmode/wizards/consoletask_js.php:47
+#: ../../extensions/insert_data.php:230 ../../mobile/include/ui.class.php:691
+#: ../../mobile/include/ui.class.php:749 ../../godmode/setup/news.php:328
+#: ../../godmode/reporting/reporting_builder.item_editor.php:4838
+#: ../../godmode/wizards/HostDevices.class.php:796
+#: ../../godmode/agentes/planned_downtime.editor.php:1494
+#: ../../godmode/alerts/configure_alert_template.php:1462
+#: ../../godmode/alerts/configure_alert_template.php:1546
+msgid "Close"
+msgstr ""
+
+#: ../../operation/search_policies.php:37
+msgid "Id_group"
+msgstr ""
+
+#: ../../operation/search_policies.php:50
+#: ../../enterprise/meta/agentsearch.php:409
+#: ../../enterprise/godmode/policies/policies.php:471
+msgid "Policy updated"
+msgstr ""
+
+#: ../../operation/search_policies.php:58
+#: ../../enterprise/meta/agentsearch.php:417
+#: ../../enterprise/godmode/policies/policies.php:479
+msgid "Pending update policy only database"
+msgstr ""
+
+#: ../../operation/search_policies.php:66
+#: ../../enterprise/meta/agentsearch.php:425
+#: ../../enterprise/godmode/policies/policies.php:487
+msgid "Pending update policy"
+msgstr ""
+
+#: ../../operation/search_modules.php:32
+#: ../../operation/agentes/alerts_status.php:548
+#: ../../operation/agentes/alerts_status.php:583
+#: ../../operation/agentes/alerts_status.php:618
+#: ../../operation/agentes/alerts_status.php:650
+#: ../../operation/agentes/estado_monitores.php:125
+#: ../../operation/agentes/exportdata.csv.php:74
+#: ../../operation/agentes/exportdata.php:83
+#: ../../operation/agentes/exportdata.excel.php:74
+#: ../../operation/search_alerts.php:35
+#: ../../include/functions_visual_map_editor.php:497
+#: ../../include/functions_reports.php:1344
+#: ../../include/ajax/alert_list.ajax.php:279
+#: ../../include/ajax/alert_list.ajax.php:304
+#: ../../include/ajax/alert_list.ajax.php:467
+#: ../../include/class/AgentsAlerts.class.php:412
+#: ../../include/class/AgentsAlerts.class.php:903
+#: ../../include/lib/Dashboard/Widgets/sla_percent.php:315
+#: ../../include/lib/Dashboard/Widgets/module_table_value.php:283
+#: ../../include/lib/Dashboard/Widgets/module_value.php:308
+#: ../../include/lib/Dashboard/Widgets/single_graph.php:279
+#: ../../include/lib/Dashboard/Widgets/module_status.php:324
+#: ../../include/lib/Dashboard/Widgets/graph_module_histogram.php:304
+#: ../../include/lib/Dashboard/Widgets/tree_view.php:682
+#: ../../include/lib/Dashboard/Widgets/module_icon.php:334
+#: ../../include/lib/Dashboard/Widgets/top_n.php:221
+#: ../../include/functions_treeview.php:64
+#: ../../include/functions_graph.php:5450
+#: ../../include/functions_reporting.php:6655
+#: ../../include/rest-api/models/VisualConsole/Items/BasicChart.php:299
+#: ../../include/rest-api/models/VisualConsole/Items/DonutGraph.php:242
+#: ../../include/rest-api/models/VisualConsole/Items/StaticGraph.php:380
+#: ../../include/rest-api/models/VisualConsole/Items/ColorCloud.php:411
+#: ../../include/rest-api/models/VisualConsole/Items/SimpleValue.php:349
+#: ../../include/rest-api/models/VisualConsole/Items/BarsGraph.php:529
+#: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:563
+#: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:604
+#: ../../include/rest-api/models/VisualConsole/Items/Odometer.php:385
+#: ../../include/rest-api/models/VisualConsole/Items/EventsHistory.php:252
+#: ../../include/functions_reporting_html.php:543
+#: ../../include/functions_reporting_html.php:939
+#: ../../include/functions_reporting_html.php:1748
+#: ../../include/functions_reporting_html.php:2076
+#: ../../include/functions_reporting_html.php:2178
+#: ../../include/functions_reporting_html.php:3132
+#: ../../include/functions_reporting_html.php:3515
+#: ../../include/functions_reporting_html.php:3523
+#: ../../include/functions_reporting_html.php:3532
+#: ../../include/functions_reporting_html.php:3544
+#: ../../include/functions_reporting_html.php:3700
+#: ../../include/functions_reporting_html.php:3828
+#: ../../include/functions_reporting_html.php:3922
+#: ../../include/functions_reporting_html.php:4641
+#: ../../include/functions_reporting_html.php:4689
+#: ../../enterprise/operation/agentes/policy_view.php:258
+#: ../../enterprise/operation/agentes/agent_inventory.php:69
+#: ../../enterprise/operation/inventory/inventory.php:343
+#: ../../enterprise/include/functions_reporting_csv.php:491
+#: ../../enterprise/include/functions_reporting_csv.php:776
+#: ../../enterprise/include/functions_reporting_csv.php:802
+#: ../../enterprise/include/functions_reporting_csv.php:915
+#: ../../enterprise/include/functions_reporting_csv.php:954
+#: ../../enterprise/include/functions_reporting_csv.php:1014
+#: ../../enterprise/include/functions_reporting_csv.php:1030
+#: ../../enterprise/include/functions_reporting_csv.php:1184
+#: ../../enterprise/include/functions_reporting_csv.php:1215
+#: ../../enterprise/include/functions_reporting_csv.php:1270
+#: ../../enterprise/include/functions_reporting_csv.php:1325
+#: ../../enterprise/include/functions_reporting_csv.php:1374
+#: ../../enterprise/include/functions_reporting_csv.php:1429
+#: ../../enterprise/include/functions_reporting_csv.php:1458
+#: ../../enterprise/include/functions_reporting_csv.php:1503
+#: ../../enterprise/include/functions_reporting_csv.php:1549
+#: ../../enterprise/include/functions_reporting_csv.php:1622
+#: ../../enterprise/include/functions_reporting_csv.php:1741
+#: ../../enterprise/include/functions_reporting_csv.php:1976
+#: ../../enterprise/include/functions_reporting_csv.php:2049
+#: ../../enterprise/include/functions_reporting_csv.php:2281
+#: ../../enterprise/include/functions_reporting_csv.php:2317
+#: ../../enterprise/include/functions_reporting_csv.php:2465
+#: ../../enterprise/include/functions_reporting_csv.php:2737
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:923
+#: ../../enterprise/include/functions_services.php:1779
+#: ../../enterprise/include/functions_events.php:157
+#: ../../enterprise/include/functions_inventory.php:850
+#: ../../enterprise/include/functions_inventory.php:906
+#: ../../enterprise/include/functions_reporting.php:1853
+#: ../../enterprise/include/functions_reporting.php:2892
+#: ../../enterprise/include/functions_reporting.php:3879
+#: ../../enterprise/include/functions_reporting.php:4903
+#: ../../enterprise/include/functions_reporting_pdf.php:525
+#: ../../enterprise/include/functions_reporting_pdf.php:533
+#: ../../enterprise/include/functions_reporting_pdf.php:541
+#: ../../enterprise/include/functions_reporting_pdf.php:557
+#: ../../enterprise/include/functions_ui.php:47
+#: ../../enterprise/meta/include/functions_wizard_meta.php:3512
+#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:222
+#: ../../enterprise/meta/monitoring/wizard/wizard.manage_alert.php:213
+#: ../../enterprise/extensions/disabled/check_acls.php:133
+#: ../../enterprise/godmode/services/services.elements.php:93
+#: ../../enterprise/godmode/services/services.elements.php:157
+#: ../../enterprise/godmode/services/services.elements.php:275
+#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:239
+#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:185
+#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:240
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:317
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1394
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2055
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3504
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3717
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3735
+#: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:211
+#: ../../enterprise/godmode/alerts/alert_inventory_list.php:371
+#: ../../enterprise/godmode/policies/policy_linking.php:151
+#: ../../enterprise/godmode/policies/policy_alerts.php:352
+#: ../../enterprise/godmode/policies/policy_alerts.php:567
+#: ../../extensions/agents_modules.php:444 ../../extensions/insert_data.php:175
+#: ../../mobile/operation/alerts.php:338 ../../godmode/servers/plugin.php:88
+#: ../../godmode/reporting/reporting_builder.list_items.php:410
+#: ../../godmode/reporting/create_container.php:410
+#: ../../godmode/reporting/create_container.php:560
+#: ../../godmode/reporting/create_container.php:628
+#: ../../godmode/reporting/visual_console_builder.elements.php:105
+#: ../../godmode/reporting/reporting_builder.item_editor.php:197
+#: ../../godmode/reporting/reporting_builder.item_editor.php:820
+#: ../../godmode/reporting/reporting_builder.item_editor.php:1610
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3768
+#: ../../godmode/reporting/reporting_builder.item_editor.php:4284
+#: ../../godmode/reporting/reporting_builder.item_editor.php:4308
+#: ../../godmode/reporting/graph_builder.graph_editor.php:213
+#: ../../godmode/reporting/visual_console_builder.wizard.php:449
+#: ../../godmode/reporting/visual_console_builder.wizard.php:770
+#: ../../godmode/massive/massive_standby_alerts.php:223
+#: ../../godmode/massive/massive_standby_alerts.php:258
+#: ../../godmode/massive/massive_edit_agents.php:674
+#: ../../godmode/massive/massive_edit_agents.php:1026
+#: ../../godmode/massive/massive_enable_disable_alerts.php:195
+#: ../../godmode/massive/massive_enable_disable_alerts.php:230
+#: ../../godmode/agentes/module_manager_editor_prediction.php:154
+#: ../../godmode/agentes/module_manager_editor_common.php:1260
+#: ../../godmode/agentes/module_manager_editor_common.php:1304
+#: ../../godmode/agentes/agent_manager.php:481
+#: ../../godmode/agentes/agent_manager.php:553
+#: ../../godmode/agentes/planned_downtime.editor.php:1001
+#: ../../godmode/agentes/planned_downtime.list.php:357
+#: ../../godmode/alerts/alert_list.list.php:479
+#: ../../godmode/alerts/alert_list.list.php:737
+#: ../../godmode/alerts/alert_list.builder.php:70
+#: ../../godmode/alerts/alert_view.php:91
+msgid "Module"
+msgstr ""
+
+#: ../../operation/search_modules.php:33 ../../operation/gis_maps/ajax.php:236
+#: ../../operation/gis_maps/ajax.php:269 ../../operation/search_agents.php:42
+#: ../../operation/search_agents.php:48
+#: ../../operation/events/sound_events.php:165
+#: ../../operation/events/events.build_table.php:80
+#: ../../operation/events/events.php:1953
+#: ../../operation/agentes/status_monitor.php:1308
+#: ../../operation/agentes/alerts_status.php:547
+#: ../../operation/agentes/alerts_status.php:617
+#: ../../operation/agentes/estado_monitores.php:123
+#: ../../operation/agentes/interface_view.functions.php:480
+#: ../../operation/agentes/exportdata.csv.php:74
+#: ../../operation/agentes/exportdata.php:83
+#: ../../operation/agentes/exportdata.excel.php:74
+#: ../../operation/agentes/estado_agente.php:739
+#: ../../operation/agentes/ver_agente.php:1160
+#: ../../operation/search_alerts.php:34 ../../include/functions_gis.php:229
+#: ../../include/functions_visual_map_editor.php:422
+#: ../../include/functions_visual_map_editor.php:455
+#: ../../include/functions_reports.php:1313
+#: ../../include/ajax/alert_list.ajax.php:446
+#: ../../include/ajax/heatmap.ajax.php:238
+#: ../../include/ajax/heatmap.ajax.php:277
+#: ../../include/ajax/heatmap.ajax.php:312
+#: ../../include/class/AgentsAlerts.class.php:410
+#: ../../include/class/AgentsAlerts.class.php:974
+#: ../../include/class/NetworkMap.class.php:2835
+#: ../../include/class/NetworkMap.class.php:2884
+#: ../../include/class/NetworkMap.class.php:3162
+#: ../../include/lib/Dashboard/Widgets/sla_percent.php:297
+#: ../../include/lib/Dashboard/Widgets/module_table_value.php:265
+#: ../../include/lib/Dashboard/Widgets/module_value.php:290
+#: ../../include/lib/Dashboard/Widgets/wux_transaction.php:239
+#: ../../include/lib/Dashboard/Widgets/single_graph.php:261
+#: ../../include/lib/Dashboard/Widgets/module_status.php:306
+#: ../../include/lib/Dashboard/Widgets/graph_module_histogram.php:286
+#: ../../include/lib/Dashboard/Widgets/wux_transaction_stats.php:250
+#: ../../include/lib/Dashboard/Widgets/module_icon.php:316
+#: ../../include/lib/Dashboard/Widgets/top_n.php:206
+#: ../../include/functions_graph.php:5343
+#: ../../include/functions_snmp_browser.php:1625
+#: ../../include/functions_reporting.php:6654
+#: ../../include/rest-api/models/VisualConsole/Items/BasicChart.php:281
+#: ../../include/rest-api/models/VisualConsole/Items/DonutGraph.php:224
+#: ../../include/rest-api/models/VisualConsole/Items/StaticGraph.php:363
+#: ../../include/rest-api/models/VisualConsole/Items/ColorCloud.php:394
+#: ../../include/rest-api/models/VisualConsole/Items/SimpleValue.php:332
+#: ../../include/rest-api/models/VisualConsole/Items/BarsGraph.php:511
+#: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:546
+#: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:585
+#: ../../include/rest-api/models/VisualConsole/Items/Odometer.php:368
+#: ../../include/rest-api/models/VisualConsole/Items/EventsHistory.php:235
+#: ../../include/functions_reporting_html.php:542
+#: ../../include/functions_reporting_html.php:938
+#: ../../include/functions_reporting_html.php:1049
+#: ../../include/functions_reporting_html.php:1057
+#: ../../include/functions_reporting_html.php:1747
+#: ../../include/functions_reporting_html.php:2075
+#: ../../include/functions_reporting_html.php:2177
+#: ../../include/functions_reporting_html.php:2997
+#: ../../include/functions_reporting_html.php:3131
+#: ../../include/functions_reporting_html.php:3434
+#: ../../include/functions_reporting_html.php:3514
+#: ../../include/functions_reporting_html.php:3522
+#: ../../include/functions_reporting_html.php:3531
+#: ../../include/functions_reporting_html.php:3543
+#: ../../include/functions_reporting_html.php:3699
+#: ../../include/functions_reporting_html.php:3822
+#: ../../include/functions_reporting_html.php:3916
+#: ../../include/functions_reporting_html.php:4640
+#: ../../include/functions_reporting_html.php:4688
+#: ../../include/functions_reporting_html.php:4726
+#: ../../include/functions_reporting_html.php:5035
+#: ../../include/functions_reporting_html.php:5075
+#: ../../include/functions_reporting_html.php:5325
+#: ../../enterprise/tools/ipam/ipam_ajax.php:379
+#: ../../enterprise/tools/ipam/ipam_network.php:397
+#: ../../enterprise/operation/log/log_viewer.php:632
+#: ../../enterprise/operation/agentes/tag_view.php:599
+#: ../../enterprise/operation/agentes/manage_transmap_creation.php:187
+#: ../../enterprise/operation/agentes/manage_transmap_creation.php:365
+#: ../../enterprise/operation/agentes/manage_transmap_creation.php:491
+#: ../../enterprise/operation/inventory/inventory.php:387
+#: ../../enterprise/include/functions_reporting_csv.php:490
+#: ../../enterprise/include/functions_reporting_csv.php:776
+#: ../../enterprise/include/functions_reporting_csv.php:802
+#: ../../enterprise/include/functions_reporting_csv.php:915
+#: ../../enterprise/include/functions_reporting_csv.php:954
+#: ../../enterprise/include/functions_reporting_csv.php:1014
+#: ../../enterprise/include/functions_reporting_csv.php:1030
+#: ../../enterprise/include/functions_reporting_csv.php:1054
+#: ../../enterprise/include/functions_reporting_csv.php:1184
+#: ../../enterprise/include/functions_reporting_csv.php:1215
+#: ../../enterprise/include/functions_reporting_csv.php:1270
+#: ../../enterprise/include/functions_reporting_csv.php:1325
+#: ../../enterprise/include/functions_reporting_csv.php:1374
+#: ../../enterprise/include/functions_reporting_csv.php:1429
+#: ../../enterprise/include/functions_reporting_csv.php:1458
+#: ../../enterprise/include/functions_reporting_csv.php:1502
+#: ../../enterprise/include/functions_reporting_csv.php:1548
+#: ../../enterprise/include/functions_reporting_csv.php:1621
+#: ../../enterprise/include/functions_reporting_csv.php:1740
+#: ../../enterprise/include/functions_reporting_csv.php:1975
+#: ../../enterprise/include/functions_reporting_csv.php:2048
+#: ../../enterprise/include/functions_reporting_csv.php:2281
+#: ../../enterprise/include/functions_reporting_csv.php:2317
+#: ../../enterprise/include/functions_reporting_csv.php:2348
+#: ../../enterprise/include/functions_reporting_csv.php:2465
+#: ../../enterprise/include/functions_reporting_csv.php:2518
+#: ../../enterprise/include/functions_reporting_csv.php:2736
+#: ../../enterprise/include/class/LogSource.class.php:627
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:922
+#: ../../enterprise/include/functions_services.php:1666
+#: ../../enterprise/include/functions_events.php:147
+#: ../../enterprise/include/functions_inventory.php:363
+#: ../../enterprise/include/functions_inventory.php:849
+#: ../../enterprise/include/functions_inventory.php:905
+#: ../../enterprise/include/functions_log.php:279
+#: ../../enterprise/include/functions_log.php:282
+#: ../../enterprise/include/functions_reporting.php:1852
+#: ../../enterprise/include/functions_reporting.php:2185
+#: ../../enterprise/include/functions_reporting.php:2216
+#: ../../enterprise/include/functions_reporting.php:2234
+#: ../../enterprise/include/functions_reporting.php:2891
+#: ../../enterprise/include/functions_reporting.php:3878
+#: ../../enterprise/include/functions_reporting.php:4902
+#: ../../enterprise/include/functions_reporting_pdf.php:524
+#: ../../enterprise/include/functions_reporting_pdf.php:532
+#: ../../enterprise/include/functions_reporting_pdf.php:540
+#: ../../enterprise/include/functions_reporting_pdf.php:556
+#: ../../enterprise/include/functions_reporting_pdf.php:714
+#: ../../enterprise/meta/include/functions_wizard_meta.php:3505
+#: ../../enterprise/meta/monitoring/custom_fields_csv.php:99
+#: ../../enterprise/meta/monitoring/custom_fields_view.php:704
+#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:282
+#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:377
+#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:444
+#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:712
+#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:791
+#: ../../enterprise/meta/monitoring/wizard/wizard.manage_alert.php:205
+#: ../../enterprise/meta/agentsearch.php:134
+#: ../../enterprise/godmode/modules/manage_inventory_modules.php:299
+#: ../../enterprise/godmode/services/services.elements.php:94
+#: ../../enterprise/godmode/services/services.elements.php:133
+#: ../../enterprise/godmode/services/services.elements.php:274
+#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:220
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:316
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1393
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2031
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3501
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3712
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3730
+#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:136
+#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:85
+#: ../../enterprise/godmode/agentes/collections.agents.php:94
+#: ../../enterprise/godmode/policies/policy_linking.php:150
+#: ../../extensions/insert_data.php:158 ../../mobile/operation/modules.php:597
+#: ../../mobile/operation/home.php:96 ../../mobile/operation/alerts.php:335
+#: ../../mobile/operation/events.php:553 ../../mobile/operation/agents.php:93
+#: ../../mobile/operation/agents.php:403 ../../godmode/servers/plugin.php:87
+#: ../../godmode/gis_maps/configure_gis_map.php:581
+#: ../../godmode/reporting/reporting_builder.list_items.php:391
+#: ../../godmode/reporting/create_container.php:387
+#: ../../godmode/reporting/create_container.php:554
+#: ../../godmode/reporting/create_container.php:627
+#: ../../godmode/reporting/visual_console_builder.elements.php:104
+#: ../../godmode/reporting/reporting_builder.item_editor.php:196
+#: ../../godmode/reporting/reporting_builder.item_editor.php:819
+#: ../../godmode/reporting/reporting_builder.item_editor.php:1553
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3763
+#: ../../godmode/reporting/reporting_builder.item_editor.php:4281
+#: ../../godmode/reporting/reporting_builder.item_editor.php:4305
+#: ../../godmode/reporting/graph_builder.graph_editor.php:212
+#: ../../godmode/reporting/visual_console_builder.wizard.php:450
+#: ../../godmode/reporting/visual_console_builder.wizard.php:738
+#: ../../godmode/reporting/visual_console_builder.wizard.php:761
+#: ../../godmode/massive/massive_copy_modules.php:131
+#: ../../godmode/massive/massive_copy_modules.php:295
+#: ../../godmode/massive/massive_standby_alerts.php:223
+#: ../../godmode/massive/massive_standby_alerts.php:258
+#: ../../godmode/massive/massive_enable_disable_alerts.php:195
+#: ../../godmode/massive/massive_enable_disable_alerts.php:230
+#: ../../godmode/agentes/module_manager_editor_prediction.php:126
+#: ../../godmode/agentes/module_manager_editor_common.php:1250
+#: ../../godmode/agentes/module_manager_editor_common.php:1303
+#: ../../godmode/agentes/status_monitor_custom_fields.php:77
+#: ../../godmode/agentes/status_monitor_custom_fields.php:143
+#: ../../godmode/agentes/planned_downtime.list.php:353
+#: ../../godmode/alerts/alert_list.list.php:477
+#: ../../godmode/alerts/alert_list.list.php:727
+#: ../../godmode/alerts/alert_list.builder.php:56
+#: ../../godmode/alerts/alert_view.php:87
+msgid "Agent"
+msgstr ""
+
+#: ../../operation/search_modules.php:34
+#: ../../operation/events/sound_events.php:127
+#: ../../operation/netflow/nf_live_view.php:311
+#: ../../operation/agentes/estado_agente.php:757
+#: ../../operation/agentes/ver_agente.php:1144
+#: ../../operation/incidents/configure_integriaims_incident.php:234
+#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:326
+#: ../../include/functions_visual_map_editor.php:702
+#: ../../include/functions_visual_map_editor.php:720
+#: ../../include/functions_visual_map_editor.php:848
+#: ../../include/functions_reports.php:1067 ../../include/ajax/module.php:977
+#: ../../include/ajax/heatmap.ajax.php:75
+#: ../../include/class/ModuleTemplates.class.php:1209
+#: ../../include/class/AgentWizard.class.php:1182
+#: ../../include/class/AgentWizard.class.php:4022
+#: ../../include/class/CalendarManager.class.php:977
+#: ../../include/class/CalendarManager.class.php:1011
+#: ../../include/lib/Dashboard/Widgets/custom_graph.php:327
+#: ../../include/lib/Dashboard/Widgets/clock.php:221
+#: ../../include/lib/Dashboard/Widgets/service_view.php:251
+#: ../../include/functions_events.php:2606
+#: ../../include/functions_events.php:5026
+#: ../../include/functions_snmp_browser.php:564
+#: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:467
+#: ../../include/functions_reporting_html.php:1048
+#: ../../include/functions_reporting_html.php:1056
+#: ../../include/functions_reporting_html.php:1268
+#: ../../include/functions_reporting_html.php:1276
+#: ../../include/functions_reporting_html.php:2354
+#: ../../include/functions_reporting_html.php:3388
+#: ../../include/functions_reporting_html.php:5154
+#: ../../enterprise/views/cluster/list.php:61
+#: ../../enterprise/operation/agentes/tag_view.php:605
+#: ../../enterprise/operation/agentes/policy_view.php:396
+#: ../../enterprise/operation/agentes/ver_agente.php:32
+#: ../../enterprise/include/functions_reporting_csv.php:1605
+#: ../../enterprise/include/functions_reporting_csv.php:1721
+#: ../../enterprise/include/functions_reporting_csv.php:1961
+#: ../../enterprise/include/functions_reporting_csv.php:2029
+#: ../../enterprise/include/functions_services.php:1602
+#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:68
+#: ../../enterprise/meta/advanced/metasetup.relations.php:335
+#: ../../enterprise/meta/advanced/metasetup.relations.php:413
+#: ../../enterprise/meta/advanced/metasetup.relations.php:548
+#: ../../enterprise/meta/advanced/servers.build_table.php:62
+#: ../../enterprise/godmode/modules/configure_local_component.php:212
+#: ../../enterprise/godmode/services/services.elements.php:113
+#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:201
+#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:207
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1651
+#: ../../enterprise/godmode/reporting/reporting_builder.global.php:83
+#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:103
+#: ../../enterprise/godmode/policies/policy_modules.php:1465
+#: ../../mobile/operation/visualmaps.php:125
+#: ../../mobile/operation/visualmaps.php:126
+#: ../../mobile/operation/events.php:377 ../../mobile/operation/events.php:378
+#: ../../mobile/operation/events.php:524 ../../mobile/operation/events.php:681
+#: ../../mobile/operation/events.php:682
+#: ../../godmode/setup/setup_integria.php:408
+#: ../../godmode/setup/setup_integria.php:530
+#: ../../godmode/setup/gis_step_2.php:235 ../../godmode/setup/news.php:247
+#: ../../godmode/servers/plugin.php:816
+#: ../../godmode/servers/modificar_server.php:72
+#: ../../godmode/servers/servers.build_table.php:81
+#: ../../godmode/update_manager/update_manager.history.php:41
+#: ../../godmode/modules/manage_network_components.php:750
+#: ../../godmode/modules/manage_network_templates_form.php:232
+#: ../../godmode/modules/manage_network_components_form_common.php:64
+#: ../../godmode/reporting/reporting_builder.list_items.php:212
+#: ../../godmode/reporting/reporting_builder.list_items.php:249
+#: ../../godmode/reporting/reporting_builder.list_items.php:372
+#: ../../godmode/reporting/reporting_builder.item_editor.php:981
+#: ../../godmode/reporting/visual_console_builder.wizard.php:135
+#: ../../godmode/reporting/visual_console_builder.wizard.php:283
+#: ../../godmode/events/event_responses.editor.php:159
+#: ../../godmode/agentes/module_manager.php:850
+#: ../../godmode/agentes/module_manager_editor_common.php:288
+#: ../../godmode/agentes/module_manager_editor_common.php:401
+#: ../../godmode/agentes/module_manager_editor_common.php:1305
+#: ../../godmode/agentes/planned_downtime.editor.php:582
+#: ../../godmode/agentes/planned_downtime.list.php:613
+#: ../../godmode/agentes/agent_template.php:236
+#: ../../godmode/agentes/modificar_agente.php:650
+#: ../../godmode/alerts/alert_templates.php:37
+#: ../../godmode/alerts/alert_templates.php:302
+#: ../../godmode/alerts/alert_templates.php:386
+msgid "Type"
+msgstr ""
+
+#: ../../operation/search_modules.php:35 ../../operation/search_agents.php:45
+#: ../../operation/search_agents.php:51
+#: ../../operation/netflow/nf_live_view.php:262
+#: ../../operation/agentes/status_monitor.php:1329
+#: ../../operation/agentes/estado_agente.php:751
+#: ../../operation/agentes/estado_generalagente.php:338
+#: ../../include/class/CustomNetScan.class.php:520
+#: ../../include/lib/Dashboard/Widgets/sla_percent.php:331
+#: ../../include/lib/Dashboard/Widgets/custom_graph.php:350
+#: ../../include/lib/Dashboard/Widgets/single_graph.php:306
+#: ../../include/lib/Dashboard/Widgets/graph_module_histogram.php:321
+#: ../../include/lib/Dashboard/Widgets/top_n.php:236
+#: ../../include/functions_treeview.php:84
+#: ../../include/functions_treeview.php:646
+#: ../../include/functions_reporting_html.php:3393
+#: ../../enterprise/tools/ipam/ipam_list.php:617
+#: ../../enterprise/operation/agentes/tag_view.php:603
+#: ../../enterprise/operation/agentes/tag_view.php:681
+#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:537
+#: ../../enterprise/include/class/Aws.cloud.php:591
+#: ../../enterprise/include/class/Aws.cloud.php:1318
+#: ../../enterprise/include/class/Aws.S3.php:506
+#: ../../enterprise/include/class/MySQL.app.php:558
+#: ../../enterprise/include/class/Oracle.app.php:543
+#: ../../enterprise/include/class/DB2.app.php:536
+#: ../../enterprise/include/class/SAP.app.php:513
+#: ../../enterprise/include/class/VMware.app.php:667
+#: ../../enterprise/include/class/Azure.cloud.php:847
+#: ../../enterprise/include/class/Google.cloud.php:797
+#: ../../enterprise/include/functions_ipam.php:1354
+#: ../../enterprise/include/functions_ui.php:84
+#: ../../enterprise/meta/include/functions_wizard_meta.php:921
+#: ../../enterprise/meta/include/functions_wizard_meta.php:1038
+#: ../../enterprise/meta/include/functions_wizard_meta.php:1205
+#: ../../enterprise/meta/include/functions_wizard_meta.php:1523
+#: ../../enterprise/meta/include/functions_wizard_meta.php:1608
+#: ../../enterprise/meta/include/functions_wizard_meta.php:1745
+#: ../../enterprise/meta/agentsearch.php:137
+#: ../../enterprise/godmode/servers/manage_export_form.php:95
+#: ../../enterprise/godmode/servers/manage_export.php:139
+#: ../../enterprise/godmode/modules/configure_local_component.php:289
+#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:690
+#: ../../enterprise/godmode/agentes/inventory_manager.php:223
+#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:421
+#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:463
+#: ../../enterprise/godmode/policies/policy_inventory_modules.php:304
+#: ../../mobile/operation/modules.php:657
+#: ../../mobile/operation/modules.php:659
+#: ../../mobile/operation/modules.php:851
+#: ../../godmode/modules/manage_network_components_form_common.php:143
+#: ../../godmode/massive/massive_edit_agents.php:705
+#: ../../godmode/massive/massive_edit_modules.php:754
+#: ../../godmode/wizards/HostDevices.class.php:798
+#: ../../godmode/wizards/DiscoveryTaskList.class.php:594
+#: ../../godmode/agentes/module_manager.php:856
+#: ../../godmode/agentes/module_manager_editor_common.php:617
+#: ../../godmode/agentes/module_manager_editor_common.php:642
+#: ../../godmode/agentes/status_monitor_custom_fields.php:93
+#: ../../godmode/agentes/status_monitor_custom_fields.php:147
+#: ../../godmode/agentes/agent_manager.php:366
+msgid "Interval"
+msgstr ""
+
+#: ../../operation/search_modules.php:37
+#: ../../operation/agentes/status_monitor.php:1347
+#: ../../include/functions_visual_map_editor.php:58
+#: ../../include/ajax/module.php:983
+#: ../../include/class/NetworkMap.class.php:2908
+#: ../../include/lib/Dashboard/Widgets/custom_graph.php:303
+#: ../../include/functions_events.php:4583
+#: ../../enterprise/operation/services/services.service.php:130
+#: ../../enterprise/operation/services/services.list.php:509
+#: ../../enterprise/operation/agentes/tag_view.php:682
+#: ../../extensions/realtime_graphs.php:161
+#: ../../godmode/agentes/status_monitor_custom_fields.php:105
+#: ../../godmode/agentes/status_monitor_custom_fields.php:150
+msgid "Graph"
+msgstr ""
+
+#: ../../operation/search_modules.php:38
+#: ../../operation/events/events.build_table.php:330
+#: ../../operation/agentes/status_monitor.php:1357
+#: ../../operation/agentes/exportdata.csv.php:74
+#: ../../operation/agentes/exportdata.php:83
+#: ../../operation/agentes/exportdata.excel.php:74
+#: ../../include/ajax/module.php:982 ../../include/ajax/custom_fields.php:412
+#: ../../include/functions_events.php:210
+#: ../../include/functions_events.php:293
+#: ../../include/functions_events.php:6774
+#: ../../include/functions_netflow.php:301
+#: ../../include/functions_graph.php:3769
+#: ../../include/functions_reporting.php:4010
+#: ../../include/functions_reporting.php:4051
+#: ../../include/functions_reporting.php:4802
+#: ../../include/functions_reporting_html.php:2079
+#: ../../include/functions_reporting_html.php:2535
+#: ../../include/functions_reporting_html.php:2539
+#: ../../include/functions_reporting_html.php:2540
+#: ../../include/functions_reporting_html.php:2544
+#: ../../include/functions_reporting_html.php:2549
+#: ../../include/functions_reporting_html.php:2554
+#: ../../include/functions_reporting_html.php:2558
+#: ../../include/functions_reporting_html.php:2563
+#: ../../include/functions_reporting_html.php:2570
+#: ../../include/functions_reporting_html.php:2619
+#: ../../include/functions_reporting_html.php:2692
+#: ../../enterprise/operation/agentes/tag_view.php:684
+#: ../../enterprise/operation/agentes/policy_view.php:398
+#: ../../enterprise/include/functions_reporting_csv.php:802
+#: ../../enterprise/include/functions_reporting_csv.php:832
+#: ../../enterprise/include/functions_reporting_csv.php:879
+#: ../../enterprise/include/functions_reporting_csv.php:915
+#: ../../enterprise/include/functions_reporting_csv.php:954
+#: ../../enterprise/include/functions_reporting_csv.php:1014
+#: ../../enterprise/include/functions_reporting_csv.php:1458
+#: ../../enterprise/include/functions_reporting_csv.php:2281
+#: ../../enterprise/include/functions_reporting_csv.php:2317
+#: ../../enterprise/include/functions_reporting_csv.php:2423
+#: ../../enterprise/include/functions_reporting_csv.php:2518
+#: ../../enterprise/include/functions_reporting_csv.php:2740
+#: ../../enterprise/include/functions_services.php:1612
+#: ../../enterprise/include/functions_reporting.php:2184
+#: ../../enterprise/include/functions_reporting.php:2217
+#: ../../enterprise/include/functions_reporting.php:2221
+#: ../../enterprise/include/functions_reporting_pdf.php:702
+#: ../../enterprise/meta/include/functions_events_meta.php:134
+#: ../../enterprise/meta/advanced/collections.editor.php:54
+#: ../../enterprise/meta/advanced/collections.data.php:46
+#: ../../enterprise/meta/advanced/collections.data.php:86
+#: ../../enterprise/meta/advanced/collections.data.php:104
+#: ../../enterprise/meta/advanced/collections.data.php:124
+#: ../../enterprise/meta/advanced/collections.data.php:149
+#: ../../enterprise/meta/advanced/collections.data.php:172
+#: ../../enterprise/meta/advanced/collections.data.php:197
+#: ../../enterprise/meta/advanced/collections.data.php:238
+#: ../../enterprise/meta/advanced/collections.data.php:263
+#: ../../enterprise/godmode/agentes/collections.editor.php:56
+#: ../../enterprise/godmode/agentes/collections.agents.php:47
+#: ../../enterprise/godmode/agentes/collections.agents.php:56
+#: ../../enterprise/godmode/agentes/collections.data.php:74
+#: ../../enterprise/godmode/agentes/collections.data.php:117
+#: ../../enterprise/godmode/agentes/collections.data.php:184
+#: ../../enterprise/godmode/agentes/collections.data.php:204
+#: ../../enterprise/godmode/agentes/collections.data.php:224
+#: ../../enterprise/godmode/agentes/collections.data.php:251
+#: ../../enterprise/godmode/agentes/collections.data.php:279
+#: ../../enterprise/godmode/agentes/collections.data.php:309
+#: ../../enterprise/godmode/agentes/collections.data.php:332
+#: ../../extensions/insert_data.php:194 ../../extensions/insert_data.php:195
+#: ../../mobile/operation/modules.php:715
+#: ../../mobile/operation/modules.php:718
+#: ../../mobile/operation/modules.php:719
+#: ../../mobile/operation/modules.php:720
+#: ../../mobile/operation/modules.php:721
+#: ../../mobile/operation/modules.php:722
+#: ../../mobile/operation/modules.php:723
+#: ../../mobile/operation/modules.php:724
+#: ../../mobile/operation/modules.php:725
+#: ../../mobile/operation/modules.php:727
+#: ../../mobile/operation/modules.php:730
+#: ../../mobile/operation/modules.php:731
+#: ../../mobile/operation/modules.php:732
+#: ../../mobile/operation/modules.php:733
+#: ../../mobile/operation/modules.php:734
+#: ../../mobile/operation/modules.php:735
+#: ../../mobile/operation/modules.php:736
+#: ../../mobile/operation/modules.php:737
+#: ../../mobile/operation/modules.php:853
+#: ../../godmode/events/custom_events.php:115
+#: ../../godmode/agentes/status_monitor_custom_fields.php:113
+#: ../../godmode/agentes/status_monitor_custom_fields.php:152
+msgid "Data"
+msgstr ""
+
+#: ../../operation/search_modules.php:108
+#: ../../operation/events/events.php:2164
+#: ../../operation/agentes/status_monitor.php:1573
+#: ../../include/functions_events.php:62
+#: ../../include/functions_modules.php:2840
+#: ../../include/functions_modules.php:4076
+#: ../../enterprise/operation/agentes/tag_view.php:935
+#: ../../mobile/operation/modules.php:542
+#: ../../mobile/operation/modules.php:605
+msgid "NOT INIT"
+msgstr ""
+
+#: ../../operation/search_modules.php:114
+#: ../../operation/search_modules.php:141
+#: ../../operation/events/events.php:2060
+#: ../../operation/events/events.php:2127
+#: ../../operation/events/events.php:2154
+#: ../../operation/agentes/status_monitor.php:1580
+#: ../../operation/agentes/status_monitor.php:1586
+#: ../../operation/agentes/status_monitor.php:1663
+#: ../../operation/agentes/status_monitor.php:1669
+#: ../../operation/agentes/pandora_networkmap.view.php:1772
+#: ../../operation/agentes/pandora_networkmap.view.php:1780
+#: ../../include/class/Tree.class.php:655 ../../include/lib/Module.php:570
+#: ../../include/functions_events.php:56 ../../include/functions_events.php:108
+#: ../../include/functions_events.php:171
+#: ../../include/functions_modules.php:2849
+#: ../../include/functions_modules.php:2855
+#: ../../include/functions_modules.php:4060
+#: ../../include/functions_modules.php:4092 ../../include/functions_ui.php:3763
+#: ../../include/functions_ui.php:3829 ../../include/functions.php:1360
+#: ../../include/functions.php:1399
+#: ../../enterprise/operation/agentes/tag_view.php:942
+#: ../../enterprise/operation/agentes/tag_view.php:948
+#: ../../enterprise/operation/agentes/tag_view.php:989
+#: ../../enterprise/operation/agentes/tag_view.php:995
+#: ../../enterprise/operation/agentes/policy_view.php:479
+#: ../../enterprise/operation/agentes/policy_view.php:485
+#: ../../enterprise/include/functions_services.php:1968
+#: ../../enterprise/extensions/vmware/vmware_view.php:1009
+#: ../../mobile/operation/modules.php:548
+#: ../../mobile/operation/modules.php:571
+#: ../../mobile/operation/modules.php:611
+#: ../../mobile/operation/modules.php:634
+msgid "NORMAL"
+msgstr ""
+
+#: ../../operation/search_modules.php:120
+#: ../../operation/search_modules.php:149
+#: ../../operation/events/events.php:2035
+#: ../../operation/events/events.php:2133
+#: ../../operation/events/events.php:2159
+#: ../../operation/agentes/status_monitor.php:1594
+#: ../../operation/agentes/status_monitor.php:1602
+#: ../../operation/agentes/status_monitor.php:1679
+#: ../../operation/agentes/status_monitor.php:1685
+#: ../../operation/agentes/pandora_networkmap.view.php:1766
+#: ../../operation/agentes/pandora_networkmap.view.php:1785
+#: ../../include/class/Tree.class.php:625 ../../include/lib/Module.php:554
+#: ../../include/functions_events.php:59 ../../include/functions_events.php:112
+#: ../../include/functions_events.php:156
+#: ../../include/functions_modules.php:2843
+#: ../../include/functions_modules.php:2859
+#: ../../include/functions_modules.php:4064
+#: ../../include/functions_modules.php:4084 ../../include/functions_ui.php:3769
+#: ../../include/functions_ui.php:3839 ../../include/functions.php:1348
+#: ../../include/functions.php:1380
+#: ../../enterprise/operation/agentes/tag_view.php:956
+#: ../../enterprise/operation/agentes/tag_view.php:962
+#: ../../enterprise/operation/agentes/tag_view.php:1005
+#: ../../enterprise/operation/agentes/tag_view.php:1011
+#: ../../enterprise/operation/agentes/policy_view.php:473
+#: ../../enterprise/operation/agentes/policy_view.php:490
+#: ../../enterprise/include/functions_services.php:1976
+#: ../../enterprise/extensions/vmware/vmware_view.php:1014
+#: ../../mobile/operation/modules.php:554
+#: ../../mobile/operation/modules.php:579
+#: ../../mobile/operation/modules.php:617
+#: ../../mobile/operation/modules.php:642
+msgid "CRITICAL"
+msgstr ""
+
+#: ../../operation/search_modules.php:126
+#: ../../operation/search_modules.php:157
+#: ../../operation/events/events.php:2065
+#: ../../operation/events/events.php:2121
+#: ../../operation/events/events.php:2176
+#: ../../operation/agentes/status_monitor.php:1610
+#: ../../operation/agentes/status_monitor.php:1618
+#: ../../operation/agentes/status_monitor.php:1695
+#: ../../operation/agentes/status_monitor.php:1701
+#: ../../operation/agentes/pandora_networkmap.view.php:1769
+#: ../../operation/agentes/pandora_networkmap.view.php:1790
+#: ../../include/class/Tree.class.php:633
+#: ../../include/class/NetworkMap.class.php:2805
+#: ../../include/lib/Module.php:558 ../../include/functions_events.php:70
+#: ../../include/functions_events.php:104
+#: ../../include/functions_events.php:174
+#: ../../include/functions_modules.php:2846
+#: ../../include/functions_modules.php:2863
+#: ../../include/functions_modules.php:4068
+#: ../../include/functions_modules.php:4100 ../../include/functions_ui.php:3757
+#: ../../include/functions_ui.php:3834 ../../include/functions.php:1351
+#: ../../include/functions.php:1387
+#: ../../enterprise/operation/agentes/tag_view.php:970
+#: ../../enterprise/operation/agentes/tag_view.php:976
+#: ../../enterprise/operation/agentes/tag_view.php:1021
+#: ../../enterprise/operation/agentes/tag_view.php:1027
+#: ../../enterprise/operation/agentes/policy_view.php:476
+#: ../../enterprise/operation/agentes/policy_view.php:495
+#: ../../enterprise/include/functions_services.php:1984
+#: ../../enterprise/include/functions_login.php:34
+#: ../../enterprise/extensions/vmware/vmware_view.php:1019
+#: ../../mobile/operation/modules.php:560
+#: ../../mobile/operation/modules.php:587
+#: ../../mobile/operation/modules.php:623
+#: ../../mobile/operation/modules.php:650
+msgid "WARNING"
+msgstr ""
+
+#: ../../operation/search_modules.php:132
+#: ../../operation/search_modules.php:141
+#: ../../operation/search_modules.php:149
+#: ../../operation/search_modules.php:157
+#: ../../operation/events/events.php:2032
+#: ../../operation/events/events.php:2140
+#: ../../operation/events/events.php:2151
+#: ../../operation/agentes/status_monitor.php:1626
+#: ../../operation/agentes/status_monitor.php:1634
+#: ../../operation/agentes/status_monitor.php:1663
+#: ../../operation/agentes/status_monitor.php:1669
+#: ../../operation/agentes/status_monitor.php:1679
+#: ../../operation/agentes/status_monitor.php:1685
+#: ../../operation/agentes/status_monitor.php:1695
+#: ../../operation/agentes/status_monitor.php:1701
+#: ../../operation/agentes/pandora_networkmap.view.php:1780
+#: ../../operation/agentes/pandora_networkmap.view.php:1785
+#: ../../operation/agentes/pandora_networkmap.view.php:1790
+#: ../../include/class/Tree.class.php:639 ../../include/lib/Module.php:561
+#: ../../include/functions_events.php:73 ../../include/functions_events.php:117
+#: ../../include/functions_events.php:177
+#: ../../include/functions_modules.php:2855
+#: ../../include/functions_modules.php:2859
+#: ../../include/functions_modules.php:2863
+#: ../../include/functions_modules.php:4072 ../../include/functions_ui.php:3776
+#: ../../include/functions_ui.php:3854 ../../include/functions.php:1364
+#: ../../include/functions.php:1390
+#: ../../enterprise/operation/agentes/tag_view.php:989
+#: ../../enterprise/operation/agentes/tag_view.php:995
+#: ../../enterprise/operation/agentes/tag_view.php:1005
+#: ../../enterprise/operation/agentes/tag_view.php:1011
+#: ../../enterprise/operation/agentes/tag_view.php:1021
+#: ../../enterprise/operation/agentes/tag_view.php:1027
+#: ../../enterprise/operation/agentes/policy_view.php:485
+#: ../../enterprise/operation/agentes/policy_view.php:490
+#: ../../enterprise/operation/agentes/policy_view.php:495
+#: ../../enterprise/include/functions_services.php:1999
+#: ../../enterprise/extensions/vmware/vmware_view.php:1024
+#: ../../mobile/operation/modules.php:571
+#: ../../mobile/operation/modules.php:579
+#: ../../mobile/operation/modules.php:587
+#: ../../mobile/operation/modules.php:634
+#: ../../mobile/operation/modules.php:642
+#: ../../mobile/operation/modules.php:650
+msgid "UNKNOWN"
+msgstr ""
+
+#: ../../operation/search_modules.php:141
+#: ../../operation/search_modules.php:149
+#: ../../operation/search_modules.php:157
+#: ../../operation/agentes/status_monitor.php:1663
+#: ../../operation/agentes/status_monitor.php:1669
+#: ../../operation/agentes/status_monitor.php:1679
+#: ../../operation/agentes/status_monitor.php:1685
+#: ../../operation/agentes/status_monitor.php:1695
+#: ../../operation/agentes/status_monitor.php:1701
+#: ../../operation/agentes/pandora_networkmap.view.php:1780
+#: ../../operation/agentes/pandora_networkmap.view.php:1785
+#: ../../operation/agentes/pandora_networkmap.view.php:1790
+#: ../../include/functions_modules.php:2855
+#: ../../include/functions_modules.php:2859
+#: ../../include/functions_modules.php:2863
+#: ../../enterprise/operation/agentes/tag_view.php:989
+#: ../../enterprise/operation/agentes/tag_view.php:995
+#: ../../enterprise/operation/agentes/tag_view.php:1005
+#: ../../enterprise/operation/agentes/tag_view.php:1011
+#: ../../enterprise/operation/agentes/tag_view.php:1021
+#: ../../enterprise/operation/agentes/tag_view.php:1027
+#: ../../enterprise/operation/agentes/policy_view.php:485
+#: ../../enterprise/operation/agentes/policy_view.php:490
+#: ../../enterprise/operation/agentes/policy_view.php:495
+#: ../../enterprise/operation/agentes/transactional_map.php:210
+#: ../../mobile/operation/modules.php:571
+#: ../../mobile/operation/modules.php:579
+#: ../../mobile/operation/modules.php:587
+#: ../../mobile/operation/modules.php:634
+#: ../../mobile/operation/modules.php:642
+#: ../../mobile/operation/modules.php:650
+msgid "Last status"
+msgstr ""
+
+#: ../../operation/gis_maps/ajax.php:237 ../../operation/gis_maps/ajax.php:275
+#: ../../operation/gis_maps/ajax.php:444
+msgid "Position (Lat, Long, Alt)"
+msgstr ""
+
+#: ../../operation/gis_maps/ajax.php:238
+msgid "Start contact"
+msgstr ""
+
+#: ../../operation/gis_maps/ajax.php:239 ../../operation/gis_maps/ajax.php:349
+#: ../../operation/gis_maps/ajax.php:466 ../../operation/search_users.php:46
+#: ../../operation/search_agents.php:58
+#: ../../operation/agentes/log_sources_status.php:58
+#: ../../operation/agentes/estado_agente.php:769
+#: ../../operation/agentes/estado_generalagente.php:343
+#: ../../operation/agentes/ver_agente.php:1019
+#: ../../include/ajax/module.php:984 ../../include/functions_events.php:4498
+#: ../../include/functions_treeview.php:668
+#: ../../enterprise/operation/agentes/tag_view.php:609
+#: ../../enterprise/operation/agentes/policy_view.php:399
+#: ../../enterprise/operation/agentes/ver_agente.php:77
+#: ../../enterprise/meta/agentsearch.php:142
+#: ../../enterprise/godmode/reporting/aws_view.php:61
+#: ../../extensions/users_connected.php:146
+#: ../../mobile/operation/agent.php:193 ../../mobile/operation/agents.php:99
+#: ../../mobile/operation/agents.php:417 ../../mobile/operation/agents.php:419
+#: ../../mobile/operation/agents.php:422
+#: ../../godmode/agentes/planned_downtime.editor.php:917
+#: ../../godmode/users/user_list.php:481
+msgid "Last contact"
+msgstr ""
+
+#: ../../operation/gis_maps/ajax.php:240
+msgid "Num reports"
+msgstr ""
+
+#: ../../operation/gis_maps/ajax.php:242
+#: ../../operation/agentes/gis_view.php:225
+msgid "Manual placement"
+msgstr ""
+
+#: ../../operation/gis_maps/ajax.php:279 ../../operation/gis_maps/ajax.php:448
+msgid "Default position of map."
+msgstr ""
+
+#: ../../operation/gis_maps/ajax.php:290
+#: ../../include/functions_events.php:4484
+#: ../../include/functions_treeview.php:640
+#: ../../include/functions_reporting_html.php:1492
+#: ../../include/functions_reporting_html.php:3826
+#: ../../include/functions_reporting_html.php:3920
+#: ../../enterprise/include/functions_reporting_csv.php:718
+#: ../../enterprise/meta/include/functions_wizard_meta.php:210
+#: ../../enterprise/meta/include/functions_wizard_meta.php:214
+#: ../../enterprise/meta/include/functions_wizard_meta.php:482
+#: ../../enterprise/meta/include/functions_wizard_meta.php:1468
+#: ../../enterprise/meta/include/functions_wizard_meta.php:1816
+#: ../../godmode/servers/modificar_server.php:62
+#: ../../godmode/agentes/agent_manager.php:298
+msgid "IP Address"
+msgstr ""
+
+#: ../../operation/gis_maps/ajax.php:316
+#: ../../include/functions_reporting_html.php:1512
+#: ../../enterprise/include/functions_reporting_csv.php:718
+#: ../../enterprise/include/functions_reporting_csv.php:2409
+#: ../../enterprise/include/functions_reporting_csv.php:2423
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2266
+#: ../../extensions/api_checker.php:220
+#: ../../godmode/reporting/reporting_builder.item_editor.php:75
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2269
+#: ../../godmode/events/event_responses.editor.php:156
+#: ../../godmode/events/event_responses.editor.php:164
+msgid "URL"
+msgstr ""
+
+#: ../../operation/gis_maps/ajax.php:339
+msgid "Satellite Version"
+msgstr ""
+
+#: ../../operation/gis_maps/ajax.php:341
+#: ../../operation/agentes/estado_generalagente.php:227
+#: ../../include/functions_treeview.php:731
+#: ../../enterprise/views/cluster/view.php:309
+msgid "Agent Version"
+msgstr ""
+
+#: ../../operation/gis_maps/ajax.php:351 ../../operation/gis_maps/ajax.php:362
+#: ../../operation/gis_maps/ajax.php:468 ../../operation/gis_maps/ajax.php:479
+#: ../../operation/agentes/estado_generalagente.php:348
+#: ../../include/functions_cron.php:869
+#: ../../include/functions_treeview.php:660 ../../include/functions_ui.php:549
+#: ../../enterprise/tools/ipam/ipam_ajax.php:502
+#: ../../enterprise/tools/ipam/ipam_list.php:675
+#: ../../enterprise/include/functions_tasklist.php:572
+#: ../../enterprise/include/functions_ipam.php:2076
+#: ../../enterprise/include/functions_ipam.php:2077
+#: ../../enterprise/include/functions_ipam.php:2078
+#: ../../godmode/snmpconsole/snmp_alert.php:1295
+#: ../../godmode/db/db_main.php:189
+msgid "Never"
+msgstr ""
+
+#: ../../operation/gis_maps/ajax.php:360 ../../operation/gis_maps/ajax.php:477
+#: ../../operation/agentes/estado_agente.php:745
+#: ../../operation/agentes/estado_generalagente.php:343
+#: ../../include/functions_treeview.php:668
+#: ../../enterprise/operation/agentes/tag_view.php:601
+#: ../../enterprise/include/functions_reporting_csv.php:718
+msgid "Remote"
+msgstr ""
+
+#: ../../operation/gis_maps/ajax.php:385 ../../operation/gis_maps/ajax.php:502
+msgid "Number of non-validated critical events"
+msgstr ""
+
+#: ../../operation/gis_maps/ajax.php:395 ../../operation/gis_maps/ajax.php:512
+msgid "Alert(s) fired"
+msgstr ""
+
+#: ../../operation/gis_maps/gis_map.php:30
+#: ../../operation/gis_maps/render_view.php:130
+#: ../../godmode/gis_maps/configure_gis_map.php:86
+msgid "GIS Maps list"
+msgstr ""
+
+#: ../../operation/gis_maps/gis_map.php:35 ../../operation/menu.php:260
+msgid "GIS Maps"
+msgstr ""
+
+#: ../../operation/gis_maps/gis_map.php:109
+#: ../../include/functions_container.php:157
+#: ../../enterprise/meta/include/functions_autoprovision.php:644
+#: ../../enterprise/meta/advanced/servers.build_table.php:72
+#: ../../enterprise/godmode/modules/local_components.php:625
+#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:261
+#: ../../enterprise/godmode/alerts/alert_inventory_list.php:224
+#: ../../enterprise/godmode/policies/policies.php:409
+#: ../../enterprise/godmode/policies/policy_alerts.php:354
+#: ../../godmode/servers/plugin.php:819
+#: ../../godmode/servers/servers.build_table.php:91
+#: ../../godmode/reporting/graphs.php:323
+#: ../../godmode/reporting/reporting_builder.list_items.php:427
+#: ../../godmode/reporting/reporting_builder.php:957
+#: ../../godmode/reporting/reporting_builder.php:1156
+#: ../../godmode/alerts/alert_list.list.php:485
+#: ../../godmode/alerts/alert_templates.php:387
+#: ../../godmode/users/user_list.php:487
+#: ../../godmode/users/profile_list.php:349
+msgid "Op."
+msgstr ""
+
+#: ../../operation/gis_maps/gis_map.php:200
+msgid "No maps found"
+msgstr ""
+
+#: ../../operation/gis_maps/gis_map.php:219
+msgid "Caution: Do you want delete the map?"
+msgstr ""
+
+#: ../../operation/gis_maps/gis_map.php:226
+msgid "Do you want to set default the map?"
+msgstr ""
+
+#: ../../operation/gis_maps/gis_map.php:234
+msgid "There was error on setup the default map."
+msgstr ""
+
+#: ../../operation/gis_maps/render_view.php:145
+msgid "Show link to public GIS map"
+msgstr ""
+
+#: ../../operation/gis_maps/render_view.php:149
+#: ../../include/functions.php:3350
+msgid "5 seconds"
+msgstr ""
+
+#: ../../operation/gis_maps/render_view.php:150
+#: ../../include/functions.php:3351
+msgid "10 seconds"
+msgstr ""
+
+#: ../../operation/gis_maps/render_view.php:151 ../../operation/heatmap.php:171
+#: ../../include/ajax/heatmap.ajax.php:50
+#: ../../include/class/AgentsAlerts.class.php:816
+#: ../../include/functions.php:3353
+msgid "30 seconds"
+msgstr ""
+
+#: ../../operation/gis_maps/render_view.php:152 ../../operation/heatmap.php:172
+#: ../../include/ajax/heatmap.ajax.php:51
+#: ../../include/class/AgentsAlerts.class.php:817
+#: ../../include/functions.php:3354
+msgid "1 minute"
+msgstr ""
+
+#: ../../operation/gis_maps/render_view.php:153
+#: ../../include/class/AgentsAlerts.class.php:818
+#: ../../include/functions.php:3355
+msgid "2 minutes"
+msgstr ""
+
+#: ../../operation/gis_maps/render_view.php:154 ../../operation/heatmap.php:174
+#: ../../include/ajax/module.php:198 ../../include/ajax/heatmap.ajax.php:53
+#: ../../include/class/AgentsAlerts.class.php:819
+#: ../../include/functions.php:3356
+msgid "5 minutes"
+msgstr ""
+
+#: ../../operation/gis_maps/render_view.php:155
+#: ../../include/class/AgentsAlerts.class.php:820
+msgid "10 minutes"
+msgstr ""
+
+#: ../../operation/gis_maps/render_view.php:156
+#: ../../include/ajax/module.php:200 ../../include/ajax/graph.ajax.php:146
+#: ../../include/functions.php:2691 ../../include/functions.php:3359
+#: ../../enterprise/godmode/reporting/graph_template_editor.php:217
+#: ../../godmode/setup/performance.php:529
+#: ../../godmode/reporting/create_container.php:346
+msgid "1 hour"
+msgstr ""
+
+#: ../../operation/gis_maps/render_view.php:157
+#: ../../enterprise/godmode/reporting/graph_template_editor.php:218
+msgid "2 hours"
+msgstr ""
+
+#: ../../operation/gis_maps/render_view.php:163
+#: ../../operation/snmpconsole/snmp_browser.php:389
+#: ../../operation/snmpconsole/snmp_browser.php:404
+#: ../../operation/snmpconsole/snmp_browser.php:414
+#: ../../operation/snmpconsole/snmp_browser.php:533
+#: ../../operation/snmpconsole/snmp_view.php:630
+#: ../../operation/snmpconsole/snmp_view.php:1114
+#: ../../operation/snmpconsole/snmp_view.php:1125
+#: ../../operation/events/events.php:1912
+#: ../../operation/events/events_list.php:530
+#: ../../operation/events/events_list.php:1283
+#: ../../operation/agentes/pandora_networkmap.editor.php:349
+#: ../../operation/agentes/pandora_networkmap.view.php:174
+#: ../../operation/agentes/ver_agente.php:1155
+#: ../../operation/agentes/ver_agente.php:1211
+#: ../../operation/agentes/ver_agente.php:1226
+#: ../../operation/users/user_edit.php:402
+#: ../../operation/users/user_edit.php:414
+#: ../../operation/users/user_edit.php:455
+#: ../../operation/users/user_edit.php:491
+#: ../../operation/users/user_edit.php:505
+#: ../../operation/users/user_edit.php:898
+#: ../../operation/users/user_edit.php:905
+#: ../../operation/users/user_edit.php:914
+#: ../../operation/users/user_edit.php:921
+#: ../../operation/incidents/list_integriaims_incidents.php:530
+#: ../../operation/incidents/list_integriaims_incidents.php:534
+#: ../../include/functions_cron.php:642
+#: ../../include/functions_visual_map_editor.php:404
+#: ../../include/functions_visual_map_editor.php:406
+#: ../../include/functions_visual_map_editor.php:622
+#: ../../include/functions_visual_map_editor.php:957
+#: ../../include/functions_visual_map_editor.php:1010
+#: ../../include/functions_visual_map_editor.php:1072
+#: ../../include/ajax/planned_downtime.ajax.php:85
+#: ../../include/ajax/custom_fields.php:668 ../../include/ajax/events.php:509
+#: ../../include/class/NetworkMap.class.php:2789
+#: ../../include/class/NetworkMap.class.php:3024
+#: ../../include/class/NetworkMap.class.php:3047
+#: ../../include/class/NetworkMap.class.php:3119
+#: ../../include/class/NetworkMap.class.php:3129
+#: ../../include/class/NetworkMap.class.php:3214
+#: ../../include/class/NetworkMap.class.php:3230
+#: ../../include/lib/Dashboard/Widgets/sla_percent.php:336
+#: ../../include/lib/Dashboard/Widgets/reports.php:490
+#: ../../include/lib/Dashboard/Widgets/custom_graph.php:355
+#: ../../include/lib/Dashboard/Widgets/maps_made_by_user.php:521
+#: ../../include/lib/Dashboard/Widgets/single_graph.php:311
+#: ../../include/lib/Dashboard/Widgets/graph_module_histogram.php:326
+#: ../../include/lib/Dashboard/Widgets/service_map.php:266
+#: ../../include/lib/Dashboard/Widgets/service_map.php:294
+#: ../../include/lib/Dashboard/Widgets/events_list.php:301
+#: ../../include/lib/Dashboard/Widgets/events_list.php:459
+#: ../../include/lib/Dashboard/Widgets/top_n.php:241
+#: ../../include/functions_events.php:3619
+#: ../../include/functions_events.php:3635
+#: ../../include/functions_profile.php:297
+#: ../../include/functions_profile.php:315
+#: ../../include/functions_profile.php:330
+#: ../../include/functions_integriaims.php:135
+#: ../../include/rest-api/models/VisualConsole/Item.php:2087
+#: ../../include/rest-api/models/VisualConsole/Item.php:2206
+#: ../../include/rest-api/models/VisualConsole/Item.php:2319
+#: ../../include/rest-api/models/VisualConsole/Item.php:2441
+#: ../../include/rest-api/models/VisualConsole/Items/BasicChart.php:318
+#: ../../include/rest-api/models/VisualConsole/Items/SimpleValue.php:364
+#: ../../include/rest-api/models/VisualConsole/Items/SimpleValue.php:399
+#: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:632
+#: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:644
+#: ../../include/functions_html.php:376 ../../include/functions_html.php:816
+#: ../../include/functions_html.php:1229 ../../include/functions_html.php:1281
+#: ../../include/functions_html.php:1328 ../../include/functions_html.php:1329
+#: ../../include/functions_html.php:1382 ../../include/functions_html.php:1432
+#: ../../include/functions_html.php:4572 ../../include/functions_html.php:5861
+#: ../../include/functions_networkmap.php:1519 ../../include/functions.php:1073
+#: ../../enterprise/tools/ipam/ipam_network.php:594
+#: ../../enterprise/tools/ipam/ipam_supernet_config.php:611
+#: ../../enterprise/tools/ipam/ipam_supernet_config.php:783
+#: ../../enterprise/tools/ipam/ipam_list.php:112
+#: ../../enterprise/tools/ipam/ipam_list.php:135
+#: ../../enterprise/tools/ipam/ipam_list.php:157
+#: ../../enterprise/tools/ipam/ipam_editor.php:206
+#: ../../enterprise/tools/ipam/ipam_editor.php:234
+#: ../../enterprise/views/ipam/sites/edit.php:71
+#: ../../enterprise/operation/log/log_viewer.php:735
+#: ../../enterprise/operation/agentes/ver_agente.php:38
+#: ../../enterprise/include/ajax/ipam.ajax.php:400
+#: ../../enterprise/include/ajax/ipam.ajax.php:428
+#: ../../enterprise/include/class/SAP.app.php:615
+#: ../../enterprise/include/class/SAP.app.php:810
+#: ../../enterprise/include/class/SAP.app.php:811
+#: ../../enterprise/include/class/Omnishell.class.php:858
+#: ../../enterprise/include/class/Omnishell.class.php:859
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:894
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:921
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1031
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1184
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1194
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2001
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2467
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2512
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3479
+#: ../../enterprise/include/functions_tasklist.php:317
+#: ../../enterprise/meta/event/custom_events.php:227
+#: ../../enterprise/meta/event/custom_events.php:273
+#: ../../enterprise/meta/monitoring/custom_fields_view.php:256
+#: ../../enterprise/meta/monitoring/wizard/wizard.php:142
+#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:269
+#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:366
+#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:423
+#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:691
+#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:762
+#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:833
+#: ../../enterprise/meta/advanced/metasetup.relations.php:245
+#: ../../enterprise/meta/advanced/metasetup.setup.php:394
+#: ../../enterprise/meta/advanced/metasetup.setup.php:400
+#: ../../enterprise/meta/advanced/metasetup.setup.php:410
+#: ../../enterprise/meta/advanced/metasetup.setup.php:416
+#: ../../enterprise/meta/advanced/metasetup.visual.php:289
+#: ../../enterprise/godmode/setup/setup.php:675
+#: ../../enterprise/godmode/setup/setup.php:692
+#: ../../enterprise/godmode/setup/setup.php:701
+#: ../../enterprise/godmode/setup/setup.php:718
+#: ../../enterprise/godmode/servers/manage_export_form.php:85
+#: ../../enterprise/godmode/modules/configure_local_component.php:543
+#: ../../enterprise/godmode/modules/configure_local_component.php:698
+#: ../../enterprise/godmode/modules/configure_local_component.php:704
+#: ../../enterprise/godmode/modules/configure_local_component.php:712
+#: ../../enterprise/godmode/modules/configure_local_component.php:718
+#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:194
+#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:578
+#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:597
+#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:611
+#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:621
+#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:631
+#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:635
+#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:661
+#: ../../enterprise/godmode/reporting/graph_template_wizard.php:193
+#: ../../enterprise/godmode/reporting/graph_template_wizard.php:398
+#: ../../enterprise/godmode/reporting/graph_template_wizard.php:417
+#: ../../enterprise/godmode/reporting/graph_template_wizard.php:428
+#: ../../enterprise/godmode/reporting/graph_template_wizard.php:443
+#: ../../enterprise/godmode/reporting/graph_template_wizard.php:475
+#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:262
+#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:774
+#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:795
+#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:810
+#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:820
+#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:830
+#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:834
+#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:861
+#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:184
+#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:437
+#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:581
+#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:589
+#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:599
+#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:621
+#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:674
+#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:707
+#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:727
+#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:737
+#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:758
+#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:778
+#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:803
+#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:826
+#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:847
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:314
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2977
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3194
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3278
+#: ../../enterprise/godmode/reporting/reporting_builder.global.php:60
+#: ../../enterprise/godmode/reporting/reporting_builder.global.php:518
+#: ../../enterprise/godmode/reporting/reporting_builder.global.php:535
+#: ../../enterprise/godmode/reporting/reporting_builder.global.php:551
+#: ../../enterprise/godmode/reporting/reporting_builder.global.php:567
+#: ../../enterprise/godmode/reporting/reporting_builder.global.php:591
+#: ../../enterprise/godmode/reporting/reporting_builder.global.php:607
+#: ../../enterprise/godmode/reporting/reporting_builder.global.php:649
+#: ../../enterprise/godmode/reporting/reporting_builder.global.php:682
+#: ../../enterprise/godmode/reporting/reporting_builder.global.php:691
+#: ../../enterprise/godmode/reporting/reporting_builder.global.php:710
+#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:215
+#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:247
+#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:253
+#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:265
+#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:275
+#: ../../enterprise/godmode/reporting/reporting_builder.template.php:1148
+#: ../../enterprise/godmode/reporting/reporting_builder.template.php:1272
+#: ../../enterprise/godmode/reporting/reporting_builder.template.php:1287
+#: ../../enterprise/godmode/reporting/reporting_builder.template.php:1297
+#: ../../enterprise/godmode/reporting/reporting_builder.template.php:1312
+#: ../../enterprise/godmode/reporting/reporting_builder.template.php:1334
+#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:80
+#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:386
+#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:409
+#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:906
+#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:922
+#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:943
+#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:952
+#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:1308
+#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:1336
+#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:1355
+#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:1382
+#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:471
+#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:862
+#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:977
+#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1091
+#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1126
+#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1173
+#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:121
+#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:142
+#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:154
+#: ../../enterprise/godmode/massive/massive_edit_tags_policy.php:125
+#: ../../enterprise/godmode/massive/massive_edit_tags_policy.php:211
+#: ../../enterprise/godmode/massive/massive_add_alerts_policy.php:111
+#: ../../enterprise/godmode/massive/massive_add_alerts_policy.php:132
+#: ../../enterprise/godmode/massive/massive_add_alerts_policy.php:144
+#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:28
+#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:205
+#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:244
+#: ../../enterprise/godmode/massive/massive_tags_edit_policy.php:117
+#: ../../enterprise/godmode/massive/massive_tags_edit_policy.php:197
+#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:29
+#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:265
+#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:396
+#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:473
+#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:549
+#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:550
+#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:551
+#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:552
+#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:601
+#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:473
+#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:604
+#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:700
+#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:857
+#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:167
+#: ../../enterprise/godmode/policies/policy_agents.php:391
+#: ../../enterprise/godmode/policies/policy_agents.php:1694
+#: ../../enterprise/godmode/policies/policy_external_alerts.php:579
+#: ../../enterprise/godmode/policies/policy_external_alerts.php:688
+#: ../../enterprise/godmode/policies/policy_alerts.php:583
+#: ../../mobile/operation/events.php:639
+#: ../../godmode/setup/setup_visuals.php:400
+#: ../../godmode/setup/setup_visuals.php:419
+#: ../../godmode/setup/setup_visuals.php:949
+#: ../../godmode/setup/os.builder.php:41
+#: ../../godmode/modules/manage_network_components_form.php:642
+#: ../../godmode/modules/manage_network_components_form.php:648
+#: ../../godmode/modules/manage_network_components_form.php:657
+#: ../../godmode/modules/manage_network_components_form.php:663
+#: ../../godmode/modules/manage_network_components_form_plugin.php:41
+#: ../../godmode/modules/manage_network_components_form_common.php:343
+#: ../../godmode/modules/manage_network_components_form_network.php:248
+#: ../../godmode/modules/manage_nc_groups_form.php:77
+#: ../../godmode/reporting/create_container.php:489
+#: ../../godmode/reporting/visual_console_builder.elements.php:482
+#: ../../godmode/reporting/visual_console_builder.elements.php:633
+#: ../../godmode/reporting/visual_console_builder.elements.php:643
+#: ../../godmode/reporting/reporting_builder.item_editor.php:194
+#: ../../godmode/reporting/reporting_builder.item_editor.php:906
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2029
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2102
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2123
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2155
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3034
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3195
+#: ../../godmode/reporting/graph_builder.graph_editor.php:329
+#: ../../godmode/reporting/visual_console_builder.wizard.php:266
+#: ../../godmode/reporting/visual_console_builder.wizard.php:438
+#: ../../godmode/reporting/visual_console_builder.wizard.php:451
+#: ../../godmode/reporting/visual_console_builder.wizard.php:485
+#: ../../godmode/reporting/visual_console_builder.wizard.php:498
+#: ../../godmode/reporting/visual_console_builder.wizard.php:536
+#: ../../godmode/reporting/visual_console_builder.wizard.php:537
+#: ../../godmode/reporting/visual_console_builder.wizard.php:732
+#: ../../godmode/reporting/visual_console_builder.wizard.php:742
+#: ../../godmode/reporting/visual_console_builder.wizard.php:774
+#: ../../godmode/snmpconsole/snmp_alert.php:27
+#: ../../godmode/snmpconsole/snmp_alert.php:1081
+#: ../../godmode/events/event_edit_filter.php:694
+#: ../../godmode/events/custom_events.php:181
+#: ../../godmode/events/custom_events.php:229
+#: ../../godmode/massive/massive_add_alerts.php:304
+#: ../../godmode/massive/massive_delete_modules.php:502
+#: ../../godmode/massive/massive_delete_modules.php:594
+#: ../../godmode/massive/massive_delete_modules.php:679
+#: ../../godmode/massive/massive_delete_modules.php:728
+#: ../../godmode/massive/massive_delete_modules.php:736
+#: ../../godmode/massive/massive_delete_modules.php:737
+#: ../../godmode/massive/massive_delete_modules.php:738
+#: ../../godmode/massive/massive_delete_modules.php:739
+#: ../../godmode/massive/massive_delete_modules.php:805
+#: ../../godmode/massive/massive_delete_modules.php:835
+#: ../../godmode/massive/massive_copy_modules.php:374
+#: ../../godmode/massive/massive_copy_modules.php:508
+#: ../../godmode/massive/massive_add_action_alerts.php:341
+#: ../../godmode/massive/massive_edit_agents.php:740
+#: ../../godmode/massive/massive_delete_alerts.php:359
+#: ../../godmode/massive/massive_edit_plugins.php:338
+#: ../../godmode/massive/massive_edit_modules.php:458
+#: ../../godmode/massive/massive_edit_modules.php:919
+#: ../../godmode/massive/massive_edit_modules.php:1053
+#: ../../godmode/massive/massive_edit_modules.php:1169
+#: ../../godmode/massive/massive_edit_modules.php:1204
+#: ../../godmode/massive/massive_edit_modules.php:1259
+#: ../../godmode/massive/massive_edit_modules.php:1345
+#: ../../godmode/massive/massive_edit_modules.php:1418
+#: ../../godmode/massive/massive_edit_modules.php:1527
+#: ../../godmode/massive/massive_edit_modules.php:1528
+#: ../../godmode/massive/massive_edit_modules.php:1529
+#: ../../godmode/massive/massive_edit_modules.php:1530
+#: ../../godmode/massive/massive_edit_modules.php:1769
+#: ../../godmode/massive/massive_edit_modules.php:1829
+#: ../../godmode/wizards/HostDevices.class.php:1098
+#: ../../godmode/agentes/module_manager_editor_plugin.php:55
+#: ../../godmode/agentes/module_manager_editor_common.php:733
+#: ../../godmode/agentes/module_manager_editor_common.php:1149
+#: ../../godmode/agentes/module_manager_editor_common.php:1405
+#: ../../godmode/agentes/module_manager_editor_common.php:1412
+#: ../../godmode/agentes/module_manager_editor_common.php:1423
+#: ../../godmode/agentes/module_manager_editor_common.php:1431
+#: ../../godmode/agentes/status_monitor_custom_fields.php:218
+#: ../../godmode/agentes/status_monitor_custom_fields.php:266
+#: ../../godmode/agentes/agent_manager.php:425
+#: ../../godmode/agentes/agent_manager.php:679
+#: ../../godmode/agentes/agent_manager.php:845
+#: ../../godmode/agentes/module_manager_editor_network.php:465
+#: ../../godmode/alerts/configure_alert_template.php:650
+#: ../../godmode/alerts/configure_alert_template.php:777
+#: ../../godmode/alerts/configure_alert_template.php:798
+#: ../../godmode/alerts/alert_list.list.php:748
+#: ../../godmode/alerts/alert_actions.php:291
+#: ../../godmode/alerts/alert_commands.php:302
+#: ../../godmode/alerts/alert_commands.php:316
+#: ../../godmode/alerts/alert_commands.php:376
+#: ../../godmode/alerts/alert_commands.php:389
+#: ../../godmode/alerts/configure_alert_action.php:264
+#: ../../godmode/users/configure_user.php:1073
+#: ../../godmode/users/configure_user.php:1087
+#: ../../godmode/users/configure_user.php:1281
+#: ../../godmode/users/configure_user.php:1293
+#: ../../godmode/groups/configure_group.php:188
+#: ../../godmode/groups/configure_group.php:210
+msgid "None"
+msgstr ""
+
+#: ../../operation/gis_maps/render_view.php:167
+#: ../../operation/snmpconsole/snmp_statistics.php:218
+#: ../../operation/snmpconsole/snmp_statistics.php:275
+#: ../../operation/snmpconsole/snmp_view.php:636
+#: ../../operation/snmpconsole/snmp_view.php:1120
+#: ../../operation/snmpconsole/snmp_view.php:1149
+#: ../../operation/users/user_edit.php:362
+#: ../../include/functions_graph.php:3060
+#: ../../include/functions_graph.php:3105
+#: ../../include/functions_graph.php:3146
+#: ../../include/functions_graph.php:3188
+#: ../../include/functions_graph.php:3265
+#: ../../include/functions_graph.php:3474
+#: ../../include/functions_graph.php:3582
+#: ../../include/functions_graph.php:3647
+#: ../../include/functions_graph.php:3814
+#: ../../include/functions_graph.php:3826
+#: ../../include/functions_graph.php:3827
+#: ../../include/functions_graph.php:3830
+#: ../../include/functions_graph.php:3835
+#: ../../include/functions_graph.php:3836
+#: ../../include/functions_graph.php:3839
+#: ../../include/functions_graph.php:4837
+#: ../../include/functions_reporting.php:4847
+#: ../../include/functions_reporting.php:4859
+#: ../../include/functions_reporting.php:4860
+#: ../../include/functions_reporting.php:4863
+#: ../../include/functions_reporting.php:4868
+#: ../../include/functions_reporting.php:4869
+#: ../../include/functions_reporting.php:4872
+#: ../../enterprise/include/class/Aws.cloud.php:347
+#: ../../enterprise/include/functions_ipam.php:1597
+#: ../../enterprise/godmode/setup/setup_acl.php:475
+#: ../../enterprise/godmode/setup/setup_acl.php:479
+#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:34
+#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:35
+#: ../../extensions/api_checker.php:176
+#: ../../godmode/snmpconsole/snmp_alert.php:33
+#: ../../godmode/users/configure_user.php:1116
+#: ../../godmode/groups/configure_group.php:250
+msgid "Other"
+msgstr ""
+
+#: ../../operation/gis_maps/render_view.php:170
+msgid "Filter by status"
+msgstr ""
+
+#: ../../operation/gis_maps/render_view.php:173
+#: ../../operation/agentes/estado_agente.php:201
+#: ../../enterprise/include/functions_policies.php:3712
+#: ../../enterprise/meta/general/main_menu.php:577
+#: ../../enterprise/meta/general/main_menu.php:607
+#: ../../enterprise/meta/general/logon_ok.php:99
+#: ../../enterprise/godmode/servers/HA_cluster.php:70
+#: ../../enterprise/godmode/policies/configure_policy.php:38
+#: ../../godmode/menu.php:309 ../../godmode/menu.php:316
+#: ../../godmode/agentes/configurar_agente.php:390
+#: ../../godmode/agentes/configurar_agente.php:695
+#: ../../godmode/module_library/module_library_view.php:48
+msgid "Setup"
+msgstr ""
+
+#: ../../operation/gis_maps/render_view.php:178
+#: ../../include/lib/Dashboard/Widgets/network_map.php:323
+#: ../../enterprise/extensions/vmware/vmware_view.php:1306
+#: ../../enterprise/extensions/vmware/vmware_view.php:1348
+msgid "Map"
+msgstr ""
+
+#: ../../operation/search_users.php:43
+#: ../../operation/snmpconsole/snmp_view.php:876
+#: ../../operation/users/user_edit.php:258
+#: ../../include/functions_reporting_html.php:4969
+#: ../../include/functions_reporting_html.php:6167
+#: ../../include/functions_reporting_html.php:6190
+#: ../../enterprise/include/functions_reporting_csv.php:2549
+#: ../../enterprise/include/functions_reporting_csv.php:2559
+#: ../../godmode/users/user_list.php:479
+#: ../../godmode/users/configure_user.php:852
+#: ../../godmode/users/configure_user.php:868
+msgid "User ID"
+msgstr ""
+
+#: ../../operation/search_users.php:45 ../../include/functions_cron.php:575
+#: ../../include/functions_cron.php:666
+#: ../../enterprise/operation/reporting/custom_reporting.php:20
+#: ../../enterprise/include/functions_tasklist.php:254
+#: ../../enterprise/include/functions_tasklist.php:341
+#: ../../enterprise/godmode/setup/setup_auth.php:99
+#: ../../godmode/tag/edit_tag.php:239 ../../godmode/tag/tag.php:281
+msgid "Email"
+msgstr ""
+
+#: ../../operation/search_users.php:47
+msgid "Profile"
+msgstr ""
+
+#: ../../operation/search_users.php:62
+#: ../../enterprise/extensions/disabled/check_acls.php:63
+#: ../../enterprise/extensions/disabled/check_acls.php:150
+#: ../../enterprise/godmode/setup/setup_metaconsole.php:276
+#: ../../enterprise/godmode/servers/HA_cluster.php:177
+#: ../../godmode/users/user_list.php:483 ../../godmode/users/user_list.php:664
+msgid "Admin"
+msgstr ""
+
+#: ../../operation/search_users.php:63 ../../godmode/users/user_list.php:665
+#: ../../godmode/users/configure_user.php:984
+msgid "Administrator"
+msgstr ""
+
+#: ../../operation/search_users.php:72
+#: ../../godmode/users/configure_user.php:999
+msgid "Standard User"
+msgstr ""
+
+#: ../../operation/search_users.php:87
+#: ../../include/functions_reporting.php:4421
+#: ../../include/functions_reporting.php:4468
+#: ../../godmode/users/user_list.php:723
+msgid "The user doesn't have any assigned profile/group"
+msgstr ""
+
+#: ../../operation/reporting/graph_viewer.php:59
+#: ../../operation/reporting/graph_viewer.php:67
+#: ../../enterprise/tools/ipam/ipam_network_location_config.php:88
+#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:289
+#: ../../enterprise/meta/advanced/metasetup.relations.php:87
+#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:130
+#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:158
+#: ../../enterprise/godmode/reporting/graph_template_list.php:156
+#: ../../enterprise/godmode/reporting/graph_template_list.php:183
+#: ../../godmode/modules/manage_nc_groups.php:153
+#: ../../godmode/reporting/map_builder.php:210
+#: ../../godmode/reporting/graphs.php:152
+#: ../../godmode/reporting/graphs.php:163
+#: ../../godmode/reporting/graphs.php:214
+#: ../../godmode/events/event_filter.php:70
+#: ../../godmode/events/event_filter.php:97
+#: ../../godmode/netflow/nf_edit.php:105 ../../godmode/netflow/nf_edit.php:138
+#: ../../godmode/netflow/nf_item_list.php:121
+#: ../../godmode/netflow/nf_item_list.php:149
+#: ../../godmode/agentes/planned_downtime.list.php:243
+msgid "Not deleted. Error deleting data"
+msgstr ""
+
+#: ../../operation/reporting/graph_viewer.php:182
+#: ../../operation/reporting/graph_viewer.php:214
+#: ../../enterprise/godmode/reporting/graph_template_wizard.php:99
+#: ../../enterprise/godmode/reporting/graph_template_wizard.php:113
+#: ../../enterprise/godmode/reporting/graph_template_list.php:54
+#: ../../enterprise/godmode/reporting/graph_template_list.php:73
+#: ../../enterprise/godmode/reporting/graph_template_list.php:87
+#: ../../godmode/reporting/graphs.php:67 ../../godmode/reporting/graphs.php:81
+#: ../../godmode/reporting/graph_container.php:77
+#: ../../godmode/reporting/graph_builder.php:287
+msgid "Graph list"
+msgstr ""
+
+#: ../../operation/reporting/graph_viewer.php:204
+#: ../../godmode/reporting/graph_builder.php:309
+msgid "Graph editor"
+msgstr ""
+
+#: ../../operation/reporting/graph_viewer.php:223
+#: ../../godmode/reporting/graph_builder.php:320
+msgid "View graph"
+msgstr ""
+
+#: ../../operation/reporting/graph_viewer.php:267
+#: ../../operation/reporting/graph_viewer.php:513
+#: ../../operation/reporting/custom_reporting.php:23
+#: ../../operation/reporting/reporting_viewer.php:211
+#: ../../operation/reporting/reporting_viewer.php:216
+#: ../../operation/reporting/reporting_viewer.php:229
+#: ../../operation/menu.php:311
+#: ../../enterprise/operation/agentes/transactional_map.php:70
+#: ../../enterprise/operation/agentes/manage_transmap_creation.php:169
+#: ../../enterprise/operation/agentes/manage_transmap_creation.php:349
+#: ../../enterprise/operation/agentes/manage_transmap_creation.php:471
+#: ../../enterprise/operation/agentes/manage_transmap.php:172
+#: ../../enterprise/meta/general/logon_ok.php:66
+#: ../../enterprise/godmode/reporting/graph_template_wizard.php:144
+#: ../../enterprise/godmode/reporting/mysql_builder.php:75
+#: ../../enterprise/godmode/reporting/mysql_builder.php:202
+#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:74
+#: ../../enterprise/godmode/reporting/graph_template_editor.php:103
+#: ../../enterprise/godmode/reporting/graph_template_list.php:128
+#: ../../enterprise/godmode/reporting/reporting_builder.template.php:272
+#: ../../enterprise/godmode/reporting/reporting_builder.template.php:285
+#: ../../enterprise/godmode/reporting/reporting_builder.template.php:306
+#: ../../enterprise/godmode/reporting/reporting_builder.template.php:319
+#: ../../enterprise/godmode/reporting/reporting_builder.template.php:340
+#: ../../enterprise/godmode/reporting/reporting_builder.template.php:353
+#: ../../enterprise/godmode/reporting/reporting_builder.template.php:374
+#: ../../enterprise/godmode/reporting/reporting_builder.template.php:387
+#: ../../godmode/reporting/graphs.php:129
+#: ../../godmode/reporting/graph_container.php:118
+#: ../../godmode/reporting/graph_builder.php:366
+#: ../../godmode/reporting/reporting_builder.php:572
+#: ../../godmode/reporting/reporting_builder.php:579
+#: ../../godmode/reporting/reporting_builder.php:592
+#: ../../godmode/reporting/reporting_builder.php:3471
+#: ../../godmode/reporting/reporting_builder.php:3478
+#: ../../godmode/reporting/reporting_builder.php:3491
+#: ../../godmode/reporting/reporting_builder.php:3582
+#: ../../godmode/reporting/reporting_builder.php:3589
+#: ../../godmode/reporting/reporting_builder.php:3605
+#: ../../godmode/reporting/reporting_builder.php:3634
+msgid "Reporting"
+msgstr ""
+
+#: ../../operation/reporting/graph_viewer.php:271 ../../operation/menu.php:327
+#: ../../enterprise/godmode/reporting/graph_template_wizard.php:148
+#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:78
+#: ../../enterprise/godmode/reporting/graph_template_editor.php:107
+#: ../../enterprise/godmode/reporting/graph_template_list.php:132
+#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:373
+#: ../../godmode/reporting/graphs.php:133
+#: ../../godmode/reporting/graph_container.php:122
+#: ../../godmode/reporting/graph_builder.php:370
+msgid "Custom graphs"
+msgstr ""
+
+#: ../../operation/reporting/graph_viewer.php:335
+msgid "No data."
+msgstr ""
+
+#: ../../operation/reporting/graph_viewer.php:360
+#: ../../operation/agentes/graphs.php:218
+#: ../../operation/agentes/stat_win.php:338
+#: ../../operation/agentes/stat_win.php:441
+#: ../../operation/agentes/interface_traffic_graph_win.php:213
+msgid "Time range"
+msgstr ""
+
+#: ../../operation/reporting/graph_viewer.php:369
+#: ../../operation/reporting/graph_viewer.php:391
+msgid "Graph defined"
+msgstr ""
+
+#: ../../operation/reporting/graph_viewer.php:370
+#: ../../operation/agentes/graphs.php:236
+#: ../../operation/agentes/graphs.php:243
+#: ../../operation/agentes/graphs.php:409
+#: ../../operation/agentes/graphs.php:428
+#: ../../include/functions_visual_map_editor.php:558
+#: ../../include/lib/Dashboard/Widgets/custom_graph.php:315
+#: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:652
+#: ../../enterprise/meta/advanced/metasetup.visual.php:348
+#: ../../enterprise/godmode/reporting/graph_template_editor.php:245
+#: ../../godmode/setup/setup_visuals.php:902
+#: ../../godmode/setup/setup_visuals.php:919
+#: ../../godmode/reporting/create_container.php:358
+#: ../../godmode/reporting/graph_builder.main.php:214
+msgid "Area"
+msgstr ""
+
+#: ../../operation/reporting/graph_viewer.php:371
+#: ../../include/lib/Dashboard/Widgets/custom_graph.php:316
+#: ../../enterprise/godmode/reporting/graph_template_editor.php:246
+#: ../../godmode/reporting/graph_builder.main.php:215
+msgid "Stacked area"
+msgstr ""
+
+#: ../../operation/reporting/graph_viewer.php:373
+#: ../../include/lib/Dashboard/Widgets/custom_graph.php:318
+#: ../../enterprise/godmode/reporting/graph_template_editor.php:248
+#: ../../godmode/reporting/graph_builder.main.php:217
+msgid "Stacked line"
+msgstr ""
+
+#: ../../operation/reporting/graph_viewer.php:374
+#: ../../include/lib/Dashboard/Widgets/custom_graph.php:319
+#: ../../godmode/reporting/graph_builder.main.php:218
+msgid "Bullet chart"
+msgstr ""
+
+#: ../../operation/reporting/graph_viewer.php:375
+#: ../../include/lib/Dashboard/Widgets/custom_graph.php:320
+#: ../../godmode/reporting/graph_builder.main.php:219
+msgid "Gauge"
+msgstr ""
+
+#: ../../operation/reporting/graph_viewer.php:376
+#: ../../include/lib/Dashboard/Widgets/custom_graph.php:321
+msgid "Horizontal Bars"
+msgstr ""
+
+#: ../../operation/reporting/graph_viewer.php:377
+#: ../../include/lib/Dashboard/Widgets/custom_graph.php:322
+msgid "Vertical Bars"
+msgstr ""
+
+#: ../../operation/reporting/graph_viewer.php:378
+#: ../../include/lib/Dashboard/Widgets/custom_graph.php:323
+#: ../../godmode/reporting/graph_builder.main.php:222
+msgid "Pie"
+msgstr ""
+
+#: ../../operation/reporting/graph_viewer.php:383
+msgid "Equalize maxiddmum thresholds"
+msgstr ""
+
+#: ../../operation/reporting/graph_viewer.php:383
+msgid ""
+"If an option is selected, all graphs will have the highest value from all "
+"modules included in the graph as a maximum threshold"
+msgstr ""
+
+#: ../../operation/reporting/graph_viewer.php:392
+msgid "Zoom x1"
+msgstr ""
+
+#: ../../operation/reporting/graph_viewer.php:393
+msgid "Zoom x2"
+msgstr ""
+
+#: ../../operation/reporting/graph_viewer.php:394
+msgid "Zoom x3"
+msgstr ""
+
+#: ../../operation/reporting/graph_viewer.php:505
+#: ../../operation/reporting/reporting_viewer.php:426
+msgid "Invalid date selected"
+msgstr ""
+
+#: ../../operation/reporting/graph_viewer.php:513
+msgid "Custom graph viewer"
+msgstr ""
+
+#: ../../operation/reporting/graph_viewer.php:524
+#: ../../operation/search_graphs.php:30
+#: ../../include/functions_container.php:146
+#: ../../godmode/reporting/graphs.php:310
+msgid "Graph name"
+msgstr ""
+
+#: ../../operation/reporting/graph_viewer.php:539
+#: ../../operation/reporting/custom_reporting.php:28
+msgid "There are no defined reportings"
+msgstr ""
+
+#: ../../operation/reporting/custom_reporting.php:23
+#: ../../operation/menu.php:318
+#: ../../godmode/reporting/reporting_builder.php:551
+#: ../../godmode/reporting/reporting_builder.php:3450
+msgid "Custom reporting"
+msgstr ""
+
+#: ../../operation/reporting/reporting_viewer.php:101
+#: ../../godmode/reporting/reporting_builder.php:210
+msgid "Your report has been planned, and the system will email you a "
+msgstr ""
+
+#: ../../operation/reporting/reporting_viewer.php:102
+#: ../../godmode/reporting/reporting_builder.php:211
+msgid "An error has ocurred"
+msgstr ""
+
+#: ../../operation/reporting/reporting_viewer.php:119
+#: ../../godmode/netflow/nf_item_list.php:27
+msgid "Report list"
+msgstr ""
+
+#: ../../operation/reporting/reporting_viewer.php:148
+#: ../../enterprise/godmode/reporting/reporting_builder.template.php:162
+#: ../../enterprise/godmode/reporting/reporting_builder.template.php:205
+#: ../../godmode/reporting/reporting_builder.php:3533
+msgid "List items"
+msgstr ""
+
+#: ../../operation/reporting/reporting_viewer.php:157
+#: ../../enterprise/include/functions_reporting.php:8026
+#: ../../enterprise/include/functions_reporting.php:8092
+#: ../../enterprise/godmode/reporting/reporting_builder.template.php:151
+#: ../../enterprise/godmode/reporting/reporting_builder.template.php:218
+#: ../../godmode/reporting/reporting_builder.php:3537
+msgid "Item editor"
+msgstr ""
+
+#: ../../operation/reporting/reporting_viewer.php:173
+#: ../../godmode/reporting/reporting_builder.php:3554
+msgid "View report"
+msgstr ""
+
+#: ../../operation/reporting/reporting_viewer.php:233
+#: ../../enterprise/godmode/reporting/reporting_builder.template.php:289
+#: ../../enterprise/godmode/reporting/reporting_builder.template.php:323
+#: ../../enterprise/godmode/reporting/reporting_builder.template.php:357
+#: ../../enterprise/godmode/reporting/reporting_builder.template.php:391
+#: ../../godmode/reporting/reporting_builder.php:596
+#: ../../godmode/reporting/reporting_builder.php:3495
+#: ../../godmode/reporting/reporting_builder.php:3609
+#: ../../godmode/reporting/reporting_builder.php:3638
+msgid "Custom reports"
+msgstr ""
+
+#: ../../operation/reporting/reporting_viewer.php:249
+msgid "View Report"
+msgstr ""
+
+#: ../../operation/reporting/reporting_viewer.php:291
+msgid "Set initial date"
+msgstr ""
+
+#: ../../operation/reporting/reporting_viewer.php:304
+#: ../../operation/agentes/gis_view.php:220
+#: ../../include/rest-api/index.php:359
+#: ../../include/rest-api/models/VisualConsole/Items/ColorCloud.php:449
+#: ../../include/rest-api/models/VisualConsole/Items/ColorCloud.php:510
+#: ../../include/functions_reporting_html.php:147
+#: ../../include/functions_reporting_html.php:2896
+#: ../../include/functions_reporting_html.php:3701
+#: ../../enterprise/include/functions_reporting_csv.php:715
+#: ../../enterprise/include/functions_reporting_csv.php:951
+#: ../../enterprise/include/functions_reporting_csv.php:1325
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2331
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2335
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3335
+#: ../../enterprise/include/functions_reporting_pdf.php:1794
+#: ../../enterprise/include/functions_reporting_pdf.php:1867
+#: ../../enterprise/include/functions_reporting_pdf.php:1982
+#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:127
+#: ../../enterprise/godmode/policies/policy_external_alerts.php:467
+#: ../../enterprise/godmode/policies/policy_alerts.php:436
+#: ../../godmode/agentes/planned_downtime.list.php:293
+#: ../../godmode/alerts/alert_list.list.php:644
+#: ../../godmode/alerts/alert_list.list.php:647
+#: ../../godmode/alerts/alert_templates.php:96
+msgid "From"
+msgstr ""
+
+#: ../../operation/reporting/reporting_viewer.php:307
+#: ../../include/functions_reporting_html.php:150
+#: ../../enterprise/include/functions_reporting_pdf.php:1808
+msgid "Items period before"
+msgstr ""
+
+#: ../../operation/reporting/reporting_viewer.php:308
+#: ../../include/ajax/alert_list.ajax.php:514
+#: ../../include/class/AgentsAlerts.class.php:316
+#: ../../include/functions_reporting.php:14048
+#: ../../include/functions_reporting_html.php:148
+#: ../../include/functions_reporting_html.php:2901
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1016
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2331
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2335
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2492
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3337
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3466
+#: ../../enterprise/include/functions_reporting_pdf.php:1800
+#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:129
+#: ../../enterprise/godmode/agentes/manage_config_remote.php:108
+#: ../../enterprise/godmode/policies/policy_external_alerts.php:467
+#: ../../enterprise/godmode/policies/policy_external_alerts.php:602
+#: ../../enterprise/godmode/policies/policy_alerts.php:436
+#: ../../enterprise/godmode/policies/policy_alerts.php:600
+#: ../../godmode/massive/massive_add_action_alerts.php:254
+#: ../../godmode/alerts/alert_list.list.php:644
+#: ../../godmode/alerts/alert_list.list.php:764
+#: ../../godmode/alerts/alert_list.builder.php:129
+#: ../../godmode/alerts/alert_templates.php:98
+msgid "to"
+msgstr ""
+
+#: ../../operation/reporting/reporting_viewer.php:321
+msgid "Invalid date selected. Initial date must be before end date."
+msgstr ""
+
+#: ../../operation/menu.php:37 ../../operation/heatmap.php:137
+#: ../../operation/agentes/status_monitor.php:108
+#: ../../operation/agentes/alerts_status.php:204
+#: ../../operation/agentes/group_view.php:102
+#: ../../operation/agentes/interface_view.php:76
+#: ../../operation/agentes/tactical.php:82
+#: ../../operation/agentes/estado_agente.php:228
+#: ../../include/class/AgentsAlerts.class.php:754
+#: ../../enterprise/operation/agentes/tag_view.php:54
+#: ../../extensions/realtime_graphs.php:71
+#: ../../extensions/module_groups.php:264
+#: ../../extensions/agents_modules.php:478
+msgid "Views"
+msgstr ""
+
+#: ../../operation/menu.php:45 ../../operation/agentes/tactical.php:69
+#: ../../operation/users/user_edit.php:360
+#: ../../include/lib/Dashboard/Widgets/tactical.php:176
+#: ../../include/lib/Dashboard/Widgets/tactical.php:482
+#: ../../enterprise/meta/general/main_menu.php:194
+#: ../../enterprise/meta/general/main_header.php:103
+#: ../../enterprise/meta/monitoring/tactical.php:63
+#: ../../mobile/operation/home.php:45 ../../mobile/operation/tactical.php:97
+#: ../../godmode/users/configure_user.php:1113
+msgid "Tactical view"
+msgstr ""
+
+#: ../../operation/menu.php:48 ../../operation/agentes/group_view.php:89
+#: ../../operation/users/user_edit.php:359
+#: ../../enterprise/meta/monitoring/group_view.php:72
+#: ../../godmode/users/configure_user.php:1112
+#: ../../godmode/groups/group_list.php:321
+msgid "Group view"
+msgstr ""
+
+#: ../../operation/menu.php:54 ../../operation/agentes/estado_agente.php:215
+#: ../../godmode/agentes/agent_manager.php:226
+msgid "Agent detail"
+msgstr ""
+
+#: ../../operation/menu.php:58 ../../operation/agentes/status_monitor.php:95
+msgid "Monitor detail"
+msgstr ""
+
+#: ../../operation/menu.php:61 ../../operation/agentes/interface_view.php:63
+msgid "Interface view"
+msgstr ""
+
+#: ../../operation/menu.php:66 ../../operation/agentes/alerts_status.php:191
+#: ../../operation/users/user_edit.php:361
+#: ../../godmode/users/configure_user.php:1114
+msgid "Alert detail"
+msgstr ""
+
+#: ../../operation/menu.php:69 ../../operation/heatmap.php:92
+msgid "Heatmap view"
+msgstr ""
+
+#: ../../operation/menu.php:78 ../../include/functions_ui.php:870
+#: ../../enterprise/tools/ipam/ipam_supernet_network.php:58
+#: ../../enterprise/tools/ipam/ipam_supernet_network.php:83
+#: ../../enterprise/tools/ipam/ipam_vlan_network.php:63
+#: ../../enterprise/tools/ipam/ipam_calculator.php:185
+#: ../../enterprise/tools/ipam/ipam_list.php:570
+#: ../../enterprise/tools/ipam/ipam_editor.php:122
+#: ../../enterprise/include/ajax/ipam.ajax.php:614
+#: ../../enterprise/include/ajax/ipam.ajax.php:644
+#: ../../enterprise/include/functions_ipam.php:1980
+#: ../../godmode/wizards/HostDevices.class.php:916
+#: ../../godmode/wizards/DiscoveryTaskList.class.php:597
+msgid "Network"
+msgstr ""
+
+#: ../../operation/menu.php:92 ../../operation/netflow/netflow_explorer.php:37
+msgid "Netflow explorer"
+msgstr ""
+
+#: ../../operation/menu.php:96
+msgid "Netflow Live View"
+msgstr ""
+
+#: ../../operation/menu.php:106
+#: ../../operation/network/network_usage_map.php:29
+msgid "Network usage map"
+msgstr ""
+
+#: ../../operation/menu.php:125 ../../include/functions_menu.php:531
+#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:461
+msgid "SNMP console"
+msgstr ""
+
+#: ../../operation/menu.php:126
+msgid "SNMP browser"
+msgstr ""
+
+#: ../../operation/menu.php:131
+#: ../../operation/snmpconsole/snmp_mib_uploader.php:47
+msgid "MIB uploader"
+msgstr ""
+
+#: ../../operation/menu.php:135
+msgid "SNMP filters"
+msgstr ""
+
+#: ../../operation/menu.php:136 ../../include/functions_menu.php:530
+msgid "SNMP trap generator"
+msgstr ""
+
+#: ../../operation/menu.php:141
+#: ../../operation/snmpconsole/snmp_statistics.php:102
+#: ../../operation/snmpconsole/snmp_view.php:697
+#: ../../operation/snmpconsole/snmp_view.php:806
+msgid "SNMP"
+msgstr ""
+
+#: ../../operation/menu.php:165
+#: ../../include/lib/Dashboard/Widgets/network_map.php:172
+#: ../../include/lib/Dashboard/Widgets/network_map.php:478
+msgid "Network map"
+msgstr ""
+
+#: ../../operation/menu.php:239 ../../operation/menu.php:241
+#: ../../operation/snmpconsole/snmp_view.php:1061
+#: ../../operation/snmpconsole/snmp_view.php:1062
+#: ../../operation/events/events.build_table.php:843
+#: ../../operation/events/events.php:2022
+#: ../../operation/events/events.php:2188
+#: ../../include/functions_events.php:7280
+#: ../../enterprise/operation/agentes/wux_console_view.php:595
+msgid "Show more"
+msgstr ""
+
+#: ../../operation/menu.php:265
+msgid "List of Gis maps"
+msgstr ""
+
+#: ../../operation/menu.php:339 ../../operation/users/user_edit.php:363
+#: ../../include/class/OrderInterpreter.class.php:219
+#: ../../enterprise/extensions/vmware/vmware_view.php:1316
+#: ../../enterprise/extensions/vmware/vmware_view.php:1353
+#: ../../mobile/include/functions_web.php:22
+#: ../../godmode/users/configure_user.php:1119
+msgid "Dashboard"
+msgstr ""
+
+#: ../../operation/menu.php:373 ../../operation/events/events.php:946
+#: ../../operation/events/events.php:959
+#: ../../include/functions_reports.php:864
+#: ../../include/functions_reports.php:868
+#: ../../include/functions_reports.php:872 ../../include/functions.php:4086
+#: ../../enterprise/tools/ipam/ipam_massive.php:103
+#: ../../enterprise/tools/ipam/ipam_network.php:399
+#: ../../enterprise/include/class/CommandCenter.class.php:1071
+#: ../../enterprise/meta/general/main_menu.php:257
+#: ../../enterprise/meta/general/logon_ok.php:57
+#: ../../enterprise/meta/general/main_header.php:154
+#: ../../enterprise/meta/monitoring/tactical.php:272
+#: ../../mobile/operation/home.php:51 ../../mobile/operation/events.php:609
+#: ../../mobile/include/functions_web.php:25 ../../godmode/menu.php:269
+msgid "Events"
+msgstr ""
+
+#: ../../operation/menu.php:379
+#: ../../enterprise/meta/event/custom_events.php:38
+#: ../../enterprise/godmode/reporting/graph_template_editor.php:255
+#: ../../godmode/users/configure_profile.php:298
+msgid "View events"
+msgstr ""
+
+#: ../../operation/menu.php:416
+msgid "RSS"
+msgstr ""
+
+#: ../../operation/menu.php:425 ../../operation/events/sound_events.php:64
+msgid "Sound Events"
+msgstr ""
+
+#: ../../operation/menu.php:443 ../../operation/events/events.php:968
+msgid "Sound Alerts"
+msgstr ""
+
+#: ../../operation/menu.php:465
+msgid "Configure user notifications"
+msgstr ""
+
+#: ../../operation/menu.php:485
+msgid "Integria IMS statistics"
+msgstr ""
+
+#: ../../operation/menu.php:486
+msgid "Integria IMS ticket list"
+msgstr ""
+
+#: ../../operation/menu.php:499
+msgid "Messages List"
+msgstr ""
+
+#: ../../operation/menu.php:500
+msgid "New message"
+msgstr ""
+
+#: ../../operation/menu.php:515 ../../operation/agentes/exportdata.php:34
+msgid "Export data"
+msgstr ""
+
+#: ../../operation/menu.php:521
+msgid "Scheduled downtime"
+msgstr ""
+
+#: ../../operation/menu.php:595
+msgid "Tools"
+msgstr ""
+
+#: ../../operation/search_maps.php:30
+#: ../../enterprise/godmode/services/services.elements.php:778
+msgid "Elements"
+msgstr ""
+
+#: ../../operation/network/network_report.php:67
+#: ../../operation/network/network_usage_map.php:124
+msgid "Data to show"
+msgstr ""
+
+#: ../../operation/network/network_report.php:78
+#: ../../operation/network/network_usage_map.php:104
+msgid "Number of result to show"
+msgstr ""
+
+#: ../../operation/network/network_report.php:102
+#: ../../operation/network/network_usage_map.php:75
+#: ../../operation/netflow/nf_live_view.php:263
+#: ../../enterprise/operation/log/log_viewer.php:552
+msgid "Start date"
+msgstr ""
+
+#: ../../operation/network/network_report.php:109
+#: ../../operation/network/network_usage_map.php:82
+msgid "Time Period"
+msgstr ""
+
+#: ../../operation/network/network_report.php:121
+#: ../../operation/network/network_usage_map.php:94
+#: ../../operation/netflow/nf_live_view.php:284
+msgid "Select this checkbox to write interval instead a date."
+msgstr ""
+
+#: ../../operation/network/network_report.php:126
+#: ../../operation/network/network_usage_map.php:99
+#: ../../operation/netflow/nf_live_view.php:287
+#: ../../operation/agentes/exportdata.php:347
+#: ../../enterprise/operation/log/log_viewer.php:579
+msgid "End date"
+msgstr ""
+
+#: ../../operation/network/network_report.php:140
+#: ../../operation/incidents/list_integriaims_incidents.php:428
+#: ../../include/class/ModuleTemplates.class.php:934
+#: ../../include/graphs/functions_flot.php:377
+#: ../../enterprise/operation/log/log_viewer.php:805
+#: ../../enterprise/operation/reporting/custom_reporting.php:80
+#: ../../enterprise/include/functions_ipam.php:339
+#: ../../enterprise/meta/monitoring/custom_fields_view.php:319
+#: ../../enterprise/godmode/reporting/reporting_builder.template.php:597
+#: ../../godmode/modules/manage_network_templates.php:288
+#: ../../godmode/agentes/planned_downtime.list.php:860
+msgid "Export to CSV"
+msgstr ""
+
+#: ../../operation/network/network_report.php:184
+#: ../../include/functions_visual_map_editor.php:1460
+#: ../../include/ajax/heatmap.ajax.php:319
+#: ../../include/class/AuditLog.class.php:194
+#: ../../include/functions_reporting_html.php:3014
+#: ../../include/functions_reporting_html.php:3340
+#: ../../enterprise/include/functions_reporting_csv.php:1933
+#: ../../enterprise/include/class/Aws.cloud.php:546
+#: ../../enterprise/include/class/Aws.S3.php:564
+#: ../../enterprise/include/class/VMware.app.php:621
+#: ../../enterprise/include/class/Azure.cloud.php:803
+#: ../../enterprise/include/class/DeploymentCenter.class.php:755
+#: ../../enterprise/include/class/DeploymentCenter.class.php:805
+#: ../../enterprise/include/class/DeploymentCenter.class.php:1280
+#: ../../enterprise/include/class/DeploymentCenter.class.php:1397
+#: ../../enterprise/include/functions_reporting.php:2315
+#: ../../enterprise/include/functions_ipam.php:1646
+#: ../../enterprise/include/functions_ipam.php:1647
+#: ../../enterprise/meta/monitoring/custom_fields_csv.php:100
+#: ../../enterprise/godmode/servers/HA_cluster.php:161
+#: ../../extensions/users_connected.php:144
+#: ../../extensions/api_checker.php:123
+#: ../../godmode/reporting/visual_console_builder.elements.php:790
+#: ../../godmode/reporting/reporting_builder.item_editor.php:70
+msgid "IP"
+msgstr ""
+
+#: ../../operation/network/network_report.php:186
+#: ../../operation/network/network_report.php:233
+msgid "Flows"
+msgstr ""
+
+#: ../../operation/network/network_report.php:197
+#: ../../operation/network/network_report.php:235
+msgid "Packets"
+msgstr ""
+
+#: ../../operation/network/network_report.php:206
+#: ../../operation/network/network_report.php:236
+#: ../../include/functions_config.php:1001
+#: ../../include/functions_config.php:3098
+#: ../../include/functions_netflow.php:349
+#: ../../enterprise/include/functions_reporting_csv.php:2808
+msgid "Bytes"
+msgstr ""
+
+#: ../../operation/network/network_report.php:256
+#, php-format
+msgid "Filtered by port %s. Click here to remove the filter."
+msgstr ""
+
+#: ../../operation/network/network_report.php:256
+#, php-format
+msgid "Filtered by IP %s. Click here to remove the filter."
+msgstr ""
+
+#: ../../operation/network/network_report.php:324
+#: ../../include/functions_netflow.php:2078
+#: ../../include/functions_visual_map.php:2866
+#: ../../godmode/setup/performance.php:701
+msgid "Others"
+msgstr ""
+
+#: ../../operation/network/network_usage_map.php:139
+msgid "Show netflow map"
+msgstr ""
+
+#: ../../operation/network/network_usage_map.php:175
+msgid "No data retrieved"
+msgstr ""
+
+#: ../../operation/snmpconsole/snmp_mib_uploader.php:60
+#: ../../operation/snmpconsole/snmp_browser.php:90
+#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:57
+#: ../../godmode/snmpconsole/snmp_filters.php:59
+#: ../../godmode/snmpconsole/snmp_trap_generator.php:51
+msgid "SMNP"
+msgstr ""
+
+#: ../../operation/snmpconsole/snmp_mib_uploader.php:86
+msgid ""
+"MIB files will be installed on the system. Please note that a MIB may depend "
+"on other MIB. To customize trap definitions use the SNMP trap editor."
+msgstr ""
+
+#: ../../operation/snmpconsole/snmp_browser.php:56
+#: ../../operation/snmpconsole/snmp_statistics.php:45
+#: ../../operation/snmpconsole/snmp_view.php:118
+#: ../../operation/agentes/networkmap.dinamic.php:102
+#: ../../operation/agentes/pandora_networkmap.view.php:2266
+msgid "Normal screen"
+msgstr ""
+
+#: ../../operation/snmpconsole/snmp_browser.php:77
+msgid "SNMP Browser"
+msgstr ""
+
+#: ../../operation/snmpconsole/snmp_browser.php:155
+#: ../../operation/snmpconsole/snmp_browser.php:175
+#: ../../godmode/modules/manage_network_templates_form.php:260
+msgid "Add modules"
+msgstr ""
+
+#: ../../operation/snmpconsole/snmp_browser.php:218
+msgid "Adding modules in progress"
+msgstr ""
+
+#: ../../operation/snmpconsole/snmp_browser.php:225
+#: ../../godmode/reporting/visual_console_builder.editor.php:167
+#: ../../godmode/reporting/visual_console_builder.editor.php:169
+#: ../../godmode/reporting/visual_console_builder.editor.php:171
+msgid "Action in progress"
+msgstr ""
+
+#: ../../operation/snmpconsole/snmp_browser.php:541
+#: ../../include/functions_snmp_browser.php:1534
+msgid "Create new policy"
+msgstr ""
+
+#: ../../operation/snmpconsole/snmp_browser.php:552
+msgid "Create policy"
+msgstr ""
+
+#: ../../operation/snmpconsole/snmp_browser.php:639
+#: ../../enterprise/meta/monitoring/wizard/wizard.module.web.php:113
+#: ../../enterprise/meta/monitoring/wizard/wizard.module.local.php:122
+#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:330
+#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:42
+#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:119
+#: ../../enterprise/meta/monitoring/wizard/wizard.create_agent.php:40
+#: ../../enterprise/meta/monitoring/wizard/wizard.module.network.php:135
+msgid "Create module"
+msgstr ""
+
+#: ../../operation/snmpconsole/snmp_browser.php:644
+msgid "Are you sure you want add module?"
+msgstr ""
+
+#: ../../operation/snmpconsole/snmp_browser.php:645
+#: ../../operation/agentes/pandora_networkmap.editor.php:602
+#: ../../include/class/ModuleTemplates.class.php:1381
+#: ../../include/class/HelpFeedBack.class.php:369
+#: ../../include/class/AgentWizard.class.php:6008
+#: ../../include/class/WelcomeWindow.class.php:173
+#: ../../include/class/ConfigPEN.class.php:668
+#: ../../include/class/ConfigPEN.class.php:692
+#: ../../include/class/CredentialStore.class.php:1241
+#: ../../include/lib/Dashboard/Widgets/maps_status.php:351
+#: ../../include/functions_db.php:1933
+#: ../../include/functions_reporting_html.php:659
+#: ../../include/functions_reporting_html.php:854
+#: ../../include/functions_reporting_html.php:3252
+#: ../../include/functions_reporting_html.php:4551
+#: ../../enterprise/operation/agentes/wux_console_view.php:424
+#: ../../enterprise/operation/agentes/ux_console_view.php:186
+#: ../../enterprise/operation/agentes/ux_console_view.php:384
+#: ../../enterprise/include/functions_reporting_csv.php:1539
+#: ../../enterprise/include/functions_reporting_csv.php:1585
+#: ../../enterprise/include/functions_reporting_csv.php:1903
+#: ../../enterprise/include/class/AgentRepository.class.php:898
+#: ../../enterprise/include/class/LogSource.class.php:844
+#: ../../enterprise/include/class/ManageBackups.class.php:292
+#: ../../enterprise/include/class/ManageBackups.class.php:445
+#: ../../enterprise/include/class/DeploymentCenter.class.php:1668
+#: ../../enterprise/include/class/DeploymentCenter.class.php:1720
+#: ../../enterprise/include/class/DatabaseHA.class.php:390
+#: ../../enterprise/include/class/DatabaseHA.class.php:625
+#: ../../enterprise/include/class/DatabaseHA.class.php:727
+#: ../../enterprise/include/functions_services.php:2080
+#: ../../enterprise/include/functions_reporting.php:1882
+#: ../../enterprise/include/functions_reporting.php:2929
+#: ../../enterprise/include/functions_reporting.php:3185
+#: ../../enterprise/include/functions_reporting.php:3917
+#: ../../enterprise/include/functions_reporting.php:4186
+#: ../../enterprise/include/functions_reporting.php:4832
+#: ../../enterprise/include/functions_reporting.php:6155
+#: ../../enterprise/include/functions_reporting.php:6193
+#: ../../enterprise/include/functions_ux_console.php:473
+#: ../../enterprise/godmode/services/services.service.php:967
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2557
+#: ../../enterprise/godmode/reporting/reporting_builder.global.php:428
+#: ../../extensions/module_groups.php:53
+#: ../../godmode/setup/setup_general.php:778
+#: ../../godmode/setup/setup_general.php:796
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2553
+#: ../../godmode/massive/massive_operations.php:392
+msgid "OK"
+msgstr ""
+
+#: ../../operation/snmpconsole/snmp_statistics.php:78
+#: ../../operation/snmpconsole/snmp_view.php:99
+#: ../../operation/incidents/incident_statistics.php:21
+#: ../../enterprise/include/functions_ipam.php:1557
+msgid "Statistics"
+msgstr ""
+
+#: ../../operation/snmpconsole/snmp_statistics.php:85
+msgid "SNMP Statistics"
+msgstr ""
+
+#: ../../operation/snmpconsole/snmp_statistics.php:156
+#: ../../operation/snmpconsole/snmp_view.php:720
+msgid "There are no SNMP traps in database"
+msgstr ""
+
+#: ../../operation/snmpconsole/snmp_statistics.php:169
+msgid "Traps received by source"
+msgstr ""
+
+#: ../../operation/snmpconsole/snmp_statistics.php:169
+#: ../../operation/snmpconsole/snmp_statistics.php:237
+#: ../../include/functions_reporting.php:1534
+#: ../../enterprise/include/functions_reporting_csv.php:932
+#, php-format
+msgid "Top %d"
+msgstr ""
+
+#: ../../operation/snmpconsole/snmp_statistics.php:183
+#: ../../operation/snmpconsole/snmp_statistics.php:251
+msgid "Number"
+msgstr ""
+
+#: ../../operation/snmpconsole/snmp_statistics.php:193
+#: ../../operation/snmpconsole/snmp_view.php:956
+#: ../../operation/agentes/estado_agente.php:968
+#: ../../operation/agentes/estado_agente.php:978
+#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:232
+#: ../../enterprise/meta/monitoring/wizard/wizard.agent.php:76
+#: ../../godmode/agentes/configurar_agente.php:841
+#: ../../godmode/agentes/modificar_agente.php:952
+msgid "Create agent"
+msgstr ""
+
+#: ../../operation/snmpconsole/snmp_statistics.php:197
+#: ../../operation/snmpconsole/snmp_view.php:962
+msgid "View agent details"
+msgstr ""
+
+#: ../../operation/snmpconsole/snmp_statistics.php:237
+msgid "Traps received by Enterprise String"
+msgstr ""
+
+#: ../../operation/snmpconsole/snmp_statistics.php:250
+msgid "Trap Enterprise String"
+msgstr ""
+
+#: ../../operation/snmpconsole/snmp_view.php:174
+#: ../../include/class/CalendarManager.class.php:487
+#: ../../include/class/CalendarManager.class.php:840
+#: ../../include/functions_alerts.php:2744
+#: ../../include/functions_planned_downtimes.php:124
+#: ../../enterprise/tools/ipam/ipam_network_location_config.php:71
+#: ../../enterprise/tools/ipam/ipam_massive.php:47
+#: ../../enterprise/tools/ipam/ipam_action.php:255
+#: ../../enterprise/operation/agentes/transactional_map.php:166
+#: ../../enterprise/include/class/NetworkConfigManager.class.php:1784
+#: ../../enterprise/include/class/NetworkConfigManager.class.php:1874
+#: ../../enterprise/include/class/NetworkConfigManager.class.php:1969
+#: ../../enterprise/include/class/NetworkConfigManager.class.php:2063
+#: ../../enterprise/include/class/NetworkConfigManager.class.php:2688
+#: ../../enterprise/meta/advanced/links.php:70
+#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:329
+#: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:69
+#: ../../enterprise/godmode/reporting/reporting_builder.template_editor.php:82
+#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:398
+#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:122
+#: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:111
+#: ../../enterprise/godmode/alerts/alert_inventory_builder.php:132
+#: ../../enterprise/godmode/policies/policy_modules.php:1249
+#: ../../godmode/setup/news.php:107 ../../godmode/setup/gis.php:39
+#: ../../godmode/setup/links.php:63
+#: ../../godmode/modules/manage_nc_groups.php:118
+#: ../../godmode/snmpconsole/snmp_alert.php:419
+#: ../../godmode/snmpconsole/snmp_filters.php:110
+#: ../../godmode/events/event_edit_filter.php:215
+#: ../../godmode/netflow/nf_edit_form.php:139
+#: ../../godmode/massive/massive_edit_modules.php:184
+#: ../../godmode/agentes/status_monitor_custom_fields.php:57
+#: ../../godmode/agentes/configurar_agente.php:1170
+#: ../../godmode/agentes/planned_downtime.editor.php:418
+#: ../../godmode/alerts/configure_alert_template.php:554
+#: ../../godmode/alerts/alert_templates.php:156
+#: ../../godmode/alerts/alert_list.php:94
+#: ../../godmode/alerts/alert_list.php:312
+#: ../../godmode/alerts/configure_alert_command.php:144
+#: ../../godmode/users/profile_list.php:252
+msgid "Successfully updated"
+msgstr ""
+
+#: ../../operation/snmpconsole/snmp_view.php:175
+#: ../../operation/agentes/pandora_networkmap.php:216
+#: ../../operation/agentes/pandora_networkmap.php:508
+#: ../../include/functions_alerts.php:2745
+#: ../../include/functions_planned_downtimes.php:122
+#: ../../enterprise/tools/ipam/ipam_massive.php:48
+#: ../../enterprise/tools/ipam/ipam_action.php:253
+#: ../../enterprise/operation/agentes/transactional_map.php:160
+#: ../../enterprise/include/ajax/servers.ajax.php:331
+#: ../../enterprise/godmode/servers/credential_boxes_satellite.php:112
+#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:330
+#: ../../enterprise/godmode/modules/local_components.php:393
+#: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:70
+#: ../../enterprise/godmode/reporting/reporting_builder.template_editor.php:83
+#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:123
+#: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:112
+#: ../../enterprise/godmode/alerts/alert_inventory_builder.php:133
+#: ../../enterprise/godmode/policies/policy_modules.php:1250
+#: ../../enterprise/godmode/policies/policies.php:212
+#: ../../godmode/setup/gis.php:41
+#: ../../godmode/modules/manage_network_components.php:525
+#: ../../godmode/agentes/status_monitor_custom_fields.php:57
+#: ../../godmode/agentes/planned_downtime.editor.php:408
+#: ../../godmode/alerts/configure_alert_template.php:555
+#: ../../godmode/alerts/alert_templates.php:157
+#: ../../godmode/alerts/alert_list.php:95
+#: ../../godmode/alerts/alert_list.php:313
+#: ../../godmode/alerts/configure_alert_command.php:145
+msgid "Could not be updated"
+msgstr ""
+
+#: ../../operation/snmpconsole/snmp_view.php:228
+#: ../../operation/snmpconsole/snmp_view.php:1263
+#: ../../operation/agentes/alerts_status.functions.php:96
+#: ../../mobile/operation/alerts.php:67
+#: ../../godmode/alerts/alert_list.list.php:138
+msgid "Not fired"
+msgstr ""
+
+#: ../../operation/snmpconsole/snmp_view.php:229
+#: ../../operation/snmpconsole/snmp_view.php:1254
+#: ../../operation/agentes/alerts_status.functions.php:95
+#: ../../include/functions_reporting_html.php:2310
+#: ../../include/functions_reporting_html.php:3135
+#: ../../include/functions_reporting_html.php:3136
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2904
+#: ../../mobile/operation/alerts.php:66
+#: ../../godmode/alerts/alert_list.list.php:137
+msgid "Fired"
+msgstr ""
+
+#: ../../operation/snmpconsole/snmp_view.php:543
+#: ../../operation/snmpconsole/snmp_view.php:886
+#: ../../operation/snmpconsole/snmp_view.php:1246
+#: ../../operation/events/events.build_table.php:253
+#: ../../operation/agentes/estado_monitores.php:522
+#: ../../include/functions_events.php:200
+#: ../../include/functions_events.php:263
+#: ../../include/functions_events.php:2693
+#: ../../include/functions_events.php:6726 ../../include/functions_snmp.php:324
+#: ../../include/functions.php:4093
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:4323
+#: ../../enterprise/meta/include/functions_events_meta.php:94
+#: ../../enterprise/godmode/alerts/alert_inventory_list.php:362
+#: ../../enterprise/godmode/policies/policy_external_alerts.php:382
+#: ../../godmode/events/custom_events.php:105
+#: ../../godmode/agentes/configurar_agente.php:733
+#: ../../godmode/alerts/configure_alert_template.php:1552
+msgid "Alert"
+msgstr ""
+
+#: ../../operation/snmpconsole/snmp_view.php:555
+#: ../../operation/events/events_list.php:852
+#: ../../operation/users/user_edit.php:308
+#: ../../include/functions_config.php:1019
+#: ../../enterprise/meta/include/functions_meta.php:1446
+#: ../../enterprise/meta/advanced/metasetup.visual.php:242
+#: ../../godmode/setup/setup_visuals.php:66
+#: ../../godmode/events/event_edit_filter.php:393
+#: ../../godmode/users/configure_user.php:1183
+msgid "Block size for pagination"
+msgstr ""
+
+#: ../../operation/snmpconsole/snmp_view.php:572
+#: ../../operation/events/events.build_table.php:263
+#: ../../operation/events/events.php:1157
+#: ../../operation/events/events_list.php:953
+#: ../../include/lib/Dashboard/Widgets/events_list.php:393
+#: ../../include/functions_events.php:201
+#: ../../include/functions_events.php:266
+#: ../../include/functions_events.php:2602
+#: ../../include/functions_events.php:5050
+#: ../../include/functions_events.php:6732 ../../include/functions_snmp.php:335
+#: ../../include/functions_reporting_html.php:1050
+#: ../../include/functions_reporting_html.php:1058
+#: ../../include/functions_reporting_html.php:1269
+#: ../../include/functions_reporting_html.php:1277
+#: ../../include/functions_reporting_html.php:2355
+#: ../../enterprise/include/functions_events.php:137
+#: ../../enterprise/include/functions_reporting.php:2025
+#: ../../enterprise/meta/include/functions_events_meta.php:98
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2816
+#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:603
+#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor_form.php:72
+#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:384
+#: ../../mobile/operation/events.php:397 ../../mobile/operation/events.php:398
+#: ../../mobile/operation/events.php:532 ../../mobile/operation/events.php:691
+#: ../../mobile/operation/events.php:692
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2817
+#: ../../godmode/events/event_edit_filter.php:332
+#: ../../godmode/events/custom_events.php:106
+#: ../../godmode/events/event_filter.php:140
+msgid "Severity"
+msgstr ""
+
+#: ../../operation/snmpconsole/snmp_view.php:587
+#: ../../operation/snmpconsole/snmp_view.php:931
+#: ../../operation/snmpconsole/snmp_view.php:1243
+#: ../../include/functions_events.php:6194
+#: ../../include/functions_events.php:6201
+msgid "Not validated"
+msgstr ""
+
+#: ../../operation/snmpconsole/snmp_view.php:588
+#: ../../operation/snmpconsole/snmp_view.php:941
+#: ../../operation/snmpconsole/snmp_view.php:1234
+#: ../../include/functions_events.php:2628
+#: ../../include/functions_events.php:3386
+#: ../../include/functions_events.php:3675
+#: ../../include/functions_events.php:3684
+#: ../../include/functions_events.php:3691
+#: ../../include/functions_events.php:3698
+#: ../../include/functions_events.php:6192
+#: ../../include/functions_events.php:6200
+#: ../../include/functions_graph.php:3326
+msgid "Validated"
+msgstr ""
+
+#: ../../operation/snmpconsole/snmp_view.php:602
+msgid ""
+"Search by any alphanumeric field in the trap.\n"
+"\t\tREMEMBER trap sources need to be searched by IP Address"
+msgstr ""
+
+#: ../../operation/snmpconsole/snmp_view.php:616
+#: ../../operation/events/events.php:1111
+#: ../../operation/events/events.php:1700
+#: ../../operation/events/events_list.php:973
+#: ../../include/class/AuditLog.class.php:187
+#: ../../include/lib/Dashboard/Widgets/top_n_events_by_group.php:270
+#: ../../include/lib/Dashboard/Widgets/top_n_events_by_module.php:270
+#: ../../include/lib/Dashboard/Widgets/events_list.php:336
+#: ../../include/functions_snmp.php:401
+#: ../../enterprise/include/functions_events.php:229
+#: ../../mobile/operation/events.php:706
+#: ../../godmode/events/event_edit_filter.php:404
+msgid "Max. hours old"
+msgstr ""
+
+#: ../../operation/snmpconsole/snmp_view.php:628
+#: ../../include/functions_snmp.php:433
+#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:202
+#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:262
+#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:305
+#: ../../godmode/snmpconsole/snmp_alert.php:780
+#: ../../godmode/snmpconsole/snmp_alert.php:1078
+msgid "Trap type"
+msgstr ""
+
+#: ../../operation/snmpconsole/snmp_view.php:628
+msgid "Search by trap type"
+msgstr ""
+
+#: ../../operation/snmpconsole/snmp_view.php:631
+#: ../../operation/snmpconsole/snmp_view.php:1115
+#: ../../operation/snmpconsole/snmp_view.php:1129
+#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:29
+#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:30
+#: ../../godmode/snmpconsole/snmp_alert.php:28
+msgid "Cold start (0)"
+msgstr ""
+
+#: ../../operation/snmpconsole/snmp_view.php:632
+#: ../../operation/snmpconsole/snmp_view.php:1116
+#: ../../operation/snmpconsole/snmp_view.php:1133
+#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:30
+#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:31
+#: ../../godmode/snmpconsole/snmp_alert.php:29
+msgid "Warm start (1)"
+msgstr ""
+
+#: ../../operation/snmpconsole/snmp_view.php:633
+#: ../../operation/snmpconsole/snmp_view.php:1117
+#: ../../operation/snmpconsole/snmp_view.php:1137
+#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:31
+#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:32
+#: ../../godmode/snmpconsole/snmp_alert.php:30
+msgid "Link down (2)"
+msgstr ""
+
+#: ../../operation/snmpconsole/snmp_view.php:634
+#: ../../operation/snmpconsole/snmp_view.php:1118
+#: ../../operation/snmpconsole/snmp_view.php:1141
+#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:32
+#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:33
+#: ../../godmode/snmpconsole/snmp_alert.php:31
+msgid "Link up (3)"
+msgstr ""
+
+#: ../../operation/snmpconsole/snmp_view.php:635
+#: ../../operation/snmpconsole/snmp_view.php:1119
+#: ../../operation/snmpconsole/snmp_view.php:1145
+#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:33
+#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:34
+#: ../../godmode/snmpconsole/snmp_alert.php:32
+msgid "Authentication failure (4)"
+msgstr ""
+
+#: ../../operation/snmpconsole/snmp_view.php:652
+msgid "Group by Enterprise String/IP"
+msgstr ""
+
+#: ../../operation/snmpconsole/snmp_view.php:653
+#: ../../operation/netflow/nf_live_view.php:452
+#: ../../operation/users/user_edit.php:321 ../../include/functions_cron.php:648
+#: ../../include/functions_snmp.php:390 ../../include/functions_profile.php:276
+#: ../../include/functions_reporting_html.php:1560
+#: ../../enterprise/include/functions_cron.php:757
+#: ../../enterprise/include/functions_reporting_csv.php:1940
+#: ../../enterprise/include/functions_tasklist.php:323
+#: ../../enterprise/include/functions_reporting.php:2337
+#: ../../enterprise/meta/monitoring/wizard/wizard.php:136
+#: ../../enterprise/meta/advanced/metasetup.performance.php:85
+#: ../../enterprise/meta/advanced/metasetup.setup.php:149
+#: ../../enterprise/meta/advanced/metasetup.setup.php:203
+#: ../../enterprise/meta/advanced/metasetup.setup.php:219
+#: ../../enterprise/meta/advanced/metasetup.setup.php:223
+#: ../../enterprise/meta/advanced/metasetup.setup.php:285
+#: ../../enterprise/meta/advanced/metasetup.setup.php:299
+#: ../../enterprise/meta/advanced/metasetup.setup.php:321
+#: ../../enterprise/meta/advanced/metasetup.setup.php:325
+#: ../../enterprise/meta/advanced/metasetup.setup.php:347
+#: ../../enterprise/meta/advanced/metasetup.password.php:80
+#: ../../enterprise/meta/advanced/metasetup.password.php:122
+#: ../../enterprise/meta/advanced/metasetup.password.php:127
+#: ../../enterprise/meta/advanced/metasetup.password.php:133
+#: ../../enterprise/meta/advanced/metasetup.password.php:139
+#: ../../enterprise/meta/advanced/metasetup.password.php:143
+#: ../../enterprise/meta/advanced/metasetup.password.php:147
+#: ../../enterprise/godmode/setup/setup_auth.php:208
+#: ../../enterprise/godmode/setup/setup_auth.php:338
+#: ../../enterprise/godmode/setup/setup_auth.php:386
+#: ../../enterprise/godmode/setup/setup_auth.php:1181
+#: ../../enterprise/godmode/reporting/visual_console_template.php:286
+#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:209
+#: ../../enterprise/godmode/reporting/reporting_builder.template.php:553
+#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:553
+#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:574
+#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:644
+#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:665
+#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:705
+#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:967
+#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1005
+#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1033
+#: ../../godmode/servers/modificar_server.php:47
+#: ../../godmode/update_manager/update_manager.setup.php:371
+#: ../../godmode/reporting/reporting_builder.main.php:194
+#: ../../godmode/reporting/reporting_builder.php:1092
+#: ../../godmode/reporting/visual_console_builder.wizard.php:380
+#: ../../godmode/reporting/visual_console_builder.wizard.php:467
+#: ../../godmode/massive/massive_edit_agents.php:663
+#: ../../godmode/massive/massive_edit_agents.php:986
+#: ../../godmode/massive/massive_edit_agents.php:995
+#: ../../godmode/massive/massive_edit_modules.php:616
+#: ../../godmode/massive/massive_edit_modules.php:638
+#: ../../godmode/massive/massive_edit_modules.php:707
+#: ../../godmode/massive/massive_edit_modules.php:729
+#: ../../godmode/massive/massive_edit_modules.php:769
+#: ../../godmode/massive/massive_edit_modules.php:1043
+#: ../../godmode/massive/massive_edit_modules.php:1081
+#: ../../godmode/massive/massive_edit_modules.php:1109
+#: ../../godmode/agentes/agent_conf_gis.php:125
+#: ../../godmode/alerts/alert_view.php:129
+#: ../../godmode/alerts/alert_view.php:259
+#: ../../godmode/users/configure_user.php:1099
+msgid "Yes"
+msgstr ""
+
+#: ../../operation/snmpconsole/snmp_view.php:654
+#: ../../operation/netflow/nf_live_view.php:462
+#: ../../operation/users/user_edit.php:322 ../../include/functions_cron.php:648
+#: ../../include/functions_events.php:5039
+#: ../../include/functions_events.php:5044 ../../include/functions_snmp.php:382
+#: ../../include/functions_profile.php:276
+#: ../../include/functions_reporting_html.php:1560
+#: ../../enterprise/include/functions_cron.php:756
+#: ../../enterprise/include/functions_reporting_csv.php:1940
+#: ../../enterprise/include/functions_tasklist.php:323
+#: ../../enterprise/include/functions_reporting.php:2337
+#: ../../enterprise/meta/monitoring/wizard/wizard.php:137
+#: ../../enterprise/meta/advanced/metasetup.performance.php:86
+#: ../../enterprise/meta/advanced/metasetup.setup.php:150
+#: ../../enterprise/meta/advanced/metasetup.setup.php:213
+#: ../../enterprise/meta/advanced/metasetup.setup.php:220
+#: ../../enterprise/meta/advanced/metasetup.setup.php:224
+#: ../../enterprise/meta/advanced/metasetup.setup.php:286
+#: ../../enterprise/meta/advanced/metasetup.setup.php:309
+#: ../../enterprise/meta/advanced/metasetup.setup.php:322
+#: ../../enterprise/meta/advanced/metasetup.setup.php:335
+#: ../../enterprise/meta/advanced/metasetup.setup.php:357
+#: ../../enterprise/meta/advanced/metasetup.password.php:81
+#: ../../enterprise/meta/advanced/metasetup.password.php:123
+#: ../../enterprise/meta/advanced/metasetup.password.php:128
+#: ../../enterprise/meta/advanced/metasetup.password.php:134
+#: ../../enterprise/meta/advanced/metasetup.password.php:140
+#: ../../enterprise/meta/advanced/metasetup.password.php:144
+#: ../../enterprise/meta/advanced/metasetup.password.php:148
+#: ../../enterprise/godmode/setup/setup.php:64
+#: ../../enterprise/godmode/setup/setup_auth.php:208
+#: ../../enterprise/godmode/setup/setup_auth.php:341
+#: ../../enterprise/godmode/setup/setup_auth.php:389
+#: ../../enterprise/godmode/setup/setup_auth.php:1184
+#: ../../enterprise/godmode/reporting/visual_console_template.php:286
+#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:211
+#: ../../enterprise/godmode/reporting/reporting_builder.template.php:555
+#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:554
+#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:575
+#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:645
+#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:666
+#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:706
+#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:967
+#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1006
+#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1034
+#: ../../mobile/operation/events.php:195 ../../mobile/operation/events.php:200
+#: ../../godmode/setup/news.php:287
+#: ../../godmode/servers/modificar_server.php:45
+#: ../../godmode/update_manager/update_manager.setup.php:372
+#: ../../godmode/reporting/reporting_builder.main.php:204
+#: ../../godmode/reporting/reporting_builder.php:1094
+#: ../../godmode/reporting/visual_console_builder.wizard.php:390
+#: ../../godmode/reporting/visual_console_builder.wizard.php:468
+#: ../../godmode/massive/massive_edit_agents.php:664
+#: ../../godmode/massive/massive_edit_agents.php:987
+#: ../../godmode/massive/massive_edit_agents.php:996
+#: ../../godmode/massive/massive_edit_modules.php:617
+#: ../../godmode/massive/massive_edit_modules.php:639
+#: ../../godmode/massive/massive_edit_modules.php:708
+#: ../../godmode/massive/massive_edit_modules.php:730
+#: ../../godmode/massive/massive_edit_modules.php:770
+#: ../../godmode/massive/massive_edit_modules.php:1043
+#: ../../godmode/massive/massive_edit_modules.php:1082
+#: ../../godmode/massive/massive_edit_modules.php:1110
+#: ../../godmode/agentes/agent_conf_gis.php:126
+#: ../../godmode/alerts/alert_view.php:129
+#: ../../godmode/alerts/alert_view.php:259
+#: ../../godmode/alerts/alert_view.php:352
+#: ../../godmode/users/configure_user.php:1100
+msgid "No"
+msgstr ""
+
+#: ../../operation/snmpconsole/snmp_view.php:681
+#: ../../operation/snmpconsole/snmp_view.php:789
+#: ../../godmode/snmpconsole/snmp_alert.php:83
+#: ../../godmode/snmpconsole/snmp_alert.php:91
+#: ../../godmode/snmpconsole/snmp_alert.php:99
+#: ../../godmode/snmpconsole/snmp_filters.php:46
+msgid "SNMP Console"
+msgstr ""
+
+#: ../../operation/snmpconsole/snmp_view.php:714
+#: ../../operation/snmpconsole/snmp_view.php:813
+#: ../../operation/agentes/alerts_status.php:501
+#: ../../operation/agentes/graphs.php:269
+#: ../../enterprise/meta/advanced/collections.php:200
+#: ../../enterprise/godmode/alerts/alert_inventory_list.php:174
+#: ../../enterprise/godmode/policies/policy_queue.php:524
+#: ../../enterprise/godmode/policies/policy_queue.php:636
+#: ../../enterprise/godmode/policies/policy_external_alerts.php:373
+#: ../../godmode/snmpconsole/snmp_alert.php:1093
+#: ../../godmode/alerts/alert_list.list.php:178
+#: ../../godmode/users/user_list.php:452
+msgid "Toggle filter(s)"
+msgstr ""
+
+#: ../../operation/snmpconsole/snmp_view.php:718
+msgid "There are no SNMP traps in database that contains this filter"
+msgstr ""
+
+#: ../../operation/snmpconsole/snmp_view.php:758
+msgid "Refresh every"
+msgstr ""
+
+#: ../../operation/snmpconsole/snmp_view.php:770
+msgid "SNMP Traps"
+msgstr ""
+
+#: ../../operation/snmpconsole/snmp_view.php:854
+#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:303
+#: ../../godmode/snmpconsole/snmp_alert.php:743
+#: ../../godmode/snmpconsole/snmp_alert.php:1222
+#: ../../godmode/snmpconsole/snmp_trap_generator.php:125
+msgid "SNMP Agent"
+msgstr ""
+
+#: ../../operation/snmpconsole/snmp_view.php:859
+#: ../../godmode/snmpconsole/snmp_alert.php:730
+#: ../../godmode/snmpconsole/snmp_alert.php:1226
+#: ../../godmode/snmpconsole/snmp_trap_generator.php:105
+msgid "Enterprise String"
+msgstr ""
+
+#: ../../operation/snmpconsole/snmp_view.php:865
+#: ../../include/functions_reporting_html.php:1046
+#: ../../include/functions_reporting_html.php:1270
+#: ../../include/functions_reporting_html.php:2350
+#: ../../enterprise/include/lib/AlertCorrelation.class.php:1086
+msgid "Count"
+msgstr ""
+
+#: ../../operation/snmpconsole/snmp_view.php:871
+msgid "Trap subtype"
+msgstr ""
+
+#: ../../operation/snmpconsole/snmp_view.php:974
+#: ../../operation/snmpconsole/snmp_view.php:994
+#: ../../operation/agentes/status_monitor.php:1711
+#: ../../operation/agentes/interface_view.functions.php:682
+#: ../../operation/agentes/interface_view.functions.php:683
+#: ../../operation/agentes/interface_view.functions.php:684
+#: ../../operation/agentes/interface_view.functions.php:685
+#: ../../operation/agentes/interface_view.functions.php:686
+#: ../../operation/agentes/estado_generalagente.php:219
+#: ../../operation/agentes/estado_generalagente.php:232
+#: ../../operation/agentes/estado_generalagente.php:244
+#: ../../operation/agentes/estado_generalagente.php:392
+#: ../../operation/agentes/estado_generalagente.php:408
+#: ../../operation/agentes/estado_generalagente.php:419
+#: ../../include/ajax/module.php:1168 ../../include/functions_events.php:3809
+#: ../../include/functions_events.php:3959
+#: ../../include/functions_events.php:3980
+#: ../../include/functions_events.php:3985
+#: ../../include/functions_events.php:3998
+#: ../../include/functions_events.php:3999
+#: ../../include/functions_events.php:4011
+#: ../../include/functions_events.php:4062
+#: ../../include/functions_events.php:4089
+#: ../../include/functions_events.php:4145
+#: ../../include/functions_events.php:4162
+#: ../../include/functions_events.php:4169
+#: ../../include/functions_events.php:4235
+#: ../../include/functions_events.php:4307
+#: ../../include/functions_events.php:4446
+#: ../../include/functions_events.php:4485
+#: ../../include/functions_events.php:4499
+#: ../../include/functions_events.php:4504
+#: ../../include/functions_events.php:4534
+#: ../../include/functions_events.php:4627
+#: ../../include/functions_events.php:4707
+#: ../../include/functions_events.php:4717
+#: ../../include/functions_events.php:4934
+#: ../../include/functions_events.php:5011
+#: ../../include/functions_events.php:5100
+#: ../../include/functions_events.php:5129
+#: ../../include/functions_events.php:5144
+#: ../../include/functions_events.php:5154
+#: ../../include/functions_events.php:5164
+#: ../../include/functions_events.php:7442
+#: ../../include/functions_events.php:7461
+#: ../../include/functions_events.php:7466
+#: ../../include/functions_events.php:7473
+#: ../../include/functions_events.php:7486
+#: ../../include/functions_events.php:7499
+#: ../../include/functions_events.php:7511
+#: ../../include/functions_events.php:7564
+#: ../../include/functions_events.php:7591
+#: ../../include/functions_events.php:7616
+#: ../../include/functions_events.php:7660 ../../include/functions_db.php:241
+#: ../../include/functions_servers.php:1362
+#: ../../include/functions_treeview.php:162
+#: ../../include/functions_treeview.php:327
+#: ../../include/functions_treeview.php:423 ../../include/functions_ui.php:2609
+#: ../../include/functions_ui.php:2617 ../../include/functions.php:1124
+#: ../../include/functions.php:1130 ../../include/functions.php:1134
+#: ../../include/functions_reporting_html.php:651
+#: ../../include/functions_reporting_html.php:654
+#: ../../include/functions_reporting_html.php:5228
+#: ../../include/functions_reporting_html.php:5281
+#: ../../enterprise/tools/ipam/ipam_ajax.php:366
+#: ../../enterprise/tools/ipam/ipam_ajax.php:387
+#: ../../enterprise/tools/ipam/ipam_network.php:435
+#: ../../enterprise/tools/ipam/ipam_network.php:515
+#: ../../enterprise/views/cluster/view.php:278
+#: ../../enterprise/views/cluster/view.php:293
+#: ../../enterprise/include/lib/Metaconsole/Node.php:505
+#: ../../enterprise/include/lib/Metaconsole/Node.php:1185
+#: ../../enterprise/include/functions_services.php:1190
+#: ../../enterprise/include/functions_services.php:1371
+#: ../../enterprise/include/functions_services.php:2077
+#: ../../enterprise/include/functions_aws.php:507
+#: ../../enterprise/include/functions_aws.php:508
+#: ../../enterprise/include/functions_reporting.php:6157
+#: ../../enterprise/include/functions_visual_map.php:320
+#: ../../enterprise/include/functions_servicemap.php:471
+#: ../../enterprise/meta/advanced/servers.build_table.php:100
+#: ../../enterprise/meta/advanced/servers.build_table.php:101
+#: ../../enterprise/meta/advanced/servers.build_table.php:107
+#: ../../enterprise/meta/advanced/metasetup.visual.php:895
+#: ../../mobile/operation/agent.php:192 ../../mobile/operation/agent.php:200
+#: ../../mobile/operation/events.php:161 ../../mobile/operation/events.php:167
+#: ../../mobile/operation/events.php:175 ../../mobile/operation/events.php:260
+#: ../../mobile/operation/events.php:290 ../../mobile/operation/events.php:298
+#: ../../godmode/servers/servers.build_table.php:147
+#: ../../godmode/servers/servers.build_table.php:148
+#: ../../godmode/servers/servers.build_table.php:154
+#: ../../godmode/modules/manage_network_components.php:776
+#: ../../godmode/modules/manage_network_components.php:777
+#: ../../godmode/extensions.php:186 ../../godmode/extensions.php:201
+#: ../../godmode/agentes/planned_downtime.list.php:812
+#: ../../godmode/alerts/alert_view.php:135
+msgid "N/A"
+msgstr ""
+
+#: ../../operation/snmpconsole/snmp_view.php:1018
+#: ../../operation/events/sound_events.php:136
+#: ../../operation/agentes/group_view.php:234
+#: ../../include/class/AgentsAlerts.class.php:949
+#: ../../include/functions_events.php:2904
+#: ../../include/functions_events.php:3259
+#: ../../include/functions_agents.php:2939
+#: ../../include/functions_agents.php:2950
+#: ../../include/functions_reporting.php:12325
+#: ../../include/functions_ui.php:1247 ../../include/functions.php:1228
+#: ../../enterprise/operation/agentes/policy_view.php:345
+#: ../../enterprise/meta/monitoring/group_view.php:247
+#: ../../mobile/operation/alerts.php:324
+#: ../../godmode/alerts/alert_list.list.php:559
+#: ../../godmode/alerts/alert_view.php:105
+msgid "Alert fired"
+msgstr ""
+
+#: ../../operation/snmpconsole/snmp_view.php:1020
+#: ../../include/class/AgentsAlerts.class.php:955
+#: ../../include/functions_agents.php:2941
+#: ../../include/functions_agents.php:2952
+#: ../../include/functions_reporting.php:12248
+#: ../../include/functions_ui.php:1253
+#: ../../enterprise/operation/agentes/policy_view.php:351
+#: ../../mobile/operation/alerts.php:330
+#: ../../godmode/alerts/alert_list.list.php:565
+#: ../../godmode/alerts/alert_view.php:111
+msgid "Alert not fired"
+msgstr ""
+
+#: ../../operation/snmpconsole/snmp_view.php:1027
+#: ../../operation/snmpconsole/snmp_view.php:1217
+#: ../../operation/snmpconsole/snmp_view.php:1267
+#: ../../operation/agentes/alerts_status.php:567
+#: ../../operation/agentes/alerts_status.php:604
+#: ../../operation/agentes/alerts_status.php:637
+#: ../../operation/agentes/alerts_status.php:723
+#: ../../include/ajax/alert_list.ajax.php:267
+#: ../../include/ajax/alert_list.ajax.php:293
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3130
+#: ../../enterprise/load_enterprise.php:749
+#: ../../enterprise/godmode/reporting/aws_view.php:181
+#: ../../enterprise/godmode/wizards/Cloud.class.php:325
+#: ../../mobile/operation/events.php:570 ../../godmode/setup/license.php:165
+msgid "Validate"
+msgstr ""
+
+#: ../../operation/snmpconsole/snmp_view.php:1076
+msgid "Variable bindings:"
+msgstr ""
+
+#: ../../operation/snmpconsole/snmp_view.php:1089
+msgid "See more details"
+msgstr ""
+
+#: ../../operation/snmpconsole/snmp_view.php:1101
+msgid "Enterprise String:"
+msgstr ""
+
+#: ../../operation/snmpconsole/snmp_view.php:1107
+#: ../../enterprise/meta/include/functions_autoprovision.php:569
+#: ../../enterprise/meta/advanced/collections.data.php:432
+#: ../../enterprise/godmode/agentes/collections.data.php:523
+msgid "Description:"
+msgstr ""
+
+#: ../../operation/snmpconsole/snmp_view.php:1153
+msgid "Trap type:"
+msgstr ""
+
+#: ../../operation/snmpconsole/snmp_view.php:1179
+msgid "Count:"
+msgstr ""
+
+#: ../../operation/snmpconsole/snmp_view.php:1183
+msgid "First trap:"
+msgstr ""
+
+#: ../../operation/snmpconsole/snmp_view.php:1187
+msgid "Last trap:"
+msgstr ""
+
+#: ../../operation/snmpconsole/snmp_view.php:1208
+msgid "No matching traps found"
+msgstr ""
+
+#: ../../operation/snmpconsole/snmp_view.php:1272
+#: ../../include/functions_reporting_html.php:2003
+#: ../../enterprise/operation/services/services.service_map.php:104
+#: ../../extensions/module_groups.php:391
+#: ../../extensions/agents_modules.php:947
+#: ../../godmode/snmpconsole/snmp_alert.php:1469
+msgid "Legend"
+msgstr ""
+
+#: ../../operation/heatmap.php:70 ../../operation/heatmap.php:279
+#: ../../operation/agentes/pandora_networkmap.php:800
+#: ../../enterprise/operation/services/services.list.php:625
+msgid "Config"
+msgstr ""
+
+#: ../../operation/heatmap.php:96 ../../operation/heatmap.php:98
+#: ../../operation/agentes/status_monitor.php:517
+#: ../../operation/agentes/estado_monitores.php:552
+#: ../../operation/agentes/ver_agente.php:1148
+#: ../../include/ajax/heatmap.ajax.php:190
+#: ../../include/ajax/heatmap.ajax.php:249
+#: ../../include/ajax/heatmap.ajax.php:288
+#: ../../include/functions_events.php:4546
+#: ../../include/functions_treeview.php:122
+#: ../../include/functions_graph.php:5366 ../../include/functions_html.php:1560
+#: ../../enterprise/operation/agentes/tag_view.php:156
+#: ../../enterprise/operation/agentes/ver_agente.php:35
+#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:155
+#: ../../enterprise/godmode/modules/configure_local_component.php:259
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2014
+#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:832
+#: ../../extensions/agents_modules.php:410
+#: ../../mobile/operation/modules.php:183
+#: ../../mobile/operation/modules.php:184
+#: ../../mobile/operation/modules.php:293
+#: ../../mobile/operation/modules.php:294
+#: ../../godmode/modules/manage_network_components_form_common.php:111
+#: ../../godmode/reporting/create_container.php:540
+#: ../../godmode/reporting/reporting_builder.item_editor.php:1538
+#: ../../godmode/massive/massive_edit_modules.php:889
+#: ../../godmode/agentes/module_manager_editor_common.php:265
+msgid "Module group"
+msgstr ""
+
+#: ../../operation/heatmap.php:96
+#: ../../operation/agentes/status_monitor.php:518
+#: ../../include/ajax/heatmap.ajax.php:196
+#: ../../include/functions_treeview.php:116
+#: ../../include/functions_graph.php:5316
+#: ../../enterprise/operation/agentes/tag_view.php:157
+#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:835
+#: ../../godmode/massive/massive_edit_modules.php:892
+#: ../../godmode/agentes/module_manager_editor_common.php:271
+#: ../../godmode/agentes/module_manager_editor_common.php:1188
+msgid "Not assigned"
+msgstr ""
+
+#: ../../operation/heatmap.php:109 ../../operation/agentes/group_view.php:320
+#: ../../include/ajax/heatmap.ajax.php:126
+#: ../../include/ajax/heatmap.ajax.php:296
+#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:330
+#: ../../mobile/operation/modules.php:194
+#: ../../mobile/operation/modules.php:195
+#: ../../mobile/operation/modules.php:308
+#: ../../mobile/operation/modules.php:309
+#: ../../godmode/reporting/create_container.php:566
+#: ../../godmode/reporting/create_container.php:629
+msgid "Tag"
+msgstr ""
+
+#: ../../operation/heatmap.php:173 ../../include/ajax/heatmap.ajax.php:52
+msgid "3 minutes"
+msgstr ""
+
+#: ../../operation/heatmap.php:291
+#: ../../operation/agentes/status_monitor.php:538
+#: ../../operation/agentes/interface_view.functions.php:120
+#: ../../operation/agentes/interface_view.functions.php:158
+#: ../../include/class/ConfigPEN.class.php:252
+#: ../../include/class/CredentialStore.class.php:1098
+#: ../../enterprise/operation/agentes/tag_view.php:175
+#: ../../enterprise/include/class/AgentRepository.class.php:771
+#: ../../enterprise/include/class/LogSource.class.php:766
+#: ../../enterprise/include/class/Omnishell.class.php:1124
+#: ../../enterprise/include/class/DeploymentCenter.class.php:1533
+#: ../../enterprise/meta/monitoring/custom_fields_view.php:304
+#: ../../enterprise/extensions/vmware/vmware_view.php:1519
+#: ../../godmode/users/user_list.php:693
+msgid "Show"
+msgstr ""
+
+#: ../../operation/search_agents.php:93
+#: ../../operation/agentes/alerts_status.functions.php:97
+#: ../../operation/agentes/estado_generalagente.php:101
+#: ../../operation/agentes/estado_generalagente.php:103
+#: ../../include/functions_visual_map_editor.php:826
+#: ../../include/functions_treeview.php:72
+#: ../../include/functions_treeview.php:613
+#: ../../include/functions_reporting.php:6321
+#: ../../include/rest-api/models/VisualConsole/Items/StaticGraph.php:397
+#: ../../include/functions_reporting_html.php:3354
+#: ../../enterprise/views/cluster/view.php:162
+#: ../../enterprise/views/cluster/view.php:164
+#: ../../enterprise/include/class/VMware.app.php:888
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3211
+#: ../../enterprise/include/class/DatabaseHA.class.php:211
+#: ../../enterprise/include/lib/NetworkManager.php:190
+#: ../../enterprise/include/functions_policies.php:4780
+#: ../../enterprise/meta/include/functions_wizard_meta.php:243
+#: ../../enterprise/meta/include/functions_wizard_meta.php:528
+#: ../../enterprise/meta/include/functions_wizard_meta.php:600
+#: ../../enterprise/meta/include/functions_wizard_meta.php:1148
+#: ../../enterprise/meta/include/functions_wizard_meta.php:1533
+#: ../../enterprise/meta/include/functions_wizard_meta.php:1626
+#: ../../enterprise/meta/include/functions_wizard_meta.php:1820
+#: ../../enterprise/meta/agentsearch.php:251
+#: ../../enterprise/meta/agentsearch.php:258
+#: ../../enterprise/godmode/setup/edit_skin.php:276
+#: ../../enterprise/godmode/modules/configure_local_component.php:459
+#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:701
+#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:118
+#: ../../enterprise/godmode/policies/policy_agents.php:1736
+#: ../../enterprise/godmode/policies/policy_agents.php:1751
+#: ../../mobile/operation/agent.php:167 ../../mobile/operation/alerts.php:68
+#: ../../godmode/massive/massive_edit_agents.php:917
+#: ../../godmode/massive/massive_edit_agents.php:1017
+#: ../../godmode/massive/massive_edit_modules.php:765
+#: ../../godmode/agentes/module_manager_editor_common.php:257
+#: ../../godmode/agentes/module_manager_editor_common.php:897
+#: ../../godmode/agentes/module_manager_editor_common.php:1059
+#: ../../godmode/agentes/modificar_agente.php:761
+#: ../../godmode/alerts/configure_alert_template.php:899
+#: ../../godmode/alerts/alert_list.list.php:139
+#: ../../godmode/alerts/alert_view.php:541
+#: ../../godmode/groups/group_list.php:908
+msgid "Disabled"
+msgstr ""
+
+#: ../../operation/search_agents.php:100
+#: ../../operation/agentes/estado_agente.php:831
+#: ../../operation/agentes/estado_generalagente.php:112
+#: ../../operation/agentes/estado_generalagente.php:122
+#: ../../include/ajax/module.php:1128 ../../include/class/Tree.class.php:907
+#: ../../enterprise/views/cluster/view.php:168
+#: ../../enterprise/views/cluster/view.php:170
+#: ../../enterprise/godmode/services/services.service.php:738
+#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1028
+#: ../../enterprise/godmode/massive/massive_create_services.php:819
+#: ../../mobile/operation/agent.php:174
+#: ../../godmode/massive/massive_edit_agents.php:990
+#: ../../godmode/massive/massive_edit_modules.php:1104
+#: ../../godmode/agentes/module_manager.php:985
+#: ../../godmode/agentes/module_manager_editor_common.php:1056
+#: ../../godmode/agentes/agent_manager.php:644
+#: ../../godmode/agentes/planned_downtime.editor.php:588
+#: ../../godmode/agentes/planned_downtime.list.php:655
+#: ../../godmode/agentes/modificar_agente.php:775
+msgid "Quiet"
+msgstr ""
+
+#: ../../operation/search_agents.php:111
+#: ../../operation/agentes/estado_agente.php:839
+#: ../../operation/agentes/estado_generalagente.php:133
+#: ../../operation/agentes/estado_generalagente.php:141
+#: ../../enterprise/views/cluster/view.php:178
+#: ../../enterprise/views/cluster/view.php:186
+#: ../../godmode/agentes/modificar_agente.php:783
+msgid "Agent in scheduled downtime"
+msgstr ""
+
+#: ../../operation/search_agents.php:132 ../../operation/search_agents.php:133
+#: ../../operation/agentes/ver_agente.php:1348
+#: ../../enterprise/tools/ipam/ipam.php:426
+#: ../../enterprise/meta/advanced/metasetup.consoles.php:841
+#: ../../enterprise/godmode/agentes/agent_autoconfiguration.php:103
+#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:301
+msgid "Manage"
+msgstr ""
+
+#: ../../operation/events/events_rss.php:195
+msgid "Your IP is not into the IP list with API access."
+msgstr ""
+
+#: ../../operation/events/events_rss.php:214
+msgid "The URL of your feed has bad hash."
+msgstr ""
+
+#: ../../operation/events/sound_events.php:86
+msgid "Sound console"
+msgstr ""
+
+#: ../../operation/events/sound_events.php:145
+#: ../../include/functions_reporting.php:11409
+#: ../../enterprise/meta/monitoring/custom_fields_view.php:452
+msgid "Monitor critical"
+msgstr ""
+
+#: ../../operation/events/sound_events.php:154
+#: ../../include/functions_reporting.php:11424
+#: ../../enterprise/meta/monitoring/custom_fields_view.php:485
+msgid "Monitor unknown"
+msgstr ""
+
+#: ../../operation/events/sound_events.php:163
+#: ../../include/functions_reporting.php:11413
+#: ../../enterprise/meta/monitoring/custom_fields_view.php:463
+msgid "Monitor warning"
+msgstr ""
+
+#: ../../operation/events/sound_events.php:186
+msgid "Event"
+msgstr ""
+
+#: ../../operation/events/events.build_table.php:81
+msgid "More detail"
+msgstr ""
+
+#: ../../operation/events/events.build_table.php:105
+#: ../../operation/events/events.build_table.php:107
+msgid "The Agent: "
+msgstr ""
+
+#: ../../operation/events/events.build_table.php:105
+#: ../../operation/events/events.build_table.php:107
+msgid " has "
+msgstr ""
+
+#: ../../operation/events/events.build_table.php:105
+#: ../../operation/events/events.build_table.php:107
+msgid " events."
+msgstr ""
+
+#: ../../operation/events/events.build_table.php:134
+#: ../../operation/events/events.build_table.php:1164
+#: ../../include/functions_events.php:2575
+#: ../../include/functions_events.php:2578
+#: ../../include/functions_reporting.php:2000
+#: ../../include/functions_reporting.php:2299
+#: ../../include/functions_reporting_html.php:5881
+#: ../../include/functions_reporting_html.php:6066
+#: ../../mobile/operation/events.php:865
+msgid "No events"
+msgstr ""
+
+#: ../../operation/events/events.build_table.php:156
+#: ../../operation/events/events.php:1252
+#: ../../operation/events/events_list.php:821
+#: ../../include/class/AgentWizard.class.php:1181
+#: ../../include/functions_events.php:6657
+#: ../../include/functions_reporting_html.php:2072
+#: ../../enterprise/operation/log/log_viewer.php:613
+#: ../../enterprise/operation/inventory/inventory.php:317
+#: ../../enterprise/include/functions_reporting_csv.php:2733
+#: ../../enterprise/include/class/SAPView.class.php:226
+#: ../../enterprise/include/class/CSVImportAgents.class.php:152
+#: ../../enterprise/include/functions_events.php:283
+#: ../../enterprise/meta/include/functions_wizard_meta.php:174
+#: ../../enterprise/meta/include/functions_wizard_meta.php:1799
+#: ../../enterprise/meta/monitoring/custom_fields_csv.php:101
+#: ../../enterprise/meta/monitoring/custom_fields_view.php:706
+#: ../../enterprise/meta/monitoring/wizard/wizard.manage_alert.php:197
+#: ../../enterprise/meta/advanced/policymanager.queue.php:256
+#: ../../enterprise/meta/agentsearch.php:133
+#: ../../enterprise/meta/agentsearch.php:326
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1962
+#: ../../godmode/modules/manage_network_components.php:749
+#: ../../godmode/reporting/reporting_builder.item_editor.php:1095
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3481
+#: ../../godmode/massive/massive_edit_agents.php:743
+#: ../../godmode/wizards/DiscoveryTaskList.class.php:1043
+#: ../../godmode/agentes/module_manager.php:844
+#: ../../godmode/agentes/agent_manager.php:411
+msgid "Server"
+msgstr ""
+
+#: ../../operation/events/events.build_table.php:162
+#: ../../include/functions_events.php:4978
+#: ../../include/functions_events.php:6669
+#: ../../mobile/operation/events.php:512
+msgid "Event ID"
+msgstr ""
+
+#: ../../operation/events/events.build_table.php:172
+#: ../../include/functions_events.php:233
+#: ../../include/functions_events.php:6675
+#: ../../mobile/operation/events.php:124
+#: ../../godmode/events/custom_events.php:95
+msgid "Event Name"
+msgstr ""
+
+#: ../../operation/events/events.build_table.php:182
+#: ../../operation/events/events.php:1934
+#: ../../include/functions_events.php:193
+#: ../../include/functions_events.php:239
+#: ../../include/functions_events.php:2615
+#: ../../include/functions_events.php:6682
+#: ../../include/functions_treeview.php:617
+#: ../../include/functions_reporting_html.php:3337
+#: ../../enterprise/include/functions_reporting_csv.php:871
+#: ../../enterprise/include/functions_ipam.php:2039
+#: ../../enterprise/meta/include/functions_events_meta.php:66
+#: ../../mobile/operation/modules.php:597
+#: ../../mobile/operation/modules.php:849
+#: ../../godmode/agentes/agent_manager.php:213
+#: ../../godmode/agentes/modificar_agente.php:647
+msgid "Agent name"
+msgstr ""
+
+#: ../../operation/events/events.build_table.php:212
+#: ../../operation/incidents/integriaims_export_csv.php:89
+#: ../../operation/incidents/configure_integriaims_incident.php:312
+#: ../../operation/incidents/list_integriaims_incidents.php:342
+#: ../../operation/incidents/list_integriaims_incidents.php:522
+#: ../../include/functions_events.php:206
+#: ../../include/functions_events.php:281
+#: ../../include/functions_events.php:5009
+#: ../../include/functions_events.php:6701
+#: ../../enterprise/meta/include/functions_events_meta.php:118
+#: ../../mobile/operation/events.php:520
+#: ../../godmode/setup/setup_integria.php:397
+#: ../../godmode/setup/setup_integria.php:519
+#: ../../godmode/events/custom_events.php:111
+msgid "Owner"
+msgstr ""
+
+#: ../../operation/events/events.build_table.php:232
+#: ../../include/functions_events.php:257
+#: ../../godmode/events/custom_events.php:103
+msgid "Event Type"
+msgstr ""
+
+#: ../../operation/events/events.build_table.php:243
+#: ../../include/class/ModuleTemplates.class.php:1207
+#: ../../include/class/AgentWizard.class.php:1180
+#: ../../include/class/AgentWizard.class.php:4015
+#: ../../include/functions_events.php:260
+#: ../../godmode/events/custom_events.php:104
+msgid "Module Name"
+msgstr ""
+
+#: ../../operation/events/events.build_table.php:273
+#: ../../operation/events/events.build_table.php:709
+#: ../../operation/events/events.php:1208
+#: ../../operation/events/events_list.php:1003
+#: ../../include/class/CustomNetScan.class.php:468
+#: ../../include/functions_events.php:202
+#: ../../include/functions_events.php:269
+#: ../../include/functions_events.php:3752
+#: ../../include/functions_events.php:6738
+#: ../../include/functions_events.php:7124
+#: ../../enterprise/meta/include/functions_events_meta.php:102
+#: ../../godmode/events/event_edit_filter.php:633
+#: ../../godmode/events/custom_events.php:107
+#: ../../godmode/wizards/HostDevices.class.php:958
+msgid "Comment"
+msgstr ""
+
+#: ../../operation/events/events.build_table.php:293
+#: ../../operation/events/events.php:1188
+#: ../../operation/events/events_list.php:999
+#: ../../operation/agentes/log_sources_status.php:56
+#: ../../operation/agentes/pandora_networkmap.editor.php:336
+#: ../../operation/agentes/pandora_networkmap.view.php:136
+#: ../../include/functions_events.php:204
+#: ../../include/functions_events.php:275
+#: ../../include/functions_events.php:4632
+#: ../../include/functions_events.php:4713
+#: ../../include/functions_events.php:6750
+#: ../../enterprise/operation/log/log_viewer.php:654
+#: ../../enterprise/include/class/LogSource.class.php:626
+#: ../../enterprise/include/functions_log.php:279
+#: ../../enterprise/include/functions_log.php:282
+#: ../../enterprise/meta/include/functions_events_meta.php:110
+#: ../../enterprise/meta/advanced/policymanager.sync.php:307
+#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:147
+#: ../../godmode/reporting/reporting_builder.item_editor.php:1495
+#: ../../godmode/events/event_edit_filter.php:627
+#: ../../godmode/events/custom_events.php:109
+#: ../../godmode/massive/massive_copy_modules.php:144
+msgid "Source"
+msgstr ""
+
+#: ../../operation/events/events.build_table.php:303
+#: ../../operation/events/events.php:1195
+#: ../../operation/events/events_list.php:1001
+#: ../../include/functions_events.php:6756
+#: ../../godmode/events/event_edit_filter.php:630
+msgid "Extra ID"
+msgstr ""
+
+#: ../../operation/events/events.build_table.php:313
+#: ../../include/functions_events.php:207
+#: ../../include/functions_events.php:284
+#: ../../include/functions_events.php:6762
+#: ../../enterprise/meta/include/functions_events_meta.php:122
+#: ../../godmode/events/custom_events.php:112
+msgid "ACK Timestamp"
+msgstr ""
+
+#: ../../operation/events/events.build_table.php:323
+#: ../../operation/events/events.php:2822
+#: ../../include/functions_events.php:208
+#: ../../include/functions_events.php:287
+#: ../../include/functions_events.php:4691
+#: ../../include/functions_events.php:6768
+#: ../../enterprise/meta/include/functions_events_meta.php:126
+#: ../../godmode/events/custom_events.php:113
+msgid "Instructions"
+msgstr ""
+
+#: ../../operation/events/events.build_table.php:340
+#: ../../include/functions_events.php:296
+#: ../../godmode/events/custom_events.php:116
+#: ../../godmode/massive/massive_delete_modules.php:436
+#: ../../godmode/massive/massive_edit_modules.php:382
+msgid "Module Status"
+msgstr ""
+
+#: ../../operation/events/events.build_table.php:350
+#: ../../include/ajax/events.php:1552 ../../include/functions_events.php:213
+#: ../../include/functions_events.php:315
+#: ../../godmode/events/event_edit_filter.php:650
+#: ../../godmode/events/custom_events.php:119
+msgid "Custom data"
+msgstr ""
+
+#: ../../operation/events/events.build_table.php:420
+#: ../../operation/events/events.php:2249 ../../include/ajax/events.php:1784
+#: ../../include/functions_events.php:2651
+#: ../../include/functions_events.php:4819
+#: ../../include/functions_events.php:6829
+#: ../../include/functions_reporting.php:10694
+#: ../../include/functions_reporting_html.php:1077
+#: ../../include/functions_reporting_html.php:1300
+#: ../../include/functions_reporting_html.php:2372
+#: ../../mobile/operation/events.php:267
+msgid "New event"
+msgstr ""
+
+#: ../../operation/events/events.build_table.php:425
+#: ../../operation/events/events.php:2255 ../../include/ajax/events.php:1789
+#: ../../include/functions_events.php:2656
+#: ../../include/functions_events.php:4825
+#: ../../include/functions_events.php:6834
+#: ../../include/functions_reporting.php:10699
+#: ../../include/functions_reporting_html.php:1082
+#: ../../include/functions_reporting_html.php:1305
+#: ../../include/functions_reporting_html.php:2377
+#: ../../mobile/operation/events.php:272
+msgid "Event validated"
+msgstr ""
+
+#: ../../operation/events/events.build_table.php:430
+#: ../../operation/events/events.php:2261 ../../include/ajax/events.php:1794
+#: ../../include/functions_events.php:2661
+#: ../../include/functions_events.php:4831
+#: ../../include/functions_events.php:6839
+#: ../../include/functions_reporting.php:10704
+#: ../../include/functions_reporting_html.php:1087
+#: ../../include/functions_reporting_html.php:1310
+#: ../../include/functions_reporting_html.php:2382
+#: ../../mobile/operation/events.php:277
+msgid "Event in process"
+msgstr ""
+
+#: ../../operation/events/events.build_table.php:856
+#: ../../operation/events/events.php:2203
+#: ../../include/functions_events.php:7246
+msgid "Validate event"
+msgstr ""
+
+#: ../../operation/events/events.build_table.php:867
+#: ../../operation/events/events.php:2215
+msgid "Change to in progress status"
+msgstr ""
+
+#: ../../operation/events/events.build_table.php:884
+#: ../../operation/events/events.php:2227
+#: ../../include/functions_events.php:3776
+#: ../../include/functions_events.php:3780
+#: ../../include/functions_events.php:7260
+msgid "Delete event"
+msgstr ""
+
+#: ../../operation/events/events.build_table.php:894
+#: ../../include/functions_events.php:7269
+msgid "Is not allowed delete events in process"
+msgstr ""
+
+#: ../../operation/events/events.build_table.php:1008
+#: ../../operation/events/events.php:1847
+msgid "Execute event response"
+msgstr ""
+
+#: ../../operation/events/events.build_table.php:1016
+#: ../../operation/events/events.php:1860
+#, php-format
+msgid "A maximum of %s event custom responses can be selected"
+msgstr ""
+
+#: ../../operation/events/events.build_table.php:1021
+#: ../../operation/events/events.php:1865
+msgid "Please, select an event"
+msgstr ""
+
+#: ../../operation/events/events.php:625 ../../operation/events/events.php:701
+#: ../../operation/events/events_list.php:613
+#: ../../operation/events/events_list.php:689
+#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:271
+#: ../../include/class/ManageNetScanScripts.class.php:471
+#: ../../include/functions_notifications.php:974
+#: ../../include/functions_snmp_browser.php:1558
+#: ../../enterprise/tools/ipam/ipam_vlan_config.php:830
+#: ../../enterprise/tools/ipam/ipam_supernet_config.php:1321
+#: ../../enterprise/operation/agentes/manage_transmap_creation.php:308
+#: ../../enterprise/include/ajax/log_viewer.ajax.php:93
+#: ../../enterprise/include/ajax/servers.ajax.php:144
+#: ../../enterprise/include/ajax/servers.ajax.php:177
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2240
+#: ../../enterprise/meta/include/functions_autoprovision.php:703
+#: ../../enterprise/meta/include/functions_wizard_meta.php:1368
+#: ../../enterprise/meta/advanced/metasetup.consoles.php:739
+#: ../../enterprise/meta/advanced/metasetup.visual.php:411
+#: ../../enterprise/meta/advanced/links.php:189
+#: ../../enterprise/godmode/setup/setup_metaconsole.php:247
+#: ../../enterprise/godmode/setup/setup_metaconsole.php:357
+#: ../../enterprise/godmode/setup/setup_acl.php:532
+#: ../../enterprise/godmode/setup/setup_acl.php:558
+#: ../../enterprise/godmode/servers/manage_export_form.php:138
+#: ../../enterprise/godmode/servers/credential_boxes_satellite.php:298
+#: ../../enterprise/godmode/servers/manage_credential_boxes.php:82
+#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:251
+#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:340
+#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:498
+#: ../../enterprise/godmode/reporting/reporting_builder.global.php:237
+#: ../../enterprise/godmode/reporting/reporting_builder.global.php:498
+#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:190
+#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:254
+#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:833
+#: ../../enterprise/godmode/massive/massive_edit_tags_policy.php:168
+#: ../../enterprise/godmode/massive/massive_add_alerts_policy.php:138
+#: ../../enterprise/godmode/massive/massive_tags_edit_policy.php:152
+#: ../../enterprise/godmode/agentes/inventory_manager.php:185
+#: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:230
+#: ../../enterprise/godmode/agentes/collection_manager.php:113
+#: ../../enterprise/godmode/agentes/collection_manager.php:142
+#: ../../enterprise/godmode/agentes/plugins_manager.php:163
+#: ../../enterprise/godmode/alerts/alert_inventory_list.php:398
+#: ../../enterprise/godmode/policies/policy_external_alerts.php:607
+#: ../../enterprise/godmode/policies/policy_external_alerts.php:703
+#: ../../enterprise/godmode/policies/policy_inventory_modules.php:263
+#: ../../enterprise/godmode/policies/policy_alerts.php:605
+#: ../../enterprise/godmode/policies/policy_alerts.php:670
+#: ../../enterprise/godmode/policies/policy_collections.php:267
+#: ../../enterprise/godmode/policies/policy_plugins.php:144
+#: ../../extensions/files_repo/files_repo_form.php:105
+#: ../../godmode/setup/setup_visuals.php:1297
+#: ../../godmode/setup/setup_visuals.php:1352
+#: ../../godmode/setup/setup_visuals.php:1372 ../../godmode/setup/news.php:299
+#: ../../godmode/setup/links.php:173 ../../godmode/servers/plugin.php:909
+#: ../../godmode/modules/manage_network_templates_form.php:347
+#: ../../godmode/gis_maps/configure_gis_map.php:631
+#: ../../godmode/reporting/graph_builder.graph_editor.php:352
+#: ../../godmode/reporting/visual_console_builder.wizard.php:531
+#: ../../godmode/snmpconsole/snmp_alert.php:1445
+#: ../../godmode/events/event_edit_filter.php:509
+#: ../../godmode/events/event_edit_filter.php:562
+#: ../../godmode/agentes/planned_downtime.editor.php:875
+#: ../../godmode/agentes/planned_downtime.editor.php:1049
+#: ../../godmode/alerts/alert_list.list.php:801
+#: ../../godmode/users/configure_profile.php:403
+msgid "Add"
+msgstr ""
+
+#: ../../operation/events/events.php:801
+msgid "Event viewer"
+msgstr ""
+
+#: ../../operation/events/events.php:837
+#: ../../operation/users/user_edit.php:358 ../../godmode/events/events.php:41
+#: ../../godmode/users/configure_user.php:1111
+msgid "Event list"
+msgstr ""
+
+#: ../../operation/events/events.php:848
+msgid "History event list"
+msgstr ""
+
+#: ../../operation/events/events.php:859
+msgid "RSS Events"
+msgstr ""
+
+#: ../../operation/events/events.php:870
+msgid "Export to CSV file"
+msgstr ""
+
+#: ../../operation/events/events.php:881 ../../operation/events/events.php:929
+msgid "Sound events"
+msgstr ""
+
+#: ../../operation/events/events.php:894 ../../godmode/events/events.php:116
+#: ../../godmode/events/events.php:124
+#: ../../godmode/users/configure_profile.php:306
+msgid "Manage events"
+msgstr ""
+
+#: ../../operation/events/events.php:934
+msgid "History"
+msgstr ""
+
+#: ../../operation/events/events.php:997
+msgid "Errors"
+msgstr ""
+
+#: ../../operation/events/events.php:1023
+msgid ""
+"Event viewer is disabled due event replication. For more information, please "
+"contact with the administrator"
+msgstr ""
+
+#: ../../operation/events/events.php:1074
+#: ../../operation/events/events_list.php:942
+#: ../../operation/agentes/status_monitor.php:496
+#: ../../operation/agentes/estado_agente.php:277
+#: ../../include/lib/Dashboard/Widgets/events_list.php:308
+#: ../../include/functions_events.php:3291 ../../include/functions.php:1277
+#: ../../enterprise/operation/agentes/tag_view.php:135
+#: ../../enterprise/meta/monitoring/custom_fields_view.php:183
+#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:123
+#: ../../mobile/operation/modules.php:73
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3605
+#: ../../godmode/events/event_edit_filter.php:315
+#: ../../godmode/massive/massive_delete_modules.php:422
+#: ../../godmode/massive/massive_delete_modules.php:443
+#: ../../godmode/massive/massive_copy_modules.php:119
+#: ../../godmode/massive/massive_copy_modules.php:279
+#: ../../godmode/massive/massive_edit_agents.php:535
+#: ../../godmode/massive/massive_delete_agents.php:213
+#: ../../godmode/massive/massive_edit_modules.php:389
+#: ../../godmode/massive/massive_edit_modules.php:475
+msgid "Not normal"
+msgstr ""
+
+#: ../../operation/events/events.php:1084
+#: ../../operation/events/events_list.php:937
+#: ../../include/lib/Dashboard/Widgets/events_list.php:321
+#: ../../include/functions_events.php:198
+#: ../../include/functions_events.php:6713
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1381
+#: ../../enterprise/include/lib/AlertCorrelation.class.php:1083
+#: ../../enterprise/include/functions_events.php:127
+#: ../../enterprise/meta/include/functions_events_meta.php:86
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2843
+#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:629
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2844
+#: ../../godmode/events/event_edit_filter.php:317
+#: ../../godmode/events/event_filter.php:138
+msgid "Event type"
+msgstr ""
+
+#: ../../operation/events/events.php:1098
+#: ../../operation/events/events.php:1670
+#: ../../operation/events/events_list.php:970
+#: ../../include/lib/Dashboard/Widgets/events_list.php:378
+#: ../../enterprise/include/functions_events.php:107
+#: ../../godmode/events/event_edit_filter.php:350
+#: ../../godmode/events/event_filter.php:139
+msgid "Event status"
+msgstr ""
+
+#: ../../operation/events/events.php:1118
+#: ../../operation/events/events_list.php:983
+#: ../../enterprise/godmode/setup/setup.php:161
+#: ../../godmode/events/event_edit_filter.php:436
+msgid "All events"
+msgstr ""
+
+#: ../../operation/events/events.php:1119
+#: ../../operation/events/events.php:1720
+#: ../../operation/events/events_list.php:984
+#: ../../godmode/events/event_edit_filter.php:437
+msgid "Group events"
+msgstr ""
+
+#: ../../operation/events/events.php:1120
+#: ../../operation/events/events_list.php:985
+#: ../../include/ajax/heatmap.ajax.php:78
+msgid "Group agents"
+msgstr ""
+
+#: ../../operation/events/events.php:1129
+#: ../../operation/events/events_list.php:982
+#: ../../include/functions_events.php:5036
+#: ../../enterprise/include/functions_events.php:198
+#: ../../mobile/operation/events.php:528
+#: ../../godmode/events/event_edit_filter.php:438
+msgid "Repeated"
+msgstr ""
+
+#: ../../operation/events/events.php:1166
+#: ../../operation/events/events_list.php:384
+#: ../../operation/events/events_list.php:524
+#: ../../operation/events/events_list.php:535
+#: ../../operation/events/events_list.php:1053
+#: ../../operation/netflow/nf_live_view.php:389
+#: ../../include/ajax/custom_fields.php:587 ../../include/ajax/events.php:503
+#: ../../include/ajax/events.php:519
+#: ../../enterprise/meta/monitoring/custom_fields_view.php:236
+#: ../../enterprise/meta/monitoring/custom_fields_view.php:242
+#: ../../enterprise/meta/monitoring/custom_fields_view.php:243
+msgid "Load filter"
+msgstr ""
+
+#: ../../operation/events/events.php:1174
+#: ../../operation/events/events_list.php:376
+#: ../../operation/events/events_list.php:493
+#: ../../operation/events/events_list.php:1050
+#: ../../include/ajax/events.php:759
+#: ../../enterprise/meta/monitoring/custom_fields_view.php:222
+#: ../../enterprise/meta/monitoring/custom_fields_view.php:228
+#: ../../enterprise/meta/monitoring/custom_fields_view.php:229
+msgid "Save filter"
+msgstr ""
+
+#: ../../operation/events/events.php:1246
+#: ../../operation/events/events_list.php:769
+#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:279
+#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:375
+#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:441
+#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:709
+#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:788
+#: ../../enterprise/meta/agentsearch.php:52
+#: ../../enterprise/meta/agentsearch.php:58 ../../mobile/operation/home.php:168
+#: ../../godmode/events/event_edit_filter.php:371
+msgid "Agent search"
+msgstr ""
+
+#: ../../operation/events/events.php:1263
+#: ../../operation/events/events_list.php:809
+#: ../../enterprise/meta/monitoring/custom_fields_view.php:293
+#: ../../godmode/events/event_edit_filter.php:614
+msgid "Module search"
+msgstr ""
+
+#: ../../operation/events/events.php:1293
+#: ../../operation/events/events.php:2632
+#: ../../operation/events/events_list.php:803
+#: ../../include/functions_visual_map_editor.php:498
+#: ../../include/functions_visual_map_editor.php:1459
+#: ../../include/functions_visual_map_editor.php:1553
+#: ../../include/ajax/visual_console_builder.ajax.php:1186
+#: ../../include/lib/Dashboard/Widgets/events_list.php:329
+#: ../../include/functions_profile.php:338
+#: ../../include/functions_html.php:2278 ../../include/functions_html.php:2279
+#: ../../include/functions_html.php:2280 ../../include/functions_html.php:2281
+#: ../../include/functions_html.php:2282 ../../include/functions_html.php:2284
+#: ../../include/functions_html.php:2285 ../../include/functions_html.php:2286
+#: ../../include/functions_html.php:2287 ../../include/functions_html.php:2288
+#: ../../enterprise/operation/services/services.list.php:249
+#: ../../enterprise/operation/services/services.list.php:279
+#: ../../enterprise/operation/services/services.table_services.php:171
+#: ../../enterprise/operation/services/services.table_services.php:201
+#: ../../enterprise/include/class/AgentRepository.class.php:650
+#: ../../enterprise/include/class/Omnishell.class.php:361
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1733
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3865
+#: ../../enterprise/include/class/DeploymentCenter.class.php:779
+#: ../../enterprise/godmode/setup/setup_auth.php:69
+#: ../../enterprise/godmode/setup/setup_auth.php:269
+#: ../../enterprise/godmode/setup/setup_auth.php:319
+#: ../../enterprise/godmode/setup/setup_auth.php:380
+#: ../../enterprise/godmode/setup/setup_auth.php:546
+#: ../../enterprise/godmode/setup/setup_auth.php:1175
+#: ../../enterprise/godmode/setup/setup_auth.php:1345
+#: ../../enterprise/godmode/setup/setup_acl.php:572
+#: ../../enterprise/godmode/services/services.elements.php:290
+#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:169
+#: ../../godmode/reporting/create_container.php:573
+#: ../../godmode/events/event_edit_filter.php:431
+#: ../../godmode/massive/massive_delete_modules.php:407
+#: ../../godmode/massive/massive_delete_modules.php:521
+#: ../../godmode/massive/massive_copy_modules.php:178
+#: ../../godmode/massive/massive_add_action_alerts.php:216
+#: ../../godmode/massive/massive_edit_agents.php:643
+#: ../../godmode/massive/massive_edit_agents.php:1026
+#: ../../godmode/massive/massive_edit_modules.php:411
+#: ../../godmode/massive/massive_edit_modules.php:497
+#: ../../godmode/agentes/agent_manager.php:328
+#: ../../godmode/agentes/agent_manager.php:472
+#: ../../godmode/agentes/planned_downtime.editor.php:800
+#: ../../godmode/agentes/planned_downtime.list.php:326
+msgid "Any"
+msgstr ""
+
+#: ../../operation/events/events.php:1297
+#: ../../operation/events/events_list.php:790
+#: ../../enterprise/include/functions_events.php:168
+#: ../../godmode/events/event_edit_filter.php:414
+msgid "User ack."
+msgstr ""
+
+#: ../../operation/events/events.php:1304
+#: ../../operation/events/events_list.php:840
+#: ../../godmode/events/event_edit_filter.php:602
+msgid "Filter alert events"
+msgstr ""
+
+#: ../../operation/events/events.php:1305
+#: ../../operation/events/events_list.php:841
+#: ../../godmode/events/event_edit_filter.php:603
+msgid "Only alert events"
+msgstr ""
+
+#: ../../operation/events/events.php:1320
+#: ../../operation/events/events_list.php:837
+#: ../../enterprise/include/functions_events.php:208
+#: ../../godmode/events/event_edit_filter.php:598
+msgid "Alert events"
+msgstr ""
+
+#: ../../operation/events/events.php:1342
+#: ../../operation/events/events_list.php:1013
+msgid "Id source event"
+msgstr ""
+
+#: ../../operation/events/events.php:1400
+msgid "From (date:time)"
+msgstr ""
+
+#: ../../operation/events/events.php:1458
+msgid "To (date:time)"
+msgstr ""
+
+#: ../../operation/events/events.php:1469
+msgid "Filter custom data by field name"
+msgstr ""
+
+#: ../../operation/events/events.php:1470
+msgid "Filter custom data by field value"
+msgstr ""
+
+#: ../../operation/events/events.php:1485
+msgid "Custom data filter"
+msgstr ""
+
+#: ../../operation/events/events.php:1507
+msgid "Custom data search"
+msgstr ""
+
+#: ../../operation/events/events.php:1516
+#: ../../operation/events/events.php:1519
+#: ../../operation/events/events_list.php:892
+#: ../../operation/events/events_list.php:895
+#: ../../enterprise/include/functions_events.php:251
+#: ../../godmode/events/event_edit_filter.php:493
+msgid "Events with following tags"
+msgstr ""
+
+#: ../../operation/events/events.php:1517
+#: ../../operation/events/events.php:1520
+#: ../../operation/events/events_list.php:893
+#: ../../operation/events/events_list.php:896
+#: ../../enterprise/include/functions_events.php:273
+#: ../../godmode/events/event_edit_filter.php:546
+msgid "Events without following tags"
+msgstr ""
+
+#: ../../operation/events/events.php:1532
+#: ../../operation/events/events_list.php:1030
+#: ../../include/functions_visual_map_editor.php:895
+#: ../../enterprise/meta/advanced/metasetup.consoles.php:613
+#: ../../enterprise/meta/advanced/metasetup.consoles.php:699
+#: ../../enterprise/meta/advanced/metasetup.consoles.php:704
+#: ../../enterprise/godmode/reporting/reporting_builder.template.php:141
+#: ../../enterprise/godmode/reporting/reporting_builder.template.php:230
+#: ../../enterprise/godmode/policies/policy_modules.php:412
+#: ../../enterprise/godmode/policies/policy_external_alerts.php:598
+#: ../../extensions/quick_shell.php:521
+#: ../../godmode/massive/massive_add_action_alerts.php:250
+#: ../../godmode/massive/massive_edit_agents.php:1027
+#: ../../godmode/agentes/agent_manager.php:748
+#: ../../godmode/agentes/agent_manager.php:882
+#: ../../godmode/agentes/module_manager_editor.php:746
+msgid "Advanced options"
+msgstr ""
+
+#: ../../operation/events/events.php:1657
+msgid "Current filter"
+msgstr ""
+
+#: ../../operation/events/events.php:1662
+msgid "Not set."
+msgstr ""
+
+#: ../../operation/events/events.php:1675
+msgid "Any status."
+msgstr ""
+
+#: ../../operation/events/events.php:1679
+msgid "New events."
+msgstr ""
+
+#: ../../operation/events/events.php:1683
+msgid "Validated."
+msgstr ""
+
+#: ../../operation/events/events.php:1687
+msgid "In proccess."
+msgstr ""
+
+#: ../../operation/events/events.php:1691
+msgid "Not validated."
+msgstr ""
+
+#: ../../operation/events/events.php:1703
+msgid "Any time."
+msgstr ""
+
+#: ../../operation/events/events.php:1705
+#: ../../operation/events/events.php:2634
+msgid "Last hour."
+msgstr ""
+
+#: ../../operation/events/events.php:1707
+#, php-format
+msgid "Last %d hours."
+msgstr ""
+
+#: ../../operation/events/events.php:1715
+msgid "Duplicated"
+msgstr ""
+
+#: ../../operation/events/events.php:1718
+msgid "All events."
+msgstr ""
+
+#: ../../operation/events/events.php:1722
+msgid "Group agents."
+msgstr ""
+
+#: ../../operation/events/events.php:1812
+msgid "In progress selected"
+msgstr ""
+
+#: ../../operation/events/events.php:1813
+msgid "Validate selected"
+msgstr ""
+
+#: ../../operation/events/events.php:1817
+#: ../../include/class/ModuleTemplates.class.php:970
+#: ../../enterprise/operation/services/services.list.php:728
+#: ../../enterprise/include/class/Omnishell.class.php:520
+#: ../../enterprise/godmode/reporting/reporting_builder.global.php:298
+#: ../../godmode/snmpconsole/snmp_alert.php:1457
+#: ../../godmode/agentes/agent_manager.php:310
+msgid "Delete selected"
+msgstr ""
+
+#: ../../operation/events/events.php:1893 ../../include/ajax/events.php:1998
+#: ../../include/class/ExternalTools.class.php:354
+#: ../../include/lib/Dashboard/Widgets/events_list.php:788
+#: ../../include/functions_events.php:3861
+#: ../../enterprise/meta/advanced/cron_main.php:444
+#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:566
+#: ../../godmode/events/event_responses.editor.php:146
+msgid "Parameters"
+msgstr ""
+
+#: ../../operation/events/events.php:1930
+#: ../../include/functions_events.php:236
+#: ../../enterprise/include/functions_reporting_csv.php:1934
+#: ../../enterprise/include/functions_reporting.php:2316
+#: ../../godmode/events/custom_events.php:96
+msgid "Agent ID"
+msgstr ""
+
+#: ../../operation/events/events.php:1954
+msgid "has at least"
+msgstr ""
+
+#: ../../operation/events/events.php:1956
+msgid "events"
+msgstr ""
+
+#: ../../operation/events/events.php:2040
+#: ../../include/functions_events.php:159 ../../include/functions_ui.php:3819
+msgid "MAINTENANCE"
+msgstr ""
+
+#: ../../operation/events/events.php:2045
+#: ../../include/functions_events.php:162 ../../include/functions_ui.php:3824
+msgid "INFORMATIONAL"
+msgstr ""
+
+#: ../../operation/events/events.php:2050
+#: ../../include/functions_events.php:165 ../../include/functions_ui.php:3849
+msgid "MAJOR"
+msgstr ""
+
+#: ../../operation/events/events.php:2055
+#: ../../include/functions_events.php:168 ../../include/functions_ui.php:3844
+msgid "MINOR"
+msgstr ""
+
+#: ../../operation/events/events.php:2106
+#: ../../operation/events/events.php:2171 ../../include/functions_events.php:67
+#: ../../include/functions_events.php:93 ../../include/functions_ui.php:3741
+msgid "ALERT"
+msgstr ""
+
+#: ../../operation/events/events.php:2115
+#: ../../include/functions_events.php:100
+#: ../../include/functions_events.php:2908
+#: ../../include/functions_graph.php:3455 ../../include/functions_ui.php:3750
+msgid "SYSTEM"
+msgstr ""
+
+#: ../../operation/events/events.php:2200
+msgid "Validate events"
+msgstr ""
+
+#: ../../operation/events/events.php:2224
+msgid "Delete events"
+msgstr ""
+
+#: ../../operation/events/events.php:2307
+#: ../../include/lib/Dashboard/Widgets/top_n_events_by_group.php:433
+#: ../../include/lib/Dashboard/Widgets/top_n_events_by_module.php:437
+#: ../../include/functions_events.php:2691
+#: ../../include/functions_events.php:3279
+#: ../../include/functions_graph.php:2864
+#: ../../include/functions_graph.php:3630
+#: ../../include/functions_graph.php:3632
+#: ../../include/functions_reporting.php:10731 ../../include/functions.php:1235
+#: ../../include/functions_reporting_html.php:1123
+#: ../../include/functions_reporting_html.php:2411
+#: ../../enterprise/meta/advanced/metasetup.setup.php:144
+#: ../../mobile/operation/events.php:127
+#: ../../godmode/setup/setup_general.php:125
+msgid "System"
+msgstr ""
+
+#: ../../operation/events/events.php:2636
+msgid "hours."
+msgstr ""
+
+#: ../../operation/events/events_list.php:360
+#: ../../operation/events/events_list.php:1099
+msgid "No filter loaded"
+msgstr ""
+
+#: ../../operation/events/events_list.php:368
+#: ../../operation/events/events_list.php:1099
+msgid "Filter loaded"
+msgstr ""
+
+#: ../../operation/events/events_list.php:418 ../../include/ajax/events.php:678
+msgid "New filter"
+msgstr ""
+
+#: ../../operation/events/events_list.php:426
+#: ../../operation/events/events_list.php:479
+#: ../../include/ajax/custom_fields.php:707 ../../include/ajax/events.php:686
+#: ../../include/ajax/events.php:746
+#: ../../godmode/snmpconsole/snmp_filters.php:35
+#: ../../godmode/netflow/nf_edit_form.php:188
+msgid "Update filter"
+msgstr ""
+
+#: ../../operation/events/events_list.php:433
+#: ../../include/ajax/custom_fields.php:571
+#: ../../include/ajax/custom_fields.php:618
+#: ../../include/ajax/custom_fields.php:662 ../../include/ajax/events.php:693
+#: ../../godmode/events/event_edit_filter.php:261
+msgid "Filter name"
+msgstr ""
+
+#: ../../operation/events/events_list.php:436 ../../include/ajax/events.php:696
+msgid "Save in Group"
+msgstr ""
+
+#: ../../operation/events/events_list.php:438 ../../include/ajax/events.php:698
+#: ../../include/functions_snmp_browser.php:1478
+#: ../../include/functions_html.php:1234 ../../include/functions_html.php:1387
+#: ../../enterprise/views/ncm/snippets/list.php:94
+#: ../../enterprise/views/ncm/firmwares/list.php:100
+#: ../../enterprise/views/ncm/devices/list.php:147
+#: ../../enterprise/views/ncm/templates/list.php:100
+#: ../../enterprise/views/cluster/list.php:87
+#: ../../enterprise/include/class/Omnishell.class.php:812
+#: ../../enterprise/include/class/Omnishell.class.php:891
+#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:209
+#: ../../enterprise/godmode/reporting/graph_template_wizard.php:207
+#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:335
+#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:358
+#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:211
+#: ../../enterprise/godmode/reporting/reporting_builder.global.php:98
+#: ../../enterprise/godmode/reporting/reporting_builder.template.php:723
+#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:115
+#: ../../enterprise/godmode/policies/policy_agents.php:436
+#: ../../enterprise/godmode/policies/policy_agents.php:468
+msgid "Filter group"
+msgstr ""
+
+#: ../../operation/events/events_list.php:465 ../../include/ajax/events.php:732
+msgid "Overwrite filter"
+msgstr ""
+
+#: ../../operation/events/events_list.php:871
+#: ../../enterprise/include/functions_events.php:178
+#: ../../godmode/events/event_edit_filter.php:449
+msgid "Date from"
+msgstr ""
+
+#: ../../operation/events/events_list.php:875
+#: ../../enterprise/include/functions_events.php:188
+#: ../../godmode/events/event_edit_filter.php:452
+msgid "Date to"
+msgstr ""
+
+#: ../../operation/events/events_list.php:881
+#: ../../operation/agentes/datos_agente.php:198
+#: ../../include/ajax/module.php:250
+#: ../../enterprise/godmode/reporting/reporting_builder.template.php:778
+msgid "Timestamp from:"
+msgstr ""
+
+#: ../../operation/events/events_list.php:884
+#: ../../operation/agentes/datos_agente.php:204
+#: ../../include/ajax/module.php:270
+#: ../../enterprise/godmode/reporting/reporting_builder.template.php:796
+msgid "Timestamp to:"
+msgstr ""
+
+#: ../../operation/events/events_list.php:1105
+#: ../../operation/events/events_list.php:1107
+msgid "Event control filter"
+msgstr ""
+
+#: ../../operation/events/events_list.php:1115
+msgid "Error creating filter."
+msgstr ""
+
+#: ../../operation/events/events_list.php:1119
+msgid "Error creating filter is duplicated."
+msgstr ""
+
+#: ../../operation/events/events_list.php:1123
+msgid "Filter created."
+msgstr ""
+
+#: ../../operation/events/events_list.php:1128
+msgid "Filter updated."
+msgstr ""
+
+#: ../../operation/events/events_list.php:1132
+msgid "Error updating filter."
+msgstr ""
+
+#: ../../operation/events/events_list.php:1538
+#: ../../include/ajax/events.php:803
+msgid "Filter name cannot be left blank"
+msgstr ""
+
+#: ../../operation/events/events_list.php:1614
+#: ../../operation/events/events_list.php:1707
+#: ../../include/ajax/graph.ajax.php:145 ../../include/ajax/events.php:946
+#: ../../godmode/setup/setup_general.php:574
+#: ../../godmode/gis_maps/configure_gis_map.php:575
+#: ../../godmode/reporting/create_container.php:294
+#: ../../godmode/reporting/create_container.php:310
+msgid "none"
+msgstr ""
+
+#: ../../operation/netflow/nf_live_view.php:123
+#: ../../operation/netflow/nf_live_view.php:145
+#: ../../operation/netflow/nf_live_view.php:151
+msgid "Netflow live view"
+msgstr ""
+
+#: ../../operation/netflow/nf_live_view.php:133
+#: ../../enterprise/operation/log/log_viewer.php:458
+#: ../../enterprise/godmode/modules/manage_inventory_modules.php:72
+#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:48
+#: ../../godmode/netflow/nf_edit.php:47
+msgid "Not supported in Windows systems"
+msgstr ""
+
+#: ../../operation/netflow/nf_live_view.php:141
+#: ../../operation/agentes/ver_agente.php:1368
+#: ../../enterprise/include/class/CommandCenter.class.php:142
+#: ../../enterprise/meta/general/logon_ok.php:16
+#: ../../enterprise/meta/monitoring/group_view.php:51
+#: ../../enterprise/meta/monitoring/custom_fields_view.php:50
+#: ../../enterprise/meta/monitoring/tactical.php:36
+#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:55
+#: ../../enterprise/meta/advanced/agents_setup.php:60
+#: ../../enterprise/meta/advanced/policymanager.php:54
+#: ../../enterprise/meta/index.php:955 ../../enterprise/meta/agentsearch.php:48
+#: ../../enterprise/extensions/vmware/vmware_view.php:1373
+#: ../../godmode/netflow/nf_edit.php:53
+#: ../../godmode/netflow/nf_edit_form.php:69
+#: ../../godmode/netflow/nf_item_list.php:49
+msgid "Main"
+msgstr ""
+
+#: ../../operation/netflow/nf_live_view.php:162
+msgid "Error creating filter"
+msgstr ""
+
+#: ../../operation/netflow/nf_live_view.php:164
+msgid "Filter created successfully"
+msgstr ""
+
+#: ../../operation/netflow/nf_live_view.php:183
+msgid "Filter updated successfully"
+msgstr ""
+
+#: ../../operation/netflow/nf_live_view.php:184
+msgid "Error updating filter"
+msgstr ""
+
+#: ../../operation/netflow/nf_live_view.php:208
+msgid "Draw live filter"
+msgstr ""
+
+#: ../../operation/netflow/nf_live_view.php:242
+msgid "Connection"
+msgstr ""
+
+#: ../../operation/netflow/nf_live_view.php:295
+#: ../../operation/incidents/integriaims_export_csv.php:84
+#: ../../operation/incidents/configure_integriaims_incident.php:325
+#: ../../operation/incidents/list_integriaims_incidents.php:359
+#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:323
+msgid "Resolution"
+msgstr ""
+
+#: ../../operation/netflow/nf_live_view.php:295
+msgid "The interval will be divided in chunks the length of the resolution."
+msgstr ""
+
+#: ../../operation/netflow/nf_live_view.php:322
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2386
+#: ../../godmode/netflow/nf_item_list.php:176
+msgid "Max. values"
+msgstr ""
+
+#: ../../operation/netflow/nf_live_view.php:336
+#: ../../godmode/netflow/nf_edit_form.php:253
+msgid "Aggregate by"
+msgstr ""
+
+#: ../../operation/netflow/nf_live_view.php:339
+#: ../../godmode/netflow/nf_edit_form.php:255
+msgid "Src Ip Address"
+msgstr ""
+
+#: ../../operation/netflow/nf_live_view.php:340
+#: ../../godmode/netflow/nf_edit_form.php:256
+msgid "Dst Ip Address"
+msgstr ""
+
+#: ../../operation/netflow/nf_live_view.php:341
+#: ../../operation/netflow/nf_live_view.php:433
+#: ../../godmode/netflow/nf_edit_form.php:248
+#: ../../godmode/netflow/nf_edit_form.php:257
+msgid "Src Port"
+msgstr ""
+
+#: ../../operation/netflow/nf_live_view.php:342
+#: ../../operation/netflow/nf_live_view.php:425
+#: ../../godmode/netflow/nf_edit_form.php:245
+#: ../../godmode/netflow/nf_edit_form.php:258
+msgid "Dst Port"
+msgstr ""
+
+#: ../../operation/netflow/nf_live_view.php:384
+#: ../../include/class/CredentialStore.class.php:945
+#: ../../include/functions_html.php:1878 ../../include/functions_html.php:1879
+#: ../../include/functions_html.php:1989 ../../include/functions_html.php:1990
+#: ../../include/functions_html.php:2150 ../../include/functions_html.php:2151
+#: ../../enterprise/include/functions_cron.php:582
+#: ../../enterprise/include/lib/NetworkManager.php:87
+#: ../../enterprise/meta/include/functions_autoprovision.php:388
+#: ../../enterprise/meta/include/functions_wizard_meta.php:497
+#: ../../enterprise/meta/advanced/metasetup.relations.php:218
+#: ../../enterprise/meta/advanced/metasetup.relations.php:572
+#: ../../enterprise/godmode/setup/setup_acl.php:463
+#: ../../enterprise/godmode/setup/setup_acl.php:765
+#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:755
+#: ../../godmode/massive/massive_edit_modules.php:819
+#: ../../godmode/agentes/module_manager_editor_wmi.php:61
+#: ../../godmode/agentes/module_manager_editor_network.php:96
+msgid "Custom"
+msgstr ""
+
+#: ../../operation/netflow/nf_live_view.php:396
+msgid "Select a filter"
+msgstr ""
+
+#: ../../operation/netflow/nf_live_view.php:406
+#: ../../godmode/netflow/nf_edit_form.php:239
+msgid "Dst Ip"
+msgstr ""
+
+#: ../../operation/netflow/nf_live_view.php:406
+#: ../../godmode/netflow/nf_edit_form.php:239
+msgid ""
+"Destination IP. A comma separated list of destination ip. If we leave the "
+"field blank, will show all ip. Example filter by ip:"
+"<br>25.46.157.214,160.253.135.249"
+msgstr ""
+
+#: ../../operation/netflow/nf_live_view.php:414
+#: ../../godmode/netflow/nf_edit_form.php:242
+msgid "Src Ip"
+msgstr ""
+
+#: ../../operation/netflow/nf_live_view.php:414
+#: ../../godmode/netflow/nf_edit_form.php:242
+msgid ""
+"Source IP. A comma separated list of source ip. If we leave the field blank, "
+"will show all ip. Example filter by ip:<br>25.46.157.214,160.253.135.249"
+msgstr ""
+
+#: ../../operation/netflow/nf_live_view.php:425
+#: ../../godmode/netflow/nf_edit_form.php:245
+msgid ""
+"Destination port. A comma separated list of destination ports. If we leave "
+"the field blank, will show all ports. Example filter by ports 80 and 22:"
+"<br>80,22"
+msgstr ""
+
+#: ../../operation/netflow/nf_live_view.php:433
+#: ../../godmode/netflow/nf_edit_form.php:248
+msgid ""
+"Source port. A comma separated list of source ports. If we leave the field "
+"blank, will show all ports. Example filter by ports 80 and 22:<br>80,22"
+msgstr ""
+
+#: ../../operation/netflow/nf_live_view.php:451
+#: ../../godmode/setup/setup_netflow.php:71
+msgid "IP address resolution can take a lot of time"
+msgstr ""
+
+#: ../../operation/netflow/nf_live_view.php:469
+msgid "IP address resolution"
+msgstr ""
+
+#: ../../operation/netflow/nf_live_view.php:469
+msgid "Resolve the IP addresses to get their hostnames."
+msgstr ""
+
+#: ../../operation/netflow/nf_live_view.php:472
+msgid "Source ip"
+msgstr ""
+
+#: ../../operation/netflow/nf_live_view.php:482
+#: ../../enterprise/meta/general/main_header.php:309
+#: ../../enterprise/meta/general/main_header.php:391
+#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:268
+#: ../../enterprise/godmode/modules/configure_local_component.php:165
+#: ../../enterprise/godmode/agentes/plugins_manager.php:126
+#: ../../enterprise/godmode/policies/policy_plugins.php:108
+#: ../../godmode/modules/manage_network_components_form_common.php:53
+#: ../../godmode/netflow/nf_edit_form.php:237
+#: ../../godmode/alerts/configure_alert_template.php:946
+#: ../../godmode/alerts/configure_alert_template.php:987
+#: ../../godmode/alerts/configure_alert_template.php:1138
+#: ../../godmode/alerts/alert_commands.php:157
+#: ../../godmode/alerts/alert_commands.php:194
+#: ../../godmode/users/configure_user.php:1211
+msgid "Advanced"
+msgstr ""
+
+#: ../../operation/netflow/nf_live_view.php:495
+msgid "Draw"
+msgstr ""
+
+#: ../../operation/netflow/nf_live_view.php:499
+msgid "Save as new filter"
+msgstr ""
+
+#: ../../operation/netflow/nf_live_view.php:500
+msgid "Update current filter"
+msgstr ""
+
+#: ../../operation/netflow/nf_live_view.php:514
+msgid "No filter selected"
+msgstr ""
+
+#: ../../operation/agentes/networkmap.dinamic.php:126
+#: ../../operation/agentes/pandora_networkmap.view.php:2290
+msgid "List of networkmap"
+msgstr ""
+
+#: ../../operation/agentes/networkmap.dinamic.php:226
+#: ../../include/functions_config.php:2407
+msgid "Pandora FMS"
+msgstr ""
+
+#: ../../operation/agentes/status_monitor.php:62
+#: ../../operation/agentes/status_monitor.php:85
+#: ../../operation/agentes/ver_agente.php:1535
+#: ../../include/functions_events.php:4508
+#: ../../include/functions_reporting_html.php:1516
+#: ../../enterprise/meta/event/custom_events.php:56
+#: ../../enterprise/meta/event/custom_events.php:61
+#: ../../enterprise/meta/event/custom_events.php:74
+#: ../../enterprise/meta/event/custom_events.php:92
+#: ../../godmode/reporting/reporting_builder.item_editor.php:76
+#: ../../godmode/menu.php:77 ../../godmode/events/events.php:80
+#: ../../godmode/events/events.php:95
+#: ../../godmode/massive/massive_edit_agents.php:1103
+#: ../../godmode/agentes/agent_manager.php:868
+#: ../../godmode/agentes/agent_manager.php:893
+msgid "Custom fields"
+msgstr ""
+
+#: ../../operation/agentes/status_monitor.php:119
+msgid "Monitor view"
+msgstr ""
+
+#: ../../operation/agentes/status_monitor.php:488
+#: ../../operation/agentes/interface_view.functions.php:59
+#: ../../operation/agentes/estado_agente.php:262
+#: ../../include/class/NetworkMap.class.php:3226
+#: ../../include/functions_html.php:1535
+#: ../../enterprise/meta/monitoring/custom_fields_view.php:168
+#: ../../enterprise/godmode/reporting/reporting_builder.template.php:746
+#: ../../enterprise/godmode/policies/policies.php:324
+#: ../../extensions/agents_modules.php:407
+#: ../../godmode/reporting/reporting_builder.item_editor.php:1485
+#: ../../godmode/agentes/planned_downtime.editor.php:797
+#: ../../godmode/agentes/modificar_agente.php:352
+msgid "Recursion"
+msgstr ""
+
+#: ../../operation/agentes/status_monitor.php:500
+#: ../../enterprise/operation/agentes/tag_view.php:139
+msgid "Monitor status"
+msgstr ""
+
+#: ../../operation/agentes/status_monitor.php:545
+#: ../../operation/agentes/status_monitor.php:1319
+#: ../../include/ajax/module.php:978 ../../include/ajax/heatmap.ajax.php:225
+#: ../../include/ajax/heatmap.ajax.php:264
+#: ../../include/ajax/custom_fields.php:411
+#: ../../enterprise/operation/agentes/tag_view.php:205
+#: ../../enterprise/include/functions_reporting_csv.php:873
+#: ../../enterprise/meta/include/functions_events_meta.php:90
+#: ../../enterprise/godmode/policies/policy_external_alerts.php:338
+#: ../../mobile/operation/modules.php:594
+#: ../../mobile/operation/modules.php:848
+#: ../../godmode/modules/manage_network_components.php:748
+#: ../../godmode/modules/manage_network_templates_form.php:231
+#: ../../godmode/modules/manage_network_components_form_wizard.php:271
+#: ../../godmode/agentes/status_monitor_custom_fields.php:85
+#: ../../godmode/agentes/status_monitor_custom_fields.php:145
+#: ../../godmode/agentes/agent_template.php:235
+#: ../../godmode/alerts/alert_list.list.php:89
+msgid "Module name"
+msgstr ""
+
+#: ../../operation/agentes/status_monitor.php:559
+#: ../../operation/agentes/alerts_status.functions.php:107
+#: ../../enterprise/operation/agentes/tag_view.php:223
+#: ../../enterprise/operation/agentes/tag_view.php:225
+msgid "Only it is show tags in use."
+msgstr ""
+
+#: ../../operation/agentes/status_monitor.php:564
+#: ../../operation/agentes/alerts_status.functions.php:112
+#: ../../enterprise/operation/agentes/tag_view.php:229
+msgid "No tags"
+msgstr ""
+
+#: ../../operation/agentes/status_monitor.php:625
+#: ../../enterprise/operation/agentes/tag_view.php:278
+#: ../../godmode/agentes/module_manager_editor_data.php:15
+msgid "Data server module"
+msgstr ""
+
+#: ../../operation/agentes/status_monitor.php:627
+#: ../../enterprise/operation/agentes/tag_view.php:280
+#: ../../godmode/agentes/module_manager_editor_network.php:77
+msgid "Network server module"
+msgstr ""
+
+#: ../../operation/agentes/status_monitor.php:631
+#: ../../enterprise/operation/agentes/tag_view.php:284
+#: ../../godmode/agentes/module_manager_editor_plugin.php:46
+msgid "Plugin server module"
+msgstr ""
+
+#: ../../operation/agentes/status_monitor.php:635
+#: ../../enterprise/operation/agentes/tag_view.php:288
+#: ../../godmode/agentes/module_manager_editor_wmi.php:33
+msgid "WMI server module"
+msgstr ""
+
+#: ../../operation/agentes/status_monitor.php:639
+#: ../../enterprise/operation/agentes/tag_view.php:292
+#: ../../godmode/agentes/module_manager_editor_prediction.php:107
+msgid "Prediction server module"
+msgstr ""
+
+#: ../../operation/agentes/status_monitor.php:643
+#: ../../enterprise/operation/agentes/tag_view.php:296
+#: ../../godmode/agentes/module_manager_editor_web.php:55
+msgid "Web server module"
+msgstr ""
+
+#: ../../operation/agentes/status_monitor.php:645
+msgid "Wux server module"
+msgstr ""
+
+#: ../../operation/agentes/status_monitor.php:650
+#: ../../operation/agentes/status_monitor.php:1324
+#: ../../enterprise/operation/agentes/tag_view.php:299
+#: ../../enterprise/operation/agentes/tag_view.php:680
+#: ../../godmode/agentes/status_monitor_custom_fields.php:89
+#: ../../godmode/agentes/status_monitor_custom_fields.php:146
+msgid "Server type"
+msgstr ""
+
+#: ../../operation/agentes/status_monitor.php:656
+#: ../../enterprise/operation/agentes/tag_view.php:305
+#: ../../godmode/agentes/modificar_agente.php:324
+msgid "Only enabled"
+msgstr ""
+
+#: ../../operation/agentes/status_monitor.php:657
+#: ../../enterprise/operation/agentes/tag_view.php:306
+#: ../../godmode/agentes/modificar_agente.php:323
+msgid "Only disabled"
+msgstr ""
+
+#: ../../operation/agentes/status_monitor.php:660
+#: ../../enterprise/operation/agentes/tag_view.php:309
+msgid "Show monitors..."
+msgstr ""
+
+#: ../../operation/agentes/status_monitor.php:666
+msgid "Min. hours in current status"
+msgstr ""
+
+#: ../../operation/agentes/status_monitor.php:671
+#: ../../enterprise/operation/agentes/tag_view.php:319
+#: ../../enterprise/operation/agentes/tag_view.php:679
+#: ../../godmode/agentes/status_monitor_custom_fields.php:81
+#: ../../godmode/agentes/status_monitor_custom_fields.php:144
+msgid "Data type"
+msgstr ""
+
+#: ../../operation/agentes/status_monitor.php:776
+msgid "Not condition"
+msgstr ""
+
+#: ../../operation/agentes/status_monitor.php:776
+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:845
+msgid "Advanced Options"
+msgstr ""
+
+#: ../../operation/agentes/status_monitor.php:854
+msgid "Show filters"
+msgstr ""
+
+#: ../../operation/agentes/status_monitor.php:863
+#: ../../operation/agentes/agent_fields.php:37
+#: ../../enterprise/operation/agentes/tag_view.php:447
+msgid "Agent custom fields"
+msgstr ""
+
+#: ../../operation/agentes/status_monitor.php:1303
+#: ../../operation/agentes/alerts_status.php:537
+#: ../../operation/agentes/alerts_status.php:573
+#: ../../include/ajax/module.php:974 ../../include/ajax/alert_list.ajax.php:272
+#: ../../enterprise/operation/agentes/policy_view.php:67
+#: ../../enterprise/operation/agentes/collection_view.php:74
+#: ../../enterprise/include/functions_policies.php:4068
+#: ../../enterprise/meta/advanced/policymanager.sync.php:319
+#: ../../enterprise/meta/advanced/policymanager.queue.php:210
+#: ../../enterprise/meta/advanced/policymanager.queue.php:257
+#: ../../enterprise/extensions/resource_exportation/functions.php:18
+#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:462
+#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:112
+#: ../../enterprise/godmode/massive/massive_edit_tags_policy.php:116
+#: ../../enterprise/godmode/massive/massive_add_alerts_policy.php:102
+#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:208
+#: ../../enterprise/godmode/massive/massive_tags_edit_policy.php:108
+#: ../../enterprise/godmode/agentes/inventory_manager.php:219
+#: ../../enterprise/godmode/agentes/collection_manager.php:205
+#: ../../enterprise/godmode/agentes/plugins_manager.php:193
+#: ../../enterprise/godmode/policies/policy_queue.php:593
+#: ../../enterprise/godmode/policies/policy_queue.php:647
+#: ../../godmode/agentes/module_manager.php:841
+#: ../../godmode/agentes/status_monitor_custom_fields.php:73
+#: ../../godmode/agentes/status_monitor_custom_fields.php:142
+#: ../../godmode/alerts/alert_view.php:148
+msgid "Policy"
+msgstr ""
+
+#: ../../operation/agentes/status_monitor.php:1303
+#: ../../operation/agentes/alerts_status.php:537
+#: ../../operation/agentes/alerts_status.php:573
+#: ../../include/ajax/module.php:974 ../../include/ajax/alert_list.ajax.php:272
+#: ../../enterprise/operation/agentes/collection_view.php:74
+#: ../../enterprise/godmode/agentes/inventory_manager.php:219
+#: ../../enterprise/godmode/agentes/collection_manager.php:205
+#: ../../godmode/reporting/reporting_builder.list_items.php:371
+#: ../../godmode/reporting/graph_builder.graph_editor.php:211
+#: ../../godmode/snmpconsole/snmp_alert.php:1217
+#: ../../godmode/agentes/module_manager.php:841
+msgid "P."
+msgstr ""
+
+#: ../../operation/agentes/status_monitor.php:1313
+msgid "Data Type"
+msgstr ""
+
+#: ../../operation/agentes/status_monitor.php:1341
+#: ../../operation/agentes/estado_generalagente.php:417
+#: ../../include/functions_treeview.php:326
+#: ../../godmode/agentes/status_monitor_custom_fields.php:101
+#: ../../godmode/agentes/status_monitor_custom_fields.php:149
+msgid "Last status change"
+msgstr ""
+
+#: ../../operation/agentes/status_monitor.php:1352
+#: ../../enterprise/operation/agentes/tag_view.php:683
+#: ../../godmode/agentes/module_manager.php:864
+#: ../../godmode/agentes/status_monitor_custom_fields.php:109
+#: ../../godmode/agentes/status_monitor_custom_fields.php:151
+msgid "Warn"
+msgstr ""
+
+#: ../../operation/agentes/status_monitor.php:1432
+#: ../../operation/agentes/pandora_networkmap.view.php:1743
+msgid "(Adopt) "
+msgstr ""
+
+#: ../../operation/agentes/status_monitor.php:1440
+#: ../../operation/agentes/pandora_networkmap.view.php:1751
+msgid "(Unlinked) (Adopt) "
+msgstr ""
+
+#: ../../operation/agentes/status_monitor.php:1443
+#: ../../operation/agentes/pandora_networkmap.view.php:1754
+msgid "(Unlinked) "
+msgstr ""
+
+#: ../../operation/agentes/status_monitor.php:1642
+#: ../../operation/agentes/status_monitor.php:1650
+#: ../../include/class/Tree.class.php:646 ../../include/lib/Module.php:565
+#: ../../include/functions_modules.php:4088 ../../include/functions.php:1357
+#: ../../include/functions.php:1394
+msgid "NO DATA"
+msgstr ""
+
+#: ../../operation/agentes/status_monitor.php:1981
+msgid "This group doesn't have any monitor"
+msgstr ""
+
+#: ../../operation/agentes/status_monitor.php:1983
+msgid "Sorry no search parameters"
+msgstr ""
+
+#: ../../operation/agentes/alerts_status.php:209
+#: ../../enterprise/meta/general/main_menu.php:206
+#: ../../enterprise/meta/general/main_header.php:115
+msgid "Alerts view"
+msgstr ""
+
+#: ../../operation/agentes/alerts_status.php:217
+msgid "Insufficient permissions to validate alerts"
+msgstr ""
+
+#: ../../operation/agentes/alerts_status.php:500
+#: ../../enterprise/godmode/policies/policy_external_alerts.php:372
+#: ../../godmode/alerts/alert_list.list.php:178
+msgid "Alert control filter"
+msgstr ""
+
+#: ../../operation/agentes/alerts_status.php:539
+#: ../../operation/agentes/alerts_status.php:575
+#: ../../operation/agentes/alerts_status.php:610
+#: ../../operation/agentes/alerts_status.php:643
+#: ../../operation/agentes/alerts_status.functions.php:123
+#: ../../include/ajax/alert_list.ajax.php:273
+#: ../../include/ajax/alert_list.ajax.php:298
+#: ../../enterprise/operation/agentes/policy_view.php:257
+#: ../../godmode/alerts/alert_list.list.php:141
+msgid "Standby"
+msgstr ""
+
+#: ../../operation/agentes/alerts_status.php:539
+#: ../../operation/agentes/alerts_status.php:575
+#: ../../operation/agentes/alerts_status.php:610
+#: ../../operation/agentes/alerts_status.php:643
+#: ../../include/ajax/alert_list.ajax.php:273
+#: ../../include/ajax/alert_list.ajax.php:298
+#: ../../include/class/AuditLog.class.php:128
+#: ../../include/functions_events.php:2602
+#: ../../enterprise/operation/agentes/policy_view.php:66
+#: ../../enterprise/operation/agentes/policy_view.php:166
+#: ../../enterprise/operation/agentes/policy_view.php:257
+#: ../../enterprise/operation/agentes/policy_view.php:262
+#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:190
+#: ../../enterprise/godmode/admin_access_logs.php:50
+#: ../../enterprise/godmode/policies/policy_agents.php:852
+#: ../../enterprise/godmode/policies/policy_agents.php:1368
+#: ../../mobile/operation/agents.php:406
+#: ../../godmode/agentes/module_manager.php:844
+msgid "S."
+msgstr ""
+
+#: ../../operation/agentes/alerts_status.php:543
+#: ../../operation/agentes/alerts_status.php:579
+#: ../../operation/agentes/alerts_status.php:613
+#: ../../operation/agentes/alerts_status.php:646
+#: ../../include/ajax/module.php:970 ../../include/ajax/alert_list.ajax.php:276
+#: ../../include/ajax/alert_list.ajax.php:301
+msgid "Force execution"
+msgstr ""
+
+#: ../../operation/agentes/alerts_status.php:543
+#: ../../operation/agentes/alerts_status.php:579
+#: ../../operation/agentes/alerts_status.php:613
+#: ../../operation/agentes/alerts_status.php:646
+#: ../../include/ajax/module.php:970 ../../include/ajax/alert_list.ajax.php:276
+#: ../../include/ajax/alert_list.ajax.php:301
+msgid "F."
+msgstr ""
+
+#: ../../operation/agentes/alerts_status.php:549
+#: ../../operation/agentes/alerts_status.php:584
+#: ../../operation/agentes/alerts_status.php:619
+#: ../../operation/agentes/alerts_status.php:651
+#: ../../operation/search_alerts.php:36 ../../include/functions_cron.php:653
+#: ../../include/ajax/alert_list.ajax.php:280
+#: ../../include/ajax/alert_list.ajax.php:305
+#: ../../include/class/AgentsAlerts.class.php:338
+#: ../../include/class/AgentsAlerts.class.php:976
+#: ../../include/functions_treeview.php:412
+#: ../../include/functions_treeview.php:453
+#: ../../include/functions_reporting_html.php:3133
+#: ../../include/functions_reporting_html.php:3136
+#: ../../enterprise/operation/agentes/policy_view.php:259
+#: ../../enterprise/include/functions_reporting_csv.php:2465
+#: ../../enterprise/include/functions_tasklist.php:328
+#: ../../enterprise/meta/monitoring/wizard/wizard.manage_alert.php:224
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:321
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1399
+#: ../../enterprise/godmode/policies/policy_external_alerts.php:329
+#: ../../enterprise/godmode/policies/policy_alerts.php:351
+#: ../../enterprise/godmode/policies/policy_alerts.php:557
+#: ../../mobile/operation/alerts.php:342
+#: ../../godmode/reporting/reporting_builder.item_editor.php:201
+#: ../../godmode/reporting/reporting_builder.item_editor.php:825
+#: ../../godmode/alerts/alert_list.list.php:483
+#: ../../godmode/alerts/alert_list.builder.php:140
+#: ../../godmode/alerts/alert_view.php:95
+msgid "Template"
+msgstr ""
+
+#: ../../operation/agentes/alerts_status.php:551
+#: ../../operation/agentes/alerts_status.php:586
+#: ../../operation/agentes/alerts_status.php:621
+#: ../../operation/agentes/alerts_status.php:653
+#: ../../include/ajax/alert_list.ajax.php:282
+#: ../../include/ajax/alert_list.ajax.php:307
+#: ../../include/class/AgentsAlerts.class.php:905
+#: ../../include/functions_treeview.php:455
+#: ../../include/functions_reporting_html.php:5158
+#: ../../enterprise/operation/agentes/policy_view.php:261
+#: ../../enterprise/godmode/alerts/alert_inventory_list.php:221
+#: ../../godmode/snmpconsole/snmp_alert.php:1238
+#: ../../godmode/alerts/alert_view.php:99
+msgid "Last fired"
+msgstr ""
+
+#: ../../operation/agentes/alerts_status.php:732
+#: ../../include/ajax/alert_list.ajax.php:328
+msgid "No alerts found"
+msgstr ""
+
+#: ../../operation/agentes/alerts_status.php:742
+msgid "Full list of alerts"
+msgstr ""
+
+#: ../../operation/agentes/ehorus.php:30
+msgid "Missing agent id"
+msgstr ""
+
+#: ../../operation/agentes/ehorus.php:51
+msgid "Missing ehorus agent id"
+msgstr ""
+
+#: ../../operation/agentes/ehorus.php:100
+#: ../../operation/agentes/ehorus.php:137
+msgid "There was an error retrieving an authorization token"
+msgstr ""
+
+#: ../../operation/agentes/ehorus.php:112
+#: ../../operation/agentes/ehorus.php:149
+#: ../../operation/agentes/ehorus.php:185
+msgid "There was an error processing the response"
+msgstr ""
+
+#: ../../operation/agentes/ehorus.php:173
+msgid "There was an error retrieving the agent data"
+msgstr ""
+
+#: ../../operation/agentes/ehorus.php:190
+msgid "Remote management of this agent with eHorus"
+msgstr ""
+
+#: ../../operation/agentes/ehorus.php:192
+msgid "Launch"
+msgstr ""
+
+#: ../../operation/agentes/ehorus.php:198
+msgid "The connection was lost and the authorization token was expired"
+msgstr ""
+
+#: ../../operation/agentes/ehorus.php:198
+msgid "Reload the page to request a new authorization token"
+msgstr ""
+
+#: ../../operation/agentes/group_view.php:80
+#: ../../operation/agentes/tactical.php:60
+#: ../../enterprise/tools/ipam/ipam_list.php:631
+#: ../../enterprise/views/ncm/devices/list.php:122
+#: ../../enterprise/operation/services/services.service.php:133
+#: ../../enterprise/operation/services/services.list.php:510
+#: ../../extensions/agents_modules.php:317
+msgid "Last update"
+msgstr ""
+
+#: ../../operation/agentes/group_view.php:180
+msgid "Summary of the status groups"
+msgstr ""
+
+#: ../../operation/agentes/group_view.php:183
+#: ../../operation/agentes/group_view.php:216
+#: ../../operation/agentes/interface_view.functions.php:71
+#: ../../operation/search_results.php:80 ../../include/functions_cron.php:663
+#: ../../include/class/AgentsAlerts.class.php:252
+#: ../../include/class/AgentsAlerts.class.php:542
+#: ../../include/class/Diagnostics.class.php:1161
+#: ../../include/class/Diagnostics.class.php:1165
+#: ../../include/class/Diagnostics.class.php:1169
+#: ../../include/class/Diagnostics.class.php:1173
+#: ../../include/class/NetworkMap.class.php:3228
+#: ../../include/lib/Dashboard/Widgets/groups_status.php:311
+#: ../../include/lib/Dashboard/Widgets/groups_status.php:316
+#: ../../include/lib/Dashboard/Widgets/agent_module.php:448
+#: ../../include/functions_groups.php:53 ../../include/functions_html.php:1645
+#: ../../include/functions_reporting_html.php:1816
+#: ../../include/functions_reporting_html.php:2285
+#: ../../include/functions_reporting_html.php:3034
+#: ../../enterprise/operation/services/services.service_map.php:123
+#: ../../enterprise/include/functions_cron.php:215
+#: ../../enterprise/include/functions_tasklist.php:338
+#: ../../enterprise/include/functions_reporting_pdf.php:861
+#: ../../enterprise/include/functions_policies.php:3822
+#: ../../enterprise/meta/include/functions_autoprovision.php:476
+#: ../../enterprise/meta/monitoring/group_view.php:154
+#: ../../enterprise/meta/monitoring/group_view.php:215
+#: ../../enterprise/meta/monitoring/wizard/wizard.php:304
+#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:362
+#: ../../enterprise/meta/advanced/policymanager.queue.php:258
+#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:291
+#: ../../enterprise/godmode/reporting/reporting_builder.global.php:220
+#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:205
+#: ../../enterprise/godmode/massive/massive_add_service_elements.php:361
+#: ../../enterprise/godmode/massive/massive_create_services.php:964
+#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:248
+#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:100
+#: ../../enterprise/godmode/agentes/collections.editor.php:74
+#: ../../enterprise/godmode/agentes/collections.agents.php:53
+#: ../../enterprise/godmode/agentes/collections.data.php:137
+#: ../../enterprise/godmode/agentes/collections.data.php:283
+#: ../../enterprise/godmode/policies/policy_agents.php:531
+#: ../../enterprise/godmode/policies/policy_agents.php:664
+#: ../../enterprise/godmode/policies/policy_agents.php:778
+#: ../../enterprise/godmode/policies/policy.php:71
+#: ../../enterprise/godmode/policies/policy_queue.php:648
+#: ../../enterprise/godmode/policies/policies.php:407
+#: ../../enterprise/godmode/policies/policies.php:531
+#: ../../extensions/agents_modules.php:431
+#: ../../extensions/agents_modules.php:758 ../../mobile/operation/agent.php:155
+#: ../../mobile/operation/home.php:81 ../../mobile/operation/agents.php:204
+#: ../../mobile/include/functions_web.php:23
+#: ../../godmode/reporting/reporting_builder.list_items.php:208
+#: ../../godmode/reporting/reporting_builder.list_items.php:229
+#: ../../godmode/reporting/reporting_builder.item_editor.php:1671
+#: ../../godmode/reporting/reporting_builder.item_editor.php:1733
+#: ../../godmode/reporting/reporting_builder.item_editor.php:1980
+#: ../../godmode/reporting/visual_console_builder.wizard.php:408
+#: ../../godmode/massive/massive_add_alerts.php:231
+#: ../../godmode/massive/massive_delete_modules.php:535
+#: ../../godmode/massive/massive_standby_alerts.php:203
+#: ../../godmode/massive/massive_edit_agents.php:566
+#: ../../godmode/massive/massive_delete_alerts.php:308
+#: ../../godmode/massive/massive_delete_agents.php:280
+#: ../../godmode/massive/massive_edit_plugins.php:367
+#: ../../godmode/massive/massive_enable_disable_alerts.php:174
+#: ../../godmode/massive/massive_edit_modules.php:511
+#: ../../godmode/agentes/planned_downtime.list.php:84
+#: ../../godmode/agentes/planned_downtime.list.php:108
+#: ../../godmode/alerts/alert_list.list.php:69
+msgid "Agents"
+msgstr ""
+
+#: ../../operation/agentes/group_view.php:221
+#: ../../operation/agentes/group_view.php:276
+#: ../../include/ajax/module.php:1052 ../../include/functions_ui.php:1162
+#: ../../enterprise/operation/services/services.list.php:639
+#: ../../enterprise/include/functions_ipam.php:1384
+#: ../../enterprise/godmode/agentes/inventory_manager.php:257
+#: ../../godmode/wizards/DiscoveryTaskList.class.php:584
+#: ../../godmode/wizards/DiscoveryTaskList.class.php:674
+msgid "Force"
+msgstr ""
+
+#: ../../operation/agentes/group_view.php:313
+#: ../../enterprise/meta/monitoring/group_view.php:359
+#, php-format
+msgid ""
+"This %s installation are using the secondary groups feature. For this "
+"reason, an agent can be counted several times."
+msgstr ""
+
+#: ../../operation/agentes/group_view.php:570
+#: ../../operation/agentes/estado_agente.php:975
+#: ../../enterprise/meta/monitoring/group_view.php:205
+#: ../../godmode/agentes/modificar_agente.php:944
+msgid "There are no defined agents"
+msgstr ""
+
+#: ../../operation/agentes/graphs.php:143
+msgid "Other modules"
+msgstr ""
+
+#: ../../operation/agentes/graphs.php:150
+msgid "Modules network no proc"
+msgstr ""
+
+#: ../../operation/agentes/graphs.php:157
+msgid "Modules boolean"
+msgstr ""
+
+#: ../../operation/agentes/graphs.php:207
+#: ../../operation/agentes/stat_win.php:302
+#: ../../operation/agentes/stat_win.php:421
+#: ../../operation/agentes/exportdata.php:318
+#: ../../operation/agentes/interface_traffic_graph_win.php:181
+#: ../../mobile/operation/module_graph.php:461
+msgid "Begin date"
+msgstr ""
+
+#: ../../operation/agentes/graphs.php:222
+#: ../../operation/agentes/stat_win.php:278
+msgid "Show events"
+msgstr ""
+
+#: ../../operation/agentes/graphs.php:224
+#: ../../operation/agentes/stat_win.php:312
+msgid "Show alerts"
+msgstr ""
+
+#: ../../operation/agentes/graphs.php:224
+msgid "the combined graph does not show the alerts into this graph"
+msgstr ""
+
+#: ../../operation/agentes/graphs.php:226
+msgid "Show as one combined graph"
+msgstr ""
+
+#: ../../operation/agentes/graphs.php:228
+msgid "several graphs for each module"
+msgstr ""
+
+#: ../../operation/agentes/graphs.php:229
+msgid "One combined graph"
+msgstr ""
+
+#: ../../operation/agentes/graphs.php:233
+#: ../../godmode/netflow/nf_item_list.php:177
+msgid "Chart type"
+msgstr ""
+
+#: ../../operation/agentes/graphs.php:237
+#: ../../operation/agentes/graphs.php:413
+msgid "Area stack"
+msgstr ""
+
+#: ../../operation/agentes/graphs.php:239
+#: ../../operation/agentes/graphs.php:421
+msgid "Line stack"
+msgstr ""
+
+#: ../../operation/agentes/graphs.php:256
+msgid "Save as custom graph"
+msgstr ""
+
+#: ../../operation/agentes/graphs.php:269
+msgid "Filter graphs"
+msgstr ""
+
+#: ../../operation/agentes/graphs.php:296
+msgid "There was an error loading the graph"
+msgstr ""
+
+#: ../../operation/agentes/graphs.php:304
+#: ../../operation/agentes/graphs.php:308
+msgid "Name custom graph"
+msgstr ""
+
+#: ../../operation/agentes/graphs.php:342
+#: ../../enterprise/views/ncm/agent/manage.php:259
+#: ../../enterprise/include/ajax/transactional.ajax.php:83
+#: ../../enterprise/godmode/reporting/mysql_builder.php:240
+#: ../../enterprise/godmode/reporting/reporting_builder.template_editor.php:109
+#: ../../extensions/insert_data.php:208 ../../godmode/setup/snmp_wizard.php:100
+#: ../../godmode/setup/gis_step_2.php:521
+#: ../../godmode/reporting/reporting_builder.main.php:45
+#: ../../godmode/reporting/visual_console_builder.data.php:229
+msgid "Save"
+msgstr ""
+
+#: ../../operation/agentes/graphs.php:354
+msgid "Save custom graph"
+msgstr ""
+
+#: ../../operation/agentes/graphs.php:375
+msgid "Custom graph create from the tab graphs in the agent."
+msgstr ""
+
+#: ../../operation/agentes/estado_monitores.php:51
+msgid "Tag's information"
+msgstr ""
+
+#: ../../operation/agentes/estado_monitores.php:109
+msgid "Relationship information"
+msgstr ""
+
+#: ../../operation/agentes/estado_monitores.php:160
+msgid "Non-initialized modules found."
+msgstr ""
+
+#: ../../operation/agentes/estado_monitores.php:181
+msgid "List of modules"
+msgstr ""
+
+#: ../../operation/agentes/estado_monitores.php:182
+msgid ""
+"To see the list of modules paginated, enable this option in the Styles "
+"Configuration."
+msgstr ""
+
+#: ../../operation/agentes/estado_monitores.php:518
+msgid "Status:"
+msgstr ""
+
+#: ../../operation/agentes/estado_monitores.php:524
+msgid "Not Normal"
+msgstr ""
+
+#: ../../operation/agentes/estado_monitores.php:539
+#: ../../operation/agentes/alerts_status.functions.php:177
+msgid "Free text for search (*):"
+msgstr ""
+
+#: ../../operation/agentes/estado_monitores.php:540
+msgid "Search by module name, list matches."
+msgstr ""
+
+#: ../../operation/agentes/estado_monitores.php:582
+#: ../../godmode/agentes/module_manager.php:192
+msgid "Show in hierachy mode"
+msgstr ""
+
+#: ../../operation/agentes/estado_monitores.php:602
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1953
+msgid "Reset"
+msgstr ""
+
+#: ../../operation/agentes/interface_view.functions.php:93
+#: ../../operation/agentes/interface_view.functions.php:131
+#: ../../operation/agentes/ver_agente.php:1401
+#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:53
+#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:410
+msgid "Interfaces"
+msgstr ""
+
+#: ../../operation/agentes/interface_view.functions.php:170
+#: ../../operation/agentes/interface_view.functions.php:171
+msgid "Interface filter"
+msgstr ""
+
+#: ../../operation/agentes/interface_view.functions.php:489
+msgid "IfName"
+msgstr ""
+
+#: ../../operation/agentes/interface_view.functions.php:499
+msgid "IfSpeed"
+msgstr ""
+
+#: ../../operation/agentes/interface_view.functions.php:507
+msgid "IfInOctets"
+msgstr ""
+
+#: ../../operation/agentes/interface_view.functions.php:515
+msgid "IfOutOctets"
+msgstr ""
+
+#: ../../operation/agentes/interface_view.functions.php:523
+msgid "% Bandwidth usage (in)"
+msgstr ""
+
+#: ../../operation/agentes/interface_view.functions.php:531
+msgid "% Bandwidth usage (out)"
+msgstr ""
+
+#: ../../operation/agentes/interface_view.functions.php:539
+#: ../../include/functions_treeview.php:319
+#: ../../include/functions_reporting_html.php:90
+#: ../../include/functions_reporting_html.php:5480
+#: ../../enterprise/include/functions_reporting_pdf.php:1988
+msgid "Last data"
+msgstr ""
+
+#: ../../operation/agentes/interface_view.functions.php:736
+msgid "No search parameters"
+msgstr ""
+
+#: ../../operation/agentes/stat_win.php:51
+#: ../../operation/agentes/stat_win.php:176
+#: ../../operation/agentes/realtime_win.php:51
+#: ../../operation/agentes/interface_traffic_graph_win.php:54
+#: ../../include/chart_generator.php:125
+#: ../../enterprise/operation/inventory/inventory.php:191
+msgid "There was a problem connecting with the node"
+msgstr ""
+
+#: ../../operation/agentes/stat_win.php:116
+#, php-format
+msgid "%s Graph"
+msgstr ""
+
+#: ../../operation/agentes/stat_win.php:149
+msgid "There was a problem locating the source of the graph"
+msgstr ""
+
+#: ../../operation/agentes/stat_win.php:267
+#: ../../operation/agentes/interface_traffic_graph_win.php:167
+msgid "Refresh time"
+msgstr ""
+
+#: ../../operation/agentes/stat_win.php:297
+#, php-format
+msgid ""
+"'Show events' is disabled because this %s node is set to event replication."
+msgstr ""
+
+#: ../../operation/agentes/stat_win.php:320
+#: ../../operation/agentes/stat_win.php:431
+#: ../../operation/agentes/interface_traffic_graph_win.php:207
+msgid "Begin time"
+msgstr ""
+
+#: ../../operation/agentes/stat_win.php:330
+#: ../../mobile/operation/module_graph.php:444
+msgid "Show unknown graph"
+msgstr ""
+
+#: ../../operation/agentes/stat_win.php:353
+msgid "Zoom"
+msgstr ""
+
+#: ../../operation/agentes/stat_win.php:373
+#: ../../operation/agentes/interface_traffic_graph_win.php:227
+msgid "Show percentil"
+msgstr ""
+
+#: ../../operation/agentes/stat_win.php:382
+#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:543
+#: ../../mobile/operation/module_graph.php:436
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2507
+msgid "Time compare (Overlapped)"
+msgstr ""
+
+#: ../../operation/agentes/stat_win.php:390
+#: ../../operation/agentes/stat_win.php:452
+#: ../../mobile/operation/module_graph.php:428
+msgid "Time compare (Separated)"
+msgstr ""
+
+#: ../../operation/agentes/stat_win.php:399
+msgid "Show AVG/MAX/MIN data series in graph"
+msgstr ""
+
+#: ../../operation/agentes/stat_win.php:408
+#: ../../operation/agentes/interface_traffic_graph_win.php:238
+#: ../../godmode/reporting/create_container.php:437
+#: ../../godmode/reporting/create_container.php:494
+#: ../../godmode/reporting/create_container.php:589
+#: ../../godmode/reporting/graph_builder.main.php:285
+msgid "Show full scale graph (TIP)"
+msgstr ""
+
+#: ../../operation/agentes/stat_win.php:410
+#: ../../operation/agentes/interface_traffic_graph_win.php:240
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2492
+#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:560
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2488
+msgid ""
+"TIP mode charts do not support average - maximum - minimum series, you can "
+"only enable TIP or average, maximum or minimum series"
+msgstr ""
+
+#: ../../operation/agentes/stat_win.php:464
+#: ../../operation/agentes/interface_traffic_graph_win.php:276
+#: ../../enterprise/views/cluster/view.php:441
+msgid "Reload"
+msgstr ""
+
+#: ../../operation/agentes/stat_win.php:502
+#: ../../operation/agentes/interface_traffic_graph_win.php:306
+msgid "Graph configuration menu"
+msgstr ""
+
+#: ../../operation/agentes/stat_win.php:504
+#: ../../operation/agentes/interface_traffic_graph_win.php:308
+#: ../../include/ajax/module.php:399
+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 ""
+
+#: ../../operation/agentes/pandora_networkmap.php:139
+#: ../../operation/agentes/pandora_networkmap.php:374
+msgid "Succesfully created"
+msgstr ""
+
+#: ../../operation/agentes/pandora_networkmap.php:140
+#: ../../operation/agentes/pandora_networkmap.php:375
+#: ../../include/functions_alerts.php:2745
+#: ../../include/functions_planned_downtimes.php:112
+#: ../../include/functions_planned_downtimes.php:827
+#: ../../enterprise/tools/ipam/ipam_network_location_config.php:51
+#: ../../enterprise/tools/ipam/ipam_action.php:153
+#: ../../enterprise/operation/agentes/transactional_map.php:135
+#: ../../enterprise/include/ajax/servers.ajax.php:198
+#: ../../enterprise/godmode/setup/setup_metaconsole.php:126
+#: ../../enterprise/godmode/servers/credential_boxes_satellite.php:81
+#: ../../enterprise/godmode/servers/manage_export.php:112
+#: ../../enterprise/godmode/servers/manage_export.php:119
+#: ../../enterprise/godmode/modules/local_components.php:142
+#: ../../enterprise/godmode/modules/local_components.php:318
+#: ../../enterprise/godmode/reporting/reporting_builder.template_editor.php:48
+#: ../../enterprise/godmode/alerts/alert_inventory_builder.php:77
+#: ../../enterprise/godmode/policies/policies.php:170
+#: ../../enterprise/godmode/policies/policy_external_alerts.php:124
+#: ../../enterprise/godmode/policies/policy_external_alerts.php:127
+#: ../../godmode/setup/news.php:67 ../../godmode/setup/gis.php:49
+#: ../../godmode/modules/manage_network_components.php:199
+#: ../../godmode/modules/manage_network_components.php:427
+#: ../../godmode/modules/manage_nc_groups.php:85
+#: ../../godmode/reporting/reporting_builder.item_editor.php:5695
+#: ../../godmode/agentes/configurar_agente.php:350
+#: ../../godmode/agentes/configurar_agente.php:875
+#: ../../godmode/agentes/planned_downtime.editor.php:406
+#: ../../godmode/alerts/configure_alert_template.php:192
+#: ../../godmode/alerts/configure_alert_template.php:527
+#: ../../godmode/alerts/alert_commands.php:559
+#: ../../godmode/alerts/alert_list.php:165
+#: ../../godmode/users/configure_user.php:475
+msgid "Could not be created"
+msgstr ""
+
+#: ../../operation/agentes/pandora_networkmap.php:215
+#: ../../operation/agentes/pandora_networkmap.php:507
+msgid "Succesfully updated"
+msgstr ""
+
+#: ../../operation/agentes/pandora_networkmap.php:532
+msgid "Succesfully duplicate"
+msgstr ""
+
+#: ../../operation/agentes/pandora_networkmap.php:533
+#: ../../enterprise/godmode/policies/policy_modules.php:1412
+msgid "Could not be duplicated"
+msgstr ""
+
+#: ../../operation/agentes/pandora_networkmap.php:546
+msgid "Succesfully deleted"
+msgstr ""
+
+#: ../../operation/agentes/pandora_networkmap.php:656
+msgid "List of network maps"
+msgstr ""
+
+#: ../../operation/agentes/pandora_networkmap.php:669
+#: ../../operation/agentes/pandora_networkmap.editor.php:218
+#: ../../operation/agentes/pandora_networkmap.view.php:2230
+#: ../../enterprise/godmode/agentes/pandora_networkmap_empty.editor.php:106
+#: ../../godmode/agentes/pandora_networkmap_empty.editor.php:108
+msgid "Networkmap"
+msgstr ""
+
+#: ../../operation/agentes/pandora_networkmap.php:708
+#: ../../include/functions_reporting_html.php:5589
+#: ../../enterprise/views/cluster/list.php:62
+msgid "Nodes"
+msgstr ""
+
+#: ../../operation/agentes/pandora_networkmap.php:776
+msgid "Empty map"
+msgstr ""
+
+#: ../../operation/agentes/pandora_networkmap.php:778
+#: ../../include/functions_reporting.php:1060
+#: ../../include/functions_reporting.php:8923
+#: ../../include/functions_maps.php:50
+#: ../../enterprise/include/functions_reporting.php:2535
+#: ../../enterprise/include/functions_reporting.php:3479
+#: ../../enterprise/include/functions_reporting.php:4454
+#: ../../enterprise/godmode/services/services.elements.php:99
+msgid "Dynamic"
+msgstr ""
+
+#: ../../operation/agentes/pandora_networkmap.php:780
+msgid "Pending to generate"
+msgstr ""
+
+#: ../../operation/agentes/pandora_networkmap.php:811
+msgid "There are no maps defined."
+msgstr ""
+
+#: ../../operation/agentes/pandora_networkmap.php:818
+msgid "Create network map"
+msgstr ""
+
+#: ../../operation/agentes/pandora_networkmap.php:825
+msgid "Create empty network map"
+msgstr ""
+
+#: ../../operation/agentes/realtime_win.php:85
+#, php-format
+msgid "%s Realtime Module Graph"
+msgstr ""
+
+#: ../../operation/agentes/realtime_win.php:112
+msgid "Realtime extension is not enabled."
+msgstr ""
+
+#: ../../operation/agentes/log_sources_status.php:57
+#: ../../godmode/wizards/DiscoveryTaskList.class.php:1289
+#: ../../godmode/wizards/DiscoveryTaskList.class.php:1853
+msgid "Review"
+msgstr ""
+
+#: ../../operation/agentes/log_sources_status.php:75
+msgid "Review in log viewer"
+msgstr ""
+
+#: ../../operation/agentes/log_sources_status.php:98
+msgid "No log sources found"
+msgstr ""
+
+#: ../../operation/agentes/log_sources_status.php:117
+msgid "Log sources status"
+msgstr ""
+
+#: ../../operation/agentes/exportdata.csv.php:66
+#: ../../operation/agentes/exportdata.php:71
+#: ../../operation/agentes/exportdata.excel.php:66
+msgid "Invalid time specified"
+msgstr ""
+
+#: ../../operation/agentes/exportdata.csv.php:178
+#: ../../operation/agentes/exportdata.php:209
+#: ../../operation/agentes/exportdata.excel.php:161
+msgid "No modules specified"
+msgstr ""
+
+#: ../../operation/agentes/exportdata.php:248
+#: ../../enterprise/godmode/agentes/manage_config_remote.php:153
+msgid "Source agent"
+msgstr ""
+
+#: ../../operation/agentes/exportdata.php:283
+msgid "No modules of type string. You can not calculate their average"
+msgstr ""
+
+#: ../../operation/agentes/exportdata.php:375
+msgid "Export type"
+msgstr ""
+
+#: ../../operation/agentes/exportdata.php:378
+#: ../../include/functions_netflow.php:1184
+msgid "Data table"
+msgstr ""
+
+#: ../../operation/agentes/exportdata.php:379
+#: ../../enterprise/operation/reporting/custom_reporting.php:18
+#: ../../enterprise/godmode/reporting/reporting_builder.template.php:505
+#: ../../extensions/insert_data.php:199
+msgid "CSV"
+msgstr ""
+
+#: ../../operation/agentes/exportdata.php:380
+msgid "MS Excel"
+msgstr ""
+
+#: ../../operation/agentes/exportdata.php:381
+msgid "Average per hour/day"
+msgstr ""
+
+#: ../../operation/agentes/exportdata.php:389
+#: ../../enterprise/include/functions_reporting.php:8135
+#: ../../enterprise/extensions/resource_exportation/functions.php:21
+#: ../../extensions/resource_exportation.php:435
+#: ../../extensions/resource_exportation.php:438
+msgid "Export"
+msgstr ""
+
+#: ../../operation/agentes/tactical.php:201
+msgid "Report of State"
+msgstr ""
+
+#: ../../operation/agentes/tactical.php:228
+#: ../../include/functions_events.php:2588
+msgid "Latest events"
+msgstr ""
+
+#: ../../operation/agentes/tactical.php:245
+#: ../../include/functions_events.php:2731
+msgid "Event graph"
+msgstr ""
+
+#: ../../operation/agentes/tactical.php:248
+#: ../../include/functions_events.php:2733
+msgid "Event graph by agent"
+msgstr ""
+
+#: ../../operation/agentes/tactical.php:254
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2897
+#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:681
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2915
+msgid "Event graphs"
+msgstr ""
+
+#: ../../operation/agentes/alerts_status.functions.php:50
+msgid "Alert(s) validated"
+msgstr ""
+
+#: ../../operation/agentes/alerts_status.functions.php:51
+msgid "Error processing alert(s)"
+msgstr ""
+
+#: ../../operation/agentes/alerts_status.functions.php:93
+#: ../../mobile/operation/alerts.php:64
+#: ../../godmode/alerts/alert_list.list.php:135
+msgid "All (Enabled)"
+msgstr ""
+
+#: ../../operation/agentes/alerts_status.functions.php:101
+#: ../../include/functions_ui.php:1155
+#: ../../enterprise/operation/agentes/policy_view.php:292
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3273
+#: ../../mobile/operation/alerts.php:73
+#: ../../godmode/alerts/alert_list.list.php:143
+msgid "Standby on"
+msgstr ""
+
+#: ../../operation/agentes/alerts_status.functions.php:102
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3267
+#: ../../mobile/operation/alerts.php:74
+#: ../../godmode/alerts/alert_list.list.php:144
+msgid "Standby off"
+msgstr ""
+
+#: ../../operation/agentes/alerts_status.functions.php:117
+#: ../../operation/agentes/datos_agente.php:211
+msgid "Free text for search"
+msgstr ""
+
+#: ../../operation/agentes/alerts_status.functions.php:118
+msgid "Filter by agent name, module name, template name or action name"
+msgstr ""
+
+#: ../../operation/agentes/alerts_status.functions.php:129
+msgid "No actions"
+msgstr ""
+
+#: ../../operation/agentes/alerts_status.functions.php:178
+msgid "Filter by module name, template name or action name"
+msgstr ""
+
+#: ../../operation/agentes/custom_fields.php:24
+#: ../../operation/agentes/estado_generalagente.php:62
+#: ../../operation/agentes/agent_fields.php:24
+#: ../../include/functions_treeview.php:564
+msgid "There was a problem loading agent"
+msgstr ""
+
+#: ../../operation/agentes/custom_fields.php:59
+msgid "No fields defined"
+msgstr ""
+
+#: ../../operation/agentes/custom_fields.php:65
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2656
+#: ../../godmode/agentes/fields_manager.php:119
+#: ../../godmode/alerts/alert_view.php:441
+#: ../../godmode/alerts/alert_view.php:564
+msgid "Field"
+msgstr ""
+
+#: ../../operation/agentes/custom_fields.php:67
+#: ../../godmode/agentes/configure_field.php:95
+#: ../../godmode/agentes/fields_manager.php:120
+msgid "Display on front"
+msgstr ""
+
+#: ../../operation/agentes/custom_fields.php:67
+#: ../../godmode/agentes/configure_field.php:96
+#: ../../godmode/agentes/fields_manager.php:120
+msgid ""
+"The fields with display on front enabled will be displayed into the agent "
+"details"
+msgstr ""
+
+#: ../../operation/agentes/custom_fields.php:90
+#: ../../operation/agentes/agent_fields.php:47
+msgid "empty"
+msgstr ""
+
+#: ../../operation/agentes/datos_agente.php:173
+msgid "Received data from"
+msgstr ""
+
+#: ../../operation/agentes/datos_agente.php:180
+msgid "Main database"
+msgstr ""
+
+#: ../../operation/agentes/datos_agente.php:180
+#: ../../enterprise/include/functions_setup.php:67
+#: ../../enterprise/include/functions_setup.php:119
+#: ../../enterprise/godmode/menu.php:148
+msgid "History database"
+msgstr ""
+
+#: ../../operation/agentes/datos_agente.php:181
+msgid ""
+"Switch between the main database and the history database to retrieve module "
+"data"
+msgstr ""
+
+#: ../../operation/agentes/datos_agente.php:194
+#: ../../include/ajax/module.php:223
+msgid "Choose a time from now"
+msgstr ""
+
+#: ../../operation/agentes/datos_agente.php:197
+#: ../../include/ajax/module.php:249
+msgid "Specify time range"
+msgstr ""
+
+#: ../../operation/agentes/datos_agente.php:295
+#: ../../include/ajax/module.php:560
+#: ../../godmode/reporting/map_builder.php:452
+#: ../../godmode/reporting/map_builder.php:469
+#: ../../godmode/agentes/module_manager.php:794
+msgid "No available data to show"
+msgstr ""
+
+#: ../../operation/agentes/estado_agente.php:242
+msgid "Sucessfully deleted agent"
+msgstr ""
+
+#: ../../operation/agentes/estado_agente.php:244
+msgid "There was an error message deleting the agent"
+msgstr ""
+
+#: ../../operation/agentes/estado_agente.php:285
+msgid "Search in custom fields"
+msgstr ""
+
+#: ../../operation/agentes/estado_agente.php:898
+#: ../../enterprise/operation/agentes/tag_view.php:647
+msgid "Remote config"
+msgstr ""
+
+#: ../../operation/agentes/pandora_networkmap.editor.php:205
+msgid "Network maps editor"
+msgstr ""
+
+#: ../../operation/agentes/pandora_networkmap.editor.php:256
+#: ../../operation/agentes/pandora_networkmap.view.php:2236
+#: ../../enterprise/godmode/agentes/pandora_networkmap_empty.editor.php:113
+#: ../../godmode/agentes/pandora_networkmap_empty.editor.php:115
+msgid "Not found networkmap."
+msgstr ""
+
+#: ../../operation/agentes/pandora_networkmap.editor.php:311
+#: ../../operation/agentes/pandora_networkmap.view.php:106
+#: ../../enterprise/extensions/vmware/vmware_view.php:1758
+#: ../../enterprise/godmode/agentes/pandora_networkmap_empty.editor.php:152
+#: ../../godmode/agentes/pandora_networkmap_empty.editor.php:154
+msgid "Node radius"
+msgstr ""
+
+#: ../../operation/agentes/pandora_networkmap.editor.php:324
+#: ../../operation/agentes/pandora_networkmap.view.php:127
+msgid "Position X"
+msgstr ""
+
+#: ../../operation/agentes/pandora_networkmap.editor.php:326
+#: ../../operation/agentes/pandora_networkmap.view.php:129
+msgid "Position Y"
+msgstr ""
+
+#: ../../operation/agentes/pandora_networkmap.editor.php:329
+#: ../../operation/agentes/pandora_networkmap.view.php:132
+msgid "Zoom scale"
+msgstr ""
+
+#: ../../operation/agentes/pandora_networkmap.editor.php:334
+#: ../../operation/agentes/pandora_networkmap.view.php:134
+msgid ""
+"Introduce zoom level. 1 = Highest resolution. Figures may include decimals"
+msgstr ""
+
+#: ../../operation/agentes/pandora_networkmap.editor.php:337
+#: ../../operation/agentes/pandora_networkmap.view.php:137
+#: ../../include/functions_groups.php:107
+msgid "Discovery task"
+msgstr ""
+
+#: ../../operation/agentes/pandora_networkmap.editor.php:337
+#: ../../operation/agentes/pandora_networkmap.view.php:137
+msgid "CIDR IP mask"
+msgstr ""
+
+#: ../../operation/agentes/pandora_networkmap.editor.php:339
+#: ../../operation/agentes/pandora_networkmap.view.php:164
+msgid "Source from recon task"
+msgstr ""
+
+#: ../../operation/agentes/pandora_networkmap.editor.php:341
+#: ../../operation/agentes/pandora_networkmap.view.php:166
+msgid ""
+"It is setted any recon task, the nodes get from the recontask IP mask "
+"instead from the group."
+msgstr ""
+
+#: ../../operation/agentes/pandora_networkmap.editor.php:358
+#: ../../operation/agentes/pandora_networkmap.view.php:182
+msgid "Show only the task with the recon script \"SNMP L2 Recon\"."
+msgstr ""
+
+#: ../../operation/agentes/pandora_networkmap.editor.php:362
+#: ../../operation/agentes/pandora_networkmap.view.php:186
+msgid "Source from CIDR IP mask"
+msgstr ""
+
+#: ../../operation/agentes/pandora_networkmap.editor.php:365
+#: ../../enterprise/godmode/agentes/manage_config_remote.php:140
+msgid "Source group"
+msgstr ""
+
+#: ../../operation/agentes/pandora_networkmap.editor.php:382
+msgid "Source id group changed. All elements in networkmap will be lost."
+msgstr ""
+
+#: ../../operation/agentes/pandora_networkmap.editor.php:387
+#: ../../operation/agentes/pandora_networkmap.view.php:198
+msgid "Don't show subgroups:"
+msgstr ""
+
+#: ../../operation/agentes/pandora_networkmap.editor.php:405
+#: ../../operation/agentes/pandora_networkmap.view.php:232
+msgid "Method generation networkmap"
+msgstr ""
+
+#: ../../operation/agentes/pandora_networkmap.editor.php:425
+#: ../../operation/agentes/pandora_networkmap.view.php:247
+#: ../../enterprise/extensions/vmware/vmware_view.php:1762
+msgid "Node separation"
+msgstr ""
+
+#: ../../operation/agentes/pandora_networkmap.editor.php:426
+#: ../../operation/agentes/pandora_networkmap.view.php:248
+msgid "Separation between nodes. By default 0.25"
+msgstr ""
+
+#: ../../operation/agentes/pandora_networkmap.editor.php:428
+#: ../../operation/agentes/pandora_networkmap.view.php:250
+msgid "Rank separation"
+msgstr ""
+
+#: ../../operation/agentes/pandora_networkmap.editor.php:429
+#: ../../operation/agentes/pandora_networkmap.view.php:251
+msgid ""
+"Only flat and radial. Separation between arrows. By default 0.5 in flat and "
+"1.0 in radial"
+msgstr ""
+
+#: ../../operation/agentes/pandora_networkmap.editor.php:431
+#: ../../operation/agentes/pandora_networkmap.view.php:253
+msgid "Min nodes dist"
+msgstr ""
+
+#: ../../operation/agentes/pandora_networkmap.editor.php:432
+#: ../../operation/agentes/pandora_networkmap.view.php:254
+msgid "Only circular. Minimum separation between all nodes. By default 1.0"
+msgstr ""
+
+#: ../../operation/agentes/pandora_networkmap.editor.php:434
+#: ../../operation/agentes/pandora_networkmap.view.php:256
+msgid "Default ideal node separation"
+msgstr ""
+
+#: ../../operation/agentes/pandora_networkmap.editor.php:435
+#: ../../operation/agentes/pandora_networkmap.view.php:257
+msgid "Only fdp. Default ideal node separation in the layout. By default 0.3"
+msgstr ""
+
+#: ../../operation/agentes/pandora_networkmap.editor.php:445
+#: ../../enterprise/godmode/agentes/pandora_networkmap_empty.editor.php:173
+#: ../../godmode/agentes/pandora_networkmap_empty.editor.php:175
+msgid "Save networkmap"
+msgstr ""
+
+#: ../../operation/agentes/pandora_networkmap.editor.php:456
+#: ../../enterprise/godmode/agentes/pandora_networkmap_empty.editor.php:184
+#: ../../godmode/agentes/pandora_networkmap_empty.editor.php:186
+msgid "Update networkmap"
+msgstr ""
+
+#: ../../operation/agentes/pandora_networkmap.editor.php:601
+msgid "Source id group changed. All elements in Networkmap will be lost"
+msgstr ""
+
+#: ../../operation/agentes/interface_traffic_graph_win.php:78
+#: ../../include/rest-api/models/VisualConsole/View.php:738
+#: ../../include/rest-api/models/VisualConsole/View.php:817
+msgid "In"
+msgstr ""
+
+#: ../../operation/agentes/interface_traffic_graph_win.php:79
+#: ../../include/rest-api/models/VisualConsole/View.php:739
+#: ../../include/rest-api/models/VisualConsole/View.php:818
+msgid "Out"
+msgstr ""
+
+#: ../../operation/agentes/interface_traffic_graph_win.php:95
+#, php-format
+msgid "%s Interface Graph"
+msgstr ""
+
+#: ../../operation/agentes/interface_traffic_graph_win.php:250
+msgid "Zoom factor"
+msgstr ""
+
+#: ../../operation/agentes/interface_traffic_graph_win.php:257
+msgid "Full"
+msgstr ""
+
+#: ../../operation/agentes/estado_generalagente.php:57
+msgid "The agent has not assigned server. Maybe agent does not run fine."
+msgstr ""
+
+#: ../../operation/agentes/estado_generalagente.php:214
+#: ../../enterprise/views/cluster/view.php:273
+msgid "IP address"
+msgstr ""
+
+#: ../../operation/agentes/estado_generalagente.php:267
+msgid "Remote configuration enabled"
+msgstr ""
+
+#: ../../operation/agentes/estado_generalagente.php:309
+msgid "Agent contact"
+msgstr ""
+
+#: ../../operation/agentes/estado_generalagente.php:316
+msgid "Refresh data"
+msgstr ""
+
+#: ../../operation/agentes/estado_generalagente.php:357
+msgid "Next contact"
+msgstr ""
+
+#: ../../operation/agentes/estado_generalagente.php:389
+#: ../../include/functions_events.php:5118
+#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:528
+#: ../../godmode/reporting/reporting_builder.item_editor.php:73
+#: ../../godmode/agentes/agent_manager.php:457
+msgid "Secondary groups"
+msgstr ""
+
+#: ../../operation/agentes/estado_generalagente.php:406
+#: ../../operation/agentes/ver_agente.php:1209
+#: ../../include/functions_visual_map_editor.php:956
+#: ../../include/rest-api/models/VisualConsole/Item.php:2175
+#: ../../enterprise/views/ipam/sites/edit.php:64
+#: ../../enterprise/views/ipam/sites/list.php:48
+#: ../../godmode/modules/manage_nc_groups_form.php:71
+#: ../../godmode/reporting/visual_console_builder.elements.php:108
+#: ../../godmode/massive/massive_edit_agents.php:648
+#: ../../godmode/agentes/agent_manager.php:526
+#: ../../godmode/groups/configure_group.php:170
+#: ../../godmode/groups/group_list.php:848
+msgid "Parent"
+msgstr ""
+
+#: ../../operation/agentes/estado_generalagente.php:445
+msgid "Agent info"
+msgstr ""
+
+#: ../../operation/agentes/estado_generalagente.php:452
+#: ../../include/functions_treeview.php:750
+msgid "Position (Long, Lat)"
+msgstr ""
+
+#: ../../operation/agentes/estado_generalagente.php:458
+msgid "There is no GIS data."
+msgstr ""
+
+#: ../../operation/agentes/estado_generalagente.php:476
+#: ../../operation/agentes/ver_agente.php:1517
+#: ../../include/functions_treeview.php:759
+#: ../../godmode/agentes/agent_manager.php:614
+#: ../../godmode/agentes/agent_manager.php:631
+msgid "Url address"
+msgstr ""
+
+#: ../../operation/agentes/estado_generalagente.php:486
+#: ../../include/functions_treeview.php:634
+msgid "Other IP addresses"
+msgstr ""
+
+#: ../../operation/agentes/estado_generalagente.php:494
+#: ../../include/functions_treeview.php:767
+msgid "Timezone Offset"
+msgstr ""
+
+#: ../../operation/agentes/estado_generalagente.php:525
+#: ../../operation/agentes/agent_fields.php:44
+#: ../../include/functions_treeview.php:783
+#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:256
+msgid "Custom field"
+msgstr ""
+
+#: ../../operation/agentes/estado_generalagente.php:579
+msgid "Agent access rate (Last 24h)"
+msgstr ""
+
+#: ../../operation/agentes/estado_generalagente.php:618
+msgid "Active incident on this agent"
+msgstr ""
+
+#: ../../operation/agentes/estado_generalagente.php:622
+#: ../../godmode/setup/news.php:248
+msgid "Author"
+msgstr ""
+
+#: ../../operation/agentes/estado_generalagente.php:629
+#: ../../operation/incidents/integriaims_export_csv.php:81
+#: ../../operation/incidents/configure_integriaims_incident.php:213
+#: ../../operation/incidents/list_integriaims_incidents.php:516
+#: ../../include/lib/Dashboard/Widget.php:545
+#: ../../include/rest-api/models/VisualConsole/Items/Odometer.php:404
+#: ../../enterprise/include/functions_reporting_csv.php:421
+#: ../../enterprise/include/functions_reporting_csv.php:443
+#: ../../enterprise/include/functions_reporting_csv.php:474
+#: ../../enterprise/include/functions_reporting_csv.php:697
+#: ../../enterprise/include/functions_reporting_csv.php:741
+#: ../../enterprise/include/functions_reporting_csv.php:755
+#: ../../enterprise/include/functions_reporting_csv.php:769
+#: ../../enterprise/include/functions_reporting_csv.php:789
+#: ../../enterprise/include/functions_reporting_csv.php:818
+#: ../../enterprise/include/functions_reporting_csv.php:857
+#: ../../enterprise/include/functions_reporting_csv.php:901
+#: ../../enterprise/include/functions_reporting_csv.php:933
+#: ../../enterprise/include/functions_reporting_csv.php:970
+#: ../../enterprise/include/functions_reporting_csv.php:993
+#: ../../enterprise/include/functions_reporting_csv.php:1144
+#: ../../enterprise/include/functions_reporting_csv.php:1171
+#: ../../enterprise/include/functions_reporting_csv.php:1202
+#: ../../enterprise/include/functions_reporting_csv.php:1257
+#: ../../enterprise/include/functions_reporting_csv.php:1312
+#: ../../enterprise/include/functions_reporting_csv.php:1361
+#: ../../enterprise/include/functions_reporting_csv.php:1416
+#: ../../enterprise/include/functions_reporting_csv.php:1445
+#: ../../enterprise/include/functions_reporting_csv.php:1482
+#: ../../enterprise/include/functions_reporting_csv.php:1608
+#: ../../enterprise/include/functions_reporting_csv.php:1724
+#: ../../enterprise/include/functions_reporting_csv.php:1868
+#: ../../enterprise/include/functions_reporting_csv.php:1918
+#: ../../enterprise/include/functions_reporting_csv.php:1964
+#: ../../enterprise/include/functions_reporting_csv.php:2032
+#: ../../enterprise/include/functions_reporting_csv.php:2176
+#: ../../enterprise/include/functions_reporting_csv.php:2268
+#: ../../enterprise/include/functions_reporting_csv.php:2299
+#: ../../enterprise/include/functions_reporting_csv.php:2335
+#: ../../enterprise/include/functions_reporting_csv.php:2388
+#: ../../enterprise/include/functions_reporting_csv.php:2410
+#: ../../enterprise/include/functions_reporting_csv.php:2451
+#: ../../enterprise/include/functions_reporting_csv.php:2505
+#: ../../enterprise/include/functions_reporting_csv.php:2534
+#: ../../enterprise/include/functions_reporting_csv.php:2610
+#: ../../enterprise/include/functions_reporting_csv.php:2661
+#: ../../enterprise/include/functions_reporting_csv.php:2710
+#: ../../enterprise/include/functions_reporting_csv.php:2787
+#: ../../enterprise/include/ajax/log_viewer.ajax.php:55
+#: ../../godmode/setup/setup_integria.php:333
+#: ../../godmode/setup/setup_integria.php:454
+msgid "Title"
+msgstr ""
+
+#: ../../operation/agentes/estado_generalagente.php:631
+#: ../../operation/incidents/integriaims_export_csv.php:85
+#: ../../operation/incidents/configure_integriaims_incident.php:296
+#: ../../operation/incidents/list_integriaims_incidents.php:348
+#: ../../operation/incidents/list_integriaims_incidents.php:519
+#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:325
+#: ../../include/functions_events.php:4670
+#: ../../include/functions_reporting_html.php:5038
+#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:443
+#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:503
+#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:555
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:815
+#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:82
+#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:464
+#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:204
+#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:264
+#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:328
+#: ../../godmode/setup/setup_integria.php:379
+#: ../../godmode/setup/setup_integria.php:501
+#: ../../godmode/snmpconsole/snmp_alert.php:1018
+#: ../../godmode/snmpconsole/snmp_alert.php:1080
+#: ../../godmode/agentes/agent_incidents.php:91
+#: ../../godmode/alerts/configure_alert_template.php:1118
+#: ../../godmode/alerts/alert_list.list.php:126
+#: ../../godmode/alerts/alert_templates.php:51
+#: ../../godmode/alerts/alert_view.php:124
+msgid "Priority"
+msgstr ""
+
+#: ../../operation/agentes/estado_generalagente.php:700
+#: ../../operation/agentes/pandora_networkmap.view.php:1234
+#: ../../include/functions_treeview.php:878
+msgid "Interface traffic"
+msgstr ""
+
+#: ../../operation/agentes/estado_generalagente.php:777
+msgid "Events info (24hr.)"
+msgstr ""
+
+#: ../../operation/agentes/estado_generalagente.php:797
+#: ../../operation/agentes/pandora_networkmap.view.php:1857
+msgid "Last contact: "
+msgstr ""
+
+#: ../../operation/agentes/estado_generalagente.php:870
+#: ../../enterprise/views/cluster/view.php:369
+msgid "Events (Last 24h)"
+msgstr ""
+
+#: ../../operation/agentes/estado_generalagente.php:922
+msgid "Interface information (SNMP)"
+msgstr ""
+
+#: ../../operation/agentes/snapshot_view.php:42
+msgid "Cannot connect with node to display the module data."
+msgstr ""
+
+#: ../../operation/agentes/snapshot_view.php:90
+#, php-format
+msgid "%s Snapshot data view for module (%s)"
+msgstr ""
+
+#: ../../operation/agentes/snapshot_view.php:96
+#, php-format
+msgid "Current data at %s"
+msgstr ""
+
+#: ../../operation/agentes/pandora_networkmap.view.php:1611
+msgid "Success be updated."
+msgstr ""
+
+#: ../../operation/agentes/pandora_networkmap.view.php:1613
+#: ../../enterprise/tools/ipam/ipam_action.php:374
+msgid "Could not be updated."
+msgstr ""
+
+#: ../../operation/agentes/pandora_networkmap.view.php:1708
+msgid "Name: "
+msgstr ""
+
+#: ../../operation/agentes/pandora_networkmap.view.php:1758
+msgid "Policy: "
+msgstr ""
+
+#: ../../operation/agentes/pandora_networkmap.view.php:1805
+#: ../../enterprise/extensions/vmware/vmware_manager.php:269
+msgid "Status: "
+msgstr ""
+
+#: ../../operation/agentes/pandora_networkmap.view.php:1855
+msgid "Data: "
+msgstr ""
+
+#: ../../operation/agentes/status_events.php:26
+#: ../../operation/agentes/status_events.php:27
+msgid "Latest events for this agent"
+msgstr ""
+
+#: ../../operation/agentes/gis_view.php:59
+#: ../../godmode/agentes/agent_conf_gis.php:38
+msgid ""
+"There is no default map. Please go to the setup for to set a default map."
+msgstr ""
+
+#: ../../operation/agentes/gis_view.php:96
+msgid "Period to show data as path"
+msgstr ""
+
+#: ../../operation/agentes/gis_view.php:100
+msgid "Refresh path"
+msgstr ""
+
+#: ../../operation/agentes/gis_view.php:158
+msgid "This agent doesn't have any GIS data."
+msgstr ""
+
+#: ../../operation/agentes/gis_view.php:170
+msgid "Positional data from the last"
+msgstr ""
+
+#: ../../operation/agentes/gis_view.php:209
+#, php-format
+msgid "%s Km"
+msgstr ""
+
+#: ../../operation/agentes/gis_view.php:217
+#: ../../godmode/setup/gis_step_2.php:483
+msgid "Longitude"
+msgstr ""
+
+#: ../../operation/agentes/gis_view.php:218
+#: ../../godmode/setup/gis_step_2.php:465
+msgid "Latitude"
+msgstr ""
+
+#: ../../operation/agentes/gis_view.php:219
+#: ../../godmode/setup/gis_step_2.php:501
+msgid "Altitude"
+msgstr ""
+
+#: ../../operation/agentes/gis_view.php:221
+#: ../../include/functions_snmp.php:413 ../../include/functions_snmp.php:421
+#: ../../include/rest-api/index.php:361
+#: ../../include/rest-api/models/VisualConsole/Items/ColorCloud.php:460
+#: ../../include/rest-api/models/VisualConsole/Items/ColorCloud.php:520
+#: ../../include/functions_reporting_html.php:3702
+#: ../../enterprise/include/functions_reporting_csv.php:716
+#: ../../enterprise/include/functions_reporting_csv.php:952
+#: ../../enterprise/include/functions_reporting_csv.php:1325
+#: ../../enterprise/include/functions_reporting_pdf.php:1984
+#: ../../godmode/agentes/planned_downtime.list.php:302
+msgid "To"
+msgstr ""
+
+#: ../../operation/agentes/gis_view.php:223
+msgid "Distance"
+msgstr ""
+
+#: ../../operation/agentes/gis_view.php:224
+msgid "# of Packages"
+msgstr ""
+
+#: ../../operation/agentes/ver_agente.php:1008
+#: ../../enterprise/operation/agentes/ver_agente.php:72
+msgid "Main IP"
+msgstr ""
+
+#: ../../operation/agentes/ver_agente.php:1020
+#: ../../include/functions_events.php:4503
+#: ../../enterprise/operation/agentes/ver_agente.php:78
+msgid "Last remote contact"
+msgstr ""
+
+#: ../../operation/agentes/ver_agente.php:1065
+#: ../../enterprise/operation/agentes/ver_agente.php:122
+msgid "Monitors down"
+msgstr ""
+
+#: ../../operation/agentes/ver_agente.php:1106
+#: ../../include/lib/Dashboard/Widgets/system_group_status.php:576
+#: ../../enterprise/operation/agentes/ver_agente.php:164
+#: ../../mobile/operation/groups.php:174
+msgid "Alerts fired"
+msgstr ""
+
+#: ../../operation/agentes/ver_agente.php:1172
+#: ../../enterprise/tools/ipam/ipam_excel.php:133
+#: ../../enterprise/tools/ipam/ipam_ajax.php:359
+#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:53
+#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:254
+#: ../../enterprise/tools/ipam/ipam_network.php:395
+#: ../../enterprise/tools/ipam/ipam_calculator.php:62
+#: ../../enterprise/tools/ipam/ipam_supernet_config.php:546
+#: ../../enterprise/views/ncm/devices/list.php:117
+#: ../../enterprise/include/functions_ipam.php:2036
+#: ../../enterprise/godmode/servers/manage_export_form.php:99
+#: ../../enterprise/godmode/servers/manage_export.php:140
+#: ../../godmode/setup/setup_general.php:649
+msgid "Address"
+msgstr ""
+
+#: ../../operation/agentes/ver_agente.php:1223
+msgid "Sons"
+msgstr ""
+
+#: ../../operation/agentes/ver_agente.php:1478
+#: ../../godmode/agentes/configurar_agente.php:509
+msgid "GIS data"
+msgstr ""
+
+#: ../../operation/agentes/ver_agente.php:1551
+#: ../../operation/search_results.php:119
+#: ../../include/functions_reports.php:638
+#: ../../include/functions_reports.php:642
+#: ../../include/functions_reports.php:647
+#: ../../include/functions_reports.php:653
+#: ../../include/functions_reports.php:660
+#: ../../include/functions_reports.php:664
+#: ../../include/functions_reports.php:668
+#: ../../include/functions_reports.php:675
+#: ../../include/functions_reports.php:681
+#: ../../include/functions_reports.php:686
+#: ../../include/functions_groups.php:123
+#: ../../include/functions_groups.php:187
+msgid "Graphs"
+msgstr ""
+
+#: ../../operation/agentes/ver_agente.php:1573
+msgid "Log Viewer"
+msgstr ""
+
+#: ../../operation/agentes/ver_agente.php:1600
+#: ../../godmode/setup/setup.php:177 ../../godmode/setup/setup.php:277
+#: ../../godmode/menu.php:347
+msgid "eHorus"
+msgstr ""
+
+#: ../../operation/agentes/ver_agente.php:1612
+msgid "Terminal"
+msgstr ""
+
+#: ../../operation/agentes/ver_agente.php:1623
+#: ../../include/lib/Dashboard/Widgets/top_n.php:286
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2439
+#: ../../enterprise/godmode/reporting/reporting_builder.global.php:367
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2401
+msgid "Display"
+msgstr ""
+
+#: ../../operation/agentes/ver_agente.php:1634
+msgid "Processes"
+msgstr ""
+
+#: ../../operation/agentes/ver_agente.php:1656
+#: ../../enterprise/include/functions_collection.php:186
+#: ../../enterprise/meta/advanced/collections.editor.php:57
+#: ../../enterprise/meta/advanced/collections.editor.php:385
+#: ../../enterprise/meta/advanced/collections.editor.php:402
+#: ../../enterprise/meta/advanced/collections.data.php:174
+#: ../../enterprise/meta/advanced/collections.data.php:241
+#: ../../enterprise/meta/advanced/collections.data.php:265
+#: ../../enterprise/godmode/agentes/collections.editor.php:65
+#: ../../enterprise/godmode/agentes/collections.editor.php:424
+#: ../../enterprise/godmode/agentes/collections.editor.php:446
+#: ../../enterprise/godmode/agentes/collections.agents.php:50
+#: ../../enterprise/godmode/agentes/collections.data.php:127
+#: ../../enterprise/godmode/agentes/collections.data.php:281
+#: ../../enterprise/godmode/agentes/collections.data.php:334
+msgid "Files"
+msgstr ""
+
+#: ../../operation/agentes/ver_agente.php:1674
+#: ../../operation/agentes/ver_agente.php:1873
+#: ../../enterprise/operation/menu.php:61
+msgid "SAP view"
+msgstr ""
+
+#: ../../operation/agentes/ver_agente.php:1686
+#: ../../godmode/setup/setup.php:224 ../../godmode/setup/setup.php:311
+#: ../../godmode/menu.php:361
+msgid "External Tools"
+msgstr ""
+
+#: ../../operation/users/user_edit.php:31
+#: ../../godmode/users/configure_user.php:244
+msgid "User detail editor"
+msgstr ""
+
+#: ../../operation/users/user_edit.php:153
+msgid "Current password of user is required to perform password change"
+msgstr ""
+
+#: ../../operation/users/user_edit.php:155
+msgid "Current password of user is not correct"
+msgstr ""
+
+#: ../../operation/users/user_edit.php:159
+msgid ""
+"Passwords didn't match or other problem encountered while updating passwords"
+msgstr ""
+
+#: ../../operation/users/user_edit.php:172
+#: ../../operation/users/user_edit.php:187
+msgid "Password successfully updated"
+msgstr ""
+
+#: ../../operation/users/user_edit.php:182
+#: ../../operation/users/user_edit.php:230
+msgid "Error updating user info"
+msgstr ""
+
+#: ../../operation/users/user_edit.php:184
+#: ../../operation/users/user_edit.php:229
+#: ../../godmode/users/configure_user.php:643
+#: ../../godmode/users/configure_user.php:667
+#: ../../godmode/users/configure_user.php:737
+#: ../../godmode/users/configure_user.php:744
+#: ../../godmode/users/configure_user.php:776
+msgid "User info successfully updated"
+msgstr ""
+
+#: ../../operation/users/user_edit.php:189
+msgid "Skin successfully updated"
+msgstr ""
+
+#: ../../operation/users/user_edit.php:192
+#: ../../enterprise/godmode/reporting/mysql_builder.php:214
+msgid "No changes have been made"
+msgstr ""
+
+#: ../../operation/users/user_edit.php:203
+msgid "Please enter a valid email"
+msgstr ""
+
+#: ../../operation/users/user_edit.php:205
+msgid "Please enter a valid phone number"
+msgstr ""
+
+#: ../../operation/users/user_edit.php:211
+msgid "Error updating passwords: "
+msgstr ""
+
+#: ../../operation/users/user_edit.php:235
+msgid "Edit my User"
+msgstr ""
+
+#: ../../operation/users/user_edit.php:251
+#: ../../godmode/users/user_list.php:432
+#, php-format
+msgid ""
+"This node is configured with centralized mode. All users information is read "
+"only. Go to %s to manage it."
+msgstr ""
+
+#: ../../operation/users/user_edit.php:272
+#: ../../godmode/users/configure_user.php:899
+msgid "Full (display) name"
+msgstr ""
+
+#: ../../operation/users/user_edit.php:292
+#: ../../godmode/users/configure_user.php:1021
+msgid "E-mail"
+msgstr ""
+
+#: ../../operation/users/user_edit.php:294
+#: ../../godmode/users/configure_user.php:1037
+msgid "Phone number"
+msgstr ""
+
+#: ../../operation/users/user_edit.php:298
+#: ../../enterprise/include/process_reset_pass.php:103
+#: ../../enterprise/meta/include/process_reset_pass.php:96
+msgid "New Password"
+msgstr ""
+
+#: ../../operation/users/user_edit.php:299
+#: ../../godmode/users/configure_user.php:950
+msgid "Password confirmation"
+msgstr ""
+
+#: ../../operation/users/user_edit.php:300
+msgid "Current password"
+msgstr ""
+
+#: ../../operation/users/user_edit.php:302
+msgid "You cannot change your password under the current authentication scheme"
+msgstr ""
+
+#: ../../operation/users/user_edit.php:317
+msgid "If checkbox is clicked then block size global configuration is used"
+msgstr ""
+
+#: ../../operation/users/user_edit.php:325
+#: ../../enterprise/meta/advanced/metasetup.translate_string.php:174
+#: ../../enterprise/extensions/translate_string.php:302
+#: ../../godmode/users/configure_user.php:904
+msgid "Language"
+msgstr ""
+
+#: ../../operation/users/user_edit.php:354
+#: ../../godmode/users/configure_user.php:1103
+msgid "Home screen"
+msgstr ""
+
+#: ../../operation/users/user_edit.php:354
+#: ../../godmode/users/configure_user.php:1104
+msgid ""
+"User can customize the home page. By default, will display 'Agent Detail'. "
+"Example: Select 'Other' and type index.php?sec=estado&sec2=operation/agentes/"
+"ver_agente&id_agente=1 to show agent detail view"
+msgstr ""
+
+#: ../../operation/users/user_edit.php:401
+#: ../../operation/users/user_edit.php:410
+#: ../../godmode/users/configure_user.php:1072
+msgid "Skin"
+msgstr ""
+
+#: ../../operation/users/user_edit.php:411
+msgid "This change will only apply to nodes"
+msgstr ""
+
+#: ../../operation/users/user_edit.php:419
+#: ../../godmode/users/configure_user.php:916
+msgid "Timezone"
+msgstr ""
+
+#: ../../operation/users/user_edit.php:419
+#: ../../godmode/users/configure_user.php:917
+msgid "The timezone must be that of the associated server."
+msgstr ""
+
+#: ../../operation/users/user_edit.php:426
+#: ../../include/functions_config.php:776
+#: ../../enterprise/meta/include/functions_meta.php:582
+#: ../../enterprise/meta/include/functions_meta.php:884
+#: ../../godmode/setup/setup_auth.php:353
+#: ../../godmode/users/configure_user.php:1332
+msgid "Double authentication"
+msgstr ""
+
+#: ../../operation/users/user_edit.php:440
+#: ../../godmode/users/configure_user.php:1350
+msgid "Show information"
+msgstr ""
+
+#: ../../operation/users/user_edit.php:448
+msgid "Event filter"
+msgstr ""
+
+#: ../../operation/users/user_edit.php:519
+msgid "Autorefresh"
+msgstr ""
+
+#: ../../operation/users/user_edit.php:520
+msgid "This will activate autorefresh in selected pages"
+msgstr ""
+
+#: ../../operation/users/user_edit.php:555
+msgid "Full list of pages"
+msgstr ""
+
+#: ../../operation/users/user_edit.php:564
+#: ../../operation/users/user_edit.php:565
+msgid "Push selected pages into autorefresh list"
+msgstr ""
+
+#: ../../operation/users/user_edit.php:573
+#: ../../operation/users/user_edit.php:574
+msgid "Pop selected pages out of autorefresh list"
+msgstr ""
+
+#: ../../operation/users/user_edit.php:579
+msgid "List of pages with autorefresh"
+msgstr ""
+
+#: ../../operation/users/user_edit.php:588
+msgid "Time autorefresh"
+msgstr ""
+
+#: ../../operation/users/user_edit.php:590
+msgid ""
+"Interval of autorefresh of the elements, by default they are 30 seconds, "
+"needing to enable the autorefresh first"
+msgstr ""
+
+#: ../../operation/users/user_edit.php:685
+msgid "eHorus user configuration"
+msgstr ""
+
+#: ../../operation/users/user_edit.php:690
+msgid "eHorus user acces enabled"
+msgstr ""
+
+#: ../../operation/users/user_edit.php:711
+#: ../../operation/users/user_edit.php:757
+#: ../../enterprise/include/lib/NetworkManager.php:82
+#: ../../godmode/setup/setup_integria.php:566
+#: ../../godmode/setup/setup_ehorus.php:111
+msgid "Test"
+msgstr ""
+
+#: ../../operation/users/user_edit.php:712
+#: ../../operation/users/user_edit.php:758
+#: ../../enterprise/operation/agentes/transactional_map.php:398
+#: ../../godmode/setup/setup_integria.php:567
+#: ../../godmode/setup/setup_ehorus.php:112 ../../godmode/menu.php:31
+msgid "Start"
+msgstr ""
+
+#: ../../operation/users/user_edit.php:737
+msgid "Integria user configuration"
+msgstr ""
+
+#: ../../operation/users/user_edit.php:774
+msgid ""
+"You can not change your user info under the current authentication scheme"
+msgstr ""
+
+#: ../../operation/users/user_edit.php:787
+#: ../../operation/users/user_edit.php:796
+#: ../../include/functions_profile.php:188
+msgid "Profiles/Groups assigned to this user"
+msgstr ""
+
+#: ../../operation/users/user_edit.php:813
+#: ../../include/functions_profile.php:213
+#: ../../enterprise/godmode/setup/setup_acl.php:591
+#: ../../godmode/massive/massive_add_profiles.php:202
+#: ../../godmode/massive/massive_delete_profiles.php:151
+#: ../../godmode/users/configure_profile.php:265
+msgid "Profile name"
+msgstr ""
+
+#: ../../operation/users/user_edit.php:851
+msgid "This user doesn't have any assigned profile/group."
+msgstr ""
+
+#: ../../operation/users/user_edit.php:1079
+#: ../../godmode/users/configure_user.php:1840
+msgid "Double autentication information"
+msgstr ""
+
+#: ../../operation/users/user_edit.php:1168
+#: ../../godmode/users/configure_user.php:1930
+msgid "The double authentication will be deactivated"
+msgstr ""
+
+#: ../../operation/users/user_edit.php:1169
+#: ../../godmode/users/configure_user.php:1931
+msgid "Deactivate"
+msgstr ""
+
+#: ../../operation/users/user_edit.php:1201
+#: ../../godmode/users/configure_user.php:1967
+msgid "The double autentication was deactivated successfully"
+msgstr ""
+
+#: ../../operation/users/user_edit.php:1204
+#: ../../operation/users/user_edit.php:1208
+#: ../../godmode/users/configure_user.php:1971
+#: ../../godmode/users/configure_user.php:1975
+msgid "There was an error deactivating the double autentication"
+msgstr ""
+
+#: ../../operation/users/user_edit.php:1243
+#: ../../operation/users/user_edit.php:1321
+#: ../../godmode/setup/setup_integria.php:720
+#: ../../godmode/setup/setup_integria.php:801
+#: ../../godmode/setup/setup_ehorus.php:255
+msgid "Empty user or password"
+msgstr ""
+
+#: ../../operation/users/user_edit.php:1244
+#: ../../operation/users/user_edit.php:1322
+#: ../../godmode/setup/setup_integria.php:721
+#: ../../godmode/setup/setup_integria.php:802
+#: ../../godmode/setup/setup_ehorus.php:256
+msgid "User not found"
+msgstr ""
+
+#: ../../operation/users/user_edit.php:1245
+#: ../../operation/users/user_edit.php:1323
+#: ../../godmode/setup/setup_integria.php:722
+#: ../../godmode/setup/setup_integria.php:803
+#: ../../godmode/setup/setup_ehorus.php:257
+msgid "Invalid password"
+msgstr ""
+
+#: ../../operation/users/user_edit_notifications.php:36
+#: ../../operation/users/user_edit_header.php:102
+msgid "User notifications"
+msgstr ""
+
+#: ../../operation/users/user_edit_notifications.php:64
+#: ../../enterprise/include/lib/Metaconsole/Node.php:1165
+#: ../../enterprise/include/lib/Metaconsole/Node.php:1166
+#: ../../enterprise/include/functions_HA_cluster.php:61
+#: ../../enterprise/godmode/agentes/agent_autoconfiguration.php:174
+#: ../../enterprise/godmode/agentes/plugins_manager.php:195
+#: ../../enterprise/godmode/agentes/plugins_manager.php:262
+#: ../../enterprise/godmode/policies/policy_alerts.php:722
+#: ../../godmode/extensions.php:257
+#: ../../godmode/alerts/alert_list.list.php:1030
+#: ../../godmode/users/user_list.php:745
+msgid "Enable"
+msgstr ""
+
+#: ../../operation/users/user_edit_notifications.php:65
+msgid "Also receive an email"
+msgstr ""
+
+#: ../../operation/users/user_edit_notifications.php:94
+msgid "Controls have been disabled by the system administrator"
+msgstr ""
+
+#: ../../operation/users/user_edit_header.php:91
+#: ../../enterprise/meta/general/main_menu.php:458
+#: ../../enterprise/meta/general/main_menu.php:518
+#: ../../enterprise/meta/general/main_menu.php:525
+#: ../../enterprise/meta/general/main_header.php:321
+#: ../../enterprise/meta/general/main_header.php:401
+#: ../../enterprise/meta/general/main_header.php:408
+#: ../../enterprise/meta/include/functions_users_meta.php:182
+#: ../../enterprise/meta/include/functions_users_meta.php:204
+#: ../../godmode/users/user_list.php:214 ../../godmode/users/user_list.php:239
+#: ../../godmode/users/user_list.php:250
+#: ../../godmode/users/configure_user.php:223
+#: ../../godmode/users/configure_profile.php:55
+#: ../../godmode/users/configure_profile.php:76
+#: ../../godmode/users/profile_list.php:63
+#: ../../godmode/users/profile_list.php:84
+msgid "User management"
+msgstr ""
+
+#: ../../operation/users/user_edit_header.php:131
+msgid "Edit user"
+msgstr ""
+
+#: ../../operation/search_helps.php:17
+msgid "Zero results found."
+msgstr ""
+
+#: ../../operation/search_helps.php:18
+#, php-format
+msgid ""
+"You can find more help in the <a class=\"underline\" href=\"%s\">wiki</a>"
+msgstr ""
+
+#: ../../operation/search_helps.php:32
+msgid "Matches"
+msgstr ""
+
+#: ../../operation/search_results.php:67
+msgid "Global search"
+msgstr ""
+
+#: ../../operation/search_results.php:93
+#: ../../include/functions_reporting.php:11579
+#: ../../godmode/massive/massive_add_profiles.php:204
+#: ../../godmode/massive/massive_delete_profiles.php:153
+msgid "Users"
+msgstr ""
+
+#: ../../operation/search_results.php:132
+#: ../../include/functions_groups.php:139
+#: ../../include/functions_reporting.php:15012
+#: ../../enterprise/meta/general/main_menu.php:269
+#: ../../enterprise/meta/general/main_header.php:167
+#: ../../enterprise/meta/general/main_header.php:183
+#: ../../enterprise/mobile/include/functions_web.php:15
+msgid "Reports"
+msgstr ""
+
+#: ../../operation/incidents/integriaims_export_csv.php:80
+msgid "ID Ticket"
+msgstr ""
+
+#: ../../operation/incidents/integriaims_export_csv.php:82
+#: ../../operation/incidents/list_integriaims_incidents.php:517
+msgid "Group/Company"
+msgstr ""
+
+#: ../../operation/incidents/integriaims_export_csv.php:86
+#: ../../enterprise/tools/ipam/ipam_ajax.php:494
+#: ../../enterprise/include/class/DatabaseHA.class.php:798
+#: ../../enterprise/meta/advanced/servers.build_table.php:68
+#: ../../godmode/servers/servers.build_table.php:87
+#: ../../godmode/agentes/agent_incidents.php:93
+msgid "Updated"
+msgstr ""
+
+#: ../../operation/incidents/integriaims_export_csv.php:87
+msgid "Started"
+msgstr ""
+
+#: ../../operation/incidents/integriaims_export_csv.php:88
+#: ../../operation/incidents/configure_integriaims_incident.php:282
+#: ../../operation/incidents/list_integriaims_incidents.php:345
+#: ../../operation/incidents/list_integriaims_incidents.php:521
+msgid "Creator"
+msgstr ""
+
+#: ../../operation/incidents/incident_statistics.php:24
+#: ../../operation/incidents/configure_integriaims_incident.php:33
+#: ../../operation/incidents/list_integriaims_incidents.php:34
+#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:23
+#: ../../godmode/agentes/agent_incidents.php:22
+msgid ""
+"In order to access ticket management system, integration with Integria IMS "
+"must be enabled and properly configured"
+msgstr ""
+
+#: ../../operation/incidents/incident_statistics.php:29
+msgid "Incidents by status"
+msgstr ""
+
+#: ../../operation/incidents/incident_statistics.php:32
+msgid "Incidents by priority"
+msgstr ""
+
+#: ../../operation/incidents/incident_statistics.php:35
+msgid "Incidents by group"
+msgstr ""
+
+#: ../../operation/incidents/incident_statistics.php:38
+msgid "Incidents by user"
+msgstr ""
+
+#: ../../operation/incidents/configure_integriaims_incident.php:26
+msgid "Update Integria IMS Ticket"
+msgstr ""
+
+#: ../../operation/incidents/configure_integriaims_incident.php:28
+msgid "Create Integria IMS Ticket"
+msgstr ""
+
+#: ../../operation/incidents/configure_integriaims_incident.php:41
+#: ../../operation/incidents/list_integriaims_incidents.php:42
+#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:31
+#: ../../godmode/setup/setup_integria.php:64
+msgid "Integria IMS API is not reachable"
+msgstr ""
+
+#: ../../operation/incidents/configure_integriaims_incident.php:123
+msgid "Successfully created in Integria IMS"
+msgstr ""
+
+#: ../../operation/incidents/configure_integriaims_incident.php:124
+msgid "Could not be created in Integria IMS"
+msgstr ""
+
+#: ../../operation/incidents/configure_integriaims_incident.php:144
+msgid "Successfully updated in Integria IMS"
+msgstr ""
+
+#: ../../operation/incidents/configure_integriaims_incident.php:145
+msgid "Could not be updated in Integria IMS"
+msgstr ""
+
+#: ../../operation/incidents/configure_integriaims_incident.php:294
+msgid ""
+"This field corresponds to the Integria IMS user specified in Integria IMS "
+"setup"
+msgstr ""
+
+#: ../../operation/incidents/configure_integriaims_incident.php:352
+#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:206
+msgid "File name"
+msgstr ""
+
+#: ../../operation/incidents/configure_integriaims_incident.php:354
+#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:208
+msgid "Attachment description"
+msgstr ""
+
+#: ../../operation/incidents/list_integriaims_incidents.php:24
+msgid "Integria IMS Tickets"
+msgstr ""
+
+#: ../../operation/incidents/list_integriaims_incidents.php:317
+msgid "Text filter"
+msgstr ""
+
+#: ../../operation/incidents/list_integriaims_incidents.php:381
+msgid "Created from"
+msgstr ""
+
+#: ../../operation/incidents/list_integriaims_incidents.php:393
+msgid "Created to"
+msgstr ""
+
+#: ../../operation/incidents/list_integriaims_incidents.php:518
+msgid "Status/Resolution"
+msgstr ""
+
+#: ../../operation/incidents/list_integriaims_incidents.php:520
+msgid "Updated/Started"
+msgstr ""
+
+#: ../../operation/incidents/list_integriaims_incidents.php:564
+msgid "No tickets to show"
+msgstr ""
+
+#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:59
+#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:378
+#: ../../include/ajax/events.php:1507
+#: ../../enterprise/tools/ipam/ipam_ajax.php:483
+#: ../../enterprise/include/functions_ipam.php:1341
+msgid "Details"
+msgstr ""
+
+#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:77
+msgid "Not yet"
+msgstr ""
+
+#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:81
+msgid "Not closed yet"
+msgstr ""
+
+#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:115
+#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:246
+msgid "Filename"
+msgstr ""
+
+#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:119
+#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:250
+#: ../../include/functions_visual_map_editor.php:125
+#: ../../include/functions_visual_map_editor.php:178
+#: ../../include/functions_visual_map_editor.php:838
+#: ../../include/functions_visual_map_editor.php:933
+#: ../../include/functions_filemanager.php:606
+#: ../../include/rest-api/models/VisualConsole/Item.php:1991
+#: ../../include/rest-api/models/VisualConsole/Items/Box.php:214
+#: ../../enterprise/include/class/ManageBackups.class.php:164
+#: ../../extensions/files_repo/files_repo_list.php:57
+#: ../../godmode/events/event_responses.editor.php:130
+msgid "Size"
+msgstr ""
+
+#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:124
+#: ../../enterprise/meta/include/ajax/wizard.ajax.php:609
+#: ../../enterprise/meta/monitoring/wizard/wizard.php:135
+msgid "No description available"
+msgstr ""
+
+#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:142
+msgid "File successfully deleted"
+msgstr ""
+
+#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:143
+msgid "File could not be deleted"
+msgstr ""
+
+#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:222
+msgid "Add attachment"
+msgstr ""
+
+#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:224
+#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:397
+msgid "Attached files"
+msgstr ""
+
+#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:282
+msgid "Comment successfully added"
+msgstr ""
+
+#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:283
+msgid "Comment could not be added"
+msgstr ""
+
+#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:309
+msgid "No comments found"
+msgstr ""
+
+#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:314
+#: ../../include/functions_events.php:3755
+#: ../../include/functions_events.php:5360
+msgid "Add comment"
+msgstr ""
+
+#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:349
+msgid "Created by"
+msgstr ""
+
+#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:350
+msgid "Owned by"
+msgstr ""
+
+#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:351
+msgid "Closed by"
+msgstr ""
+
+#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:366
+#: ../../enterprise/include/functions_ipam.php:2044
+msgid "Created at"
+msgstr ""
+
+#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:367
+#: ../../enterprise/operation/agentes/transactional_map.php:212
+#: ../../godmode/wizards/DiscoveryTaskList.class.php:609
+msgid "Updated at"
+msgstr ""
+
+#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:368
+msgid "Closed at"
+msgstr ""
+
+#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:379
+msgid "People"
+msgstr ""
+
+#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:380
+#: ../../include/functions_reporting_html.php:6104
+msgid "Dates"
+msgstr ""
+
+#: ../../include/functions_cron.php:455
+msgid "Scheduled jobs"
+msgstr ""
+
+#: ../../include/functions_cron.php:464
+#: ../../enterprise/include/functions_tasklist.php:153
+#: ../../enterprise/meta/advanced/cron_main.php:354
+#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:630
+msgid "Task"
+msgstr ""
+
+#: ../../include/functions_cron.php:465
+#: ../../enterprise/include/functions_tasklist.php:154
+#: ../../enterprise/meta/advanced/cron_main.php:385
+#: ../../enterprise/godmode/setup/setup_history.php:678
+#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:640
+msgid "Scheduled"
+msgstr ""
+
+#: ../../include/functions_cron.php:466
+#: ../../enterprise/include/functions_tasklist.php:155
+#: ../../enterprise/meta/advanced/cron_main.php:398
+msgid "Next execution"
+msgstr ""
+
+#: ../../include/functions_cron.php:467
+#: ../../enterprise/include/functions_tasklist.php:156
+msgid "Last run"
+msgstr ""
+
+#: ../../include/functions_cron.php:469
+#: ../../include/class/AgentsAlerts.class.php:254
+#: ../../include/class/AgentsAlerts.class.php:285
+#: ../../include/functions_filemanager.php:607
+#: ../../include/functions_treeview.php:413
+#: ../../include/functions_reporting.php:2721
+#: ../../include/functions_reporting_html.php:3134
+#: ../../enterprise/tools/ipam/ipam_vlan_config.php:689
+#: ../../enterprise/tools/ipam/ipam_ajax.php:532
+#: ../../enterprise/tools/ipam/ipam_supernet_config.php:1072
+#: ../../enterprise/views/ncm/agent/details.php:485
+#: ../../enterprise/operation/services/services.list.php:513
+#: ../../enterprise/operation/agentes/transactional_map.php:213
+#: ../../enterprise/operation/agentes/manage_transmap_creation.php:190
+#: ../../enterprise/include/functions_reporting_csv.php:2465
+#: ../../enterprise/include/class/ManageBackups.class.php:167
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2293
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2461
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3432
+#: ../../enterprise/meta/include/functions_autoprovision.php:477
+#: ../../enterprise/meta/include/functions_alerts_meta.php:133
+#: ../../enterprise/meta/include/functions_alerts_meta.php:164
+#: ../../enterprise/meta/monitoring/wizard/wizard.php:140
+#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:468
+#: ../../enterprise/meta/advanced/collections.php:339
+#: ../../enterprise/godmode/setup/setup_skins.php:128
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2117
+#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:387
+#: ../../enterprise/godmode/agentes/inventory_manager.php:224
+#: ../../enterprise/godmode/agentes/agent_autoconfiguration.php:142
+#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:379
+#: ../../enterprise/godmode/agentes/collections.php:332
+#: ../../enterprise/godmode/alerts/alert_inventory_list.php:223
+#: ../../enterprise/godmode/policies/policy_external_alerts.php:350
+#: ../../enterprise/godmode/policies/policy_external_alerts.php:384
+#: ../../enterprise/godmode/policies/policy_external_alerts.php:682
+#: ../../enterprise/godmode/policies/policy_inventory_modules.php:305
+#: ../../enterprise/godmode/policies/policy_alerts.php:353
+#: ../../godmode/category/category.php:170
+#: ../../godmode/reporting/reporting_builder.item_editor.php:1946
+#: ../../godmode/menu.php:234 ../../godmode/tag/tag.php:284
+#: ../../godmode/events/event_responses.list.php:53
+#: ../../godmode/agentes/planned_downtime.editor.php:921
+#: ../../godmode/agentes/fields_manager.php:121
+#: ../../godmode/agentes/modificar_agente.php:653
+#: ../../godmode/alerts/alert_list.list.php:120
+#: ../../godmode/alerts/alert_list.list.php:484
+#: ../../godmode/alerts/alert_list.builder.php:96
+#: ../../godmode/alerts/alert_commands.php:659
+#: ../../godmode/alerts/alert_view.php:301
+#: ../../godmode/groups/group_list.php:853
+msgid "Actions"
+msgstr ""
+
+#: ../../include/functions_cron.php:498 ../../include/functions_cron.php:536
+#: ../../include/functions_cron.php:591 ../../include/functions_cron.php:683
+#: ../../include/functions_cron.php:719 ../../include/functions_cron.php:765
+#: ../../include/functions_cron.php:807 ../../include/functions_cron.php:841
+#: ../../enterprise/include/functions_tasklist.php:217
+#: ../../enterprise/include/functions_tasklist.php:279
+#: ../../enterprise/include/functions_tasklist.php:365
+#: ../../enterprise/include/functions_tasklist.php:406
+#: ../../enterprise/include/functions_tasklist.php:459
+#: ../../enterprise/include/functions_tasklist.php:498
+#: ../../enterprise/include/functions_tasklist.php:535
+msgid "Force run"
+msgstr ""
+
+#: ../../include/functions_cron.php:574 ../../include/functions_cron.php:667
+#: ../../include/functions_cron.php:791
+#: ../../enterprise/operation/reporting/custom_reporting.php:109
+#: ../../enterprise/include/functions_reporting_csv.php:983
+#: ../../enterprise/include/functions_reporting_csv.php:1184
+#: ../../enterprise/include/functions_reporting_csv.php:1215
+#: ../../enterprise/include/functions_reporting_csv.php:1270
+#: ../../enterprise/include/functions_reporting_csv.php:1325
+#: ../../enterprise/include/functions_reporting_csv.php:1374
+#: ../../enterprise/include/functions_reporting_csv.php:1429
+#: ../../enterprise/include/functions_tasklist.php:253
+#: ../../enterprise/include/functions_tasklist.php:342
+#: ../../enterprise/include/functions_tasklist.php:436
+#: ../../enterprise/include/functions_reporting.php:8124
+#: ../../enterprise/include/functions_reporting.php:8158
+msgid "Report type"
+msgstr ""
+
+#: ../../include/functions_cron.php:638
+#: ../../enterprise/include/functions_tasklist.php:313
+msgid "regex"
+msgstr ""
+
+#: ../../include/functions_cron.php:664
+#: ../../enterprise/include/functions_cron.php:228
+#: ../../enterprise/include/functions_tasklist.php:339
+msgid "Report per agent"
+msgstr ""
+
+#: ../../include/functions_cron.php:703
+#: ../../enterprise/include/functions_cron.php:299
+#: ../../enterprise/include/functions_tasklist.php:383
+msgid "Custom script"
+msgstr ""
+
+#: ../../include/functions_cron.php:747 ../../include/functions_cron.php:788
+#: ../../include/lib/Dashboard/Widgets/reports.php:307
+#: ../../include/lib/Dashboard/Widgets/reports.php:352
+#: ../../enterprise/include/functions_tasklist.php:433
+#: ../../extensions/resource_exportation.php:433
+msgid "Report"
+msgstr ""
+
+#: ../../include/functions_cron.php:749 ../../include/functions_cron.php:790
+#: ../../include/class/Diagnostics.class.php:2175
+#: ../../enterprise/include/class/ManageBackups.class.php:166
+#: ../../enterprise/include/functions_tasklist.php:435
+msgid "Path"
+msgstr ""
+
+#: ../../include/functions_cron.php:943
+#: ../../enterprise/include/functions_tasklist.php:671
+#: ../../godmode/wizards/DiscoveryTaskList.class.php:1024
+msgid "Disable task"
+msgstr ""
+
+#: ../../include/functions_cron.php:943
+#: ../../enterprise/include/functions_tasklist.php:671
+msgid "Enable task"
+msgstr ""
+
+#: ../../include/functions_incidents.php:29
+#: ../../include/functions_incidents.php:55
+msgid "Informative"
+msgstr ""
+
+#: ../../include/functions_incidents.php:30
+#: ../../include/functions_incidents.php:59
+#: ../../include/functions_netflow.php:1845
+msgid "Low"
+msgstr ""
+
+#: ../../include/functions_incidents.php:31
+#: ../../include/functions_incidents.php:63
+#: ../../include/functions_netflow.php:1846
+msgid "Medium"
+msgstr ""
+
+#: ../../include/functions_incidents.php:32
+#: ../../include/functions_incidents.php:67
+msgid "Serious"
+msgstr ""
+
+#: ../../include/functions_incidents.php:33
+#: ../../include/functions_incidents.php:71
+msgid "Very serious"
+msgstr ""
+
+#: ../../include/functions_incidents.php:34
+#: ../../include/functions_incidents.php:75
+#: ../../include/functions_events.php:3327
+#: ../../include/functions_graph.php:3533
+#: ../../include/functions_graph.php:3534
+#: ../../include/functions_graph.php:5115 ../../include/functions.php:1023
+#: ../../include/functions.php:1269 ../../include/functions.php:1303
+msgid "Maintenance"
+msgstr ""
+
+#: ../../include/functions_incidents.php:95
+#: ../../include/functions_incidents.php:116
+msgid "Active incidents"
+msgstr ""
+
+#: ../../include/functions_incidents.php:96
+#: ../../include/functions_incidents.php:120
+msgid "Active incidents, with comments"
+msgstr ""
+
+#: ../../include/functions_incidents.php:97
+#: ../../include/functions_incidents.php:124
+msgid "Rejected incidents"
+msgstr ""
+
+#: ../../include/functions_incidents.php:98
+#: ../../include/functions_incidents.php:128
+msgid "Expired incidents"
+msgstr ""
+
+#: ../../include/functions_incidents.php:99
+#: ../../include/functions_incidents.php:132
+msgid "Closed incidents"
+msgstr ""
+
+#: ../../include/functions_gis.php:27 ../../include/functions_gis.php:31
+#: ../../include/functions_gis.php:36
+msgid "Hierarchy of agents"
+msgstr ""
+
+#: ../../include/functions_visual_map_editor.php:55
+#: ../../include/functions_visual_map_editor.php:632
+#: ../../include/lib/Dashboard/Widget.php:556
+#: ../../godmode/reporting/visual_console_builder.data.php:169
+#: ../../godmode/reporting/visual_console_builder.elements.php:151
+msgid "Background"
+msgstr ""
+
+#: ../../include/functions_visual_map_editor.php:56
+#: ../../godmode/reporting/visual_console_builder.wizard.php:127
+msgid "Static Graph"
+msgstr ""
+
+#: ../../include/functions_visual_map_editor.php:60
+#: ../../godmode/reporting/visual_console_builder.wizard.php:130
+msgid "Simple value"
+msgstr ""
+
+#: ../../include/functions_visual_map_editor.php:62
+msgid ""
+"To use 'label'field, you should write\n"
+"\t\t\t\t\ta text to replace '(_VALUE_)' and the value of the module will be "
+"printed at the end."
+msgstr ""
+
+#: ../../include/functions_visual_map_editor.php:97
+#: ../../include/functions_visual_map_editor.php:668
+#: ../../include/functions_reports.php:1248
+#: ../../include/rest-api/models/VisualConsole/Items/NetworkLink.php:926
+#: ../../include/rest-api/models/VisualConsole/Items/Line.php:475
+#: ../../enterprise/godmode/reporting/graph_template_editor.php:208
+#: ../../godmode/setup/gis_step_2.php:371
+#: ../../godmode/reporting/visual_console_builder.wizard.php:180
+#: ../../godmode/events/event_responses.editor.php:139
+msgid "Width"
+msgstr ""
+
+#: ../../include/functions_visual_map_editor.php:107
+#: ../../include/functions_visual_map_editor.php:133
+#: ../../include/rest-api/models/VisualConsole/Items/Box.php:299
+msgid "Border color"
+msgstr ""
+
+#: ../../include/functions_visual_map_editor.php:151
+msgid "Border width"
+msgstr ""
+
+#: ../../include/functions_visual_map_editor.php:160
+#: ../../include/rest-api/models/VisualConsole/Items/Clock.php:364
+#: ../../include/rest-api/models/VisualConsole/Items/Box.php:323
+msgid "Fill color"
+msgstr ""
+
+#: ../../include/functions_visual_map_editor.php:239
+msgid ""
+"Scroll the mouse wheel over the label editor to change the background color"
+msgstr ""
+
+#: ../../include/functions_visual_map_editor.php:250
+#: ../../include/functions_filemanager.php:641
+#: ../../include/rest-api/models/VisualConsole/Items/StaticGraph.php:336
+#: ../../include/rest-api/models/VisualConsole/Items/Icon.php:175
+#: ../../include/rest-api/models/VisualConsole/Items/Group.php:522
+#: ../../enterprise/include/rest-api/models/VisualConsole/Items/Service.php:236
+#: ../../godmode/reporting/visual_console_builder.elements.php:105
+#: ../../godmode/reporting/visual_console_builder.wizard.php:151
+msgid "Image"
+msgstr ""
+
+#: ../../include/functions_visual_map_editor.php:255
+#: ../../include/rest-api/models/VisualConsole/Items/Clock.php:333
+msgid "Clock animation"
+msgstr ""
+
+#: ../../include/functions_visual_map_editor.php:258
+#: ../../include/rest-api/models/VisualConsole/Items/Clock.php:328
+msgid "Simple analogic"
+msgstr ""
+
+#: ../../include/functions_visual_map_editor.php:259
+#: ../../include/rest-api/models/VisualConsole/Items/Clock.php:329
+msgid "Simple digital"
+msgstr ""
+
+#: ../../include/functions_visual_map_editor.php:273
+#: ../../include/rest-api/models/VisualConsole/Items/Clock.php:351
+msgid "Time format"
+msgstr ""
+
+#: ../../include/functions_visual_map_editor.php:276
+#: ../../include/rest-api/models/VisualConsole/Items/Clock.php:346
+msgid "Only time"
+msgstr ""
+
+#: ../../include/functions_visual_map_editor.php:277
+#: ../../include/rest-api/models/VisualConsole/Items/Clock.php:347
+msgid "Time and date"
+msgstr ""
+
+#: ../../include/functions_visual_map_editor.php:290
+#: ../../include/functions_register.php:134
+#: ../../include/rest-api/models/VisualConsole/Items/Clock.php:271
+#: ../../enterprise/meta/advanced/metasetup.setup.php:162
+#: ../../godmode/setup/setup_general.php:249
+msgid "Africa"
+msgstr ""
+
+#: ../../include/functions_visual_map_editor.php:291
+#: ../../include/functions_register.php:135
+#: ../../include/rest-api/models/VisualConsole/Items/Clock.php:272
+#: ../../enterprise/meta/advanced/metasetup.setup.php:163
+#: ../../godmode/setup/setup_general.php:250
+msgid "America"
+msgstr ""
+
+#: ../../include/functions_visual_map_editor.php:292
+#: ../../include/functions_register.php:136
+#: ../../include/rest-api/models/VisualConsole/Items/Clock.php:273
+#: ../../enterprise/meta/advanced/metasetup.setup.php:164
+#: ../../godmode/setup/setup_general.php:251
+msgid "Antarctica"
+msgstr ""
+
+#: ../../include/functions_visual_map_editor.php:293
+#: ../../include/functions_register.php:137
+#: ../../include/rest-api/models/VisualConsole/Items/Clock.php:274
+#: ../../enterprise/meta/advanced/metasetup.setup.php:165
+#: ../../godmode/setup/setup_general.php:252
+msgid "Arctic"
+msgstr ""
+
+#: ../../include/functions_visual_map_editor.php:294
+#: ../../include/functions_register.php:138
+#: ../../include/rest-api/models/VisualConsole/Items/Clock.php:275
+#: ../../enterprise/meta/advanced/metasetup.setup.php:166
+#: ../../godmode/setup/setup_general.php:253
+msgid "Asia"
+msgstr ""
+
+#: ../../include/functions_visual_map_editor.php:295
+#: ../../include/functions_register.php:139
+#: ../../include/rest-api/models/VisualConsole/Items/Clock.php:276
+#: ../../enterprise/meta/advanced/metasetup.setup.php:167
+#: ../../godmode/setup/setup_general.php:254
+msgid "Atlantic"
+msgstr ""
+
+#: ../../include/functions_visual_map_editor.php:296
+#: ../../include/functions_register.php:140
+#: ../../include/rest-api/models/VisualConsole/Items/Clock.php:277
+#: ../../enterprise/meta/advanced/metasetup.setup.php:168
+#: ../../godmode/setup/setup_general.php:255
+msgid "Australia"
+msgstr ""
+
+#: ../../include/functions_visual_map_editor.php:297
+#: ../../include/functions_register.php:141
+#: ../../include/rest-api/models/VisualConsole/Items/Clock.php:278
+#: ../../enterprise/meta/advanced/metasetup.setup.php:169
+#: ../../godmode/setup/setup_general.php:256
+msgid "Europe"
+msgstr ""
+
+#: ../../include/functions_visual_map_editor.php:298
+#: ../../include/functions_register.php:142
+#: ../../include/rest-api/models/VisualConsole/Items/Clock.php:279
+#: ../../enterprise/meta/advanced/metasetup.setup.php:170
+#: ../../godmode/setup/setup_general.php:257
+msgid "Indian"
+msgstr ""
+
+#: ../../include/functions_visual_map_editor.php:299
+#: ../../include/functions_register.php:143
+#: ../../include/rest-api/models/VisualConsole/Items/Clock.php:280
+#: ../../enterprise/meta/advanced/metasetup.setup.php:171
+#: ../../godmode/setup/setup_general.php:258
+msgid "Pacific"
+msgstr ""
+
+#: ../../include/functions_visual_map_editor.php:300
+#: ../../include/functions_register.php:144
+#: ../../include/rest-api/models/VisualConsole/Items/Clock.php:281
+#: ../../enterprise/meta/advanced/metasetup.setup.php:172
+#: ../../godmode/setup/setup_general.php:259
+msgid "UTC"
+msgstr ""
+
+#: ../../include/functions_visual_map_editor.php:313
+#: ../../include/rest-api/models/VisualConsole/Items/Clock.php:302
+msgid "Time zone"
+msgstr ""
+
+#: ../../include/functions_visual_map_editor.php:329
+msgid "Enable link"
+msgstr ""
+
+#: ../../include/functions_visual_map_editor.php:347
+#: ../../include/rest-api/models/VisualConsole/Items/BarsGraph.php:469
+#: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:524
+#: ../../godmode/reporting/visual_console_builder.data.php:181
+msgid "Background color"
+msgstr ""
+
+#: ../../include/functions_visual_map_editor.php:350
+#: ../../include/rest-api/models/VisualConsole/Items/BarsGraph.php:463
+#: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:518
+msgid "White"
+msgstr ""
+
+#: ../../include/functions_visual_map_editor.php:351
+#: ../../include/rest-api/models/VisualConsole/Items/BarsGraph.php:464
+#: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:519
+msgid "Black"
+msgstr ""
+
+#: ../../include/functions_visual_map_editor.php:352
+#: ../../include/rest-api/models/VisualConsole/Items/BarsGraph.php:465
+#: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:520
+msgid "Transparent"
+msgstr ""
+
+#: ../../include/functions_visual_map_editor.php:378
+#: ../../include/rest-api/models/VisualConsole/Items/BarsGraph.php:499
+msgid "Grid color"
+msgstr ""
+
+#: ../../include/functions_visual_map_editor.php:397
+#: ../../include/functions_visual_map.php:4179
+#: ../../include/rest-api/models/VisualConsole/Item.php:2099
+#: ../../mobile/operation/home.php:102
+#: ../../godmode/reporting/visual_console_builder.wizard.php:129
+msgid "Module graph"
+msgstr ""
+
+#: ../../include/functions_visual_map_editor.php:397
+#: ../../include/functions_visual_map_editor.php:400
+#: ../../include/functions_reports.php:561
+#: ../../include/functions_reports.php:648
+#: ../../include/functions_reports.php:654
+#: ../../include/functions_reporting.php:9845
+#: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:625
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2154
+#: ../../godmode/reporting/create_container.php:480
+#: ../../godmode/reporting/create_container.php:624
+#: ../../godmode/reporting/visual_console_builder.elements.php:105
+#: ../../godmode/reporting/visual_console_builder.elements.php:575
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2090
+msgid "Custom graph"
+msgstr ""
+
+#: ../../include/functions_visual_map_editor.php:498
+msgid "Data image"
+msgstr ""
+
+#: ../../include/functions_visual_map_editor.php:503
+#: ../../include/rest-api/models/VisualConsole/Items/DonutGraph.php:258
+msgid "Resume data color"
+msgstr ""
+
+#: ../../include/functions_visual_map_editor.php:517
+#: ../../include/rest-api/models/VisualConsole/Items/EventsHistory.php:269
+msgid "24h"
+msgstr ""
+
+#: ../../include/functions_visual_map_editor.php:518
+#: ../../include/rest-api/models/VisualConsole/Items/EventsHistory.php:271
+msgid "8h"
+msgstr ""
+
+#: ../../include/functions_visual_map_editor.php:519
+#: ../../include/rest-api/models/VisualConsole/Items/EventsHistory.php:272
+msgid "2h"
+msgstr ""
+
+#: ../../include/functions_visual_map_editor.php:520
+#: ../../include/rest-api/models/VisualConsole/Items/EventsHistory.php:273
+msgid "1h"
+msgstr ""
+
+#: ../../include/functions_visual_map_editor.php:524
+#: ../../include/rest-api/models/VisualConsole/Items/EventsHistory.php:277
+msgid "Max. Time"
+msgstr ""
+
+#: ../../include/functions_visual_map_editor.php:554
+#: ../../godmode/reporting/create_container.php:428
+#: ../../godmode/reporting/create_container.php:583
+#: ../../godmode/reporting/graph_builder.main.php:208
+msgid "Type of graph"
+msgstr ""
+
+#: ../../include/functions_visual_map_editor.php:612
+#: ../../include/rest-api/models/VisualConsole/Items/SimpleValue.php:371
+#: ../../godmode/reporting/visual_console_builder.wizard.php:256
+msgid "Process"
+msgstr ""
+
+#: ../../include/functions_visual_map_editor.php:615
+#: ../../godmode/reporting/visual_console_builder.wizard.php:259
+msgid "Min value"
+msgstr ""
+
+#: ../../include/functions_visual_map_editor.php:616
+#: ../../include/functions_visual_map_editor.php:682
+#: ../../godmode/reporting/visual_console_builder.wizard.php:260
+#: ../../godmode/reporting/visual_console_builder.wizard.php:278
+msgid "Max value"
+msgstr ""
+
+#: ../../include/functions_visual_map_editor.php:617
+#: ../../godmode/reporting/visual_console_builder.wizard.php:261
+msgid "Avg value"
+msgstr ""
+
+#: ../../include/functions_visual_map_editor.php:640
+msgid "Original Size"
+msgstr ""
+
+#: ../../include/functions_visual_map_editor.php:641
+#: ../../enterprise/meta/advanced/policymanager.apply.php:213
+#: ../../enterprise/meta/advanced/policymanager.queue.php:311
+#: ../../enterprise/godmode/policies/policy_agents.php:854
+#: ../../enterprise/godmode/policies/policy_agents.php:1369
+#: ../../enterprise/godmode/policies/policy_queue.php:714
+msgid "Apply"
+msgstr ""
+
+#: ../../include/functions_visual_map_editor.php:648
+msgid "Aspect ratio"
+msgstr ""
+
+#: ../../include/functions_visual_map_editor.php:649
+msgid "Proportional Width"
+msgstr ""
+
+#: ../../include/functions_visual_map_editor.php:657
+msgid "Height proportional"
+msgstr ""
+
+#: ../../include/functions_visual_map_editor.php:673
+#: ../../include/functions_reports.php:1264
+#: ../../include/functions_reports.php:1364
+#: ../../enterprise/godmode/reporting/graph_template_editor.php:212
+#: ../../godmode/setup/gis_step_2.php:378
+#: ../../godmode/reporting/visual_console_builder.wizard.php:181
+#: ../../godmode/events/event_responses.editor.php:141
+msgid "Height"
+msgstr ""
+
+#: ../../include/functions_visual_map_editor.php:686
+#: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:458
+#: ../../enterprise/meta/include/functions_meta.php:1348
+#: ../../enterprise/meta/advanced/metasetup.visual.php:216
+#: ../../godmode/setup/setup_visuals.php:935
+#: ../../godmode/reporting/visual_console_builder.elements.php:212
+#: ../../godmode/reporting/visual_console_builder.wizard.php:285
+msgid "Percentile"
+msgstr ""
+
+#: ../../include/functions_visual_map_editor.php:687
+#: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:459
+#: ../../godmode/reporting/visual_console_builder.wizard.php:295
+msgid "Bubble"
+msgstr ""
+
+#: ../../include/functions_visual_map_editor.php:688
+#: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:460
+msgid "Circular porgress bar"
+msgstr ""
+
+#: ../../include/functions_visual_map_editor.php:689
+#: ../../include/functions_visual_map.php:4209
+#: ../../include/rest-api/models/VisualConsole/Item.php:2127
+#: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:462
+msgid "Circular progress bar (interior)"
+msgstr ""
+
+#: ../../include/functions_visual_map_editor.php:692
+#: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:504
+#: ../../godmode/reporting/visual_console_builder.wizard.php:309
+msgid "Percent"
+msgstr ""
+
+#: ../../include/functions_visual_map_editor.php:693
+#: ../../include/functions_reports.php:1068 ../../include/ajax/events.php:2003
+#: ../../include/functions_netflow.php:212
+#: ../../include/functions_graph.php:5453
+#: ../../include/functions_snmp_browser.php:560
+#: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:505
+#: ../../include/functions_reporting_html.php:940
+#: ../../include/functions_reporting_html.php:2180
+#: ../../include/functions_reporting_html.php:4646
+#: ../../include/functions_reporting_html.php:5156
+#: ../../enterprise/operation/services/services.service.php:124
+#: ../../enterprise/operation/services/services.list.php:506
+#: ../../enterprise/include/functions_reporting_csv.php:1158
+#: ../../enterprise/include/functions_reporting_csv.php:1184
+#: ../../enterprise/include/functions_reporting_csv.php:1215
+#: ../../enterprise/include/functions_reporting_csv.php:1270
+#: ../../enterprise/include/functions_reporting_csv.php:1374
+#: ../../enterprise/include/functions_reporting_csv.php:2681
+#: ../../enterprise/meta/include/functions_autoprovision.php:643
+#: ../../enterprise/meta/advanced/metasetup.relations.php:430
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2519
+#: ../../enterprise/godmode/reporting/reporting_builder.global.php:405
+#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:827
+#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:376
+#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:548
+#: ../../godmode/setup/setup_visuals.php:1288
+#: ../../godmode/setup/setup_visuals.php:1349
+#: ../../godmode/setup/setup_visuals.php:1369
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2527
+#: ../../godmode/reporting/visual_console_builder.wizard.php:319
+#: ../../godmode/snmpconsole/snmp_trap_generator.php:115
+#: ../../godmode/massive/massive_edit_modules.php:884
+#: ../../godmode/agentes/module_manager_editor_common.php:1214
+#: ../../godmode/alerts/configure_alert_template.php:816
+msgid "Value"
+msgstr ""
+
+#: ../../include/functions_visual_map_editor.php:711
+#: ../../include/functions_visual_map_editor.php:729
+#: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:509
+#: ../../godmode/reporting/visual_console_builder.wizard.php:307
+msgid "Value to show"
+msgstr ""
+
+#: ../../include/functions_visual_map_editor.php:739
+#: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:522
+msgid "Element color"
+msgstr ""
+
+#: ../../include/functions_visual_map_editor.php:759
+#: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:534
+msgid "Value color"
+msgstr ""
+
+#: ../../include/functions_visual_map_editor.php:788
+#: ../../include/rest-api/models/VisualConsole/Items/BasicChart.php:313
+#: ../../include/rest-api/models/VisualConsole/Items/SimpleValue.php:394
+#: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:639
+#: ../../enterprise/include/functions_reporting_csv.php:483
+#: ../../enterprise/include/functions_reporting_csv.php:486
+#: ../../enterprise/include/functions_reporting_csv.php:710
+#: ../../enterprise/include/functions_reporting_csv.php:831
+#: ../../enterprise/include/functions_reporting_csv.php:914
+#: ../../enterprise/include/functions_reporting_csv.php:946
+#: ../../enterprise/include/functions_reporting_csv.php:1006
+#: ../../enterprise/include/functions_reporting_csv.php:1184
+#: ../../enterprise/include/functions_reporting_csv.php:1215
+#: ../../enterprise/include/functions_reporting_csv.php:1270
+#: ../../enterprise/include/functions_reporting_csv.php:1374
+#: ../../enterprise/include/functions_reporting_csv.php:1429
+#: ../../enterprise/include/functions_reporting_csv.php:1495
+#: ../../enterprise/include/functions_reporting_csv.php:1881
+#: ../../enterprise/include/functions_reporting_csv.php:1931
+#: ../../enterprise/include/functions_reporting_csv.php:2627
+#: ../../enterprise/include/functions_reporting_csv.php:2678
+#: ../../enterprise/include/functions_reporting_csv.php:2804
+#: ../../enterprise/godmode/reporting/graph_template_editor.php:235
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1765
+#: ../../enterprise/godmode/reporting/reporting_builder.global.php:102
+#: ../../godmode/reporting/visual_console_builder.elements.php:107
+#: ../../godmode/reporting/reporting_builder.item_editor.php:1258
+#: ../../godmode/reporting/graph_builder.main.php:196
+#: ../../godmode/reporting/visual_console_builder.wizard.php:242
+#: ../../godmode/agentes/module_manager_editor_prediction.php:179
+msgid "Period"
+msgstr ""
+
+#: ../../include/functions_visual_map_editor.php:793
+#: ../../include/rest-api/models/VisualConsole/Items/Group.php:562
+#: ../../enterprise/tools/ipam/ipam_vlan_config.php:871
+#: ../../enterprise/tools/ipam/ipam_supernet_config.php:1377
+msgid "Show statistics"
+msgstr ""
+
+#: ../../include/functions_visual_map_editor.php:801
+msgid "Diameter"
+msgstr ""
+
+#: ../../include/functions_visual_map_editor.php:808
+#: ../../include/rest-api/models/VisualConsole/Items/ColorCloud.php:426
+msgid "Default color"
+msgstr ""
+
+#: ../../include/functions_visual_map_editor.php:812
+msgid ""
+"The color of the element will be the one selected in the first range created "
+"in which the value of the module is found (with the initial and final values "
+"of the range included)"
+msgstr ""
+
+#: ../../include/functions_visual_map_editor.php:815
+msgid "Ranges"
+msgstr ""
+
+#: ../../include/functions_visual_map_editor.php:815
+msgid "From value"
+msgstr ""
+
+#: ../../include/functions_visual_map_editor.php:815
+msgid "To value"
+msgstr ""
+
+#: ../../include/functions_visual_map_editor.php:815
+#: ../../include/rest-api/index.php:363
+#: ../../include/rest-api/models/VisualConsole/Items/ColorCloud.php:471
+#: ../../include/rest-api/models/VisualConsole/Items/ColorCloud.php:530
+#: ../../include/rest-api/models/VisualConsole/Items/NetworkLink.php:938
+#: ../../include/rest-api/models/VisualConsole/Items/Line.php:487
+msgid "Color"
+msgstr ""
+
+#: ../../include/functions_visual_map_editor.php:820
+msgid "Always show on top"
+msgstr ""
+
+#: ../../include/functions_visual_map_editor.php:821
+msgid ""
+"It allows the element to be superimposed to the rest of items of the visual "
+"console"
+msgstr ""
+
+#: ../../include/functions_visual_map_editor.php:824
+#: ../../include/rest-api/models/VisualConsole/Items/StaticGraph.php:396
+msgid "Hide last value on boolean modules"
+msgstr ""
+
+#: ../../include/functions_visual_map_editor.php:825
+#: ../../include/rest-api/models/VisualConsole/Items/StaticGraph.php:398
+#: ../../include/functions_reporting_html.php:3352
+#: ../../enterprise/tools/ipam/ipam_ajax.php:419
+#: ../../enterprise/tools/ipam/ipam_massive.php:103
+#: ../../enterprise/tools/ipam/ipam_network.php:402
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3218
+#: ../../enterprise/include/class/DatabaseHA.class.php:205
+#: ../../godmode/modules/manage_network_components_form_wizard.php:246
+#: ../../godmode/massive/massive_edit_agents.php:1016
+#: ../../godmode/agentes/module_manager_editor_common.php:1061
+#: ../../godmode/agentes/module_manager_editor_common.php:1071
+#: ../../godmode/alerts/configure_alert_template.php:900
+#: ../../godmode/groups/group_list.php:908
+msgid "Enabled"
+msgstr ""
+
+#: ../../include/functions_visual_map_editor.php:830
+msgid "Show last value"
+msgstr ""
+
+#: ../../include/functions_visual_map_editor.php:843
+#: ../../include/rest-api/models/VisualConsole/Items/BarsGraph.php:483
+#: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:105
+msgid "Vertical"
+msgstr ""
+
+#: ../../include/functions_visual_map_editor.php:844
+#: ../../include/rest-api/models/VisualConsole/Items/BarsGraph.php:482
+#: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:114
+msgid "Horizontal"
+msgstr ""
+
+#: ../../include/functions_visual_map_editor.php:922
+#: ../../include/rest-api/models/VisualConsole/Item.php:2023
+#: ../../include/rest-api/models/VisualConsole/Items/Box.php:246
+#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:332
+#: ../../godmode/reporting/reporting_builder.list_items.php:371
+#: ../../godmode/reporting/visual_console_builder.elements.php:107
+#: ../../godmode/snmpconsole/snmp_alert.php:1039
+#: ../../godmode/snmpconsole/snmp_alert.php:1217
+msgid "Position"
+msgstr ""
+
+#: ../../include/functions_visual_map_editor.php:934
+msgid "For use the original image file size, set 0 width and 0 height."
+msgstr ""
+
+#: ../../include/functions_visual_map_editor.php:974
+#: ../../include/rest-api/models/VisualConsole/Item.php:2433
+msgid "Linked visual console"
+msgstr ""
+
+#: ../../include/functions_visual_map_editor.php:1081
+#: ../../include/rest-api/models/VisualConsole/Item.php:2484
+msgid "By status weight"
+msgstr ""
+
+#: ../../include/functions_visual_map_editor.php:1082
+#: ../../include/rest-api/models/VisualConsole/Item.php:2485
+msgid "By critical elements"
+msgstr ""
+
+#: ../../include/functions_visual_map_editor.php:1097
+#: ../../include/rest-api/models/VisualConsole/Item.php:2492
+msgid "Type of the status calculation of the linked visual console"
+msgstr ""
+
+#: ../../include/functions_visual_map_editor.php:1102
+#: ../../include/rest-api/models/VisualConsole/Item.php:2483
+msgid "By default"
+msgstr ""
+
+#: ../../include/functions_visual_map_editor.php:1122
+#: ../../include/rest-api/models/VisualConsole/Item.php:2508
+msgid "Linked visual console weight"
+msgstr ""
+
+#: ../../include/functions_visual_map_editor.php:1148
+#: ../../include/rest-api/models/VisualConsole/Item.php:2522
+#: ../../enterprise/godmode/massive/massive_edit_service_elements.php:265
+#: ../../enterprise/godmode/massive/massive_add_service_elements.php:509
+#: ../../enterprise/godmode/massive/massive_create_services.php:1151
+msgid "Critical weight"
+msgstr ""
+
+#: ../../include/functions_visual_map_editor.php:1174
+#: ../../include/rest-api/models/VisualConsole/Item.php:2536
+#: ../../enterprise/godmode/massive/massive_edit_service_elements.php:278
+#: ../../enterprise/godmode/massive/massive_add_service_elements.php:522
+#: ../../enterprise/godmode/massive/massive_create_services.php:1164
+msgid "Warning weight"
+msgstr ""
+
+#: ../../include/functions_visual_map_editor.php:1189
+msgid "Lines haven't advanced options"
+msgstr ""
+
+#: ../../include/functions_visual_map_editor.php:1206
+#: ../../include/rest-api/models/VisualConsole/Item.php:2188
+msgid "Restrict access to group"
+msgstr ""
+
+#: ../../include/functions_visual_map_editor.php:1217
+msgid ""
+"If selected, restrict visualization of this item in the visual console to "
+"users who have access to selected group. This is also used on calculating "
+"child visual consoles."
+msgstr ""
+
+#: ../../include/functions_visual_map_editor.php:1223
+#: ../../include/functions_visual_map_editor.php:1224
+#: ../../include/class/AgentsAlerts.class.php:387
+#: ../../include/functions_html.php:2107 ../../include/functions.php:499
+#: ../../include/functions.php:630
+#: ../../enterprise/include/ajax/log_viewer.ajax.php:274
+#: ../../enterprise/meta/advanced/metasetup.visual.php:382
+#: ../../enterprise/meta/advanced/metasetup.visual.php:849
+#: ../../enterprise/meta/advanced/metasetup.visual.php:850
+#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:327
+#: ../../godmode/setup/setup_visuals.php:1030
+#: ../../godmode/setup/setup_visuals.php:1031
+#: ../../godmode/setup/setup_visuals.php:1342
+#: ../../godmode/snmpconsole/snmp_alert.php:1015
+msgid "seconds"
+msgstr ""
+
+#: ../../include/functions_visual_map_editor.php:1225
+#: ../../include/functions_visual_map_editor.php:1226
+#: ../../include/functions_visual_map_editor.php:1227
+#: ../../include/functions_visual_map_editor.php:1228
+#: ../../include/functions_html.php:2108 ../../include/functions.php:503
+#: ../../include/functions.php:634
+#: ../../enterprise/include/ajax/log_viewer.ajax.php:276
+#: ../../enterprise/meta/advanced/metasetup.visual.php:383
+#: ../../enterprise/meta/advanced/metasetup.visual.php:851
+#: ../../enterprise/meta/advanced/metasetup.visual.php:852
+#: ../../enterprise/meta/advanced/metasetup.visual.php:853
+#: ../../enterprise/meta/advanced/metasetup.visual.php:854
+#: ../../godmode/setup/setup_visuals.php:1032
+#: ../../godmode/setup/setup_visuals.php:1033
+#: ../../godmode/setup/setup_visuals.php:1034
+#: ../../godmode/setup/setup_visuals.php:1035
+#: ../../godmode/setup/setup_visuals.php:1343
+msgid "minutes"
+msgstr ""
+
+#: ../../include/functions_visual_map_editor.php:1229
+#: ../../enterprise/meta/advanced/metasetup.visual.php:855
+#: ../../godmode/setup/setup_visuals.php:1036
+msgid "hour"
+msgstr ""
+
+#: ../../include/functions_visual_map_editor.php:1248
+#: ../../include/rest-api/models/VisualConsole/Item.php:2201
+msgid "Cache expiration"
+msgstr ""
+
+#: ../../include/functions_visual_map_editor.php:1255
+#: ../../enterprise/meta/advanced/metasetup.visual.php:862
+#: ../../godmode/setup/setup_visuals.php:1043
+msgid "No cache"
+msgstr ""
+
+#: ../../include/functions_visual_map_editor.php:1287
+msgid "Click start point<br />of the line"
+msgstr ""
+
+#: ../../include/functions_visual_map_editor.php:1290
+msgid "Click end point<br />of the line"
+msgstr ""
+
+#: ../../include/functions_visual_map_editor.php:1420
+msgid "Show grid"
+msgstr ""
+
+#: ../../include/functions_visual_map_editor.php:1421
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3460
+#: ../../extensions/agents_modules.php:448
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3706
+msgid "Update item"
+msgstr ""
+
+#: ../../include/functions_visual_map_editor.php:1422
+msgid "Delete item"
+msgstr ""
+
+#: ../../include/functions_visual_map_editor.php:1423
+msgid "Copy item"
+msgstr ""
+
+#: ../../include/functions_visual_map_editor.php:1463
+#: ../../include/functions_visual_map_editor.php:1467
+#: ../../include/functions_visual_map_editor.php:1471
+#: ../../include/functions_visual_map_editor.php:1475
+#: ../../include/functions_visual_map_editor.php:1479
+#: ../../include/functions_visual_map_editor.php:1483
+#: ../../include/functions_visual_map_editor.php:1487
+#: ../../include/functions_visual_map_editor.php:1491
+#: ../../include/functions_visual_map_editor.php:1495
+#: ../../include/functions_visual_map_editor.php:1499
+#: ../../include/functions_visual_map_editor.php:1503
+#: ../../include/functions_visual_map_editor.php:1507
+#: ../../include/functions_visual_map_editor.php:1511
+#: ../../include/functions_visual_map_editor.php:1515
+#: ../../include/functions_visual_map_editor.php:1519
+#: ../../include/functions_visual_map_editor.php:1523
+#: ../../include/functions_visual_map_editor.php:1527
+#: ../../include/functions_visual_map_editor.php:1531
+#: ../../include/functions_visual_map_editor.php:1535
+msgid "Visual Console Builder Information"
+msgstr ""
+
+#: ../../include/functions_visual_map_editor.php:1464
+msgid "Min allowed size is 1024x768."
+msgstr ""
+
+#: ../../include/functions_visual_map_editor.php:1468
+#: ../../include/functions_visual_map_editor.php:1536
+msgid "No custom graph defined."
+msgstr ""
+
+#: ../../include/functions_visual_map_editor.php:1472
+msgid "No image or name defined."
+msgstr ""
+
+#: ../../include/functions_visual_map_editor.php:1476
+msgid "No label defined."
+msgstr ""
+
+#: ../../include/functions_visual_map_editor.php:1480
+msgid "No service defined."
+msgstr ""
+
+#: ../../include/functions_visual_map_editor.php:1484
+msgid "No image defined."
+msgstr ""
+
+#: ../../include/functions_visual_map_editor.php:1488
+msgid "No process defined."
+msgstr ""
+
+#: ../../include/functions_visual_map_editor.php:1492
+msgid "No Max value defined."
+msgstr ""
+
+#: ../../include/functions_visual_map_editor.php:1496
+msgid "No width defined."
+msgstr ""
+
+#: ../../include/functions_visual_map_editor.php:1500
+msgid "No height defined."
+msgstr ""
+
+#: ../../include/functions_visual_map_editor.php:1504
+msgid "The width must not exceed the size of the visual console container."
+msgstr ""
+
+#: ../../include/functions_visual_map_editor.php:1508
+msgid "The height must not exceed the size of the visual console container."
+msgstr ""
+
+#: ../../include/functions_visual_map_editor.php:1512
+msgid "No period defined."
+msgstr ""
+
+#: ../../include/functions_visual_map_editor.php:1516
+msgid "No agent defined."
+msgstr ""
+
+#: ../../include/functions_visual_map_editor.php:1520
+msgid "No module defined."
+msgstr ""
+
+#: ../../include/functions_visual_map_editor.php:1524
+msgid "No module defined. This module must be string type."
+msgstr ""
+
+#: ../../include/functions_visual_map_editor.php:1528
+msgid "Successfully save the changes."
+msgstr ""
+
+#: ../../include/functions_visual_map_editor.php:1532
+msgid "Could not be save."
+msgstr ""
+
+#: ../../include/functions_plugins.php:58
+#, php-format
+msgid "Failed to erase module %d: %s"
+msgstr ""
+
+#: ../../include/functions_plugins.php:72
+#, php-format
+msgid "Failed to erase policy module: %d"
+msgstr ""
+
+#: ../../include/functions_reports.php:639
+#: ../../include/functions_reports.php:1083
+#: ../../include/functions_reporting.php:9919
+#: ../../include/functions_reporting.php:10079
+msgid "Simple graph"
+msgstr ""
+
+#: ../../include/functions_reports.php:643
+#: ../../enterprise/include/functions_reporting.php:8347
+msgid "Simple baseline graph"
+msgstr ""
+
+#: ../../include/functions_reports.php:661
+#: ../../enterprise/include/functions_reporting_csv.php:1137
+msgid "SQL vertical bar graph"
+msgstr ""
+
+#: ../../include/functions_reports.php:665
+#: ../../enterprise/include/functions_reporting_csv.php:1141
+msgid "SQL pie graph"
+msgstr ""
+
+#: ../../include/functions_reports.php:669
+#: ../../enterprise/include/functions_reporting_csv.php:1139
+msgid "SQL horizontal bar graph"
+msgstr ""
+
+#: ../../include/functions_reports.php:676
+msgid "Automatic combined Graph"
+msgstr ""
+
+#: ../../include/functions_reports.php:682
+msgid "Availability graph"
+msgstr ""
+
+#: ../../include/functions_reports.php:687
+msgid "Module Histogram graph"
+msgstr ""
+
+#: ../../include/functions_reports.php:692
+#: ../../enterprise/tools/ipam/ipam.php:453
+#: ../../enterprise/godmode/menu.php:322
+msgid "IPAM"
+msgstr ""
+
+#: ../../include/functions_reports.php:693
+msgid "IPAM networks"
+msgstr ""
+
+#: ../../include/functions_reports.php:698
+#: ../../include/functions_reports.php:703
+#: ../../include/functions_reports.php:707
+#: ../../include/functions_reports.php:711
+#: ../../include/functions_reports.php:717
+#: ../../enterprise/operation/services/services.service.php:128
+#: ../../enterprise/operation/services/services.list.php:508
+#: ../../enterprise/include/functions_reporting_csv.php:1991
+msgid "SLA"
+msgstr ""
+
+#: ../../include/functions_reports.php:699
+#: ../../include/functions_reporting.php:950
+#: ../../enterprise/include/functions_reporting_csv.php:1481
+#: ../../enterprise/godmode/services/services.service.php:804
+#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:221
+msgid "S.L.A."
+msgstr ""
+
+#: ../../include/functions_reports.php:704
+#: ../../enterprise/include/functions_reporting.php:2371
+#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:222
+msgid "Monthly S.L.A."
+msgstr ""
+
+#: ../../include/functions_reports.php:708
+#: ../../enterprise/include/functions_reporting.php:3323
+#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:223
+msgid "Weekly S.L.A."
+msgstr ""
+
+#: ../../include/functions_reports.php:712
+#: ../../enterprise/include/functions_reporting.php:4301
+msgid "Hourly S.L.A."
+msgstr ""
+
+#: ../../include/functions_reports.php:718
+#: ../../enterprise/include/functions_reporting.php:5566
+#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:226
+msgid "Services S.L.A."
+msgstr ""
+
+#: ../../include/functions_reports.php:724
+#: ../../include/functions_reports.php:728
+msgid "Forecasting"
+msgstr ""
+
+#: ../../include/functions_reports.php:725
+#: ../../enterprise/include/functions_reporting_csv.php:768
+msgid "Prediction date"
+msgstr ""
+
+#: ../../include/functions_reports.php:729
+msgid "Projection graph"
+msgstr ""
+
+#: ../../include/functions_reports.php:734
+msgid "Avg. value"
+msgstr ""
+
+#: ../../include/functions_reports.php:738
+msgid "Max. value"
+msgstr ""
+
+#: ../../include/functions_reports.php:742
+msgid "Min. value"
+msgstr ""
+
+#: ../../include/functions_reports.php:746
+msgid "Monitor report"
+msgstr ""
+
+#: ../../include/functions_reports.php:750
+msgid "Serialize data"
+msgstr ""
+
+#: ../../include/functions_reports.php:754
+#: ../../include/functions_reporting.php:6435
+#: ../../include/functions_reporting.php:9735
+#: ../../enterprise/include/functions_reporting_csv.php:1170
+#: ../../enterprise/include/functions_reporting_csv.php:1188
+#: ../../enterprise/include/functions_reporting_csv.php:1190
+msgid "Summatory"
+msgstr ""
+
+#: ../../include/functions_reports.php:758
+msgid "Historical Data"
+msgstr ""
+
+#: ../../include/functions_reports.php:762
+#: ../../include/functions_reporting.php:9252
+#: ../../include/functions_reporting_html.php:3705
+#: ../../enterprise/include/functions_reporting_csv.php:1311
+#: ../../enterprise/include/functions_reporting_csv.php:1325
+#: ../../enterprise/include/functions_reporting_csv.php:1329
+#: ../../enterprise/include/functions_reporting_csv.php:1340
+msgid "Increment"
+msgstr ""
+
+#: ../../include/functions_reports.php:766
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1742
+#: ../../enterprise/godmode/reporting/reporting_builder.global.php:192
+#: ../../godmode/reporting/reporting_builder.item_editor.php:1235
+msgid "Last value"
+msgstr ""
+
+#: ../../include/functions_reports.php:770
+#: ../../include/functions_reports.php:776
+#: ../../include/functions_reports.php:782
+#: ../../include/functions_reports.php:788
+#: ../../include/functions_reports.php:794
+#: ../../include/functions_reports.php:801
+#: ../../include/functions_reports.php:808
+#: ../../include/functions_reports.php:814
+#: ../../include/functions_reports.php:818
+#: ../../include/functions_reports.php:823
+#: ../../include/functions_reports.php:829
+msgid "Grouped"
+msgstr ""
+
+#: ../../include/functions_reports.php:771 ../../include/ajax/events.php:1494
+#: ../../include/functions_reporting.php:9397
+#: ../../enterprise/include/functions_reporting_csv.php:992
+#: ../../enterprise/include/class/Aws.cloud.php:345
+#: ../../enterprise/meta/include/functions_wizard_meta.php:248
+#: ../../enterprise/meta/include/functions_wizard_meta.php:533
+#: ../../enterprise/meta/include/functions_wizard_meta.php:605
+#: ../../enterprise/meta/include/functions_wizard_meta.php:1153
+#: ../../enterprise/godmode/reporting/reporting_builder.global.php:48
+#: ../../godmode/setup/setup.php:96 ../../godmode/setup/setup.php:249
+#: ../../godmode/servers/plugin.php:367 ../../godmode/servers/plugin.php:372
+#: ../../godmode/alerts/configure_alert_template.php:229
+#: ../../godmode/alerts/configure_alert_template.php:233
+msgid "General"
+msgstr ""
+
+#: ../../include/functions_reports.php:777
+#: ../../include/functions_reports.php:783
+#: ../../enterprise/include/functions_reporting_csv.php:986
+msgid "Group report"
+msgstr ""
+
+#: ../../include/functions_reports.php:789
+#: ../../include/functions_reporting.php:3048
+#: ../../enterprise/include/functions_reporting_csv.php:900
+#: ../../enterprise/godmode/reporting/reporting_builder.global.php:47
+msgid "Exception"
+msgstr ""
+
+#: ../../include/functions_reports.php:795
+#: ../../extensions/agents_modules.php:465
+msgid "Agents/Modules"
+msgstr ""
+
+#: ../../include/functions_reports.php:802
+msgid "Agents/Modules status"
+msgstr ""
+
+#: ../../include/functions_reports.php:809
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2251
+#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:424
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2222
+msgid "SQL query"
+msgstr ""
+
+#: ../../include/functions_reports.php:815
+#: ../../enterprise/godmode/reporting/reporting_builder.global.php:46
+msgid "Top n"
+msgstr ""
+
+#: ../../include/functions_reports.php:819
+msgid "Network interfaces"
+msgstr ""
+
+#: ../../include/functions_reports.php:824
+msgid "Custom Render"
+msgstr ""
+
+#: ../../include/functions_reports.php:830
+#: ../../include/functions_reporting.php:8122
+#: ../../include/functions_reporting.php:8514
+#: ../../enterprise/include/functions_reporting_csv.php:473
+#: ../../enterprise/include/functions_reporting.php:1227
+msgid "Availability"
+msgstr ""
+
+#: ../../include/functions_reports.php:834
+#: ../../include/functions_reports.php:838
+msgid "Text/HTML "
+msgstr ""
+
+#: ../../include/functions_reports.php:835
+#: ../../include/lib/Dashboard/Widgets/post.php:214
+#: ../../include/functions_reporting.php:6824
+#: ../../enterprise/include/functions_reporting_csv.php:2387
+#: ../../enterprise/include/functions_reporting_csv.php:2401
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2189
+#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor_form.php:74
+#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:385
+#: ../../godmode/setup/setup_visuals.php:1289 ../../godmode/setup/news.php:205
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2186
+msgid "Text"
+msgstr ""
+
+#: ../../include/functions_reports.php:839
+msgid "Import text from URL"
+msgstr ""
+
+#: ../../include/functions_reports.php:844
+msgid "Module alert report"
+msgstr ""
+
+#: ../../include/functions_reports.php:848
+msgid "Agent alert report "
+msgstr ""
+
+#: ../../include/functions_reports.php:854
+msgid "Group alert report"
+msgstr ""
+
+#: ../../include/functions_reports.php:860
+msgid "Actions alert report "
+msgstr ""
+
+#: ../../include/functions_reports.php:865
+msgid "Module event report"
+msgstr ""
+
+#: ../../include/functions_reports.php:869
+msgid "Agent event report"
+msgstr ""
+
+#: ../../include/functions_reports.php:873
+msgid "Group event report"
+msgstr ""
+
+#: ../../include/functions_reports.php:878
+#: ../../include/functions_reports.php:885
+#: ../../include/functions_reports.php:886
+#: ../../include/functions_reports.php:890
+#: ../../include/functions_reporting.php:2612
+#: ../../enterprise/operation/menu.php:19
+#: ../../enterprise/operation/snmpconsole/snmp_view.php:23
+#: ../../enterprise/operation/agentes/ver_agente.php:192
+#: ../../enterprise/operation/inventory/inventory.php:137
+#: ../../enterprise/include/functions_reporting_csv.php:754
+#: ../../enterprise/meta/general/main_menu.php:229
+#: ../../enterprise/godmode/agentes/configurar_agente.php:88
+#: ../../enterprise/godmode/policies/policies.php:539
+#: ../../godmode/setup/setup_integria.php:314
+#: ../../godmode/agentes/configurar_agente.php:711
+msgid "Inventory"
+msgstr ""
+
+#: ../../include/functions_reports.php:879
+#: ../../enterprise/include/functions_reporting_csv.php:696
+msgid "Agents inventory"
+msgstr ""
+
+#: ../../include/functions_reports.php:891
+msgid "Inventory changes"
+msgstr ""
+
+#: ../../include/functions_reports.php:898
+#: ../../include/functions_reports.php:902
+#: ../../include/class/ModuleTemplates.class.php:195
+#: ../../include/class/ModuleTemplates.class.php:213
+#: ../../include/class/ConfigPEN.class.php:327
+#: ../../enterprise/views/ncm/agent/details.php:600
+#: ../../enterprise/meta/monitoring/wizard/wizard.module.web.php:100
+#: ../../enterprise/meta/monitoring/wizard/wizard.module.local.php:107
+#: ../../enterprise/meta/monitoring/wizard/wizard.agent.php:64
+#: ../../enterprise/meta/monitoring/wizard/wizard.module.network.php:119
+#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:351
+#: ../../enterprise/godmode/modules/configure_local_component.php:483
+#: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:251
+#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:687
+#: ../../godmode/setup/setup.php:330 ../../godmode/menu.php:210
+#: ../../godmode/agentes/planned_downtime.list.php:615
+msgid "Configuration"
+msgstr ""
+
+#: ../../include/functions_reports.php:899
+#: ../../include/functions_reporting.php:6250
+msgid "Agent configuration"
+msgstr ""
+
+#: ../../include/functions_reports.php:903
+#: ../../include/functions_reporting.php:4511
+msgid "Group configuration"
+msgstr ""
+
+#: ../../include/functions_reports.php:906
+#: ../../include/functions_reports.php:910
+#: ../../include/functions_reports.php:914
+#: ../../include/functions_reports.php:918
+#: ../../enterprise/include/functions_enterprise.php:452
+#: ../../enterprise/meta/general/main_menu.php:381
+#: ../../enterprise/meta/general/logon_ok.php:37
+#: ../../enterprise/meta/general/main_header.php:275
+#: ../../godmode/setup/setup.php:151 ../../godmode/setup/setup.php:271
+#: ../../godmode/menu.php:342
+msgid "Netflow"
+msgstr ""
+
+#: ../../include/functions_reports.php:907
+#: ../../enterprise/include/functions_reporting_csv.php:2607
+msgid "Netflow area chart"
+msgstr ""
+
+#: ../../include/functions_reports.php:911
+msgid "Netflow data table"
+msgstr ""
+
+#: ../../include/functions_reports.php:915
+msgid "Netflow summary table"
+msgstr ""
+
+#: ../../include/functions_reports.php:919
+#: ../../include/functions_reporting.php:5926
+#: ../../enterprise/include/functions_reporting_csv.php:2786
+msgid "Netflow top-N connections"
+msgstr ""
+
+#: ../../include/functions_reports.php:925
+#: ../../enterprise/include/functions_reporting.php:2144
+msgid "Log"
+msgstr ""
+
+#: ../../include/functions_reports.php:926
+#: ../../enterprise/include/functions_reporting.php:2131
+msgid "Log report"
+msgstr ""
+
+#: ../../include/functions_reports.php:932
+#: ../../include/functions_reports.php:933
+#: ../../include/functions_reporting.php:4389
+#: ../../enterprise/include/functions_reporting_csv.php:2531
+msgid "Permissions report"
+msgstr ""
+
+#: ../../include/functions_reports.php:938
+#: ../../enterprise/views/ncm/devices/list.php:64
+msgid "NCM"
+msgstr ""
+
+#: ../../include/functions_reports.php:939
+msgid "Network configuration changes"
+msgstr ""
+
+#: ../../include/functions_reports.php:956
+#: ../../enterprise/godmode/policies/policy_modules.php:1363
+#: ../../godmode/agentes/configurar_agente.php:2110
+#, php-format
+msgid "copy of %s"
+msgstr ""
+
+#: ../../include/functions_reports.php:1066
+msgid "Macro"
+msgstr ""
+
+#: ../../include/functions_reports.php:1080
+#: ../../include/functions_reports.php:1210
+#: ../../enterprise/meta/monitoring/wizard/wizard.php:152
+#: ../../godmode/modules/manage_network_components_form_wizard.php:392
+#: ../../godmode/modules/manage_network_components_form_wizard.php:434
+msgid "String"
+msgstr ""
+
+#: ../../include/functions_reports.php:1081
+#: ../../include/functions_reports.php:1210
+#: ../../include/functions_reports.php:1230
+msgid "Sql"
+msgstr ""
+
+#: ../../include/functions_reports.php:1082
+msgid "Graph Sql"
+msgstr ""
+
+#: ../../include/functions_reports.php:1380
+#: ../../enterprise/godmode/reporting/reporting_builder.template.php:759
+msgid "Period "
+msgstr ""
+
+#: ../../include/ajax/module.php:199 ../../include/functions.php:3358
+msgid "30 minutes"
+msgstr ""
+
+#: ../../include/ajax/module.php:201
+#: ../../enterprise/godmode/reporting/graph_template_editor.php:220
+msgid "6 hours"
+msgstr ""
+
+#: ../../include/ajax/module.php:202
+#: ../../enterprise/godmode/reporting/graph_template_editor.php:221
+#: ../../godmode/setup/performance.php:530
+msgid "12 hours"
+msgstr ""
+
+#: ../../include/ajax/module.php:203 ../../include/ajax/graph.ajax.php:150
+#: ../../include/functions.php:2694
+#: ../../enterprise/godmode/reporting/graph_template_editor.php:222
+#: ../../godmode/reporting/create_container.php:350
+msgid "1 day"
+msgstr ""
+
+#: ../../include/ajax/module.php:204 ../../include/ajax/graph.ajax.php:153
+#: ../../include/functions.php:2695
+#: ../../godmode/reporting/create_container.php:353
+msgid "1 week"
+msgstr ""
+
+#: ../../include/ajax/module.php:205 ../../include/ajax/graph.ajax.php:154
+#: ../../include/functions.php:2696
+#: ../../enterprise/godmode/reporting/graph_template_editor.php:226
+#: ../../godmode/reporting/create_container.php:354
+msgid "15 days"
+msgstr ""
+
+#: ../../include/ajax/module.php:206 ../../include/ajax/graph.ajax.php:155
+#: ../../include/functions.php:2697
+#: ../../godmode/reporting/create_container.php:355
+msgid "1 month"
+msgstr ""
+
+#: ../../include/ajax/module.php:207
+msgid "3 months"
+msgstr ""
+
+#: ../../include/ajax/module.php:208
+#: ../../enterprise/godmode/reporting/graph_template_editor.php:229
+msgid "6 months"
+msgstr ""
+
+#: ../../include/ajax/module.php:209 ../../include/functions.php:2700
+#: ../../enterprise/godmode/reporting/graph_template_editor.php:230
+msgid "1 year"
+msgstr ""
+
+#: ../../include/ajax/module.php:210
+msgid "2 years"
+msgstr ""
+
+#: ../../include/ajax/module.php:211
+msgid "3 years"
+msgstr ""
+
+#: ../../include/ajax/module.php:307
+msgid "Exact phrase"
+msgstr ""
+
+#: ../../include/ajax/module.php:981
+#: ../../enterprise/meta/include/functions_wizard_meta.php:999
+#: ../../enterprise/meta/include/functions_wizard_meta.php:1084
+#: ../../enterprise/meta/include/functions_wizard_meta.php:1317
+msgid "Thresholds"
+msgstr ""
+
+#: ../../include/ajax/module.php:1084 ../../include/ajax/module.php:1092
+#: ../../godmode/agentes/module_manager.php:1042
+#: ../../godmode/agentes/module_manager.php:1050
+msgid "Adopted"
+msgstr ""
+
+#: ../../include/ajax/module.php:1092 ../../include/ajax/module.php:1095
+#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:991
+#: ../../godmode/massive/massive_edit_modules.php:1067
+#: ../../godmode/agentes/module_manager.php:1050
+#: ../../godmode/agentes/module_manager.php:1053
+msgid "Unlinked"
+msgstr ""
+
+#: ../../include/ajax/module.php:1304
+msgid "Any monitors aren't with this filter."
+msgstr ""
+
+#: ../../include/ajax/module.php:1306
+msgid "This agent doesn't have any active monitors."
+msgstr ""
+
+#: ../../include/ajax/visual_console_builder.ajax.php:343
+#: ../../include/functions_visual_map.php:2833
+#: ../../enterprise/operation/agentes/wux_console_view.php:593
+#: ../../enterprise/godmode/setup/setup_acl.php:791
+#: ../../enterprise/godmode/reporting/visual_console_template.php:305
+msgid "No data to show"
+msgstr ""
+
+#: ../../include/ajax/graph.ajax.php:147 ../../include/ajax/graph.ajax.php:148
+#: ../../include/ajax/graph.ajax.php:149 ../../include/functions.php:2692
+#: ../../include/functions.php:2693
+#: ../../godmode/reporting/create_container.php:347
+#: ../../godmode/reporting/create_container.php:348
+#: ../../godmode/reporting/create_container.php:349
+#, php-format
+msgid "%s hours"
+msgstr ""
+
+#: ../../include/ajax/graph.ajax.php:151 ../../include/ajax/graph.ajax.php:152
+#: ../../godmode/reporting/create_container.php:351
+#: ../../godmode/reporting/create_container.php:352
+#, php-format
+msgid "%s days"
+msgstr ""
+
+#: ../../include/ajax/graph.ajax.php:161
+msgid "Time container lapse"
+msgstr ""
+
+#: ../../include/ajax/alert_list.ajax.php:345
+#: ../../enterprise/meta/advanced/metasetup.consoles.php:387
+#: ../../enterprise/godmode/setup/setup_metaconsole.php:147
+#: ../../enterprise/godmode/policies/policy_modules.php:517
+#: ../../enterprise/godmode/policies/policy_alerts.php:126
+#: ../../godmode/massive/massive_enable_disable_alerts.php:102
+#: ../../godmode/agentes/configurar_agente.php:2171
+#: ../../godmode/agentes/modificar_agente.php:234
+#: ../../godmode/alerts/alert_list.php:366
+#: ../../godmode/users/user_list.php:372
+msgid "Successfully enabled"
+msgstr ""
+
+#: ../../include/ajax/alert_list.ajax.php:347
+#: ../../enterprise/meta/advanced/metasetup.consoles.php:388
+#: ../../enterprise/godmode/setup/setup_metaconsole.php:148
+#: ../../enterprise/godmode/policies/policy_modules.php:518
+#: ../../enterprise/godmode/policies/policy_alerts.php:127
+#: ../../godmode/massive/massive_enable_disable_alerts.php:102
+#: ../../godmode/agentes/configurar_agente.php:2172
+#: ../../godmode/agentes/modificar_agente.php:235
+#: ../../godmode/alerts/alert_list.php:367
+msgid "Could not be enabled"
+msgstr ""
+
+#: ../../include/ajax/alert_list.ajax.php:366
+#: ../../enterprise/meta/advanced/metasetup.consoles.php:412
+#: ../../enterprise/godmode/setup/setup_metaconsole.php:156
+#: ../../enterprise/godmode/policies/policy_modules.php:534
+#: ../../enterprise/godmode/policies/policy_alerts.php:152
+#: ../../godmode/massive/massive_enable_disable_alerts.php:124
+#: ../../godmode/agentes/configurar_agente.php:2196
+#: ../../godmode/agentes/modificar_agente.php:277
+#: ../../godmode/alerts/alert_list.php:393
+#: ../../godmode/users/user_list.php:366
+msgid "Successfully disabled"
+msgstr ""
+
+#: ../../include/ajax/alert_list.ajax.php:368
+#: ../../enterprise/godmode/setup/setup_metaconsole.php:157
+#: ../../enterprise/godmode/policies/policy_modules.php:535
+#: ../../enterprise/godmode/policies/policy_alerts.php:153
+#: ../../godmode/massive/massive_enable_disable_alerts.php:124
+#: ../../godmode/agentes/configurar_agente.php:2197
+#: ../../godmode/agentes/modificar_agente.php:278
+#: ../../godmode/alerts/alert_list.php:394
+msgid "Could not be disabled"
+msgstr ""
+
+#: ../../include/ajax/alert_list.ajax.php:503
+#: ../../include/class/AgentsAlerts.class.php:314
+#: ../../enterprise/godmode/policies/policy_external_alerts.php:600
+#: ../../enterprise/godmode/policies/policy_alerts.php:596
+#: ../../godmode/massive/massive_add_action_alerts.php:252
+#: ../../godmode/alerts/alert_list.list.php:753
+#: ../../godmode/alerts/alert_list.builder.php:127
+msgid "Number of alerts match from"
+msgstr ""
+
+#: ../../include/ajax/alert_list.ajax.php:527
+#: ../../include/class/AgentsAlerts.class.php:385
+#: ../../include/functions_reporting_html.php:3390
+#: ../../include/functions_reporting_html.php:5157
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2296
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2508
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3343
+#: ../../enterprise/meta/monitoring/wizard/wizard.manage_alert.php:290
+#: ../../godmode/alerts/alert_list.list.php:651
+#: ../../godmode/alerts/alert_list.list.php:777
+#: ../../godmode/alerts/alert_list.builder.php:173
+#: ../../godmode/alerts/alert_view.php:361
+#: ../../godmode/alerts/configure_alert_action.php:284
+msgid "Threshold"
+msgstr ""
+
+#: ../../include/ajax/alert_list.ajax.php:579
+#: ../../include/functions_reporting_html.php:86
+#: ../../include/functions_reporting_html.php:5487
+#: ../../godmode/agentes/planned_downtime.editor.php:628
+msgid "From:"
+msgstr ""
+
+#: ../../include/ajax/alert_list.ajax.php:593
+#: ../../include/functions_reporting_html.php:86
+#: ../../include/functions_reporting_html.php:5487
+#: ../../godmode/agentes/planned_downtime.editor.php:632
+msgid "To:"
+msgstr ""
+
+#: ../../include/ajax/double_auth.ajax.php:144
+msgid ""
+"This is the private code that you should use with your authenticator app"
+msgstr ""
+
+#: ../../include/ajax/double_auth.ajax.php:145
+#: ../../include/ajax/double_auth.ajax.php:288
+msgid ""
+"You could enter the code manually or use the QR code to add it automatically"
+msgstr ""
+
+#: ../../include/ajax/double_auth.ajax.php:149
+#: ../../include/ajax/double_auth.ajax.php:292
+#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:125
+msgid "Code"
+msgstr ""
+
+#: ../../include/ajax/double_auth.ajax.php:151
+#: ../../include/ajax/double_auth.ajax.php:294
+msgid "QR"
+msgstr ""
+
+#: ../../include/ajax/double_auth.ajax.php:190
+msgid "You are about to activate the double authentication"
+msgstr ""
+
+#: ../../include/ajax/double_auth.ajax.php:192
+msgid ""
+"With this option enabled, your account access will be more secure, \n"
+"\t\tcause a code generated by other application will be required after the "
+"login"
+msgstr ""
+
+#: ../../include/ajax/double_auth.ajax.php:197
+msgid ""
+"You will need to install the app from the following link before continue"
+msgstr ""
+
+#: ../../include/ajax/double_auth.ajax.php:202
+msgid "Download the app"
+msgstr ""
+
+#: ../../include/ajax/double_auth.ajax.php:206
+#: ../../include/ajax/double_auth.ajax.php:299
+#: ../../include/functions_register.php:188
+msgid "Continue"
+msgstr ""
+
+#: ../../include/ajax/double_auth.ajax.php:222
+msgid "Are you installed the app yet?"
+msgstr ""
+
+#: ../../include/ajax/double_auth.ajax.php:282
+msgid "A private code has been generated"
+msgstr ""
+
+#: ../../include/ajax/double_auth.ajax.php:287
+msgid ""
+"Before continue, you should create a new entry into the authenticator app"
+msgstr ""
+
+#: ../../include/ajax/double_auth.ajax.php:297
+msgid "Refresh code"
+msgstr ""
+
+#: ../../include/ajax/double_auth.ajax.php:366
+msgid "Are you introduced the code in the authenticator app yet?"
+msgstr ""
+
+#: ../../include/ajax/double_auth.ajax.php:429
+msgid "Introduce a code generated by the app"
+msgstr ""
+
+#: ../../include/ajax/double_auth.ajax.php:430
+msgid "If the code is valid, the double authentication will be activated"
+msgstr ""
+
+#: ../../include/ajax/double_auth.ajax.php:439
+msgid "Validate code"
+msgstr ""
+
+#: ../../include/ajax/double_auth.ajax.php:491
+msgid "The code is valid, you can exit now"
+msgstr ""
+
+#: ../../include/ajax/double_auth.ajax.php:500 ../../index.php:332
+#: ../../enterprise/meta/index.php:295 ../../mobile/include/user.class.php:280
+msgid "Invalid code"
+msgstr ""
+
+#: ../../include/ajax/double_auth.ajax.php:508
+msgid "The code is valid, but it was an error saving the data"
+msgstr ""
+
+#: ../../include/ajax/heatmap.ajax.php:79
+msgid "Group modules by tag"
+msgstr ""
+
+#: ../../include/ajax/heatmap.ajax.php:80
+msgid "Group modules by module group"
+msgstr ""
+
+#: ../../include/ajax/heatmap.ajax.php:97
+msgid "Show groups"
+msgstr ""
+
+#: ../../include/ajax/custom_fields.php:413
+#: ../../include/class/AgentWizard.class.php:1184
+msgid "Treshold"
+msgstr ""
+
+#: ../../include/ajax/custom_fields.php:414
+msgid "Current interval"
+msgstr ""
+
+#: ../../include/ajax/custom_fields.php:460
+#: ../../include/ajax/custom_fields.php:513
+msgid "Modules normal"
+msgstr ""
+
+#: ../../include/ajax/custom_fields.php:471
+msgid "Modules critical"
+msgstr ""
+
+#: ../../include/ajax/custom_fields.php:482
+msgid "Modules warning"
+msgstr ""
+
+#: ../../include/ajax/custom_fields.php:492
+msgid "Modules unknown"
+msgstr ""
+
+#: ../../include/ajax/custom_fields.php:503
+msgid "Modules no init"
+msgstr ""
+
+#: ../../include/ajax/custom_fields.php:545
+msgid "New Filter"
+msgstr ""
+
+#: ../../include/ajax/custom_fields.php:552
+msgid "Existing Filter"
+msgstr ""
+
+#: ../../include/ajax/custom_fields.php:652
+#: ../../enterprise/meta/event/custom_events.php:44
+#: ../../godmode/snmpconsole/snmp_filters.php:37
+#: ../../godmode/events/event_filter.php:225
+#: ../../godmode/netflow/nf_edit.php:217
+#: ../../godmode/netflow/nf_edit_form.php:190
+msgid "Create filter"
+msgstr ""
+
+#: ../../include/ajax/custom_fields.php:700
+msgid "Delete filter"
+msgstr ""
+
+#: ../../include/ajax/custom_fields.php:737
+#: ../../godmode/agentes/fields_manager.php:46
+msgid "The name must not be empty"
+msgstr ""
+
+#: ../../include/ajax/custom_fields.php:750
+msgid "Filter name already exists in the bbdd"
+msgstr ""
+
+#: ../../include/ajax/custom_fields.php:762
+msgid "Please, select a custom field"
+msgstr ""
+
+#: ../../include/ajax/custom_fields.php:790
+msgid "Success create filter."
+msgstr ""
+
+#: ../../include/ajax/custom_fields.php:797
+msgid "Error create filter."
+msgstr ""
+
+#: ../../include/ajax/custom_fields.php:822
+#: ../../include/ajax/custom_fields.php:895
+msgid "please, select a filter"
+msgstr ""
+
+#: ../../include/ajax/custom_fields.php:838
+msgid "please, select a custom field"
+msgstr ""
+
+#: ../../include/ajax/custom_fields.php:864
+msgid "Success update filter."
+msgstr ""
+
+#: ../../include/ajax/custom_fields.php:871
+msgid "Error update filter."
+msgstr ""
+
+#: ../../include/ajax/custom_fields.php:914
+msgid "Success delete filter."
+msgstr ""
+
+#: ../../include/ajax/custom_fields.php:921
+msgid "Error delete filter."
+msgstr ""
+
+#: ../../include/ajax/snmp_browser.ajax.php:113
+#: ../../include/ajax/snmp_browser.ajax.php:124
+#: ../../include/ajax/snmp_browser.ajax.php:134
+msgid "SNMP modules"
+msgstr ""
+
+#: ../../include/ajax/snmp_browser.ajax.php:117
+msgid "Error creating the following modules:"
+msgstr ""
+
+#: ../../include/ajax/snmp_browser.ajax.php:128
+msgid "Modules successfully created"
+msgstr ""
+
+#: ../../include/ajax/snmp_browser.ajax.php:138
+msgid "Module must be applied to an agent or a policy"
+msgstr ""
+
+#: ../../include/ajax/snmp_browser.ajax.php:263
+msgid "Failed to create policy"
+msgstr ""
+
+#: ../../include/ajax/snmp_browser.ajax.php:264
+msgid "Policy created succesfully"
+msgstr ""
+
+#: ../../include/ajax/events.php:97
+msgid "Failed to retrieve comments"
+msgstr ""
+
+#: ../../include/ajax/events.php:1176
+msgid "Error executing response"
+msgstr ""
+
+#: ../../include/ajax/events.php:1213
+#: ../../enterprise/tools/ipam/ipam_ajax.php:540
+#, php-format
+msgid "Executing command: %s"
+msgstr ""
+
+#: ../../include/ajax/events.php:1230 ../../include/ajax/events.php:1254
+#: ../../enterprise/tools/ipam/ipam_ajax.php:551
+msgid "Execute again"
+msgstr ""
+
+#: ../../include/ajax/events.php:1500
+msgid "Related"
+msgstr ""
+
+#: ../../include/ajax/events.php:1512
+msgid "Agent fields"
+msgstr ""
+
+#: ../../include/ajax/events.php:1544
+#: ../../enterprise/meta/event/custom_events.php:79
+#: ../../godmode/events/events.php:100
+msgid "Responses"
+msgstr ""
+
+#: ../../include/ajax/events.php:1650
+msgid "Error adding comment"
+msgstr ""
+
+#: ../../include/ajax/events.php:1651
+msgid "Comment added successfully"
+msgstr ""
+
+#: ../../include/ajax/events.php:1652
+msgid "Error changing event status"
+msgstr ""
+
+#: ../../include/ajax/events.php:1653
+msgid "Event status changed successfully"
+msgstr ""
+
+#: ../../include/ajax/events.php:1654
+msgid "Error changing event owner"
+msgstr ""
+
+#: ../../include/ajax/events.php:1655
+msgid "Event owner changed successfully"
+msgstr ""
+
+#: ../../include/ajax/events.php:1656
+msgid "Error deleting event"
+msgstr ""
+
+#: ../../include/ajax/events.php:1824
+#: ../../enterprise/meta/include/functions_wizard_meta.php:495
+#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:753
+#: ../../godmode/massive/massive_edit_modules.php:817
+#: ../../godmode/agentes/module_manager_editor_wmi.php:59
+#: ../../godmode/agentes/module_manager_editor_network.php:94
+msgid "Auto"
+msgstr ""
+
+#: ../../include/ajax/events.php:1863
+msgid "Show all Events 24h"
+msgstr ""
+
+#: ../../include/ajax/events.php:2000
+msgid "These commands will apply to all selected events"
+msgstr ""
+
+#: ../../include/ajax/events.php:2029
+#: ../../include/class/ExternalTools.class.php:581
+#: ../../include/functions_events.php:3835
+#: ../../enterprise/views/ncm/agent/details.php:689
+msgid "Execute"
+msgstr ""
+
+#: ../../include/ajax/events.php:2108
+msgid "Alert fired in module "
+msgstr ""
+
+#: ../../include/ajax/events.php:2122 ../../include/ajax/events.php:2136
+#: ../../include/ajax/events.php:2150
+#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:82
+msgid "Module "
+msgstr ""
+
+#: ../../include/ajax/events.php:2123
+msgid " is going to critical"
+msgstr ""
+
+#: ../../include/ajax/events.php:2137
+msgid " is going to warning"
+msgstr ""
+
+#: ../../include/ajax/events.php:2151
+msgid " is going to unknown"
+msgstr ""
+
+#: ../../include/class/Tree.class.php:775
+#: ../../include/class/Tree.class.php:777
+msgid "Module alerts"
+msgstr ""
+
+#: ../../include/class/ModuleTemplates.class.php:196
+#: ../../include/class/ModuleTemplates.class.php:214
+#: ../../include/class/ConfigPEN.class.php:332
+#: ../../include/functions_menu.php:515
+#: ../../enterprise/views/ncm/templates/list.php:32
+#: ../../enterprise/include/functions_reporting.php:146
+#: ../../enterprise/include/functions_reporting.php:7983
+#: ../../enterprise/include/functions_reporting.php:8011
+#: ../../enterprise/include/functions_reporting.php:8082
+#: ../../enterprise/meta/include/functions_alerts_meta.php:129
+#: ../../enterprise/meta/include/functions_alerts_meta.php:160
+#: ../../enterprise/godmode/reporting/visual_console_template.php:109
+#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:191
+#: ../../enterprise/godmode/reporting/graph_template_wizard.php:192
+#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:261
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2094
+#: ../../godmode/reporting/reporting_builder.item_editor.php:1881
+#: ../../godmode/menu.php:144 ../../godmode/menu.php:230
+#: ../../godmode/agentes/configurar_agente.php:739
+msgid "Templates"
+msgstr ""
+
+#: ../../include/class/ModuleTemplates.class.php:199
+#: ../../include/class/ModuleTemplates.class.php:217
+#: ../../include/class/ModuleTemplates.class.php:227
+#: ../../godmode/modules/manage_network_templates.php:39
+#: ../../godmode/modules/manage_network_templates_form.php:32
+msgid "Module template management"
+msgstr ""
+
+#: ../../include/class/ModuleTemplates.class.php:353
+#, php-format
+msgid "Template %s successfully updated"
+msgstr ""
+
+#: ../../include/class/ModuleTemplates.class.php:355
+#: ../../enterprise/godmode/reporting/graph_template_editor.php:174
+msgid "Error updating template"
+msgstr ""
+
+#: ../../include/class/ModuleTemplates.class.php:400
+#, php-format
+msgid "Template %s successfully created"
+msgstr ""
+
+#: ../../include/class/ModuleTemplates.class.php:402
+msgid "Error creating template"
+msgstr ""
+
+#: ../../include/class/ModuleTemplates.class.php:410
+#, php-format
+msgid "Template %s successfully deleted"
+msgstr ""
+
+#: ../../include/class/ModuleTemplates.class.php:412
+#, php-format
+msgid "Error deleting %s template"
+msgstr ""
+
+#: ../../include/class/ModuleTemplates.class.php:559
+msgid "Module successfully deleted"
+msgstr ""
+
+#: ../../include/class/ModuleTemplates.class.php:561
+msgid "Error deleting module"
+msgstr ""
+
+#: ../../include/class/ModuleTemplates.class.php:572
+msgid "Block successfully deleted"
+msgstr ""
+
+#: ../../include/class/ModuleTemplates.class.php:574
+msgid "Error deleting block"
+msgstr ""
+
+#: ../../include/class/ModuleTemplates.class.php:586
+msgid "All templates deleted"
+msgstr ""
+
+#: ../../include/class/ModuleTemplates.class.php:588
+msgid "Error deleting all templates"
+msgstr ""
+
+#: ../../include/class/ModuleTemplates.class.php:597
+msgid "Selected templates deleted"
+msgstr ""
+
+#: ../../include/class/ModuleTemplates.class.php:599
+msgid "Error deleting selected templates"
+msgstr ""
+
+#: ../../include/class/ModuleTemplates.class.php:611
+msgid "Something gone wrong. Please, try again"
+msgstr ""
+
+#: ../../include/class/ModuleTemplates.class.php:662
+msgid "The modules is already added"
+msgstr ""
+
+#: ../../include/class/ModuleTemplates.class.php:804
+#: ../../enterprise/meta/include/functions_wizard_meta.php:309
+#: ../../godmode/modules/manage_network_templates_form.php:341
+msgid "Components"
+msgstr ""
+
+#: ../../include/class/ModuleTemplates.class.php:1074
+#: ../../include/class/ConfigPEN.class.php:428
+#: ../../include/class/ConfigPEN.class.php:597
+msgid "PEN"
+msgstr ""
+
+#: ../../include/class/ModuleTemplates.class.php:1111
+#: ../../include/class/ModuleTemplates.class.php:1383
+msgid "Add components"
+msgstr ""
+
+#: ../../include/class/ModuleTemplates.class.php:1163
+#: ../../include/class/ModuleTemplates.class.php:1298
+msgid "No module blocks for this profile"
+msgstr ""
+
+#: ../../include/class/ModuleTemplates.class.php:1186
+msgid "Delete this block"
+msgstr ""
+
+#: ../../include/class/ModuleTemplates.class.php:1188
+msgid "Do you want delete this block?"
+msgstr ""
+
+#: ../../include/class/ModuleTemplates.class.php:1208
+#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:121
+#: ../../godmode/massive/massive_standby_alerts.php:223
+#: ../../godmode/massive/massive_standby_alerts.php:258
+#: ../../godmode/massive/massive_enable_disable_alerts.php:195
+#: ../../godmode/massive/massive_enable_disable_alerts.php:230
+msgid "Format"
+msgstr ""
+
+#: ../../include/class/ModuleTemplates.class.php:1234
+#: ../../godmode/modules/manage_network_components.php:804
+msgid "Network module"
+msgstr ""
+
+#: ../../include/class/ModuleTemplates.class.php:1245
+#: ../../godmode/modules/manage_network_components.php:815
+msgid "WMI module"
+msgstr ""
+
+#: ../../include/class/ModuleTemplates.class.php:1256
+#: ../../godmode/modules/manage_network_components.php:826
+msgid "Plug-in module"
+msgstr ""
+
+#: ../../include/class/ModuleTemplates.class.php:1283
+msgid "Delete this module"
+msgstr ""
+
+#: ../../include/class/ModuleTemplates.class.php:1285
+msgid "Do you want delete this module?"
+msgstr ""
+
+#: ../../include/class/ModuleTemplates.class.php:1476
+msgid "Do you want delete all templates?"
+msgstr ""
+
+#: ../../include/class/ModuleTemplates.class.php:1479
+msgid "Do you want delete the selected templates?"
+msgstr ""
+
+#: ../../include/class/AuditLog.class.php:128
+#: ../../enterprise/godmode/admin_access_logs.php:54
+#: ../../enterprise/godmode/policies/policy_agents.php:854
+#: ../../enterprise/godmode/policies/policy_agents.php:1369
+#: ../../mobile/operation/agents.php:407
+#: ../../godmode/reporting/visual_console_builder.elements.php:118
+msgid "A."
+msgstr ""
+
+#: ../../include/class/AuditLog.class.php:136
+#, php-format
+msgid "%s audit"
+msgstr ""
+
+#: ../../include/class/AuditLog.class.php:136
+msgid "Review Logs"
+msgstr ""
+
+#: ../../include/class/AuditLog.class.php:145
+#: ../../enterprise/include/class/ManageBackups.class.php:117
+msgid "Admin Tools"
+msgstr ""
+
+#: ../../include/class/AuditLog.class.php:149
+msgid "System Audit log"
+msgstr ""
+
+#: ../../include/class/AuditLog.class.php:376
+#: ../../enterprise/include/class/ManageBackups.class.php:424
+msgid "There is no additional information to display"
+msgstr ""
+
+#: ../../include/class/Heatmap.class.php:743
+#: ../../enterprise/include/class/CommandCenter.class.php:454
+msgid "Info"
+msgstr ""
+
+#: ../../include/class/HelpFeedBack.class.php:99
+#: ../../enterprise/include/class/Omnishell.class.php:319
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:717
+msgid "Page not found"
+msgstr ""
+
+#: ../../include/class/HelpFeedBack.class.php:104
+msgid "Browser not compatible."
+msgstr ""
+
+#: ../../include/class/HelpFeedBack.class.php:147
+msgid "Suggestion"
+msgstr ""
+
+#: ../../include/class/HelpFeedBack.class.php:158
+msgid "Something is wrong"
+msgstr ""
+
+#: ../../include/class/HelpFeedBack.class.php:171
+#: ../../include/class/Diagnostics.class.php:1894
+msgid "What happened?"
+msgstr ""
+
+#: ../../include/class/HelpFeedBack.class.php:181
+msgid "Your Email"
+msgstr ""
+
+#: ../../include/class/HelpFeedBack.class.php:198
+msgid "Submit"
+msgstr ""
+
+#: ../../include/class/HelpFeedBack.class.php:253
+msgid "[pandorafms wiki] New suggestion"
+msgstr ""
+
+#: ../../include/class/HelpFeedBack.class.php:255
+msgid "[pandorafms wiki] New report"
+msgstr ""
+
+#: ../../include/class/HelpFeedBack.class.php:261
+msgid "Please provide your email address, we promise not to bother you"
+msgstr ""
+
+#: ../../include/class/HelpFeedBack.class.php:309
+msgid "Something went wrong while sending the report."
+msgstr ""
+
+#: ../../include/class/HelpFeedBack.class.php:360
+msgid "Your report had been successfully sent to Artica."
+msgstr ""
+
+#: ../../include/class/HelpFeedBack.class.php:360
+msgid "Thank you!"
+msgstr ""
+
+#: ../../include/class/ManageNetScanScripts.class.php:104
+#: ../../include/class/CustomNetScan.class.php:352
+#: ../../enterprise/include/class/CSVImportAgents.class.php:98
+#: ../../enterprise/include/class/DeploymentCenter.class.php:594
+#: ../../godmode/wizards/HostDevices.class.php:196
+msgid "Host & Devices"
+msgstr ""
+
+#: ../../include/class/ManageNetScanScripts.class.php:122
+msgid "Net scan scripts"
+msgstr ""
+
+#: ../../include/class/ManageNetScanScripts.class.php:223
+msgid "Problem creating"
+msgstr ""
+
+#: ../../include/class/ManageNetScanScripts.class.php:228
+#: ../../enterprise/godmode/modules/local_components.php:326
+#: ../../godmode/modules/manage_network_components.php:438
+msgid "Created successfully"
+msgstr ""
+
+#: ../../include/class/ManageNetScanScripts.class.php:234
+#: ../../include/class/ManageNetScanScripts.class.php:321
+msgid "Name or Script fullpath they can not be empty"
+msgstr ""
+
+#: ../../include/class/ManageNetScanScripts.class.php:255
+#: ../../include/class/ManageNetScanScripts.class.php:342
+msgid "Problem deleting Net scan Scripts, Not selected script"
+msgstr ""
+
+#: ../../include/class/ManageNetScanScripts.class.php:310
+msgid "Problem updating"
+msgstr ""
+
+#: ../../include/class/ManageNetScanScripts.class.php:315
+#: ../../enterprise/godmode/modules/local_components.php:401
+#: ../../godmode/modules/manage_network_components.php:534
+msgid "Updated successfully"
+msgstr ""
+
+#: ../../include/class/ManageNetScanScripts.class.php:361
+msgid "Problem deleting Net scan Scripts"
+msgstr ""
+
+#: ../../include/class/ManageNetScanScripts.class.php:366
+msgid "Deleted successfully"
+msgstr ""
+
+#: ../../include/class/ManageNetScanScripts.class.php:434
+#: ../../include/class/ExternalTools.class.php:353
+#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1103
+#: ../../godmode/servers/plugin.php:429 ../../godmode/servers/plugin.php:434
+#: ../../godmode/servers/plugin.php:817
+#: ../../godmode/modules/manage_network_components_form_network.php:223
+#: ../../godmode/events/event_responses.editor.php:157
+#: ../../godmode/events/event_responses.editor.php:164
+#: ../../godmode/massive/massive_edit_plugins.php:480
+#: ../../godmode/massive/massive_edit_modules.php:1181
+#: ../../godmode/agentes/module_manager_editor_network.php:433
+#: ../../godmode/alerts/alert_actions.php:272
+#: ../../godmode/alerts/alert_actions.php:327
+#: ../../godmode/alerts/configure_alert_command.php:246
+#: ../../godmode/alerts/configure_alert_action.php:247
+msgid "Command"
+msgstr ""
+
+#: ../../include/class/ManageNetScanScripts.class.php:439
+msgid "Are you sure delete script?"
+msgstr ""
+
+#: ../../include/class/ManageNetScanScripts.class.php:459
+msgid "Delete Script"
+msgstr ""
+
+#: ../../include/class/ManageNetScanScripts.class.php:478
+msgid "There are no net scan scripts in the system"
+msgstr ""
+
+#: ../../include/class/ManageNetScanScripts.class.php:552
+msgid "Script fullpath"
+msgstr ""
+
+#: ../../include/class/ManageNetScanScripts.class.php:636
+#: ../../enterprise/godmode/modules/configure_local_component.php:639
+#: ../../godmode/servers/plugin.php:492
+msgid "Default value"
+msgstr ""
+
+#: ../../include/class/ManageNetScanScripts.class.php:667
+#: ../../godmode/servers/plugin.php:505
+msgid "Hide value"
+msgstr ""
+
+#: ../../include/class/ManageNetScanScripts.class.php:669
+#: ../../godmode/servers/plugin.php:506
+msgid "This field will show up as dots like a password"
+msgstr ""
+
+#: ../../include/class/ManageNetScanScripts.class.php:690
+#: ../../include/functions_ui.php:1446
+#: ../../enterprise/meta/general/login_page.php:75
+#: ../../enterprise/meta/include/reset_pass.php:58
+#: ../../enterprise/meta/include/process_reset_pass.php:58
+#: ../../enterprise/godmode/modules/configure_local_component.php:645
+#: ../../godmode/servers/plugin.php:526
+msgid "Help"
+msgstr ""
+
+#: ../../include/class/ManageNetScanScripts.class.php:724
+#: ../../enterprise/godmode/modules/configure_local_component.php:655
+#: ../../godmode/servers/plugin.php:554
+msgid "Add macro"
+msgstr ""
+
+#: ../../include/class/ManageNetScanScripts.class.php:742
+#: ../../enterprise/godmode/modules/configure_local_component.php:663
+#: ../../godmode/servers/plugin.php:568
+msgid "Delete macro"
+msgstr ""
+
+#: ../../include/class/AgentsAlerts.class.php:304
+#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:461
+#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:573
+#: ../../enterprise/meta/monitoring/wizard/wizard.manage_alert.php:263
+#: ../../godmode/alerts/configure_alert_template.php:758
+#: ../../godmode/alerts/alert_list.builder.php:117
+msgid "Default action"
+msgstr ""
+
+#: ../../include/class/AgentsAlerts.class.php:332
+#: ../../godmode/alerts/alert_list.builder.php:136
+#: ../../godmode/alerts/configure_alert_action.php:169
+msgid "Create Action"
+msgstr ""
+
+#: ../../include/class/AgentsAlerts.class.php:379
+#: ../../godmode/alerts/configure_alert_template.php:607
+#: ../../godmode/alerts/alert_list.builder.php:169
+msgid "Create Template"
+msgstr ""
+
+#: ../../include/class/AgentsAlerts.class.php:396
+#: ../../enterprise/godmode/alerts/alert_inventory_builder.php:282
+#: ../../godmode/alerts/alert_list.builder.php:204
+msgid "Add alert"
+msgstr ""
+
+#: ../../include/class/AgentsAlerts.class.php:502
+msgid "There are no agents with alerts"
+msgstr ""
+
+#: ../../include/class/AgentsAlerts.class.php:580
+msgid "Previous alerts"
+msgstr ""
+
+#: ../../include/class/AgentsAlerts.class.php:643
+msgid "More alerts"
+msgstr ""
+
+#: ../../include/class/AgentsAlerts.class.php:741
+msgid "Agents/Alerts"
+msgstr ""
+
+#: ../../include/class/AgentsAlerts.class.php:790
+msgid "Show modules without alerts"
+msgstr ""
+
+#: ../../include/class/AgentsAlerts.class.php:949
+#: ../../include/functions_ui.php:1247
+#: ../../enterprise/operation/agentes/policy_view.php:345
+#: ../../mobile/operation/alerts.php:324
+#: ../../godmode/alerts/alert_list.list.php:559
+#: ../../godmode/alerts/alert_view.php:105
+msgid "time(s)"
+msgstr ""
+
+#: ../../include/class/AgentsAlerts.class.php:952
+#: ../../include/functions_reporting.php:12334
+#: ../../include/functions_ui.php:1250
+#: ../../enterprise/operation/agentes/policy_view.php:348
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3184
+#: ../../enterprise/godmode/alerts/alert_inventory_list.php:261
+#: ../../mobile/operation/alerts.php:327
+#: ../../godmode/alerts/alert_list.list.php:562
+#: ../../godmode/alerts/alert_view.php:108
+msgid "Alert disabled"
+msgstr ""
+
+#: ../../include/class/WebServerModuleDebug.class.php:143
+msgid "Performing query. Please wait."
+msgstr ""
+
+#: ../../include/class/WebServerModuleDebug.class.php:174
+msgid "No results"
+msgstr ""
+
+#: ../../include/class/WebServerModuleDebug.class.php:197
+msgid "Error performing execution"
+msgstr ""
+
+#: ../../include/class/WebServerModuleDebug.class.php:229
+msgid "Please, wait for a first execution of module"
+msgstr ""
+
+#: ../../include/class/WebServerModuleDebug.class.php:325
+#: ../../godmode/agentes/module_manager_editor_web.php:180
+msgid "Debug"
+msgstr ""
+
+#: ../../include/class/OrderInterpreter.class.php:105
+#: ../../enterprise/meta/monitoring/tactical.php:40
+msgid "Tactical View"
+msgstr ""
+
+#: ../../include/class/OrderInterpreter.class.php:123
+msgid "Agent Management"
+msgstr ""
+
+#: ../../include/class/OrderInterpreter.class.php:141
+#: ../../godmode/menu.php:322
+msgid "General Setup"
+msgstr ""
+
+#: ../../include/class/OrderInterpreter.class.php:157
+msgid "Manage Policies"
+msgstr ""
+
+#: ../../include/class/OrderInterpreter.class.php:171
+msgid "List Alerts"
+msgstr ""
+
+#: ../../include/class/OrderInterpreter.class.php:195
+msgid "View Events"
+msgstr ""
+
+#: ../../include/class/OrderInterpreter.class.php:247
+msgid "Manage Servers"
+msgstr ""
+
+#: ../../include/class/OrderInterpreter.class.php:261
+msgid "Edit User"
+msgstr ""
+
+#: ../../include/class/OrderInterpreter.class.php:271
+msgid "Tree View"
+msgstr ""
+
+#: ../../include/class/OrderInterpreter.class.php:281
+msgid "Network Component"
+msgstr ""
+
+#: ../../include/class/OrderInterpreter.class.php:295
+msgid "Task List"
+msgstr ""
+
+#: ../../include/class/OrderInterpreter.class.php:339
+msgid "Update Manager"
+msgstr ""
+
+#: ../../include/class/OrderInterpreter.class.php:353
+msgid "Manage Agent Groups"
+msgstr ""
+
+#: ../../include/class/OrderInterpreter.class.php:394
+msgid "GO TO "
+msgstr ""
+
+#: ../../include/class/OrderInterpreter.class.php:423
+msgid "results found"
+msgstr ""
+
+#: ../../include/class/OrderInterpreter.class.php:427
+msgid "Press enter to search"
+msgstr ""
+
+#: ../../include/class/AgentWizard.class.php:448
+msgid "There are not defined Remote components for this performance."
+msgstr ""
+
+#: ../../include/class/AgentWizard.class.php:541
+#: ../../include/functions_snmp_browser.php:766
+#: ../../godmode/events/event_responses.editor.php:175
+msgid "Local console"
+msgstr ""
+
+#: ../../include/class/AgentWizard.class.php:567
+msgid "SNMP Walk"
+msgstr ""
+
+#: ../../include/class/AgentWizard.class.php:572
+msgid "WMI Explorer"
+msgstr ""
+
+#: ../../include/class/AgentWizard.class.php:615
+#: ../../include/functions_snmp_browser.php:702
+#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:757
+#: ../../godmode/massive/massive_edit_modules.php:821
+#: ../../godmode/agentes/module_manager_editor_wmi.php:45
+#: ../../godmode/agentes/module_manager_editor_network.php:80
+msgid "Target IP"
+msgstr ""
+
+#: ../../include/class/AgentWizard.class.php:630
+#: ../../include/functions_config.php:1547
+#: ../../include/functions_snmp_browser.php:714
+#: ../../enterprise/views/ncm/agent/manage.php:118
+#: ../../enterprise/include/class/Aws.cloud.php:556
+#: ../../enterprise/include/class/Aws.S3.php:574
+#: ../../enterprise/include/class/VMware.app.php:632
+#: ../../enterprise/include/class/Azure.cloud.php:813
+#: ../../enterprise/godmode/setup/setup_history.php:174
+#: ../../enterprise/godmode/servers/manage_export_form.php:121
+#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1063
+#: ../../extensions/quick_shell.php:181
+#: ../../godmode/servers/modificar_server.php:84
+#: ../../godmode/modules/manage_network_components_form_network.php:53
+#: ../../godmode/massive/massive_edit_modules.php:1145
+#: ../../godmode/agentes/module_manager_editor_network.php:126
+msgid "Port"
+msgstr ""
+
+#: ../../include/class/AgentWizard.class.php:646
+msgid "namespace"
+msgstr ""
+
+#: ../../include/class/AgentWizard.class.php:659
+#: ../../include/class/CredentialStore.class.php:957
+#: ../../enterprise/include/functions_ui.php:102
+#: ../../enterprise/godmode/setup/setup_module_library.php:49
+#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:849
+#: ../../extensions/quick_shell.php:174
+#: ../../godmode/modules/manage_network_components_form_wmi.php:47
+#: ../../godmode/massive/massive_edit_modules.php:906
+#: ../../godmode/agentes/module_manager_editor_wmi.php:103
+msgid "Username"
+msgstr ""
+
+#: ../../include/class/AgentWizard.class.php:688
+#: ../../godmode/events/event_responses.editor.php:192
+msgid "Server to execute command"
+msgstr ""
+
+#: ../../include/class/AgentWizard.class.php:704
+#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:263
+#: ../../godmode/modules/manage_network_components_form_network.php:82
+#: ../../godmode/agentes/module_manager_editor_network.php:149
+msgid "SNMP community"
+msgstr ""
+
+#: ../../include/class/AgentWizard.class.php:726
+#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:272
+#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:780
+#: ../../godmode/modules/manage_network_components_form_network.php:55
+#: ../../godmode/massive/massive_edit_modules.php:839
+#: ../../godmode/wizards/HostDevices.class.php:1199
+#: ../../godmode/agentes/module_manager_editor_network.php:180
+msgid "SNMP version"
+msgstr ""
+
+#: ../../include/class/AgentWizard.class.php:801
+#: ../../include/functions_snmp_browser.php:890
+#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:360
+#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:812
+#: ../../godmode/modules/manage_network_components_form_network.php:161
+#: ../../godmode/massive/massive_edit_modules.php:869
+#: ../../godmode/wizards/HostDevices.class.php:1332
+#: ../../godmode/agentes/module_manager_editor_network.php:408
+msgid "Security level"
+msgstr ""
+
+#: ../../include/class/AgentWizard.class.php:816
+msgid "User authentication"
+msgstr ""
+
+#: ../../include/class/AgentWizard.class.php:831
+#: ../../include/functions_config.php:544
+#: ../../enterprise/meta/include/functions_meta.php:502
+#: ../../godmode/setup/setup_auth.php:440
+msgid "Authentication method"
+msgstr ""
+
+#: ../../include/class/AgentWizard.class.php:845
+msgid "Password authentication"
+msgstr ""
+
+#: ../../include/class/AgentWizard.class.php:860
+#: ../../include/functions_snmp_browser.php:853
+#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:324
+#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:806
+#: ../../godmode/modules/manage_network_components_form_network.php:123
+#: ../../godmode/massive/massive_edit_modules.php:863
+#: ../../godmode/wizards/HostDevices.class.php:1286
+#: ../../godmode/agentes/module_manager_editor_network.php:369
+msgid "Privacy method"
+msgstr ""
+
+#: ../../include/class/AgentWizard.class.php:874
+#: ../../include/functions_snmp_browser.php:867
+#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:808
+#: ../../godmode/modules/manage_network_components_form_network.php:136
+#: ../../godmode/massive/massive_edit_modules.php:865
+#: ../../godmode/wizards/HostDevices.class.php:1301
+#: ../../godmode/agentes/module_manager_editor_network.php:371
+msgid "Privacy pass"
+msgstr ""
+
+#: ../../include/class/AgentWizard.class.php:998
+#, php-format
+msgid "The PEN (%s) is not registered."
+msgstr ""
+
+#: ../../include/class/AgentWizard.class.php:1065
+msgid "The SNMP Walk does not return anything with the received arguments."
+msgstr ""
+
+#: ../../include/class/AgentWizard.class.php:1118
+#, php-format
+msgid "The target host response with an error: %s"
+msgstr ""
+
+#: ../../include/class/AgentWizard.class.php:1168
+msgid "No selected modules"
+msgstr ""
+
+#: ../../include/class/AgentWizard.class.php:1205
+msgid "Module exists in policy"
+msgstr ""
+
+#: ../../include/class/AgentWizard.class.php:1215
+msgid "Module exists in agent"
+msgstr ""
+
+#: ../../include/class/AgentWizard.class.php:1222
+msgid "Module with the same name in the module creation list"
+msgstr ""
+
+#: ../../include/class/AgentWizard.class.php:1252
+#: ../../include/functions_servers.php:738
+msgid "Enterprise Satellite server"
+msgstr ""
+
+#: ../../include/class/AgentWizard.class.php:1262
+#: ../../include/functions_servers.php:608
+#: ../../include/functions_servers.php:1320
+#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:446
+msgid "Plugin server"
+msgstr ""
+
+#: ../../include/class/AgentWizard.class.php:1272
+#: ../../include/functions_servers.php:634
+#: ../../include/functions_servers.php:1326
+#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:491
+msgid "WMI server"
+msgstr ""
+
+#: ../../include/class/AgentWizard.class.php:1281
+#: ../../include/functions_servers.php:569
+#: ../../include/functions_servers.php:1308
+#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:401
+msgid "Network server"
+msgstr ""
+
+#: ../../include/class/AgentWizard.class.php:1625
+#, php-format
+msgid "Module \"%s\" exits in this policy"
+msgstr ""
+
+#: ../../include/class/AgentWizard.class.php:1727
+#: ../../include/class/AgentWizard.class.php:2155
+#, php-format
+msgid "Module %s module_exec not configuration"
+msgstr ""
+
+#: ../../include/class/AgentWizard.class.php:1883
+#: ../../include/class/AgentWizard.class.php:2330
+#, php-format
+msgid "Module %s satellite execution not configuration"
+msgstr ""
+
+#: ../../include/class/AgentWizard.class.php:1975
+#, php-format
+msgid "Module \"%s\" problems insert in bbdd"
+msgstr ""
+
+#: ../../include/class/AgentWizard.class.php:1983
+#: ../../include/class/AgentWizard.class.php:2413
+msgid "Modules created"
+msgstr ""
+
+#: ../../include/class/AgentWizard.class.php:2013
+#, php-format
+msgid "Module \"%s\" exists in this agent"
+msgstr ""
+
+#: ../../include/class/AgentWizard.class.php:2495
+#: ../../include/functions.php:2704
+#: ../../enterprise/operation/agentes/policy_view.php:184
+#: ../../enterprise/operation/agentes/policy_view.php:277
+#: ../../enterprise/operation/agentes/policy_view.php:570
+#: ../../enterprise/meta/monitoring/wizard/wizard.php:138
+#: ../../godmode/modules/manage_network_components_form_plugin.php:54
+#: ../../godmode/modules/manage_network_components_form_wmi.php:60
+#: ../../godmode/alerts/configure_alert_template.php:1288
+#: ../../godmode/alerts/alert_list.builder.php:293
+msgid "Empty"
+msgstr ""
+
+#: ../../include/class/AgentWizard.class.php:2604
+msgid "Select all filtered interfaces"
+msgstr ""
+
+#: ../../include/class/AgentWizard.class.php:2627
+msgid "OperStatus UP"
+msgstr ""
+
+#: ../../include/class/AgentWizard.class.php:2638
+msgid "AdminStatus UP"
+msgstr ""
+
+#: ../../include/class/AgentWizard.class.php:3324
+msgid "No information could be retrieved."
+msgstr ""
+
+#: ../../include/class/AgentWizard.class.php:3608
+msgid "Create modules"
+msgstr ""
+
+#: ../../include/class/AgentWizard.class.php:3917
+msgid "Add general monitoring for all selected interfaces"
+msgstr ""
+
+#: ../../include/class/AgentWizard.class.php:3938
+#: ../../include/class/AgentWizard.class.php:3939
+#: ../../include/class/AgentWizard.class.php:3958
+#: ../../include/class/AgentWizard.class.php:3959
+msgid "Modules selected"
+msgstr ""
+
+#: ../../include/class/AgentWizard.class.php:4027
+msgid "Module info"
+msgstr ""
+
+#: ../../include/class/AgentWizard.class.php:4056
+msgid "Current value"
+msgstr ""
+
+#: ../../include/class/AgentWizard.class.php:5542
+#, php-format
+msgid "The operation '%s' is not permitted. Review for remote components."
+msgstr ""
+
+#: ../../include/class/AgentWizard.class.php:5957
+msgid "Modules about to be created"
+msgstr ""
+
+#: ../../include/class/WelcomeWindow.class.php:157
+msgid "Welcome to"
+msgstr ""
+
+#: ../../include/class/WelcomeWindow.class.php:158
+msgid "Do not show anymore"
+msgstr ""
+
+#: ../../include/class/WelcomeWindow.class.php:167
+msgid "Cancel Configuration Window"
+msgstr ""
+
+#: ../../include/class/WelcomeWindow.class.php:172
+msgid "Are you sure you want to cancel this tutorial?"
+msgstr ""
+
+#: ../../include/class/WelcomeWindow.class.php:428
+msgid "Please ensure mail configuration matches your needs"
+msgstr ""
+
+#: ../../include/class/WelcomeWindow.class.php:462
+msgid "Create an agent"
+msgstr ""
+
+#: ../../include/class/WelcomeWindow.class.php:487
+msgid "Create a module to check if an agent is online"
+msgstr ""
+
+#: ../../include/class/WelcomeWindow.class.php:512
+msgid "Be warned if something is wrong, create an alert on the module"
+msgstr ""
+
+#: ../../include/class/WelcomeWindow.class.php:537
+msgid "Discover hosts and devices in your network"
+msgstr ""
+
+#: ../../include/class/WelcomeWindow.class.php:565
+msgid "If something is not working as expected, look for this icon and report!"
+msgstr ""
+
+#: ../../include/class/Diagnostics.class.php:144
+#: ../../enterprise/operation/reporting/custom_reporting.php:64
+#: ../../enterprise/godmode/reporting/reporting_builder.template.php:581
+msgid "Export to PDF"
+msgstr ""
+
+#: ../../include/class/Diagnostics.class.php:157
+#, php-format
+msgid "%s Diagnostic tool"
+msgstr ""
+
+#: ../../include/class/Diagnostics.class.php:222
+#, php-format
+msgid "Info status %s"
+msgstr ""
+
+#: ../../include/class/Diagnostics.class.php:226
+msgid "PHP setup"
+msgstr ""
+
+#: ../../include/class/Diagnostics.class.php:230
+#: ../../godmode/db/db_main.php:98
+msgid "Database size stats"
+msgstr ""
+
+#: ../../include/class/Diagnostics.class.php:234
+msgid "Database health status"
+msgstr ""
+
+#: ../../include/class/Diagnostics.class.php:238
+msgid "Database status info"
+msgstr ""
+
+#: ../../include/class/Diagnostics.class.php:242
+msgid "System Info"
+msgstr ""
+
+#: ../../include/class/Diagnostics.class.php:246
+msgid "MySQL Performance metrics"
+msgstr ""
+
+#: ../../include/class/Diagnostics.class.php:251
+#, php-format
+msgid "Tables fragmentation in the %s database"
+msgstr ""
+
+#: ../../include/class/Diagnostics.class.php:257
+#, php-format
+msgid "%s logs dates"
+msgstr ""
+
+#: ../../include/class/Diagnostics.class.php:261
+#, php-format
+msgid "%s Licence Information"
+msgstr ""
+
+#: ../../include/class/Diagnostics.class.php:265
+#: ../../include/class/Diagnostics.class.php:1251
+msgid "Status of the attachment folder"
+msgstr ""
+
+#: ../../include/class/Diagnostics.class.php:269
+msgid "Information from the tagente_datos table"
+msgstr ""
+
+#: ../../include/class/Diagnostics.class.php:273
+#, php-format
+msgid "%s server threads"
+msgstr ""
+
+#: ../../include/class/Diagnostics.class.php:277
+msgid "SQL show engine innodb status"
+msgstr ""
+
+#: ../../include/class/Diagnostics.class.php:325
+msgid "Graph of the Agents Unknown module."
+msgstr ""
+
+#: ../../include/class/Diagnostics.class.php:332
+msgid "Graph of the Database Maintenance module."
+msgstr ""
+
+#: ../../include/class/Diagnostics.class.php:339
+msgid "Graph of the Free Disk Spool Dir module."
+msgstr ""
+
+#: ../../include/class/Diagnostics.class.php:345
+msgid "Graph of the Free RAM module."
+msgstr ""
+
+#: ../../include/class/Diagnostics.class.php:351
+msgid "Graph of the Queued Modules module."
+msgstr ""
+
+#: ../../include/class/Diagnostics.class.php:357
+msgid "Graph of the Status module."
+msgstr ""
+
+#: ../../include/class/Diagnostics.class.php:363
+msgid "Graph of the System Load AVG module."
+msgstr ""
+
+#: ../../include/class/Diagnostics.class.php:370
+msgid "Graph of the Execution Time module."
+msgstr ""
+
+#: ../../include/class/Diagnostics.class.php:379
+msgid "Graphs modules that represent the self-monitoring system"
+msgstr ""
+
+#: ../../include/class/Diagnostics.class.php:436
+#, php-format
+msgid "%s Build"
+msgstr ""
+
+#: ../../include/class/Diagnostics.class.php:440
+#, php-format
+msgid "%s Version"
+msgstr ""
+
+#: ../../include/class/Diagnostics.class.php:444
+msgid "Minor Release"
+msgstr ""
+
+#: ../../include/class/Diagnostics.class.php:448
+msgid "Homedir"
+msgstr ""
+
+#: ../../include/class/Diagnostics.class.php:452
+msgid "HomeUrl"
+msgstr ""
+
+#: ../../include/class/Diagnostics.class.php:456
+msgid "Enterprise installed"
+msgstr ""
+
+#: ../../include/class/Diagnostics.class.php:457
+msgid "true"
+msgstr ""
+
+#: ../../include/class/Diagnostics.class.php:457
+msgid "false"
+msgstr ""
+
+#: ../../include/class/Diagnostics.class.php:460
+msgid "Update Key"
+msgstr ""
+
+#: ../../include/class/Diagnostics.class.php:464
+msgid "Updating code path"
+msgstr ""
+
+#: ../../include/class/Diagnostics.class.php:468
+msgid "Current Update #"
+msgstr ""
+
+#: ../../include/class/Diagnostics.class.php:492
+msgid "PHP Version"
+msgstr ""
+
+#: ../../include/class/Diagnostics.class.php:496
+msgid "PHP Max execution time"
+msgstr ""
+
+#: ../../include/class/Diagnostics.class.php:500
+msgid "PHP Max input time"
+msgstr ""
+
+#: ../../include/class/Diagnostics.class.php:504
+msgid "PHP Memory limit"
+msgstr ""
+
+#: ../../include/class/Diagnostics.class.php:508
+msgid "Session cookie lifetime"
+msgstr ""
+
+#: ../../include/class/Diagnostics.class.php:557
+msgid "Total groups"
+msgstr ""
+
+#: ../../include/class/Diagnostics.class.php:561
+msgid "Total module data records"
+msgstr ""
+
+#: ../../include/class/Diagnostics.class.php:565
+msgid "Total agent access record"
+msgstr ""
+
+#: ../../include/class/Diagnostics.class.php:569
+#: ../../include/functions_reporting.php:13922 ../../godmode/db/db_main.php:108
+msgid "Total events"
+msgstr ""
+
+#: ../../include/class/Diagnostics.class.php:573
+msgid "Total traps"
+msgstr ""
+
+#: ../../include/class/Diagnostics.class.php:577
+msgid "Total users"
+msgstr ""
+
+#: ../../include/class/Diagnostics.class.php:581
+msgid "Total sessions"
+msgstr ""
+
+#: ../../include/class/Diagnostics.class.php:620
+msgid "Pandora DB has never been executed"
+msgstr ""
+
+#: ../../include/class/Diagnostics.class.php:627
+msgid "Ago"
+msgstr ""
+
+#: ../../include/class/Diagnostics.class.php:634
+msgid "Total unknown agents"
+msgstr ""
+
+#: ../../include/class/Diagnostics.class.php:638
+msgid "Total not-init modules"
+msgstr ""
+
+#: ../../include/class/Diagnostics.class.php:642
+msgid "Pandora DB Last run"
+msgstr ""
+
+#: ../../include/class/Diagnostics.class.php:674
+msgid "DB Schema Version (first installed)"
+msgstr ""
+
+#: ../../include/class/Diagnostics.class.php:678
+msgid "DB Schema Version (actual)"
+msgstr ""
+
+#: ../../include/class/Diagnostics.class.php:682
+msgid "DB Schema Build"
+msgstr ""
+
+#: ../../include/class/Diagnostics.class.php:686
+msgid "DB Size"
+msgstr ""
+
+#: ../../include/class/Diagnostics.class.php:722
+#: ../../enterprise/godmode/reporting/aws_view.php:54
+msgid "CPU"
+msgstr ""
+
+#: ../../include/class/Diagnostics.class.php:726
+msgid "RAM"
+msgstr ""
+
+#: ../../include/class/Diagnostics.class.php:730
+msgid "Os"
+msgstr ""
+
+#: ../../include/class/Diagnostics.class.php:734
+#: ../../include/class/Diagnostics.class.php:752
+#: ../../enterprise/tools/ipam/ipam_ajax.php:364
+#: ../../enterprise/tools/ipam/ipam_network.php:396
+#: ../../enterprise/include/functions_ipam.php:1648
+#: ../../enterprise/include/functions_ipam.php:1649
+#: ../../enterprise/include/functions_ipam.php:2037
+msgid "Hostname"
+msgstr ""
+
+#: ../../include/class/Diagnostics.class.php:738
+#: ../../include/class/Diagnostics.class.php:756
+#: ../../include/class/NetworkMap.class.php:2909
+msgid "Ip"
+msgstr ""
+
+#: ../../include/class/Diagnostics.class.php:784
+msgid "InnoDB buffer pool size"
+msgstr ""
+
+#: ../../include/class/Diagnostics.class.php:788
+#, php-format
+msgid ""
+"It has to be 40% of the server memory not recommended to be greater or less"
+msgstr ""
+
+#: ../../include/class/Diagnostics.class.php:793
+msgid "InnoDB file per table"
+msgstr ""
+
+#: ../../include/class/Diagnostics.class.php:796
+#: ../../include/class/Diagnostics.class.php:868
+msgid "Recommended ON"
+msgstr ""
+
+#: ../../include/class/Diagnostics.class.php:800
+msgid "InnoDB flush log at trx-commit"
+msgstr ""
+
+#: ../../include/class/Diagnostics.class.php:803
+#, php-format
+msgid "Recommended Value %d"
+msgstr ""
+
+#: ../../include/class/Diagnostics.class.php:807
+msgid "InnoDB lock wait timeout"
+msgstr ""
+
+#: ../../include/class/Diagnostics.class.php:810
+#: ../../include/class/Diagnostics.class.php:817
+#: ../../include/class/Diagnostics.class.php:824
+#: ../../include/class/Diagnostics.class.php:831
+#: ../../include/class/Diagnostics.class.php:838
+#: ../../include/class/Diagnostics.class.php:847
+#: ../../include/class/Diagnostics.class.php:854
+#: ../../include/class/Diagnostics.class.php:861
+#: ../../include/class/Diagnostics.class.php:875
+#: ../../include/class/Diagnostics.class.php:882
+#: ../../include/class/Diagnostics.class.php:889
+#: ../../include/class/Diagnostics.class.php:903
+#: ../../include/class/Diagnostics.class.php:910
+msgid "Min. Recommended Value"
+msgstr ""
+
+#: ../../include/class/Diagnostics.class.php:814
+msgid "InnoDB log buffer size"
+msgstr ""
+
+#: ../../include/class/Diagnostics.class.php:821
+msgid "InnoDB log file size"
+msgstr ""
+
+#: ../../include/class/Diagnostics.class.php:828
+msgid "Maximun allowed packet"
+msgstr ""
+
+#: ../../include/class/Diagnostics.class.php:835
+msgid "Maximun connections"
+msgstr ""
+
+#: ../../include/class/Diagnostics.class.php:840
+msgid "conections"
+msgstr ""
+
+#: ../../include/class/Diagnostics.class.php:844
+msgid "Query cache limit"
+msgstr ""
+
+#: ../../include/class/Diagnostics.class.php:851
+msgid "Query cache min-res-unit"
+msgstr ""
+
+#: ../../include/class/Diagnostics.class.php:858
+msgid "Query cache size"
+msgstr ""
+
+#: ../../include/class/Diagnostics.class.php:865
+msgid "Query cache type"
+msgstr ""
+
+#: ../../include/class/Diagnostics.class.php:872
+msgid "Read buffer size"
+msgstr ""
+
+#: ../../include/class/Diagnostics.class.php:879
+msgid "Read rnd-buffer size"
+msgstr ""
+
+#: ../../include/class/Diagnostics.class.php:886
+msgid "Sort buffer size"
+msgstr ""
+
+#: ../../include/class/Diagnostics.class.php:893
+msgid "Sql mode"
+msgstr ""
+
+#: ../../include/class/Diagnostics.class.php:896
+msgid "Must be empty"
+msgstr ""
+
+#: ../../include/class/Diagnostics.class.php:900
+msgid "Thread cache size"
+msgstr ""
+
+#: ../../include/class/Diagnostics.class.php:907
+msgid "Thread stack"
+msgstr ""
+
+#: ../../include/class/Diagnostics.class.php:970
+msgid ""
+"Table fragmentation is higher than recommended. They should be defragmented."
+msgstr ""
+
+#: ../../include/class/Diagnostics.class.php:974
+msgid "Table fragmentation is correct."
+msgstr ""
+
+#: ../../include/class/Diagnostics.class.php:983
+msgid "Tables fragmentation (maximum recommended value)"
+msgstr ""
+
+#: ../../include/class/Diagnostics.class.php:988
+msgid "Tables fragmentation (current value)"
+msgstr ""
+
+#: ../../include/class/Diagnostics.class.php:992
+msgid "Table fragmentation status"
+msgstr ""
+
+#: ../../include/class/Diagnostics.class.php:1027
+msgid "Size server logs (current value)"
+msgstr ""
+
+#: ../../include/class/Diagnostics.class.php:1031
+msgid "Status server logs"
+msgstr ""
+
+#: ../../include/class/Diagnostics.class.php:1036
+msgid "Size error logs (current value)"
+msgstr ""
+
+#: ../../include/class/Diagnostics.class.php:1040
+msgid "Status error logs"
+msgstr ""
+
+#: ../../include/class/Diagnostics.class.php:1045
+msgid "Size console logs (current value)"
+msgstr ""
+
+#: ../../include/class/Diagnostics.class.php:1049
+msgid "Status console logs"
+msgstr ""
+
+#: ../../include/class/Diagnostics.class.php:1084
+msgid "License capacity is less than 90 percent"
+msgstr ""
+
+#: ../../include/class/Diagnostics.class.php:1087
+msgid "License capacity exceeds 90 percent"
+msgstr ""
+
+#: ../../include/class/Diagnostics.class.php:1095
+msgid ""
+"The average of modules per agent is more than 40. You can have performance "
+"problems"
+msgstr ""
+
+#: ../../include/class/Diagnostics.class.php:1100
+msgid "The average of modules per agent is less than 40"
+msgstr ""
+
+#: ../../include/class/Diagnostics.class.php:1136
+msgid "The system has no load"
+msgstr ""
+
+#: ../../include/class/Diagnostics.class.php:1152
+#: ../../godmode/setup/license.php:129
+msgid "Customer key"
+msgstr ""
+
+#: ../../include/class/Diagnostics.class.php:1156
+#: ../../enterprise/include/functions_license.php:120
+msgid "Support expires"
+msgstr ""
+
+#: ../../include/class/Diagnostics.class.php:1160
+#: ../../godmode/setup/license.php:135
+msgid "Platform Limit"
+msgstr ""
+
+#: ../../include/class/Diagnostics.class.php:1164
+#: ../../godmode/setup/license.php:138
+msgid "Current Platform Count"
+msgstr ""
+
+#: ../../include/class/Diagnostics.class.php:1168
+#: ../../godmode/setup/license.php:141
+msgid "Current Platform Count (enabled: items)"
+msgstr ""
+
+#: ../../include/class/Diagnostics.class.php:1172
+#: ../../godmode/setup/license.php:144
+msgid "Current Platform Count (disabled: items)"
+msgstr ""
+
+#: ../../include/class/Diagnostics.class.php:1176
+#: ../../godmode/setup/license.php:147
+msgid "License Mode"
+msgstr ""
+
+#: ../../include/class/Diagnostics.class.php:1180
+msgid "Network Management System"
+msgstr ""
+
+#: ../../include/class/Diagnostics.class.php:1181
+#: ../../include/class/Diagnostics.class.php:1185
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3328
+#: ../../enterprise/godmode/policies/policy_external_alerts.php:461
+#: ../../enterprise/godmode/policies/policy_alerts.php:430
+#: ../../godmode/alerts/alert_list.list.php:638
+msgid "On"
+msgstr ""
+
+#: ../../include/class/Diagnostics.class.php:1181
+#: ../../include/class/Diagnostics.class.php:1185
+msgid "Off"
+msgstr ""
+
+#: ../../include/class/Diagnostics.class.php:1184
+#: ../../include/functions_ui.php:866 ../../godmode/setup/license.php:153
+#: ../../godmode/servers/modificar_server.php:42
+msgid "Satellite"
+msgstr ""
+
+#: ../../include/class/Diagnostics.class.php:1188
+#: ../../godmode/setup/license.php:156
+msgid "Licensed to"
+msgstr ""
+
+#: ../../include/class/Diagnostics.class.php:1192
+msgid "Status of agents capacity"
+msgstr ""
+
+#: ../../include/class/Diagnostics.class.php:1197
+msgid "Status of average modules per agent"
+msgstr ""
+
+#: ../../include/class/Diagnostics.class.php:1203
+msgid "Interval average of the network modules"
+msgstr ""
+
+#: ../../include/class/Diagnostics.class.php:1233
+msgid "The attached folder contains more than 700 files."
+msgstr ""
+
+#: ../../include/class/Diagnostics.class.php:1238
+msgid "The attached folder contains less than 700 files."
+msgstr ""
+
+#: ../../include/class/Diagnostics.class.php:1247
+msgid "Total files in the attached folder"
+msgstr ""
+
+#: ../../include/class/Diagnostics.class.php:1277
+msgid ""
+"The tagente_datos table contains too much data. A historical database is "
+"recommended."
+msgstr ""
+
+#: ../../include/class/Diagnostics.class.php:1282
+msgid "The tagente_datos table contains an acceptable amount of data."
+msgstr ""
+
+#: ../../include/class/Diagnostics.class.php:1291
+msgid "Total data in tagente_datos table"
+msgstr ""
+
+#: ../../include/class/Diagnostics.class.php:1295
+msgid "Tagente_datos table status"
+msgstr ""
+
+#: ../../include/class/Diagnostics.class.php:1331
+msgid "Threads"
+msgstr ""
+
+#: ../../include/class/Diagnostics.class.php:1341
+msgid "Total threads"
+msgstr ""
+
+#: ../../include/class/Diagnostics.class.php:1348
+msgid "Current pandora_server running threads"
+msgstr ""
+
+#: ../../include/class/Diagnostics.class.php:1352
+msgid ""
+"There's more pandora_server threads than configured, are you running "
+"multiple servers simultaneusly?."
+msgstr ""
+
+#: ../../include/class/Diagnostics.class.php:1486
+msgid ""
+"Please check your Pandora Server setup and make sure that the database "
+"maintenance daemon is running."
+msgstr ""
+
+#: ../../include/class/Diagnostics.class.php:1490
+msgid ""
+"It' is very important to keep the database up-to-date to get the best "
+"performance and results in Pandora"
+msgstr ""
+
+#: ../../include/class/Diagnostics.class.php:1752
+msgid "You have more than 10 MB of logs"
+msgstr ""
+
+#: ../../include/class/Diagnostics.class.php:1755
+msgid "You have less than 10 MB of logs"
+msgstr ""
+
+#: ../../include/class/Diagnostics.class.php:1818
+#: ../../enterprise/include/class/CommandCenter.class.php:461
+#: ../../enterprise/include/functions_login.php:145
+msgid "Successfully"
+msgstr ""
+
+#: ../../include/class/Diagnostics.class.php:1910
+#: ../../update_manager_client/views/register.php:79
+msgid "Your email"
+msgstr ""
+
+#: ../../include/class/Diagnostics.class.php:1922
+msgid "Include installation data"
+msgstr ""
+
+#: ../../include/class/Diagnostics.class.php:1959
+msgid "Hello Feedback-Men"
+msgstr ""
+
+#: ../../include/class/Diagnostics.class.php:1969
+msgid "Hello"
+msgstr ""
+
+#: ../../include/class/Diagnostics.class.php:1973
+#, php-format
+msgid "User %s is reporting an issue in its %s experience"
+msgstr ""
+
+#: ../../include/class/Diagnostics.class.php:1982
+msgid "Find some files attached to this mail"
+msgstr ""
+
+#: ../../include/class/Diagnostics.class.php:1985
+msgid "PDF is the diagnostic information retrieved at report time"
+msgstr ""
+
+#: ../../include/class/Diagnostics.class.php:1988
+msgid "CSV contains the statuses of every product file"
+msgstr ""
+
+#: ../../include/class/Diagnostics.class.php:1993
+#, php-format
+msgid ""
+"If you think this report must be escalated, feel free to forward this mail "
+"to \"%s\""
+msgstr ""
+
+#: ../../include/class/Diagnostics.class.php:1997
+msgid "LEGAL WARNING"
+msgstr ""
+
+#: ../../include/class/Diagnostics.class.php:1999
+msgid ""
+"The information contained in this transmission is privileged and "
+"confidential information intended only for the use of the individual or "
+"entity named above"
+msgstr ""
+
+#: ../../include/class/Diagnostics.class.php:2003
+msgid ""
+"If the reader of this message is not the intended recipient, you are hereby "
+"notified that any dissemination, distribution or copying of this "
+"communication is strictly prohibited"
+msgstr ""
+
+#: ../../include/class/Diagnostics.class.php:2007
+msgid "If you have received this transmission in error, do not read it"
+msgstr ""
+
+#: ../../include/class/Diagnostics.class.php:2011
+msgid ""
+"Please immediately reply to the sender that you have received this "
+"communication in error and then delete it"
+msgstr ""
+
+#: ../../include/class/Diagnostics.class.php:2090
+msgid "Invalid cron task"
+msgstr ""
+
+#: ../../include/class/Diagnostics.class.php:2091
+msgid "Sending of information has been processed"
+msgstr ""
+
+#: ../../include/class/Diagnostics.class.php:2126
+#: ../../include/class/Diagnostics.class.php:2136
+msgid "Diagnostics Info"
+msgstr ""
+
+#: ../../include/class/Diagnostics.class.php:2130
+#: ../../include/class/Diagnostics.class.php:2248
+#: ../../enterprise/include/functions_reporting_pdf.php:72
+#, php-format
+msgid "Automated %s report for user defined report"
+msgstr ""
+
+#: ../../include/class/Diagnostics.class.php:2175
+#: ../../include/functions_snmp_browser.php:880
+#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:350
+#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:811
+#: ../../godmode/modules/manage_network_components_form_network.php:151
+#: ../../godmode/massive/massive_edit_modules.php:868
+#: ../../godmode/wizards/HostDevices.class.php:1322
+#: ../../godmode/agentes/module_manager_editor_network.php:394
+msgid "MD5"
+msgstr ""
+
+#: ../../include/class/Diagnostics.class.php:2244
+#: ../../include/class/Diagnostics.class.php:2254
+msgid "PHP Info"
+msgstr ""
+
+#: ../../include/class/ConsoleSupervisor.php:839
+msgid "Limited mode."
+msgstr ""
+
+#: ../../include/class/ConsoleSupervisor.php:851
+msgid "License is about to expire"
+msgstr ""
+
+#: ../../include/class/ConsoleSupervisor.php:854
+msgid "Support is about to expire"
+msgstr ""
+
+#: ../../include/class/ConsoleSupervisor.php:872
+msgid "Expired license"
+msgstr ""
+
+#: ../../include/class/ConsoleSupervisor.php:873
+msgid "Your license has expired. Please, contact our sales department."
+msgstr ""
+
+#: ../../include/class/ConsoleSupervisor.php:875
+msgid "Support expired"
+msgstr ""
+
+#: ../../include/class/ConsoleSupervisor.php:876
+msgid ""
+"This license is outside of support. Please, contact our sales department."
+msgstr ""
+
+#: ../../include/class/ConsoleSupervisor.php:957
+msgid "Attachment directory is not writable"
+msgstr ""
+
+#: ../../include/class/ConsoleSupervisor.php:959
+#, php-format
+msgid ""
+"Directory %s is not writable. Please, configure corresponding permissions."
+msgstr ""
+
+#: ../../include/class/ConsoleSupervisor.php:979
+msgid "There are too many files in attachment directory"
+msgstr ""
+
+#: ../../include/class/ConsoleSupervisor.php:981
+#, php-format
+msgid ""
+"There are more than %d files in attachment, consider cleaning up attachment "
+"directory manually."
+msgstr ""
+
+#: ../../include/class/ConsoleSupervisor.php:1013
+msgid "Remote configuration directory is not readable"
+msgstr ""
+
+#: ../../include/class/ConsoleSupervisor.php:1015
+#, php-format
+msgid ""
+"Remote configuration directory %s is not readable. Please, adjust "
+"configuration."
+msgstr ""
+
+#: ../../include/class/ConsoleSupervisor.php:1032
+msgid "Remote configuration directory is not writable"
+msgstr ""
+
+#: ../../include/class/ConsoleSupervisor.php:1034
+#, php-format
+msgid ""
+"Remote configuration directory %s is not writable. Please, adjust "
+"configuration."
+msgstr ""
+
+#: ../../include/class/ConsoleSupervisor.php:1050
+msgid "Remote collections directory is not writable"
+msgstr ""
+
+#: ../../include/class/ConsoleSupervisor.php:1052
+#, php-format
+msgid "Collections directory %s is not writable. Please, adjust configuration."
+msgstr ""
+
+#: ../../include/class/ConsoleSupervisor.php:1068
+msgid "Remote md5 directory is not writable"
+msgstr ""
+
+#: ../../include/class/ConsoleSupervisor.php:1070
+#, php-format
+msgid "MD5 directory %s is not writable. Please, adjust configuration."
+msgstr ""
+
+#: ../../include/class/ConsoleSupervisor.php:1098
+msgid "There are too much files in spool"
+msgstr ""
+
+#: ../../include/class/ConsoleSupervisor.php:1100
+#, php-format
+msgid ""
+"There are more than %d files in %s. Consider checking DataServer performance"
+msgstr ""
+
+#: ../../include/class/ConsoleSupervisor.php:1121
+msgid "There are too many BADXML files in spool"
+msgstr ""
+
+#: ../../include/class/ConsoleSupervisor.php:1123
+#, php-format
+msgid "There are more than %d files in %s. Consider checking software agents."
+msgstr ""
+
+#: ../../include/class/ConsoleSupervisor.php:1210
+#, php-format
+msgid "%s (%s) is lacking performance."
+msgstr ""
+
+#: ../../include/class/ConsoleSupervisor.php:1278
+msgid "No servers available."
+msgstr ""
+
+#: ../../include/class/ConsoleSupervisor.php:1279
+msgid ""
+"There are no servers registered in this console. Please, check installation "
+"guide."
+msgstr ""
+
+#: ../../include/class/ConsoleSupervisor.php:1324
+#, php-format
+msgid "%s (%s) has crashed."
+msgstr ""
+
+#: ../../include/class/ConsoleSupervisor.php:1330
+#, php-format
+msgid "%s (%s) has crashed, please check log files."
+msgstr ""
+
+#: ../../include/class/ConsoleSupervisor.php:1337
+#, php-format
+msgid "%s (%s) is not running."
+msgstr ""
+
+#: ../../include/class/ConsoleSupervisor.php:1342
+#, php-format
+msgid ""
+"%s (%s) is not running. Please, check configuration file or remove this "
+"server from server list."
+msgstr ""
+
+#: ../../include/class/ConsoleSupervisor.php:1394
+msgid "No master servers found."
+msgstr ""
+
+#: ../../include/class/ConsoleSupervisor.php:1395
+msgid ""
+"At least one server must be defined to run as master. Please, check "
+"documentation."
+msgstr ""
+
+#: ../../include/class/ConsoleSupervisor.php:1450
+msgid "PHP safe mode is enabled. Some features may not work properly"
+msgstr ""
+
+#: ../../include/class/ConsoleSupervisor.php:1451
+msgid ""
+"To disable it, go to your PHP configuration file (php.ini) and put safe_mode "
+"= Off (Do not forget to restart apache process after changes)"
+msgstr ""
+
+#: ../../include/class/ConsoleSupervisor.php:1469
+#, php-format
+msgid "'%s' value in PHP configuration is not recommended"
+msgstr ""
+
+#: ../../include/class/ConsoleSupervisor.php:1473
+#, php-format
+msgid "Recommended value is %s"
+msgstr ""
+
+#: ../../include/class/ConsoleSupervisor.php:1474
+#: ../../include/class/ConsoleSupervisor.php:1498
+msgid "Unlimited"
+msgstr ""
+
+#: ../../include/class/ConsoleSupervisor.php:1475
+msgid ""
+"Please, change it on your PHP configuration file (php.ini) or contact with "
+"administrator (Do not forget to restart Apache process after)"
+msgstr ""
+
+#: ../../include/class/ConsoleSupervisor.php:1493
+#: ../../include/class/ConsoleSupervisor.php:1517
+#: ../../include/class/ConsoleSupervisor.php:1546
+#: ../../include/class/ConsoleSupervisor.php:1624
+#, php-format
+msgid "Not recommended '%s' value in PHP configuration"
+msgstr ""
+
+#: ../../include/class/ConsoleSupervisor.php:1497
+#: ../../include/class/ConsoleSupervisor.php:1521
+#: ../../include/class/ConsoleSupervisor.php:1550
+#: ../../include/class/ConsoleSupervisor.php:1628
+#, php-format
+msgid "Recommended value is: %s"
+msgstr ""
+
+#: ../../include/class/ConsoleSupervisor.php:1499
+#: ../../include/class/ConsoleSupervisor.php:1523
+#: ../../include/class/ConsoleSupervisor.php:1570
+msgid ""
+"Please, change it on your PHP configuration file (php.ini) or contact with "
+"administrator (Dont forget restart apache process after changes)"
+msgstr ""
+
+#: ../../include/class/ConsoleSupervisor.php:1522
+#: ../../include/class/ConsoleSupervisor.php:1551
+#, php-format
+msgid "%s or greater"
+msgstr ""
+
+#: ../../include/class/ConsoleSupervisor.php:1552
+#: ../../include/class/ConsoleSupervisor.php:1630
+msgid ""
+"Please, change it on your PHP configuration file (php.ini) or contact with "
+"administrator"
+msgstr ""
+
+#: ../../include/class/ConsoleSupervisor.php:1569
+msgid "Problems with disable_functions in php.ini"
+msgstr ""
+
+#: ../../include/class/ConsoleSupervisor.php:1570
+msgid ""
+"The variable disable_functions contains functions system() or exec() in PHP "
+"configuration file (php.ini)"
+msgstr ""
+
+#: ../../include/class/ConsoleSupervisor.php:1587
+msgid "PhantomJS is not installed"
+msgstr ""
+
+#: ../../include/class/ConsoleSupervisor.php:1588
+msgid ""
+"To be able to create images of the graphs for PDFs, please install the "
+"PhantomJS extension. For that, it is necessary to follow these steps:"
+msgstr ""
+
+#: ../../include/class/ConsoleSupervisor.php:1605
+msgid "PHP UPDATE REQUIRED"
+msgstr ""
+
+#: ../../include/class/ConsoleSupervisor.php:1672
+msgid "Historical database not available"
+msgstr ""
+
+#: ../../include/class/ConsoleSupervisor.php:1673
+msgid ""
+"Historical database is enabled, though not accessible with the current "
+"configuration."
+msgstr ""
+
+#: ../../include/class/ConsoleSupervisor.php:1716
+msgid "Database maintenance problem"
+msgstr ""
+
+#: ../../include/class/ConsoleSupervisor.php:1718
+#, php-format
+msgid ""
+"Your database hasn't been through maintenance for 48hrs. Please, check "
+"documentation on how to perform this maintenance process on %s and enable it "
+"as soon as possible."
+msgstr ""
+
+#: ../../include/class/ConsoleSupervisor.php:1778
+msgid "Historical database maintenance problem."
+msgstr ""
+
+#: ../../include/class/ConsoleSupervisor.php:1780
+#, php-format
+msgid ""
+"Your historical database hasn't been through maintenance for 48hrs. Please, "
+"check documentation on how to perform this maintenance process on %s and "
+"enable it as soon as possible."
+msgstr ""
+
+#: ../../include/class/ConsoleSupervisor.php:1818
+msgid "Historical database MR mismatch"
+msgstr ""
+
+#: ../../include/class/ConsoleSupervisor.php:1819
+msgid ""
+"Your historical database is not using the same schema as the main DB. This "
+"could produce anomalies while storing historical data."
+msgstr ""
+
+#: ../../include/class/ConsoleSupervisor.php:1859
+msgid "Log collector cannot connect to ElasticSearch"
+msgstr ""
+
+#: ../../include/class/ConsoleSupervisor.php:1860
+msgid "ElasticSearch is not available using current configuration."
+msgstr ""
+
+#: ../../include/class/ConsoleSupervisor.php:1929
+msgid "Metaconsole DB is not available."
+msgstr ""
+
+#: ../../include/class/ConsoleSupervisor.php:1930
+msgid "Cannot connect with Metaconsole DB using current configuration."
+msgstr ""
+
+#: ../../include/class/ConsoleSupervisor.php:1958
+msgid "Scheduled downtime running."
+msgstr ""
+
+#: ../../include/class/ConsoleSupervisor.php:1959
+msgid ""
+"A scheduled downtime is running. Some monitoring data won't be available "
+"while downtime is taking place."
+msgstr ""
+
+#: ../../include/class/ConsoleSupervisor.php:2115
+msgid "Downtime scheduled soon."
+msgstr ""
+
+#: ../../include/class/ConsoleSupervisor.php:2117
+#, php-format
+msgid ""
+"A scheduled downtime is going to be executed from %s to %s. Some monitoring "
+"data won't be available while downtime is taking place."
+msgstr ""
+
+#: ../../include/class/ConsoleSupervisor.php:2147
+msgid "This instance is not registered in the Update manager section"
+msgstr ""
+
+#: ../../include/class/ConsoleSupervisor.php:2148
+msgid ""
+"Click <a class=\"bolder underline\" href=\"javascript: force_run_register();"
+"\"> here</a> to start the registration process"
+msgstr ""
+
+#: ../../include/class/ConsoleSupervisor.php:2180
+msgid "Default password for \"Admin\" user has not been changed"
+msgstr ""
+
+#: ../../include/class/ConsoleSupervisor.php:2181
+msgid ""
+"Please, change the default password since it is a commonly reported "
+"vulnerability."
+msgstr ""
+
+#: ../../include/class/ConsoleSupervisor.php:2216
+msgid "Default font doesn't exist"
+msgstr ""
+
+#: ../../include/class/ConsoleSupervisor.php:2217
+msgid ""
+"Your defined font doesn't exist or is not defined. Please, check font "
+"parameters in your config"
+msgstr ""
+
+#: ../../include/class/ConsoleSupervisor.php:2240
+msgid "Developer mode is enabled"
+msgstr ""
+
+#: ../../include/class/ConsoleSupervisor.php:2242
+#, php-format
+msgid ""
+"Your %s has the \"develop_bypass\" mode enabled. This is a developer mode "
+"and should be disabled in a production environment. This value is located in "
+"the main index.php file"
+msgstr ""
+
+#: ../../include/class/ConsoleSupervisor.php:2266
+msgid "Event storm protection is enabled."
+msgstr ""
+
+#: ../../include/class/ConsoleSupervisor.php:2267
+msgid ""
+"Some events may get lost while this mode is enabled. The server must be "
+"restarted after altering this setting."
+msgstr ""
+
+#: ../../include/class/ConsoleSupervisor.php:2293
+msgid "Failed to retrieve updates, please configure utility"
+msgstr ""
+
+#: ../../include/class/ConsoleSupervisor.php:2311
+#, php-format
+msgid "New %s Console update"
+msgstr ""
+
+#: ../../include/class/ConsoleSupervisor.php:2314
+msgid "There is a new update available. Please<a class=\"bolder\" href=\""
+msgstr ""
+
+#: ../../include/class/ConsoleSupervisor.php:2348
+msgid "Minor release/s available"
+msgstr ""
+
+#: ../../include/class/ConsoleSupervisor.php:2350
+#, php-format
+msgid ""
+"There is one or more minor releases available. <a id=\"aviable_updates\" "
+"target=\"blank\" href=\"%s\">.About minor release update</a>."
+msgstr ""
+
+#: ../../include/class/ConsoleSupervisor.php:2376
+#: ../../enterprise/include/functions_tasklist.php:56
+msgid "DiscoveryConsoleTasks is not running properly"
+msgstr ""
+
+#: ../../include/class/ConsoleSupervisor.php:2378
+msgid "Discovery relies on an appropriate cron setup."
+msgstr ""
+
+#: ../../include/class/ConsoleSupervisor.php:2379
+#: ../../enterprise/include/functions_tasklist.php:59
+msgid "Please, add the following line to your crontab file:"
+msgstr ""
+
+#: ../../include/class/ConsoleSupervisor.php:2392
+#: ../../enterprise/include/functions_tasklist.php:74
+msgid "Last execution"
+msgstr ""
+
+#: ../../include/class/ConsoleSupervisor.php:2394
+msgid "Please, make sure process is not locked."
+msgstr ""
+
+#: ../../include/class/ConsoleSupervisor.php:2405
+msgid "DiscoveryConsoleTasks is not configured."
+msgstr ""
+
+#: ../../include/class/ConsoleSupervisor.php:2498
+#, php-format
+msgid "%s version misaligned with Console"
+msgstr ""
+
+#: ../../include/class/ConsoleSupervisor.php:2502
+#, php-format
+msgid ""
+"Server %s and this console have different versions. This might cause several "
+"malfunctions. Please, update this server."
+msgstr ""
+
+#: ../../include/class/ConsoleSupervisor.php:2563
+msgid "AllowOverride is disabled"
+msgstr ""
+
+#: ../../include/class/ConsoleSupervisor.php:2609
+msgid "Desynchronized operation on the node "
+msgstr ""
+
+#: ../../include/class/ConsoleSupervisor.php:2632
+msgid "Pandora FMS console log file changed location"
+msgstr ""
+
+#: ../../include/class/ConsoleSupervisor.php:2636
+#, php-format
+msgid ""
+"Pandora FMS console log file has been moved to new location %s/log. "
+"Currently you have an outdated and inoperative version of this file at %s. "
+"Please, consider deleting it."
+msgstr ""
+
+#: ../../include/class/ConsoleSupervisor.php:2671
+msgid "Pandora FMS audit log file changed location"
+msgstr ""
+
+#: ../../include/class/ConsoleSupervisor.php:2675
+#, php-format
+msgid ""
+"Pandora FMS audit log file has been moved to new location %s/log. Currently "
+"you have an outdated and inoperative version of this file at %s. Please, "
+"consider deleting it."
+msgstr ""
+
+#: ../../include/class/ConsoleSupervisor.php:2761
+#, php-format
+msgid "Node %s sync queue length exceeded, "
+msgstr ""
+
+#: ../../include/class/ConsoleSupervisor.php:2763
+#, php-format
+msgid ""
+"Synchronization queue lenght for node %s is %d items, this value should be 0 "
+"or lower than %d, please check the queue status."
+msgstr ""
+
+#: ../../include/class/ConsoleSupervisor.php:2816
+#, php-format
+msgid "Node %s sync queue failed, "
+msgstr ""
+
+#: ../../include/class/ConsoleSupervisor.php:2818
+#, php-format
+msgid ""
+"Node %s cannot process synchronization queue due %s, please check the queue "
+"status."
+msgstr ""
+
+#: ../../include/class/HTML.class.php:419
+#: ../../include/class/CustomNetScan.class.php:314
+#: ../../include/class/CustomNetScan.class.php:422
+#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:356
+#: ../../enterprise/include/class/Aws.cloud.php:1126
+#: ../../enterprise/include/class/MySQL.app.php:371
+#: ../../enterprise/include/class/Oracle.app.php:361
+#: ../../enterprise/include/class/DB2.app.php:354
+#: ../../enterprise/include/class/SAP.app.php:401
+#: ../../enterprise/include/class/Omnishell.class.php:630
+#: ../../enterprise/include/class/Omnishell.class.php:980
+#: ../../enterprise/include/class/Omnishell.class.php:1349
+#: ../../enterprise/include/class/VMware.app.php:455
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:285
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:339
+#: ../../enterprise/include/class/Azure.cloud.php:689
+#: ../../enterprise/include/class/Google.cloud.php:686
+#: ../../enterprise/include/lib/ClusterViewer/ClusterWizard.php:349
+#: ../../enterprise/include/lib/ClusterViewer/ClusterManager.php:752
+#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:469
+#: ../../godmode/modules/manage_network_components_form.php:367
+#: ../../godmode/reporting/graph_builder.main.php:308
+#: ../../godmode/wizards/HostDevices.class.php:648
+#: ../../godmode/wizards/HostDevices.class.php:747
+#: ../../godmode/wizards/Wizard.main.php:416
+#: ../../godmode/wizards/DiscoveryTaskList.class.php:181
+msgid "Go back"
+msgstr ""
+
+#: ../../include/class/ExternalTools.class.php:185
+msgid "Changes successfully saved."
+msgstr ""
+
+#: ../../include/class/ExternalTools.class.php:186
+msgid "Changes not saved."
+msgstr ""
+
+#: ../../include/class/ExternalTools.class.php:213
+#: ../../include/functions_config.php:263
+msgid "Sound for Alert fired"
+msgstr ""
+
+#: ../../include/class/ExternalTools.class.php:233
+#: ../../include/class/ExternalTools.class.php:263
+#: ../../include/class/ExternalTools.class.php:293
+msgid "Play sound"
+msgstr ""
+
+#: ../../include/class/ExternalTools.class.php:243
+#: ../../include/functions_config.php:267
+msgid "Sound for Monitor critical"
+msgstr ""
+
+#: ../../include/class/ExternalTools.class.php:273
+#: ../../include/functions_config.php:271
+msgid "Sound for Monitor warning"
+msgstr ""
+
+#: ../../include/class/ExternalTools.class.php:303
+#: ../../include/functions_config.php:1251
+msgid "Custom graphviz directory"
+msgstr ""
+
+#: ../../include/class/ExternalTools.class.php:313
+msgid "Traceroute path"
+msgstr ""
+
+#: ../../include/class/ExternalTools.class.php:316
+msgid "Ping path"
+msgstr ""
+
+#: ../../include/class/ExternalTools.class.php:319
+msgid "Nmap path"
+msgstr ""
+
+#: ../../include/class/ExternalTools.class.php:322
+msgid "Dig path"
+msgstr ""
+
+#: ../../include/class/ExternalTools.class.php:325
+msgid "Snmpget path"
+msgstr ""
+
+#: ../../include/class/ExternalTools.class.php:331
+msgid "Custom commands"
+msgstr ""
+
+#: ../../include/class/ExternalTools.class.php:342
+msgid "Add new custom command"
+msgstr ""
+
+#: ../../include/class/ExternalTools.class.php:354
+msgid "Adding `_address_` macro will use agent's IP when perform the execution"
+msgstr ""
+
+#: ../../include/class/ExternalTools.class.php:438
+msgid "Delete this custom command"
+msgstr ""
+
+#: ../../include/class/ExternalTools.class.php:486
+msgid "The agent doesn`t have an IP yet"
+msgstr ""
+
+#: ../../include/class/ExternalTools.class.php:508
+msgid "Traceroute"
+msgstr ""
+
+#: ../../include/class/ExternalTools.class.php:509
+msgid "Ping host & Latency"
+msgstr ""
+
+#: ../../include/class/ExternalTools.class.php:510
+msgid "SNMP Interface status"
+msgstr ""
+
+#: ../../include/class/ExternalTools.class.php:511
+msgid "Basic TCP Port Scan"
+msgstr ""
+
+#: ../../include/class/ExternalTools.class.php:512
+msgid "DiG/Whois Lookup"
+msgstr ""
+
+#: ../../include/class/ExternalTools.class.php:530
+#: ../../include/functions_menu.php:597
+#: ../../include/functions_reporting_html.php:2179
+#: ../../include/functions_reporting_html.php:4643
+#: ../../enterprise/include/functions_reporting_csv.php:1014
+#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:155
+#: ../../enterprise/include/class/CommandCenter.class.php:451
+#: ../../enterprise/meta/include/functions_autoprovision.php:641
+#: ../../enterprise/meta/advanced/policymanager.queue.php:214
+#: ../../enterprise/meta/advanced/policymanager.queue.php:259
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3740
+#: ../../enterprise/godmode/reporting/reporting_builder.global.php:223
+#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:374
+#: ../../enterprise/godmode/policies/policy_queue.php:605
+#: ../../enterprise/godmode/policies/policy_queue.php:649
+#: ../../extensions/api_checker.php:156 ../../godmode/extensions.php:148
+#: ../../godmode/reporting/reporting_builder.item_editor.php:4312
+msgid "Operation"
+msgstr ""
+
+#: ../../include/class/ExternalTools.class.php:537
+#: ../../enterprise/views/ncm/agent/details.php:256
+#: ../../enterprise/views/ncm/agent/manage.php:135
+#: ../../enterprise/views/ncm/agent/manage.php:148
+#: ../../enterprise/views/ncm/agent/manage.php:181
+#: ../../enterprise/views/ncm/agent/manage.php:274
+#: ../../enterprise/views/ncm/agent/manage.php:309
+#: ../../enterprise/views/ncm/snippets/edit.php:138
+#: ../../enterprise/views/ncm/templates/edit.php:347
+#: ../../enterprise/godmode/massive/massive_edit_service_elements.php:230
+#: ../../enterprise/godmode/massive/massive_delete_service_elements.php:188
+#: ../../enterprise/godmode/massive/massive_add_service_elements.php:329
+msgid "Please select"
+msgstr ""
+
+#: ../../include/class/ExternalTools.class.php:542
+msgid "IP Adress"
+msgstr ""
+
+#: ../../include/class/ExternalTools.class.php:554
+msgid "SNMP Version"
+msgstr ""
+
+#: ../../include/class/ExternalTools.class.php:570
+#: ../../enterprise/meta/include/functions_wizard_meta.php:967
+#: ../../enterprise/meta/include/functions_wizard_meta.php:1484
+msgid "SNMP Community"
+msgstr ""
+
+#: ../../include/class/ExternalTools.class.php:707
+msgid "Command not response"
+msgstr ""
+
+#: ../../include/class/ExternalTools.class.php:716
+msgid "The command failed and obtained the return code:"
+msgstr ""
+
+#: ../../include/class/ExternalTools.class.php:726
+msgid ""
+"Something went wrong while perform the execution. Please check the "
+"configuration."
+msgstr ""
+
+#: ../../include/class/ExternalTools.class.php:750
+#: ../../godmode/agentes/configurar_agente.php:885
+#: ../../godmode/agentes/configurar_agente.php:1035
+msgid "The ip or dns name entered cannot be resolved"
+msgstr ""
+
+#: ../../include/class/ExternalTools.class.php:763
+msgid "SNMP information for "
+msgstr ""
+
+#: ../../include/class/ExternalTools.class.php:768
+#: ../../include/class/ExternalTools.class.php:780
+msgid "Target unreachable."
+msgstr ""
+
+#: ../../include/class/ExternalTools.class.php:771
+msgid "Uptime"
+msgstr ""
+
+#: ../../include/class/ExternalTools.class.php:783
+msgid "Device info"
+msgstr ""
+
+#: ../../include/class/ExternalTools.class.php:794
+msgid "Interface"
+msgstr ""
+
+#: ../../include/class/ExternalTools.class.php:825
+msgid "Domain and IP information for "
+msgstr ""
+
+#: ../../include/class/ExternalTools.class.php:830
+msgid "Dig executable does not exist."
+msgstr ""
+
+#: ../../include/class/ExternalTools.class.php:838
+msgid "Whois executable does not exist."
+msgstr ""
+
+#: ../../include/class/ExternalTools.class.php:849
+msgid "Traceroute executable does not exist."
+msgstr ""
+
+#: ../../include/class/ExternalTools.class.php:852
+#, php-format
+msgid "Traceroute to %s"
+msgstr ""
+
+#: ../../include/class/ExternalTools.class.php:860
+msgid "Ping executable does not exist."
+msgstr ""
+
+#: ../../include/class/ExternalTools.class.php:863
+#, php-format
+msgid "Ping to %s"
+msgstr ""
+
+#: ../../include/class/ExternalTools.class.php:871
+msgid "Nmap executable does not exist."
+msgstr ""
+
+#: ../../include/class/ExternalTools.class.php:874
+#, php-format
+msgid "Basic TCP Scan on %s"
+msgstr ""
+
+#: ../../include/class/ExternalTools.class.php:892
+#, php-format
+msgid "Performing %s execution on %s"
+msgstr ""
+
+#: ../../include/class/ExternalTools.class.php:894
+#, php-format
+msgid "Performing %s execution"
+msgstr ""
+
+#: ../../include/class/ConfigPEN.class.php:337
+#: ../../include/class/ConfigPEN.class.php:345 ../../godmode/menu.php:151
+msgid "Private Enterprise Numbers"
+msgstr ""
+
+#: ../../include/class/ConfigPEN.class.php:435
+#: ../../include/class/ConfigPEN.class.php:598
+msgid "Manufacturer"
+msgstr ""
+
+#: ../../include/class/ConfigPEN.class.php:483
+msgid "PEN is required"
+msgstr ""
+
+#: ../../include/class/ConfigPEN.class.php:509
+msgid "PEN is required."
+msgstr ""
+
+#: ../../include/class/ConfigPEN.class.php:513
+msgid "Manufacturer is required"
+msgstr ""
+
+#: ../../include/class/ConfigPEN.class.php:530
+msgid "This PEN definition does not exist"
+msgstr ""
+
+#: ../../include/class/ConfigPEN.class.php:544
+msgid "created"
+msgstr ""
+
+#: ../../include/class/ConfigPEN.class.php:550
+msgid "This PEN definition already exists"
+msgstr ""
+
+#: ../../include/class/ConfigPEN.class.php:564
+#: ../../enterprise/godmode/massive/massive_edit_service_elements.php:172
+msgid "updated"
+msgstr ""
+
+#: ../../include/class/ConfigPEN.class.php:571
+#, php-format
+msgid "Succesfully %s"
+msgstr ""
+
+#: ../../include/class/ConfigPEN.class.php:651
+msgid "Register manufacturer"
+msgstr ""
+
+#: ../../include/class/ConfigPEN.class.php:667
+msgid "Are you sure you want to delete this PEN?"
+msgstr ""
+
+#: ../../include/class/ConfigPEN.class.php:694
+msgid "Register new manufacturer"
+msgstr ""
+
+#: ../../include/class/CredentialStore.class.php:611
+#, php-format
+msgid "Not a valid JSON: %s"
+msgstr ""
+
+#: ../../include/class/CredentialStore.class.php:621
+msgid "Key identifier is required"
+msgstr ""
+
+#: ../../include/class/CredentialStore.class.php:623
+msgid "You must select a group where store this key!"
+msgstr ""
+
+#: ../../include/class/CredentialStore.class.php:625
+msgid "You must specify a product type"
+msgstr ""
+
+#: ../../include/class/CredentialStore.class.php:627
+msgid "You must specify a username and/or password"
+msgstr ""
+
+#: ../../include/class/CredentialStore.class.php:629
+msgid "Identifier with forbidden characters. Check the documentation."
+msgstr ""
+
+#: ../../include/class/CredentialStore.class.php:742
+msgid "identifier cannot be empty"
+msgstr ""
+
+#: ../../include/class/CredentialStore.class.php:747
+#: ../../enterprise/include/class/LogSource.class.php:567
+msgid "Not allowed"
+msgstr ""
+
+#: ../../include/class/CredentialStore.class.php:786
+#: ../../enterprise/include/class/LogSource.class.php:611
+msgid "How to configure encryption."
+msgstr ""
+
+#: ../../include/class/CredentialStore.class.php:785
+#, php-format
+msgid ""
+"Database encryption is not enabled. Credentials will be stored in plaintext. "
+"%s"
+msgstr ""
+
+#: ../../include/class/CredentialStore.class.php:803
+#: ../../include/class/CredentialStore.class.php:911
+#: ../../enterprise/views/ncm/firmwares/list.php:74
+#: ../../enterprise/include/class/Omnishell.class.php:398
+msgid "Identifier"
+msgstr ""
+
+#: ../../include/class/CredentialStore.class.php:804
+#: ../../include/class/CredentialStore.class.php:937
+msgid "Product"
+msgstr ""
+
+#: ../../include/class/CredentialStore.class.php:869
+msgid "Add key"
+msgstr ""
+
+#: ../../include/class/CredentialStore.class.php:946
+#: ../../enterprise/include/class/Aws.cloud.php:118
+msgid "Aws"
+msgstr ""
+
+#: ../../include/class/CredentialStore.class.php:947
+#: ../../enterprise/include/class/Azure.cloud.php:153
+msgid "Azure"
+msgstr ""
+
+#: ../../include/class/CredentialStore.class.php:948
+#: ../../enterprise/include/class/SAPView.class.php:621
+#: ../../enterprise/include/class/SAPView.class.php:624
+#: ../../enterprise/godmode/menu.php:177
+msgid "SAP"
+msgstr ""
+
+#: ../../include/class/CredentialStore.class.php:949
+#: ../../enterprise/include/class/Google.cloud.php:147
+msgid "Google"
+msgstr ""
+
+#: ../../include/class/CredentialStore.class.php:959
+#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:377
+msgid "Extra"
+msgstr ""
+
+#: ../../include/class/CredentialStore.class.php:960
+msgid "Extra (2)"
+msgstr ""
+
+#: ../../include/class/CredentialStore.class.php:970
+#: ../../include/class/CredentialStore.class.php:1141
+msgid "Access key ID"
+msgstr ""
+
+#: ../../include/class/CredentialStore.class.php:971
+#: ../../include/class/CredentialStore.class.php:1142
+msgid "Secret access key"
+msgstr ""
+
+#: ../../include/class/CredentialStore.class.php:977
+#: ../../include/class/CredentialStore.class.php:994
+msgid "Account ID"
+msgstr ""
+
+#: ../../include/class/CredentialStore.class.php:978
+#: ../../include/class/CredentialStore.class.php:1149
+msgid "Application secret"
+msgstr ""
+
+#: ../../include/class/CredentialStore.class.php:979
+#: ../../include/class/CredentialStore.class.php:1150
+msgid "Tenant or domain name"
+msgstr ""
+
+#: ../../include/class/CredentialStore.class.php:980
+#: ../../include/class/CredentialStore.class.php:1151
+msgid "Subscription id"
+msgstr ""
+
+#: ../../include/class/CredentialStore.class.php:984
+#: ../../include/class/CredentialStore.class.php:1167
+msgid "Auth JSON"
+msgstr ""
+
+#: ../../include/class/CredentialStore.class.php:1148
+msgid "Client ID"
+msgstr ""
+
+#: ../../include/class/CredentialStore.class.php:1157
+msgid "Account ID."
+msgstr ""
+
+#: ../../include/class/CredentialStore.class.php:1243
+msgid "Register new key into keystore"
+msgstr ""
+
+#: ../../include/class/CredentialStore.class.php:1247
+msgid "Update key"
+msgstr ""
+
+#: ../../include/class/CustomNetScan.class.php:134
+#: ../../enterprise/include/class/Aws.cloud.php:886
+#: ../../enterprise/include/class/Aws.S3.php:166
+msgid "This task has been already defined. Please edit it or create a new one."
+msgstr ""
+
+#: ../../include/class/CustomNetScan.class.php:158
+#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:193
+#: ../../enterprise/include/class/Aws.cloud.php:907
+#: ../../enterprise/include/class/MySQL.app.php:196
+#: ../../enterprise/include/class/Oracle.app.php:194
+#: ../../enterprise/include/class/DB2.app.php:187
+#: ../../enterprise/include/class/SAP.app.php:175
+#: ../../enterprise/include/class/VMware.app.php:254
+#: ../../enterprise/include/class/Azure.cloud.php:420
+#: ../../enterprise/include/class/Google.cloud.php:423
+#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:139
+#: ../../godmode/wizards/HostDevices.class.php:412
+msgid "You have no access to edit this task."
+msgstr ""
+
+#: ../../include/class/CustomNetScan.class.php:168
+#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:203
+#: ../../enterprise/include/class/Aws.cloud.php:917
+#: ../../enterprise/include/class/Aws.S3.php:183
+#: ../../enterprise/include/class/MySQL.app.php:206
+#: ../../enterprise/include/class/Oracle.app.php:204
+#: ../../enterprise/include/class/DB2.app.php:197
+#: ../../enterprise/include/class/SAP.app.php:185
+#: ../../enterprise/include/class/VMware.app.php:264
+#: ../../godmode/wizards/HostDevices.class.php:422
+msgid "You must provide a task name."
+msgstr ""
+
+#: ../../include/class/CustomNetScan.class.php:173
+#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:208
+#: ../../enterprise/include/class/Aws.cloud.php:922
+#: ../../enterprise/include/class/Aws.S3.php:188
+#: ../../enterprise/include/class/MySQL.app.php:211
+#: ../../enterprise/include/class/Oracle.app.php:209
+#: ../../enterprise/include/class/DB2.app.php:202
+#: ../../enterprise/include/class/SAP.app.php:190
+#: ../../enterprise/include/class/VMware.app.php:269
+#: ../../godmode/wizards/HostDevices.class.php:427
+msgid "You must select a Discovery Server."
+msgstr ""
+
+#: ../../include/class/CustomNetScan.class.php:178
+#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:218
+#: ../../enterprise/include/class/Aws.cloud.php:927
+#: ../../enterprise/include/class/Aws.S3.php:193
+#: ../../enterprise/include/class/MySQL.app.php:226
+#: ../../enterprise/include/class/Oracle.app.php:219
+#: ../../enterprise/include/class/DB2.app.php:212
+#: ../../enterprise/include/class/SAP.app.php:200
+#: ../../enterprise/include/class/VMware.app.php:279
+#: ../../godmode/wizards/HostDevices.class.php:438
+msgid "You must select a valid group."
+msgstr ""
+
+#: ../../include/class/CustomNetScan.class.php:222
+#: ../../godmode/wizards/HostDevices.class.php:483
+#: ../../godmode/wizards/HostDevices.class.php:595
+msgid "Failed to find network scan task."
+msgstr ""
+
+#: ../../include/class/CustomNetScan.class.php:369
+#: ../../include/class/CustomNetScan.class.php:394
+msgid "NetScan Custom"
+msgstr ""
+
+#: ../../include/class/CustomNetScan.class.php:403
+#: ../../godmode/wizards/HostDevices.class.php:728
+msgid "Internal error, please re-run this wizard."
+msgstr ""
+
+#: ../../include/class/CustomNetScan.class.php:446
+#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:439
+#: ../../enterprise/include/class/Aws.cloud.php:1201
+#: ../../enterprise/include/class/Aws.S3.php:401
+#: ../../enterprise/include/class/MySQL.app.php:442
+#: ../../enterprise/include/class/Oracle.app.php:444
+#: ../../enterprise/include/class/DB2.app.php:437
+#: ../../enterprise/include/class/SAP.app.php:469
+#: ../../enterprise/include/class/VMware.app.php:583
+#: ../../enterprise/include/class/Azure.cloud.php:771
+#: ../../enterprise/include/class/Google.cloud.php:759
+#: ../../godmode/wizards/HostDevices.class.php:838
+#: ../../godmode/wizards/DiscoveryTaskList.class.php:588
+msgid "Task name"
+msgstr ""
+
+#: ../../include/class/CustomNetScan.class.php:480
+#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:451
+#: ../../enterprise/include/class/Aws.cloud.php:1213
+#: ../../enterprise/include/class/Aws.S3.php:413
+#: ../../enterprise/include/class/MySQL.app.php:454
+#: ../../enterprise/include/class/Oracle.app.php:456
+#: ../../enterprise/include/class/DB2.app.php:449
+#: ../../enterprise/include/class/SAP.app.php:482
+#: ../../enterprise/include/class/VMware.app.php:594
+#: ../../godmode/wizards/HostDevices.class.php:849
+msgid ""
+"You must select a Discovery Server to run the Task, otherwise the Recon Task "
+"will never run"
+msgstr ""
+
+#: ../../include/class/CustomNetScan.class.php:521
+#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:538
+#: ../../enterprise/include/class/Aws.cloud.php:1319
+#: ../../enterprise/include/class/Aws.S3.php:507
+#: ../../enterprise/include/class/MySQL.app.php:559
+#: ../../enterprise/include/class/Oracle.app.php:544
+#: ../../enterprise/include/class/DB2.app.php:537
+#: ../../enterprise/include/class/SAP.app.php:514
+#: ../../enterprise/include/class/VMware.app.php:668
+#: ../../godmode/wizards/HostDevices.class.php:799
+msgid "Manual interval means that it will be executed only On-demand"
+msgstr ""
+
+#: ../../include/class/CustomNetScan.class.php:528
+#: ../../include/functions_reporting_html.php:2309
+#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:545
+#: ../../enterprise/include/class/Aws.cloud.php:1326
+#: ../../enterprise/include/class/Aws.S3.php:514
+#: ../../enterprise/include/class/MySQL.app.php:566
+#: ../../enterprise/include/class/Oracle.app.php:551
+#: ../../enterprise/include/class/DB2.app.php:544
+#: ../../enterprise/include/class/SAP.app.php:521
+#: ../../enterprise/include/class/VMware.app.php:675
+#: ../../enterprise/include/class/VMware.app.php:887
+#: ../../godmode/wizards/HostDevices.class.php:806
+msgid "Defined"
+msgstr ""
+
+#: ../../include/class/CustomNetScan.class.php:529
+#: ../../enterprise/tools/ipam/ipam_list.php:670
+#: ../../enterprise/operation/services/services.list.php:275
+#: ../../enterprise/operation/services/services.table_services.php:197
+#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:546
+#: ../../enterprise/include/class/Aws.cloud.php:1327
+#: ../../enterprise/include/class/Aws.S3.php:515
+#: ../../enterprise/include/class/MySQL.app.php:567
+#: ../../enterprise/include/class/Oracle.app.php:552
+#: ../../enterprise/include/class/DB2.app.php:545
+#: ../../enterprise/include/class/SAP.app.php:522
+#: ../../enterprise/include/class/VMware.app.php:676
+#: ../../enterprise/include/functions_ipam.php:1356
+#: ../../enterprise/godmode/services/services.service.php:650
+#: ../../enterprise/godmode/massive/massive_create_services.php:698
+#: ../../godmode/wizards/HostDevices.class.php:807
+#: ../../godmode/wizards/DiscoveryTaskList.class.php:712
+msgid "Manual"
+msgstr ""
+
+#: ../../include/class/CustomNetScan.class.php:545
+#: ../../godmode/wizards/HostDevices.class.php:813
+msgid "The minimum recomended interval for Recon Task is 5 minutes"
+msgstr ""
+
+#: ../../include/class/CustomNetScan.class.php:553
+#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:570
+#: ../../enterprise/include/class/MySQL.app.php:591
+#: ../../enterprise/include/class/Oracle.app.php:576
+#: ../../enterprise/include/class/DB2.app.php:569
+#: ../../enterprise/include/class/SAP.app.php:444
+#: ../../enterprise/include/class/VMware.app.php:536
+#: ../../enterprise/include/lib/ClusterViewer/ClusterWizard.php:1202
+#: ../../godmode/setup/setup_integria.php:636
+#: ../../godmode/wizards/HostDevices.class.php:772
+msgid "Update and continue"
+msgstr ""
+
+#: ../../include/class/CustomNetScan.class.php:611
+msgid "Recon script"
+msgstr ""
+
+#: ../../include/class/CustomNetScan.class.php:652
+msgid "Explanation"
+msgstr ""
+
+#: ../../include/class/CustomNetScan.class.php:668
+msgid "macro_desc"
+msgstr ""
+
+#: ../../include/class/CustomNetScan.class.php:725
+#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:793
+#: ../../enterprise/include/class/Aws.cloud.php:1423
+#: ../../enterprise/include/class/MySQL.app.php:908
+#: ../../enterprise/include/class/Oracle.app.php:949
+#: ../../enterprise/include/class/DB2.app.php:840
+#: ../../enterprise/include/class/SAP.app.php:802
+#: ../../enterprise/include/class/Omnishell.class.php:852
+#: ../../enterprise/include/class/VMware.app.php:863
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2136
+#: ../../enterprise/include/lib/ClusterViewer/ClusterWizard.php:1206
+#: ../../enterprise/meta/monitoring/wizard/wizard.php:133
+#: ../../enterprise/godmode/wizards/Cloud.class.php:579
+#: ../../godmode/wizards/HostDevices.class.php:1569
+#: ../../godmode/alerts/configure_alert_template.php:1171
+msgid "Finish"
+msgstr ""
+
+#: ../../include/class/CustomNetScan.class.php:758
+#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:821
+#: ../../enterprise/include/class/Aws.cloud.php:1590
+#: ../../enterprise/include/class/Aws.S3.php:658
+#: ../../enterprise/include/class/MySQL.app.php:944
+#: ../../enterprise/include/class/Oracle.app.php:977
+#: ../../enterprise/include/class/DB2.app.php:868
+#: ../../enterprise/include/class/SAP.app.php:924
+#: ../../enterprise/include/class/VMware.app.php:1014
+#: ../../enterprise/include/class/Azure.cloud.php:990
+#: ../../enterprise/include/class/Google.cloud.php:952
+#: ../../godmode/wizards/HostDevices.class.php:1589
+msgid "Task configured."
+msgstr ""
+
+#: ../../include/class/CustomNetScan.class.php:762
+#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:825
+#: ../../enterprise/include/class/MySQL.app.php:948
+#: ../../enterprise/include/class/Oracle.app.php:981
+#: ../../enterprise/include/class/DB2.app.php:872
+#: ../../enterprise/include/class/SAP.app.php:928
+#: ../../enterprise/include/class/VMware.app.php:1018
+#: ../../enterprise/include/class/Azure.cloud.php:994
+#: ../../enterprise/include/class/Google.cloud.php:956
+#: ../../godmode/wizards/HostDevices.class.php:1593
+msgid "Wizard failed. Cannot configure task."
+msgstr ""
+
+#: ../../include/class/CalendarManager.class.php:161
+msgid "Alert calendar list"
+msgstr ""
+
+#: ../../include/class/CalendarManager.class.php:183
+msgid "Edit calendar"
+msgstr ""
+
+#: ../../include/class/CalendarManager.class.php:197
+msgid "Alert special days"
+msgstr ""
+
+#: ../../include/class/CalendarManager.class.php:272
+#: ../../include/class/CalendarManager.class.php:473
+#, php-format
+msgid "Calendar not found: %s"
+msgstr ""
+
+#: ../../include/class/CalendarManager.class.php:284
+msgid "Calendar successfully deleted"
+msgstr ""
+
+#: ../../include/class/CalendarManager.class.php:307
+#, php-format
+msgid "Special day not found: %s"
+msgstr ""
+
+#: ../../include/class/CalendarManager.class.php:319
+msgid "Special day successfully deleted"
+msgstr ""
+
+#: ../../include/class/CalendarManager.class.php:392
+msgid "Skipped dates: "
+msgstr ""
+
+#: ../../include/class/CalendarManager.class.php:430
+msgid "Success to upload iCalendar"
+msgstr ""
+
+#: ../../include/class/CalendarManager.class.php:431
+msgid "Fail to upload iCalendar"
+msgstr ""
+
+#: ../../include/class/CalendarManager.class.php:488
+#: ../../include/class/CalendarManager.class.php:841
+#: ../../enterprise/include/class/NetworkConfigManager.class.php:1785
+#: ../../enterprise/include/class/NetworkConfigManager.class.php:1875
+#: ../../enterprise/include/class/NetworkConfigManager.class.php:1970
+#: ../../enterprise/include/class/NetworkConfigManager.class.php:2064
+#: ../../enterprise/include/class/DatabaseHA.class.php:796
+msgid "Failed to update"
+msgstr ""
+
+#: ../../include/class/CalendarManager.class.php:490
+#: ../../include/class/CalendarManager.class.php:843
+#: ../../include/functions_alerts.php:2744
+#: ../../include/functions_planned_downtimes.php:114
+#: ../../include/functions_planned_downtimes.php:832
+#: ../../enterprise/tools/ipam/ipam_network_location_config.php:50
+#: ../../enterprise/tools/ipam/ipam_action.php:214
+#: ../../enterprise/operation/agentes/transactional_map.php:134
+#: ../../enterprise/include/ajax/servers.ajax.php:197
+#: ../../enterprise/include/ajax/servers.ajax.php:330
+#: ../../enterprise/include/class/NetworkConfigManager.class.php:1787
+#: ../../enterprise/include/class/NetworkConfigManager.class.php:1877
+#: ../../enterprise/include/class/NetworkConfigManager.class.php:1972
+#: ../../enterprise/include/class/NetworkConfigManager.class.php:2066
+#: ../../enterprise/meta/advanced/cron_main.php:158
+#: ../../enterprise/meta/advanced/cron_main.php:202
+#: ../../enterprise/meta/advanced/cron_main.php:295
+#: ../../enterprise/meta/advanced/links.php:49
+#: ../../enterprise/godmode/setup/setup_metaconsole.php:125
+#: ../../enterprise/godmode/servers/credential_boxes_satellite.php:80
+#: ../../enterprise/godmode/servers/credential_boxes_satellite.php:111
+#: ../../enterprise/godmode/servers/manage_export.php:112
+#: ../../enterprise/godmode/servers/manage_export.php:119
+#: ../../enterprise/godmode/reporting/reporting_builder.template_editor.php:47
+#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:221
+#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:234
+#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:283
+#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:302
+#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:382
+#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:399
+#: ../../enterprise/godmode/alerts/alert_inventory_builder.php:76
+#: ../../godmode/setup/news.php:66 ../../godmode/setup/gis.php:47
+#: ../../godmode/setup/links.php:44
+#: ../../godmode/modules/manage_nc_groups.php:84
+#: ../../godmode/snmpconsole/snmp_alert.php:283
+#: ../../godmode/snmpconsole/snmp_filters.php:164
+#: ../../godmode/agentes/configurar_agente.php:880
+#: ../../godmode/agentes/planned_downtime.editor.php:416
+#: ../../godmode/alerts/configure_alert_template.php:536
+#: ../../godmode/alerts/alert_commands.php:572
+#: ../../godmode/alerts/alert_list.php:178
+#: ../../godmode/users/configure_user.php:474
+#: ../../godmode/users/profile_list.php:269
+msgid "Successfully created"
+msgstr ""
+
+#: ../../include/class/CalendarManager.class.php:491
+#: ../../include/class/CalendarManager.class.php:844
+#: ../../enterprise/include/class/NetworkConfigManager.class.php:1788
+#: ../../enterprise/include/class/NetworkConfigManager.class.php:1878
+#: ../../enterprise/include/class/NetworkConfigManager.class.php:1973
+#: ../../enterprise/include/class/NetworkConfigManager.class.php:2067
+msgid "Failed to create"
+msgstr ""
+
+#: ../../include/class/CalendarManager.class.php:507
+msgid "Failed saving calendar: name exists"
+msgstr ""
+
+#: ../../include/class/CalendarManager.class.php:516
+msgid "Failed saving calendar: "
+msgstr ""
+
+#: ../../include/class/CalendarManager.class.php:523
+#: ../../include/class/CalendarManager.class.php:895
+#: ../../include/functions_reporting.php:4743
+#: ../../include/functions_reporting.php:4771
+#: ../../enterprise/include/class/NetworkConfigManager.class.php:1725
+#: ../../enterprise/include/class/NetworkConfigManager.class.php:1807
+#: ../../enterprise/include/class/NetworkConfigManager.class.php:1901
+#: ../../enterprise/include/class/NetworkConfigManager.class.php:1992
+#: ../../enterprise/include/class/NetworkConfigManager.class.php:2131
+#: ../../enterprise/include/class/NetworkConfigManager.class.php:2792
+#: ../../enterprise/include/lib/Metaconsole/Node.php:1514
+#, php-format
+msgid "Error: %s"
+msgstr ""
+
+#: ../../include/class/CalendarManager.class.php:783
+#, php-format
+msgid "Special days not found: %s"
+msgstr ""
+
+#: ../../include/class/CalendarManager.class.php:826
+#, php-format
+msgid "SpecialDay not found: %s"
+msgstr ""
+
+#: ../../include/class/CalendarManager.class.php:879
+msgid "Failed saving calendar: already exists"
+msgstr ""
+
+#: ../../include/class/CalendarManager.class.php:888
+msgid "Failed saving special day: "
+msgstr ""
+
+#: ../../include/class/CalendarManager.class.php:956
+#, php-format
+msgid "Same as %s"
+msgstr ""
+
+#: ../../include/class/CalendarManager.class.php:958
+msgid "Templates not being fired"
+msgstr ""
+
+#: ../../include/class/NetworkMap.class.php:2317
+msgid "Failed to generate dotmap, please select different layout schema"
+msgstr ""
+
+#: ../../include/class/NetworkMap.class.php:2452
+msgid "Failed to retrieve graph data."
+msgstr ""
+
+#: ../../include/class/NetworkMap.class.php:2663
+msgid "Holding Area"
+msgstr ""
+
+#: ../../include/class/NetworkMap.class.php:2790
+#, php-format
+msgid "Edit node %s"
+msgstr ""
+
+#: ../../include/class/NetworkMap.class.php:2792
+msgid "Show details and options"
+msgstr ""
+
+#: ../../include/class/NetworkMap.class.php:2793
+msgid "Add a interface link"
+msgstr ""
+
+#: ../../include/class/NetworkMap.class.php:2794
+msgid "Set parent interface"
+msgstr ""
+
+#: ../../include/class/NetworkMap.class.php:2795
+msgid "Set as children"
+msgstr ""
+
+#: ../../include/class/NetworkMap.class.php:2796
+msgid "Set parent"
+msgstr ""
+
+#: ../../include/class/NetworkMap.class.php:2797
+#: ../../include/class/NetworkMap.class.php:2810
+msgid "Abort the action of set relationship"
+msgstr ""
+
+#: ../../include/class/NetworkMap.class.php:2799
+#: ../../include/class/NetworkMap.class.php:3155
+msgid "Add node"
+msgstr ""
+
+#: ../../include/class/NetworkMap.class.php:2800
+msgid "Set center"
+msgstr ""
+
+#: ../../include/class/NetworkMap.class.php:2802
+msgid "Refresh Holding area"
+msgstr ""
+
+#: ../../include/class/NetworkMap.class.php:2803
+#: ../../include/class/NetworkMap.class.php:2806
+msgid "Proceed"
+msgstr ""
+
+#: ../../include/class/NetworkMap.class.php:2804
+msgid ""
+"Resetting the map will delete all customizations you have done, including "
+"manual relationships between elements, new items, etc."
+msgstr ""
+
+#: ../../include/class/NetworkMap.class.php:2808
+msgid "Restart map"
+msgstr ""
+
+#: ../../include/class/NetworkMap.class.php:2809
+msgid "Abort the interface relationship"
+msgstr ""
+
+#: ../../include/class/NetworkMap.class.php:2827
+#: ../../include/class/NetworkMap.class.php:2876
+msgid "Edit node"
+msgstr ""
+
+#: ../../include/class/NetworkMap.class.php:2837
+#: ../../include/class/NetworkMap.class.php:2886
+msgid "Adresses"
+msgstr ""
+
+#: ../../include/class/NetworkMap.class.php:2839
+#: ../../include/class/NetworkMap.class.php:2888
+msgid "OS type"
+msgstr ""
+
+#: ../../include/class/NetworkMap.class.php:2846
+#: ../../include/class/NetworkMap.class.php:2847
+#: ../../include/class/NetworkMap.class.php:2895
+#: ../../include/class/NetworkMap.class.php:2896
+msgid "Node Details"
+msgstr ""
+
+#: ../../include/class/NetworkMap.class.php:2910
+#: ../../enterprise/tools/ipam/ipam_ajax.php:473
+msgid "MAC"
+msgstr ""
+
+#: ../../include/class/NetworkMap.class.php:2921
+#: ../../include/class/NetworkMap.class.php:2922
+msgid "Interface Information (SNMP)"
+msgstr ""
+
+#: ../../include/class/NetworkMap.class.php:2933
+msgid "Shape"
+msgstr ""
+
+#: ../../include/class/NetworkMap.class.php:2936
+msgid "Circle"
+msgstr ""
+
+#: ../../include/class/NetworkMap.class.php:2937
+msgid "Square"
+msgstr ""
+
+#: ../../include/class/NetworkMap.class.php:2938
+msgid "Rhombus"
+msgstr ""
+
+#: ../../include/class/NetworkMap.class.php:2951
+msgid "name node"
+msgstr ""
+
+#: ../../include/class/NetworkMap.class.php:2957
+#: ../../enterprise/include/functions_HA_cluster.php:496
+msgid "Update node"
+msgstr ""
+
+#: ../../include/class/NetworkMap.class.php:2969
+#: ../../include/class/NetworkMap.class.php:3272
+msgid "name fictional node"
+msgstr ""
+
+#: ../../include/class/NetworkMap.class.php:2974
+#: ../../include/class/NetworkMap.class.php:3277
+msgid "Networkmap to link"
+msgstr ""
+
+#: ../../include/class/NetworkMap.class.php:2986
+msgid "Update fictional node"
+msgstr ""
+
+#: ../../include/class/NetworkMap.class.php:2996
+#: ../../include/class/NetworkMap.class.php:2997
+msgid "Node options"
+msgstr ""
+
+#: ../../include/class/NetworkMap.class.php:3008
+#: ../../include/class/NetworkMap.class.php:3101
+msgid "Node source"
+msgstr ""
+
+#: ../../include/class/NetworkMap.class.php:3009
+#: ../../include/class/NetworkMap.class.php:3102
+msgid "Interface source"
+msgstr ""
+
+#: ../../include/class/NetworkMap.class.php:3010
+#: ../../include/class/NetworkMap.class.php:3103
+msgid "Interface Target"
+msgstr ""
+
+#: ../../include/class/NetworkMap.class.php:3012
+#: ../../include/class/NetworkMap.class.php:3104
+msgid "Node target"
+msgstr ""
+
+#: ../../include/class/NetworkMap.class.php:3013
+msgid "E."
+msgstr ""
+
+#: ../../include/class/NetworkMap.class.php:3075
+msgid "There are not relations"
+msgstr ""
+
+#: ../../include/class/NetworkMap.class.php:3086
+#: ../../include/class/NetworkMap.class.php:3087
+#: ../../enterprise/meta/advanced/metasetup.relations.php:330
+msgid "Relations"
+msgstr ""
+
+#: ../../include/class/NetworkMap.class.php:3143
+msgid "Add interface link"
+msgstr ""
+
+#: ../../include/class/NetworkMap.class.php:3174
+#: ../../include/class/NetworkMap.class.php:3196
+#: ../../include/class/NetworkMap.class.php:3197
+#: ../../include/class/NetworkMap.class.php:3247
+#: ../../include/class/NetworkMap.class.php:3259
+#: ../../include/class/NetworkMap.class.php:3300
+msgid "Add agent node"
+msgstr ""
+
+#: ../../include/class/NetworkMap.class.php:3258
+msgid "Add agent node (filter by group)"
+msgstr ""
+
+#: ../../include/class/NetworkMap.class.php:3289
+msgid "Add fictional node"
+msgstr ""
+
+#: ../../include/class/NetworkMap.class.php:3299
+msgid "Add fictional point"
+msgstr ""
+
+#: ../../include/class/NetworkMap.class.php:3513
+msgid "Open Minimap"
+msgstr ""
+
+#: ../../include/class/NetworkMap.class.php:3519
+msgid "Hide Labels"
+msgstr ""
+
+#: ../../include/class/TreeGroupEdition.class.php:164
+#: ../../enterprise/meta/event/custom_events.php:249
+#: ../../enterprise/meta/monitoring/custom_fields_view.php:1151
+#: ../../godmode/events/custom_events.php:204
+#: ../../godmode/agentes/status_monitor_custom_fields.php:241
+msgid "Confirm"
+msgstr ""
+
+#: ../../include/functions_network_components.php:590
+#: ../../include/functions_alerts.php:1121
+#: ../../enterprise/include/functions_local_components.php:354
+msgid "Copy of"
+msgstr ""
+
+#: ../../include/lib/Group.php:299
+#, php-format
+msgid "Failed to save group %s"
+msgstr ""
+
+#: ../../include/lib/View.php:69
+#, php-format
+msgid "View %s not found"
+msgstr ""
+
+#: ../../include/lib/Agent.php:349 ../../include/lib/Module.php:1170
+#: ../../include/lib/Entity.php:303
+#: ../../enterprise/include/lib/Service.php:397
+#: ../../enterprise/include/lib/Service.php:734
+#: ../../enterprise/include/lib/Service.php:879
+#: ../../enterprise/include/lib/Metaconsole/Node.php:1414
+#: ../../enterprise/include/lib/Metaconsole/Synchronizer.php:399
+#: ../../enterprise/include/lib/ServiceElement.php:390
+#: ../../enterprise/include/lib/ServiceElement.php:921
+#: ../../enterprise/include/lib/ServiceElement.php:963
+#: ../../enterprise/include/lib/ServiceElement.php:1005
+#: ../../enterprise/include/lib/ServiceElement.php:1111
+#: ../../enterprise/include/lib/ServiceElement.php:1153
+#, php-format
+msgid "Cannot connect to node %d"
+msgstr ""
+
+#: ../../include/lib/Module.php:256
+msgid " error: Module has no agent assigned."
+msgstr ""
+
+#: ../../include/lib/Module.php:803
+#: ../../enterprise/include/lib/Policy.php:1193
+#: ../../enterprise/include/lib/Policy/Module.php:201
+#, php-format
+msgid "Module already exists: \"%s\""
+msgstr ""
+
+#: ../../include/lib/Module.php:1037
+msgid "Module name empty."
+msgstr ""
+
+#: ../../include/lib/Module.php:1043
+msgid "Invalid characters in module name"
+msgstr ""
+
+#: ../../include/lib/Module.php:1049
+msgid "Module already exists please select another name or agent."
+msgstr ""
+
+#: ../../include/lib/Module.php:1055
+msgid "Insufficent permissions to perform this action"
+msgstr ""
+
+#: ../../include/lib/Module.php:1062
+#, php-format
+msgid "Error while processing: %s"
+msgstr ""
+
+#: ../../include/lib/Dashboard/Manager.php:599
+#, php-format
+msgid "Copy of %s"
+msgstr ""
+
+#: ../../include/lib/Dashboard/Manager.php:988
+msgid "Error create or update dashboard"
+msgstr ""
+
+#: ../../include/lib/Dashboard/Manager.php:1461
+msgid "Icon image dashboard"
+msgstr ""
+
+#: ../../include/lib/Dashboard/Widgets/sla_percent.php:174
+#: ../../include/lib/Dashboard/Widgets/sla_percent.php:482
+msgid "SLA percentage"
+msgstr ""
+
+#: ../../include/lib/Dashboard/Widgets/sla_percent.php:344
+#: ../../include/lib/Dashboard/Widgets/module_value.php:325
+#: ../../include/lib/Dashboard/Widgets/module_icon.php:411
+msgid "Text size of value in px"
+msgstr ""
+
+#: ../../include/lib/Dashboard/Widgets/sla_percent.php:356
+#: ../../include/lib/Dashboard/Widgets/module_table_value.php:301
+#: ../../include/lib/Dashboard/Widgets/module_value.php:337
+#: ../../include/lib/Dashboard/Widgets/module_status.php:401
+#: ../../include/lib/Dashboard/Widgets/graph_module_histogram.php:335
+#: ../../include/lib/Dashboard/Widgets/module_icon.php:423
+msgid "Text size of label in px"
+msgstr ""
+
+#: ../../include/lib/Dashboard/Widgets/sla_percent.php:413
+#: ../../include/lib/Dashboard/Widgets/sla_percent.php:424
+#: ../../include/lib/Dashboard/Widgets/agent_module.php:665
+#: ../../include/lib/Dashboard/Widgets/events_list.php:518
+msgid "You don't have access"
+msgstr ""
+
+#: ../../include/lib/Dashboard/Widgets/module_table_value.php:175
+msgid "Show module value in a table"
+msgstr ""
+
+#: ../../include/lib/Dashboard/Widgets/module_table_value.php:312
+msgid "Carriage Return"
+msgstr ""
+
+#: ../../include/lib/Dashboard/Widgets/module_table_value.php:313
+msgid "Vertical Bar"
+msgstr ""
+
+#: ../../include/lib/Dashboard/Widgets/module_table_value.php:314
+msgid "Semicolon"
+msgstr ""
+
+#: ../../include/lib/Dashboard/Widgets/module_table_value.php:315
+msgid "Colon"
+msgstr ""
+
+#: ../../include/lib/Dashboard/Widgets/module_table_value.php:316
+msgid "Commas"
+msgstr ""
+
+#: ../../include/lib/Dashboard/Widgets/module_table_value.php:317
+msgid "Blank"
+msgstr ""
+
+#: ../../include/lib/Dashboard/Widgets/module_table_value.php:321
+msgid "Data separator"
+msgstr ""
+
+#: ../../include/lib/Dashboard/Widgets/module_table_value.php:397
+msgid "Module in a table"
+msgstr ""
+
+#: ../../include/lib/Dashboard/Widgets/module_value.php:173
+#: ../../include/lib/Dashboard/Widgets/module_value.php:433
+msgid "Module value"
+msgstr ""
+
+#: ../../include/lib/Dashboard/Widgets/top_n_events_by_group.php:163
+#: ../../include/lib/Dashboard/Widgets/top_n_events_by_group.php:506
+msgid "Top N events by agent"
+msgstr ""
+
+#: ../../include/lib/Dashboard/Widgets/top_n_events_by_group.php:258
+#: ../../include/lib/Dashboard/Widgets/top_n_events_by_module.php:258
+msgid "Amount to show"
+msgstr ""
+
+#: ../../include/lib/Dashboard/Widgets/top_n_events_by_group.php:317
+#: ../../include/lib/Dashboard/Widgets/top_n_events_by_module.php:317
+#: ../../include/rest-api/models/VisualConsole/Item.php:1957
+#: ../../godmode/setup/gis_step_2.php:350
+msgid "Bottom"
+msgstr ""
+
+#: ../../include/lib/Dashboard/Widgets/top_n_events_by_group.php:318
+#: ../../include/lib/Dashboard/Widgets/top_n_events_by_module.php:318
+msgid "No legend"
+msgstr ""
+
+#: ../../include/lib/Dashboard/Widgets/top_n_events_by_group.php:322
+#: ../../include/lib/Dashboard/Widgets/top_n_events_by_module.php:322
+msgid "Legend Position"
+msgstr ""
+
+#: ../../include/lib/Dashboard/Widgets/top_n_events_by_group.php:375
+#: ../../include/lib/Dashboard/Widgets/top_n_events_by_module.php:373
+msgid "Please select one or more groups."
+msgstr ""
+
+#: ../../include/lib/Dashboard/Widgets/top_n_events_by_group.php:423
+#: ../../include/lib/Dashboard/Widgets/top_n_events_by_module.php:427
+msgid "There is not data to show."
+msgstr ""
+
+#: ../../include/lib/Dashboard/Widgets/top_n_events_by_group.php:483
+#: ../../include/lib/Dashboard/Widgets/top_n_events_by_module.php:518
+#: ../../include/functions_graph.php:2649
+#: ../../include/functions_graph.php:2785
+#: ../../include/functions_graph.php:2883
+#: ../../include/functions_graph.php:3344
+#: ../../include/functions_graph.php:3918
+#: ../../include/functions_reporting.php:1802
+#: ../../include/functions_reporting.php:2049
+#: ../../include/functions_reporting.php:2075
+#: ../../include/functions_reporting.php:2102
+#: ../../include/functions_reporting.php:2130
+#: ../../include/functions_reporting.php:3482
+#: ../../include/functions_reporting.php:3853
+#: ../../include/functions_reporting.php:3881
+#: ../../include/functions_reporting.php:3909
+#: ../../include/functions_reporting.php:4882
+#: ../../include/functions_reporting.php:10488
+#: ../../include/functions_reporting.php:10516
+#: ../../include/functions_reporting.php:10544
+msgid "other"
+msgstr ""
+
+#: ../../include/lib/Dashboard/Widgets/top_n_events_by_module.php:163
+#: ../../include/lib/Dashboard/Widgets/top_n_events_by_module.php:541
+msgid "Top N events by module"
+msgstr ""
+
+#: ../../include/lib/Dashboard/Widgets/maps_status.php:158
+#: ../../include/lib/Dashboard/Widgets/maps_status.php:388
+msgid "General visual maps report"
+msgstr ""
+
+#: ../../include/lib/Dashboard/Widgets/maps_status.php:263
+msgid "Maps"
+msgstr ""
+
+#: ../../include/lib/Dashboard/Widgets/maps_status.php:360
+#: ../../godmode/massive/massive_edit_agents.php:981
+msgid "Bad"
+msgstr ""
+
+#: ../../include/lib/Dashboard/Widgets/url.php:158
+#: ../../include/lib/Dashboard/Widgets/url.php:286
+msgid "URL content"
+msgstr ""
+
+#: ../../include/lib/Dashboard/Widgets/url.php:216
+#: ../../include/functions_reporting.php:6785
+#: ../../enterprise/meta/include/functions_wizard_meta.php:645
+#: ../../enterprise/meta/monitoring/wizard/wizard.php:151
+#: ../../godmode/tag/edit_tag.php:227
+msgid "Url"
+msgstr ""
+
+#: ../../include/lib/Dashboard/Widgets/url.php:263
+msgid "Please, configure this widget before use"
+msgstr ""
+
+#: ../../include/lib/Dashboard/Widgets/wux_transaction.php:169
+#: ../../include/lib/Dashboard/Widgets/wux_transaction.php:418
+msgid "Agent WUX transaction"
+msgstr ""
+
+#: ../../include/lib/Dashboard/Widgets/wux_transaction.php:259
+#: ../../include/lib/Dashboard/Widgets/wux_transaction_stats.php:270
+msgid "Wux transaction"
+msgstr ""
+
+#: ../../include/lib/Dashboard/Widgets/wux_transaction.php:320
+#: ../../enterprise/operation/agentes/wux_console_view.php:75
+msgid "No wux transaction selected."
+msgstr ""
+
+#: ../../include/lib/Dashboard/Widgets/wux_transaction.php:370
+#: ../../include/lib/Dashboard/Widgets/wux_transaction.php:375
+msgid "Global status"
+msgstr ""
+
+#: ../../include/lib/Dashboard/Widgets/wux_transaction.php:398
+#: ../../enterprise/operation/agentes/wux_console_view.php:149
+msgid "Phase modules not found"
+msgstr ""
+
+#: ../../include/lib/Dashboard/Widgets/reports.php:164
+#: ../../include/lib/Dashboard/Widgets/reports.php:441
+msgid "Custom report"
+msgstr ""
+
+#: ../../include/lib/Dashboard/Widgets/reports.php:274
+#: ../../include/lib/Dashboard/Widgets/maps_made_by_user.php:227
+#: ../../include/lib/Dashboard/Widgets/maps_made_by_user.php:311
+#: ../../include/lib/Dashboard/Widget.php:450
+#, php-format
+msgid "Failed to connect to node %d"
+msgstr ""
+
+#: ../../include/lib/Dashboard/Widgets/custom_graph.php:168
+#: ../../include/lib/Dashboard/Widgets/custom_graph.php:521
+msgid "Defined custom graph"
+msgstr ""
+
+#: ../../include/lib/Dashboard/Widgets/custom_graph.php:294
+msgid "This graph has been deleted."
+msgstr ""
+
+#: ../../include/lib/Dashboard/Widgets/custom_graph.php:339
+#: ../../include/lib/Dashboard/Widgets/single_graph.php:295
+#: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:672
+msgid "Show legend"
+msgstr ""
+
+#: ../../include/lib/Dashboard/Widgets/monitor_health.php:158
+#: ../../include/lib/Dashboard/Widgets/monitor_health.php:337
+msgid "Global health info"
+msgstr ""
+
+#: ../../include/lib/Dashboard/Widgets/system_group_status.php:158
+#: ../../include/lib/Dashboard/Widgets/system_group_status.php:622
+msgid "Groups status"
+msgstr ""
+
+#: ../../include/lib/Dashboard/Widgets/system_group_status.php:314
+msgid "Alert Fired"
+msgstr ""
+
+#: ../../include/lib/Dashboard/Widgets/system_group_status.php:522
+msgid "Modules in normal status"
+msgstr ""
+
+#: ../../include/lib/Dashboard/Widgets/system_group_status.php:538
+msgid "Modules in warning status"
+msgstr ""
+
+#: ../../include/lib/Dashboard/Widgets/system_group_status.php:555
+msgid "Modules in critical status"
+msgstr ""
+
+#: ../../include/lib/Dashboard/Widgets/system_group_status.php:601
+msgid "No modules in selected groups"
+msgstr ""
+
+#: ../../include/lib/Dashboard/Widgets/single_graph.php:170
+#: ../../include/lib/Dashboard/Widgets/single_graph.php:394
+msgid "Agent module graph"
+msgstr ""
+
+#: ../../include/lib/Dashboard/Widgets/tactical.php:262
+msgid "Status and Monitor checks"
+msgstr ""
+
+#: ../../include/lib/Dashboard/Widgets/tactical.php:274
+#: ../../include/functions_reporting.php:13939
+msgid "Server performance"
+msgstr ""
+
+#: ../../include/lib/Dashboard/Widgets/tactical.php:286
+#: ../../include/functions_netflow.php:1183
+#: ../../include/functions_reporting_html.php:4530
+#: ../../include/functions_reporting_html.php:4800
+#: ../../include/functions_reporting_html.php:4937
+#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:453
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3083
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3130
+#: ../../godmode/wizards/DiscoveryTaskList.class.php:1417
+msgid "Summary"
+msgstr ""
+
+#: ../../include/lib/Dashboard/Widgets/groups_status.php:158
+#: ../../include/lib/Dashboard/Widgets/groups_status.php:481
+msgid "General group status"
+msgstr ""
+
+#: ../../include/lib/Dashboard/Widgets/groups_status.php:435
+msgid "Not agents in this group"
+msgstr ""
+
+#: ../../include/lib/Dashboard/Widgets/example.php:158
+#: ../../include/lib/Dashboard/Widgets/example.php:277
+#, php-format
+msgid "Welcome message to %s"
+msgstr ""
+
+#: ../../include/lib/Dashboard/Widgets/example.php:249
+msgid "This is an example of a dashboard widget. A widget may contain elements"
+msgstr ""
+
+#: ../../include/lib/Dashboard/Widgets/example.php:250
+msgid ""
+"To add more elements, click on \"<em>Add widgets</em>\" on the top of this "
+"page."
+msgstr ""
+
+#: ../../include/lib/Dashboard/Widgets/example.php:251
+#: ../../include/lib/Dashboard/Widgets/example.php:253
+msgid ""
+"To delete this message, click on the delete button on top right corner of "
+"this element."
+msgstr ""
+
+#: ../../include/lib/Dashboard/Widgets/example.php:252
+msgid ""
+"To do so, just click on the title and drag and drop it to the desired place."
+msgstr ""
+
+#: ../../include/lib/Dashboard/Widgets/example.php:254
+#, php-format
+msgid "Thanks for using %s."
+msgstr ""
+
+#: ../../include/lib/Dashboard/Widgets/post.php:158
+#: ../../include/lib/Dashboard/Widgets/post.php:276
+msgid "Panel with a message"
+msgstr ""
+
+#: ../../include/lib/Dashboard/Widgets/clock.php:216
+msgid "Analogic"
+msgstr ""
+
+#: ../../include/lib/Dashboard/Widgets/clock.php:217
+msgid "Digital"
+msgstr ""
+
+#: ../../include/lib/Dashboard/Widgets/module_status.php:413
+#: ../../include/lib/Dashboard/Widgets/module_icon.php:435
+msgid "Size of icon"
+msgstr ""
+
+#: ../../include/lib/Dashboard/Widgets/graph_module_histogram.php:175
+#: ../../include/lib/Dashboard/Widgets/graph_module_histogram.php:431
+msgid "Module histogram"
+msgstr ""
+
+#: ../../include/lib/Dashboard/Widgets/alerts_fired.php:162
+#: ../../include/lib/Dashboard/Widgets/alerts_fired.php:360
+msgid "Triggered alerts report"
+msgstr ""
+
+#: ../../include/lib/Dashboard/Widgets/alerts_fired.php:333
+msgid "Not alert fired"
+msgstr ""
+
+#: ../../include/lib/Dashboard/Widgets/alerts_fired.php:342
+#: ../../include/lib/Dashboard/Widgets/events_list.php:511
+msgid "You must select some group"
+msgstr ""
+
+#: ../../include/lib/Dashboard/Widgets/agent_module.php:173
+#: ../../include/lib/Dashboard/Widgets/agent_module.php:840
+msgid "Agent/Module View"
+msgstr ""
+
+#: ../../include/lib/Dashboard/Widgets/agent_module.php:250
+#: ../../include/lib/Dashboard/Widgets/tree_view.php:439
+msgid "Filter modules"
+msgstr ""
+
+#: ../../include/lib/Dashboard/Widgets/agent_module.php:255
+#: ../../extensions/agents_modules.php:396
+#: ../../godmode/reporting/reporting_builder.item_editor.php:1854
+msgid "Show module status"
+msgstr ""
+
+#: ../../include/lib/Dashboard/Widgets/agent_module.php:256
+#: ../../extensions/agents_modules.php:397
+#: ../../godmode/reporting/reporting_builder.item_editor.php:1855
+msgid "Show module data"
+msgstr ""
+
+#: ../../include/lib/Dashboard/Widgets/agent_module.php:265
+#: ../../extensions/agents_modules.php:400
+#: ../../godmode/reporting/reporting_builder.item_editor.php:1850
+msgid "Information to be shown"
+msgstr ""
+
+#: ../../include/lib/Dashboard/Widgets/agent_module.php:536
+#: ../../include/functions_reporting_html.php:1978
+#: ../../enterprise/include/functions_reporting_pdf.php:946
+#, php-format
+msgid "%s in %s : NORMAL"
+msgstr ""
+
+#: ../../include/lib/Dashboard/Widgets/agent_module.php:552
+#: ../../include/functions_reporting_html.php:1890
+#: ../../enterprise/include/functions_reporting_pdf.php:963
+#, php-format
+msgid "%s in %s : CRITICAL"
+msgstr ""
+
+#: ../../include/lib/Dashboard/Widgets/agent_module.php:568
+#: ../../include/functions_reporting_html.php:1907
+#: ../../enterprise/include/functions_reporting_pdf.php:980
+#, php-format
+msgid "%s in %s : WARNING"
+msgstr ""
+
+#: ../../include/lib/Dashboard/Widgets/agent_module.php:584
+#: ../../include/functions_reporting_html.php:1924
+#: ../../enterprise/include/functions_reporting_pdf.php:997
+#, php-format
+msgid "%s in %s : UNKNOWN"
+msgstr ""
+
+#: ../../include/lib/Dashboard/Widgets/agent_module.php:600
+#: ../../include/functions_reporting_html.php:1960
+#: ../../enterprise/include/functions_reporting_pdf.php:1014
+#, php-format
+msgid "%s in %s : Not initialize"
+msgstr ""
+
+#: ../../include/lib/Dashboard/Widgets/agent_module.php:617
+#: ../../include/functions_reporting_html.php:1943
+#: ../../enterprise/include/functions_reporting_pdf.php:1031
+#, php-format
+msgid "%s in %s : ALERTS FIRED"
+msgstr ""
+
+#: ../../include/lib/Dashboard/Widgets/agent_module.php:640
+#: ../../include/lib/Dashboard/Widget.php:465
+msgid "Please configure this widget before usage"
+msgstr ""
+
+#: ../../include/lib/Dashboard/Widgets/wux_transaction_stats.php:172
+#: ../../include/lib/Dashboard/Widgets/wux_transaction_stats.php:378
+msgid "WUX transaction stats"
+msgstr ""
+
+#: ../../include/lib/Dashboard/Widgets/wux_transaction_stats.php:288
+msgid "View all statistics"
+msgstr ""
+
+#: ../../include/lib/Dashboard/Widgets/service_view.php:190
+msgid "Service View"
+msgstr ""
+
+#: ../../include/lib/Dashboard/Widgets/service_view.php:246
+msgid "Tree"
+msgstr ""
+
+#: ../../include/lib/Dashboard/Widgets/service_view.php:247
+#: ../../enterprise/include/class/CommandCenter.class.php:453
+msgid "Table"
+msgstr ""
+
+#: ../../include/lib/Dashboard/Widgets/service_view.php:298
+#: ../../include/lib/Dashboard/Widgets/service_map.php:347
+msgid "The user doesn't have permission to read agents"
+msgstr ""
+
+#: ../../include/lib/Dashboard/Widgets/service_view.php:456
+msgid "Services view"
+msgstr ""
+
+#: ../../include/lib/Dashboard/Widgets/network_map.php:258
+msgid "It is recommended to have only one such widget in the control panel."
+msgstr ""
+
+#: ../../include/lib/Dashboard/Widgets/network_map.php:335
+msgid "Introduce x-axis data. Right=positive Left=negative"
+msgstr ""
+
+#: ../../include/lib/Dashboard/Widgets/network_map.php:339
+msgid "X offset"
+msgstr ""
+
+#: ../../include/lib/Dashboard/Widgets/network_map.php:350
+msgid "Introduce Y-axis data. Top=positive Bottom=negative"
+msgstr ""
+
+#: ../../include/lib/Dashboard/Widgets/network_map.php:354
+msgid "Y offset"
+msgstr ""
+
+#: ../../include/lib/Dashboard/Widgets/network_map.php:378
+msgid "Zoom level"
+msgstr ""
+
+#: ../../include/lib/Dashboard/Widgets/service_map.php:192
+#: ../../enterprise/operation/services/services.service.php:63
+#: ../../enterprise/operation/services/services.service_map.php:71
+msgid "Service Map"
+msgstr ""
+
+#: ../../include/lib/Dashboard/Widgets/service_map.php:280
+msgid ""
+"ZOOM functionality is only available when there is only one such widget in "
+"the dashboard"
+msgstr ""
+
+#: ../../include/lib/Dashboard/Widgets/service_map.php:287
+#: ../../enterprise/include/functions_visual_map_editor.php:30
+#: ../../enterprise/include/functions_visual_map_editor.php:41
+#: ../../enterprise/include/functions_visual_map_editor.php:54
+#: ../../enterprise/include/functions_visual_map_editor.php:85
+#: ../../enterprise/include/functions_services.php:1712
+#: ../../enterprise/include/functions_reporting.php:6136
+#: ../../enterprise/include/functions_visual_map.php:539
+#: ../../enterprise/include/rest-api/models/VisualConsole/Items/Service.php:288
+#: ../../enterprise/godmode/services/services.elements.php:95
+#: ../../enterprise/godmode/services/services.elements.php:181
+#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:25
+#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:166
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3788
+msgid "Service"
+msgstr ""
+
+#: ../../include/lib/Dashboard/Widgets/service_map.php:358
+msgid "Missing Service id"
+msgstr ""
+
+#: ../../include/lib/Dashboard/Widgets/service_map.php:449
+#: ../../enterprise/operation/services/services.php:164
+#: ../../enterprise/godmode/services/services.elements.php:766
+#: ../../enterprise/godmode/services/services.service.php:457
+msgid "Service map"
+msgstr ""
+
+#: ../../include/lib/Dashboard/Widgets/events_list.php:175
+#: ../../include/lib/Dashboard/Widgets/events_list.php:810
+msgid "List of latest events"
+msgstr ""
+
+#: ../../include/lib/Dashboard/Widgets/events_list.php:294
+msgid "Custom filters"
+msgstr ""
+
+#: ../../include/lib/Dashboard/Widgets/events_list.php:359
+msgid "Limit"
+msgstr ""
+
+#: ../../include/lib/Dashboard/Widgets/events_list.php:372
+#: ../../include/functions_events.php:3378
+#: ../../include/functions_events.php:3384
+#: ../../include/functions_events.php:3406
+msgid "All event"
+msgstr ""
+
+#: ../../include/lib/Dashboard/Widgets/events_list.php:373
+#: ../../include/functions_events.php:3380
+#: ../../include/functions_events.php:3414
+msgid "Only validated"
+msgstr ""
+
+#: ../../include/lib/Dashboard/Widgets/events_list.php:374
+msgid "Only pending"
+msgstr ""
+
+#: ../../include/lib/Dashboard/Widgets/events_list.php:436
+#: ../../include/functions_html.php:1248 ../../include/functions_html.php:1400
+#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:115
+#: ../../enterprise/godmode/policies/policy_agents.php:454
+#: ../../enterprise/godmode/policies/policy_agents.php:485
+#: ../../enterprise/godmode/policies/policy_agents.php:549
+#: ../../enterprise/godmode/policies/policy_agents.php:814
+#: ../../godmode/massive/massive_add_alerts.php:228
+#: ../../godmode/massive/massive_delete_modules.php:386
+#: ../../godmode/massive/massive_copy_modules.php:112
+#: ../../godmode/massive/massive_copy_modules.php:265
+#: ../../godmode/massive/massive_standby_alerts.php:200
+#: ../../godmode/massive/massive_add_action_alerts.php:209
+#: ../../godmode/massive/massive_edit_agents.php:520
+#: ../../godmode/massive/massive_delete_action_alerts.php:221
+#: ../../godmode/massive/massive_delete_alerts.php:305
+#: ../../godmode/massive/massive_delete_agents.php:199
+#: ../../godmode/massive/massive_enable_disable_alerts.php:171
+#: ../../godmode/massive/massive_edit_modules.php:370
+msgid "Group recursion"
+msgstr ""
+
+#: ../../include/lib/Dashboard/Widgets/events_list.php:792
+msgid "There are no events matching selected search filters"
+msgstr ""
+
+#: ../../include/lib/Dashboard/Widgets/tree_view.php:341
+msgid "Type tree"
+msgstr ""
+
+#: ../../include/lib/Dashboard/Widgets/tree_view.php:373
+msgid "Open all groups"
+msgstr ""
+
+#: ../../include/lib/Dashboard/Widgets/tree_view.php:393
+msgid "Agents status"
+msgstr ""
+
+#: ../../include/lib/Dashboard/Widgets/tree_view.php:405
+#: ../../godmode/massive/massive_edit_modules.php:506
+msgid "Filter agents"
+msgstr ""
+
+#: ../../include/lib/Dashboard/Widgets/tree_view.php:427
+msgid "Modules status"
+msgstr ""
+
+#: ../../include/lib/Dashboard/Widgets/tree_view.php:493
+#, php-format
+msgid ""
+"The user doesn't have permission to read agents. Please contact with your %s "
+"administrator."
+msgstr ""
+
+#: ../../include/lib/Dashboard/Widgets/module_icon.php:178
+#: ../../include/lib/Dashboard/Widgets/module_icon.php:540
+msgid "Icon and module value"
+msgstr ""
+
+#: ../../include/lib/Dashboard/Widgets/top_n.php:163
+#: ../../include/lib/Dashboard/Widgets/top_n.php:528
+msgid "Top N of agent modules"
+msgstr ""
+
+#: ../../include/lib/Dashboard/Widgets/top_n.php:207
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2032
+msgid ""
+"Case insensitive regular expression for agent name. For example: Network.* "
+"will match with the following agent names: network_agent1, NetworK CHECKS"
+msgstr ""
+
+#: ../../include/lib/Dashboard/Widgets/top_n.php:222
+msgid ""
+"Case insensitive regular expression or string for module name. For example: ."
+"*usage.* will match: cpu_usage, vram usage."
+msgstr ""
+
+#: ../../include/lib/Dashboard/Widgets/top_n.php:249
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2424
+#: ../../enterprise/godmode/reporting/reporting_builder.global.php:355
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2371
+msgid "Quantity (n)"
+msgstr ""
+
+#: ../../include/lib/Dashboard/Widgets/top_n.php:261
+#: ../../enterprise/operation/log/log_viewer.php:496
+#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:64
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:203
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2405
+#: ../../enterprise/godmode/reporting/reporting_builder.global.php:345
+#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:310
+#: ../../godmode/reporting/reporting_builder.item_editor.php:65
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2352
+msgid "Descending"
+msgstr ""
+
+#: ../../include/lib/Dashboard/Widgets/top_n.php:262
+#: ../../enterprise/operation/log/log_viewer.php:497
+#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:63
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:202
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2398
+#: ../../enterprise/godmode/reporting/reporting_builder.global.php:343
+#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:303
+#: ../../godmode/reporting/reporting_builder.item_editor.php:64
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2345
+msgid "Ascending"
+msgstr ""
+
+#: ../../include/lib/Dashboard/Widgets/top_n.php:263
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2412
+#: ../../enterprise/godmode/reporting/reporting_builder.global.php:347
+#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:317
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2359
+msgid "By agent name"
+msgstr ""
+
+#: ../../include/lib/Dashboard/Widgets/top_n.php:267
+#: ../../enterprise/operation/log/log_viewer.php:500
+#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:436
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2395
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2964
+#: ../../enterprise/godmode/reporting/reporting_builder.global.php:338
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2342
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3021
+#: ../../godmode/netflow/nf_item_list.php:173
+msgid "Order"
+msgstr ""
+
+#: ../../include/lib/Dashboard/Widgets/top_n.php:280
+msgid "Avg."
+msgstr ""
+
+#: ../../include/lib/Dashboard/Widgets/top_n.php:281
+#: ../../include/functions_alerts.php:672
+#: ../../include/functions_treeview.php:92
+#: ../../include/functions_treeview.php:104
+#: ../../include/functions_reporting_html.php:5193
+#: ../../enterprise/godmode/modules/configure_local_component.php:320
+#: ../../enterprise/godmode/modules/configure_local_component.php:363
+#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:517
+#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:608
+#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:830
+#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:308
+#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:357
+#: ../../godmode/modules/manage_network_components_form_wizard.php:388
+#: ../../godmode/modules/manage_network_components_form_wizard.php:423
+#: ../../godmode/modules/manage_network_components_form_common.php:174
+#: ../../godmode/modules/manage_network_components_form_common.php:215
+#: ../../godmode/massive/massive_edit_modules.php:580
+#: ../../godmode/massive/massive_edit_modules.php:671
+#: ../../godmode/massive/massive_edit_modules.php:887
+#: ../../godmode/agentes/module_manager_editor_common.php:428
+#: ../../godmode/agentes/module_manager_editor_common.php:489
+#: ../../godmode/alerts/configure_alert_template.php:862
+msgid "Max."
+msgstr ""
+
+#: ../../include/lib/Dashboard/Widgets/top_n.php:282
+#: ../../include/functions_alerts.php:673
+#: ../../include/functions_treeview.php:92
+#: ../../include/functions_treeview.php:104
+#: ../../include/functions_reporting_html.php:5192
+#: ../../enterprise/godmode/modules/configure_local_component.php:311
+#: ../../enterprise/godmode/modules/configure_local_component.php:354
+#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:502
+#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:593
+#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:828
+#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:293
+#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:342
+#: ../../godmode/modules/manage_network_components_form_wizard.php:386
+#: ../../godmode/modules/manage_network_components_form_wizard.php:414
+#: ../../godmode/modules/manage_network_components_form_common.php:165
+#: ../../godmode/modules/manage_network_components_form_common.php:206
+#: ../../godmode/massive/massive_edit_modules.php:565
+#: ../../godmode/massive/massive_edit_modules.php:656
+#: ../../godmode/massive/massive_edit_modules.php:885
+#: ../../godmode/alerts/configure_alert_template.php:850
+msgid "Min."
+msgstr ""
+
+#: ../../include/lib/Dashboard/Widgets/top_n.php:448
+msgid "There are no agents/modules found matching filter set"
+msgstr ""
+
+#: ../../include/lib/Dashboard/Widget.php:473
+msgid "Widget cannot be loaded"
+msgstr ""
+
+#: ../../include/lib/Dashboard/Widget.php:477
+msgid "Please, configure the widget again to recover it"
+msgstr ""
+
+#: ../../include/lib/Dashboard/Widget.php:584
+#: ../../include/functions_events.php:4991
+#: ../../enterprise/godmode/policies/policy_queue.php:670
+#: ../../enterprise/godmode/policies/policy_linking.php:153
+#: ../../godmode/massive/massive_delete_agents.php:252
+msgid "Node"
+msgstr ""
+
+#: ../../include/lib/Dashboard/Widget.php:591
+#: ../../enterprise/meta/advanced/policymanager.sync.php:308
+#: ../../extensions/dbmanager.php:204
+msgid "This metaconsole"
+msgstr ""
+
+#: ../../include/functions_tags.php:712
+msgid "Click here to open a popup window with URL tag"
+msgstr ""
+
+#: ../../include/auth/mysql.php:319 ../../include/auth/mysql.php:347
+msgid ""
+"Problems with configuration permissions. Please contact with Administrator"
+msgstr ""
+
+#: ../../include/auth/mysql.php:334 ../../include/auth/mysql.php:397
+#: ../../include/auth/mysql.php:412 ../../include/auth/mysql.php:443
+msgid "User not found in database or incorrect password"
+msgstr ""
+
+#: ../../include/auth/mysql.php:360
+msgid ""
+"Ooops User not found in \n"
+"\t\t\t\tdatabase or incorrect password"
+msgstr ""
+
+#: ../../include/auth/mysql.php:372 ../../include/auth/mysql.php:402
+#: ../../include/auth/mysql.php:437 ../../enterprise/include/auth/saml.php:241
+msgid "Please, login into metaconsole first"
+msgstr ""
+
+#: ../../include/auth/mysql.php:718
+msgid "Could not changes password on remote pandora"
+msgstr ""
+
+#: ../../include/auth/mysql.php:766
+msgid "Your installation of PHP does not support LDAP"
+msgstr ""
+
+#: ../../include/functions_events.php:134
+msgid "NEW"
+msgstr ""
+
+#: ../../include/functions_events.php:137
+msgid "IN PROCESS"
+msgstr ""
+
+#: ../../include/functions_events.php:140
+msgid "VALIDATED"
+msgstr ""
+
+#: ../../include/functions_events.php:191
+#: ../../enterprise/meta/include/functions_events_meta.php:58
+msgid "Event id"
+msgstr ""
+
+#: ../../include/functions_events.php:192
+#: ../../include/functions_events.php:2610
+#: ../../include/functions_events.php:4984
+#: ../../include/functions_reporting_html.php:1267
+#: ../../include/functions_reporting_html.php:1275
+#: ../../include/functions_reporting_html.php:4968
+#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:439
+#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:499
+#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:551
+#: ../../enterprise/meta/include/functions_events_meta.php:62
+msgid "Event name"
+msgstr ""
+
+#: ../../include/functions_events.php:199
+msgid "Agent module"
+msgstr ""
+
+#: ../../include/functions_events.php:205
+#: ../../include/functions_events.php:4703
+#: ../../enterprise/meta/include/functions_events_meta.php:114
+msgid "Extra id"
+msgstr ""
+
+#: ../../include/functions_events.php:209
+#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:69
+#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:252
+#: ../../enterprise/meta/include/functions_events_meta.php:130
+#: ../../enterprise/godmode/setup/setup_metaconsole.php:198
+#: ../../enterprise/godmode/setup/setup_metaconsole.php:273
+#: ../../godmode/wizards/DiscoveryTaskList.class.php:591
+msgid "Server name"
+msgstr ""
+
+#: ../../include/functions_events.php:212
+msgid "Module custom id"
+msgstr ""
+
+#: ../../include/functions_events.php:230
+#: ../../godmode/events/custom_events.php:94
+msgid "Event Id"
+msgstr ""
+
+#: ../../include/functions_events.php:242
+#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:123
+#: ../../enterprise/include/functions_inventory.php:112
+#: ../../enterprise/include/functions_inventory.php:146
+#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:461
+msgid "Agent alias"
+msgstr ""
+
+#: ../../include/functions_events.php:278
+#: ../../godmode/events/custom_events.php:110
+msgid "Extra Id"
+msgstr ""
+
+#: ../../include/functions_events.php:290
+#: ../../godmode/events/custom_events.php:114
+msgid "Server Name"
+msgstr ""
+
+#: ../../include/functions_events.php:299
+#: ../../include/functions_events.php:5160
+#: ../../godmode/events/custom_events.php:118
+msgid "Module custom ID"
+msgstr ""
+
+#: ../../include/functions_events.php:308
+#: ../../godmode/events/custom_events.php:117
+msgid "Severity mini"
+msgstr ""
+
+#: ../../include/functions_events.php:312
+#: ../../godmode/events/custom_events.php:98
+msgid "Agent IP"
+msgstr ""
+
+#: ../../include/functions_events.php:2628
+#: ../../enterprise/operation/agentes/policy_view.php:70
+msgid "V."
+msgstr ""
+
+#: ../../include/functions_events.php:2725
+msgid "Events -by module-"
+msgstr ""
+
+#: ../../include/functions_events.php:2872
+msgid "Going to unknown"
+msgstr ""
+
+#: ../../include/functions_events.php:2876
+#: ../../include/functions_events.php:3263 ../../include/functions.php:1229
+msgid "Alert recovered"
+msgstr ""
+
+#: ../../include/functions_events.php:2880
+msgid "Alert manually validated"
+msgstr ""
+
+#: ../../include/functions_events.php:2884
+msgid "Going from critical to warning"
+msgstr ""
+
+#: ../../include/functions_events.php:2890
+msgid "Going up to critical state"
+msgstr ""
+
+#: ../../include/functions_events.php:2896
+msgid "Going up to normal state"
+msgstr ""
+
+#: ../../include/functions_events.php:2900
+msgid "Going down from normal to warning"
+msgstr ""
+
+#: ../../include/functions_events.php:2912
+msgid "Discovery server detected a new host"
+msgstr ""
+
+#: ../../include/functions_events.php:2916
+msgid "New agent created"
+msgstr ""
+
+#: ../../include/functions_events.php:2920
+#: ../../include/functions_events.php:3287 ../../include/functions.php:1237
+msgid "Configuration change"
+msgstr ""
+
+#: ../../include/functions_events.php:2924
+#: ../../include/functions_events.php:3267 ../../include/functions.php:1230
+msgid "Alert ceased"
+msgstr ""
+
+#: ../../include/functions_events.php:2933
+msgid "Unknown type:"
+msgstr ""
+
+#: ../../include/functions_events.php:3247 ../../include/functions.php:1222
+msgid "Monitor Critical"
+msgstr ""
+
+#: ../../include/functions_events.php:3251 ../../include/functions.php:1223
+msgid "Monitor Warning"
+msgstr ""
+
+#: ../../include/functions_events.php:3255 ../../include/functions.php:1224
+msgid "Monitor Normal"
+msgstr ""
+
+#: ../../include/functions_events.php:3271 ../../include/functions.php:1231
+msgid "Alert manual validation"
+msgstr ""
+
+#: ../../include/functions_events.php:3275 ../../include/functions.php:1234
+msgid "Recon host detected"
+msgstr ""
+
+#: ../../include/functions_events.php:3295 ../../include/functions.php:1238
+#: ../../enterprise/views/ncm/snippets/edit.php:42
+#: ../../enterprise/views/ncm/snippets/list.php:32
+#: ../../enterprise/views/ncm/firmwares/edit.php:41
+#: ../../enterprise/views/ncm/firmwares/list.php:32
+#: ../../enterprise/views/ncm/vendors/edit.php:35
+#: ../../enterprise/views/ncm/vendors/list.php:32
+#: ../../enterprise/views/ncm/devices/list.php:32
+#: ../../enterprise/views/ncm/devices/list.php:67
+#: ../../enterprise/views/ncm/templates/edit.php:42
+#: ../../enterprise/views/ncm/templates/list.php:32
+#: ../../enterprise/views/ncm/models/edit.php:37
+#: ../../enterprise/views/ncm/models/list.php:32
+msgid "Network configuration manager"
+msgstr ""
+
+#: ../../include/functions_events.php:3331
+#: ../../include/functions_graph.php:3538
+#: ../../include/functions_graph.php:3539
+#: ../../include/functions_graph.php:5119 ../../include/functions.php:1027
+#: ../../include/functions.php:1270 ../../include/functions.php:1307
+msgid "Informational"
+msgstr ""
+
+#: ../../include/functions_events.php:3379
+#: ../../include/functions_events.php:3410
+msgid "Only new"
+msgstr ""
+
+#: ../../include/functions_events.php:3381
+#: ../../include/functions_events.php:3418
+msgid "Only in process"
+msgstr ""
+
+#: ../../include/functions_events.php:3382
+#: ../../include/functions_events.php:3422
+msgid "Only not validated"
+msgstr ""
+
+#: ../../include/functions_events.php:3385
+#: ../../include/functions_events.php:3673
+#: ../../enterprise/meta/monitoring/wizard/wizard.php:139
+msgid "New"
+msgstr ""
+
+#: ../../include/functions_events.php:3387
+#: ../../include/functions_events.php:3674
+#: ../../include/functions_events.php:3683
+msgid "In process"
+msgstr ""
+
+#: ../../include/functions_events.php:3388
+msgid "Not Validated"
+msgstr ""
+
+#: ../../include/functions_events.php:3577
+msgid "Change owner"
+msgstr ""
+
+#: ../../include/functions_events.php:3658
+msgid "Change status"
+msgstr ""
+
+#: ../../include/functions_events.php:3800
+msgid "Custom responses"
+msgstr ""
+
+#: ../../include/functions_events.php:4378
+msgid "Extended information"
+msgstr ""
+
+#: ../../include/functions_events.php:4406
+msgid "There was an error connecting to the node"
+msgstr ""
+
+#: ../../include/functions_events.php:4445
+msgid "Agent details"
+msgstr ""
+
+#: ../../include/functions_events.php:4459
+msgid "This agent belongs to metaconsole, is not possible display it"
+msgstr ""
+
+#: ../../include/functions_events.php:4510
+msgid "View custom fields"
+msgstr ""
+
+#: ../../include/functions_events.php:4533
+msgid "Module details"
+msgstr ""
+
+#: ../../include/functions_events.php:4549
+msgid "No assigned"
+msgstr ""
+
+#: ../../include/functions_events.php:4626
+#: ../../godmode/alerts/alert_view.php:65
+#: ../../godmode/alerts/alert_view.php:280
+msgid "Alert details"
+msgstr ""
+
+#: ../../include/functions_events.php:4640
+#: ../../include/functions_events.php:4649
+msgid "Go to data overview"
+msgstr ""
+
+#: ../../include/functions_events.php:4765
+#, php-format
+msgid "Invalid custom data: %s"
+msgstr ""
+
+#: ../../include/functions_events.php:5000
+msgid "First event"
+msgstr ""
+
+#: ../../include/functions_events.php:5000
+msgid "Last event"
+msgstr ""
+
+#: ../../include/functions_events.php:5080
+#: ../../mobile/operation/events.php:540
+msgid "Acknowledged by"
+msgstr ""
+
+#: ../../include/functions_events.php:5084
+msgid "Autovalidated"
+msgstr ""
+
+#: ../../include/functions_events.php:5125
+#: ../../godmode/groups/configure_group.php:246
+msgid "Contact"
+msgstr ""
+
+#: ../../include/functions_events.php:5150
+msgid "ID extra"
+msgstr ""
+
+#: ../../include/functions_events.php:5215
+msgid "There are no comments"
+msgstr ""
+
+#: ../../include/functions_events.php:5370
+msgid ""
+"If event replication is ongoing, it won't be possible to enter comments "
+"here. This option is only to allow local pandora users to see comments, but "
+"not to operate with them. The operation, when event replication is enabled, "
+"must be done only in the Metaconsole."
+msgstr ""
+
+#: ../../include/functions_events.php:5574
+msgid "Pandora System"
+msgstr ""
+
+#: ../../include/functions_events.php:5773
+msgid "Validated but not assigned"
+msgstr ""
+
+#: ../../include/functions_events.php:6720
+msgid "Agent Module"
+msgstr ""
+
+#: ../../include/functions_db.php:147
+#, php-format
+msgid "Error connecting to database %s at %s."
+msgstr ""
+
+#: ../../include/functions_db.php:1900
+msgid "Database debug"
+msgstr ""
+
+#: ../../include/functions_db.php:1917
+msgid "SQL sentence"
+msgstr ""
+
+#: ../../include/functions_db.php:1918
+#: ../../include/functions_reporting_html.php:3997
+#: ../../include/functions_reporting_html.php:4144
+#: ../../include/functions_reporting_html.php:4485
+#: ../../include/functions_reporting_html.php:4496
+#: ../../enterprise/views/ncm/agent/details.php:90
+#: ../../enterprise/include/class/CommandCenter.class.php:468
+#: ../../extensions/api_checker.php:219 ../../extensions/api_checker.php:226
+msgid "Result"
+msgstr ""
+
+#: ../../include/functions_db.php:1919
+msgid "Rows"
+msgstr ""
+
+#: ../../include/functions_db.php:1920
+msgid "Saved"
+msgstr ""
+
+#: ../../include/functions_db.php:1921
+msgid "Time (ms)"
+msgstr ""
+
+#: ../../include/functions_groups.php:75
+msgid "Alert Actions"
+msgstr ""
+
+#: ../../include/functions_groups.php:91
+msgid "Alert Templates"
+msgstr ""
+
+#: ../../include/functions_groups.php:155
+msgid "Layout visual console"
+msgstr ""
+
+#: ../../include/functions_groups.php:171
+msgid "Plannet down time"
+msgstr ""
+
+#: ../../include/functions_groups.php:203
+msgid "GIS maps"
+msgstr ""
+
+#: ../../include/functions_groups.php:219
+msgid "GIS connections"
+msgstr ""
+
+#: ../../include/functions_groups.php:235
+msgid "GIS map layers"
+msgstr ""
+
+#: ../../include/functions_groups.php:251
+msgid "Network maps"
+msgstr ""
+
+#: ../../include/functions_config.php:144
+msgid "Failed updated: User did not login."
+msgstr ""
+
+#: ../../include/functions_config.php:152
+msgid "Failed updated: User is not admin."
+msgstr ""
+
+#: ../../include/functions_config.php:178
+#: ../../enterprise/meta/include/functions_meta.php:77
+#: ../../enterprise/meta/advanced/metasetup.setup.php:113
+msgid "Language settings"
+msgstr ""
+
+#: ../../include/functions_config.php:182
+#: ../../enterprise/meta/include/functions_meta.php:138
+#: ../../enterprise/meta/advanced/metasetup.setup.php:155
+#: ../../godmode/setup/setup_general.php:88
+msgid "Remote config directory"
+msgstr ""
+
+#: ../../include/functions_config.php:186
+msgid "phantomjs config directory"
+msgstr ""
+
+#: ../../include/functions_config.php:190
+#: ../../enterprise/meta/include/functions_meta.php:82
+#: ../../enterprise/meta/advanced/metasetup.setup.php:126
+#: ../../godmode/setup/setup_general.php:110
+msgid "Auto login (hash) password"
+msgstr ""
+
+#: ../../include/functions_config.php:194
+#: ../../enterprise/meta/include/functions_meta.php:92
+#: ../../enterprise/meta/advanced/metasetup.setup.php:142
+#: ../../godmode/setup/setup_general.php:124
+msgid "Time source"
+msgstr ""
+
+#: ../../include/functions_config.php:198
+#: ../../godmode/setup/setup_general.php:137
+msgid "Automatic check for updates"
+msgstr ""
+
+#: ../../include/functions_config.php:202
+msgid "SSL cert path"
+msgstr ""
+
+#: ../../include/functions_config.php:206
+#: ../../enterprise/meta/include/functions_meta.php:102
+#: ../../enterprise/meta/advanced/metasetup.setup.php:148
+#: ../../godmode/setup/setup_general.php:149
+msgid "Enforce https"
+msgstr ""
+
+#: ../../include/functions_config.php:210
+msgid "Use cert."
+msgstr ""
+
+#: ../../include/functions_config.php:217
+#: ../../enterprise/meta/include/functions_meta.php:127
+#: ../../enterprise/meta/advanced/metasetup.setup.php:152
+#: ../../godmode/setup/setup_general.php:183
+msgid "Attachment store"
+msgstr ""
+
+#: ../../include/functions_config.php:219
+#: ../../enterprise/meta/include/functions_meta.php:122
+#: ../../enterprise/meta/advanced/cron_main.php:159
+#: ../../enterprise/meta/advanced/cron_main.php:203
+#: ../../enterprise/meta/advanced/cron_main.php:296
+#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:213
+#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:276
+#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:371
+msgid "Path doesn't exists or is not writable"
+msgstr ""
+
+#: ../../include/functions_config.php:224
+#: ../../enterprise/meta/include/functions_meta.php:120
+msgid "Attachment store."
+msgstr ""
+
+#: ../../include/functions_config.php:230
+#: ../../enterprise/meta/include/functions_meta.php:238
+#: ../../enterprise/meta/advanced/metasetup.setup.php:272
+#: ../../godmode/setup/setup_general.php:193
+msgid "IP list with API access"
+msgstr ""
+
+#: ../../include/functions_config.php:234
+#: ../../enterprise/meta/include/functions_meta.php:218
+#: ../../enterprise/meta/include/functions_meta.php:228
+#: ../../enterprise/meta/advanced/metasetup.setup.php:267
+#: ../../enterprise/meta/advanced/metasetup.consoles.php:533
+#: ../../enterprise/godmode/setup/setup_metaconsole.php:210
+#: ../../godmode/setup/setup_general.php:212
+msgid "API password"
+msgstr ""
+
+#: ../../include/functions_config.php:238
+#: ../../godmode/setup/setup_general.php:223
+msgid "Enable GIS features"
+msgstr ""
+
+#: ../../include/functions_config.php:242
+msgid "Integria inventory"
+msgstr ""
+
+#: ../../include/functions_config.php:246
+#: ../../include/functions_config.php:1732
+msgid "Integria API password"
+msgstr ""
+
+#: ../../include/functions_config.php:250
+msgid "Integria URL"
+msgstr ""
+
+#: ../../include/functions_config.php:254
+#: ../../godmode/setup/setup_general.php:231
+msgid "Enable Netflow"
+msgstr ""
+
+#: ../../include/functions_config.php:259
+#: ../../include/functions_register.php:164
+#: ../../enterprise/meta/include/functions_meta.php:158
+#: ../../enterprise/meta/advanced/metasetup.setup.php:191
+#: ../../godmode/setup/setup_general.php:279
+msgid "Timezone setup"
+msgstr ""
+
+#: ../../include/functions_config.php:284
+msgid "License information"
+msgstr ""
+
+#: ../../include/functions_config.php:290
+#: ../../enterprise/meta/include/functions_meta.php:168
+#: ../../enterprise/meta/advanced/metasetup.setup.php:197
+#: ../../godmode/setup/setup_general.php:319
+msgid "Public URL"
+msgstr ""
+
+#: ../../include/functions_config.php:294
+#: ../../enterprise/meta/include/functions_meta.php:178
+#: ../../enterprise/meta/advanced/metasetup.setup.php:201
+#: ../../godmode/setup/setup_general.php:329
+msgid "Force use Public URL"
+msgstr ""
+
+#: ../../include/functions_config.php:298
+#: ../../enterprise/meta/include/functions_meta.php:188
+#: ../../enterprise/meta/advanced/metasetup.setup.php:215
+#: ../../godmode/setup/setup_general.php:343
+msgid "Public URL host exclusions"
+msgstr ""
+
+#: ../../include/functions_config.php:302
+#: ../../godmode/setup/setup_general.php:353
+msgid "Referer security"
+msgstr ""
+
+#: ../../include/functions_config.php:306
+#: ../../godmode/setup/setup_general.php:361
+msgid "Event storm protection"
+msgstr ""
+
+#: ../../include/functions_config.php:310
+#: ../../enterprise/meta/include/functions_meta.php:208
+#: ../../enterprise/meta/advanced/metasetup.setup.php:222
+#: ../../godmode/setup/setup_general.php:370
+msgid "Command Snapshot"
+msgstr ""
+
+#: ../../include/functions_config.php:314
+msgid "Use custom encoding"
+msgstr ""
+
+#: ../../include/functions_config.php:318
+#: ../../godmode/setup/setup_general.php:386
+msgid "Server logs directory"
+msgstr ""
+
+#: ../../include/functions_config.php:322
+#: ../../godmode/setup/setup_general.php:396
+msgid "Log size limit in system logs viewer extension"
+msgstr ""
+
+#: ../../include/functions_config.php:326
+#: ../../godmode/setup/setup_general.php:411
+msgid "Tutorial mode"
+msgstr ""
+
+#: ../../include/functions_config.php:330
+#: ../../godmode/setup/setup_general.php:425
+msgid "Allow create scheduled downtimes in the past"
+msgstr ""
+
+#: ../../include/functions_config.php:334
+msgid "Limit parameters bulk"
+msgstr ""
+
+#: ../../include/functions_config.php:338
+msgid "Identification_reminder"
+msgstr ""
+
+#: ../../include/functions_config.php:342
+msgid "Include_agents"
+msgstr ""
+
+#: ../../include/functions_config.php:346
+msgid "alias_as_name"
+msgstr ""
+
+#: ../../include/functions_config.php:350
+msgid "Console log enabled"
+msgstr ""
+
+#: ../../include/functions_config.php:354
+msgid "Audit log enabled"
+msgstr ""
+
+#: ../../include/functions_config.php:358
+msgid "Module Custom ID read only"
+msgstr ""
+
+#: ../../include/functions_config.php:362
+#: ../../godmode/setup/setup_general.php:459
+#: ../../godmode/agentes/agent_manager.php:301
+msgid "Unique IP"
+msgstr ""
+
+#: ../../include/functions_config.php:366
+#: ../../enterprise/meta/advanced/metasetup.mail.php:115
+msgid "Server SMTP"
+msgstr ""
+
+#: ../../include/functions_config.php:370
+#: ../../enterprise/meta/advanced/metasetup.mail.php:109
+msgid "From dir"
+msgstr ""
+
+#: ../../include/functions_config.php:374
+#: ../../enterprise/meta/advanced/metasetup.mail.php:112
+#: ../../godmode/setup/setup_general.php:538
+msgid "From name"
+msgstr ""
+
+#: ../../include/functions_config.php:378
+#: ../../enterprise/meta/advanced/metasetup.mail.php:118
+msgid "Port SMTP"
+msgstr ""
+
+#: ../../include/functions_config.php:382
+#: ../../godmode/setup/setup_general.php:568
+msgid "Encryption"
+msgstr ""
+
+#: ../../include/functions_config.php:386
+#: ../../enterprise/meta/advanced/metasetup.mail.php:121
+#: ../../godmode/setup/setup_general.php:579
+msgid "Email user"
+msgstr ""
+
+#: ../../include/functions_config.php:390
+#: ../../enterprise/meta/advanced/metasetup.mail.php:124
+#: ../../godmode/setup/setup_general.php:589
+msgid "Email password"
+msgstr ""
+
+#: ../../include/functions_config.php:397
+#: ../../enterprise/godmode/setup/setup.php:47
+msgid "Forward SNMP traps to agent (if exist)"
+msgstr ""
+
+#: ../../include/functions_config.php:401
+#: ../../enterprise/godmode/setup/setup.php:77
+msgid "Use Enterprise ACL System"
+msgstr ""
+
+#: ../../include/functions_config.php:405
+#: ../../enterprise/meta/include/functions_meta.php:68
+msgid "Activate Metaconsole"
+msgstr ""
+
+#: ../../include/functions_config.php:409
+#: ../../enterprise/meta/include/functions_meta.php:273
+#: ../../enterprise/meta/advanced/metasetup.setup.php:288
+#: ../../enterprise/godmode/setup/setup.php:90
+msgid "Size of collection"
+msgstr ""
+
+#: ../../include/functions_config.php:413
+#: ../../enterprise/godmode/setup/setup.php:104
+msgid "Events replication"
+msgstr ""
+
+#: ../../include/functions_config.php:418
+#: ../../enterprise/godmode/setup/setup.php:116
+msgid "Replication interval"
+msgstr ""
+
+#: ../../include/functions_config.php:422
+#: ../../enterprise/godmode/setup/setup.php:130
+msgid "Replication limit"
+msgstr ""
+
+#: ../../include/functions_config.php:426
+#: ../../enterprise/godmode/setup/setup.php:157
+msgid "Replication mode"
+msgstr ""
+
+#: ../../include/functions_config.php:430
+#: ../../enterprise/godmode/setup/setup.php:264
+msgid "Show events list in local console (read only)"
+msgstr ""
+
+#: ../../include/functions_config.php:435
+msgid "Replication DB engine"
+msgstr ""
+
+#: ../../include/functions_config.php:439
+msgid "Replication DB host"
+msgstr ""
+
+#: ../../include/functions_config.php:443
+msgid "Replication DB database"
+msgstr ""
+
+#: ../../include/functions_config.php:447
+msgid "Replication DB user"
+msgstr ""
+
+#: ../../include/functions_config.php:451
+msgid "Replication DB password"
+msgstr ""
+
+#: ../../include/functions_config.php:455
+msgid "Replication DB port"
+msgstr ""
+
+#: ../../include/functions_config.php:459
+msgid "Metaconsole agent cache"
+msgstr ""
+
+#: ../../include/functions_config.php:463
+#: ../../enterprise/godmode/setup/setup.php:366
+msgid "Activate Log Collector"
+msgstr ""
+
+#: ../../include/functions_config.php:467
+msgid "Enable Update Manager"
+msgstr ""
+
+#: ../../include/functions_config.php:471
+msgid "Ipam Ocuppied Manager Critical"
+msgstr ""
+
+#: ../../include/functions_config.php:475
+msgid "Ipam Ocuppied Manager Warning"
+msgstr ""
+
+#: ../../include/functions_config.php:479
+#: ../../enterprise/godmode/setup/setup.php:413
+msgid "SAP/R3 Plugin Licence"
+msgstr ""
+
+#: ../../include/functions_config.php:484
+#: ../../enterprise/godmode/setup/setup.php:282
+msgid "Inventory changes blacklist"
+msgstr ""
+
+#: ../../include/functions_config.php:492
+#: ../../enterprise/meta/include/functions_meta.php:344
+#: ../../enterprise/meta/advanced/metasetup.password.php:79
+#: ../../enterprise/godmode/setup/setup.php:467
+msgid "Enable password policy"
+msgstr ""
+
+#: ../../include/functions_config.php:496
+#: ../../enterprise/meta/include/functions_meta.php:354
+#: ../../enterprise/meta/advanced/metasetup.password.php:101
+#: ../../enterprise/godmode/setup/setup.php:476
+msgid "Min. size password"
+msgstr ""
+
+#: ../../include/functions_config.php:500
+#: ../../enterprise/meta/include/functions_meta.php:384
+#: ../../enterprise/meta/advanced/metasetup.password.php:105
+#: ../../enterprise/godmode/setup/setup.php:505
+msgid "Password expiration"
+msgstr ""
+
+#: ../../include/functions_config.php:504
+#: ../../enterprise/meta/include/functions_meta.php:394
+#: ../../enterprise/meta/advanced/metasetup.password.php:132
+#: ../../enterprise/godmode/setup/setup.php:516
+msgid "Force change password on first login"
+msgstr ""
+
+#: ../../include/functions_config.php:508
+#: ../../enterprise/meta/include/functions_meta.php:404
+#: ../../enterprise/meta/advanced/metasetup.password.php:109
+#: ../../enterprise/godmode/setup/setup.php:525
+msgid "User blocked if login fails"
+msgstr ""
+
+#: ../../include/functions_config.php:512
+#: ../../enterprise/meta/include/functions_meta.php:414
+#: ../../enterprise/meta/advanced/metasetup.password.php:113
+#: ../../enterprise/godmode/setup/setup.php:536
+msgid "Number of failed login attempts"
+msgstr ""
+
+#: ../../include/functions_config.php:516
+#: ../../enterprise/meta/include/functions_meta.php:364
+#: ../../enterprise/meta/advanced/metasetup.password.php:138
+#: ../../enterprise/godmode/setup/setup.php:487
+msgid "Password must have numbers"
+msgstr ""
+
+#: ../../include/functions_config.php:520
+#: ../../enterprise/meta/include/functions_meta.php:374
+#: ../../enterprise/meta/advanced/metasetup.password.php:142
+#: ../../enterprise/godmode/setup/setup.php:496
+msgid "Password must have symbols"
+msgstr ""
+
+#: ../../include/functions_config.php:524
+#: ../../enterprise/meta/include/functions_meta.php:447
+#: ../../enterprise/meta/advanced/metasetup.password.php:126
+#: ../../enterprise/godmode/setup/setup.php:547
+msgid "Apply password policy to admin users"
+msgstr ""
+
+#: ../../include/functions_config.php:528
+#: ../../enterprise/meta/include/functions_meta.php:424
+#: ../../enterprise/meta/advanced/metasetup.password.php:121
+#: ../../enterprise/godmode/setup/setup.php:556
+msgid "Enable password history"
+msgstr ""
+
+#: ../../include/functions_config.php:532
+#: ../../enterprise/meta/include/functions_meta.php:436
+#: ../../enterprise/meta/advanced/metasetup.password.php:117
+#: ../../enterprise/godmode/setup/setup.php:565
+msgid "Compare previous password"
+msgstr ""
+
+#: ../../include/functions_config.php:536
+#: ../../enterprise/meta/include/functions_meta.php:458
+#: ../../enterprise/meta/advanced/metasetup.password.php:146
+#: ../../enterprise/godmode/setup/setup.php:577
+msgid "Activate reset password"
+msgstr ""
+
+#: ../../include/functions_config.php:548
+#: ../../enterprise/meta/include/functions_meta.php:522
+#: ../../enterprise/meta/include/functions_meta.php:741
+#: ../../godmode/setup/setup_auth.php:69
+msgid "Autocreate remote users"
+msgstr ""
+
+#: ../../include/functions_config.php:552
+#: ../../enterprise/meta/include/functions_meta.php:532
+#: ../../enterprise/godmode/setup/setup_auth.php:55
+#: ../../enterprise/godmode/setup/setup_auth.php:303
+#: ../../enterprise/godmode/setup/setup_auth.php:364
+#: ../../enterprise/godmode/setup/setup_auth.php:1159
+msgid "Autocreate profile"
+msgstr ""
+
+#: ../../include/functions_config.php:556
+#: ../../enterprise/meta/include/functions_meta.php:542
+#: ../../enterprise/godmode/setup/setup_auth.php:61
+#: ../../enterprise/godmode/setup/setup_auth.php:309
+#: ../../enterprise/godmode/setup/setup_auth.php:370
+#: ../../enterprise/godmode/setup/setup_auth.php:1165
+msgid "Autocreate profile group"
+msgstr ""
+
+#: ../../include/functions_config.php:560
+#: ../../enterprise/meta/include/functions_meta.php:552
+#: ../../enterprise/godmode/setup/setup_auth.php:68
+#: ../../enterprise/godmode/setup/setup_auth.php:318
+#: ../../enterprise/godmode/setup/setup_auth.php:379
+#: ../../enterprise/godmode/setup/setup_auth.php:1174
+msgid "Autocreate profile tags"
+msgstr ""
+
+#: ../../include/functions_config.php:564
+#: ../../enterprise/meta/include/functions_meta.php:562
+#: ../../enterprise/godmode/setup/setup_auth.php:324
+msgid "Automatically assigned no hierarchy"
+msgstr ""
+
+#: ../../include/functions_config.php:568
+#: ../../enterprise/meta/include/functions_meta.php:572
+#: ../../enterprise/godmode/setup/setup_auth.php:569
+#: ../../enterprise/godmode/setup/setup_auth.php:1371
+msgid "Autocreate blacklist"
+msgstr ""
+
+#: ../../include/functions_config.php:572
+#: ../../enterprise/meta/include/functions_meta.php:635
+#: ../../enterprise/godmode/setup/setup_auth.php:577
+#: ../../enterprise/godmode/setup/setup_auth.php:1379
+msgid "Active directory server"
+msgstr ""
+
+#: ../../include/functions_config.php:576
+#: ../../enterprise/meta/include/functions_meta.php:645
+#: ../../enterprise/godmode/setup/setup_auth.php:583
+#: ../../enterprise/godmode/setup/setup_auth.php:1385
+msgid "Active directory port"
+msgstr ""
+
+#: ../../include/functions_config.php:580
+#: ../../include/functions_config.php:616
+#: ../../enterprise/meta/include/functions_meta.php:655
+#: ../../enterprise/meta/include/functions_meta.php:939
+#: ../../enterprise/godmode/setup/setup_auth.php:589
+#: ../../enterprise/godmode/setup/setup_auth.php:1391
+#: ../../godmode/setup/setup_auth.php:137
+msgid "Start TLS"
+msgstr ""
+
+#: ../../include/functions_config.php:584
+#: ../../enterprise/meta/include/functions_meta.php:665
+#: ../../enterprise/godmode/setup/setup_auth.php:353
+#: ../../enterprise/godmode/setup/setup_auth.php:1148
+msgid "Advanced Config AD"
+msgstr ""
+
+#: ../../include/functions_config.php:588
+#: ../../enterprise/meta/include/functions_meta.php:705
+#: ../../enterprise/godmode/setup/setup_auth.php:106
+msgid "Advanced Config LDAP"
+msgstr ""
+
+#: ../../include/functions_config.php:592
+#: ../../enterprise/meta/include/functions_meta.php:675
+#: ../../enterprise/godmode/setup/setup_auth.php:595
+#: ../../enterprise/godmode/setup/setup_auth.php:1397
+msgid "Domain"
+msgstr ""
+
+#: ../../include/functions_config.php:596
+#: ../../enterprise/meta/include/functions_meta.php:685
+#: ../../enterprise/godmode/setup/setup_auth.php:413
+#: ../../enterprise/godmode/setup/setup_auth.php:1208
+msgid "Advanced Permisions AD"
+msgstr ""
+
+#: ../../include/functions_config.php:600
+#: ../../enterprise/meta/include/functions_meta.php:695
+#: ../../enterprise/godmode/setup/setup_auth.php:129
+msgid "Advanced Permissions LDAP"
+msgstr ""
+
+#: ../../include/functions_config.php:604
+#: ../../enterprise/meta/include/functions_meta.php:909
+#: ../../godmode/setup/setup_auth.php:92
+msgid "LDAP server"
+msgstr ""
+
+#: ../../include/functions_config.php:608
+#: ../../enterprise/meta/include/functions_meta.php:919
+#: ../../godmode/setup/setup_auth.php:105
+msgid "LDAP port"
+msgstr ""
+
+#: ../../include/functions_config.php:612
+#: ../../enterprise/meta/include/functions_meta.php:929
+#: ../../godmode/setup/setup_auth.php:123
+msgid "LDAP version"
+msgstr ""
+
+#: ../../include/functions_config.php:620
+#: ../../enterprise/meta/include/functions_meta.php:949
+#: ../../godmode/setup/setup_auth.php:148
+msgid "Base DN"
+msgstr ""
+
+#: ../../include/functions_config.php:624
+#: ../../enterprise/meta/include/functions_meta.php:959
+#: ../../godmode/setup/setup_auth.php:161
+msgid "Login attribute"
+msgstr ""
+
+#: ../../include/functions_config.php:628
+#: ../../enterprise/meta/include/functions_meta.php:969
+#: ../../godmode/setup/setup_auth.php:174
+msgid "Admin LDAP login"
+msgstr ""
+
+#: ../../include/functions_config.php:632
+#: ../../enterprise/meta/include/functions_meta.php:979
+#: ../../godmode/setup/setup_auth.php:187
+msgid "Admin LDAP password"
+msgstr ""
+
+#: ../../include/functions_config.php:636
+#: ../../enterprise/meta/include/functions_meta.php:999
+#: ../../godmode/setup/setup_auth.php:222
+msgid "Secondary LDAP server"
+msgstr ""
+
+#: ../../include/functions_config.php:640
+#: ../../enterprise/meta/include/functions_meta.php:1009
+#: ../../godmode/setup/setup_auth.php:235
+msgid "Secondary LDAP port"
+msgstr ""
+
+#: ../../include/functions_config.php:644
+#: ../../enterprise/meta/include/functions_meta.php:1019
+#: ../../godmode/setup/setup_auth.php:253
+msgid "Secondary LDAP version"
+msgstr ""
+
+#: ../../include/functions_config.php:648
+msgid "Secontary start TLS"
+msgstr ""
+
+#: ../../include/functions_config.php:652
+#: ../../enterprise/meta/include/functions_meta.php:1039
+msgid "Secondary base DN"
+msgstr ""
+
+#: ../../include/functions_config.php:656
+#: ../../enterprise/meta/include/functions_meta.php:1049
+msgid "Secondary login attribute"
+msgstr ""
+
+#: ../../include/functions_config.php:660
+#: ../../enterprise/meta/include/functions_meta.php:1059
+#: ../../godmode/setup/setup_auth.php:304
+msgid "Admin secondary LDAP login"
+msgstr ""
+
+#: ../../include/functions_config.php:664
+#: ../../enterprise/meta/include/functions_meta.php:1069
+#: ../../godmode/setup/setup_auth.php:317
+msgid "Admin secondary LDAP password"
+msgstr ""
+
+#: ../../include/functions_config.php:668
+#: ../../enterprise/meta/include/functions_meta.php:512
+#: ../../godmode/setup/setup_auth.php:56
+msgid "Fallback to local authentication"
+msgstr ""
+
+#: ../../include/functions_config.php:672
+#: ../../enterprise/meta/include/functions_meta.php:1102
+#: ../../enterprise/godmode/setup/setup_auth.php:101
+msgid "Login user attribute"
+msgstr ""
+
+#: ../../include/functions_config.php:676
+#: ../../enterprise/meta/include/functions_meta.php:1123
+#: ../../enterprise/godmode/setup/setup_auth.php:94
+msgid "LDAP function"
+msgstr ""
+
+#: ../../include/functions_config.php:681
+#: ../../include/functions_config.php:797
+#: ../../enterprise/meta/include/functions_meta.php:618
+#: ../../enterprise/meta/include/functions_meta.php:1082
+#: ../../enterprise/godmode/setup/setup_auth.php:82
+#: ../../enterprise/godmode/setup/setup_auth.php:348
+msgid "Save Password"
+msgstr ""
+
+#: ../../include/functions_config.php:688
+#: ../../enterprise/meta/include/functions_meta.php:1112
+msgid "Save profile"
+msgstr ""
+
+#: ../../include/functions_config.php:692
+#: ../../enterprise/meta/include/functions_meta.php:990
+msgid "LDAP secondary enabled"
+msgstr ""
+
+#: ../../include/functions_config.php:696
+#: ../../enterprise/godmode/setup/setup_auth.php:1021
+msgid "MySQL host"
+msgstr ""
+
+#: ../../include/functions_config.php:700
+#: ../../include/functions_config.php:720
+#: ../../enterprise/meta/include/functions_meta.php:1145
+#: ../../enterprise/meta/include/functions_meta.php:1199
+#: ../../enterprise/meta/include/functions_meta.php:1253
+#: ../../enterprise/godmode/setup/setup_auth.php:1027
+#: ../../enterprise/godmode/setup/setup_auth.php:1059
+msgid "MySQL port"
+msgstr ""
+
+#: ../../include/functions_config.php:704
+#: ../../include/functions_config.php:724
+#: ../../include/functions_config.php:1551
+#: ../../enterprise/meta/include/functions_meta.php:1155
+#: ../../enterprise/meta/include/functions_meta.php:1209
+#: ../../enterprise/meta/include/functions_meta.php:1263
+#: ../../enterprise/godmode/setup/setup_history.php:189
+#: ../../enterprise/godmode/setup/setup_auth.php:1033
+#: ../../enterprise/godmode/setup/setup_auth.php:1065
+msgid "Database name"
+msgstr ""
+
+#: ../../include/functions_config.php:716
+#: ../../enterprise/meta/include/functions_meta.php:1243
+#: ../../enterprise/godmode/setup/setup_auth.php:1053
+msgid "Integria host"
+msgstr ""
+
+#: ../../include/functions_config.php:736
+#: ../../enterprise/meta/include/functions_meta.php:754
+msgid "Saml path"
+msgstr ""
+
+#: ../../include/functions_config.php:740
+#: ../../enterprise/meta/include/functions_meta.php:767
+msgid "Saml source"
+msgstr ""
+
+#: ../../include/functions_config.php:744
+#: ../../enterprise/meta/include/functions_meta.php:780
+msgid "Saml user id parameter"
+msgstr ""
+
+#: ../../include/functions_config.php:748
+#: ../../enterprise/meta/include/functions_meta.php:793
+msgid "Saml mail parameter"
+msgstr ""
+
+#: ../../include/functions_config.php:752
+#: ../../enterprise/meta/include/functions_meta.php:806
+msgid "Saml group name parameter"
+msgstr ""
+
+#: ../../include/functions_config.php:756
+#: ../../enterprise/meta/include/functions_meta.php:819
+msgid "Saml attr type parameter"
+msgstr ""
+
+#: ../../include/functions_config.php:760
+#: ../../enterprise/meta/include/functions_meta.php:832
+msgid "Saml profiles and tags parameter"
+msgstr ""
+
+#: ../../include/functions_config.php:764
+msgid "Saml profile parameters"
+msgstr ""
+
+#: ../../include/functions_config.php:768
+#: ../../enterprise/meta/include/functions_meta.php:871
+msgid "Saml tag parameter"
+msgstr ""
+
+#: ../../include/functions_config.php:772
+#: ../../enterprise/meta/include/functions_meta.php:845
+msgid "Saml profile and tag separator"
+msgstr ""
+
+#: ../../include/functions_config.php:780
+msgid "2FA all users"
+msgstr ""
+
+#: ../../include/functions_config.php:784
+#: ../../include/functions_config.php:790
+#: ../../enterprise/meta/include/functions_meta.php:604
+#: ../../enterprise/meta/include/functions_meta.php:897
+msgid "Session timeout"
+msgstr ""
+
+#: ../../include/functions_config.php:787
+msgid "Session timeout forced to 90 minutes"
+msgstr ""
+
+#: ../../include/functions_config.php:813
+#: ../../enterprise/meta/include/functions_meta.php:1919
+#: ../../enterprise/meta/advanced/metasetup.performance.php:79
+#: ../../godmode/setup/performance.php:260
+#: ../../godmode/setup/performance.php:447
+msgid "Max. days before delete events"
+msgstr ""
+
+#: ../../include/functions_config.php:818
+#: ../../godmode/setup/performance.php:271
+msgid "Max. days before delete traps"
+msgstr ""
+
+#: ../../include/functions_config.php:822
+#: ../../godmode/setup/performance.php:291
+#: ../../godmode/setup/performance.php:457
+msgid "Max. days before delete string data"
+msgstr ""
+
+#: ../../include/functions_config.php:826
+#: ../../enterprise/meta/include/functions_meta.php:1939
+#: ../../enterprise/meta/advanced/metasetup.performance.php:88
+#: ../../godmode/setup/performance.php:281
+msgid "Max. days before delete audit events"
+msgstr ""
+
+#: ../../include/functions_config.php:830
+#: ../../godmode/setup/performance.php:301
+msgid "Max. days before delete GIS data"
+msgstr ""
+
+#: ../../include/functions_config.php:834
+#: ../../godmode/setup/performance.php:311
+#: ../../godmode/setup/performance.php:417
+msgid "Max. days before purge"
+msgstr ""
+
+#: ../../include/functions_config.php:838
+#: ../../godmode/setup/performance.php:331
+msgid "Max. days before delete unknown modules"
+msgstr ""
+
+#: ../../include/functions_config.php:842
+#: ../../godmode/setup/performance.php:321
+#: ../../godmode/setup/performance.php:427
+msgid "Max. days before compact data"
+msgstr ""
+
+#: ../../include/functions_config.php:846
+msgid "Max. days before autodisable deletion"
+msgstr ""
+
+#: ../../include/functions_config.php:850
+msgid "Item limit for realtime reports)"
+msgstr ""
+
+#: ../../include/functions_config.php:854
+#: ../../godmode/setup/performance.php:437
+#: ../../godmode/setup/performance.php:518
+msgid "Compact interpolation in hours (1 Fine-20 bad)"
+msgstr ""
+
+#: ../../include/functions_config.php:858
+#: ../../enterprise/meta/include/functions_meta.php:1949
+#: ../../enterprise/meta/advanced/metasetup.performance.php:91
+#: ../../godmode/setup/performance.php:538
+msgid "Default hours for event view"
+msgstr ""
+
+#: ../../include/functions_config.php:862
+#: ../../godmode/setup/performance.php:548
+msgid "Use realtime statistics"
+msgstr ""
+
+#: ../../include/functions_config.php:866
+#: ../../godmode/setup/performance.php:556
+msgid "Batch statistics period (secs)"
+msgstr ""
+
+#: ../../include/functions_config.php:870
+#: ../../enterprise/meta/include/functions_meta.php:1959
+#: ../../godmode/setup/performance.php:566
+msgid "Use agent access graph"
+msgstr ""
+
+#: ../../include/functions_config.php:874
+#: ../../godmode/setup/performance.php:569
+msgid "Max. recommended number of files in attachment directory"
+msgstr ""
+
+#: ../../include/functions_config.php:878
+#: ../../godmode/setup/performance.php:579
+msgid "Delete not init modules"
+msgstr ""
+
+#: ../../include/functions_config.php:882
+msgid "Big Operatiopn Step to purge old data"
+msgstr ""
+
+#: ../../include/functions_config.php:886
+#: ../../godmode/setup/performance.php:592
+msgid "Small Operation Step to purge old data"
+msgstr ""
+
+#: ../../include/functions_config.php:890
+#: ../../godmode/setup/performance.php:351
+msgid "Retention period of past special days"
+msgstr ""
+
+#: ../../include/functions_config.php:894
+#: ../../enterprise/meta/include/functions_meta.php:2002
+#: ../../enterprise/meta/advanced/metasetup.performance.php:127
+#: ../../godmode/setup/performance.php:361
+msgid "Max. macro data fields"
+msgstr ""
+
+#: ../../include/functions_config.php:899
+#: ../../godmode/setup/performance.php:375
+msgid "Max. days before delete inventory data"
+msgstr ""
+
+#: ../../include/functions_config.php:904
+#: ../../godmode/setup/performance.php:475
+msgid "Max. days before delete old messages"
+msgstr ""
+
+#: ../../include/functions_config.php:908
+#: ../../godmode/setup/performance.php:488
+msgid "Max. days before delete old network matrix data"
+msgstr ""
+
+#: ../../include/functions_config.php:912
+#: ../../godmode/setup/performance.php:602
+msgid "Graph container - Max. Items"
+msgstr ""
+
+#: ../../include/functions_config.php:916
+msgid "Max execution event response"
+msgstr ""
+
+#: ../../include/functions_config.php:920
+#: ../../enterprise/meta/advanced/metasetup.performance.php:118
+#: ../../godmode/setup/performance.php:622
+msgid "Row limit in csv log"
+msgstr ""
+
+#: ../../include/functions_config.php:924
+msgid "SNMP walk binary path"
+msgstr ""
+
+#: ../../include/functions_config.php:928
+msgid "SNMP walk binary path (fallback for v1)"
+msgstr ""
+
+#: ../../include/functions_config.php:947
+#: ../../enterprise/meta/include/functions_meta.php:2022
+msgid "PhantomJS cache interval"
+msgstr ""
+
+#: ../../include/functions_config.php:954
+#: ../../enterprise/meta/include/functions_meta.php:1298
+#: ../../enterprise/meta/advanced/metasetup.visual.php:105
+#: ../../godmode/setup/setup_visuals.php:1256
+msgid "Date format string"
+msgstr ""
+
+#: ../../include/functions_config.php:958
+#: ../../enterprise/meta/include/functions_meta.php:1308
+msgid "Timestamp or time comparation"
+msgstr ""
+
+#: ../../include/functions_config.php:962
+#: ../../enterprise/meta/advanced/metasetup.visual.php:166
+#: ../../godmode/setup/setup_visuals.php:698
+msgid "Graph color #1"
+msgstr ""
+
+#: ../../include/functions_config.php:966
+#: ../../enterprise/meta/advanced/metasetup.visual.php:176
+#: ../../godmode/setup/setup_visuals.php:709
+msgid "Graph color #2"
+msgstr ""
+
+#: ../../include/functions_config.php:970
+#: ../../enterprise/meta/advanced/metasetup.visual.php:186
+#: ../../godmode/setup/setup_visuals.php:720
+msgid "Graph color #3"
+msgstr ""
+
+#: ../../include/functions_config.php:974
+#: ../../godmode/setup/setup_visuals.php:731
+msgid "Graph color #4"
+msgstr ""
+
+#: ../../include/functions_config.php:978
+#: ../../godmode/setup/setup_visuals.php:742
+msgid "Graph color #5"
+msgstr ""
+
+#: ../../include/functions_config.php:982
+#: ../../godmode/setup/setup_visuals.php:753
+msgid "Graph color #6"
+msgstr ""
+
+#: ../../include/functions_config.php:986
+#: ../../godmode/setup/setup_visuals.php:764
+msgid "Graph color #7"
+msgstr ""
+
+#: ../../include/functions_config.php:990
+#: ../../godmode/setup/setup_visuals.php:775
+msgid "Graph color #8"
+msgstr ""
+
+#: ../../include/functions_config.php:994
+#: ../../godmode/setup/setup_visuals.php:786
+msgid "Graph color #9"
+msgstr ""
+
+#: ../../include/functions_config.php:998
+#: ../../godmode/setup/setup_visuals.php:797
+msgid "Graph color #10"
+msgstr ""
+
+#: ../../include/functions_config.php:1002
+#: ../../enterprise/meta/include/functions_meta.php:1433
+#: ../../enterprise/meta/advanced/metasetup.visual.php:232
+#: ../../godmode/setup/setup_visuals.php:808
+msgid "Value to interface graphics"
+msgstr ""
+
+#: ../../include/functions_config.php:1006
+#: ../../enterprise/meta/include/functions_meta.php:1373
+msgid "Data precision for reports"
+msgstr ""
+
+#: ../../include/functions_config.php:1015
+#: ../../godmode/setup/setup_visuals.php:137
+msgid "Style template"
+msgstr ""
+
+#: ../../include/functions_config.php:1023
+#: ../../enterprise/meta/include/functions_meta.php:1456
+#: ../../enterprise/meta/advanced/metasetup.visual.php:265
+#: ../../godmode/setup/setup_visuals.php:883
+msgid "Use round corners"
+msgstr ""
+
+#: ../../include/functions_config.php:1027
+#: ../../enterprise/meta/include/functions_meta.php:1467
+#: ../../enterprise/meta/advanced/metasetup.visual.php:273
+#: ../../godmode/setup/setup_visuals.php:892
+msgid "Chart fit to content"
+msgstr ""
+
+#: ../../include/functions_config.php:1031
+msgid "Show QR code header"
+msgstr ""
+
+#: ../../include/functions_config.php:1035
+#: ../../godmode/setup/setup_visuals.php:150
+msgid "Status icon set"
+msgstr ""
+
+#: ../../include/functions_config.php:1039
+#: ../../enterprise/meta/include/functions_meta.php:1777
+msgid "Font path"
+msgstr ""
+
+#: ../../include/functions_config.php:1043
+#: ../../godmode/reporting/visual_console_builder.wizard.php:228
+msgid "Font size"
+msgstr ""
+
+#: ../../include/functions_config.php:1047
+#: ../../enterprise/meta/include/functions_meta.php:1598
+#: ../../enterprise/meta/advanced/metasetup.visual.php:503
+#: ../../godmode/setup/setup_visuals.php:190
+msgid "Custom favicon"
+msgstr ""
+
+#: ../../include/functions_config.php:1051
+#: ../../include/functions_config.php:1445
+#: ../../enterprise/meta/include/functions_meta.php:1568
+#: ../../enterprise/meta/include/functions_meta.php:1819
+#: ../../enterprise/meta/advanced/metasetup.visual.php:1053
+#: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:127
+#: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:130
+#: ../../godmode/setup/setup_visuals.php:1149
+msgid "Custom logo"
+msgstr ""
+
+#: ../../include/functions_config.php:1055
+#: ../../enterprise/meta/include/functions_meta.php:1578
+msgid "Custom logo collapsed"
+msgstr ""
+
+#: ../../include/functions_config.php:1059
+msgid "Custom logo white background"
+msgstr ""
+
+#: ../../include/functions_config.php:1063
+#: ../../enterprise/meta/include/functions_meta.php:1608
+msgid "Custom logo login"
+msgstr ""
+
+#: ../../include/functions_config.php:1067
+#: ../../enterprise/meta/include/functions_meta.php:1618
+msgid "Custom splash login"
+msgstr ""
+
+#: ../../include/functions_config.php:1071
+#: ../../godmode/setup/setup_visuals.php:393
+msgid "Custom documentation logo"
+msgstr ""
+
+#: ../../include/functions_config.php:1075
+#: ../../godmode/setup/setup_visuals.php:413
+msgid "Custom support logo"
+msgstr ""
+
+#: ../../include/functions_config.php:1079
+#: ../../include/functions_config.php:1083
+#: ../../godmode/setup/setup_visuals.php:432
+msgid "Custom networkmap center logo"
+msgstr ""
+
+#: ../../include/functions_config.php:1087
+msgid "Custom title header"
+msgstr ""
+
+#: ../../include/functions_config.php:1091
+msgid "Custom subtitle header"
+msgstr ""
+
+#: ../../include/functions_config.php:1095
+#: ../../enterprise/meta/include/functions_meta.php:1668
+msgid "Meta custom title header"
+msgstr ""
+
+#: ../../include/functions_config.php:1099
+#: ../../enterprise/meta/include/functions_meta.php:1678
+msgid "Meta custom subtitle header"
+msgstr ""
+
+#: ../../include/functions_config.php:1103
+#: ../../enterprise/meta/include/functions_meta.php:1648
+msgid "Custom title1 login"
+msgstr ""
+
+#: ../../include/functions_config.php:1107
+#: ../../enterprise/meta/include/functions_meta.php:1658
+msgid "Custom title2 login"
+msgstr ""
+
+#: ../../include/functions_config.php:1111
+#: ../../godmode/setup/setup_visuals.php:176
+msgid "Login background"
+msgstr ""
+
+#: ../../include/functions_config.php:1115
+#: ../../include/functions_config.php:1155
+msgid "Custom Docs url"
+msgstr ""
+
+#: ../../include/functions_config.php:1119
+#: ../../include/functions_config.php:1159
+msgid "Custom support url"
+msgstr ""
+
+#: ../../include/functions_config.php:1123
+#: ../../enterprise/meta/include/functions_meta.php:1628
+#: ../../enterprise/meta/advanced/metasetup.visual.php:724
+#: ../../enterprise/meta/advanced/metasetup.visual.php:795
+#: ../../godmode/setup/setup_visuals.php:507
+msgid "Product name"
+msgstr ""
+
+#: ../../include/functions_config.php:1127
+#: ../../enterprise/meta/include/functions_meta.php:1638
+#: ../../enterprise/meta/advanced/metasetup.visual.php:735
+#: ../../enterprise/meta/advanced/metasetup.visual.php:805
+#: ../../godmode/setup/setup_visuals.php:513
+msgid "Copyright notice"
+msgstr ""
+
+#: ../../include/functions_config.php:1131
+msgid "Custom logo metaconsole (white background)"
+msgstr ""
+
+#: ../../include/functions_config.php:1135
+msgid "Custom logo login metaconsole"
+msgstr ""
+
+#: ../../include/functions_config.php:1139
+msgid "Custom splash login metaconsole"
+msgstr ""
+
+#: ../../include/functions_config.php:1143
+msgid "Custom title1 login metaconsole"
+msgstr ""
+
+#: ../../include/functions_config.php:1147
+msgid "Custom title2 login metaconsole"
+msgstr ""
+
+#: ../../include/functions_config.php:1151
+msgid "Login background metaconsole"
+msgstr ""
+
+#: ../../include/functions_config.php:1163
+#: ../../enterprise/meta/include/functions_meta.php:1884
+msgid "Use the legacy Visual Console"
+msgstr ""
+
+#: ../../include/functions_config.php:1167
+#: ../../enterprise/meta/include/functions_meta.php:1895
+msgid "Default expiration of the Visual Console item's cache"
+msgstr ""
+
+#: ../../include/functions_config.php:1171
+#: ../../enterprise/meta/include/functions_meta.php:1906
+#: ../../enterprise/meta/advanced/metasetup.visual.php:874
+#: ../../godmode/setup/setup_visuals.php:1055
+msgid "Default interval for refresh on Visual Console"
+msgstr ""
+
+#: ../../include/functions_config.php:1175
+msgid "Default line favourite_view for the Visual Console"
+msgstr ""
+
+#: ../../include/functions_config.php:1179
+msgid "Default line menu items for the Visual Console"
+msgstr ""
+
+#: ../../include/functions_config.php:1183
+#: ../../godmode/setup/setup_visuals.php:1069
+msgid "Default line thickness for the Visual Console"
+msgstr ""
+
+#: ../../include/functions_config.php:1187
+msgid "Default line menu items for the Services"
+msgstr ""
+
+#: ../../include/functions_config.php:1191
+#: ../../include/functions_config.php:1195
+#: ../../godmode/setup/setup_visuals.php:653
+msgid "Agent size text"
+msgstr ""
+
+#: ../../include/functions_config.php:1199
+#: ../../godmode/setup/setup_visuals.php:658
+msgid "Module size text"
+msgstr ""
+
+#: ../../include/functions_config.php:1203
+#: ../../include/functions_config.php:1207
+#: ../../godmode/setup/setup_visuals.php:663
+msgid "Description size text"
+msgstr ""
+
+#: ../../include/functions_config.php:1211
+#: ../../godmode/setup/setup_visuals.php:667
+msgid "Item title size text"
+msgstr ""
+
+#: ../../include/functions_config.php:1215
+#: ../../godmode/setup/setup_visuals.php:583
+msgid "GIS Labels"
+msgstr ""
+
+#: ../../include/functions_config.php:1219
+msgid "Show units in values report"
+msgstr ""
+
+#: ../../include/functions_config.php:1223
+#: ../../godmode/setup/setup_visuals.php:598
+msgid "Default icon in GIS"
+msgstr ""
+
+#: ../../include/functions_config.php:1227
+msgid "Autohidden menu"
+msgstr ""
+
+#: ../../include/functions_config.php:1231
+msgid "visual_animation"
+msgstr ""
+
+#: ../../include/functions_config.php:1235
+#: ../../enterprise/meta/include/functions_meta.php:1478
+#: ../../enterprise/meta/advanced/metasetup.visual.php:281
+msgid "Disable help"
+msgstr ""
+
+#: ../../include/functions_config.php:1239
+msgid "Fixed graph"
+msgstr ""
+
+#: ../../include/functions_config.php:1243
+#: ../../godmode/setup/setup_visuals.php:544
+msgid "Fixed header"
+msgstr ""
+
+#: ../../include/functions_config.php:1247
+msgid "Paginate module"
+msgstr ""
+
+#: ../../include/functions_config.php:1255
+#: ../../godmode/setup/setup_visuals.php:1236
+msgid "Networkmap max width"
+msgstr ""
+
+#: ../../include/functions_config.php:1259
+msgid "Shortened module graph data"
+msgstr ""
+
+#: ../../include/functions_config.php:1263
+#: ../../enterprise/meta/advanced/metasetup.visual.php:456
+msgid "Show the group name instead the group icon."
+msgstr ""
+
+#: ../../include/functions_config.php:1267
+#: ../../godmode/setup/setup_visuals.php:857
+msgid "Default line thickness for the Custom Graph."
+msgstr ""
+
+#: ../../include/functions_config.php:1271
+msgid "Default type of module charts."
+msgstr ""
+
+#: ../../include/functions_config.php:1275
+msgid "Default Number of elements in Custom Graph."
+msgstr ""
+
+#: ../../include/functions_config.php:1279
+msgid "Default type of interface charts."
+msgstr ""
+
+#: ../../include/functions_config.php:1283
+#: ../../enterprise/meta/include/functions_meta.php:1859
+#: ../../enterprise/meta/advanced/metasetup.visual.php:466
+#: ../../godmode/setup/setup_visuals.php:88
+msgid "Display data of proc modules in other format"
+msgstr ""
+
+#: ../../include/functions_config.php:1287
+#: ../../enterprise/meta/include/functions_meta.php:1869
+#: ../../enterprise/meta/advanced/metasetup.visual.php:474
+#: ../../godmode/setup/setup_visuals.php:97
+msgid "Display text proc modules have state is ok"
+msgstr ""
+
+#: ../../include/functions_config.php:1290
+#: ../../include/functions_config.php:3182
+#: ../../include/functions_reporting_html.php:662
+#: ../../enterprise/include/functions_reporting_csv.php:1541
+#: ../../enterprise/include/functions_reporting_csv.php:1587
+#: ../../enterprise/include/functions_reporting_csv.php:1905
+#: ../../enterprise/include/functions_reporting.php:1875
+#: ../../enterprise/include/functions_reporting.php:1916
+#: ../../enterprise/include/functions_reporting.php:2919
+#: ../../enterprise/include/functions_reporting.php:2978
+#: ../../enterprise/include/functions_reporting.php:3907
+#: ../../enterprise/include/functions_reporting.php:3966
+#: ../../enterprise/include/functions_reporting.php:6161
+msgid "Fail"
+msgstr ""
+
+#: ../../include/functions_config.php:1291
+#: ../../enterprise/meta/include/functions_meta.php:1879
+#: ../../enterprise/meta/advanced/metasetup.visual.php:484
+#: ../../godmode/setup/setup_visuals.php:101
+msgid "Display text when proc modules have state critical"
+msgstr ""
+
+#: ../../include/functions_config.php:1295
+msgid "Display lateral menus with left click"
+msgstr ""
+
+#: ../../include/functions_config.php:1300
+#: ../../godmode/setup/setup_visuals.php:116
+msgid "Service label font size"
+msgstr ""
+
+#: ../../include/functions_config.php:1304
+msgid "Service item padding size"
+msgstr ""
+
+#: ../../include/functions_config.php:1309
+msgid "Default percentil"
+msgstr ""
+
+#: ../../include/functions_config.php:1313
+msgid "Default full scale (TIP)"
+msgstr ""
+
+#: ../../include/functions_config.php:1317
+msgid "Default soft graphs"
+msgstr ""
+
+#: ../../include/functions_config.php:1321
+msgid "Default zoom graphs"
+msgstr ""
+
+#: ../../include/functions_config.php:1330
+msgid "Default height of the chart image"
+msgstr ""
+
+#: ../../include/functions_config.php:1352
+msgid "Add the custom post process"
+msgstr ""
+
+#: ../../include/functions_config.php:1360
+msgid "Delete the custom post process"
+msgstr ""
+
+#: ../../include/functions_config.php:1402
+#: ../../enterprise/meta/include/functions_meta.php:1767
+#: ../../enterprise/meta/advanced/metasetup.visual.php:420
+#: ../../godmode/setup/setup_visuals.php:1357
+msgid "Delete interval"
+msgstr ""
+
+#: ../../include/functions_config.php:1414
+msgid "Add custom module unit"
+msgstr ""
+
+#: ../../include/functions_config.php:1420
+msgid "Delete custom module unit"
+msgstr ""
+
+#: ../../include/functions_config.php:1425
+#: ../../enterprise/meta/include/functions_meta.php:1799
+msgid "Custom report info"
+msgstr ""
+
+#: ../../include/functions_config.php:1429
+#: ../../enterprise/meta/include/functions_meta.php:1383
+#: ../../enterprise/meta/advanced/metasetup.visual.php:966
+#: ../../godmode/setup/setup_visuals.php:1121
+msgid "HTML font size for SLA (em)"
+msgstr ""
+
+#: ../../include/functions_config.php:1433
+#: ../../enterprise/meta/include/functions_meta.php:1393
+#: ../../enterprise/meta/advanced/metasetup.visual.php:963
+#: ../../godmode/setup/setup_visuals.php:1116
+msgid "PDF font size (px)"
+msgstr ""
+
+#: ../../include/functions_config.php:1437
+#: ../../include/functions_config.php:1441
+#: ../../include/functions_config.php:1445
+#: ../../include/functions_config.php:1449
+#: ../../include/functions_config.php:1453
+#: ../../include/functions_config.php:1457
+#: ../../enterprise/meta/include/functions_meta.php:1793
+#: ../../enterprise/meta/include/functions_meta.php:1809
+#: ../../enterprise/meta/include/functions_meta.php:1819
+#: ../../enterprise/meta/include/functions_meta.php:1829
+#: ../../enterprise/meta/include/functions_meta.php:1839
+#: ../../enterprise/meta/include/functions_meta.php:1849
+#: ../../enterprise/meta/advanced/metasetup.visual.php:1053
+#: ../../enterprise/meta/advanced/metasetup.visual.php:1066
+#: ../../enterprise/meta/advanced/metasetup.visual.php:1077
+#: ../../enterprise/meta/advanced/metasetup.visual.php:1087
+#: ../../godmode/setup/setup_visuals.php:1149
+#: ../../godmode/setup/setup_visuals.php:1164
+#: ../../godmode/setup/setup_visuals.php:1172
+#: ../../godmode/setup/setup_visuals.php:1192
+#: ../../godmode/setup/setup_visuals.php:1208
+msgid "Custom report front"
+msgstr ""
+
+#: ../../include/functions_config.php:1441
+#: ../../enterprise/meta/include/functions_meta.php:1809
+#: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:116
+#: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:127
+msgid "Font family"
+msgstr ""
+
+#: ../../include/functions_config.php:1449
+#: ../../enterprise/meta/include/functions_meta.php:1829
+#: ../../enterprise/meta/advanced/metasetup.visual.php:1077
+#: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:153
+#: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:142
+#: ../../godmode/setup/setup_visuals.php:1172
+msgid "Header"
+msgstr ""
+
+#: ../../include/functions_config.php:1453
+#: ../../enterprise/meta/include/functions_meta.php:1839
+#: ../../enterprise/meta/advanced/metasetup.visual.php:1087
+#: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:163
+#: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:152
+#: ../../godmode/setup/setup_visuals.php:1192
+msgid "First page"
+msgstr ""
+
+#: ../../include/functions_config.php:1457
+#: ../../enterprise/meta/include/functions_meta.php:1849
+#: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:173
+#: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:162
+#: ../../godmode/setup/setup_visuals.php:1208
+msgid "Footer"
+msgstr ""
+
+#: ../../include/functions_config.php:1461
+#: ../../enterprise/meta/include/functions_meta.php:1413
+#: ../../enterprise/meta/advanced/metasetup.visual.php:988
+#: ../../godmode/setup/setup_visuals.php:1400
+msgid "CSV divider"
+msgstr ""
+
+#: ../../include/functions_config.php:1465
+#: ../../enterprise/meta/include/functions_meta.php:1423
+#: ../../enterprise/meta/advanced/metasetup.visual.php:1028
+#: ../../godmode/setup/setup_visuals.php:1446
+msgid "CSV decimal separator"
+msgstr ""
+
+#: ../../include/functions_config.php:1469
+#: ../../enterprise/meta/include/functions_meta.php:1787
+msgid "Use data multiplier"
+msgstr ""
+
+#: ../../include/functions_config.php:1475
+#: ../../godmode/setup/setup_netflow.php:47
+msgid "Data storage path"
+msgstr ""
+
+#: ../../include/functions_config.php:1479
+#: ../../godmode/setup/setup_netflow.php:50
+msgid "Daemon interval"
+msgstr ""
+
+#: ../../include/functions_config.php:1483
+#: ../../godmode/setup/setup_netflow.php:53
+msgid "Daemon binary path"
+msgstr ""
+
+#: ../../include/functions_config.php:1487
+#: ../../godmode/setup/setup_netflow.php:56
+msgid "Nfdump binary path"
+msgstr ""
+
+#: ../../include/functions_config.php:1491
+#: ../../godmode/setup/setup_netflow.php:59
+msgid "Nfexpire binary path"
+msgstr ""
+
+#: ../../include/functions_config.php:1495
+#: ../../godmode/setup/setup_netflow.php:62
+msgid "Maximum chart resolution"
+msgstr ""
+
+#: ../../include/functions_config.php:1499
+#: ../../enterprise/meta/advanced/metasetup.setup.php:218
+#: ../../godmode/setup/setup_netflow.php:65
+msgid "Disable custom live view filters"
+msgstr ""
+
+#: ../../include/functions_config.php:1503
+#: ../../godmode/setup/setup_netflow.php:67
+msgid "Netflow max lifetime"
+msgstr ""
+
+#: ../../include/functions_config.php:1507
+#: ../../godmode/setup/setup_netflow.php:70
+msgid "Name resolution for IP address"
+msgstr ""
+
+#: ../../include/functions_config.php:1513
+msgid "IP ElasticSearch server"
+msgstr ""
+
+#: ../../include/functions_config.php:1517
+msgid "Port ElasticSearch server"
+msgstr ""
+
+#: ../../include/functions_config.php:1521
+#: ../../enterprise/meta/include/functions_meta.php:490
+#: ../../enterprise/godmode/setup/setup_log_collector.php:41
+msgid "Number of logs viewed"
+msgstr ""
+
+#: ../../include/functions_config.php:1525
+#: ../../enterprise/godmode/setup/setup_log_collector.php:44
+msgid "Days to purge old information"
+msgstr ""
+
+#: ../../include/functions_config.php:1538
+msgid "Active and historical database cannot be the same."
+msgstr ""
+
+#: ../../include/functions_config.php:1543
+#: ../../enterprise/godmode/setup/setup_history.php:159
+msgid "Host"
+msgstr ""
+
+#: ../../include/functions_config.php:1556
+msgid "Enable history database"
+msgstr ""
+
+#: ../../include/functions_config.php:1560
+msgid "Enable history event"
+msgstr ""
+
+#: ../../include/functions_config.php:1564
+#: ../../enterprise/godmode/setup/setup_history.php:204
+msgid "Database user"
+msgstr ""
+
+#: ../../include/functions_config.php:1568
+#: ../../enterprise/godmode/setup/setup_history.php:219
+msgid "Database password"
+msgstr ""
+
+#: ../../include/functions_config.php:1576
+#: ../../enterprise/tools/ipam/ipam_editor.php:327
+#: ../../enterprise/include/ajax/ipam.ajax.php:521
+#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:104
+#: ../../godmode/alerts/alert_templates.php:73
+msgid "Days"
+msgstr ""
+
+#: ../../include/functions_config.php:1584
+msgid "Event Days"
+msgstr ""
+
+#: ../../include/functions_config.php:1592
+#: ../../enterprise/include/class/CommandCenter.class.php:456
+#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:746
+#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1051
+#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1146
+#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1496
+#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1781
+#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2106
+#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2537
+#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2550
+#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2878
+#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3055
+#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3145
+#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3184
+#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3249
+#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:465
+#: ../../godmode/alerts/configure_alert_template.php:228
+#: ../../godmode/alerts/configure_alert_template.php:232
+#: ../../godmode/alerts/configure_alert_template.php:249
+#: ../../godmode/alerts/configure_alert_template.php:253
+#: ../../godmode/alerts/configure_alert_template.php:270
+#: ../../godmode/alerts/configure_alert_template.php:274
+msgid "Step"
+msgstr ""
+
+#: ../../include/functions_config.php:1600
+msgid "Delay"
+msgstr ""
+
+#: ../../include/functions_config.php:1632
+msgid "Historical database purge"
+msgstr ""
+
+#: ../../include/functions_config.php:1641
+msgid "Historical database partitions"
+msgstr ""
+
+#: ../../include/functions_config.php:1650
+msgid "Historical database events purge"
+msgstr ""
+
+#: ../../include/functions_config.php:1659
+msgid "Historical database string purge"
+msgstr ""
+
+#: ../../include/functions_config.php:1668
+#: ../../godmode/setup/setup_ehorus.php:58
+msgid "Enable eHorus"
+msgstr ""
+
+#: ../../include/functions_config.php:1672
+msgid "eHorus user login"
+msgstr ""
+
+#: ../../include/functions_config.php:1676
+#: ../../godmode/users/configure_user.php:1308
+msgid "eHorus user"
+msgstr ""
+
+#: ../../include/functions_config.php:1680
+#: ../../godmode/users/configure_user.php:1317
+msgid "eHorus password"
+msgstr ""
+
+#: ../../include/functions_config.php:1684
+msgid "eHorus API hostname"
+msgstr ""
+
+#: ../../include/functions_config.php:1688
+msgid "eHorus API port"
+msgstr ""
+
+#: ../../include/functions_config.php:1692
+msgid "eHorus request timeout"
+msgstr ""
+
+#: ../../include/functions_config.php:1696
+msgid "eHorus id custom field"
+msgstr ""
+
+#: ../../include/functions_config.php:1702
+msgid "Integria user login"
+msgstr ""
+
+#: ../../include/functions_config.php:1706
+#: ../../godmode/setup/setup_integria.php:261
+msgid "Enable Integria IMS"
+msgstr ""
+
+#: ../../include/functions_config.php:1710
+msgid "Integria user"
+msgstr ""
+
+#: ../../include/functions_config.php:1714
+msgid "Integria password"
+msgstr ""
+
+#: ../../include/functions_config.php:1728
+msgid "integria API hostname"
+msgstr ""
+
+#: ../../include/functions_config.php:1736
+msgid "Integria request timeout"
+msgstr ""
+
+#: ../../include/functions_config.php:1740
+msgid "Integria default group"
+msgstr ""
+
+#: ../../include/functions_config.php:1744
+msgid "Integria custom response default group"
+msgstr ""
+
+#: ../../include/functions_config.php:1748
+msgid "Integria default priority"
+msgstr ""
+
+#: ../../include/functions_config.php:1752
+msgid "Integria custom response default priority"
+msgstr ""
+
+#: ../../include/functions_config.php:1756
+msgid "Integria default creator"
+msgstr ""
+
+#: ../../include/functions_config.php:1760
+msgid "Integria default owner"
+msgstr ""
+
+#: ../../include/functions_config.php:1764
+msgid "Integria custom response default owner"
+msgstr ""
+
+#: ../../include/functions_config.php:1768
+msgid "Integria default ticket type"
+msgstr ""
+
+#: ../../include/functions_config.php:1772
+msgid "Integria custom response default ticket type"
+msgstr ""
+
+#: ../../include/functions_config.php:1776
+msgid "Integria default ticket status"
+msgstr ""
+
+#: ../../include/functions_config.php:1780
+msgid "Integria custom response default ticket status"
+msgstr ""
+
+#: ../../include/functions_config.php:1784
+msgid "Integria default ticket title"
+msgstr ""
+
+#: ../../include/functions_config.php:1788
+msgid "Integria custom response default ticket title"
+msgstr ""
+
+#: ../../include/functions_config.php:1792
+msgid "Integria default ticket content"
+msgstr ""
+
+#: ../../include/functions_config.php:1796
+msgid "Integria custom response default ticket content"
+msgstr ""
+
+#: ../../include/functions_config.php:1802
+msgid "Module Library User"
+msgstr ""
+
+#: ../../include/functions_config.php:1806
+msgid "Module Library Password"
+msgstr ""
+
+#: ../../include/functions_config.php:1812
+msgid "WebSocket bind address"
+msgstr ""
+
+#: ../../include/functions_config.php:1816
+msgid "WebSocket port"
+msgstr ""
+
+#: ../../include/functions_config.php:1820
+#: ../../godmode/setup/setup_websocket_engine.php:67
+msgid "WebSocket proxy url"
+msgstr ""
+
+#: ../../include/functions_config.php:1839
+#, php-format
+msgid "Failed updated: the next values cannot update: <br> -%s"
+msgstr ""
+
+#: ../../include/functions_config.php:2411 ../../include/functions_ui.php:1729
+msgid "the Flexible Monitoring System"
+msgstr ""
+
+#: ../../include/functions_config.php:2415
+msgid "PandoraFMS Metaconsole"
+msgstr ""
+
+#: ../../include/functions_config.php:2419
+msgid "Centralized operation console"
+msgstr ""
+
+#: ../../include/functions_config.php:2423
+msgid "PANDORA FMS"
+msgstr ""
+
+#: ../../include/functions_config.php:2427
+#: ../../enterprise/include/reset_pass.php:146
+#: ../../enterprise/include/reset_pass.php:149
+#: ../../enterprise/include/process_reset_pass.php:159
+#: ../../enterprise/include/process_reset_pass.php:162
+msgid "ONE TOOL TO MONITOR THEM ALL"
+msgstr ""
+
+#: ../../include/functions_config.php:2467
+#: ../../enterprise/meta/general/login_page.php:209
+msgid "PANDORA FMS NEXT GENERATION"
+msgstr ""
+
+#: ../../include/functions_config.php:2471
+#: ../../enterprise/meta/general/login_page.php:217
+#: ../../enterprise/meta/include/reset_pass.php:147
+#: ../../enterprise/meta/include/process_reset_pass.php:150
+msgid "METACONSOLE"
+msgstr ""
+
+#: ../../include/functions_alerts.php:474
+#: ../../enterprise/include/functions_policies.php:423
+#: ../../enterprise/include/functions_policies.php:438
+msgid "copy"
+msgstr ""
+
+#: ../../include/functions_alerts.php:670
+#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:138
+#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:139
+#: ../../enterprise/godmode/massive/massive_add_alerts_policy.php:128
+#: ../../enterprise/godmode/massive/massive_add_alerts_policy.php:129
+msgid "Regular expression"
+msgstr ""
+
+#: ../../include/functions_alerts.php:671
+msgid "Max and min"
+msgstr ""
+
+#: ../../include/functions_alerts.php:674
+msgid "Equal to"
+msgstr ""
+
+#: ../../include/functions_alerts.php:675
+msgid "Not equal to"
+msgstr ""
+
+#: ../../include/functions_alerts.php:676
+#: ../../include/functions_treeview.php:96
+#: ../../enterprise/godmode/modules/configure_local_component.php:310
+#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:498
+#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:289
+#: ../../godmode/modules/manage_network_components_form_common.php:164
+#: ../../godmode/massive/massive_edit_modules.php:561
+msgid "Warning status"
+msgstr ""
+
+#: ../../include/functions_alerts.php:677
+#: ../../include/functions_treeview.php:108
+#: ../../enterprise/godmode/modules/configure_local_component.php:353
+#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:589
+#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:338
+#: ../../godmode/modules/manage_network_components_form_common.php:205
+#: ../../godmode/massive/massive_edit_modules.php:652
+msgid "Critical status"
+msgstr ""
+
+#: ../../include/functions_alerts.php:678
+#: ../../enterprise/operation/agentes/wux_console_view.php:369
+#: ../../enterprise/operation/agentes/wux_console_view.php:373
+msgid "Unknown status"
+msgstr ""
+
+#: ../../include/functions_alerts.php:679
+msgid "On Change"
+msgstr ""
+
+#: ../../include/functions_alerts.php:680
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2358
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3326
+#: ../../enterprise/godmode/policies/policy_external_alerts.php:459
+#: ../../enterprise/godmode/policies/policy_alerts.php:428
+#: ../../godmode/alerts/alert_list.list.php:636
+#: ../../godmode/alerts/alert_view.php:234
+msgid "Always"
+msgstr ""
+
+#: ../../include/functions_alerts.php:681
+msgid "Not normal status"
+msgstr ""
+
+#: ../../include/functions_alerts.php:1682
+msgid "No actions defined"
+msgstr ""
+
+#: ../../include/functions_alerts.php:2644
+#: ../../godmode/alerts/alert_commands.php:567
+msgid "No command specified"
+msgstr ""
+
+#: ../../include/functions_alerts.php:2649
+#: ../../godmode/alerts/alert_commands.php:563
+msgid "No name specified"
+msgstr ""
+
+#: ../../include/functions_alerts.php:2655
+msgid "Alert and command group does not match"
+msgstr ""
+
+#: ../../include/functions_snmp.php:65
+msgid "Load Average (Last minute)"
+msgstr ""
+
+#: ../../include/functions_snmp.php:69
+msgid "Load Average (Last 5 minutes)"
+msgstr ""
+
+#: ../../include/functions_snmp.php:73
+msgid "Load Average (Last 15 minutes)"
+msgstr ""
+
+#: ../../include/functions_snmp.php:77
+msgid "Total Swap Size configured for the host"
+msgstr ""
+
+#: ../../include/functions_snmp.php:81
+msgid "Available Swap Space on the host"
+msgstr ""
+
+#: ../../include/functions_snmp.php:85
+msgid "Total Real/Physical Memory Size on the host"
+msgstr ""
+
+#: ../../include/functions_snmp.php:89
+msgid "Available Real/Physical Memory Space on the host"
+msgstr ""
+
+#: ../../include/functions_snmp.php:93
+msgid "Total Available Memory on the host"
+msgstr ""
+
+#: ../../include/functions_snmp.php:97
+msgid "Total Cached Memory"
+msgstr ""
+
+#: ../../include/functions_snmp.php:101
+msgid "Total Buffered Memory"
+msgstr ""
+
+#: ../../include/functions_snmp.php:105
+msgid "Amount of memory swapped in from disk (kB/s)"
+msgstr ""
+
+#: ../../include/functions_snmp.php:109
+msgid "Amount of memory swapped to disk (kB/s)"
+msgstr ""
+
+#: ../../include/functions_snmp.php:113
+msgid "Number of blocks sent to a block device"
+msgstr ""
+
+#: ../../include/functions_snmp.php:117
+msgid "Number of blocks received from a block device"
+msgstr ""
+
+#: ../../include/functions_snmp.php:121
+msgid "Number of interrupts processed"
+msgstr ""
+
+#: ../../include/functions_snmp.php:125
+msgid "Number of context switches"
+msgstr ""
+
+#: ../../include/functions_snmp.php:129
+msgid "user CPU time"
+msgstr ""
+
+#: ../../include/functions_snmp.php:133
+msgid "system CPU time"
+msgstr ""
+
+#: ../../include/functions_snmp.php:137
+msgid "idle CPU time"
+msgstr ""
+
+#: ../../include/functions_snmp.php:141
+msgid "system Up time"
+msgstr ""
+
+#: ../../include/functions_snmp.php:349
+msgid "Pagination"
+msgstr ""
+
+#: ../../include/functions_snmp.php:381 ../../include/functions_snmp.php:389
+msgid "Group by Enterprise String / IP"
+msgstr ""
+
+#: ../../include/functions_snmp.php:402 ../../include/functions_html.php:2109
+#: ../../include/functions.php:504 ../../include/functions.php:635
+#: ../../enterprise/include/ajax/log_viewer.ajax.php:278
+#: ../../enterprise/meta/advanced/metasetup.visual.php:384
+#: ../../godmode/setup/setup_visuals.php:1344
+msgid "hours"
+msgstr ""
+
+#: ../../include/functions_snmp.php:441
+#: ../../enterprise/include/functions_events.php:291
+msgid "Active filter"
+msgstr ""
+
+#: ../../include/functions_snmp.php:441
+#: ../../enterprise/include/functions_events.php:291
+msgid "Active filters"
+msgstr ""
+
+#: ../../include/functions_menu.php:491
+msgid "Configure user"
+msgstr ""
+
+#: ../../include/functions_menu.php:492
+msgid "Configure profile"
+msgstr ""
+
+#: ../../include/functions_menu.php:494
+msgid "Module templates management"
+msgstr ""
+
+#: ../../include/functions_menu.php:495
+msgid "Inventory modules management"
+msgstr ""
+
+#: ../../include/functions_menu.php:497
+#: ../../enterprise/meta/include/functions_agents_meta.php:614
+#: ../../enterprise/meta/include/functions_agents_meta.php:619
+#: ../../enterprise/extensions/disabled/check_acls.php:50
+#: ../../enterprise/extensions/disabled/check_acls.php:137
+msgid "Agents management"
+msgstr ""
+
+#: ../../include/functions_menu.php:499
+#: ../../godmode/alerts/configure_alert_template.php:99
+#: ../../godmode/alerts/configure_alert_template.php:123
+#: ../../godmode/alerts/configure_alert_template.php:155
+msgid "Configure alert template"
+msgstr ""
+
+#: ../../include/functions_menu.php:501
+#: ../../godmode/users/configure_profile.php:343
+msgid "View visual console"
+msgstr ""
+
+#: ../../include/functions_menu.php:502
+msgid "Builder visual console"
+msgstr ""
+
+#: ../../include/functions_menu.php:504
+msgid "View reporting"
+msgstr ""
+
+#: ../../include/functions_menu.php:505
+msgid "Graph viewer"
+msgstr ""
+
+#: ../../include/functions_menu.php:507
+msgid "Manage custom graphs"
+msgstr ""
+
+#: ../../include/functions_menu.php:508
+msgid "View graph containers"
+msgstr ""
+
+#: ../../include/functions_menu.php:509
+msgid "Manage graph containers"
+msgstr ""
+
+#: ../../include/functions_menu.php:510
+msgid "View graph templates"
+msgstr ""
+
+#: ../../include/functions_menu.php:511
+msgid "Manage graph templates"
+msgstr ""
+
+#: ../../include/functions_menu.php:512
+msgid "Graph template items"
+msgstr ""
+
+#: ../../include/functions_menu.php:513
+msgid "Graph template wizard"
+msgstr ""
+
+#: ../../include/functions_menu.php:514
+#: ../../enterprise/include/functions_reporting.php:124
+#: ../../enterprise/meta/general/main_menu.php:296
+#: ../../enterprise/meta/general/main_header.php:200
+msgid "Templates wizard"
+msgstr ""
+
+#: ../../include/functions_menu.php:517
+msgid "Manage GIS Maps"
+msgstr ""
+
+#: ../../include/functions_menu.php:520
+msgid "Manage messages"
+msgstr ""
+
+#: ../../include/functions_menu.php:522
+msgid "Manage module groups"
+msgstr ""
+
+#: ../../include/functions_menu.php:523
+msgid "Manage custom field"
+msgstr ""
+
+#: ../../include/functions_menu.php:525
+msgid "Manage alert actions"
+msgstr ""
+
+#: ../../include/functions_menu.php:526
+msgid "Manage commands"
+msgstr ""
+
+#: ../../include/functions_menu.php:528
+msgid "Manage export targets"
+msgstr ""
+
+#: ../../include/functions_menu.php:533
+msgid "Manage incident"
+msgstr ""
+
+#: ../../include/functions_menu.php:535
+msgid "Manage groups"
+msgstr ""
+
+#: ../../include/functions_menu.php:536
+#: ../../enterprise/meta/advanced/component_management.php:52
+msgid "Tags management"
+msgstr ""
+
+#: ../../include/functions_menu.php:595
+msgid "Administration"
+msgstr ""
+
+#: ../../include/functions_agents.php:836
+#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:366
+#: ../../godmode/massive/massive_copy_modules.php:551
+msgid "No source agent to copy"
+msgstr ""
+
+#: ../../include/functions_agents.php:841
+#: ../../godmode/massive/massive_copy_modules.php:569
+msgid "No destiny agent(s) to copy"
+msgstr ""
+
+#: ../../include/functions_agents.php:867
+#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:371
+#: ../../godmode/massive/massive_copy_modules.php:564
+msgid "No modules have been selected"
+msgstr ""
+
+#: ../../include/functions_agents.php:1005
+msgid ""
+"There was an error copying the agent configuration, the copy has been "
+"cancelled"
+msgstr ""
+
+#: ../../include/functions_agents.php:1018
+#: ../../include/functions_planned_downtimes.php:961
+#: ../../enterprise/godmode/reporting/reporting_builder.template.php:455
+#: ../../enterprise/godmode/policies/policies.php:235
+#: ../../godmode/reporting/map_builder.php:315
+#: ../../godmode/reporting/map_builder.php:322
+#: ../../godmode/reporting/reporting_builder.php:737
+#: ../../godmode/alerts/alert_actions.php:129
+#: ../../godmode/alerts/alert_commands.php:625
+msgid "Successfully copied"
+msgstr ""
+
+#: ../../include/functions_agents.php:2963
+#: ../../include/functions_agents.php:3002
+#: ../../include/functions_agents.php:3073
+msgid "No Monitors"
+msgstr ""
+
+#: ../../include/functions_agents.php:2971
+#: ../../include/functions_agents.php:3026
+#: ../../include/functions_agents.php:3081
+#: ../../include/functions_reporting.php:12293
+msgid "At least one module in CRITICAL status"
+msgstr ""
+
+#: ../../include/functions_agents.php:2977
+#: ../../include/functions_agents.php:3036
+#: ../../include/functions_agents.php:3089
+#: ../../include/functions_reporting.php:12300
+msgid "At least one module in WARNING status"
+msgstr ""
+
+#: ../../include/functions_agents.php:2983
+#: ../../include/functions_agents.php:3046
+#: ../../include/functions_agents.php:3097
+#: ../../include/functions_reporting.php:12307
+msgid "At least one module is in UKNOWN status"
+msgstr ""
+
+#: ../../include/functions_agents.php:2989
+#: ../../include/functions_agents.php:3056
+#: ../../include/functions_agents.php:3105
+#: ../../include/functions_reporting.php:12314
+msgid "All Monitors OK"
+msgstr ""
+
+#: ../../include/functions_agents.php:3014
+msgid "Alert fired on agent"
+msgstr ""
+
+#: ../../include/functions_agents.php:3847
+#: ../../include/functions_agents.php:3901
+#: ../../include/functions_reporting_html.php:5516
+#: ../../enterprise/meta/monitoring/custom_fields_view.php:400
+msgid "Agents ok"
+msgstr ""
+
+#: ../../include/functions_agents.php:3857
+#: ../../include/functions_reporting_html.php:5507
+#: ../../enterprise/meta/monitoring/custom_fields_view.php:374
+#: ../../mobile/operation/groups.php:153
+msgid "Agents critical"
+msgstr ""
+
+#: ../../include/functions_agents.php:3867
+#: ../../include/functions_reporting_html.php:5510
+#: ../../enterprise/meta/monitoring/custom_fields_view.php:387
+msgid "Agents warning"
+msgstr ""
+
+#: ../../include/functions_agents.php:3877
+#: ../../include/functions_reporting_html.php:5519
+#: ../../enterprise/meta/monitoring/custom_fields_view.php:413
+#: ../../mobile/operation/groups.php:156
+msgid "Agents unknown"
+msgstr ""
+
+#: ../../include/functions_agents.php:3891
+#: ../../include/functions_reporting_html.php:5525
+#: ../../enterprise/meta/monitoring/custom_fields_view.php:426
+#: ../../mobile/operation/groups.php:150
+msgid "Agents not init"
+msgstr ""
+
+#: ../../include/functions_agents.php:3997
+#: ../../enterprise/include/class/SAP.app.php:727
+msgid "SAP Login OK"
+msgstr ""
+
+#: ../../include/functions_agents.php:3998
+#: ../../enterprise/include/class/SAP.app.php:728
+msgid "SAP Dumps"
+msgstr ""
+
+#: ../../include/functions_agents.php:3999
+#: ../../enterprise/include/class/SAP.app.php:729
+msgid "SAP lock entry list"
+msgstr ""
+
+#: ../../include/functions_agents.php:4000
+#: ../../enterprise/include/class/SAP.app.php:730
+msgid "SAP canceled Jobs"
+msgstr ""
+
+#: ../../include/functions_agents.php:4001
+#: ../../enterprise/include/class/SAP.app.php:731
+msgid "SAP Batch inputs erroneous"
+msgstr ""
+
+#: ../../include/functions_agents.php:4002
+#: ../../enterprise/include/class/SAP.app.php:732
+msgid "SAP IDOC erroneous"
+msgstr ""
+
+#: ../../include/functions_agents.php:4003
+#: ../../enterprise/include/class/SAP.app.php:733
+msgid "SAP IDOC OK"
+msgstr ""
+
+#: ../../include/functions_agents.php:4004
+#: ../../enterprise/include/class/SAP.app.php:734
+msgid "SAP WP without active restart"
+msgstr ""
+
+#: ../../include/functions_agents.php:4005
+#: ../../enterprise/include/class/SAP.app.php:735
+msgid "SAP WP stopped"
+msgstr ""
+
+#: ../../include/functions_agents.php:4006
+#: ../../enterprise/include/class/SAP.app.php:736
+msgid "Average time of SAPGUI response"
+msgstr ""
+
+#: ../../include/functions_agents.php:4007
+msgid "Dialog response time"
+msgstr ""
+
+#: ../../include/functions_agents.php:4008
+#: ../../enterprise/include/class/SAP.app.php:737
+msgid "Dialog Logged users"
+msgstr ""
+
+#: ../../include/functions_agents.php:4009
+#: ../../enterprise/include/class/SAP.app.php:738
+msgid "TRFC in error"
+msgstr ""
+
+#: ../../include/functions_agents.php:4010
+#: ../../enterprise/include/class/SAP.app.php:739
+msgid "QRFC in error SMQ2"
+msgstr ""
+
+#: ../../include/functions_agents.php:4011
+#: ../../enterprise/include/class/SAP.app.php:740
+msgid "Number of Update WPs in error"
+msgstr ""
+
+#: ../../include/functions_network.php:34
+msgid "Top listeners"
+msgstr ""
+
+#: ../../include/functions_network.php:35
+msgid "Top talkers"
+msgstr ""
+
+#: ../../include/functions_network.php:45
+msgid "Top TCP protocols"
+msgstr ""
+
+#: ../../include/functions_network.php:46
+msgid "Top UDP protocols"
+msgstr ""
+
+#: ../../include/functions_notifications.php:811
+msgid "Subtype customization"
+msgstr ""
+
+#: ../../include/functions_notifications.php:841
+msgid "Notified users"
+msgstr ""
+
+#: ../../include/functions_notifications.php:841
+msgid "Notified groups"
+msgstr ""
+
+#: ../../include/functions_notifications.php:842
+msgid "Add users"
+msgstr ""
+
+#: ../../include/functions_notifications.php:842
+msgid "Add groups"
+msgstr ""
+
+#: ../../include/functions_notifications.php:843
+msgid "Delete users"
+msgstr ""
+
+#: ../../include/functions_notifications.php:843
+msgid "Delete groups"
+msgstr ""
+
+#: ../../include/functions_notifications.php:939
+#: ../../enterprise/godmode/massive/massive_add_service_elements.php:616
+msgid "Add elements"
+msgstr ""
+
+#: ../../include/functions_notifications.php:952
+msgid "Remove elements"
+msgstr ""
+
+#: ../../include/functions_notifications.php:1070
+msgid "Click here to get more information"
+msgstr ""
+
+#: ../../include/functions_netflow.php:348
+#: ../../enterprise/include/functions_reporting_csv.php:2808
+msgid "Destination IP"
+msgstr ""
+
+#: ../../include/functions_netflow.php:350
+#: ../../enterprise/include/functions_reporting_csv.php:2808
+msgid "% Traffic"
+msgstr ""
+
+#: ../../include/functions_netflow.php:351
+msgid "Avg. Throughput"
+msgstr ""
+
+#: ../../include/functions_netflow.php:416
+#: ../../enterprise/include/functions_reporting_csv.php:2680
+msgid "Total flows"
+msgstr ""
+
+#: ../../include/functions_netflow.php:421
+#: ../../enterprise/include/functions_reporting_csv.php:2680
+msgid "Total bytes"
+msgstr ""
+
+#: ../../include/functions_netflow.php:426
+#: ../../enterprise/include/functions_reporting_csv.php:2680
+msgid "Total packets"
+msgstr ""
+
+#: ../../include/functions_netflow.php:431
+msgid "Average bits per second"
+msgstr ""
+
+#: ../../include/functions_netflow.php:436
+msgid "Average packets per second"
+msgstr ""
+
+#: ../../include/functions_netflow.php:441
+msgid "Average bytes per packet"
+msgstr ""
+
+#: ../../include/functions_netflow.php:1182
+msgid "Area graph"
+msgstr ""
+
+#: ../../include/functions_netflow.php:1185
+msgid "Top-N connections"
+msgstr ""
+
+#: ../../include/functions_netflow.php:1186
+msgid "Circular mesh"
+msgstr ""
+
+#: ../../include/functions_netflow.php:1187
+#: ../../include/functions_netflow.php:1452
+msgid "Host detailed traffic"
+msgstr ""
+
+#: ../../include/functions_netflow.php:1439
+msgid "Sent"
+msgstr ""
+
+#: ../../include/functions_netflow.php:1447
+msgid "Received"
+msgstr ""
+
+#: ../../include/functions_netflow.php:1628
+msgid "Dst port"
+msgstr ""
+
+#: ../../include/functions_netflow.php:1631
+msgid "Dst IP"
+msgstr ""
+
+#: ../../include/functions_netflow.php:1634
+msgid "Src IP"
+msgstr ""
+
+#: ../../include/functions_netflow.php:1637
+msgid "Src port"
+msgstr ""
+
+#: ../../include/functions_netflow.php:1823
+#, php-format
+msgid "nfdump binary (%s) not found!"
+msgstr ""
+
+#: ../../include/functions_netflow.php:1830
+msgid "Make sure nfdump version 1.6.8 or newer is installed!"
+msgstr ""
+
+#: ../../include/functions_netflow.php:1847
+msgid "High"
+msgstr ""
+
+#: ../../include/functions_netflow.php:1848
+msgid "Ultra High"
+msgstr ""
+
+#: ../../include/functions_netflow.php:1849
+#: ../../enterprise/include/functions_cron.php:500
+msgid "Hourly"
+msgstr ""
+
+#: ../../include/functions_netflow.php:1850
+#: ../../enterprise/include/functions_cron.php:501
+#: ../../enterprise/include/lib/NetworkManager.php:178
+#: ../../godmode/agentes/module_manager_editor_prediction.php:183
+msgid "Daily"
+msgstr ""
+
+#: ../../include/functions_netflow.php:1881
+#, php-format
+msgid "Agregate by %s"
+msgstr ""
+
+#: ../../include/functions_netflow.php:1889
+#, php-format
+msgid "Resolution %s"
+msgstr ""
+
+#: ../../include/functions_servers.php:556
+#: ../../include/functions_servers.php:1305
+#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:386
+msgid "Data server"
+msgstr ""
+
+#: ../../include/functions_servers.php:582
+msgid "SNMP Trap server"
+msgstr ""
+
+#: ../../include/functions_servers.php:621
+#: ../../enterprise/include/lib/ClusterViewer/ClusterWizard.php:840
+#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:476
+msgid "Prediction server"
+msgstr ""
+
+#: ../../include/functions_servers.php:647
+#: ../../include/functions_servers.php:1332
+#: ../../enterprise/godmode/servers/manage_export_form.php:79
+#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:537
+msgid "Export server"
+msgstr ""
+
+#: ../../include/functions_servers.php:660
+#: ../../include/functions_servers.php:1335
+#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:522
+msgid "Inventory server"
+msgstr ""
+
+#: ../../include/functions_servers.php:673
+#: ../../include/functions_servers.php:1329
+#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:507
+msgid "Web server"
+msgstr ""
+
+#: ../../include/functions_servers.php:686
+#: ../../include/functions_servers.php:1338
+#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:552
+msgid "Event server"
+msgstr ""
+
+#: ../../include/functions_servers.php:699
+msgid "Correlation server"
+msgstr ""
+
+#: ../../include/functions_servers.php:712
+#: ../../include/functions_servers.php:1314
+msgid "Enterprise ICMP server"
+msgstr ""
+
+#: ../../include/functions_servers.php:725
+#: ../../include/functions_servers.php:1317
+msgid "Enterprise SNMP server"
+msgstr ""
+
+#: ../../include/functions_servers.php:751
+msgid "Enterprise Transactional server"
+msgstr ""
+
+#: ../../include/functions_servers.php:764
+msgid "Mainframe server"
+msgstr ""
+
+#: ../../include/functions_servers.php:777
+msgid "Sync server"
+msgstr ""
+
+#: ../../include/functions_servers.php:790
+msgid "Wux server"
+msgstr ""
+
+#: ../../include/functions_servers.php:803
+#: ../../include/functions_servers.php:1344
+msgid "Log server"
+msgstr ""
+
+#: ../../include/functions_servers.php:816
+#: ../../include/functions_servers.php:1359
+#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:612
+msgid "NCM server"
+msgstr ""
+
+#: ../../include/functions_servers.php:829
+msgid "Autoprovision server"
+msgstr ""
+
+#: ../../include/functions_servers.php:842
+msgid "Migration server"
+msgstr ""
+
+#: ../../include/functions_servers.php:855
+#: ../../include/functions_servers.php:1356
+#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:416
+msgid "Alert server"
+msgstr ""
+
+#: ../../include/functions_servers.php:1311
+#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:582
+msgid "SNMP server"
+msgstr ""
+
+#: ../../include/functions_servers.php:1323
+msgid "Prediction Server"
+msgstr ""
+
+#: ../../include/functions_servers.php:1347
+#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:597
+msgid "WUX server"
+msgstr ""
+
+#: ../../include/functions_servers.php:1350
+msgid "Satellite server"
+msgstr ""
+
+#: ../../include/functions_servers.php:1353
+msgid "Transactional server"
+msgstr ""
+
+#: ../../include/functions_clippy.php:152
+#, php-format
+msgid "%s assistant"
+msgstr ""
+
+#: ../../include/functions_clippy.php:189
+#: ../../include/functions_clippy.php:194
+msgid "End wizard"
+msgstr ""
+
+#: ../../include/functions_clippy.php:227
+msgid "Next &rarr;"
+msgstr ""
+
+#: ../../include/functions_clippy.php:228
+msgid "&larr; Back"
+msgstr ""
+
+#: ../../include/functions_clippy.php:240
+msgid "Do you want to exit the help tour?"
+msgstr ""
+
+#: ../../include/functions_api.php:116
+msgid "Not `set`, `get` or `help` operation selected."
+msgstr ""
+
+#: ../../include/functions_api.php:126
+msgid "This operation does not exist."
+msgstr ""
+
+#: ../../include/functions_api.php:136
+msgid "The Id does not exist in database."
+msgstr ""
+
+#: ../../include/functions_api.php:146
+msgid "This operation can not be used in cluster elements."
+msgstr ""
+
+#: ../../include/functions_api.php:156
+msgid "The user has not enough permissions for perform this action."
+msgstr ""
+
+#: ../../include/functions_api.php:166
+#: ../../enterprise/meta/monitoring/custom_fields_view.php:719
+msgid "No data to show."
+msgstr ""
+
+#: ../../include/functions_api.php:176
+msgid ""
+"This console is not the environment administrator. Please, manage this "
+"feature from centralized manager console (Metaconsole)."
+msgstr ""
+
+#: ../../include/functions_api.php:186
+msgid "Auth error"
+msgstr ""
+
+#: ../../include/functions_api.php:1471
+msgid ""
+"The agent could not be modified. For security reasons, use a group other "
+"than 0."
+msgstr ""
+
+#: ../../include/functions_api.php:1810
+#, php-format
+msgid "Updated %d/%d agents"
+msgstr ""
+
+#: ../../include/functions_api.php:1818
+msgid "Agent updated."
+msgstr ""
+
+#: ../../include/functions_api.php:2033 ../../godmode/setup/os.php:238
+msgid "Success creating OS"
+msgstr ""
+
+#: ../../include/functions_api.php:2035
+msgid "Could not create OS"
+msgstr ""
+
+#: ../../include/functions_api.php:2072 ../../godmode/setup/os.php:246
+msgid "Success updating OS"
+msgstr ""
+
+#: ../../include/functions_api.php:2074
+msgid "Could not update OS"
+msgstr ""
+
+#: ../../include/functions_api.php:2275
+msgid "The agent was successfully deleted"
+msgstr ""
+
+#: ../../include/functions_api.php:3770
+msgid "Network module updated."
+msgstr ""
+
+#: ../../include/functions_api.php:4066
+msgid "Plugin module updated."
+msgstr ""
+
+#: ../../include/functions_api.php:4422
+#, php-format
+msgid "Synthetic module created ID: %s"
+msgstr ""
+
+#: ../../include/functions_api.php:4575
+msgid "Synthetic module created ID: "
+msgstr ""
+
+#: ../../include/functions_api.php:4692
+msgid "Data module updated."
+msgstr ""
+
+#: ../../include/functions_api.php:5065
+msgid "SNMP module updated."
+msgstr ""
+
+#: ../../include/functions_api.php:5672
+msgid "Error creating alert template. Id_group cannot be left blank."
+msgstr ""
+
+#: ../../include/functions_api.php:5686
+msgid ""
+"Error creating alert template. Invalid id_group or the user has not enough "
+"permission to make this action."
+msgstr ""
+
+#: ../../include/functions_api.php:5832
+msgid ""
+"Error updating alert template. Invalid id_group or the user has not enough "
+"permission to make this action."
+msgstr ""
+
+#: ../../include/functions_api.php:5916
+msgid "Successful update of the alert template"
+msgstr ""
+
+#: ../../include/functions_api.php:5964
+msgid "Error deleting alert template. Id_template doesn't exist."
+msgstr ""
+
+#: ../../include/functions_api.php:5993
+msgid "Successful delete of alert template."
+msgstr ""
+
+#: ../../include/functions_api.php:6413 ../../include/functions_api.php:12362
+#: ../../include/functions_api.php:12428 ../../include/functions_api.php:12709
+#: ../../include/functions_api.php:12789
+#, php-format
+msgid "%d agents affected"
+msgstr ""
+
+#: ../../include/functions_api.php:6559
+msgid "Correct deleting of module template."
+msgstr ""
+
+#: ../../include/functions_api.php:6667
+msgid "Successful delete of module template."
+msgstr ""
+
+#: ../../include/functions_api.php:6700
+msgid "Error validating alert. Id_template cannot be left blank."
+msgstr ""
+
+#: ../../include/functions_api.php:6708
+msgid "Error validating alert. Id_agent cannot be left blank."
+msgstr ""
+
+#: ../../include/functions_api.php:6716
+msgid "Error validating alert. Id_module cannot be left blank."
+msgstr ""
+
+#: ../../include/functions_api.php:6787
+msgid "Error validating alert. Specified alert does not exist."
+msgstr ""
+
+#: ../../include/functions_api.php:6798
+msgid "Error validating alert"
+msgstr ""
+
+#: ../../include/functions_api.php:6872
+#, php-format
+msgid "Correct validation of all alerts (total %d)."
+msgstr ""
+
+#: ../../include/functions_api.php:6966
+msgid "Correct validation of all policy alerts."
+msgstr ""
+
+#: ../../include/functions_api.php:7008
+msgid ""
+"Error stopping downtime. Periodical and running scheduled downtime cannot be "
+"stopped."
+msgstr ""
+
+#: ../../include/functions_api.php:7021
+msgid "Downtime stopped."
+msgstr ""
+
+#: ../../include/functions_api.php:7503
+msgid "and this modules are doesn't exists or not applicable a this agents: "
+msgstr ""
+
+#: ../../include/functions_api.php:7507
+msgid "and this agents are generate problems: "
+msgstr ""
+
+#: ../../include/functions_api.php:7511
+msgid "and this agents with ids are doesn't exists: "
+msgstr ""
+
+#: ../../include/functions_api.php:7659
+msgid "Planned downtime updated"
+msgstr ""
+
+#: ../../include/functions_api.php:7735
+msgid " Agents deleted"
+msgstr ""
+
+#: ../../include/functions_api.php:7816
+msgid " Agents added"
+msgstr ""
+
+#: ../../include/functions_api.php:7936
+msgid "Data policy module updated."
+msgstr ""
+
+#: ../../include/functions_api.php:8169
+msgid "Network policy module updated."
+msgstr ""
+
+#: ../../include/functions_api.php:8426
+msgid "Plugin policy module updated."
+msgstr ""
+
+#: ../../include/functions_api.php:8935
+msgid "SNMP policy module updated."
+msgstr ""
+
+#: ../../include/functions_api.php:9280
+msgid "Successful deletion"
+msgstr ""
+
+#: ../../include/functions_api.php:9596
+msgid "User created."
+msgstr ""
+
+#: ../../include/functions_api.php:9691
+msgid "User updated."
+msgstr ""
+
+#: ../../include/functions_api.php:9770
+msgid "Enabled user."
+msgstr ""
+
+#: ../../include/functions_api.php:9778
+msgid "Disabled user."
+msgstr ""
+
+#: ../../include/functions_api.php:10075
+#, php-format
+msgid "Template have been inserted in %d agents."
+msgstr ""
+
+#: ../../include/functions_api.php:10247
+msgid "XML file was generated successfully in path: "
+msgstr ""
+
+#: ../../include/functions_api.php:10387
+#, php-format
+msgid "Module has been created in %d agents."
+msgstr ""
+
+#: ../../include/functions_api.php:10517
+#, php-format
+msgid "Action has been set for %d agents."
+msgstr ""
+
+#: ../../include/functions_api.php:11173
+#: ../../godmode/agentes/configurar_agente.php:2232
+#, php-format
+msgid "Save by %s Console"
+msgstr ""
+
+#: ../../include/functions_api.php:11174
+#: ../../godmode/agentes/configurar_agente.php:2250
+#, php-format
+msgid "Update by %s Console"
+msgstr ""
+
+#: ../../include/functions_api.php:11175
+#: ../../godmode/agentes/configurar_agente.php:2266
+#, php-format
+msgid "Insert by %s Console"
+msgstr ""
+
+#: ../../include/functions_api.php:11952
+msgid "User deleted."
+msgstr ""
+
+#: ../../include/functions_api.php:12013
+msgid "User profile added."
+msgstr ""
+
+#: ../../include/functions_api.php:12080
+msgid "User profile deleted."
+msgstr ""
+
+#: ../../include/functions_api.php:12369
+msgid "Module disabled successfully."
+msgstr ""
+
+#: ../../include/functions_api.php:12371
+msgid "The module could not be disabled."
+msgstr ""
+
+#: ../../include/functions_api.php:12435
+msgid "Module enabled successfully."
+msgstr ""
+
+#: ../../include/functions_api.php:12437
+msgid "The module could not be enabled."
+msgstr ""
+
+#: ../../include/functions_api.php:12485 ../../include/functions_api.php:12538
+msgid "The alert could not be disabled."
+msgstr ""
+
+#: ../../include/functions_api.php:12585 ../../include/functions_api.php:12638
+msgid "The alert could not be enabled."
+msgstr ""
+
+#: ../../include/functions_api.php:13910
+msgid "Enabled agent."
+msgstr ""
+
+#: ../../include/functions_api.php:13918
+msgid "Disabled agent."
+msgstr ""
+
+#: ../../include/functions_api.php:14897
+msgid "Metaconsole and the licenses of all nodes were updated."
+msgstr ""
+
+#: ../../include/functions_api.php:14899
+#, php-format
+msgid "Metaconsole license updated but %d of %d node failed to sync."
+msgstr ""
+
+#: ../../include/functions_api.php:14902
+msgid "This function is for metaconsole only."
+msgstr ""
+
+#: ../../include/functions_api.php:15287 ../../include/functions_api.php:15358
+msgid "Successfully deleted."
+msgstr ""
+
+#: ../../include/functions_api.php:15317
+msgid "The user cannot access the cluster."
+msgstr ""
+
+#: ../../include/functions_api.php:15411
+#: ../../godmode/agentes/agent_template.php:67
+msgid "Created by template "
+msgstr ""
+
+#: ../../include/functions_api.php:15505
+#: ../../godmode/agentes/agent_template.php:163
+msgid "Modules successfully added"
+msgstr ""
+
+#: ../../include/functions_api.php:16203
+msgid "Event filter successfully created."
+msgstr ""
+
+#: ../../include/functions_api.php:16436
+msgid "Event filter successfully updated."
+msgstr ""
+
+#: ../../include/functions_api.php:16477
+msgid "Event filter successfully deleted."
+msgstr ""
+
+#: ../../include/functions_api.php:16793
+msgid "Validated traps."
+msgstr ""
+
+#: ../../include/functions_api.php:16820
+msgid "Deleted traps."
+msgstr ""
+
+#: ../../include/functions_api.php:17013
+#, php-format
+msgid "Successfully updated module/alert count in id agent %d."
+msgstr ""
+
+#: ../../include/functions_api.php:17015
+msgid "Successfully updated module/alert count in all agents"
+msgstr ""
+
+#: ../../include/functions_api.php:17467
+#, php-format
+msgid "Successfully added to delete pending id agent %d to id policy %d."
+msgstr ""
+
+#: ../../include/functions_api.php:17627
+msgid "Error enable/disable discovery task. Id_user cannot be left blank."
+msgstr ""
+
+#: ../../include/functions_api.php:17635
+msgid ""
+"Error enable/disable discovery task. Enable/disable value cannot be left "
+"blank."
+msgstr ""
+
+#: ../../include/functions_api.php:17660
+msgid "Error in discovery task enabling/disabling."
+msgstr ""
+
+#: ../../include/functions_api.php:17668
+msgid "Enabled discovery task."
+msgstr ""
+
+#: ../../include/functions_api.php:17676
+msgid "Disabled discovery task."
+msgstr ""
+
+#: ../../include/functions_filemanager.php:135
+#: ../../include/functions_filemanager.php:192
+#: ../../include/functions_filemanager.php:247
+#: ../../include/functions_filemanager.php:340
+msgid "Security error"
+msgstr ""
+
+#: ../../include/functions_filemanager.php:154
+msgid "Upload error"
+msgstr ""
+
+#: ../../include/functions_filemanager.php:163
+#, php-format
+msgid "Issue setting umask: %s"
+msgstr ""
+
+#: ../../include/functions_filemanager.php:168
+#: ../../include/functions_filemanager.php:198
+msgid "Upload correct"
+msgstr ""
+
+#: ../../include/functions_filemanager.php:195
+msgid "It was impossible to uncompress your file"
+msgstr ""
+
+#: ../../include/functions_filemanager.php:211
+msgid ""
+"File size seems to be too large. Please check your php.ini configuration or "
+"contact with the administrator"
+msgstr ""
+
+#: ../../include/functions_filemanager.php:260
+msgid "File created correctly"
+msgstr ""
+
+#: ../../include/functions_filemanager.php:263
+msgid "Error creating file"
+msgstr ""
+
+#: ../../include/functions_filemanager.php:270
+#: ../../include/functions_filemanager.php:320
+msgid "Error creating file with empty name"
+msgstr ""
+
+#: ../../include/functions_filemanager.php:296
+#: ../../enterprise/meta/advanced/collections.editor.php:167
+#: ../../enterprise/godmode/agentes/collections.editor.php:198
+msgid "Security error."
+msgstr ""
+
+#: ../../include/functions_filemanager.php:311
+msgid "Directory created"
+msgstr ""
+
+#: ../../include/functions_filemanager.php:314
+msgid "Something gone wrong creating directory"
+msgstr ""
+
+#: ../../include/functions_filemanager.php:342
+#: ../../include/functions_filemanager.php:359
+#: ../../include/functions_reporting_html.php:1662
+#: ../../enterprise/include/functions_inventory.php:860
+#: ../../enterprise/include/functions_inventory.php:925
+msgid "Deleted"
+msgstr ""
+
+#: ../../include/functions_filemanager.php:539
+#: ../../include/functions_filemanager.php:775
+msgid "Create a Directory"
+msgstr ""
+
+#: ../../include/functions_filemanager.php:543
+#: ../../include/functions_filemanager.php:786
+#: ../../include/functions_filemanager.php:789
+msgid "Create a Text"
+msgstr ""
+
+#: ../../include/functions_filemanager.php:547
+#: ../../include/functions_filemanager.php:800
+#: ../../include/functions_filemanager.php:803
+msgid "Upload Files"
+msgstr ""
+
+#: ../../include/functions_filemanager.php:578
+#, php-format
+msgid "Directory %s doesn't exist!"
+msgstr ""
+
+#: ../../include/functions_filemanager.php:590
+#: ../../godmode/setup/file_manager.php:66 ../../godmode/servers/plugin.php:235
+#, php-format
+msgid "Index of %s"
+msgstr ""
+
+#: ../../include/functions_filemanager.php:605
+#: ../../extensions/files_repo/files_repo_list.php:58
+msgid "Last modification"
+msgstr ""
+
+#: ../../include/functions_filemanager.php:623
+msgid "Parent directory"
+msgstr ""
+
+#: ../../include/functions_filemanager.php:637
+msgid "Directory"
+msgstr ""
+
+#: ../../include/functions_filemanager.php:645
+msgid "Compressed file"
+msgstr ""
+
+#: ../../include/functions_filemanager.php:649
+#: ../../include/functions_filemanager.php:656
+msgid "Text file"
+msgstr ""
+
+#: ../../include/functions_filemanager.php:689
+msgid "This file could be executed by any user"
+msgstr ""
+
+#: ../../include/functions_filemanager.php:690
+msgid "Make sure it can't perform dangerous tasks"
+msgstr ""
+
+#: ../../include/functions_filemanager.php:737
+#: ../../enterprise/meta/advanced/collections.editor.php:125
+#: ../../enterprise/meta/advanced/collections.editor.php:193
+#: ../../enterprise/godmode/agentes/collections.editor.php:158
+#: ../../enterprise/godmode/agentes/collections.editor.php:224
+#: ../../godmode/servers/plugin.php:173
+msgid "Edit file"
+msgstr ""
+
+#: ../../include/functions_filemanager.php:758
+msgid "No files or directories to show."
+msgstr ""
+
+#: ../../include/functions_filemanager.php:772
+#: ../../include/functions_filemanager.php:898
+msgid "Create directory"
+msgstr ""
+
+#: ../../include/functions_filemanager.php:834
+msgid "The zip upload in this dir, easy to upload multiple files."
+msgstr ""
+
+#: ../../include/functions_filemanager.php:836
+msgid "Decompress"
+msgstr ""
+
+#: ../../include/functions_filemanager.php:853
+#: ../../enterprise/include/class/CSVImportAgents.class.php:196
+#: ../../enterprise/extensions/csv_import_group/main.php:105
+msgid "Go"
+msgstr ""
+
+#: ../../include/functions_filemanager.php:910
+msgid "Create text"
+msgstr ""
+
+#: ../../include/functions_filemanager.php:922
+msgid "Upload file/s"
+msgstr ""
+
+#: ../../include/functions_filemanager.php:931
+msgid "The directory is read-only"
+msgstr ""
+
+#: ../../include/functions_treeview.php:52
+msgid "There was a problem loading module"
+msgstr ""
+
+#: ../../include/functions_treeview.php:90
+#: ../../include/functions_treeview.php:102
+#: ../../enterprise/godmode/modules/configure_local_component.php:329
+#: ../../enterprise/godmode/modules/configure_local_component.php:372
+#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:532
+#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:623
+#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:323
+#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:372
+#: ../../godmode/modules/manage_network_components_form_common.php:183
+#: ../../godmode/modules/manage_network_components_form_common.php:224
+#: ../../godmode/massive/massive_edit_modules.php:595
+#: ../../godmode/massive/massive_edit_modules.php:686
+#: ../../godmode/agentes/module_manager_editor_common.php:444
+#: ../../godmode/agentes/module_manager_editor_common.php:505
+msgid "Str."
+msgstr ""
+
+#: ../../include/functions_treeview.php:315
+#: ../../include/graphs/functions_flot.php:509
+#: ../../include/functions_reporting_html.php:655
+#: ../../include/functions_reporting_html.php:4367
+msgid "No data"
+msgstr ""
+
+#: ../../include/functions_treeview.php:342
+msgid "Go to module edition"
+msgstr ""
+
+#: ../../include/functions_treeview.php:393
+msgid "There was a problem loading alerts"
+msgstr ""
+
+#: ../../include/functions_treeview.php:454
+#: ../../include/functions_reporting_html.php:5037
+#: ../../include/functions_reporting_html.php:5159
+#: ../../godmode/snmpconsole/snmp_alert.php:1234
+msgid "Times fired"
+msgstr ""
+
+#: ../../include/functions_treeview.php:478
+msgid "Go to alerts edition"
+msgstr ""
+
+#: ../../include/functions_treeview.php:676
+msgid "Next agent contact"
+msgstr ""
+
+#: ../../include/functions_treeview.php:703
+msgid "Edit cluster"
+msgstr ""
+
+#: ../../include/functions_treeview.php:707
+msgid "Go to agent edition"
+msgstr ""
+
+#: ../../include/functions_treeview.php:719
+msgid "Agent data"
+msgstr ""
+
+#: ../../include/functions_treeview.php:799
+msgid "Advanced information"
+msgstr ""
+
+#: ../../include/functions_treeview.php:812
+msgid "Agent access rate (24h)"
+msgstr ""
+
+#: ../../include/functions_treeview.php:831
+#: ../../mobile/operation/agent.php:268
+msgid "Events (24h)"
+msgstr ""
+
+#: ../../include/functions_treeview.php:901
+msgid "Interface information"
+msgstr ""
+
+#: ../../include/functions_container.php:148
+#: ../../godmode/reporting/graphs.php:312
+msgid "Number of Graphs"
+msgstr ""
+
+#: ../../include/help/clippy/godmode_alerts_alert_actions.php:35
+msgid ""
+"Let me show you how to create an email action: Click on Create button and "
+"fill the form showed in the following screen."
+msgstr ""
+
+#: ../../include/help/clippy/godmode_alerts_alert_actions.php:49
+msgid ""
+"Now, you have to go to the monitors list and look for a critical module to "
+"apply the alert."
+msgstr ""
+
+#: ../../include/help/clippy/godmode_alerts_alert_actions.php:54
+msgid ""
+"Click on the arrow to drop down the Monitoring submenu and select Monitor "
+"Detail."
+msgstr ""
+
+#: ../../include/help/clippy/topology_group.php:35
+msgid "Topology Group"
+msgstr ""
+
+#: ../../include/help/clippy/topology_group.php:35
+msgid ""
+"Please note that group topology maps do not show the parent relationship "
+"between nodes, it only shows the group parentship and the agent distribution "
+"inside them. "
+msgstr ""
+
+#: ../../include/help/clippy/data_configuration_module.php:35
+msgid "Data Configuration Module."
+msgstr ""
+
+#: ../../include/help/clippy/data_configuration_module.php:35
+msgid ""
+"Please note that information provided here affects how the agent collect "
+"information and generate the data XML. Any data/configuration reported by "
+"the agent, different from data or description is discarded, and the "
+"configuration shown in the console prevails over any configuration coming "
+"from the agent, this applies for example for crit/warn thresholds, interval, "
+"module group, min/max value, tags, etc."
+msgstr ""
+
+#: ../../include/help/clippy/data_configuration_module.php:35
+msgid ""
+"Information imported FIRST time from the XML will fill the information you "
+"can see in the console, but after the first import, system will ignore any "
+"update coming from the XML/Agent."
+msgstr ""
+
+#: ../../include/help/clippy/homepage.php:75
+msgid "Hi, can I help you?"
+msgstr ""
+
+#: ../../include/help/clippy/homepage.php:75
+#, php-format
+msgid ""
+"Let me introduce my self: I am Pandorin, the annoying assistant of %s. You "
+"can follow my steps to do basic tasks in %s or you can close me and never "
+"see me again."
+msgstr ""
+
+#: ../../include/help/clippy/homepage.php:75
+msgid "Close this wizard and don't open it again."
+msgstr ""
+
+#: ../../include/help/clippy/homepage.php:79
+msgid "Which task would you like to do first?"
+msgstr ""
+
+#: ../../include/help/clippy/homepage.php:79
+#, php-format
+msgid "Ping a Linux or Windows server using a %s agent."
+msgstr ""
+
+#: ../../include/help/clippy/homepage.php:79
+msgid "Create a alert by email in a critical module."
+msgstr ""
+
+#: ../../include/help/clippy/homepage.php:190
+#, php-format
+msgid ""
+"The first thing you have to do is to setup the e-mail config on the %s "
+"Server."
+msgstr ""
+
+#: ../../include/help/clippy/homepage.php:190
+msgid "If you have it already configured you can go to the next step."
+msgstr ""
+
+#: ../../include/help/clippy/homepage.php:195
+msgid "Now, pull down the Manage alerts menu and click on Actions. "
+msgstr ""
+
+#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:34
+msgid "Now you must go to Modules. Don't worry I'll lead you."
+msgstr ""
+
+#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:39
+msgid "Click in this tab.."
+msgstr ""
+
+#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:53
+msgid "Now you must create the module. Don't worry, i'll teach you."
+msgstr ""
+
+#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:57
+msgid "Choose the network server module."
+msgstr ""
+
+#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:61
+msgid "And click the button."
+msgstr ""
+
+#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:75
+msgid "Now you must create the module. Don't worry, i'll teach you ."
+msgstr ""
+
+#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:79
+msgid "Now we are going to fill the form."
+msgstr ""
+
+#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:83
+msgid "Please choose Network Management."
+msgstr ""
+
+#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:87
+msgid "Choose the component named \"Host alive\"."
+msgstr ""
+
+#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:91
+msgid "You can change the name if you want."
+msgstr ""
+
+#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:95
+msgid "Check if the IP showed is the IP of your machine."
+msgstr ""
+
+#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:99
+msgid "And only to finish it is clicking this button."
+msgstr ""
+
+#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:114
+msgid ""
+"Congrats! Your module has been created. <br /> and the status color is "
+"<b>blue.</b><br /> 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 <b>red</b> or <b>green</b>."
+msgstr ""
+
+#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:119
+#: ../../include/help/clippy/operation_agentes_ver_agente.php:40
+#: ../../godmode/wizards/DiscoveryTaskList.class.php:1837
+#: ../../godmode/wizards/DiscoveryTaskList.class.php:1843
+msgid "Done"
+msgstr ""
+
+#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:129
+msgid "Click on alerts tab and then fill the form to add an alert."
+msgstr ""
+
+#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:143
+msgid "Select the critical module."
+msgstr ""
+
+#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:147
+msgid "In template select \"Critical Condition\"."
+msgstr ""
+
+#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:151
+msgid "Now, select the action created before."
+msgstr ""
+
+#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:156
+msgid "Click on Add Alert button to create the alert."
+msgstr ""
+
+#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:171
+msgid ""
+"To test the alert you've just created go to the main view by clicking on the "
+"eye tab."
+msgstr ""
+
+#: ../../include/help/clippy/servers_down.php:35
+msgid "All servers down"
+msgstr ""
+
+#: ../../include/help/clippy/servers_down.php:35
+msgid ""
+"Can you up all servers. You go to terminal in linux and execute the next "
+"command: \"sudo /etc/init.d/pandora_server restart\". It's possible need "
+"introduce root pass."
+msgstr ""
+
+#: ../../include/help/clippy/extension_cron_send_email.php:35
+msgid ""
+"The configuration of email for the task email is in the enterprise setup:"
+msgstr ""
+
+#: ../../include/help/clippy/extension_cron_send_email.php:35
+msgid "Please check if the email configuration is correct."
+msgstr ""
+
+#: ../../include/help/clippy/module_unknow.php:35
+msgid "You have unknown modules in this agent."
+msgstr ""
+
+#: ../../include/help/clippy/module_unknow.php:35
+msgid ""
+"Unknown modules are modules which receive data normally at least in one "
+"occassion, but at this time are not receving data. Please check our "
+"troubleshoot help page to help you determine why you have unknown modules."
+msgstr ""
+
+#: ../../include/help/clippy/modules_not_init.php:35
+msgid "You have non initialized modules"
+msgstr ""
+
+#: ../../include/help/clippy/modules_not_init.php:35
+msgid ""
+"This happen when you have just created a module and it's not executed at "
+"first time. Usually in a few seconds should be initialized and you will be "
+"able to see in main view. If you keep non-init modules for more than 24hr "
+"(due a problem in it's execution or configuration) they will be "
+"automatically deleted by the system. Non-init are not visible in the “main "
+"view”, you can see/edit them in the module administration section, in the "
+"agent administrator."
+msgstr ""
+
+#: ../../include/help/clippy/godmode_alerts_configure_alert_action.php:34
+msgid "Fill the name of your action."
+msgstr ""
+
+#: ../../include/help/clippy/godmode_alerts_configure_alert_action.php:38
+msgid ""
+"Select the group in the drop-down list and filter for ACL (the user in this "
+"group can use your action to create an alert)."
+msgstr ""
+
+#: ../../include/help/clippy/godmode_alerts_configure_alert_action.php:42
+msgid "In the command field select \"email\"."
+msgstr ""
+
+#: ../../include/help/clippy/godmode_alerts_configure_alert_action.php:46
+msgid ""
+"In the threshold field enter the seconds. The help icon show more "
+"information."
+msgstr ""
+
+#: ../../include/help/clippy/godmode_alerts_configure_alert_action.php:51
+msgid ""
+"In the first field enter the email address/addresses where you want to "
+"receive the email alerts separated with comas ( , ) or white spaces."
+msgstr ""
+
+#: ../../include/help/clippy/godmode_alerts_configure_alert_action.php:56
+msgid ""
+"In the \"Subject\"  field  you can use the macros _agent_ or _module_ for "
+"each name."
+msgstr ""
+
+#: ../../include/help/clippy/godmode_alerts_configure_alert_action.php:61
+msgid ""
+"In the text field, you can also use macros. Get more information about the "
+"macros by clicking on the help icon."
+msgstr ""
+
+#: ../../include/help/clippy/godmode_alerts_configure_alert_action.php:66
+msgid "Click on Create button to create the action."
+msgstr ""
+
+#: ../../include/help/clippy/interval_agent_min.php:35
+msgid "Interval Agent."
+msgstr ""
+
+#: ../../include/help/clippy/interval_agent_min.php:35
+msgid ""
+"Please note that having agents with a monitoring interval below 300 seconds "
+"is not recommended. This will impact seriously in the performance of the "
+"server. For example, having 200 agents with one minute interval, is the same "
+"than having 1000 agents with a 5 minute interval. The probability of getting "
+"unknown modules is higher, and the impact on the server is higher because it "
+"requires a shorter response time."
+msgstr ""
+
+#: ../../include/help/clippy/server_queued_modules.php:35
+msgid "Excesive Queued."
+msgstr ""
+
+#: ../../include/help/clippy/server_queued_modules.php:35
+msgid ""
+"You have too much items in the processing queue. This can happen if your "
+"server is too loaded and/or not properly configured. This could be something "
+"temporal, or a bottleneck. One possible solution is increase number of "
+"server threads, but you should consider getting support about this."
+msgstr ""
+
+#: ../../include/help/clippy/modules_not_learning_mode.php:46
+msgid ""
+"Please note that you have your agent setup to do not add new modules coming "
+"from the data XML."
+msgstr ""
+
+#: ../../include/help/clippy/modules_not_learning_mode.php:46
+msgid ""
+"That means if you have a local plugin or add manually new modules to the "
+"configuration file, you won't have it in your agent, unless you first create "
+"manually in the interface (with the exact name and type as coming in the XML "
+"file)."
+msgstr ""
+
+#: ../../include/help/clippy/modules_not_learning_mode.php:46
+msgid ""
+"You should use the \"normal\" mode (non learn) only when you don't intend to "
+"add more modules to the agent."
+msgstr ""
+
+#: ../../include/help/clippy/operation_agentes_ver_agente.php:35
+msgid ""
+"The last step is to check the alert created. Click on the round icon to "
+"force the action execution and after a few minutes you will receive the "
+"alert in your email."
+msgstr ""
+
+#: ../../include/help/clippy/operation_agentes_ver_agente.php:35
+msgid ""
+"And restart your pandora server to read again general configuration tokens."
+msgstr ""
+
+#: ../../include/help/clippy/agent_out_of_limits.php:35
+msgid "Agent contact date passed it's ETA!."
+msgstr ""
+
+#: ../../include/help/clippy/agent_out_of_limits.php:35
+msgid ""
+"This happen when your agent stopped reporting or the server have any problem "
+"(too load or just down). Check also connectivity between the agent and the "
+"server."
+msgstr ""
+
+#: ../../include/help/clippy/operation_agentes_status_monitor.php:34
+msgid ""
+"Now, you have to go to the monitors list and look for a \"critical\" module "
+"to apply the alert."
+msgstr ""
+
+#: ../../include/help/clippy/operation_agentes_status_monitor.php:38
+msgid ""
+"If you know the name of the agent or the name of the module in critical "
+"status, type it in this field to make the module list shorter. You can write "
+"the entire name or just a part of it."
+msgstr ""
+
+#: ../../include/help/clippy/operation_agentes_status_monitor.php:43
+msgid "Click on Show button to get the modules list filtered."
+msgstr ""
+
+#: ../../include/help/clippy/operation_agentes_status_monitor.php:58
+msgid ""
+"Now, to edit the module, click on the wrench that appears in the type column."
+msgstr ""
+
+#: ../../include/help/clippy/godmode_agentes_modificar_agente.php:34
+msgid "I'm going to show you how to monitor a server."
+msgstr ""
+
+#: ../../include/help/clippy/godmode_agentes_modificar_agente.php:38
+msgid "Please, type an agent to save the modules for monitoring a server."
+msgstr ""
+
+#: ../../include/help/clippy/godmode_agentes_modificar_agente.php:43
+msgid "If you have typed the name correctly you will see the agent."
+msgstr ""
+
+#: ../../include/help/clippy/godmode_agentes_modificar_agente.php:57
+msgid "Now, please choose the agent you searched."
+msgstr ""
+
+#: ../../include/help/clippy/godmode_agentes_modificar_agente.php:62
+msgid "Choose the agent and click on the name."
+msgstr ""
+
+#: ../../include/functions_graph.php:1089
+#: ../../include/functions_reporting.php:4326
+#: ../../include/functions_reporting.php:4369
+msgid "No data to display within the selected interval"
+msgstr ""
+
+#: ../../include/functions_graph.php:1538
+#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:409
+#: ../../godmode/reporting/reporting_builder.list_items.php:445
+msgid "No items."
+msgstr ""
+
+#: ../../include/functions_graph.php:2630
+msgid "Not fired alerts"
+msgstr ""
+
+#: ../../include/functions_graph.php:2898
+#: ../../include/functions_graph.php:2946
+#: ../../include/graphs/functions_gd.php:183
+#: ../../include/graphs/functions_gd.php:466
+msgid "Out of limits"
+msgstr ""
+
+#: ../../include/functions_graph.php:3548
+#: ../../include/functions_graph.php:3549
+#: ../../include/functions_graph.php:5135 ../../include/functions.php:1043
+#: ../../include/functions.php:1272 ../../include/functions.php:1323
+msgid "Minor"
+msgstr ""
+
+#: ../../include/functions_graph.php:3558
+#: ../../include/functions_graph.php:3559
+#: ../../include/functions_graph.php:5139 ../../include/functions.php:1047
+#: ../../include/functions.php:1274 ../../include/functions.php:1327
+msgid "Major"
+msgstr ""
+
+#: ../../include/functions_graph.php:5518
+msgid "Main node"
+msgstr ""
+
+#: ../../include/functions_snmp_browser.php:355
+msgid "The server did not return any response."
+msgstr ""
+
+#: ../../include/functions_snmp_browser.php:556
+#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor_form.php:56
+#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:382
+#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:299
+#: ../../godmode/setup/snmp_wizard.php:42
+msgid "OID"
+msgstr ""
+
+#: ../../include/functions_snmp_browser.php:558
+msgid "Numeric OID"
+msgstr ""
+
+#: ../../include/functions_snmp_browser.php:576
+msgid "Syntax"
+msgstr ""
+
+#: ../../include/functions_snmp_browser.php:582
+msgid "Display hint"
+msgstr ""
+
+#: ../../include/functions_snmp_browser.php:588
+msgid "Max access"
+msgstr ""
+
+#: ../../include/functions_snmp_browser.php:612
+msgid "OID Information"
+msgstr ""
+
+#: ../../include/functions_snmp_browser.php:638
+#: ../../godmode/agentes/module_manager.php:1205
+msgid "Create network component"
+msgstr ""
+
+#: ../../include/functions_snmp_browser.php:647
+msgid "Create agent module"
+msgstr ""
+
+#: ../../include/functions_snmp_browser.php:727
+#: ../../godmode/snmpconsole/snmp_trap_generator.php:95
+msgid "Community"
+msgstr ""
+
+#: ../../include/functions_snmp_browser.php:736
+msgid "Starting OID"
+msgstr ""
+
+#: ../../include/functions_snmp_browser.php:746
+#: ../../include/functions_reporting_html.php:1524
+#: ../../enterprise/tools/ipam/ipam_calculator.php:52
+#: ../../enterprise/include/functions_reporting_csv.php:718
+#: ../../enterprise/include/class/AgentRepository.class.php:366
+#: ../../enterprise/include/class/AgentRepository.class.php:632
+#: ../../enterprise/meta/advanced/servers.build_table.php:63
+#: ../../enterprise/meta/advanced/metasetup.consoles.php:838
+#: ../../enterprise/godmode/servers/list_satellite.php:39
+#: ../../godmode/servers/servers.build_table.php:82
+#: ../../godmode/update_manager/update_manager.history.php:40
+#: ../../godmode/extensions.php:139
+#: ../../godmode/reporting/reporting_builder.item_editor.php:78
+msgid "Version"
+msgstr ""
+
+#: ../../include/functions_snmp_browser.php:786
+msgid "Server to execute"
+msgstr ""
+
+#: ../../include/functions_snmp_browser.php:801
+msgid "Browse"
+msgstr ""
+
+#: ../../include/functions_snmp_browser.php:826
+#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:299
+#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:795
+#: ../../godmode/modules/manage_network_components_form_network.php:96
+#: ../../godmode/massive/massive_edit_modules.php:852
+#: ../../godmode/wizards/HostDevices.class.php:1259
+#: ../../godmode/agentes/module_manager_editor_network.php:336
+msgid "Auth user"
+msgstr ""
+
+#: ../../include/functions_snmp_browser.php:836
+#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:308
+#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:804
+#: ../../godmode/modules/manage_network_components_form_network.php:105
+#: ../../godmode/massive/massive_edit_modules.php:861
+#: ../../godmode/wizards/HostDevices.class.php:1270
+#: ../../godmode/agentes/module_manager_editor_network.php:349
+msgid "Auth password"
+msgstr ""
+
+#: ../../include/functions_snmp_browser.php:856
+#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:327
+#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:807
+#: ../../godmode/modules/manage_network_components_form_network.php:126
+#: ../../godmode/massive/massive_edit_modules.php:864
+#: ../../godmode/wizards/HostDevices.class.php:1291
+#: ../../godmode/agentes/module_manager_editor_network.php:370
+msgid "DES"
+msgstr ""
+
+#: ../../include/functions_snmp_browser.php:857
+#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:328
+#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:807
+#: ../../godmode/modules/manage_network_components_form_network.php:127
+#: ../../godmode/massive/massive_edit_modules.php:864
+#: ../../godmode/wizards/HostDevices.class.php:1292
+#: ../../godmode/agentes/module_manager_editor_network.php:370
+msgid "AES"
+msgstr ""
+
+#: ../../include/functions_snmp_browser.php:877
+#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:347
+#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:810
+#: ../../godmode/modules/manage_network_components_form_network.php:148
+#: ../../godmode/massive/massive_edit_modules.php:867
+#: ../../godmode/wizards/HostDevices.class.php:1317
+#: ../../godmode/agentes/module_manager_editor_network.php:391
+msgid "Auth method"
+msgstr ""
+
+#: ../../include/functions_snmp_browser.php:881
+#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:351
+#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:811
+#: ../../godmode/modules/manage_network_components_form_network.php:152
+#: ../../godmode/massive/massive_edit_modules.php:868
+#: ../../godmode/wizards/HostDevices.class.php:1323
+#: ../../godmode/agentes/module_manager_editor_network.php:395
+msgid "SHA"
+msgstr ""
+
+#: ../../include/functions_snmp_browser.php:893
+#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:363
+#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:815
+#: ../../godmode/modules/manage_network_components_form_network.php:164
+#: ../../godmode/massive/massive_edit_modules.php:872
+#: ../../godmode/wizards/HostDevices.class.php:1337
+#: ../../godmode/agentes/module_manager_editor_network.php:411
+msgid "Not auth and not privacy method"
+msgstr ""
+
+#: ../../include/functions_snmp_browser.php:894
+#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:364
+#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:816
+#: ../../godmode/modules/manage_network_components_form_network.php:165
+#: ../../godmode/massive/massive_edit_modules.php:873
+#: ../../godmode/wizards/HostDevices.class.php:1338
+#: ../../godmode/agentes/module_manager_editor_network.php:412
+msgid "Auth and not privacy method"
+msgstr ""
+
+#: ../../include/functions_snmp_browser.php:895
+#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:365
+#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:817
+#: ../../godmode/modules/manage_network_components_form_network.php:166
+#: ../../godmode/massive/massive_edit_modules.php:874
+#: ../../godmode/wizards/HostDevices.class.php:1339
+#: ../../godmode/agentes/module_manager_editor_network.php:413
+msgid "Auth and privacy method"
+msgstr ""
+
+#: ../../include/functions_snmp_browser.php:939
+msgid "First match"
+msgstr ""
+
+#: ../../include/functions_snmp_browser.php:952
+msgid "Previous match"
+msgstr ""
+
+#: ../../include/functions_snmp_browser.php:965
+msgid "Next match"
+msgstr ""
+
+#: ../../include/functions_snmp_browser.php:978
+msgid "Last match"
+msgstr ""
+
+#: ../../include/functions_snmp_browser.php:992
+msgid "Expand the tree (can be slow)"
+msgstr ""
+
+#: ../../include/functions_snmp_browser.php:1005
+msgid "Collapse the tree"
+msgstr ""
+
+#: ../../include/functions_snmp_browser.php:1034
+msgid "SNMP v3 options"
+msgstr ""
+
+#: ../../include/functions_snmp_browser.php:1044
+msgid "Search options"
+msgstr ""
+
+#: ../../include/functions_snmp_browser.php:1065
+msgid "Search matches"
+msgstr ""
+
+#: ../../include/functions_snmp_browser.php:1081
+msgid "Create agent modules"
+msgstr ""
+
+#: ../../include/functions_snmp_browser.php:1090
+msgid "Create policy modules"
+msgstr ""
+
+#: ../../include/functions_snmp_browser.php:1099
+msgid "Create network components"
+msgstr ""
+
+#: ../../include/functions_snmp_browser.php:1511
+msgid " available"
+msgstr ""
+
+#: ../../include/functions_snmp_browser.php:1511
+#: ../../include/functions_snmp_browser.php:1513
+#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:172
+#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:177
+#: ../../enterprise/godmode/reporting/graph_template_wizard.php:228
+#: ../../enterprise/godmode/reporting/graph_template_wizard.php:234
+#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:412
+#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:422
+#: ../../enterprise/godmode/reporting/reporting_builder.template.php:832
+#: ../../enterprise/godmode/reporting/reporting_builder.template.php:834
+msgid "Select all"
+msgstr ""
+
+#: ../../include/functions_snmp_browser.php:1513
+msgid " to apply"
+msgstr ""
+
+#: ../../include/functions_snmp_browser.php:1566
+msgid "Undo"
+msgstr ""
+
+#: ../../include/functions_reporting.php:364
+msgid " agents"
+msgstr ""
+
+#: ../../include/functions_reporting.php:374
+msgid " modules"
+msgstr ""
+
+#: ../../include/functions_reporting.php:996
+#: ../../include/functions_reporting.php:8556
+#: ../../enterprise/include/functions_reporting.php:2493
+#: ../../enterprise/include/functions_reporting.php:3437
+#: ../../enterprise/include/functions_reporting.php:4412
+msgid "There are no SLAs defined"
+msgstr ""
+
+#: ../../include/functions_reporting.php:1071
+#: ../../include/functions_reporting.php:8934
+#: ../../enterprise/include/functions_reporting.php:2546
+#: ../../enterprise/include/functions_reporting.php:3490
+#: ../../enterprise/include/functions_reporting.php:4465
+msgid "Inverse"
+msgstr ""
+
+#: ../../include/functions_reporting.php:1510
+msgid "Top N"
+msgstr ""
+
+#: ../../include/functions_reporting.php:1520
+#: ../../include/functions_ui.php:2604
+#: ../../include/functions_reporting_html.php:4691
+#: ../../enterprise/include/functions_reporting_csv.php:1030
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2206
+#: ../../enterprise/meta/include/functions_wizard_meta.php:983
+#: ../../enterprise/meta/include/functions_wizard_meta.php:992
+#: ../../enterprise/meta/include/functions_wizard_meta.php:1068
+#: ../../enterprise/meta/include/functions_wizard_meta.php:1077
+#: ../../enterprise/meta/include/functions_wizard_meta.php:1271
+#: ../../enterprise/meta/include/functions_wizard_meta.php:1280
+#: ../../enterprise/meta/include/functions_wizard_meta.php:1508
+#: ../../enterprise/meta/include/functions_wizard_meta.php:1517
+#: ../../enterprise/meta/include/functions_wizard_meta.php:1593
+#: ../../enterprise/meta/include/functions_wizard_meta.php:1602
+#: ../../enterprise/meta/include/functions_wizard_meta.php:1713
+#: ../../enterprise/meta/include/functions_wizard_meta.php:1722
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1808
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2442
+#: ../../enterprise/godmode/reporting/reporting_builder.global.php:285
+#: ../../enterprise/godmode/reporting/reporting_builder.global.php:378
+#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:745
+#: ../../godmode/reporting/reporting_builder.item_editor.php:1303
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2404
+#: ../../godmode/alerts/alert_view.php:266
+msgid "Max"
+msgstr ""
+
+#: ../../include/functions_reporting.php:1524
+#: ../../include/functions_ui.php:2604
+#: ../../include/functions_reporting_html.php:4692
+#: ../../enterprise/include/functions_reporting_csv.php:1030
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2206
+#: ../../enterprise/meta/include/functions_wizard_meta.php:981
+#: ../../enterprise/meta/include/functions_wizard_meta.php:990
+#: ../../enterprise/meta/include/functions_wizard_meta.php:1066
+#: ../../enterprise/meta/include/functions_wizard_meta.php:1075
+#: ../../enterprise/meta/include/functions_wizard_meta.php:1269
+#: ../../enterprise/meta/include/functions_wizard_meta.php:1278
+#: ../../enterprise/meta/include/functions_wizard_meta.php:1506
+#: ../../enterprise/meta/include/functions_wizard_meta.php:1515
+#: ../../enterprise/meta/include/functions_wizard_meta.php:1591
+#: ../../enterprise/meta/include/functions_wizard_meta.php:1600
+#: ../../enterprise/meta/include/functions_wizard_meta.php:1711
+#: ../../enterprise/meta/include/functions_wizard_meta.php:1720
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1810
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2449
+#: ../../enterprise/godmode/reporting/reporting_builder.global.php:273
+#: ../../enterprise/godmode/reporting/reporting_builder.global.php:385
+#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:737
+#: ../../godmode/reporting/reporting_builder.item_editor.php:1301
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2411
+#: ../../godmode/alerts/alert_view.php:266
+msgid "Min"
+msgstr ""
+
+#: ../../include/functions_reporting.php:1530
+#: ../../include/functions_reporting_html.php:4690
+#: ../../enterprise/include/functions_reporting_csv.php:1030
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2456
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2418
+msgid "Avg"
+msgstr ""
+
+#: ../../include/functions_reporting.php:1582
+#: ../../include/functions_reporting.php:3162
+#: ../../include/functions_reporting_html.php:801
+#: ../../include/functions_reporting_html.php:4209
+#: ../../include/functions_reporting_html.php:4758
+#: ../../include/functions_reporting_html.php:4761
+#: ../../enterprise/include/functions_reporting.php:5146
+msgid "There are no Agent/Modules defined"
+msgstr ""
+
+#: ../../include/functions_reporting.php:1638
+msgid "Insuficient data"
+msgstr ""
+
+#: ../../include/functions_reporting.php:1889
+msgid "Event Report Group"
+msgstr ""
+
+#: ../../include/functions_reporting.php:1937
+msgid "Exclude "
+msgstr ""
+
+#: ../../include/functions_reporting.php:2185
+msgid "Event Report Module"
+msgstr ""
+
+#: ../../include/functions_reporting.php:2517
+#: ../../enterprise/include/functions_reporting_csv.php:740
+msgid "Inventory Changes"
+msgstr ""
+
+#: ../../include/functions_reporting.php:2590
+#: ../../enterprise/tools/ipam/ipam_action.php:385
+msgid "No changes found."
+msgstr ""
+
+#: ../../include/functions_reporting.php:2687
+#: ../../enterprise/operation/log/log_viewer.php:1256
+#: ../../enterprise/operation/log/log_viewer.php:1264
+#: ../../enterprise/operation/agentes/agent_inventory.php:254
+#: ../../enterprise/operation/inventory/inventory.php:459
+#: ../../enterprise/operation/inventory/inventory.php:502
+#: ../../enterprise/godmode/agentes/collection_manager.php:196
+#: ../../godmode/reporting/reporting_builder.php:1262
+msgid "No data found."
+msgstr ""
+
+#: ../../include/functions_reporting.php:2714
+#: ../../godmode/alerts/alert_actions.php:74
+msgid "Alert actions"
+msgstr ""
+
+#: ../../include/functions_reporting.php:2823
+msgid "Agent/Modules"
+msgstr ""
+
+#: ../../include/functions_reporting.php:2864
+#: ../../extensions/agents_modules.php:750
+msgid "There are no agents with modules"
+msgstr ""
+
+#: ../../include/functions_reporting.php:2920
+msgid "Agent/Modules Status"
+msgstr ""
+
+#: ../../include/functions_reporting.php:3069
+msgid "Exception - Everything"
+msgstr ""
+
+#: ../../include/functions_reporting.php:3070
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2536
+#: ../../enterprise/godmode/reporting/reporting_builder.global.php:422
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2546
+msgid "Everything"
+msgstr ""
+
+#: ../../include/functions_reporting.php:3075
+#, php-format
+msgid "Exception - Modules over or equal to %s"
+msgstr ""
+
+#: ../../include/functions_reporting.php:3078
+#, php-format
+msgid "Modules over or equal to %s"
+msgstr ""
+
+#: ../../include/functions_reporting.php:3083
+#, php-format
+msgid "Exception - Modules under or equal to %s"
+msgstr ""
+
+#: ../../include/functions_reporting.php:3086
+#, php-format
+msgid "Modules under or equal to %s"
+msgstr ""
+
+#: ../../include/functions_reporting.php:3091
+#, php-format
+msgid "Exception - Modules under %s"
+msgstr ""
+
+#: ../../include/functions_reporting.php:3094
+#, php-format
+msgid "Modules under %s"
+msgstr ""
+
+#: ../../include/functions_reporting.php:3099
+#, php-format
+msgid "Exception - Modules over %s"
+msgstr ""
+
+#: ../../include/functions_reporting.php:3102
+#, php-format
+msgid "Modules over %s"
+msgstr ""
+
+#: ../../include/functions_reporting.php:3107
+#, php-format
+msgid "Exception - Equal to %s"
+msgstr ""
+
+#: ../../include/functions_reporting.php:3110
+#, php-format
+msgid "Equal to %s"
+msgstr ""
+
+#: ../../include/functions_reporting.php:3115
+#, php-format
+msgid "Exception - Not equal to %s"
+msgstr ""
+
+#: ../../include/functions_reporting.php:3118
+#, php-format
+msgid "Not equal to %s"
+msgstr ""
+
+#: ../../include/functions_reporting.php:3122
+msgid "Exception - Modules at normal status"
+msgstr ""
+
+#: ../../include/functions_reporting.php:3123
+msgid "Modules at normal status"
+msgstr ""
+
+#: ../../include/functions_reporting.php:3127
+msgid "Exception - Modules at critical or warning status"
+msgstr ""
+
+#: ../../include/functions_reporting.php:3128
+msgid "Modules at critical or warning status"
+msgstr ""
+
+#: ../../include/functions_reporting.php:3347
+msgid "There are no Modules under those conditions."
+msgstr ""
+
+#: ../../include/functions_reporting.php:3351
+#, php-format
+msgid "There are no Modules over or equal to %s."
+msgstr ""
+
+#: ../../include/functions_reporting.php:3355
+#, php-format
+msgid "There are no Modules less or equal to %s."
+msgstr ""
+
+#: ../../include/functions_reporting.php:3359
+#, php-format
+msgid "There are no Modules less %s."
+msgstr ""
+
+#: ../../include/functions_reporting.php:3363
+#, php-format
+msgid "There are no Modules over %s."
+msgstr ""
+
+#: ../../include/functions_reporting.php:3367
+#, php-format
+msgid "There are no Modules equal to %s"
+msgstr ""
+
+#: ../../include/functions_reporting.php:3371
+#, php-format
+msgid "There are no Modules not equal to %s"
+msgstr ""
+
+#: ../../include/functions_reporting.php:3375
+msgid "There are no Modules normal status"
+msgstr ""
+
+#: ../../include/functions_reporting.php:3379
+msgid "There are no Modules at critial or warning status"
+msgstr ""
+
+#: ../../include/functions_reporting.php:3536
+#: ../../enterprise/include/functions_reporting_csv.php:969
+msgid "Group Report"
+msgstr ""
+
+#: ../../include/functions_reporting.php:3716
+msgid "Event Report Agent"
+msgstr ""
+
+#: ../../include/functions_reporting.php:3945
+#: ../../enterprise/include/functions_reporting_csv.php:2175
+#: ../../enterprise/godmode/modules/configure_local_component.php:447
+#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:966
+#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:318
+#: ../../godmode/modules/manage_network_components_form_common.php:305
+#: ../../godmode/massive/massive_edit_modules.php:1042
+#: ../../godmode/agentes/module_manager_editor_common.php:532
+msgid "Historical data"
+msgstr ""
+
+#: ../../include/functions_reporting.php:4080
+msgid "Database Serialized"
+msgstr ""
+
+#: ../../include/functions_reporting.php:4276
+msgid "Last Value"
+msgstr ""
+
+#: ../../include/functions_reporting.php:4438
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3334
+msgid "Unnasigned group"
+msgstr ""
+
+#: ../../include/functions_reporting.php:4444
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3288
+msgid "Unassigned group"
+msgstr ""
+
+#: ../../include/functions_reporting.php:4600
+msgid "Network interfaces report"
+msgstr ""
+
+#: ../../include/functions_reporting.php:4694
+msgid "Custom render report"
+msgstr ""
+
+#: ../../include/functions_reporting.php:4734
+#: ../../include/functions_reporting.php:4760
+msgid ""
+"This query is insecure, it could apply unwanted modiffications on the schema"
+msgstr ""
+
+#: ../../include/functions_reporting.php:4991
+msgid "The group has no agents or none of the agents has any network interface"
+msgstr ""
+
+#: ../../include/functions_reporting.php:5012
+msgid "bytes/s"
+msgstr ""
+
+#: ../../include/functions_reporting.php:5132
+#: ../../enterprise/include/functions_reporting_csv.php:2447
+msgid "Alert Report Group"
+msgstr ""
+
+#: ../../include/functions_reporting.php:5219
+#: ../../include/functions_reporting.php:5236
+#: ../../include/functions_reporting.php:5253
+msgid "Not triggered"
+msgstr ""
+
+#: ../../include/functions_reporting.php:5312
+#: ../../enterprise/include/functions_reporting_csv.php:2445
+msgid "Alert Report Agent"
+msgstr ""
+
+#: ../../include/functions_reporting.php:5479
+#: ../../enterprise/include/functions_reporting_csv.php:2443
+msgid "Alert Report Module"
+msgstr ""
+
+#: ../../include/functions_reporting.php:5679
+msgid "SQL Graph Vertical Bars"
+msgstr ""
+
+#: ../../include/functions_reporting.php:5683
+msgid "SQL Graph Horizontal Bars"
+msgstr ""
+
+#: ../../include/functions_reporting.php:5687
+msgid "SQL Graph Pie"
+msgstr ""
+
+#: ../../include/functions_reporting.php:5771
+#: ../../enterprise/include/functions_reporting_csv.php:1415
+#: ../../enterprise/include/functions_reporting_csv.php:1433
+#: ../../enterprise/include/functions_reporting_csv.php:1435
+msgid "Monitor Report"
+msgstr ""
+
+#: ../../include/functions_reporting.php:5914
+msgid "Netflow Area"
+msgstr ""
+
+#: ../../include/functions_reporting.php:5918
+msgid "Netflow Summary"
+msgstr ""
+
+#: ../../include/functions_reporting.php:5922
+msgid "Netflow Data"
+msgstr ""
+
+#: ../../include/functions_reporting.php:5930
+msgid "Unknown report"
+msgstr ""
+
+#: ../../include/functions_reporting.php:6024
+msgid "Prediction Date"
+msgstr ""
+
+#: ../../include/functions_reporting.php:6129
+#: ../../enterprise/include/functions_reporting_csv.php:788
+msgid "Projection Graph"
+msgstr ""
+
+#: ../../include/functions_reporting.php:6427
+#: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:492
+#: ../../enterprise/include/functions_reporting_csv.php:1256
+#: ../../enterprise/godmode/modules/configure_local_component.php:466
+#: ../../godmode/modules/manage_network_components_form_common.php:310
+#: ../../godmode/agentes/module_manager_editor_common.php:668
+msgid "Max. Value"
+msgstr ""
+
+#: ../../include/functions_reporting.php:6431
+#: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:480
+#: ../../enterprise/include/functions_reporting_csv.php:1201
+#: ../../enterprise/godmode/modules/configure_local_component.php:461
+#: ../../godmode/modules/manage_network_components_form_common.php:308
+#: ../../godmode/agentes/module_manager_editor_common.php:664
+msgid "Min. Value"
+msgstr ""
+
+#: ../../include/functions_reporting.php:6440
+#: ../../enterprise/include/functions_reporting_csv.php:1360
+#: ../../enterprise/include/functions_reporting_csv.php:1379
+#: ../../enterprise/include/functions_reporting_csv.php:1381
+#: ../../enterprise/include/functions_reporting_csv.php:1387
+#: ../../enterprise/include/functions_reporting_csv.php:1389
+msgid "AVG. Value"
+msgstr ""
+
+#: ../../include/functions_reporting.php:6656
+#: ../../include/functions_reporting.php:6679
+#: ../../include/functions_reporting.php:6694
+#: ../../include/functions_reporting.php:6710
+#: ../../include/functions_reporting.php:6725
+#: ../../include/functions_reporting_html.php:3516
+#: ../../include/functions_reporting_html.php:3545
+#: ../../include/functions_reporting_html.php:3586
+#: ../../include/functions_reporting_html.php:3609
+#: ../../include/functions_reporting_html.php:3612
+#: ../../include/functions_reporting_html.php:3619
+#: ../../enterprise/include/functions_reporting_csv.php:1290
+#: ../../enterprise/include/functions_reporting_pdf.php:526
+#: ../../enterprise/include/functions_reporting_pdf.php:558
+#: ../../enterprise/include/functions_reporting_pdf.php:584
+#: ../../enterprise/include/functions_reporting_pdf.php:609
+#: ../../enterprise/include/functions_reporting_pdf.php:612
+#: ../../enterprise/include/functions_reporting_pdf.php:619
+msgid "Maximun"
+msgstr ""
+
+#: ../../include/functions_reporting.php:6674
+#: ../../include/functions_reporting_html.php:3585
+#: ../../include/functions_reporting_html.php:3592
+#: ../../include/functions_reporting_html.php:3600
+#: ../../include/functions_reporting_html.php:3611
+#: ../../include/functions_reporting_html.php:3616
+#: ../../enterprise/include/functions_reporting_csv.php:1235
+#: ../../enterprise/include/functions_reporting_csv.php:1290
+#: ../../enterprise/include/functions_reporting_csv.php:1394
+#: ../../enterprise/include/functions_reporting_pdf.php:583
+#: ../../enterprise/include/functions_reporting_pdf.php:590
+#: ../../enterprise/include/functions_reporting_pdf.php:597
+#: ../../enterprise/include/functions_reporting_pdf.php:611
+#: ../../enterprise/include/functions_reporting_pdf.php:616
+msgid "Lapse"
+msgstr ""
+
+#: ../../include/functions_reporting.php:6847
+#: ../../enterprise/include/functions_reporting_csv.php:1084
+#: ../../enterprise/godmode/reporting/mysql_builder.php:232
+msgid "SQL"
+msgstr ""
+
+#: ../../include/functions_reporting.php:6925
+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:8339
+#: ../../include/functions_reporting.php:9057
+msgid "No Address"
+msgstr ""
+
+#: ../../include/functions_reporting.php:9356
+msgid ""
+"The monitor have no data in this range of dates or monitor type is not "
+"numeric"
+msgstr ""
+
+#: ../../include/functions_reporting.php:9374
+msgid "The monitor type is not numeric"
+msgstr ""
+
+#: ../../include/functions_reporting.php:9739
+#: ../../enterprise/include/functions_reporting_csv.php:1235
+msgid "Minimum"
+msgstr ""
+
+#: ../../include/functions_reporting.php:9743
+msgid "Maximum"
+msgstr ""
+
+#: ../../include/functions_reporting.php:9748
+#: ../../enterprise/godmode/reporting/reporting_builder.global.php:262
+#: ../../enterprise/godmode/reporting/reporting_builder.global.php:392
+msgid "Rate"
+msgstr ""
+
+#: ../../include/functions_reporting.php:9847
+msgid "Automatic combined graph"
+msgstr ""
+
+#: ../../include/functions_reporting.php:10681
+msgid "Maximum of events shown"
+msgstr ""
+
+#: ../../include/functions_reporting.php:11257
+#: ../../include/functions_reporting.php:11281
+msgid "Server health"
+msgstr ""
+
+#: ../../include/functions_reporting.php:11257
+#, php-format
+msgid "%d Downed servers"
+msgstr ""
+
+#: ../../include/functions_reporting.php:11262
+#: ../../include/functions_reporting.php:11285
+msgid "Monitor health"
+msgstr ""
+
+#: ../../include/functions_reporting.php:11262
+#, php-format
+msgid "%d Not Normal monitors"
+msgstr ""
+
+#: ../../include/functions_reporting.php:11262
+#: ../../include/functions_reporting.php:11286
+msgid "of monitors up"
+msgstr ""
+
+#: ../../include/functions_reporting.php:11267
+#: ../../include/functions_reporting.php:11289
+msgid "Module sanity"
+msgstr ""
+
+#: ../../include/functions_reporting.php:11267
+#, php-format
+msgid "%d Not inited monitors"
+msgstr ""
+
+#: ../../include/functions_reporting.php:11267
+#: ../../include/functions_reporting.php:11290
+msgid "of total modules inited"
+msgstr ""
+
+#: ../../include/functions_reporting.php:11272
+#: ../../include/functions_reporting.php:11293
+#: ../../include/functions_reporting_html.php:4900
+msgid "Alert level"
+msgstr ""
+
+#: ../../include/functions_reporting.php:11272
+#: ../../include/functions_reporting.php:12384
+#: ../../include/functions_reporting.php:12394
+#, php-format
+msgid "%d Fired alerts"
+msgstr ""
+
+#: ../../include/functions_reporting.php:11272
+#: ../../include/functions_reporting.php:11294
+msgid "of defined alerts not fired"
+msgstr ""
+
+#: ../../include/functions_reporting.php:11333
+#: ../../enterprise/include/functions_reporting_csv.php:983
+msgid "Defined alerts"
+msgstr ""
+
+#: ../../include/functions_reporting.php:11344
+#: ../../include/functions_reporting.php:11501
+#: ../../include/functions_reporting.php:11515
+#: ../../include/functions_reporting.php:13854
+#: ../../include/functions_reporting.php:13929
+#: ../../include/functions_ui.php:4660 ../../include/functions_html.php:930
+#: ../../include/functions_html.php:3297 ../../include/functions_html.php:3789
+msgid "Enterprise version not installed"
+msgstr ""
+
+#: ../../include/functions_reporting.php:11366
+msgid "Defined and fired alerts"
+msgstr ""
+
+#: ../../include/functions_reporting.php:11420
+#: ../../enterprise/meta/monitoring/custom_fields_view.php:474
+msgid "Monitor normal"
+msgstr ""
+
+#: ../../include/functions_reporting.php:11431
+#: ../../enterprise/meta/monitoring/custom_fields_view.php:496
+msgid "Monitor not init"
+msgstr ""
+
+#: ../../include/functions_reporting.php:11451
+#: ../../include/functions_reporting.php:11457
+#: ../../enterprise/meta/monitoring/custom_fields_view.php:519
+msgid "Monitors by status"
+msgstr ""
+
+#: ../../include/functions_reporting.php:11504
+#: ../../include/functions_reporting_html.php:5569
+msgid "Monitor checks"
+msgstr ""
+
+#: ../../include/functions_reporting.php:11523
+#: ../../include/functions_reporting_html.php:5576
+msgid "Total agents and monitors"
+msgstr ""
+
+#: ../../include/functions_reporting.php:11545
+msgid "Defined users"
+msgstr ""
+
+#: ../../include/functions_reporting.php:12241
+msgid "Agent without data"
+msgstr ""
+
+#: ../../include/functions_reporting.php:12370
+#: ../../include/functions_reporting.php:12379
+#: ../../enterprise/operation/agentes/tag_view.php:1075
+#, php-format
+msgid "%d Total modules"
+msgstr ""
+
+#: ../../include/functions_reporting.php:12371
+#: ../../enterprise/operation/agentes/tag_view.php:1076
+#, php-format
+msgid "%d Modules in normal status"
+msgstr ""
+
+#: ../../include/functions_reporting.php:12372
+#: ../../enterprise/operation/agentes/tag_view.php:1077
+#, php-format
+msgid "%d Modules in critical status"
+msgstr ""
+
+#: ../../include/functions_reporting.php:12373
+#: ../../enterprise/operation/agentes/tag_view.php:1078
+#, php-format
+msgid "%d Modules in warning status"
+msgstr ""
+
+#: ../../include/functions_reporting.php:12374
+#: ../../enterprise/operation/agentes/tag_view.php:1079
+#, php-format
+msgid "%d Modules in unknown status"
+msgstr ""
+
+#: ../../include/functions_reporting.php:12375
+#: ../../enterprise/operation/agentes/tag_view.php:1080
+#, php-format
+msgid "%d Modules in not init status"
+msgstr ""
+
+#: ../../include/functions_reporting.php:12380
+#, php-format
+msgid "%d Normal modules"
+msgstr ""
+
+#: ../../include/functions_reporting.php:12381
+#, php-format
+msgid "%d Critical modules"
+msgstr ""
+
+#: ../../include/functions_reporting.php:12382
+#, php-format
+msgid "%d Warning modules"
+msgstr ""
+
+#: ../../include/functions_reporting.php:12383
+#, php-format
+msgid "%d Unknown modules"
+msgstr ""
+
+#: ../../include/functions_reporting.php:12388
+#, php-format
+msgid "%d Total agents"
+msgstr ""
+
+#: ../../include/functions_reporting.php:12389
+#, php-format
+msgid "%d Normal agents"
+msgstr ""
+
+#: ../../include/functions_reporting.php:12390
+#, php-format
+msgid "%d Critical agents"
+msgstr ""
+
+#: ../../include/functions_reporting.php:12391
+#, php-format
+msgid "%d Warning agents"
+msgstr ""
+
+#: ../../include/functions_reporting.php:12392
+#, php-format
+msgid "%d Unknown agents"
+msgstr ""
+
+#: ../../include/functions_reporting.php:12393
+#, php-format
+msgid "%d not init agents"
+msgstr ""
+
+#: ../../include/functions_reporting.php:13821
+msgid "Total running modules"
+msgstr ""
+
+#: ../../include/functions_reporting.php:13824
+#: ../../include/functions_reporting.php:13839
+#: ../../include/functions_reporting.php:13851
+#: ../../include/functions_reporting.php:13869
+#: ../../include/functions_reporting.php:13881
+#: ../../include/functions_reporting.php:13893
+#: ../../include/functions_reporting.php:13905
+msgid "Ratio"
+msgstr ""
+
+#: ../../include/functions_reporting.php:13824
+#: ../../include/functions_reporting.php:13839
+#: ../../include/functions_reporting.php:13851
+#: ../../include/functions_reporting.php:13869
+#: ../../include/functions_reporting.php:13881
+#: ../../include/functions_reporting.php:13893
+#: ../../include/functions_reporting.php:13905
+msgid "Modules by second"
+msgstr ""
+
+#: ../../include/functions_reporting.php:13836
+msgid "Local modules"
+msgstr ""
+
+#: ../../include/functions_reporting.php:13846
+msgid "Network modules"
+msgstr ""
+
+#: ../../include/functions_reporting.php:13865
+msgid "Plugin modules"
+msgstr ""
+
+#: ../../include/functions_reporting.php:13877
+msgid "Prediction modules"
+msgstr ""
+
+#: ../../include/functions_reporting.php:13889
+msgid "WMI modules"
+msgstr ""
+
+#: ../../include/functions_reporting.php:13901
+msgid "Web modules"
+msgstr ""
+
+#: ../../include/functions_reporting.php:14058
+msgid "Weekly:"
+msgstr ""
+
+#: ../../include/functions_reporting.php:14100
+msgid "Monthly:"
+msgstr ""
+
+#: ../../include/functions_reporting.php:14101
+msgid "From day"
+msgstr ""
+
+#: ../../include/functions_reporting.php:14102
+msgid "To day"
+msgstr ""
+
+#: ../../include/functions_reporting.php:14636
+msgid "Module Histogram Graph"
+msgstr ""
+
+#: ../../include/functions_reporting.php:15015
+#: ../../enterprise/include/functions_cron.php:1776
+msgid "Greetings"
+msgstr ""
+
+#: ../../include/functions_reporting.php:15017
+msgid "Attached to this email there's a PDF file of the"
+msgstr ""
+
+#: ../../include/functions_reporting.php:15018
+msgid "report"
+msgstr ""
+
+#: ../../include/functions_reporting.php:15021
+#: ../../enterprise/include/functions_cron.php:1780
+#: ../../mobile/include/ui.class.php:327
+#: ../../mobile/include/functions_web.php:84
+msgid "Generated at"
+msgstr ""
+
+#: ../../include/functions_reporting.php:15023
+#: ../../enterprise/include/functions_cron.php:1782
+msgid "Thanks for your time."
+msgstr ""
+
+#: ../../include/functions_reporting.php:15025
+#: ../../enterprise/include/functions_cron.php:1784
+msgid "Best regards, Pandora FMS"
+msgstr ""
+
+#: ../../include/functions_reporting.php:15027
+#: ../../enterprise/include/functions_cron.php:1786
+msgid ""
+"This is an automatically generated email from Pandora FMS, please do not "
+"reply."
+msgstr ""
+
+#: ../../include/functions_visual_map.php:1746
+#: ../../include/functions_visual_map.php:1748
+#: ../../include/rest-api/models/VisualConsole/Items/StaticGraph.php:275
+#: ../../include/rest-api/models/VisualConsole/Items/StaticGraph.php:279
+msgid "Last value: "
+msgstr ""
+
+#: ../../include/functions_visual_map.php:2566
+#: ../../include/functions_visual_map.php:2947
+#: ../../enterprise/godmode/policies/policy_agents.php:1152
+#: ../../godmode/massive/massive_add_alerts.php:100
+#: ../../godmode/massive/massive_delete_modules.php:87
+#: ../../godmode/massive/massive_add_action_alerts.php:75
+#: ../../godmode/massive/massive_edit_agents.php:172
+#: ../../godmode/massive/massive_delete_alerts.php:113
+#: ../../godmode/massive/massive_delete_agents.php:61
+msgid "No agents selected"
+msgstr ""
+
+#: ../../include/functions_visual_map.php:2632
+msgid "Agent successfully added to layout"
+msgstr ""
+
+#: ../../include/functions_visual_map.php:2674
+#: ../../enterprise/include/functions_massive.php:54
+#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:880
+#: ../../godmode/massive/massive_add_action_alerts.php:163
+#: ../../godmode/massive/massive_delete_action_alerts.php:175
+#: ../../godmode/massive/massive_edit_modules.php:1999
+#: ../../godmode/agentes/module_manager.php:274
+msgid "No modules selected"
+msgstr ""
+
+#: ../../include/functions_visual_map.php:2816
+msgid "Modules successfully added to layout"
+msgstr ""
+
+#: ../../include/functions_visual_map.php:3141
+msgid "Agents successfully added to layout"
+msgstr ""
+
+#: ../../include/functions_visual_map.php:3537
+msgid "Cannot load the visualmap"
+msgstr ""
+
+#: ../../include/functions_visual_map.php:4189
+#: ../../include/rest-api/models/VisualConsole/Item.php:2107
+msgid "Bars graph"
+msgstr ""
+
+#: ../../include/functions_visual_map.php:4199
+#: ../../include/rest-api/models/VisualConsole/Item.php:2115
+msgid "Percentile bar"
+msgstr ""
+
+#: ../../include/functions_visual_map.php:4204
+#: ../../include/rest-api/models/VisualConsole/Item.php:2123
+msgid "Circular progress bar"
+msgstr ""
+
+#: ../../include/functions_modules.php:4015
+msgid "Realtime SNMP graph"
+msgstr ""
+
+#: ../../include/functions_modules.php:4080
+msgid "ALL"
+msgstr ""
+
+#: ../../include/functions_modules.php:4096
+msgid "NOT NORMAL"
+msgstr ""
+
+#: ../../include/functions_planned_downtimes.php:40
+#: ../../include/functions_planned_downtimes.php:742
+#: ../../godmode/agentes/planned_downtime.editor.php:241
+msgid ""
+"Not created. Error inserting data. Start time must be higher than the "
+"current time"
+msgstr ""
+
+#: ../../include/functions_planned_downtimes.php:42
+#: ../../include/functions_planned_downtimes.php:47
+#: ../../include/functions_planned_downtimes.php:49
+#: ../../include/functions_planned_downtimes.php:747
+#: ../../include/functions_planned_downtimes.php:754
+#: ../../include/functions_planned_downtimes.php:762
+#: ../../include/functions_planned_downtimes.php:770
+#: ../../include/functions_planned_downtimes.php:775
+#: ../../include/functions_planned_downtimes.php:780
+#: ../../include/functions_planned_downtimes.php:785
+#: ../../include/functions_planned_downtimes.php:790
+#: ../../include/functions_planned_downtimes.php:795
+#: ../../include/functions_planned_downtimes.php:800
+#: ../../godmode/agentes/planned_downtime.editor.php:245
+#: ../../godmode/agentes/planned_downtime.editor.php:249
+#: ../../godmode/agentes/planned_downtime.editor.php:257
+#: ../../godmode/agentes/planned_downtime.editor.php:261
+msgid "Not created. Error inserting data"
+msgstr ""
+
+#: ../../include/functions_planned_downtimes.php:42
+#: ../../include/functions_planned_downtimes.php:754
+#: ../../godmode/agentes/planned_downtime.editor.php:245
+msgid "The end date must be higher than the start date"
+msgstr ""
+
+#: ../../include/functions_planned_downtimes.php:47
+#: ../../include/functions_planned_downtimes.php:762
+#: ../../godmode/agentes/planned_downtime.editor.php:257
+#: ../../godmode/agentes/planned_downtime.editor.php:716
+#: ../../godmode/agentes/planned_downtime.editor.php:729
+msgid "The end time must be higher than the start time"
+msgstr ""
+
+#: ../../include/functions_planned_downtimes.php:49
+#: ../../include/functions_planned_downtimes.php:770
+#: ../../godmode/agentes/planned_downtime.editor.php:261
+#: ../../godmode/agentes/planned_downtime.editor.php:701
+msgid "The end day must be higher than the start day"
+msgstr ""
+
+#: ../../include/functions_planned_downtimes.php:98
+#: ../../include/functions_planned_downtimes.php:814
+#: ../../godmode/agentes/planned_downtime.editor.php:313
+msgid "Each scheduled downtime must have a different name"
+msgstr ""
+
+#: ../../include/functions_planned_downtimes.php:103
+#: ../../include/functions_planned_downtimes.php:820
+#: ../../godmode/agentes/planned_downtime.editor.php:318
+#: ../../godmode/agentes/planned_downtime.editor.php:350
+msgid "Scheduled downtime must have a name"
+msgstr ""
+
+#: ../../include/functions_planned_downtimes.php:575
+msgid "Succesful stopped the Downtime"
+msgstr ""
+
+#: ../../include/functions_planned_downtimes.php:576
+msgid "Unsuccesful stopped the Downtime"
+msgstr ""
+
+#: ../../include/functions_planned_downtimes.php:716
+#, php-format
+msgid "Enabled %s elements from the downtime"
+msgstr ""
+
+#: ../../include/functions_planned_downtimes.php:747
+#: ../../godmode/agentes/planned_downtime.editor.php:249
+msgid "The end date must be higher than the current time"
+msgstr ""
+
+#: ../../include/functions_planned_downtimes.php:775
+msgid "The downtime must be quiet, disable_agents or disable_agents_alerts"
+msgstr ""
+
+#: ../../include/functions_planned_downtimes.php:780
+msgid "The execution must be once or periodically"
+msgstr ""
+
+#: ../../include/functions_planned_downtimes.php:785
+msgid "The periodicity must be weekly or monthly"
+msgstr ""
+
+#: ../../include/functions_planned_downtimes.php:790
+msgid "There is no user with such id"
+msgstr ""
+
+#: ../../include/functions_planned_downtimes.php:795
+msgid "There is no group with such id"
+msgstr ""
+
+#: ../../include/functions_planned_downtimes.php:800
+msgid "Date is wrong formatted"
+msgstr ""
+
+#: ../../include/functions_planned_downtimes.php:907
+msgid "This scheduled downtime are executed now. Can't delete in this moment."
+msgstr ""
+
+#: ../../include/functions_planned_downtimes.php:914
+msgid "Deleted this scheduled downtime successfully."
+msgstr ""
+
+#: ../../include/functions_planned_downtimes.php:916
+msgid "Problems for deleted this scheduled downtime."
+msgstr ""
+
+#: ../../include/functions_planned_downtimes.php:949
+#: ../../include/functions_maps.php:73
+#: ../../include/functions_networkmap.php:2068
+msgid "Copy of "
+msgstr ""
+
+#: ../../include/functions_planned_downtimes.php:958
+#: ../../enterprise/godmode/reporting/reporting_builder.template.php:456
+#: ../../enterprise/godmode/policies/policies.php:236
+#: ../../godmode/reporting/reporting_builder.php:738
+#: ../../godmode/alerts/alert_actions.php:130
+#: ../../godmode/alerts/alert_commands.php:626
+msgid "Could not be copied"
+msgstr ""
+
+#: ../../include/functions_planned_downtimes.php:976
+msgid "Error adding agents to copied downtime"
+msgstr ""
+
+#: ../../include/functions_planned_downtimes.php:999
+msgid "Error adding module to copied downtime"
+msgstr ""
+
+#: ../../include/api.php:237
+msgid "User or group not specified"
+msgstr ""
+
+#: ../../include/api.php:238
+msgid "User, group not specified"
+msgstr ""
+
+#: ../../include/api.php:269
+msgid "User, group or profile not specified"
+msgstr ""
+
+#: ../../include/api.php:270
+msgid "User, group or profile status not specified"
+msgstr ""
+
+#: ../../include/graphs/functions_flot.php:365
+msgid "Cancel zoom"
+msgstr ""
+
+#: ../../include/graphs/functions_flot.php:367
+msgid "Warning and Critical thresholds"
+msgstr ""
+
+#: ../../include/graphs/functions_flot.php:372
+msgid "Overview graph"
+msgstr ""
+
+#: ../../include/graphs/export_data.php:88
+#: ../../include/graphs/export_data.php:154
+msgid "An error occured exporting the data"
+msgstr ""
+
+#: ../../include/graphs/export_data.php:100
+#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:141
+msgid "Selected"
+msgstr ""
+
+#: ../../include/functions_register.php:105
+#, php-format
+msgid "%s configuration wizard"
+msgstr ""
+
+#: ../../include/functions_register.php:108
+#, php-format
+msgid ""
+"Please fill the following information in order to configure your %s instance "
+"successfully"
+msgstr ""
+
+#: ../../include/functions_register.php:122
+#: ../../godmode/setup/setup_general.php:77
+msgid "Language code"
+msgstr ""
+
+#: ../../include/functions_register.php:165
+msgid ""
+"Must have the same time zone as the system or database to avoid mismatches "
+"of time."
+msgstr ""
+
+#: ../../include/functions_register.php:171
+msgid "E-mail for receiving alerts"
+msgstr ""
+
+#: ../../include/functions_register.php:196
+msgid "All fields required"
+msgstr ""
+
+#: ../../include/functions_register.php:205
+msgid "Are you sure you don't want to configure a base email?"
+msgstr ""
+
+#: ../../include/functions_register.php:207
+msgid ""
+"You could change this options later in \"alert actions\" and setting your "
+"account."
+msgstr ""
+
+#: ../../include/functions_maps.php:38
+#: ../../include/functions_networkmap.php:1307
+msgid "Topology"
+msgstr ""
+
+#: ../../include/functions_profile.php:216
+#: ../../enterprise/godmode/setup/setup_auth.php:175
+#: ../../enterprise/godmode/setup/setup_auth.php:232
+msgid "No hierarchy"
+msgstr ""
+
+#: ../../include/functions_ui.php:287
+msgid "Information"
+msgstr ""
+
+#: ../../include/functions_ui.php:465
+msgid "Request successfully processed"
+msgstr ""
+
+#: ../../include/functions_ui.php:469
+msgid "Error processing request"
+msgstr ""
+
+#: ../../include/functions_ui.php:625
+msgid ""
+"Is possible that this view uses part of information which your user has not "
+"access"
+msgstr ""
+
+#: ../../include/functions_ui.php:874
+msgid "Software"
+msgstr ""
+
+#: ../../include/functions_ui.php:1323
+#: ../../godmode/alerts/configure_alert_template.php:1218
+#: ../../godmode/alerts/alert_view.php:175
+msgid "The alert would fire when the value is <span id=\"value\"></span>"
+msgstr ""
+
+#: ../../include/functions_ui.php:1328
+#: ../../godmode/alerts/configure_alert_template.php:1219
+#: ../../godmode/alerts/alert_view.php:180
+msgid "The alert would fire when the value is not <span id=\"value\"></span>"
+msgstr ""
+
+#: ../../include/functions_ui.php:1334
+#: ../../godmode/alerts/configure_alert_template.php:1216
+#: ../../godmode/alerts/alert_view.php:166
+msgid "The alert would fire when the value matches <span id=\"value\"></span>"
+msgstr ""
+
+#: ../../include/functions_ui.php:1337 ../../godmode/alerts/alert_view.php:168
+msgid ""
+"The alert would fire when the value doesn't match <span id=\"value\"></span>"
+msgstr ""
+
+#: ../../include/functions_ui.php:1346
+#: ../../godmode/alerts/configure_alert_template.php:1220
+#: ../../godmode/alerts/alert_view.php:187
+msgid ""
+"The alert would fire when the value is between <span id=\"min\"></span> and "
+"<span id=\"max\"></span>"
+msgstr ""
+
+#: ../../include/functions_ui.php:1349 ../../godmode/alerts/alert_view.php:191
+msgid ""
+"The alert would fire when the value is not between <span id=\"min\"></span> "
+"and <span id=\"max\"></span>"
+msgstr ""
+
+#: ../../include/functions_ui.php:1355
+msgid "The alert would fire when the value is over <span id=\"max\"></span>"
+msgstr ""
+
+#: ../../include/functions_ui.php:1360
+msgid "The alert would fire when the value is under <span id=\"min\"></span>"
+msgstr ""
+
+#: ../../include/functions_ui.php:1365
+#: ../../godmode/alerts/configure_alert_template.php:1224
+#: ../../godmode/alerts/alert_view.php:218
+msgid "The alert would fire when the module is in warning status"
+msgstr ""
+
+#: ../../include/functions_ui.php:1370
+#: ../../godmode/alerts/configure_alert_template.php:1225
+#: ../../godmode/alerts/alert_view.php:222
+msgid "The alert would fire when the module is in critical status"
+msgstr ""
+
+#: ../../include/functions_ui.php:1375
+msgid "Unknown option."
+msgstr ""
+
+#: ../../include/functions_ui.php:2107 ../../include/functions_ui.php:2133
+#, php-format
+msgid "Total items: %s"
+msgstr ""
+
+#: ../../include/functions_ui.php:2534
+msgid "Unknown type"
+msgstr ""
+
+#: ../../include/functions_ui.php:3414
+#: ../../enterprise/include/class/DatabaseHA.class.php:217
+#: ../../enterprise/meta/monitoring/custom_fields_view.php:347
+#: ../../enterprise/meta/monitoring/custom_fields_view.php:349
+#: ../../godmode/wizards/DiscoveryTaskList.class.php:1861
+msgid "Processing"
+msgstr ""
+
+#: ../../include/functions_ui.php:3502 ../../include/functions_ui.php:3503
+msgid "Export current page to CSV"
+msgstr ""
+
+#: ../../include/functions_ui.php:5042
+msgid "Type at least two characters to search."
+msgstr ""
+
+#: ../../include/functions_ui.php:5780 ../../include/functions_html.php:5265
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3678
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3930
+#: ../../godmode/reporting/create_container.php:418
+#: ../../godmode/reporting/reporting_builder.item_editor.php:1661
+#: ../../godmode/reporting/reporting_builder.item_editor.php:4027
+#: ../../godmode/reporting/reporting_builder.item_editor.php:4064
+#: ../../godmode/reporting/reporting_builder.item_editor.php:4233
+#: ../../godmode/reporting/reporting_builder.item_editor.php:4506
+#: ../../godmode/reporting/reporting_builder.item_editor.php:4540
+#: ../../godmode/reporting/reporting_builder.item_editor.php:4594
+msgid "Select an Agent first"
+msgstr ""
+
+#: ../../include/functions_ui.php:5981
+msgid "Unhandled error"
+msgstr ""
+
+#: ../../include/functions_ui.php:5982
+msgid "An unhandled error occurs"
+msgstr ""
+
+#: ../../include/functions_ui.php:6227
+#: ../../enterprise/operation/agentes/tag_view.php:873
+#: ../../enterprise/operation/agentes/tag_view.php:883
+#: ../../enterprise/operation/agentes/wux_console_view.php:352
+#: ../../enterprise/operation/agentes/ux_console_view.php:102
+#: ../../enterprise/operation/agentes/ux_console_view.php:297
+#: ../../enterprise/operation/agentes/ux_console_view.php:377
+#: ../../enterprise/include/functions_ux_console.php:507
+msgid "Snapshot view"
+msgstr ""
+
+#: ../../include/functions_ui.php:6253
+#, php-format
+msgid ""
+"These controls are using the timezone of the system (%s) instead of yours "
+"(%s). The difference with your time zone in hours is %s."
+msgstr ""
+
+#: ../../include/functions_ui.php:6557
+#: ../../enterprise/include/class/CommandCenter.class.php:452
+msgid "Query"
+msgstr ""
+
+#: ../../include/functions_ui.php:6574
+msgid "Execute query"
+msgstr ""
+
+#: ../../include/functions_ui.php:6596
+msgid "Results"
+msgstr ""
+
+#: ../../include/functions_ui.php:6660
+msgid "Show password"
+msgstr ""
+
+#: ../../include/functions_integriaims.php:42
+msgid "Configure Integria IMS"
+msgstr ""
+
+#: ../../include/functions_integriaims.php:43
+msgid "Ticket list"
+msgstr ""
+
+#: ../../include/functions_integriaims.php:44
+msgid "New ticket"
+msgstr ""
+
+#: ../../include/functions_integriaims.php:73
+msgid "Edit ticket"
+msgstr ""
+
+#: ../../include/functions_integriaims.php:74
+msgid "View ticket"
+msgstr ""
+
+#: ../../include/functions_integriaims.php:307
+msgid ""
+"API request failed. Please check Integria IMS' access credentials in Pandora "
+"setup."
+msgstr ""
+
+#: ../../include/functions_integriaims.php:557
+msgid "File successfully added"
+msgstr ""
+
+#: ../../include/functions_integriaims.php:558
+msgid "File could not be added"
+msgstr ""
+
+#: ../../include/functions_integriaims.php:561
+msgid "File has an invalid extension"
+msgstr ""
+
+#: ../../include/rest-api/models/VisualConsole/Item.php:1958
+#: ../../godmode/setup/gis_step_2.php:364
+msgid "Top"
+msgstr ""
+
+#: ../../include/rest-api/models/VisualConsole/Item.php:1959
+#: ../../godmode/setup/gis_step_2.php:357
+msgid "Right"
+msgstr ""
+
+#: ../../include/rest-api/models/VisualConsole/Item.php:1960
+#: ../../godmode/setup/gis_step_2.php:343
+msgid "Left"
+msgstr ""
+
+#: ../../include/rest-api/models/VisualConsole/Item.php:1964
+msgid "Label position"
+msgstr ""
+
+#: ../../include/rest-api/models/VisualConsole/Item.php:1994
+#: ../../include/rest-api/models/VisualConsole/Items/Box.php:217
+msgid "width"
+msgstr ""
+
+#: ../../include/rest-api/models/VisualConsole/Item.php:2004
+#: ../../include/rest-api/models/VisualConsole/Items/Box.php:227
+msgid "height"
+msgstr ""
+
+#: ../../include/rest-api/models/VisualConsole/Item.php:2026
+#: ../../include/rest-api/models/VisualConsole/Items/Box.php:249
+msgid "X"
+msgstr ""
+
+#: ../../include/rest-api/models/VisualConsole/Item.php:2036
+#: ../../include/rest-api/models/VisualConsole/Items/Box.php:259
+#: ../../include/functions.php:491 ../../include/functions.php:643
+msgid "Y"
+msgstr ""
+
+#: ../../include/rest-api/models/VisualConsole/Item.php:2051
+msgid "Link enabled"
+msgstr ""
+
+#: ../../include/rest-api/models/VisualConsole/Item.php:2063
+#: ../../include/rest-api/models/VisualConsole/Items/NetworkLink.php:950
+#: ../../include/rest-api/models/VisualConsole/Items/Line.php:499
+#: ../../include/rest-api/models/VisualConsole/Items/Box.php:273
+msgid "Show on top"
+msgstr ""
+
+#: ../../include/rest-api/models/VisualConsole/Item.php:2093
+msgid "Static graph"
+msgstr ""
+
+#: ../../include/rest-api/models/VisualConsole/Item.php:2111
+msgid "Event History Graph"
+msgstr ""
+
+#: ../../include/rest-api/models/VisualConsole/Item.php:2119
+msgid "Percentile bubble"
+msgstr ""
+
+#: ../../include/rest-api/models/VisualConsole/Item.php:2584
+#: ../../include/rest-api/models/VisualConsole/Item.php:2585
+msgid "Image Vc"
+msgstr ""
+
+#: ../../include/rest-api/models/VisualConsole/Items/BasicChart.php:325
+msgid "Module name color"
+msgstr ""
+
+#: ../../include/rest-api/models/VisualConsole/Items/StaticGraph.php:402
+msgid "Show Last Value"
+msgstr ""
+
+#: ../../include/rest-api/models/VisualConsole/Items/ColorCloud.php:438
+msgid "Add new range"
+msgstr ""
+
+#: ../../include/rest-api/models/VisualConsole/Items/ColorCloud.php:495
+msgid "Current ranges"
+msgstr ""
+
+#: ../../include/rest-api/models/VisualConsole/Items/SimpleValue.php:365
+msgid "Avg Value"
+msgstr ""
+
+#: ../../include/rest-api/models/VisualConsole/Items/SimpleValue.php:366
+#: ../../include/functions_reporting_html.php:997
+#: ../../include/functions_reporting_html.php:2235
+#: ../../include/functions_reporting_html.php:4247
+#: ../../include/functions_reporting_html.php:4788
+msgid "Max Value"
+msgstr ""
+
+#: ../../include/rest-api/models/VisualConsole/Items/SimpleValue.php:367
+#: ../../include/functions_reporting_html.php:995
+#: ../../include/functions_reporting_html.php:2233
+#: ../../include/functions_reporting_html.php:4249
+#: ../../include/functions_reporting_html.php:4785
+msgid "Min Value"
+msgstr ""
+
+#: ../../include/rest-api/models/VisualConsole/Items/BarsGraph.php:487
+#: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:658
+msgid "Graph Type"
+msgstr ""
+
+#: ../../include/rest-api/models/VisualConsole/Items/NetworkLink.php:538
+#: ../../include/rest-api/models/VisualConsole/Items/NetworkLink.php:619
+#: ../../include/rest-api/models/VisualConsole/Items/Odometer.php:280
+#: ../../include/rest-api/models/VisualConsole/View.php:712
+#: ../../include/rest-api/models/VisualConsole/View.php:791
+msgid "Failed to connect to node"
+msgstr ""
+
+#: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:567
+#: ../../enterprise/include/functions_reporting_csv.php:2298
+msgid "Custom Graph"
+msgstr ""
+
+#: ../../include/rest-api/models/VisualConsole/Items/Box.php:311
+msgid "Border Width"
+msgstr ""
+
+#: ../../include/rest-api/models/VisualConsole/Items/Box.php:335
+msgid "Fill transparent"
+msgstr ""
+
+#: ../../include/rest-api/models/VisualConsole/Items/Odometer.php:416
+msgid "Title color"
+msgstr ""
+
+#: ../../include/rest-api/models/VisualConsole/Items/EventsHistory.php:270
+msgid "12h"
+msgstr ""
+
+#: ../../include/rest-api/models/VisualConsole/Items/EventsHistory.php:290
+msgid "Legend color"
+msgstr ""
+
+#: ../../include/rest-api/models/VisualConsole/View.php:66
+msgid "Label settings"
+msgstr ""
+
+#: ../../include/rest-api/models/VisualConsole/View.php:72
+#: ../../include/rest-api/models/VisualConsole/View.php:104
+msgid "General settings"
+msgstr ""
+
+#: ../../include/rest-api/models/VisualConsole/View.php:78
+#: ../../include/rest-api/models/VisualConsole/View.php:94
+#: ../../include/rest-api/models/VisualConsole/View.php:110
+msgid "Specific settings"
+msgstr ""
+
+#: ../../include/rest-api/models/VisualConsole/View.php:213
+msgid "Item type not valid ["
+msgstr ""
+
+#: ../../include/rest-api/models/VisualConsole/View.php:218
+msgid "Item type has no getFormInputs method ["
+msgstr ""
+
+#: ../../include/rest-api/models/VisualConsole/View.php:729
+msgid "NetworkLink from"
+msgstr ""
+
+#: ../../include/rest-api/models/VisualConsole/View.php:733
+#: ../../include/rest-api/models/VisualConsole/View.php:812
+#, php-format
+msgid "Interface %s status"
+msgstr ""
+
+#: ../../include/rest-api/models/VisualConsole/View.php:808
+msgid "NetworkLink to"
+msgstr ""
+
+#: ../../include/rest-api/models/VisualConsole/View.php:860
+#, php-format
+msgid "Failed to generate charts: %s"
+msgstr ""
+
+#: ../../include/functions_html.php:595 ../../include/functions_html.php:969
+msgid "Please select an item from this list."
+msgstr ""
+
+#: ../../include/functions_html.php:621 ../../include/functions_html.php:5716
+msgid "Please select..."
+msgstr ""
+
+#: ../../include/functions_html.php:1582
+msgid "Type to search agents"
+msgstr ""
+
+#: ../../include/functions_html.php:1596
+msgid "Type to search modules"
+msgstr ""
+
+#: ../../include/functions_html.php:1659 ../../include/functions_html.php:1678
+#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:265
+#: ../../extensions/agents_modules.php:436
+#: ../../extensions/agents_modules.php:439
+#: ../../godmode/reporting/reporting_builder.item_editor.php:1777
+#: ../../godmode/massive/massive_add_alerts.php:264
+#: ../../godmode/massive/massive_delete_modules.php:555
+#: ../../godmode/massive/massive_add_action_alerts.php:224
+#: ../../godmode/massive/massive_delete_action_alerts.php:245
+#: ../../godmode/massive/massive_delete_alerts.php:339
+#: ../../godmode/massive/massive_edit_modules.php:528
+#: ../../godmode/agentes/planned_downtime.editor.php:811
+msgid "Show common modules"
+msgstr ""
+
+#: ../../include/functions_html.php:1660
+#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:266
+#: ../../extensions/agents_modules.php:437
+#: ../../godmode/reporting/reporting_builder.item_editor.php:1778
+#: ../../godmode/massive/massive_add_alerts.php:265
+#: ../../godmode/massive/massive_delete_modules.php:556
+#: ../../godmode/massive/massive_add_action_alerts.php:225
+#: ../../godmode/massive/massive_delete_action_alerts.php:246
+#: ../../godmode/massive/massive_delete_alerts.php:340
+#: ../../godmode/massive/massive_edit_modules.php:529
+#: ../../godmode/agentes/planned_downtime.editor.php:812
+msgid "Show all modules"
+msgstr ""
+
+#: ../../include/functions_html.php:1667
+msgid "Only common modules"
+msgstr ""
+
+#: ../../include/functions_html.php:1838 ../../include/functions_html.php:1939
+#: ../../include/functions_html.php:2077
+#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:552
+#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:573
+#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:643
+#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:664
+#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:695
+#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:704
+#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:763
+#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:786
+#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:807
+#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:811
+#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:822
+#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:842
+#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:867
+#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:883
+#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:944
+#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:967
+#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:985
+#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:991
+#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1004
+#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1032
+#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1134
+#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:28
+#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:315
+#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:330
+#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:510
+#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:524
+#: ../../godmode/massive/massive_edit_agents.php:669
+#: ../../godmode/massive/massive_edit_agents.php:694
+#: ../../godmode/massive/massive_edit_agents.php:711
+#: ../../godmode/massive/massive_edit_agents.php:725
+#: ../../godmode/massive/massive_edit_agents.php:749
+#: ../../godmode/massive/massive_edit_agents.php:859
+#: ../../godmode/massive/massive_edit_agents.php:906
+#: ../../godmode/massive/massive_edit_agents.php:981
+#: ../../godmode/massive/massive_edit_agents.php:985
+#: ../../godmode/massive/massive_edit_agents.php:994
+#: ../../godmode/massive/massive_edit_agents.php:1022
+#: ../../godmode/massive/massive_edit_agents.php:1091
+#: ../../godmode/massive/massive_edit_modules.php:615
+#: ../../godmode/massive/massive_edit_modules.php:637
+#: ../../godmode/massive/massive_edit_modules.php:706
+#: ../../godmode/massive/massive_edit_modules.php:728
+#: ../../godmode/massive/massive_edit_modules.php:759
+#: ../../godmode/massive/massive_edit_modules.php:768
+#: ../../godmode/massive/massive_edit_modules.php:827
+#: ../../godmode/massive/massive_edit_modules.php:845
+#: ../../godmode/massive/massive_edit_modules.php:864
+#: ../../godmode/massive/massive_edit_modules.php:868
+#: ../../godmode/massive/massive_edit_modules.php:879
+#: ../../godmode/massive/massive_edit_modules.php:899
+#: ../../godmode/massive/massive_edit_modules.php:924
+#: ../../godmode/massive/massive_edit_modules.php:936
+#: ../../godmode/massive/massive_edit_modules.php:997
+#: ../../godmode/massive/massive_edit_modules.php:1043
+#: ../../godmode/massive/massive_edit_modules.php:1061
+#: ../../godmode/massive/massive_edit_modules.php:1067
+#: ../../godmode/massive/massive_edit_modules.php:1080
+#: ../../godmode/massive/massive_edit_modules.php:1108
+#: ../../godmode/massive/massive_edit_modules.php:1212
+msgid "No change"
+msgstr ""
+
+#: ../../include/functions_html.php:2110 ../../include/functions.php:500
+#: ../../include/functions.php:631
+#: ../../enterprise/include/ajax/log_viewer.ajax.php:280
+#: ../../enterprise/meta/advanced/metasetup.visual.php:385
+#: ../../godmode/setup/setup_visuals.php:1345 ../../godmode/db/db_main.php:86
+#: ../../godmode/db/db_main.php:92
+msgid "days"
+msgstr ""
+
+#: ../../include/functions_html.php:2111
+msgid "weeks"
+msgstr ""
+
+#: ../../include/functions_html.php:2112 ../../include/functions.php:501
+#: ../../include/functions.php:632
+#: ../../enterprise/meta/advanced/metasetup.visual.php:386
+#: ../../godmode/setup/setup_visuals.php:1346
+msgid "months"
+msgstr ""
+
+#: ../../include/functions_html.php:2113 ../../include/functions.php:502
+#: ../../include/functions.php:633
+#: ../../enterprise/meta/advanced/metasetup.visual.php:387
+#: ../../godmode/setup/setup_visuals.php:1347
+msgid "years"
+msgstr ""
+
+#: ../../include/functions_html.php:2273
+msgid "Month day"
+msgstr ""
+
+#: ../../include/functions_html.php:2274
+#: ../../enterprise/include/functions_reporting_csv.php:1737
+#: ../../enterprise/include/functions_reporting_csv.php:2045
+msgid "Month"
+msgstr ""
+
+#: ../../include/functions_html.php:2275
+msgid "Week day"
+msgstr ""
+
+#: ../../include/functions_html.php:4486
+msgid "Type at least two characters to search the module."
+msgstr ""
+
+#: ../../include/functions_html.php:4647 ../../index.php:483
+#: ../../index.php:760 ../../index.php:834
+#, php-format
+msgid "%s cannot verify the origin of the request. Try again, please."
+msgstr ""
+
+#: ../../include/functions_html.php:5471
+msgid "Type at least two characters to search the user."
+msgstr ""
+
+#: ../../include/functions_html.php:5860
+msgid "Primary group cannot be secondary too."
+msgstr ""
+
+#: ../../include/functions_html.php:5874
+#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:575
+#: ../../godmode/massive/massive_edit_agents.php:804
+msgid "Add secondary groups"
+msgstr ""
+
+#: ../../include/functions_html.php:5887
+#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:582
+#: ../../godmode/massive/massive_edit_agents.php:830
+msgid "Remove secondary groups"
+msgstr ""
+
+#: ../../include/functions_networkmap.php:1303
+msgid "Radial dynamic"
+msgstr ""
+
+#: ../../include/functions_networkmap.php:1332
+msgid "Create a new topology map"
+msgstr ""
+
+#: ../../include/functions_networkmap.php:1333
+msgid "Create a new group map"
+msgstr ""
+
+#: ../../include/functions_networkmap.php:1334
+msgid "Create a new dynamic map"
+msgstr ""
+
+#: ../../include/functions_networkmap.php:1336
+msgid "Create a new radial dynamic map"
+msgstr ""
+
+#: ../../include/functions_networkmap.php:3404
+msgid "Map not found."
+msgstr ""
+
+#: ../../include/functions.php:231
+msgid "."
+msgstr ""
+
+#: ../../include/functions.php:233
+msgid ","
+msgstr ""
+
+#: ../../include/functions.php:488 ../../include/functions.php:640
+msgid "s"
+msgstr ""
+
+#: ../../include/functions.php:489 ../../include/functions.php:641
+msgid "d"
+msgstr ""
+
+#: ../../include/functions.php:490 ../../include/functions.php:642
+msgid "M"
+msgstr ""
+
+#: ../../include/functions.php:492 ../../include/functions.php:644
+msgid "m"
+msgstr ""
+
+#: ../../include/functions.php:493 ../../include/functions.php:645
+msgid "h"
+msgstr ""
+
+#: ../../include/functions.php:494 ../../include/functions.php:646
+msgid "N"
+msgstr ""
+
+#: ../../include/functions.php:1226
+msgid "Monitor Unknown"
+msgstr ""
+
+#: ../../include/functions.php:1233
+msgid "Agent created"
+msgstr ""
+
+#: ../../include/functions.php:1354 ../../include/functions.php:1384
+msgid "ALERT FIRED"
+msgstr ""
+
+#: ../../include/functions.php:2680
+#: ../../godmode/reporting/create_container.php:345
+msgid "custom"
+msgstr ""
+
+#: ../../include/functions.php:2686
+#, php-format
+msgid "%s seconds"
+msgstr ""
+
+#: ../../include/functions.php:2689 ../../include/functions.php:2690
+#, php-format
+msgid "%s minutes"
+msgstr ""
+
+#: ../../include/functions.php:2698 ../../include/functions.php:2699
+#, php-format
+msgid "%s months"
+msgstr ""
+
+#: ../../include/functions.php:2701 ../../include/functions.php:2702
+#, php-format
+msgid "%s years"
+msgstr ""
+
+#: ../../include/functions.php:2704
+msgid "Default values will be used"
+msgstr ""
+
+#: ../../include/functions.php:2889 ../../include/functions.php:2894
+msgid "The file exceeds the maximum size"
+msgstr ""
+
+#: ../../include/functions.php:2890
+msgid ""
+"Please check this PHP runtime variable values: <pre>  upload_max_filesize "
+"(currently "
+msgstr ""
+
+#: ../../include/functions.php:2898
+msgid "The uploaded file was only partially uploaded"
+msgstr ""
+
+#: ../../include/functions.php:2902
+msgid "No file was uploaded"
+msgstr ""
+
+#: ../../include/functions.php:2906
+msgid "Missing a temporary folder"
+msgstr ""
+
+#: ../../include/functions.php:2910
+msgid "Failed to write file to disk"
+msgstr ""
+
+#: ../../include/functions.php:2914
+msgid "File upload stopped by extension"
+msgstr ""
+
+#: ../../include/functions.php:2918
+msgid "Unknown upload error"
+msgstr ""
+
+#: ../../include/functions.php:3029
+msgid "No data found to export"
+msgstr ""
+
+#: ../../include/functions.php:3349
+#: ../../enterprise/include/lib/Metaconsole/Node.php:1195
+#: ../../enterprise/include/lib/Metaconsole/Node.php:1196
+#: ../../enterprise/include/functions_HA_cluster.php:58
+#: ../../enterprise/godmode/agentes/agent_autoconfiguration.php:174
+#: ../../enterprise/godmode/agentes/plugins_manager.php:195
+#: ../../enterprise/godmode/agentes/plugins_manager.php:271
+#: ../../enterprise/godmode/policies/policy_alerts.php:714
+#: ../../godmode/extensions.php:259
+#: ../../godmode/alerts/alert_list.list.php:1003
+#: ../../godmode/users/user_list.php:740
+msgid "Disable"
+msgstr ""
+
+#: ../../include/functions.php:3352
+msgid "15 seconds"
+msgstr ""
+
+#: ../../include/functions.php:3357
+msgid "15 minutes"
+msgstr ""
+
+#: ../../include/functions.php:3873
+msgid "Summatory series"
+msgstr ""
+
+#: ../../include/functions.php:3877
+msgid "Average series"
+msgstr ""
+
+#: ../../include/functions.php:3905 ../../include/functions.php:3924
+#: ../../include/functions.php:3938 ../../include/functions.php:3960
+#: ../../include/functions.php:4041 ../../include/functions.php:4113
+msgid "Unit "
+msgstr ""
+
+#: ../../include/functions.php:3973
+#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:187
+#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:242
+#: ../../godmode/reporting/graph_builder.graph_editor.php:215
+#: ../../godmode/reporting/graph_builder.graph_editor.php:345
+msgid "Weight"
+msgstr ""
+
+#: ../../include/functions.php:3986 ../../include/functions.php:4051
+msgid "Min:"
+msgstr ""
+
+#: ../../include/functions.php:3993 ../../include/functions.php:4058
+msgid "Max:"
+msgstr ""
+
+#: ../../include/functions.php:4000 ../../include/functions.php:4065
+msgid "Avg:"
+msgstr ""
+
+#: ../../include/functions.php:4108 ../../include/functions.php:4116
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2502
+#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:576
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2522
+#: ../../godmode/reporting/graph_builder.main.php:245
+msgid "Percentil"
+msgstr ""
+
+#: ../../include/functions.php:4110 ../../include/functions.php:4118
+msgid "of module"
+msgstr ""
+
+#: ../../include/functions.php:4135
+msgid "Projection"
+msgstr ""
+
+#: ../../include/functions.php:5953
+msgid "Testing Pandora FMS email"
+msgstr ""
+
+#: ../../include/functions.php:5966
+msgid ""
+"This is an email test sent from Pandora FMS. If you can read this, your "
+"configuration works."
+msgstr ""
+
+#: ../../include/get_file.php:39
+msgid "Security error. Please contact the administrator."
+msgstr ""
+
+#: ../../include/get_file.php:74
+msgid "File is missing in disk storage. Please contact the administrator."
+msgstr ""
+
+#: ../../include/functions_reporting_html.php:109
+msgid "Label: "
+msgstr ""
+
+#: ../../include/functions_reporting_html.php:138
+#: ../../enterprise/include/functions_reporting_csv.php:2220
+#: ../../enterprise/include/functions_reporting_csv.php:2224
+#: ../../enterprise/include/functions_reporting_pdf.php:1785
+msgid "Generated"
+msgstr ""
+
+#: ../../include/functions_reporting_html.php:141
+#: ../../enterprise/include/functions_reporting_pdf.php:1789
+msgid "Report date"
+msgstr ""
+
+#: ../../include/functions_reporting_html.php:544
+#: ../../enterprise/include/functions_reporting.php:1854
+#: ../../enterprise/include/functions_reporting.php:2893
+#: ../../enterprise/include/functions_reporting.php:3880
+msgid "Max/Min Values"
+msgstr ""
+
+#: ../../include/functions_reporting_html.php:545
+#: ../../enterprise/include/functions_reporting_csv.php:1506
+#: ../../enterprise/include/functions_reporting_csv.php:1552
+#: ../../enterprise/include/functions_reporting_csv.php:1625
+#: ../../enterprise/include/functions_reporting_csv.php:1744
+#: ../../enterprise/include/functions_reporting_csv.php:2052
+#: ../../enterprise/include/functions_reporting.php:1855
+#: ../../enterprise/include/functions_reporting.php:2894
+#: ../../enterprise/include/functions_reporting.php:3881
+#: ../../enterprise/include/functions_reporting.php:6137
+msgid "SLA Limit"
+msgstr ""
+
+#: ../../include/functions_reporting_html.php:546
+#: ../../enterprise/include/functions_reporting.php:1856
+#: ../../enterprise/include/functions_reporting.php:2024
+#: ../../enterprise/include/functions_reporting.php:2895
+#: ../../enterprise/include/functions_reporting.php:3882
+#: ../../enterprise/include/functions_reporting.php:6138
+msgid "SLA Compliance"
+msgstr ""
+
+#: ../../include/functions_reporting_html.php:578
+#: ../../enterprise/include/functions_reporting.php:4965
+msgid "Global Time"
+msgstr ""
+
+#: ../../include/functions_reporting_html.php:579
+#: ../../enterprise/include/functions_reporting_csv.php:1980
+#: ../../enterprise/include/functions_reporting.php:4966
+msgid "Time Total"
+msgstr ""
+
+#: ../../include/functions_reporting_html.php:580
+msgid "Time Failed"
+msgstr ""
+
+#: ../../include/functions_reporting_html.php:581
+#: ../../include/functions_reporting_html.php:3844
+#: ../../enterprise/include/functions_reporting_csv.php:1981
+#: ../../enterprise/include/functions_reporting.php:4969
+msgid "Time OK"
+msgstr ""
+
+#: ../../include/functions_reporting_html.php:582
+#: ../../include/functions_reporting_html.php:3856
+#: ../../enterprise/include/functions_reporting_csv.php:1983
+#: ../../enterprise/include/functions_reporting.php:4970
+msgid "Time Unknown"
+msgstr ""
+
+#: ../../include/functions_reporting_html.php:583
+#: ../../enterprise/include/functions_reporting_csv.php:1984
+#: ../../enterprise/include/functions_reporting.php:4971
+msgid "Time Not Init"
+msgstr ""
+
+#: ../../include/functions_reporting_html.php:584
+msgid "Downtime"
+msgstr ""
+
+#: ../../include/functions_reporting_html.php:611
+#: ../../enterprise/include/functions_reporting.php:5060
+msgid "Checks Time"
+msgstr ""
+
+#: ../../include/functions_reporting_html.php:612
+#: ../../enterprise/include/functions_reporting_csv.php:1986
+#: ../../enterprise/include/functions_reporting.php:5061
+msgid "Checks Total"
+msgstr ""
+
+#: ../../include/functions_reporting_html.php:613
+#: ../../enterprise/include/functions_reporting_csv.php:530
+msgid "Checks Failed"
+msgstr ""
+
+#: ../../include/functions_reporting_html.php:614
+#: ../../include/functions_reporting_html.php:3938
+#: ../../enterprise/include/functions_reporting_csv.php:1987
+#: ../../enterprise/include/functions_reporting.php:5064
+msgid "Checks OK"
+msgstr ""
+
+#: ../../include/functions_reporting_html.php:615
+#: ../../enterprise/include/functions_reporting_csv.php:1989
+#: ../../enterprise/include/functions_reporting.php:5065
+msgid "Checks Unknown"
+msgstr ""
+
+#: ../../include/functions_reporting_html.php:633
+#: ../../include/functions_reporting_html.php:672
+#: ../../include/functions_reporting_html.php:743
+#: ../../include/functions_reporting_html.php:821
+#: ../../include/functions_reporting_html.php:4020
+#: ../../include/functions_reporting_html.php:4167
+#: ../../enterprise/include/functions_reporting.php:4925
+msgid "24 x 7"
+msgstr ""
+
+#: ../../include/functions_reporting_html.php:864
+#: ../../include/functions_reporting_html.php:4561
+#: ../../enterprise/include/functions_services.php:1453
+#: ../../enterprise/include/functions_reporting.php:3195
+#: ../../enterprise/include/functions_reporting.php:4196
+#: ../../enterprise/include/functions_reporting.php:6203
+msgid "Unknow"
+msgstr ""
+
+#: ../../include/functions_reporting_html.php:869
+#: ../../include/functions_reporting_html.php:4566
+#: ../../enterprise/include/functions_reporting.php:1896
+#: ../../enterprise/include/functions_reporting.php:2949
+#: ../../enterprise/include/functions_reporting.php:3200
+#: ../../enterprise/include/functions_reporting.php:3937
+#: ../../enterprise/include/functions_reporting.php:4201
+#: ../../enterprise/include/functions_reporting.php:4852
+#: ../../enterprise/include/functions_reporting.php:6208
+msgid "Not Init"
+msgstr ""
+
+#: ../../include/functions_reporting_html.php:874
+#: ../../include/functions_reporting_html.php:4571
+#: ../../enterprise/include/functions_reporting.php:3205
+#: ../../enterprise/include/functions_reporting.php:4206
+#: ../../enterprise/include/functions_reporting.php:6213
+msgid "Downtimes"
+msgstr ""
+
+#: ../../include/functions_reporting_html.php:879
+#: ../../include/functions_reporting_html.php:4576
+#: ../../godmode/agentes/planned_downtime.editor.php:67
+#: ../../godmode/agentes/planned_downtime.list.php:174
+msgid "Scheduled Downtime"
+msgstr ""
+
+#: ../../include/functions_reporting_html.php:996
+#: ../../include/functions_reporting_html.php:2234
+#: ../../include/functions_reporting_html.php:4250
+#: ../../include/functions_reporting_html.php:4786
+msgid "Average Value"
+msgstr ""
+
+#: ../../include/functions_reporting_html.php:1051
+#: ../../include/functions_reporting_html.php:1059
+#: ../../include/functions_reporting_html.php:2356
+msgid "Val. by"
+msgstr ""
+
+#: ../../include/functions_reporting_html.php:1118
+#, php-format
+msgid "%s System"
+msgstr ""
+
+#: ../../include/functions_reporting_html.php:1166
+#: ../../include/functions_reporting_html.php:1366
+msgid "Events by agent"
+msgstr ""
+
+#: ../../include/functions_reporting_html.php:1183
+#: ../../include/functions_reporting_html.php:1383
+msgid "Events by user validator"
+msgstr ""
+
+#: ../../include/functions_reporting_html.php:1200
+#: ../../include/functions_reporting_html.php:1400
+msgid "Events by Severity"
+msgstr ""
+
+#: ../../include/functions_reporting_html.php:1217
+#: ../../include/functions_reporting_html.php:1417
+msgid "Events validated vs unvalidated"
+msgstr ""
+
+#: ../../include/functions_reporting_html.php:1488
+#: ../../enterprise/include/functions_reporting_csv.php:718
+#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:255
+#: ../../enterprise/meta/include/functions_wizard_meta.php:189
+#: ../../enterprise/meta/include/functions_wizard_meta.php:1804
+#: ../../godmode/reporting/reporting_builder.item_editor.php:69
+#: ../../godmode/agentes/agent_manager.php:289
+msgid "Alias"
+msgstr ""
+
+#: ../../include/functions_reporting_html.php:1508
+msgid "Sec. groups"
+msgstr ""
+
+#: ../../include/functions_reporting_html.php:1528
+msgid "Remote conf."
+msgstr ""
+
+#: ../../include/functions_reporting_html.php:1651
+#: ../../enterprise/include/functions_inventory.php:854
+#: ../../enterprise/include/functions_inventory.php:917
+msgid "Added"
+msgstr ""
+
+#: ../../include/functions_reporting_html.php:2004
+#: ../../extensions/agents_modules.php:934
+msgid "Orange cell when the module has fired alerts"
+msgstr ""
+
+#: ../../include/functions_reporting_html.php:2005
+#: ../../extensions/agents_modules.php:936
+msgid "Red cell when the module has a critical status"
+msgstr ""
+
+#: ../../include/functions_reporting_html.php:2006
+#: ../../extensions/agents_modules.php:939
+msgid "Yellow cell when the module has a warning status"
+msgstr ""
+
+#: ../../include/functions_reporting_html.php:2007
+#: ../../extensions/agents_modules.php:941
+msgid "Green cell when the module has a normal status"
+msgstr ""
+
+#: ../../include/functions_reporting_html.php:2008
+#: ../../extensions/agents_modules.php:943
+msgid "Grey cell when the module has an unknown status"
+msgstr ""
+
+#: ../../include/functions_reporting_html.php:2009
+msgid "Cell turns grey when the module is in 'not initialize' status"
+msgstr ""
+
+#: ../../include/functions_reporting_html.php:2036
+#: ../../include/functions_reporting_html.php:2040
+#: ../../extensions/files_repo/files_repo_list.php:164
+msgid "No items"
+msgstr ""
+
+#: ../../include/functions_reporting_html.php:2080
+#: ../../enterprise/include/functions_reporting_csv.php:2742
+msgid "Last time"
+msgstr ""
+
+#: ../../include/functions_reporting_html.php:2299
+#: ../../include/functions_reporting_html.php:5355
+msgid "Monitors"
+msgstr ""
+
+#: ../../include/functions_reporting_html.php:2318
+msgid "Events (not validated)"
+msgstr ""
+
+#: ../../include/functions_reporting_html.php:2455
+msgid "Events validated by user"
+msgstr ""
+
+#: ../../include/functions_reporting_html.php:2472
+#: ../../include/functions_reporting_html.php:5644
+msgid "Events by severity"
+msgstr ""
+
+#: ../../include/functions_reporting_html.php:2489
+msgid "Amount events validated"
+msgstr ""
+
+#: ../../include/functions_reporting_html.php:2913
+msgid "Total summary"
+msgstr ""
+
+#: ../../include/functions_reporting_html.php:2920
+msgid "No alerts fired"
+msgstr ""
+
+#: ../../include/functions_reporting_html.php:3011
+#, php-format
+msgid "Interface '%s' throughput graph"
+msgstr ""
+
+#: ../../include/functions_reporting_html.php:3015
+msgid "Mac"
+msgstr ""
+
+#: ../../include/functions_reporting_html.php:3016
+msgid "Actual status"
+msgstr ""
+
+#: ../../include/functions_reporting_html.php:3125
+#: ../../godmode/alerts/alert_list.list.php:946
+msgid "No alerts defined"
+msgstr ""
+
+#: ../../include/functions_reporting_html.php:3263
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2564
+#: ../../enterprise/godmode/reporting/reporting_builder.global.php:430
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2554
+msgid "Not OK"
+msgstr ""
+
+#: ../../include/functions_reporting_html.php:3380
+#: ../../include/functions_reporting_html.php:3382
+msgid "Empty modules"
+msgstr ""
+
+#: ../../include/functions_reporting_html.php:3389
+msgid "Warning<br/>Critical"
+msgstr ""
+
+#: ../../include/functions_reporting_html.php:3394
+#: ../../enterprise/include/functions_reporting_csv.php:2741
+#: ../../enterprise/meta/include/functions_wizard_meta.php:927
+#: ../../enterprise/meta/include/functions_wizard_meta.php:1044
+#: ../../enterprise/meta/include/functions_wizard_meta.php:1225
+#: ../../enterprise/meta/include/functions_wizard_meta.php:1528
+#: ../../enterprise/meta/include/functions_wizard_meta.php:1613
+#: ../../enterprise/meta/include/functions_wizard_meta.php:1750
+#: ../../enterprise/godmode/modules/configure_local_component.php:468
+#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:868
+#: ../../godmode/modules/manage_network_components_form_common.php:312
+#: ../../godmode/massive/massive_edit_modules.php:925
+#: ../../godmode/agentes/module_manager_editor_common.php:582
+msgid "Unit"
+msgstr ""
+
+#: ../../include/functions_reporting_html.php:3524
+#: ../../include/functions_reporting_html.php:3593
+#: ../../enterprise/include/functions_reporting_pdf.php:534
+#: ../../enterprise/include/functions_reporting_pdf.php:591
+msgid "Minimun"
+msgstr ""
+
+#: ../../include/functions_reporting_html.php:3533
+#: ../../include/functions_reporting_html.php:3601
+#: ../../enterprise/include/ajax/log_viewer.ajax.php:85
+#: ../../enterprise/include/functions_reporting_pdf.php:542
+#: ../../enterprise/include/functions_reporting_pdf.php:598
+msgid "Average"
+msgstr ""
+
+#: ../../include/functions_reporting_html.php:3703
+#: ../../enterprise/include/functions_reporting_csv.php:1325
+msgid "From data"
+msgstr ""
+
+#: ../../include/functions_reporting_html.php:3704
+#: ../../enterprise/include/functions_reporting_csv.php:1325
+msgid "To data"
+msgstr ""
+
+#: ../../include/functions_reporting_html.php:3732
+#: ../../enterprise/include/functions_reporting_csv.php:1331
+#: ../../enterprise/include/functions_reporting_csv.php:1342
+msgid "Negative increase: "
+msgstr ""
+
+#: ../../include/functions_reporting_html.php:3734
+#: ../../enterprise/include/functions_reporting_csv.php:1333
+#: ../../enterprise/include/functions_reporting_csv.php:1344
+msgid "Positive increase: "
+msgstr ""
+
+#: ../../include/functions_reporting_html.php:3736
+#: ../../enterprise/include/functions_reporting_csv.php:1335
+#: ../../enterprise/include/functions_reporting_csv.php:1346
+msgid "Neutral increase: "
+msgstr ""
+
+#: ../../include/functions_reporting_html.php:3819
+#: ../../include/functions_reporting_html.php:3913
+#: ../../include/functions_reporting_html.php:3993
+#: ../../include/functions_reporting_html.php:4002
+#: ../../include/functions_reporting_html.php:4140
+#: ../../include/functions_reporting_html.php:4149
+#: ../../include/functions_reporting_html.php:4473
+#: ../../include/functions_reporting_html.php:4479
+#: ../../godmode/agentes/module_manager_editor_common.php:1265
+#: ../../godmode/agentes/module_manager_editor_common.php:1375
+msgid "Failover"
+msgstr ""
+
+#: ../../include/functions_reporting_html.php:3832
+#: ../../enterprise/include/functions_reporting_csv.php:494
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2598
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2588
+msgid "Total time"
+msgstr ""
+
+#: ../../include/functions_reporting_html.php:3838
+#: ../../enterprise/include/functions_reporting_csv.php:498
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2606
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2596
+msgid "Time failed"
+msgstr ""
+
+#: ../../include/functions_reporting_html.php:3850
+#: ../../enterprise/include/functions_reporting_csv.php:506
+#: ../../enterprise/include/functions_reporting.php:4968
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2622
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2612
+msgid "Time in warning status"
+msgstr ""
+
+#: ../../include/functions_reporting_html.php:3862
+msgid "Time Not Init Module"
+msgstr ""
+
+#: ../../include/functions_reporting_html.php:3868
+#: ../../enterprise/include/functions_reporting_csv.php:1985
+msgid "Time Downtime"
+msgstr ""
+
+#: ../../include/functions_reporting_html.php:3873
+msgid "% Ok"
+msgstr ""
+
+#: ../../include/functions_reporting_html.php:3926
+#: ../../enterprise/include/functions_reporting_csv.php:526
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2716
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2704
+msgid "Total checks"
+msgstr ""
+
+#: ../../include/functions_reporting_html.php:3932
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2724
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2712
+msgid "Checks failed"
+msgstr ""
+
+#: ../../include/functions_reporting_html.php:3944
+#: ../../enterprise/include/functions_reporting.php:5063
+msgid "Checks Warning"
+msgstr ""
+
+#: ../../include/functions_reporting_html.php:3950
+msgid "Checks Uknown"
+msgstr ""
+
+#: ../../include/functions_reporting_html.php:3989
+#: ../../include/functions_reporting_html.php:4136
+#: ../../include/functions_reporting_html.php:4461
+#: ../../include/functions_reporting_html.php:4467
+msgid "Primary"
+msgstr ""
+
+#: ../../include/functions_reporting_html.php:4246
+#: ../../enterprise/include/functions_reporting_csv.php:661
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2764
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2764
+msgid "Agent max value"
+msgstr ""
+
+#: ../../include/functions_reporting_html.php:4248
+#: ../../enterprise/include/functions_reporting_csv.php:666
+msgid "Agent min value"
+msgstr ""
+
+#: ../../include/functions_reporting_html.php:4693
+#: ../../enterprise/include/functions_reporting_csv.php:1030
+#: ../../enterprise/godmode/reporting/reporting_builder.global.php:250
+msgid "Sum"
+msgstr ""
+
+#: ../../include/functions_reporting_html.php:5036
+#: ../../enterprise/meta/include/functions_wizard_meta.php:1379
+msgid "Alert description"
+msgstr ""
+
+#: ../../include/functions_reporting_html.php:5076
+#: ../../include/functions_reporting_html.php:5230
+#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:148
+#: ../../mobile/include/functions_web.php:24
+msgid "Monitor"
+msgstr ""
+
+#: ../../include/functions_reporting_html.php:5129
+#, php-format
+msgid "Agents in group: %s"
+msgstr ""
+
+#: ../../include/functions_reporting_html.php:5231
+msgid "Last failure"
+msgstr ""
+
+#: ../../include/functions_reporting_html.php:5321
+msgid "N/A(*)"
+msgstr ""
+
+#: ../../include/functions_reporting_html.php:5534
+#: ../../include/functions_reporting_html.php:5539
+#: ../../enterprise/meta/monitoring/custom_fields_view.php:511
+msgid "Agents by status"
+msgstr ""
+
+#: ../../include/functions_reporting_html.php:5595
+#: ../../include/functions_reporting_html.php:5600
+msgid "Node overview"
+msgstr ""
+
+#: ../../include/functions_reporting_html.php:5620
+#: ../../include/functions_reporting_html.php:5632
+msgid "Critical events"
+msgstr ""
+
+#: ../../include/functions_reporting_html.php:5623
+#: ../../include/functions_reporting_html.php:5634
+msgid "Warning events"
+msgstr ""
+
+#: ../../include/functions_reporting_html.php:5626
+#: ../../include/functions_reporting_html.php:5636
+msgid "OK events"
+msgstr ""
+
+#: ../../include/functions_reporting_html.php:5629
+#: ../../include/functions_reporting_html.php:5638
+msgid "Unknown events"
+msgstr ""
+
+#: ../../include/functions_reporting_html.php:5654
+msgid "Important Events by Criticity"
+msgstr ""
+
+#: ../../include/functions_reporting_html.php:5680
+#, php-format
+msgid "Last activity in %s console"
+msgstr ""
+
+#: ../../include/functions_reporting_html.php:5771
+#: ../../include/functions_reporting_html.php:5913
+msgid "Events info (1hr.)"
+msgstr ""
+
+#: ../../include/functions_reporting_html.php:6096
+msgid "This SLA has been affected by the following scheduled downtimes"
+msgstr ""
+
+#: ../../include/functions_reporting_html.php:6097
+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:6103
+#: ../../godmode/modules/manage_network_components_form_wizard.php:654
+#: ../../godmode/agentes/planned_downtime.editor.php:603
+#: ../../godmode/agentes/planned_downtime.list.php:614
+msgid "Execution"
+msgstr ""
+
+#: ../../include/functions_reporting_html.php:6135
+msgid "This item is affected by a malformed scheduled downtime"
+msgstr ""
+
+#: ../../include/functions_reporting_html.php:6135
+msgid "Go to the scheduled downtimes section to solve this"
+msgstr ""
+
+#: ../../include/functions_reporting_html.php:6168
+#: ../../include/functions_reporting_html.php:6191
+#: ../../enterprise/include/functions_reporting_csv.php:2549
+#: ../../enterprise/include/functions_reporting_csv.php:2559
+msgid "Full name"
+msgstr ""
+
+#: ../../include/functions_reporting_html.php:6169
+#: ../../include/functions_reporting_html.php:6192
+#: ../../enterprise/include/functions_reporting_csv.php:2549
+#: ../../enterprise/include/functions_reporting_csv.php:2559
+msgid "Permissions"
+msgstr ""
+
+#: ../../update_manager_client/views/register.php:48
+msgid "Register to Update Manager"
+msgstr ""
+
+#: ../../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:62
+#, php-format
+msgid ""
+"When you subscribe to the %s Update Manager service, you accept that we\n"
+"            register your %s instance as an identifier on a database owned "
+"by %s. This data will solely be used to\n"
+"            provide you with information about %s and will not be conceded "
+"to third parties. You can unregister from\n"
+"            said database at any time from the Update Manager options."
+msgstr ""
+
+#: ../../update_manager_client/views/register.php:75
+msgid "Visit our privacy policy for more information"
+msgstr ""
+
+#: ../../update_manager_client/views/register.php:97
+msgid "OK!"
+msgstr ""
+
+#: ../../update_manager_client/views/register.php:112
+msgid "Are you sure you don't want to use update manager?"
+msgstr ""
+
+#: ../../update_manager_client/views/register.php:116
+msgid ""
+"You will need to update your system manually, through source code or RPM\n"
+"            packages to be up to date with latest updates."
+msgstr ""
+
+#: ../../update_manager_client/views/register.php:208
+msgid "Unsuccessful subscription"
+msgstr ""
+
+#: ../../update_manager_client/views/register.php:213
+msgid "Pandora successfully subscribed with UID: "
+msgstr ""
+
+#: ../../update_manager_client/views/online.php:64
+msgid "Update to next version"
+msgstr ""
+
+#: ../../update_manager_client/views/online.php:65
+msgid "Update to latest version"
+msgstr ""
+
+#: ../../update_manager_client/views/online.php:89
+#: ../../update_manager_client/views/offline.php:74
+msgid "Updating to"
+msgstr ""
+
+#: ../../update_manager_client/views/online.php:90
+#: ../../update_manager_client/views/offline.php:75
+msgid "Do you really want to leave our brilliant application?"
+msgstr ""
+
+#: ../../update_manager_client/views/online.php:91
+#: ../../update_manager_client/views/offline.php:76
+msgid "There are no updates available"
+msgstr ""
+
+#: ../../update_manager_client/views/online.php:92
+#: ../../update_manager_client/views/offline.php:77
+msgid "Searching for updates..."
+msgstr ""
+
+#: ../../update_manager_client/views/online.php:93
+#: ../../update_manager_client/views/offline.php:78
+msgid "Package"
+msgstr ""
+
+#: ../../update_manager_client/views/online.php:94
+#: ../../update_manager_client/views/offline.php:79
+#: ../../enterprise/tools/ipam/ipam_action.php:380
+msgid "Successfully updated."
+msgstr ""
+
+#: ../../update_manager_client/views/online.php:123
+#: ../../update_manager_client/views/online.php:164
+#: ../../update_manager_client/views/offline.php:71
+msgid "This action will upgrade this console to version "
+msgstr ""
+
+#: ../../update_manager_client/views/online.php:124
+#: ../../update_manager_client/views/online.php:165
+msgid "Update to"
+msgstr ""
+
+#: ../../update_manager_client/views/online.php:145
+#: ../../update_manager_client/views/online.php:149
+msgid "Failed to update to "
+msgstr ""
+
+#: ../../update_manager_client/views/online.php:188
+msgid "Failed to update:"
+msgstr ""
+
+#: ../../update_manager_client/views/offline.php:66
+msgid "Drop the package here or"
+msgstr ""
+
+#: ../../update_manager_client/views/offline.php:67
+msgid "Browse it"
+msgstr ""
+
+#: ../../update_manager_client/views/offline.php:68
+msgid "The package has been uploaded successfully."
+msgstr ""
+
+#: ../../update_manager_client/views/offline.php:69
+#, php-format
+msgid ""
+"Please keep in mind that this package is going to override your actual %s "
+"files and that it's recommended to conduct a backup before continuing the "
+"updating process."
+msgstr ""
+
+#: ../../update_manager_client/views/offline.php:70
+msgid "Click on the file below to begin."
+msgstr ""
+
+#: ../../update_manager_client/views/offline.php:72
+msgid "This action will upgrade all servers to version "
+msgstr ""
+
+#: ../../update_manager_client/views/offline.php:80
+msgid "Package rejected. These package changes will not apply."
+msgstr ""
+
+#: ../../update_manager_client/views/offline.php:82
+#, php-format
+msgid ""
+"This update does not correspond with next version of %s. Are you sure you "
+"want to install it?"
+msgstr ""
+
+#: ../../update_manager_client/views/offline.php:83
+msgid ""
+"This server update does not correspond with current console version. Are you "
+"sure you want to install it?"
+msgstr ""
+
+#: ../../update_manager_client/views/offline.php:84
+msgid ""
+"File name does not match required format: package_NUMBER.oum or "
+"pandorafms_server[_enterprise]-7.0NG.NUMBER_x86[_64].tar.gz, you can use "
+"numbers with decimals."
+msgstr ""
+
+#: ../../update_manager_client/views/offline.php:85
+msgid "Files included in this package"
+msgstr ""
+
+#: ../../update_manager_client/views/offline.php:86
+msgid "Ignore"
+msgstr ""
+
+#: ../../update_manager_client/views/offline.php:87
+msgid "Verify package signature"
+msgstr ""
+
+#: ../../update_manager_client/views/offline.php:88
+#, php-format
+msgid ""
+"Copy into the textarea the signature validation token you can retrieve from "
+"%s and press OK to verify the package, press ignore to avoid signature "
+"verification"
+msgstr ""
+
+#: ../../update_manager_client/views/offline.php:89
+msgid ""
+"This server update does not correspond with current console version and is "
+"not going to be installed unless patches are allowed. Please enable patches "
+"in update manager settings."
+msgstr ""
+
+#: ../../update_manager_client/views/offline.php:90
+#, php-format
+msgid ""
+"This update does not correspond with next version of %s and is not going to "
+"be installed unless patches are allowed. Please enable patches in update "
+"manager settings."
+msgstr ""
+
+#: ../../update_manager_client/lib/UpdateManager/Client.php:712
+#, php-format
+msgid "server update %d"
+msgstr ""
+
+#: ../../update_manager_client/lib/UpdateManager/Client.php:714
+#, php-format
+msgid "console update %d"
+msgstr ""
+
+#: ../../update_manager_client/lib/UpdateManager/Client.php:734
+#, php-format
+msgid "Downloading %s %.2f/ %.2f MB."
+msgstr ""
+
+#: ../../update_manager_client/lib/UpdateManager/Client.php:745
+#, php-format
+msgid "Downloading %.2f MB"
+msgstr ""
+
+#: ../../update_manager_client/lib/UpdateManager/Client.php:1469
+#, php-format
+msgid "Failed to analyze package: %s"
+msgstr ""
+
+#: ../../update_manager_client/lib/UpdateManager/Client.php:1560
+msgid "Searching update package"
+msgstr ""
+
+#: ../../update_manager_client/lib/UpdateManager/Client.php:1592
+msgid "Retrieving update"
+msgstr ""
+
+#: ../../update_manager_client/lib/UpdateManager/Client.php:1683
+msgid "Extracting package"
+msgstr ""
+
+#: ../../update_manager_client/lib/UpdateManager/Client.php:1750
+msgid "Testing files"
+msgstr ""
+
+#: ../../update_manager_client/lib/UpdateManager/Client.php:1782
+#, php-format
+msgid "Applying MR %s"
+msgstr ""
+
+#: ../../update_manager_client/lib/UpdateManager/Client.php:1819
+msgid "Applying file updates"
+msgstr ""
+
+#: ../../update_manager_client/lib/UpdateManager/Client.php:1841
+msgid "Retrieving server update"
+msgstr ""
+
+#: ../../update_manager_client/lib/UpdateManager/Client.php:1856
+msgid "Cleaning"
+msgstr ""
+
+#: ../../update_manager_client/lib/UpdateManager/Client.php:1874
+#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:544
+msgid "Completed"
+msgstr ""
+
+#: ../../update_manager_client/lib/UpdateManager/Client.php:1969
+msgid "Updating to "
+msgstr ""
+
+#: ../../update_manager_client/lib/UpdateManager/UI/Manager.php:484
+msgid "Next update"
+msgstr ""
+
+#: ../../update_manager_client/lib/UpdateManager/UI/Manager.php:489
+msgid "Show details"
+msgstr ""
+
+#: ../../update_manager_client/lib/UpdateManager/UI/Manager.php:514
+#, php-format
+msgid "%s update(s) available more"
+msgstr ""
+
+#: ../../update_manager_client/lib/UpdateManager/UI/Manager.php:526
+msgid "details"
+msgstr ""
+
+#: ../../update_manager_client/lib/UpdateManager/UI/Manager.php:604
+msgid "Failed creating temporary directory."
+msgstr ""
+
+#: ../../update_manager_client/lib/UpdateManager/UI/Manager.php:614
+msgid "Failed storing uploaded file."
+msgstr ""
+
+#: ../../update_manager_client/lib/UpdateManager/UI/Manager.php:646
+#, php-format
+msgid "Invalid extension. The package needs to be in `%s` or `%s` format."
+msgstr ""
+
+#: ../../update_manager_client/lib/UpdateManager/UI/Manager.php:655
+msgid "Failed uploading file."
+msgstr ""
+
+#: ../../update_manager_client/lib/UpdateManager/UI/Manager.php:690
+msgid "Signatures does not match."
+msgstr ""
+
+#: ../../update_manager_client/lib/UpdateManager/UI/Manager.php:749
+#, php-format
+msgid "Update %s successfully installed."
+msgstr ""
+
+#: ../../update_manager_client/lib/UpdateManager/UI/Manager.php:752
+#, php-format
+msgid "Failed while updating: %s"
+msgstr ""
+
+#: ../../index.php:344 ../../enterprise/meta/index.php:307
+msgid "The code shouldn't be empty"
+msgstr ""
+
+#: ../../index.php:357 ../../enterprise/meta/index.php:320
+msgid "Expired login"
+msgstr ""
+
+#: ../../index.php:364 ../../index.php:370 ../../enterprise/meta/index.php:327
+#: ../../enterprise/meta/index.php:333
+msgid "Login error"
+msgstr ""
+
+#: ../../index.php:788 ../../enterprise/meta/index.php:616
+msgid "Password changed successfully"
+msgstr ""
+
+#: ../../index.php:794 ../../enterprise/meta/index.php:622
+msgid "Failed to change password"
+msgstr ""
+
+#: ../../index.php:799 ../../enterprise/include/process_reset_pass.php:127
+#: ../../enterprise/meta/include/process_reset_pass.php:123
+#: ../../enterprise/meta/index.php:625
+msgid "Passwords must be the same"
+msgstr ""
+
+#: ../../index.php:811 ../../enterprise/meta/index.php:636
+msgid "Too much time since password change request"
+msgstr ""
+
+#: ../../index.php:818 ../../enterprise/meta/index.php:643
+msgid "This user has not requested a password change"
+msgstr ""
+
+#: ../../index.php:845 ../../enterprise/meta/index.php:659
+msgid "Id user cannot be empty"
+msgstr ""
+
+#: ../../index.php:853 ../../enterprise/meta/index.php:667
+msgid "Error in reset password request"
+msgstr ""
+
+#: ../../index.php:861 ../../enterprise/meta/index.php:675
+msgid "This user doesn't have a valid email address"
+msgstr ""
+
+#: ../../index.php:871 ../../enterprise/include/reset_pass.php:108
+#: ../../enterprise/meta/include/reset_pass.php:103
+#: ../../enterprise/meta/index.php:691
+msgid "Reset password"
+msgstr ""
+
+#: ../../index.php:872 ../../enterprise/meta/index.php:692
+msgid "This is an automatically sent message for user "
+msgstr ""
+
+#: ../../index.php:875 ../../enterprise/meta/index.php:695
+msgid "Please click the link below to reset your password"
+msgstr ""
+
+#: ../../index.php:877 ../../enterprise/meta/index.php:697
+msgid "Reset your password"
+msgstr ""
+
+#: ../../index.php:881 ../../enterprise/meta/index.php:701
+msgid "Please do not reply to this email."
+msgstr ""
+
+#: ../../index.php:886 ../../enterprise/meta/index.php:707
+msgid "Error at sending the email"
+msgstr ""
+
+#: ../../index.php:946
+msgid "User doesn\\'t exist."
+msgstr ""
+
+#: ../../index.php:968
+msgid "User only can use the API."
+msgstr ""
+
+#: ../../index.php:1163
+#, php-format
+msgid "Metaconsole MR (%d) is different than this one (%d)"
+msgstr ""
+
+#: ../../index.php:1169 ../../enterprise/meta/index.php:925
+msgid "Please keep all environment updated to same version."
+msgstr ""
+
+#: ../../index.php:1257 ../../enterprise/meta/index.php:982
+#: ../../enterprise/meta/index.php:1061
+msgid "Sorry! I can't find the page!"
+msgstr ""
+
+#: ../../enterprise/tools/ipam/ipam_excel.php:134
+#: ../../enterprise/tools/ipam/ipam_calculator.php:84
+#: ../../enterprise/tools/ipam/ipam_supernet_config.php:564
+msgid "Mask"
+msgstr ""
+
+#: ../../enterprise/tools/ipam/ipam_excel.php:135
+msgid "Subneting Mask"
+msgstr ""
+
+#: ../../enterprise/tools/ipam/ipam_excel.php:136
+#: ../../enterprise/tools/ipam/ipam_excel.php:202
+#: ../../enterprise/include/functions_ipam.php:1559
+#: ../../enterprise/include/functions_ipam.php:1989
+msgid "Total IPs"
+msgstr ""
+
+#: ../../enterprise/tools/ipam/ipam_excel.php:137
+#: ../../enterprise/tools/ipam/ipam_excel.php:203
+#: ../../enterprise/include/functions_ipam.php:1990
+msgid "Alive IPs"
+msgstr ""
+
+#: ../../enterprise/tools/ipam/ipam_excel.php:138
+#: ../../enterprise/tools/ipam/ipam_excel.php:204
+#: ../../enterprise/include/functions_ipam.php:1991
+msgid "Occupied %"
+msgstr ""
+
+#: ../../enterprise/tools/ipam/ipam_excel.php:139
+#: ../../enterprise/tools/ipam/ipam_excel.php:205
+#: ../../enterprise/include/functions_ipam.php:1992
+msgid "Available %"
+msgstr ""
+
+#: ../../enterprise/tools/ipam/ipam_excel.php:140
+#: ../../enterprise/tools/ipam/ipam_excel.php:206
+#: ../../enterprise/include/functions_ipam.php:1993
+msgid "Managed IPs"
+msgstr ""
+
+#: ../../enterprise/tools/ipam/ipam_excel.php:141
+#: ../../enterprise/tools/ipam/ipam_excel.php:207
+#: ../../enterprise/include/functions_ipam.php:1994
+msgid "Managed %"
+msgstr ""
+
+#: ../../enterprise/tools/ipam/ipam_excel.php:142
+#: ../../enterprise/tools/ipam/ipam_excel.php:208
+#: ../../enterprise/include/functions_ipam.php:1995
+msgid "Unmanaged %"
+msgstr ""
+
+#: ../../enterprise/tools/ipam/ipam_excel.php:143
+#: ../../enterprise/tools/ipam/ipam_excel.php:209
+#: ../../enterprise/include/functions_ipam.php:1996
+msgid "Reserved IPs"
+msgstr ""
+
+#: ../../enterprise/tools/ipam/ipam_excel.php:144
+#: ../../enterprise/tools/ipam/ipam_excel.php:210
+#: ../../enterprise/include/functions_ipam.php:1997
+msgid "Reserved %"
+msgstr ""
+
+#: ../../enterprise/tools/ipam/ipam_excel.php:145
+#: ../../enterprise/tools/ipam/ipam_excel.php:211
+#: ../../enterprise/include/functions_ipam.php:1998
+msgid "Not reserved %"
+msgstr ""
+
+#: ../../enterprise/tools/ipam/ipam_excel.php:212
+#: ../../enterprise/tools/ipam/ipam_vlan_config.php:342
+#: ../../enterprise/tools/ipam/ipam_vlan_config.php:674
+#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:398
+#: ../../godmode/massive/massive_edit_agents.php:798
+#: ../../godmode/agentes/module_manager_editor_common.php:567
+#: ../../godmode/agentes/agent_manager.php:198
+#: ../../godmode/groups/configure_group.php:238
+msgid "Custom ID"
+msgstr ""
+
+#: ../../enterprise/tools/ipam/ipam_vlan_config.php:45
+#: ../../enterprise/tools/ipam/ipam_vlan_config.php:268
+msgid "There is no VLAN name. Please introduce a name"
+msgstr ""
+
+#: ../../enterprise/tools/ipam/ipam_vlan_config.php:49
+#: ../../enterprise/tools/ipam/ipam_vlan_config.php:87
+#: ../../enterprise/tools/ipam/ipam_vlan_config.php:272
+msgid "Custom ID is not valid"
+msgstr ""
+
+#: ../../enterprise/tools/ipam/ipam_vlan_config.php:66
+msgid "Vlan created"
+msgstr ""
+
+#: ../../enterprise/tools/ipam/ipam_vlan_config.php:68
+msgid "Vlan not created"
+msgstr ""
+
+#: ../../enterprise/tools/ipam/ipam_vlan_config.php:72
+#: ../../enterprise/tools/ipam/ipam_vlan_config.php:296
+msgid "VLAN name exists in database, please select another name"
+msgstr ""
+
+#: ../../enterprise/tools/ipam/ipam_vlan_config.php:83
+msgid "There is no vlan name. Please introduce a name"
+msgstr ""
+
+#: ../../enterprise/tools/ipam/ipam_vlan_config.php:109
+msgid "Vlan updated"
+msgstr ""
+
+#: ../../enterprise/tools/ipam/ipam_vlan_config.php:111
+msgid "Vlan not updated"
+msgstr ""
+
+#: ../../enterprise/tools/ipam/ipam_vlan_config.php:115
+msgid "Vlan name exists in database, please select other name"
+msgstr ""
+
+#: ../../enterprise/tools/ipam/ipam_vlan_config.php:135
+msgid "Could not be deleted, please select vlan"
+msgstr ""
+
+#: ../../enterprise/tools/ipam/ipam_vlan_config.php:163
+msgid "Network name cannot be repeated in this Vlan"
+msgstr ""
+
+#: ../../enterprise/tools/ipam/ipam_vlan_config.php:170
+#: ../../enterprise/tools/ipam/ipam_supernet_config.php:436
+msgid "Successfully added networks"
+msgstr ""
+
+#: ../../enterprise/tools/ipam/ipam_vlan_config.php:174
+#: ../../enterprise/tools/ipam/ipam_supernet_config.php:440
+msgid "Network could not be added"
+msgstr ""
+
+#: ../../enterprise/tools/ipam/ipam_vlan_config.php:179
+msgid "Network name could not be added, please select network"
+msgstr ""
+
+#: ../../enterprise/tools/ipam/ipam_vlan_config.php:184
+msgid "Vlan name could not be added, please select vlan"
+msgstr ""
+
+#: ../../enterprise/tools/ipam/ipam_vlan_config.php:212
+msgid "Could not be deleted, please select VLAN and network"
+msgstr ""
+
+#: ../../enterprise/tools/ipam/ipam_vlan_config.php:219
+#, php-format
+msgid "Failed to delete %d/%d networks from VLAN"
+msgstr ""
+
+#: ../../enterprise/tools/ipam/ipam_vlan_config.php:223
+msgid "Successfully deleted network from VLAN"
+msgstr ""
+
+#: ../../enterprise/tools/ipam/ipam_vlan_config.php:225
+#, php-format
+msgid "Successfully deleted %d/%d networks from VLAN"
+msgstr ""
+
+#: ../../enterprise/tools/ipam/ipam_vlan_config.php:228
+#: ../../enterprise/tools/ipam/ipam_supernet_config.php:495
+msgid "No items selected"
+msgstr ""
+
+#: ../../enterprise/tools/ipam/ipam_vlan_config.php:303
+#, php-format
+msgid "%s VLAN networks have been created"
+msgstr ""
+
+#: ../../enterprise/tools/ipam/ipam_vlan_config.php:305
+msgid "Could not create VLAN networks"
+msgstr ""
+
+#: ../../enterprise/tools/ipam/ipam_vlan_config.php:316
+#: ../../enterprise/tools/ipam/ipam_supernet_config.php:701
+#: ../../enterprise/tools/ipam/ipam_list.php:447
+#: ../../enterprise/extensions/csv_import_group/main.php:68
+msgid "The CSV file must have the fields in the following order: "
+msgstr ""
+
+#: ../../enterprise/tools/ipam/ipam_vlan_config.php:339
+#: ../../enterprise/tools/ipam/ipam_vlan_network.php:39
+#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:58
+#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:62
+#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:67
+#: ../../enterprise/tools/ipam/ipam_list.php:151
+#: ../../enterprise/tools/ipam/ipam_list.php:602
+msgid "Vlan"
+msgstr ""
+
+#: ../../enterprise/tools/ipam/ipam_vlan_config.php:366
+#: ../../enterprise/tools/ipam/ipam_vlan_config.php:822
+msgid "Update Vlan"
+msgstr ""
+
+#: ../../enterprise/tools/ipam/ipam_vlan_config.php:373
+#: ../../enterprise/tools/ipam/ipam_vlan_config.php:917
+msgid "New Vlan"
+msgstr ""
+
+#: ../../enterprise/tools/ipam/ipam_vlan_config.php:393
+#: ../../enterprise/tools/ipam/ipam_network.php:115
+#: ../../enterprise/tools/ipam/ipam_supernet_config.php:719
+#: ../../enterprise/tools/ipam/ipam_list.php:50
+#: ../../enterprise/include/class/CSVImportAgents.class.php:144
+#: ../../enterprise/extensions/csv_import_group/main.php:84
+msgid "Upload file"
+msgstr ""
+
+#: ../../enterprise/tools/ipam/ipam_vlan_config.php:402
+#: ../../enterprise/tools/ipam/ipam_network.php:124
+#: ../../enterprise/tools/ipam/ipam_supernet_config.php:728
+#: ../../enterprise/tools/ipam/ipam_list.php:59
+#: ../../enterprise/include/class/CSVImportAgents.class.php:161
+#: ../../enterprise/include/class/DeploymentCenter.class.php:1400
+#: ../../enterprise/extensions/csv_import_group/main.php:87
+msgid "Separator"
+msgstr ""
+
+#: ../../enterprise/tools/ipam/ipam_vlan_config.php:415
+#: ../../enterprise/tools/ipam/ipam_network.php:137
+#: ../../enterprise/tools/ipam/ipam_supernet_config.php:741
+#: ../../enterprise/tools/ipam/ipam_list.php:72
+#: ../../enterprise/extensions/csv_import_group/main.php:100
+msgid "Upload CSV file"
+msgstr ""
+
+#: ../../enterprise/tools/ipam/ipam_vlan_config.php:435
+msgid "Search filter by name"
+msgstr ""
+
+#: ../../enterprise/tools/ipam/ipam_vlan_config.php:688
+#: ../../enterprise/tools/ipam/ipam_supernet_config.php:1071
+msgid "Networks"
+msgstr ""
+
+#: ../../enterprise/tools/ipam/ipam_vlan_config.php:702
+#: ../../enterprise/tools/ipam/ipam_supernet_config.php:1176
+#: ../../enterprise/tools/ipam/ipam_supernet_config.php:1306
+#: ../../enterprise/include/ajax/ipam.ajax.php:691
+#: ../../enterprise/include/ajax/ipam.ajax.php:748
+#: ../../enterprise/include/ajax/ipam.ajax.php:779
+#: ../../enterprise/include/ajax/ipam.ajax.php:826
+msgid "No assigned networks"
+msgstr ""
+
+#: ../../enterprise/tools/ipam/ipam_vlan_config.php:736
+msgid "Delete network to vlan"
+msgstr ""
+
+#: ../../enterprise/tools/ipam/ipam_vlan_config.php:796
+msgid "Manage networks in VLAN"
+msgstr ""
+
+#: ../../enterprise/tools/ipam/ipam_vlan_config.php:816
+msgid "Not assigned networks"
+msgstr ""
+
+#: ../../enterprise/tools/ipam/ipam_vlan_config.php:829
+#: ../../enterprise/tools/ipam/ipam_vlan_config.php:848
+msgid "Add network to Vlan"
+msgstr ""
+
+#: ../../enterprise/tools/ipam/ipam_vlan_config.php:832
+msgid "Create network"
+msgstr ""
+
+#: ../../enterprise/tools/ipam/ipam_vlan_config.php:865
+msgid "Delete Vlan"
+msgstr ""
+
+#: ../../enterprise/tools/ipam/ipam_vlan_config.php:906
+#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:459
+msgid "No vlans found"
+msgstr ""
+
+#: ../../enterprise/tools/ipam/ipam_network_location_config.php:40
+#: ../../godmode/modules/manage_nc_groups.php:64
+msgid "Could not be created. Blank name"
+msgstr ""
+
+#: ../../enterprise/tools/ipam/ipam_network_location_config.php:61
+#: ../../enterprise/godmode/reporting/graph_template_editor.php:155
+#: ../../godmode/modules/manage_nc_groups.php:95
+#: ../../godmode/events/event_edit_filter.php:205
+#: ../../godmode/netflow/nf_edit_form.php:118
+msgid "Not updated. Blank name"
+msgstr ""
+
+#: ../../enterprise/tools/ipam/ipam_network_location_config.php:72
+#: ../../godmode/setup/news.php:108
+#: ../../godmode/modules/manage_nc_groups.php:119
+#: ../../godmode/events/event_edit_filter.php:216
+#: ../../godmode/netflow/nf_edit_form.php:140
+msgid "Not updated. Error updating data"
+msgstr ""
+
+#: ../../enterprise/tools/ipam/ipam_network_location_config.php:110
+#, php-format
+msgid "%d/%d items deleted"
+msgstr ""
+
+#: ../../enterprise/tools/ipam/ipam_network_location_config.php:112
+msgid "Failed to delete items"
+msgstr ""
+
+#: ../../enterprise/tools/ipam/ipam_network_location_config.php:167
+msgid "Search filter by name or network address"
+msgstr ""
+
+#: ../../enterprise/tools/ipam/ipam_network_location_config.php:273
+msgid "No locations found"
+msgstr ""
+
+#: ../../enterprise/tools/ipam/ipam_network_location_config.php:309
+msgid "There are no defined network locations"
+msgstr ""
+
+#: ../../enterprise/tools/ipam/ipam_supernet_network.php:82
+#: ../../enterprise/tools/ipam/ipam_supernet_config.php:536
+#: ../../enterprise/include/ajax/ipam.ajax.php:613
+msgid "Supernet"
+msgstr ""
+
+#: ../../enterprise/tools/ipam/ipam_ajax.php:285
+msgid "There is not an available IP."
+msgstr ""
+
+#: ../../enterprise/tools/ipam/ipam_ajax.php:287
+msgid "Next available IP Address is:"
+msgstr ""
+
+#: ../../enterprise/tools/ipam/ipam_ajax.php:313
+msgid "Reserve this IP now"
+msgstr ""
+
+#: ../../enterprise/tools/ipam/ipam_ajax.php:329
+msgid "Manage this IP now"
+msgstr ""
+
+#: ../../enterprise/tools/ipam/ipam_ajax.php:374
+msgid "Operating system"
+msgstr ""
+
+#: ../../enterprise/tools/ipam/ipam_ajax.php:384
+msgid "This agent has other IPs"
+msgstr ""
+
+#: ../../enterprise/tools/ipam/ipam_ajax.php:393
+msgid "Generate events"
+msgstr ""
+
+#: ../../enterprise/tools/ipam/ipam_ajax.php:406
+#: ../../enterprise/tools/ipam/ipam_massive.php:103
+#: ../../enterprise/tools/ipam/ipam_network.php:400
+#: ../../enterprise/include/functions_ipam.php:1571
+#: ../../enterprise/include/functions_ipam.php:2042
+msgid "Managed"
+msgstr ""
+
+#: ../../enterprise/tools/ipam/ipam_ajax.php:432
+#: ../../enterprise/tools/ipam/ipam_massive.php:103
+#: ../../enterprise/tools/ipam/ipam_network.php:401
+#: ../../enterprise/include/functions_ipam.php:1577
+#: ../../enterprise/include/functions_ipam.php:1734
+#: ../../enterprise/include/functions_ipam.php:2043
+msgid "Reserved"
+msgstr ""
+
+#: ../../enterprise/tools/ipam/ipam_ajax.php:445
+msgid "Leases Dhcp"
+msgstr ""
+
+#: ../../enterprise/tools/ipam/ipam_ajax.php:455
+msgid "leased mode"
+msgstr ""
+
+#: ../../enterprise/tools/ipam/ipam_ajax.php:468
+msgid "leased expiration"
+msgstr ""
+
+#: ../../enterprise/tools/ipam/ipam_ajax.php:489
+#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:424
+msgid "Created"
+msgstr ""
+
+#: ../../enterprise/tools/ipam/ipam_ajax.php:499
+msgid "Edited"
+msgstr ""
+
+#: ../../enterprise/tools/ipam/ipam_ajax.php:509
+msgid "Tracking"
+msgstr ""
+
+#: ../../enterprise/tools/ipam/ipam_ajax.php:524
+msgid "Ping"
+msgstr ""
+
+#: ../../enterprise/tools/ipam/ipam_ajax.php:565
+msgid "Ping to host"
+msgstr ""
+
+#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:58
+msgid "succesfully created"
+msgstr ""
+
+#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:62
+msgid "not created"
+msgstr ""
+
+#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:67
+msgid "exists in bbdd, please select other name"
+msgstr ""
+
+#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:72
+msgid "please, select VLAN to be created"
+msgstr ""
+
+#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:231
+msgid "Please enter adress, for search vlans"
+msgstr ""
+
+#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:337
+msgid "privacy pass"
+msgstr ""
+
+#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:374
+#: ../../godmode/wizards/HostDevices.class.php:1248
+msgid "Context"
+msgstr ""
+
+#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:397
+msgid "Run"
+msgstr ""
+
+#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:409
+msgid "Vlan name"
+msgstr ""
+
+#: ../../enterprise/tools/ipam/ipam_massive.php:82
+msgid "Addresses"
+msgstr ""
+
+#: ../../enterprise/tools/ipam/ipam_network.php:163
+msgid "No addresses found on this network"
+msgstr ""
+
+#: ../../enterprise/tools/ipam/ipam_network.php:314
+msgid "Edit address"
+msgstr ""
+
+#: ../../enterprise/tools/ipam/ipam_network.php:327
+msgid "Disabled address"
+msgstr ""
+
+#: ../../enterprise/tools/ipam/ipam_network.php:327
+msgid "This address will not be updated by the server"
+msgstr ""
+
+#: ../../enterprise/tools/ipam/ipam_network.php:414
+#: ../../enterprise/include/functions_reporting_csv.php:1936
+#: ../../enterprise/include/functions_reporting.php:2318
+#: ../../enterprise/include/functions_ipam.php:2038
+#: ../../godmode/wizards/DiscoveryTaskList.class.php:1391
+msgid "Alive"
+msgstr ""
+
+#: ../../enterprise/tools/ipam/ipam_network.php:423
+#: ../../godmode/wizards/DiscoveryTaskList.class.php:1396
+msgid "Not alive"
+msgstr ""
+
+#: ../../enterprise/tools/ipam/ipam_network.php:454
+#: ../../enterprise/tools/ipam/ipam_network.php:533
+#: ../../enterprise/tools/ipam/ipam_network.php:575
+msgid "Change to automatic mode"
+msgstr ""
+
+#: ../../enterprise/tools/ipam/ipam_network.php:463
+#: ../../enterprise/tools/ipam/ipam_network.php:542
+#: ../../enterprise/tools/ipam/ipam_network.php:584
+msgid "Change to manual mode"
+msgstr ""
+
+#: ../../enterprise/tools/ipam/ipam_network.php:663
+msgid "Add comments"
+msgstr ""
+
+#: ../../enterprise/tools/ipam/ipam_network.php:691
+msgid "Update agent address"
+msgstr ""
+
+#: ../../enterprise/tools/ipam/ipam_network.php:857
+msgid "Please, uncheck auto option to set manual agent."
+msgstr ""
+
+#: ../../enterprise/tools/ipam/ipam_action.php:121
+#: ../../enterprise/tools/ipam/ipam_action.php:240
+#: ../../enterprise/tools/ipam/ipam_supernet_config.php:227
+#: ../../enterprise/tools/ipam/ipam_supernet_config.php:327
+#: ../../enterprise/tools/ipam/ipam_list.php:383
+msgid "The location is not filled, please add a location."
+msgstr ""
+
+#: ../../enterprise/tools/ipam/ipam_action.php:138
+#: ../../enterprise/tools/ipam/ipam_action.php:270
+#: ../../enterprise/tools/ipam/ipam_list.php:400
+msgid "Incorrect format in Subnet field"
+msgstr ""
+
+#: ../../enterprise/tools/ipam/ipam_action.php:198
+#, php-format
+msgid "Network could not be added to supernet %s (%s)"
+msgstr ""
+
+#: ../../enterprise/tools/ipam/ipam_action.php:202
+#, php-format
+msgid "Network added to supernet %s (%s)"
+msgstr ""
+
+#: ../../enterprise/tools/ipam/ipam_action.php:207
+#, php-format
+msgid "Network name already exists in supernet %s (%s)"
+msgstr ""
+
+#: ../../enterprise/tools/ipam/ipam_action.php:219
+#: ../../enterprise/tools/ipam/ipam_list.php:425
+#, php-format
+msgid "Could not be created: %s"
+msgstr ""
+
+#: ../../enterprise/tools/ipam/ipam_calculator.php:64
+#: ../../enterprise/tools/ipam/ipam_calculator.php:66
+#: ../../enterprise/tools/ipam/ipam_calculator.php:87
+#: ../../enterprise/tools/ipam/ipam_calculator.php:90
+#: ../../enterprise/tools/ipam/ipam_calculator.php:93
+#: ../../enterprise/tools/ipam/ipam_calculator.php:96
+msgid "Example:"
+msgstr ""
+
+#: ../../enterprise/tools/ipam/ipam_calculator.php:70
+msgid "Bit mask"
+msgstr ""
+
+#: ../../enterprise/tools/ipam/ipam_calculator.php:71
+msgid "Net mask"
+msgstr ""
+
+#: ../../enterprise/tools/ipam/ipam_calculator.php:74
+msgid "Mask format"
+msgstr ""
+
+#: ../../enterprise/tools/ipam/ipam_calculator.php:105
+msgid "Calculate"
+msgstr ""
+
+#: ../../enterprise/tools/ipam/ipam_calculator.php:112
+msgid "Address field is empty"
+msgstr ""
+
+#: ../../enterprise/tools/ipam/ipam_calculator.php:120
+msgid "Mask field is empty"
+msgstr ""
+
+#: ../../enterprise/tools/ipam/ipam_calculator.php:139
+#: ../../enterprise/tools/ipam/ipam_calculator.php:152
+msgid "Incorrect address format"
+msgstr ""
+
+#: ../../enterprise/tools/ipam/ipam_calculator.php:144
+#: ../../enterprise/tools/ipam/ipam_calculator.php:157
+#: ../../enterprise/tools/ipam/ipam_calculator.php:162
+msgid "Incorrect mask format"
+msgstr ""
+
+#: ../../enterprise/tools/ipam/ipam_calculator.php:190
+msgid "Network mask"
+msgstr ""
+
+#: ../../enterprise/tools/ipam/ipam_calculator.php:211
+msgid "Network wildcard"
+msgstr ""
+
+#: ../../enterprise/tools/ipam/ipam_calculator.php:220
+msgid "Network address"
+msgstr ""
+
+#: ../../enterprise/tools/ipam/ipam_calculator.php:229
+msgid "Broadcast address"
+msgstr ""
+
+#: ../../enterprise/tools/ipam/ipam_calculator.php:238
+msgid "First valid IP"
+msgstr ""
+
+#: ../../enterprise/tools/ipam/ipam_calculator.php:247
+msgid "Last valid IP"
+msgstr ""
+
+#: ../../enterprise/tools/ipam/ipam_calculator.php:257
+msgid "Hosts/Net"
+msgstr ""
+
+#: ../../enterprise/tools/ipam/ipam_supernet_config.php:52
+#: ../../enterprise/tools/ipam/ipam_supernet_config.php:100
+msgid "There is no supernet name. Please introduce a name"
+msgstr ""
+
+#: ../../enterprise/tools/ipam/ipam_supernet_config.php:56
+#: ../../enterprise/tools/ipam/ipam_supernet_config.php:104
+msgid "There is no supernet address. Please introduce a address"
+msgstr ""
+
+#: ../../enterprise/tools/ipam/ipam_supernet_config.php:60
+#: ../../enterprise/tools/ipam/ipam_supernet_config.php:108
+msgid "There is no supernet mask. Please introduce a mask"
+msgstr ""
+
+#: ../../enterprise/tools/ipam/ipam_supernet_config.php:64
+msgid "There is no valid address. Please introduce a address"
+msgstr ""
+
+#: ../../enterprise/tools/ipam/ipam_supernet_config.php:68
+msgid "There is no valid mask. Please introduce a mask"
+msgstr ""
+
+#: ../../enterprise/tools/ipam/ipam_supernet_config.php:83
+msgid "Supernet created"
+msgstr ""
+
+#: ../../enterprise/tools/ipam/ipam_supernet_config.php:85
+msgid "Supernet not created"
+msgstr ""
+
+#: ../../enterprise/tools/ipam/ipam_supernet_config.php:89
+#: ../../enterprise/tools/ipam/ipam_supernet_config.php:135
+msgid "Supernet name exists in bbdd, please select other name"
+msgstr ""
+
+#: ../../enterprise/tools/ipam/ipam_supernet_config.php:129
+msgid "Supernet updated"
+msgstr ""
+
+#: ../../enterprise/tools/ipam/ipam_supernet_config.php:131
+msgid "Supernet not updated"
+msgstr ""
+
+#: ../../enterprise/tools/ipam/ipam_supernet_config.php:156
+msgid "Could not be deleted, please select supernet"
+msgstr ""
+
+#: ../../enterprise/tools/ipam/ipam_supernet_config.php:395
+#, php-format
+msgid "Successfully created %d networks"
+msgstr ""
+
+#: ../../enterprise/tools/ipam/ipam_supernet_config.php:399
+msgid "Failed to create networks"
+msgstr ""
+
+#: ../../enterprise/tools/ipam/ipam_supernet_config.php:402
+msgid "Entered range address is not valid"
+msgstr ""
+
+#: ../../enterprise/tools/ipam/ipam_supernet_config.php:429
+msgid "Network name cannot be repeated in this supernet"
+msgstr ""
+
+#: ../../enterprise/tools/ipam/ipam_supernet_config.php:445
+msgid "No networks to be added to supernet"
+msgstr ""
+
+#: ../../enterprise/tools/ipam/ipam_supernet_config.php:450
+msgid "supernet name could not be added, please select supernet"
+msgstr ""
+
+#: ../../enterprise/tools/ipam/ipam_supernet_config.php:479
+msgid "Could not be deleted, please select supernet and network"
+msgstr ""
+
+#: ../../enterprise/tools/ipam/ipam_supernet_config.php:486
+#, php-format
+msgid "Failed to delete %d/%d networks from supernet"
+msgstr ""
+
+#: ../../enterprise/tools/ipam/ipam_supernet_config.php:490
+msgid "Successfully deleted network from supernet"
+msgstr ""
+
+#: ../../enterprise/tools/ipam/ipam_supernet_config.php:492
+#, php-format
+msgid "Successfully deleted %d/%d networks from supernet"
+msgstr ""
+
+#: ../../enterprise/tools/ipam/ipam_supernet_config.php:582
+msgid "Subnetting Mask"
+msgstr ""
+
+#: ../../enterprise/tools/ipam/ipam_supernet_config.php:605
+#: ../../enterprise/tools/ipam/ipam_supernet_config.php:777
+#: ../../enterprise/tools/ipam/ipam_supernet_config.php:1064
+#: ../../enterprise/tools/ipam/ipam_list.php:129
+#: ../../enterprise/tools/ipam/ipam_list.php:595
+msgid "Site"
+msgstr ""
+
+#: ../../enterprise/tools/ipam/ipam_supernet_config.php:640
+#: ../../enterprise/tools/ipam/ipam_supernet_config.php:1313
+msgid "Update Supernet"
+msgstr ""
+
+#: ../../enterprise/tools/ipam/ipam_supernet_config.php:647
+#: ../../enterprise/tools/ipam/ipam_supernet_config.php:1451
+msgid "New Supernet"
+msgstr ""
+
+#: ../../enterprise/tools/ipam/ipam_supernet_config.php:688
+#, php-format
+msgid "%s supernets created"
+msgstr ""
+
+#: ../../enterprise/tools/ipam/ipam_supernet_config.php:690
+msgid "supernets creation failed"
+msgstr ""
+
+#: ../../enterprise/tools/ipam/ipam_supernet_config.php:763
+#: ../../enterprise/tools/ipam/ipam_list.php:93
+msgid "Search filter by name, network address or description"
+msgstr ""
+
+#: ../../enterprise/tools/ipam/ipam_supernet_config.php:790
+msgid "Min. networks range"
+msgstr ""
+
+#: ../../enterprise/tools/ipam/ipam_supernet_config.php:793
+msgid "Max. networks range"
+msgstr ""
+
+#: ../../enterprise/tools/ipam/ipam_supernet_config.php:1060
+msgid "Address / Masks"
+msgstr ""
+
+#: ../../enterprise/tools/ipam/ipam_supernet_config.php:1062
+msgid "Subnetting mask"
+msgstr ""
+
+#: ../../enterprise/tools/ipam/ipam_supernet_config.php:1063
+msgid "Networks range"
+msgstr ""
+
+#: ../../enterprise/tools/ipam/ipam_supernet_config.php:1237
+msgid "Delete network in supernet"
+msgstr ""
+
+#: ../../enterprise/tools/ipam/ipam_supernet_config.php:1286
+msgid "Manage networks in supernet"
+msgstr ""
+
+#: ../../enterprise/tools/ipam/ipam_supernet_config.php:1320
+msgid "Add network to supernet"
+msgstr ""
+
+#: ../../enterprise/tools/ipam/ipam_supernet_config.php:1323
+msgid "Next network"
+msgstr ""
+
+#: ../../enterprise/tools/ipam/ipam_supernet_config.php:1355
+msgid "Delete Supernet"
+msgstr ""
+
+#: ../../enterprise/tools/ipam/ipam_supernet_config.php:1444
+msgid "No Supernet found"
+msgstr ""
+
+#: ../../enterprise/tools/ipam/ipam.php:52 ../../extensions/files_repo.php:122
+#: ../../extensions/files_repo.php:210
+msgid "Operation view"
+msgstr ""
+
+#: ../../enterprise/tools/ipam/ipam.php:78
+#: ../../enterprise/tools/ipam/ipam.php:356
+msgid "Subnetworks calculator"
+msgstr ""
+
+#: ../../enterprise/tools/ipam/ipam.php:96
+msgid "Vlan config"
+msgstr ""
+
+#: ../../enterprise/tools/ipam/ipam.php:114
+msgid "Vlan wizard"
+msgstr ""
+
+#: ../../enterprise/tools/ipam/ipam.php:133
+msgid "Supernet treeview"
+msgstr ""
+
+#: ../../enterprise/tools/ipam/ipam.php:152
+msgid "Network locations"
+msgstr ""
+
+#: ../../enterprise/tools/ipam/ipam.php:171
+#: ../../enterprise/tools/ipam/ipam.php:411
+#: ../../enterprise/tools/ipam/ipam_editor.php:224
+#: ../../enterprise/include/ajax/ipam.ajax.php:418
+msgid "Sites"
+msgstr ""
+
+#: ../../enterprise/tools/ipam/ipam.php:196
+msgid "Vlan statistics"
+msgstr ""
+
+#: ../../enterprise/tools/ipam/ipam.php:216
+#: ../../enterprise/tools/ipam/ipam.php:381
+msgid "Supernet config"
+msgstr ""
+
+#: ../../enterprise/tools/ipam/ipam.php:237
+#: ../../enterprise/tools/ipam/ipam.php:396
+msgid "Supernet statistics"
+msgstr ""
+
+#: ../../enterprise/tools/ipam/ipam.php:257
+msgid "Supernet map"
+msgstr ""
+
+#: ../../enterprise/tools/ipam/ipam.php:280
+#: ../../enterprise/tools/ipam/ipam_list.php:685
+msgid "Manage addresses"
+msgstr ""
+
+#: ../../enterprise/tools/ipam/ipam.php:300
+#: ../../enterprise/tools/ipam/ipam.php:361
+#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:692
+#: ../../godmode/massive/massive_operations.php:390
+#: ../../godmode/massive/massive_edit_plugins.php:921
+msgid "Massive operations"
+msgstr ""
+
+#: ../../enterprise/tools/ipam/ipam.php:320
+#: ../../enterprise/tools/ipam/ipam_list.php:694
+msgid "Addresses view"
+msgstr ""
+
+#: ../../enterprise/tools/ipam/ipam.php:352
+msgid "/tools/ipam/ipam_network.php"
+msgstr ""
+
+#: ../../enterprise/tools/ipam/ipam.php:366
+msgid "VLAN Config"
+msgstr ""
+
+#: ../../enterprise/tools/ipam/ipam.php:371
+msgid "VLAN Wizard"
+msgstr ""
+
+#: ../../enterprise/tools/ipam/ipam.php:376
+msgid "VLAN Statistics"
+msgstr ""
+
+#: ../../enterprise/tools/ipam/ipam.php:386
+msgid "Network location config"
+msgstr ""
+
+#: ../../enterprise/tools/ipam/ipam.php:391
+msgid "Supernet wizard"
+msgstr ""
+
+#: ../../enterprise/tools/ipam/ipam.php:401
+msgid "Supernet Map"
+msgstr ""
+
+#: ../../enterprise/tools/ipam/ipam.php:406
+msgid "Supernet Treeview"
+msgstr ""
+
+#: ../../enterprise/tools/ipam/ipam.php:432
+msgid "Operation View"
+msgstr ""
+
+#: ../../enterprise/tools/ipam/ipam.php:449 ../../godmode/menu.php:380
+msgid "Admin tools"
+msgstr ""
+
+#: ../../enterprise/tools/ipam/ipam_supernet_treeview.php:94
+msgid "Found supernets"
+msgstr ""
+
+#: ../../enterprise/tools/ipam/ipam_list.php:97
+#: ../../enterprise/tools/ipam/ipam_list.php:588
+#: ../../enterprise/tools/ipam/ipam_editor.php:191
+#: ../../enterprise/include/ajax/ipam.ajax.php:385
+#: ../../enterprise/include/functions_ipam.php:1369
+#: ../../enterprise/include/functions_ipam.php:1983
+#: ../../godmode/events/event_responses.editor.php:123
+msgid "Location"
+msgstr ""
+
+#: ../../enterprise/tools/ipam/ipam_list.php:434
+#, php-format
+msgid "%s networks created"
+msgstr ""
+
+#: ../../enterprise/tools/ipam/ipam_list.php:436
+msgid "Networks creation failed"
+msgstr ""
+
+#: ../../enterprise/tools/ipam/ipam_list.php:501
+msgid "No networks found"
+msgstr ""
+
+#: ../../enterprise/tools/ipam/ipam_list.php:609
+#: ../../enterprise/tools/ipam/ipam_editor.php:243
+#: ../../enterprise/include/ajax/ipam.ajax.php:437
+msgid "Vrf"
+msgstr ""
+
+#: ../../enterprise/tools/ipam/ipam_list.php:625
+msgid "IPs"
+msgstr ""
+
+#: ../../enterprise/tools/ipam/ipam_list.php:708
+msgid "Edit network"
+msgstr ""
+
+#: ../../enterprise/tools/ipam/ipam_list.php:719
+msgid "Delete network"
+msgstr ""
+
+#: ../../enterprise/tools/ipam/ipam_sites.php:70
+msgid "Successfully saved"
+msgstr ""
+
+#: ../../enterprise/tools/ipam/ipam_sites.php:76
+#, php-format
+msgid "Failed to save site %s"
+msgstr ""
+
+#: ../../enterprise/tools/ipam/ipam_sites.php:132
+#, php-format
+msgid "Failed to delete site %s"
+msgstr ""
+
+#: ../../enterprise/tools/ipam/ipam_editor.php:56
+msgid "Network not found"
+msgstr ""
+
+#: ../../enterprise/tools/ipam/ipam_editor.php:122
+msgid "Format: IP/Mask"
+msgstr ""
+
+#: ../../enterprise/tools/ipam/ipam_editor.php:136
+msgid "Examples"
+msgstr ""
+
+#: ../../enterprise/tools/ipam/ipam_editor.php:192
+#: ../../enterprise/include/ajax/ipam.ajax.php:386
+msgid "For example: Central Data Center"
+msgstr ""
+
+#: ../../enterprise/tools/ipam/ipam_editor.php:225
+#: ../../enterprise/include/ajax/ipam.ajax.php:419
+msgid "For example: Pandora"
+msgstr ""
+
+#: ../../enterprise/tools/ipam/ipam_editor.php:244
+#: ../../enterprise/include/ajax/ipam.ajax.php:438
+msgid "Virtual Routing and Forwarding"
+msgstr ""
+
+#: ../../enterprise/tools/ipam/ipam_editor.php:262
+#: ../../enterprise/include/ajax/ipam.ajax.php:456
+msgid "Include statistical monitors"
+msgstr ""
+
+#: ../../enterprise/tools/ipam/ipam_editor.php:277
+#: ../../enterprise/include/ajax/ipam.ajax.php:471
+msgid "Lightweight mode"
+msgstr ""
+
+#: ../../enterprise/tools/ipam/ipam_editor.php:278
+#: ../../enterprise/include/ajax/ipam.ajax.php:472
+msgid "Use quicker network scan"
+msgstr ""
+
+#: ../../enterprise/tools/ipam/ipam_editor.php:294
+#: ../../enterprise/include/ajax/ipam.ajax.php:488
+msgid "Target group for monitoring agent"
+msgstr ""
+
+#: ../../enterprise/tools/ipam/ipam_editor.php:315
+#: ../../enterprise/include/ajax/ipam.ajax.php:509
+msgid "Scan interval"
+msgstr ""
+
+#: ../../enterprise/tools/ipam/ipam_editor.php:316
+#: ../../enterprise/include/ajax/ipam.ajax.php:510
+msgid "0 for manually scan"
+msgstr ""
+
+#: ../../enterprise/tools/ipam/ipam_editor.php:330
+#: ../../enterprise/include/ajax/ipam.ajax.php:524
+msgid "The list of users can manage the networks in the IPAM."
+msgstr ""
+
+#: ../../enterprise/tools/ipam/ipam_editor.php:331
+#: ../../enterprise/include/ajax/ipam.ajax.php:525
+msgid " Only the admin users can manage networks and edit the networks"
+msgstr ""
+
+#: ../../enterprise/tools/ipam/ipam_editor.php:332
+#: ../../enterprise/include/ajax/ipam.ajax.php:526
+msgid "Operator users"
+msgstr ""
+
+#: ../../enterprise/tools/ipam/ipam_editor.php:338
+#: ../../enterprise/include/ajax/ipam.ajax.php:532
+msgid "All users"
+msgstr ""
+
+#: ../../enterprise/views/ncm/agent/details.php:89
+msgid "Script type"
+msgstr ""
+
+#: ../../enterprise/views/ncm/agent/details.php:91
+msgid "Execution last timestamp"
+msgstr ""
+
+#: ../../enterprise/views/ncm/agent/details.php:107
+msgid "Retrieve running configuration"
+msgstr ""
+
+#: ../../enterprise/views/ncm/agent/details.php:120
+#: ../../enterprise/views/ncm/agent/details.php:383
+msgid "Restore from backup"
+msgstr ""
+
+#: ../../enterprise/views/ncm/agent/details.php:133
+#: ../../enterprise/views/ncm/agent/details.php:325
+#: ../../enterprise/include/lib/NetworkManager.php:85
+msgid "Retrieve firmware version"
+msgstr ""
+
+#: ../../enterprise/views/ncm/agent/details.php:172
+msgid "Running without a backup"
+msgstr ""
+
+#: ../../enterprise/views/ncm/agent/details.php:181
+msgid "Latest configuration retrieved is different from backed one"
+msgstr ""
+
+#: ../../enterprise/views/ncm/agent/details.php:184
+msgid "Backup up to date with latest configuration"
+msgstr ""
+
+#: ../../enterprise/views/ncm/agent/details.php:208
+msgid "Configuration backup status"
+msgstr ""
+
+#: ../../enterprise/views/ncm/agent/details.php:238
+msgid "Last on demand execution"
+msgstr ""
+
+#: ../../enterprise/views/ncm/agent/details.php:246
+#, php-format
+msgid "Customize %s"
+msgstr ""
+
+#: ../../enterprise/views/ncm/agent/details.php:250
+msgid "Execute snippet"
+msgstr ""
+
+#: ../../enterprise/views/ncm/agent/details.php:265
+#: ../../enterprise/meta/include/functions_wizard_meta.php:1542
+#: ../../enterprise/meta/include/functions_wizard_meta.php:1635
+#: ../../enterprise/meta/include/functions_wizard_meta.php:1760
+#: ../../enterprise/meta/include/functions_wizard_meta.php:1835
+#: ../../enterprise/meta/monitoring/wizard/wizard.module.web.php:103
+#: ../../enterprise/meta/monitoring/wizard/wizard.module.local.php:110
+#: ../../enterprise/meta/monitoring/wizard/wizard.agent.php:66
+#: ../../enterprise/meta/monitoring/wizard/wizard.module.network.php:122
+msgid "Preview"
+msgstr ""
+
+#: ../../enterprise/views/ncm/agent/details.php:314
+#, php-format
+msgid "Current firmware version: %s"
+msgstr ""
+
+#: ../../enterprise/views/ncm/agent/details.php:339
+#, php-format
+msgid "Configuration backup present, %s"
+msgstr ""
+
+#: ../../enterprise/views/ncm/agent/details.php:346
+msgid "There is no configuration backup"
+msgstr ""
+
+#: ../../enterprise/views/ncm/agent/details.php:359
+msgid "Backup latest retrieved configuration"
+msgstr ""
+
+#: ../../enterprise/views/ncm/agent/details.php:372
+#: ../../enterprise/include/class/ManageBackups.class.php:302
+#: ../../extensions/files_repo/files_repo_list.php:123
+msgid "Download"
+msgstr ""
+
+#: ../../enterprise/views/ncm/agent/details.php:401
+#, php-format
+msgid "Latest operation \"%s\" was executed %s ago with result: %s %s"
+msgstr ""
+
+#: ../../enterprise/views/ncm/agent/details.php:414
+#, php-format
+msgid "Script executions queued: %d"
+msgstr ""
+
+#: ../../enterprise/views/ncm/agent/details.php:424
+#, php-format
+msgid "Configuration backup schedule: %s"
+msgstr ""
+
+#: ../../enterprise/views/ncm/agent/details.php:441
+msgid "Device details"
+msgstr ""
+
+#: ../../enterprise/views/ncm/agent/details.php:483
+msgid "Configuration timestamp"
+msgstr ""
+
+#: ../../enterprise/views/ncm/agent/details.php:484
+msgid "Diff"
+msgstr ""
+
+#: ../../enterprise/views/ncm/agent/details.php:490
+msgid "No changes with current backup"
+msgstr ""
+
+#: ../../enterprise/views/ncm/agent/details.php:494
+msgid "This is the latest configuration retrieved"
+msgstr ""
+
+#: ../../enterprise/views/ncm/agent/details.php:507
+#: ../../enterprise/views/ncm/agent/details.php:511
+msgid "This is the current backup."
+msgstr ""
+
+#: ../../enterprise/views/ncm/agent/details.php:523
+msgid "Review this configuration"
+msgstr ""
+
+#: ../../enterprise/views/ncm/agent/details.php:534
+msgid "There is no backup to compare with"
+msgstr ""
+
+#: ../../enterprise/views/ncm/agent/details.php:545
+msgid "Backup this configuration"
+msgstr ""
+
+#: ../../enterprise/views/ncm/agent/details.php:563
+msgid "Configurations registry"
+msgstr ""
+
+#: ../../enterprise/views/ncm/agent/details.php:574
+msgid "Diff between: backup - selected"
+msgstr ""
+
+#: ../../enterprise/views/ncm/agent/details.php:624
+msgid "Retrieve firmware version?"
+msgstr ""
+
+#: ../../enterprise/views/ncm/agent/details.php:625
+msgid ""
+"This action will connect to the device to retrieve firmware version. Are you "
+"sure?"
+msgstr ""
+
+#: ../../enterprise/views/ncm/agent/details.php:635
+msgid "Get running config?"
+msgstr ""
+
+#: ../../enterprise/views/ncm/agent/details.php:636
+msgid ""
+"This action will connect to the device to retrieve latest configuration. Are "
+"you sure?"
+msgstr ""
+
+#: ../../enterprise/views/ncm/agent/details.php:647
+msgid "Backup latest config?"
+msgstr ""
+
+#: ../../enterprise/views/ncm/agent/details.php:648
+msgid ""
+"This action will overwrite current backup to use latest retrieved "
+"configuration. Are you sure?"
+msgstr ""
+
+#: ../../enterprise/views/ncm/agent/details.php:656
+msgid "Backup target config?"
+msgstr ""
+
+#: ../../enterprise/views/ncm/agent/details.php:657
+msgid ""
+"This action will overwrite current backup to use selected configuration. Are "
+"you sure?"
+msgstr ""
+
+#: ../../enterprise/views/ncm/agent/details.php:668
+msgid "Restore device configuration?"
+msgstr ""
+
+#: ../../enterprise/views/ncm/agent/details.php:669
+msgid ""
+"This action will overwrite device configuration with latest backup. Are you "
+"sure?"
+msgstr ""
+
+#: ../../enterprise/views/ncm/agent/details.php:688
+msgid "Customize script execution"
+msgstr ""
+
+#: ../../enterprise/views/ncm/agent/manage.php:57
+msgid "For instance Cisco"
+msgstr ""
+
+#: ../../enterprise/views/ncm/agent/manage.php:59
+msgid "Device manufacturer"
+msgstr ""
+
+#: ../../enterprise/views/ncm/agent/manage.php:87
+msgid "For instance Catalyst 9400"
+msgstr ""
+
+#: ../../enterprise/views/ncm/agent/manage.php:89
+msgid "Device model"
+msgstr ""
+
+#: ../../enterprise/views/ncm/agent/manage.php:102
+#: ../../godmode/agentes/module_manager_editor_network.php:482
+msgid "Connection method"
+msgstr ""
+
+#: ../../enterprise/views/ncm/agent/manage.php:107
+msgid "connect using SSH"
+msgstr ""
+
+#: ../../enterprise/views/ncm/agent/manage.php:108
+msgid "connect using telnet"
+msgstr ""
+
+#: ../../enterprise/views/ncm/agent/manage.php:131
+msgid "Credentials to access device"
+msgstr ""
+
+#: ../../enterprise/views/ncm/agent/manage.php:144
+msgid "Credentials to administrate device"
+msgstr ""
+
+#: ../../enterprise/views/ncm/agent/manage.php:177
+msgid "NCM template to be used"
+msgstr ""
+
+#: ../../enterprise/views/ncm/agent/manage.php:190
+msgid "Backup schedule (if defined)"
+msgstr ""
+
+#: ../../enterprise/views/ncm/agent/manage.php:195
+msgid "No schedule"
+msgstr ""
+
+#: ../../enterprise/views/ncm/agent/manage.php:197
+msgid "Once a day"
+msgstr ""
+
+#: ../../enterprise/views/ncm/agent/manage.php:198
+msgid "Once a week"
+msgstr ""
+
+#: ../../enterprise/views/ncm/agent/manage.php:199
+msgid "Once a month"
+msgstr ""
+
+#: ../../enterprise/views/ncm/agent/manage.php:218
+msgid "Launch event if configuration changes"
+msgstr ""
+
+#: ../../enterprise/views/ncm/agent/manage.php:243
+msgid "NCM state"
+msgstr ""
+
+#: ../../enterprise/views/ncm/agent/modalOnDemandScript.php:63
+msgid "Select firmware file to update to"
+msgstr ""
+
+#: ../../enterprise/views/ncm/agent/modalOnDemandScript.php:75
+msgid "Transfer from url"
+msgstr ""
+
+#: ../../enterprise/views/ncm/agent/modalOnDemandScript.php:86
+msgid "Target file name"
+msgstr ""
+
+#: ../../enterprise/views/ncm/agent/modalOnDemandScript.php:105
+msgid "Customize execution"
+msgstr ""
+
+#: ../../enterprise/views/ncm/snippets/edit.php:42
+#: ../../enterprise/views/ncm/snippets/list.php:32
+msgid "Snippets"
+msgstr ""
+
+#: ../../enterprise/views/ncm/snippets/edit.php:73
+#: ../../enterprise/views/ncm/firmwares/edit.php:72
+#: ../../enterprise/views/ncm/templates/edit.php:73
+msgid "Script not defined"
+msgstr ""
+
+#: ../../enterprise/views/ncm/snippets/edit.php:91
+#: ../../enterprise/views/ncm/templates/edit.php:160
+#: ../../enterprise/views/ncm/templates/edit.php:188
+#: ../../enterprise/views/ncm/templates/edit.php:216
+#: ../../enterprise/views/ncm/templates/edit.php:244
+#: ../../enterprise/views/ncm/templates/edit.php:271
+#: ../../enterprise/views/ncm/templates/edit.php:298
+msgid "Script details"
+msgstr ""
+
+#: ../../enterprise/views/ncm/firmwares/edit.php:41
+msgid "Firmware"
+msgstr ""
+
+#: ../../enterprise/views/ncm/firmwares/edit.php:101
+msgid ""
+"Comma separated, a vendors list compatible with scripts defined within "
+"firmware."
+msgstr ""
+
+#: ../../enterprise/views/ncm/firmwares/edit.php:106
+#: ../../enterprise/views/ncm/vendors/edit.php:35
+#: ../../enterprise/views/ncm/vendors/list.php:32
+#: ../../enterprise/views/ncm/templates/edit.php:107
+#: ../../enterprise/views/ncm/templates/list.php:74
+msgid "Vendors"
+msgstr ""
+
+#: ../../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:133
+#: ../../enterprise/views/ncm/firmwares/list.php:76
+#: ../../enterprise/views/ncm/templates/edit.php:134
+#: ../../enterprise/views/ncm/templates/list.php:75
+#: ../../enterprise/views/ncm/models/list.php:32
+msgid "Models"
+msgstr ""
+
+#: ../../enterprise/views/ncm/firmwares/edit.php:149
+msgid "Current binary file will be overwritten, are you sure?"
+msgstr ""
+
+#: ../../enterprise/views/ncm/firmwares/edit.php:154
+msgid "Binary file"
+msgstr ""
+
+#: ../../enterprise/views/ncm/firmwares/list.php:32
+msgid "Firmwares"
+msgstr ""
+
+#: ../../enterprise/views/ncm/firmwares/list.php:75
+#: ../../enterprise/views/ncm/devices/list.php:118
+#: ../../enterprise/views/ncm/models/edit.php:88
+#: ../../enterprise/views/ncm/models/list.php:72
+msgid "Vendor"
+msgstr ""
+
+#: ../../enterprise/views/ncm/vendors/edit.php:89
+msgid "icon"
+msgstr ""
+
+#: ../../enterprise/views/ncm/devices/list.php:32
+#: ../../enterprise/views/ncm/templates/edit.php:42
+#: ../../enterprise/views/ncm/models/edit.php:37
+msgid "Devices"
+msgstr ""
+
+#: ../../enterprise/views/ncm/devices/list.php:69
+msgid ""
+"WARNING: This is a new feature and is still at an early stage. It is "
+"available with limited features, use it with caution and send us your "
+"feedback to improve these current capabilities."
+msgstr ""
+
+#: ../../enterprise/views/ncm/devices/list.php:72
+msgid ""
+"Network configuration manager is used to keep configurations and software "
+"versions of any network device in your infrastructure under your control."
+msgstr ""
+
+#: ../../enterprise/views/ncm/devices/list.php:77
+msgid ""
+"To start using it, navigatenavigate to your desired agent, tab Network "
+"Config Manager, and enable the ncm features,\n"
+"        you will be asked for the vendor and model of the device."
+msgstr ""
+
+#: ../../enterprise/views/ncm/devices/list.php:84
+msgid "Define a NCM template"
+msgstr ""
+
+#: ../../enterprise/views/ncm/devices/list.php:87
+msgid "Configure agents to use NCM templates"
+msgstr ""
+
+#: ../../enterprise/views/ncm/devices/list.php:119
+msgid "Model"
+msgstr ""
+
+#: ../../enterprise/views/ncm/devices/list.php:121
+msgid "Last queued task"
+msgstr ""
+
+#: ../../enterprise/views/ncm/devices/list.php:123
+#: ../../enterprise/include/functions_tasklist.php:158
+#: ../../enterprise/godmode/reporting/reporting_builder.template.php:520
+#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:136
+#: ../../enterprise/godmode/alerts/alert_inventory_list.php:224
+#: ../../enterprise/godmode/policies/policy_alerts.php:354
+#: ../../godmode/massive/massive_copy_modules.php:185
+#: ../../godmode/wizards/DiscoveryTaskList.class.php:612
+#: ../../godmode/alerts/alert_list.list.php:485
+msgid "Operations"
+msgstr ""
+
+#: ../../enterprise/views/ncm/templates/edit.php:102
+msgid ""
+"Comma separated, a vendors list compatible with scripts defined within "
+"template."
+msgstr ""
+
+#: ../../enterprise/views/ncm/templates/edit.php:130
+msgid ""
+"Comma separated, a model list compatible with scripts defined within "
+"template."
+msgstr ""
+
+#: ../../enterprise/views/ncm/templates/edit.php:148
+msgid "This script will be used to test devices availability"
+msgstr ""
+
+#: ../../enterprise/views/ncm/templates/edit.php:153
+msgid "Script: Test"
+msgstr ""
+
+#: ../../enterprise/views/ncm/templates/edit.php:176
+msgid "This script will be used to retrieve configuration from devices"
+msgstr ""
+
+#: ../../enterprise/views/ncm/templates/edit.php:181
+msgid "Script: Get configuration"
+msgstr ""
+
+#: ../../enterprise/views/ncm/templates/edit.php:204
+msgid ""
+"This script will be used to apply configuration, previously backed up, to "
+"devices"
+msgstr ""
+
+#: ../../enterprise/views/ncm/templates/edit.php:209
+msgid "Script: set configuration"
+msgstr ""
+
+#: ../../enterprise/views/ncm/templates/edit.php:232
+msgid "This script will be used to retrieve firmware version from devices"
+msgstr ""
+
+#: ../../enterprise/views/ncm/templates/edit.php:237
+msgid "Script: get firmware"
+msgstr ""
+
+#: ../../enterprise/views/ncm/templates/edit.php:259
+msgid "This script will be used to upgrade firmware version of the devices"
+msgstr ""
+
+#: ../../enterprise/views/ncm/templates/edit.php:264
+msgid "Script: set firmware"
+msgstr ""
+
+#: ../../enterprise/views/ncm/templates/edit.php:286
+msgid "This script will be executed on the devices when selecting CUSTOM task"
+msgstr ""
+
+#: ../../enterprise/views/ncm/templates/edit.php:291
+msgid "Script: custom task"
+msgstr ""
+
+#: ../../enterprise/views/ncm/templates/list.php:76
+msgid "Scripts defined"
+msgstr ""
+
+#: ../../enterprise/views/cluster/edit.php:41
+#: ../../enterprise/views/cluster/edit.php:68
+#: ../../enterprise/views/cluster/view.php:44
+#: ../../enterprise/views/cluster/view.php:63
+msgid "Cluster list"
+msgstr ""
+
+#: ../../enterprise/views/cluster/edit.php:57
+msgid "cluster "
+msgstr ""
+
+#: ../../enterprise/views/cluster/edit.php:88
+msgid "View this cluster"
+msgstr ""
+
+#: ../../enterprise/views/cluster/view.php:50
+#: ../../enterprise/views/cluster/view.php:81
+msgid "Cluster details"
+msgstr ""
+
+#: ../../enterprise/views/cluster/view.php:74
+msgid "Edit this cluster"
+msgstr ""
+
+#: ../../enterprise/views/cluster/view.php:223
+msgid "Force cluster status calculation"
+msgstr ""
+
+#: ../../enterprise/views/cluster/view.php:314
+msgid "Cluster agent"
+msgstr ""
+
+#: ../../enterprise/views/cluster/list.php:122
+msgid "New cluster"
+msgstr ""
+
+#: ../../enterprise/operation/log/elasticsearch_interface.php:31
+#: ../../enterprise/operation/log/log_viewer.php:377
+#: ../../enterprise/operation/log/log_viewer.php:417
+#: ../../enterprise/operation/menu.php:181
+#: ../../enterprise/meta/general/main_menu.php:247
+#: ../../enterprise/meta/general/main_header.php:143
+#: ../../enterprise/meta/include/functions_meta.php:293
+#: ../../enterprise/meta/advanced/metasetup.php:80
+#: ../../enterprise/meta/advanced/metasetup.php:223
+msgid "Log viewer"
+msgstr ""
+
+#: ../../enterprise/operation/log/elasticsearch_interface.php:39
+#: ../../enterprise/operation/log/log_viewer.php:391
+#: ../../enterprise/operation/menu.php:211
+msgid "Elasticsearch Interface"
+msgstr ""
+
+#: ../../enterprise/operation/log/elasticsearch_interface.php:49
+msgid ""
+"This is a view to interface with Elasticsearch directly from WEB console. \n"
+"Please note that you can damage your Elasticsearch if you don`t know exactly "
+"what are you are doing. \n"
+"This view is intended to be used only by users with a knowledge of "
+"Elasticsearch"
+msgstr ""
+
+#: ../../enterprise/operation/log/log_viewer.php:405
+#: ../../enterprise/operation/log/log_viewer.php:424
+#: ../../enterprise/operation/log/log_viewer.php:435
+msgid "Log sources"
+msgstr ""
+
+#: ../../enterprise/operation/log/log_viewer.php:477
+#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:189
+#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:244
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3504
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3579
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3735
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3806
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:4240
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:4385
+msgid "Exact match"
+msgstr ""
+
+#: ../../enterprise/operation/log/log_viewer.php:478
+msgid "All words"
+msgstr ""
+
+#: ../../enterprise/operation/log/log_viewer.php:479
+msgid "Any word"
+msgstr ""
+
+#: ../../enterprise/operation/log/log_viewer.php:482
+msgid "Search mode"
+msgstr ""
+
+#: ../../enterprise/operation/log/log_viewer.php:529
+msgid "Full context"
+msgstr ""
+
+#: ../../enterprise/operation/log/log_viewer.php:667
+#: ../../enterprise/operation/log/log_viewer.php:668
+msgid "Edit sources"
+msgstr ""
+
+#: ../../enterprise/operation/log/log_viewer.php:711
+msgid "Show log entries"
+msgstr ""
+
+#: ../../enterprise/operation/log/log_viewer.php:712
+msgid "Graph log results"
+msgstr ""
+
+#: ../../enterprise/operation/log/log_viewer.php:714
+msgid "Display mode"
+msgstr ""
+
+#: ../../enterprise/operation/log/log_viewer.php:727
+msgid "Use capture model"
+msgstr ""
+
+#: ../../enterprise/operation/log/log_viewer.php:757
+msgid "Create new model"
+msgstr ""
+
+#: ../../enterprise/operation/log/log_viewer.php:761
+#: ../../godmode/reporting/graph_builder.main.php:220
+msgid "Horizontal bars"
+msgstr ""
+
+#: ../../enterprise/operation/log/log_viewer.php:762
+#: ../../godmode/reporting/graph_builder.main.php:221
+msgid "Vertical bars"
+msgstr ""
+
+#: ../../enterprise/operation/log/log_viewer.php:764
+msgid "Graph type"
+msgstr ""
+
+#: ../../enterprise/operation/log/log_viewer.php:779
+msgid "Advanced options "
+msgstr ""
+
+#: ../../enterprise/operation/log/log_viewer.php:899
+msgid ""
+"The maximum limit of rows has been exceeded. Please enter an email to send "
+"the csv file"
+msgstr ""
+
+#: ../../enterprise/operation/log/log_viewer.php:901
+msgid "e-mail address"
+msgstr ""
+
+#: ../../enterprise/operation/log/log_viewer.php:904
+msgid ""
+"WARNING: If your email size exceeds your mail attachment size limit, the "
+"file will be saved in the local attachment folder."
+msgstr ""
+
+#: ../../enterprise/operation/log/log_viewer.php:1022
+msgid "The start date cannot be greater than the end date"
+msgstr ""
+
+#: ../../enterprise/operation/log/log_viewer.php:1450
+msgid "Add new capture model"
+msgstr ""
+
+#: ../../enterprise/operation/log/log_viewer.php:1453
+msgid "Edit capture model"
+msgstr ""
+
+#: ../../enterprise/operation/log/log_viewer.php:1536
+msgid "Error create new model"
+msgstr ""
+
+#: ../../enterprise/operation/log/log_viewer.php:1563
+msgid "Error delete model"
+msgstr ""
+
+#: ../../enterprise/operation/log/log_viewer.php:1609
+msgid "Error update model"
+msgstr ""
+
+#: ../../enterprise/operation/services/services.treeview_services.php:111
+#: ../../enterprise/operation/services/services.list.php:284
+#: ../../enterprise/operation/services/services.table_services.php:206
+msgid "Show only favourites"
+msgstr ""
+
+#: ../../enterprise/operation/services/services.treeview_services.php:151
+msgid "No favourite services defined."
+msgstr ""
+
+#: ../../enterprise/operation/services/services.treeview_services.php:153
+#: ../../enterprise/operation/services/services.list.php:447
+#: ../../enterprise/operation/services/services.list.php:456
+#: ../../enterprise/operation/services/services.table_services.php:359
+#: ../../enterprise/operation/services/services.table_services.php:365
+msgid "No services defined."
+msgstr ""
+
+#: ../../enterprise/operation/services/services.treeview_services.php:181
+#: ../../enterprise/operation/services/services.list.php:719
+#: ../../enterprise/operation/services/services.table_services.php:450
+msgid "Create Service"
+msgstr ""
+
+#: ../../enterprise/operation/services/services.treeview_services.php:247
+#: ../../godmode/groups/group_list.php:1035
+msgid "Found groups"
+msgstr ""
+
+#: ../../enterprise/operation/services/services.service.php:55
+#: ../../enterprise/operation/services/services.service_map.php:62
+#: ../../enterprise/godmode/services/services.service.php:303
+#: ../../enterprise/godmode/services/services.service.php:346
+msgid "Not found"
+msgstr ""
+
+#: ../../enterprise/operation/services/services.service.php:90
+msgid "No Services"
+msgstr ""
+
+#: ../../enterprise/operation/services/services.service.php:203
+#: ../../enterprise/operation/services/services.list.php:586
+msgid "SLA graph"
+msgstr ""
+
+#: ../../enterprise/operation/services/services.service.php:227
+msgid "List of elements"
+msgstr ""
+
+#: ../../enterprise/operation/services/services.list.php:62
+msgid "List of services"
+msgstr ""
+
+#: ../../enterprise/operation/services/services.list.php:100
+msgid "Services successfully deleted"
+msgstr ""
+
+#: ../../enterprise/operation/services/services.list.php:101
+#, php-format
+msgid "Error while deleting services: %s"
+msgstr ""
+
+#: ../../enterprise/operation/services/services.list.php:104
+#: ../../enterprise/include/functions_visual_map.php:683
+msgid "No services selected"
+msgstr ""
+
+#: ../../enterprise/operation/services/services.list.php:118
+msgid "Service deleted successfully"
+msgstr ""
+
+#: ../../enterprise/operation/services/services.list.php:119
+#, php-format
+msgid "Error deleting service %s"
+msgstr ""
+
+#: ../../enterprise/operation/services/services.list.php:127
+msgid "Service forced successfully"
+msgstr ""
+
+#: ../../enterprise/operation/services/services.list.php:128
+msgid "Error service forced"
+msgstr ""
+
+#: ../../enterprise/operation/services/services.list.php:276
+#: ../../enterprise/operation/services/services.table_services.php:198
+#: ../../enterprise/godmode/services/services.service.php:651
+#: ../../enterprise/godmode/massive/massive_create_services.php:699
+msgid "Smart"
+msgstr ""
+
+#: ../../enterprise/operation/services/services.list.php:278
+#: ../../enterprise/operation/services/services.table_services.php:200
+#: ../../enterprise/godmode/servers/HA_cluster.php:175
+#: ../../enterprise/godmode/services/services.service.php:643
+#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:880
+#: ../../enterprise/godmode/massive/massive_create_services.php:690
+#: ../../godmode/massive/massive_edit_modules.php:933
+#: ../../godmode/alerts/alert_view.php:407
+msgid "Mode"
+msgstr ""
+
+#: ../../enterprise/operation/services/services.list.php:298
+#: ../../enterprise/operation/services/services.table_services.php:220
+msgid "Show only root services"
+msgstr ""
+
+#: ../../enterprise/operation/services/services.list.php:590
+msgid "Status graph"
+msgstr ""
+
+#: ../../enterprise/operation/services/services.table_services.php:45
+#: ../../godmode/groups/group_list.php:355
+msgid "Table view"
+msgstr ""
+
+#: ../../enterprise/operation/services/services.php:90
+#: ../../enterprise/operation/services/services.php:182
+#: ../../enterprise/godmode/services/services.elements.php:697
+#: ../../enterprise/godmode/services/services.service.php:388
+msgid "Services list"
+msgstr ""
+
+#: ../../enterprise/operation/services/services.php:105
+#: ../../enterprise/godmode/services/services.elements.php:711
+#: ../../enterprise/godmode/services/services.service.php:402
+msgid "Config Service"
+msgstr ""
+
+#: ../../enterprise/operation/services/services.php:123
+#: ../../enterprise/godmode/services/services.elements.php:728
+#: ../../enterprise/godmode/services/services.service.php:419
+msgid "Config Elements"
+msgstr ""
+
+#: ../../enterprise/operation/services/services.php:136
+#: ../../enterprise/godmode/services/services.elements.php:740
+#: ../../enterprise/godmode/services/services.service.php:431
+msgid "Bulk service elements operations"
+msgstr ""
+
+#: ../../enterprise/operation/services/services.php:152
+#: ../../enterprise/godmode/services/services.elements.php:755
+#: ../../enterprise/godmode/services/services.service.php:446
+msgid "View Service"
+msgstr ""
+
+#: ../../enterprise/operation/services/services.php:197
+msgid "Service table view"
+msgstr ""
+
+#: ../../enterprise/operation/services/services.php:212
+msgid "Service tree view"
+msgstr ""
+
+#: ../../enterprise/operation/services/services.php:229
+msgid "Bulk creation"
+msgstr ""
+
+#: ../../enterprise/operation/reporting/custom_reporting.php:14
+#: ../../enterprise/godmode/reporting/reporting_builder.template.php:503
+msgid "PDF"
+msgstr ""
+
+#: ../../enterprise/operation/reporting/custom_reporting.php:16
+#: ../../enterprise/godmode/reporting/reporting_builder.template.php:504
+msgid "JSON"
+msgstr ""
+
+#: ../../enterprise/operation/reporting/custom_reporting.php:72
+#: ../../enterprise/godmode/reporting/reporting_builder.template.php:589
+msgid "Export to JSON"
+msgstr ""
+
+#: ../../enterprise/operation/reporting/custom_reporting.php:90
+#: ../../enterprise/operation/reporting/custom_reporting.php:164
+#: ../../enterprise/include/functions_reporting.php:8218
+msgid "Send by email"
+msgstr ""
+
+#: ../../enterprise/operation/reporting/custom_reporting.php:101
+#: ../../enterprise/include/functions_reporting.php:8150
+msgid "ID Report"
+msgstr ""
+
+#: ../../enterprise/operation/reporting/custom_reporting.php:124
+#: ../../enterprise/include/functions_cron.php:186
+#: ../../enterprise/include/functions_cron.php:236
+#: ../../enterprise/include/functions_reporting.php:8178
+msgid "Send to emails (separated by comma)"
+msgstr ""
+
+#: ../../enterprise/operation/reporting/custom_reporting.php:144
+#: ../../enterprise/operation/reporting/custom_reporting.php:158
+#: ../../enterprise/include/functions_cron.php:800
+#: ../../enterprise/include/functions_cron.php:833
+#: ../../enterprise/include/functions_reporting.php:8198
+#: ../../enterprise/include/functions_reporting.php:8212
+msgid "This is an optional field"
+msgstr ""
+
+#: ../../enterprise/operation/reporting/custom_reporting.php:200
+#: ../../enterprise/include/functions_reporting.php:8306
+msgid "Send by email "
+msgstr ""
+
+#: ../../enterprise/operation/menu.php:32
+msgid "Cluster View"
+msgstr ""
+
+#: ../../enterprise/operation/menu.php:45
+#: ../../enterprise/godmode/reporting/aws_view.php:106
+#: ../../enterprise/godmode/reporting/aws_view.php:139
+msgid "AWS View"
+msgstr ""
+
+#: ../../enterprise/operation/menu.php:143
+msgid "Transactional map"
+msgstr ""
+
+#: ../../enterprise/operation/menu.php:160
+#: ../../enterprise/godmode/reporting/mysql_builder.php:79
+#: ../../enterprise/godmode/reporting/mysql_builder.php:206
+msgid "Custom SQL"
+msgstr ""
+
+#: ../../enterprise/operation/menu.php:170
+#: ../../enterprise/operation/snmpconsole/snmp_view.php:82
+#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor_form.php:24
+#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:44
+msgid "SNMP trap editor"
+msgstr ""
+
+#: ../../enterprise/operation/menu.php:191
+#: ../../enterprise/operation/agentes/tag_view.php:41
+msgid "Tag view"
+msgstr ""
+
+#: ../../enterprise/operation/menu.php:200
+#: ../../enterprise/include/class/ManageBackups.class.php:121
+msgid "DB Backup Manager"
+msgstr ""
+
+#: ../../enterprise/operation/agentes/policy_view.php:38
+msgid "This agent has no policy assigned"
+msgstr ""
+
+#: ../../enterprise/operation/agentes/policy_view.php:58
+#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:38
+#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:38
+#: ../../enterprise/godmode/massive/massive_edit_tags_policy.php:40
+#: ../../enterprise/godmode/massive/massive_add_alerts_policy.php:38
+#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:40
+#: ../../enterprise/godmode/massive/massive_tags_edit_policy.php:40
+#: ../../enterprise/godmode/policies/policy_agents.php:326
+#: ../../enterprise/godmode/policies/policy_queue.php:218
+#: ../../enterprise/godmode/policies/policy_linking.php:117
+#: ../../enterprise/godmode/policies/policy_modules.php:476
+#: ../../enterprise/godmode/policies/policies.php:268
+#: ../../enterprise/godmode/policies/policy_external_alerts.php:309
+#: ../../enterprise/godmode/policies/configure_policy.php:81
+#: ../../enterprise/godmode/policies/policy_inventory_modules.php:91
+#: ../../enterprise/godmode/policies/policy_alerts.php:64
+#: ../../enterprise/godmode/policies/policy_collections.php:50
+#: ../../enterprise/godmode/policies/policy_plugins.php:38
+#, php-format
+msgid ""
+"This node is configured with centralized mode. All policies information is "
+"read only. Go to %s to manage it."
+msgstr ""
+
+#: ../../enterprise/operation/agentes/policy_view.php:69
+#: ../../enterprise/godmode/policies/policy_agents.php:856
+#: ../../enterprise/godmode/policies/policy_agents.php:1371
+msgid "Last application"
+msgstr ""
+
+#: ../../enterprise/operation/agentes/policy_view.php:83
+#: ../../enterprise/godmode/policies/policy_agents.php:1102
+#: ../../enterprise/godmode/policies/policy_agents.php:1427
+msgid "Policy applied"
+msgstr ""
+
+#: ../../enterprise/operation/agentes/policy_view.php:89
+msgid "Policy outdate"
+msgstr ""
+
+#: ../../enterprise/operation/agentes/policy_view.php:159
+#: ../../enterprise/operation/agentes/policy_view.php:169
+msgid "Toggle the collection table"
+msgstr ""
+
+#: ../../enterprise/operation/agentes/policy_view.php:164
+#: ../../enterprise/operation/agentes/collection_view.php:76
+#: ../../enterprise/godmode/agentes/collection_manager.php:207
+msgid "Dir"
+msgstr ""
+
+#: ../../enterprise/operation/agentes/policy_view.php:165
+msgid "Descripttion"
+msgstr ""
+
+#: ../../enterprise/operation/agentes/policy_view.php:173
+msgid "Show Collection"
+msgstr ""
+
+#: ../../enterprise/operation/agentes/policy_view.php:195
+#: ../../enterprise/operation/agentes/policy_view.php:196
+#: ../../enterprise/operation/agentes/collection_view.php:108
+#: ../../enterprise/godmode/agentes/collection_manager.php:129
+#: ../../enterprise/godmode/agentes/collection_manager.php:130
+#: ../../enterprise/godmode/agentes/collection_manager.php:254
+msgid "Show files"
+msgstr ""
+
+#: ../../enterprise/operation/agentes/policy_view.php:217
+#: ../../enterprise/operation/agentes/policy_view.php:218
+#: ../../enterprise/operation/agentes/collection_view.php:128
+#: ../../enterprise/operation/agentes/collection_view.php:129
+#: ../../enterprise/godmode/policies/policy_collections.php:224
+#: ../../enterprise/godmode/policies/policy_collections.php:296
+msgid "Outdate"
+msgstr ""
+
+#: ../../enterprise/operation/agentes/policy_view.php:253
+#: ../../enterprise/operation/agentes/policy_view.php:265
+msgid "Toggle the alert table"
+msgstr ""
+
+#: ../../enterprise/operation/agentes/policy_view.php:269
+msgid "Show Alert"
+msgstr ""
+
+#: ../../enterprise/operation/agentes/policy_view.php:390
+#: ../../enterprise/operation/agentes/policy_view.php:402
+msgid "Toggle the module table"
+msgstr ""
+
+#: ../../enterprise/operation/agentes/policy_view.php:394
+msgid "Relationship"
+msgstr ""
+
+#: ../../enterprise/operation/agentes/policy_view.php:394
+#: ../../enterprise/godmode/policies/policy_agents.php:849
+msgid "R."
+msgstr ""
+
+#: ../../enterprise/operation/agentes/policy_view.php:406
+msgid "Show Modules"
+msgstr ""
+
+#: ../../enterprise/operation/agentes/policy_view.php:425
+msgid "(Un-adopted)"
+msgstr ""
+
+#: ../../enterprise/operation/agentes/policy_view.php:428
+msgid "(Adopted)"
+msgstr ""
+
+#: ../../enterprise/operation/agentes/policy_view.php:433
+msgid "(Un-adopted) (Unlinked)"
+msgstr ""
+
+#: ../../enterprise/operation/agentes/policy_view.php:436
+msgid "(Adopted) (Unlinked)"
+msgstr ""
+
+#: ../../enterprise/operation/agentes/policy_view.php:457
+#: ../../godmode/agentes/module_manager.php:1086
+msgid "Non initialized module"
+msgstr ""
+
+#: ../../enterprise/operation/agentes/manage_transmap_creation_phases_data.php:34
+#: ../../enterprise/operation/agentes/manage_transmap_creation.php:115
+#: ../../enterprise/operation/agentes/manage_transmap_creation.php:332
+#: ../../enterprise/operation/agentes/manage_transmap_creation.php:417
+#: ../../enterprise/operation/agentes/manage_transmap.php:56
+msgid "Transactions List"
+msgstr ""
+
+#: ../../enterprise/operation/agentes/manage_transmap_creation_phases_data.php:42
+#: ../../enterprise/operation/agentes/manage_transmap_creation.php:139
+#: ../../enterprise/operation/agentes/manage_transmap_creation.php:441
+#: ../../enterprise/operation/agentes/manage_transmap.php:96
+msgid "Edit Transaction"
+msgstr ""
+
+#: ../../enterprise/operation/agentes/manage_transmap_creation_phases_data.php:50
+msgid "Go back to phases list"
+msgstr ""
+
+#: ../../enterprise/operation/agentes/manage_transmap_creation_phases_data.php:56
+msgid "Transactional Map - Phase - "
+msgstr ""
+
+#: ../../enterprise/operation/agentes/manage_transmap_creation_phases_data.php:74
+#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:424
+#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:466
+msgid "Launch script"
+msgstr ""
+
+#: ../../enterprise/operation/agentes/manage_transmap_creation_phases_data.php:77
+#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1057
+#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:500
+#: ../../godmode/massive/massive_edit_modules.php:1135
+#: ../../godmode/agentes/module_manager_editor_common.php:1138
+msgid "Retries"
+msgstr ""
+
+#: ../../enterprise/operation/agentes/manage_transmap_creation_phases_data.php:80
+#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1044
+#: ../../godmode/massive/massive_edit_modules.php:1122
+#: ../../godmode/agentes/module_manager_editor_common.php:1135
+msgid "Timeout"
+msgstr ""
+
+#: ../../enterprise/operation/agentes/collection_view.php:60
+#: ../../enterprise/godmode/agentes/collection_manager.php:37
+msgid "This agent have not a remote configuration, please set it."
+msgstr ""
+
+#: ../../enterprise/operation/agentes/collection_view.php:66
+msgid "No collection assigned to this agent"
+msgstr ""
+
+#: ../../enterprise/operation/agentes/collection_view.php:139
+#: ../../enterprise/operation/agentes/collection_view.php:140
+#: ../../enterprise/meta/advanced/collections.data.php:383
+#: ../../enterprise/meta/advanced/collections.data.php:384
+#: ../../enterprise/meta/advanced/collections.php:405
+#: ../../enterprise/meta/advanced/collections.php:406
+#: ../../enterprise/godmode/agentes/collection_manager.php:175
+#: ../../enterprise/godmode/agentes/collection_manager.php:176
+#: ../../enterprise/godmode/agentes/collection_manager.php:290
+#: ../../enterprise/godmode/agentes/collection_manager.php:291
+#: ../../enterprise/godmode/agentes/collections.data.php:477
+#: ../../enterprise/godmode/agentes/collections.data.php:478
+#: ../../enterprise/godmode/agentes/collections.php:385
+#: ../../enterprise/godmode/agentes/collections.php:386
+msgid "The collection directory does not exist."
+msgstr ""
+
+#: ../../enterprise/operation/agentes/url_route_analyzer.php:39
+msgid "No agent selected"
+msgstr ""
+
+#: ../../enterprise/operation/agentes/url_route_analyzer.php:42
+msgid "Route not found"
+msgstr ""
+
+#: ../../enterprise/operation/agentes/wux_console_view.php:224
+msgid "Selected transaction has no stats"
+msgstr ""
+
+#: ../../enterprise/operation/agentes/wux_console_view.php:242
+msgid "No WUX transactions found."
+msgstr ""
+
+#: ../../enterprise/operation/agentes/wux_console_view.php:261
+#: ../../enterprise/operation/agentes/ux_console_view.php:133
+msgid "Transaction"
+msgstr ""
+
+#: ../../enterprise/operation/agentes/wux_console_view.php:286
+#: ../../enterprise/operation/agentes/ux_console_view.php:142
+msgid "Show transaction"
+msgstr ""
+
+#: ../../enterprise/operation/agentes/wux_console_view.php:332
+#: ../../enterprise/operation/agentes/ux_console_view.php:266
+msgid "Global results"
+msgstr ""
+
+#: ../../enterprise/operation/agentes/wux_console_view.php:357
+msgid "Failed: "
+msgstr ""
+
+#: ../../enterprise/operation/agentes/wux_console_view.php:378
+msgid "Success: "
+msgstr ""
+
+#: ../../enterprise/operation/agentes/wux_console_view.php:384
+msgid "Total transaction time: "
+msgstr ""
+
+#: ../../enterprise/operation/agentes/wux_console_view.php:398
+#, php-format
+msgid "Execution results for transaction %s"
+msgstr ""
+
+#: ../../enterprise/operation/agentes/wux_console_view.php:527
+msgid "View all stats"
+msgstr ""
+
+#: ../../enterprise/operation/agentes/wux_console_view.php:570
+#: ../../enterprise/operation/agentes/ux_console_view.php:332
+msgid "Transaction history"
+msgstr ""
+
+#: ../../enterprise/operation/agentes/wux_console_view.php:611
+msgid "Invalid transaction."
+msgstr ""
+
+#: ../../enterprise/operation/agentes/transactional_map.php:61
+msgid "List of transactions"
+msgstr ""
+
+#: ../../enterprise/operation/agentes/transactional_map.php:74
+#: ../../enterprise/operation/agentes/manage_transmap_creation.php:173
+#: ../../enterprise/operation/agentes/manage_transmap_creation.php:353
+#: ../../enterprise/operation/agentes/manage_transmap_creation.php:475
+#: ../../enterprise/operation/agentes/manage_transmap.php:176
+msgid "Transactional Map"
+msgstr ""
+
+#: ../../enterprise/operation/agentes/transactional_map.php:149
+msgid "Name can't be empty"
+msgstr ""
+
+#: ../../enterprise/operation/agentes/transactional_map.php:206
+msgid "Transaction name"
+msgstr ""
+
+#: ../../enterprise/operation/agentes/transactional_map.php:209
+msgid "Running status"
+msgstr ""
+
+#: ../../enterprise/operation/agentes/transactional_map.php:211
+msgid "Time spent"
+msgstr ""
+
+#: ../../enterprise/operation/agentes/transactional_map.php:254
+msgid "Stopped"
+msgstr ""
+
+#: ../../enterprise/operation/agentes/transactional_map.php:260
+msgid "Starting"
+msgstr ""
+
+#: ../../enterprise/operation/agentes/transactional_map.php:260
+msgid "Stopping"
+msgstr ""
+
+#: ../../enterprise/operation/agentes/transactional_map.php:265
+#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:554
+#: ../../godmode/agentes/planned_downtime.list.php:616
+#: ../../godmode/agentes/planned_downtime.list.php:688
+msgid "Running"
+msgstr ""
+
+#: ../../enterprise/operation/agentes/transactional_map.php:439
+msgid "Edit phases"
+msgstr ""
+
+#: ../../enterprise/operation/agentes/transactional_map.php:461
+msgid "Go to `Status` module"
+msgstr ""
+
+#: ../../enterprise/operation/agentes/transactional_map.php:492
+msgid "Error in phases section"
+msgstr ""
+
+#: ../../enterprise/operation/agentes/transactional_map.php:512
+#: ../../enterprise/operation/agentes/manage_transmap_creation.php:340
+msgid "Create Transaction"
+msgstr ""
+
+#: ../../enterprise/operation/agentes/manage_transmap_creation.php:63
+msgid "Please, reset the transaction"
+msgstr ""
+
+#: ../../enterprise/operation/agentes/manage_transmap_creation.php:102
+msgid "Successfully data updated"
+msgstr ""
+
+#: ../../enterprise/operation/agentes/manage_transmap_creation.php:103
+msgid "Could not be data updated"
+msgstr ""
+
+#: ../../enterprise/operation/agentes/manage_transmap_creation.php:127
+#: ../../enterprise/operation/agentes/manage_transmap_creation.php:429
+#: ../../enterprise/operation/agentes/manage_transmap.php:84
+msgid "Edit main data"
+msgstr ""
+
+#: ../../enterprise/operation/agentes/manage_transmap_creation.php:152
+#: ../../enterprise/operation/agentes/manage_transmap_creation.php:454
+#: ../../enterprise/operation/agentes/manage_transmap.php:109
+msgid "View Transaction"
+msgstr ""
+
+#: ../../enterprise/operation/agentes/manage_transmap_creation.php:160
+msgid "Create Phase"
+msgstr ""
+
+#: ../../enterprise/operation/agentes/manage_transmap_creation.php:185
+msgid "Index"
+msgstr ""
+
+#: ../../enterprise/operation/agentes/manage_transmap_creation.php:188
+msgid "Dependencies"
+msgstr ""
+
+#: ../../enterprise/operation/agentes/manage_transmap_creation.php:189
+msgid "Enables"
+msgstr ""
+
+#: ../../enterprise/operation/agentes/manage_transmap_creation.php:219
+#: ../../enterprise/include/ajax/transactional.ajax.php:174
+msgid "The phase does not have a defined script"
+msgstr ""
+
+#: ../../enterprise/operation/agentes/manage_transmap_creation.php:254
+msgid "Not valid dependencies field"
+msgstr ""
+
+#: ../../enterprise/operation/agentes/manage_transmap_creation.php:260
+msgid "Not valid enables field"
+msgstr ""
+
+#: ../../enterprise/operation/agentes/manage_transmap_creation.php:275
+#: ../../enterprise/include/ajax/transactional.ajax.php:211
+msgid "Edit Data"
+msgstr ""
+
+#: ../../enterprise/operation/agentes/manage_transmap_creation.php:367
+#: ../../enterprise/operation/agentes/manage_transmap_creation.php:493
+msgid "Loop interval"
+msgstr ""
+
+#: ../../enterprise/operation/agentes/manage_transmap_creation.php:462
+msgid "Transactional Map - Edit Transaction"
+msgstr ""
+
+#: ../../enterprise/operation/agentes/agent_inventory.php:61
+msgid "This agent has not modules inventory"
+msgstr ""
+
+#: ../../enterprise/operation/agentes/agent_inventory.php:162
+#: ../../enterprise/operation/agentes/agent_inventory.php:163
+msgid "Diff view"
+msgstr ""
+
+#: ../../enterprise/operation/agentes/agent_inventory.diff_view.php:44
+msgid "Unsucessful get module inventory data."
+msgstr ""
+
+#: ../../enterprise/operation/agentes/agent_inventory.diff_view.php:173
+#: ../../enterprise/operation/agentes/agent_inventory.diff_view.php:176
+#: ../../mobile/operation/modules.php:799
+#: ../../mobile/operation/tactical.php:239
+#: ../../mobile/operation/events.php:871
+#: ../../mobile/operation/module_graph.php:477
+#: ../../mobile/operation/agents.php:463
+#: ../../godmode/reporting/visual_console_builder.wizard.php:538
+msgid "Loading..."
+msgstr ""
+
+#: ../../enterprise/operation/agentes/manage_transmap.php:153
+msgid "Return to windowed mode"
+msgstr ""
+
+#: ../../enterprise/operation/agentes/manage_transmap.php:182
+msgid "Transaction not found"
+msgstr ""
+
+#: ../../enterprise/operation/agentes/manage_transmap.php:185
+msgid "Master lock file not found (No data to show)"
+msgstr ""
+
+#: ../../enterprise/operation/agentes/manage_transmap.php:188
+msgid "Transaction is stopped"
+msgstr ""
+
+#: ../../enterprise/operation/agentes/manage_transmap.php:191
+msgid "Error, please check the transaction phases"
+msgstr ""
+
+#: ../../enterprise/operation/agentes/ux_console_view.php:43
+msgid "No ux transaction selected."
+msgstr ""
+
+#: ../../enterprise/operation/agentes/ux_console_view.php:124
+msgid "No ux transactions found."
+msgstr ""
+
+#: ../../enterprise/operation/agentes/ux_console_view.php:168
+msgid "Execution results for transaction "
+msgstr ""
+
+#: ../../enterprise/operation/agentes/ver_agente.php:215
+#: ../../enterprise/include/functions_groups.php:81
+#: ../../enterprise/meta/advanced/collections.php:289
+#: ../../enterprise/godmode/agentes/collections.php:327
+#: ../../godmode/agentes/configurar_agente.php:701
+msgid "Collection"
+msgstr ""
+
+#: ../../enterprise/operation/agentes/ver_agente.php:258
+msgid "URL Route Analyzer"
+msgstr ""
+
+#: ../../enterprise/operation/agentes/ver_agente.php:274
+msgid "UX Console"
+msgstr ""
+
+#: ../../enterprise/operation/agentes/ver_agente.php:290
+msgid "WUX Console"
+msgstr ""
+
+#: ../../enterprise/operation/inventory/inventory.php:275
+msgid "You must select at least one filter."
+msgstr ""
+
+#: ../../enterprise/operation/inventory/inventory.php:420
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2075
+msgid "Last"
+msgstr ""
+
+#: ../../enterprise/operation/inventory/inventory.php:424
+msgid "Order by agent"
+msgstr ""
+
+#: ../../enterprise/operation/inventory/inventory.php:466
+msgid "Export this list to CSV"
+msgstr ""
+
+#: ../../enterprise/include/functions_cron.php:178
+#: ../../enterprise/include/functions_cron.php:256
+#: ../../enterprise/include/functions_cron.php:331
+#: ../../enterprise/include/functions_cron.php:375
+msgid "Report to build"
+msgstr ""
+
+#: ../../enterprise/include/functions_cron.php:199
+#: ../../enterprise/include/functions_cron.php:249
+#: ../../enterprise/include/functions_cron.php:275
+msgid "Report Type"
+msgstr ""
+
+#: ../../enterprise/include/functions_cron.php:206
+#: ../../enterprise/include/functions_cron.php:353
+msgid "Template to build"
+msgstr ""
+
+#: ../../enterprise/include/functions_cron.php:224
+msgid "Regexp agent filter"
+msgstr ""
+
+#: ../../enterprise/include/functions_cron.php:264
+#: ../../enterprise/include/functions_cron.php:286
+#: ../../enterprise/include/functions_cron.php:376
+msgid "Save to disk into path"
+msgstr ""
+
+#: ../../enterprise/include/functions_cron.php:265
+msgid "The apache user should have read-write access on this folder. Ex: "
+msgstr ""
+
+#: ../../enterprise/include/functions_cron.php:271
+msgid "File name prefix"
+msgstr ""
+
+#: ../../enterprise/include/functions_cron.php:291
+msgid "Active backups"
+msgstr ""
+
+#: ../../enterprise/include/functions_cron.php:306
+#: ../../enterprise/include/functions_cron.php:332
+#: ../../enterprise/include/functions_cron.php:354
+msgid "Send to email"
+msgstr ""
+
+#: ../../enterprise/include/functions_cron.php:315
+msgid "Function name"
+msgstr ""
+
+#: ../../enterprise/include/functions_cron.php:333
+msgid "Send custom report by email"
+msgstr ""
+
+#: ../../enterprise/include/functions_cron.php:355
+msgid "Send custom report (from template) by email"
+msgstr ""
+
+#: ../../enterprise/include/functions_cron.php:377
+msgid "Save custom report to disk"
+msgstr ""
+
+#: ../../enterprise/include/functions_cron.php:397
+msgid "Backup Pandora database"
+msgstr ""
+
+#: ../../enterprise/include/functions_cron.php:417
+msgid "Execute custom script"
+msgstr ""
+
+#: ../../enterprise/include/functions_cron.php:499
+msgid "Not scheduled"
+msgstr ""
+
+#: ../../enterprise/include/functions_cron.php:502
+#: ../../enterprise/include/lib/NetworkManager.php:182
+#: ../../godmode/agentes/module_manager_editor_prediction.php:181
+#: ../../godmode/agentes/planned_downtime.editor.php:643
+msgid "Weekly"
+msgstr ""
+
+#: ../../enterprise/include/functions_cron.php:503
+#: ../../godmode/agentes/module_manager_editor_prediction.php:182
+#: ../../godmode/agentes/planned_downtime.editor.php:644
+msgid "Monthly"
+msgstr ""
+
+#: ../../enterprise/include/functions_cron.php:504
+msgid "Yearly"
+msgstr ""
+
+#: ../../enterprise/include/functions_cron.php:1531
+msgid "Scheduled report had an attempt to send an email without attachments."
+msgstr ""
+
+#: ../../enterprise/include/functions_cron.php:1534
+msgid "Scheduled report had an attempt to send an email with some attachments."
+msgstr ""
+
+#: ../../enterprise/include/functions_cron.php:1778
+msgid "Attached to this email there's a CSV file of the logs"
+msgstr ""
+
+#: ../../enterprise/include/functions_cron.php:1788
+msgid "logs csv"
+msgstr ""
+
+#: ../../enterprise/include/functions_cron.php:2207
+#, php-format
+msgid "Error while executing task: %s, running %s, reason %s"
+msgstr ""
+
+#: ../../enterprise/include/functions_cron.php:2221
+#: ../../enterprise/include/functions_cron.php:2231
+msgid "Error while executing task"
+msgstr ""
+
+#: ../../enterprise/include/functions_enterprise_api.php:1119
+msgid "Is not metaconsole"
+msgstr ""
+
+#: ../../enterprise/include/functions_enterprise_api.php:2580
+msgid "Error getting alert actions."
+msgstr ""
+
+#: ../../enterprise/include/functions_enterprise_api.php:3553
+#: ../../enterprise/include/functions_enterprise_api.php:3607
+#, php-format
+msgid "%d agents added to apply queue."
+msgstr ""
+
+#: ../../enterprise/include/functions_enterprise_api.php:3576
+#: ../../enterprise/include/functions_policies.php:4857
+#, php-format
+msgid "Successfully applied to node %s."
+msgstr ""
+
+#: ../../enterprise/include/functions_enterprise_api.php:3578
+#: ../../enterprise/include/functions_policies.php:4859
+#, php-format
+msgid "Successfully applied to nodes: %s."
+msgstr ""
+
+#: ../../enterprise/include/functions_enterprise_api.php:3617
+#, php-format
+msgid "Id policy %d already pending to apply."
+msgstr ""
+
+#: ../../enterprise/include/functions_enterprise_api.php:3619
+#, php-format
+msgid "Id policy %d already pending to apply in Id agent %d."
+msgstr ""
+
+#: ../../enterprise/include/functions_enterprise_api.php:4035
+#: ../../enterprise/include/functions_enterprise_api.php:4062
+msgid ""
+"Error adding web analysis module to policy. Id_module_type is not correct "
+"for web analysis modules."
+msgstr ""
+
+#: ../../enterprise/include/functions_enterprise_api.php:4044
+msgid ""
+"Network Module could not be added to policy. Id_module_type is not correct "
+"for network modules."
+msgstr ""
+
+#: ../../enterprise/include/functions_enterprise_api.php:4053
+msgid ""
+"Error adding web module to policy. Id_module_type is not correct for web "
+"modules."
+msgstr ""
+
+#: ../../enterprise/include/functions_enterprise_api.php:4074
+msgid "Error adding module to policy configuration_data is not a valid base64."
+msgstr ""
+
+#: ../../enterprise/include/functions_enterprise_api.php:6075
+msgid "The agent could not be added to the policy."
+msgstr ""
+
+#: ../../enterprise/include/functions_enterprise_api.php:6292
+#, php-format
+msgid "Failed Updated remote config files %d"
+msgstr ""
+
+#: ../../enterprise/include/functions_enterprise_api.php:6302
+#, php-format
+msgid "Updated remote config files: %d => %d"
+msgstr ""
+
+#: ../../enterprise/include/functions_reporting_csv.php:416
+msgid "Event report agent"
+msgstr ""
+
+#: ../../enterprise/include/functions_reporting_csv.php:418
+msgid "Event report group"
+msgstr ""
+
+#: ../../enterprise/include/functions_reporting_csv.php:442
+msgid "Event report module"
+msgstr ""
+
+#: ../../enterprise/include/functions_reporting_csv.php:502
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2614
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2604
+msgid "Time in OK status"
+msgstr ""
+
+#: ../../enterprise/include/functions_reporting_csv.php:510
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2630
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2620
+msgid "Time in unknown status"
+msgstr ""
+
+#: ../../enterprise/include/functions_reporting_csv.php:514
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2642
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2632
+msgid "Time of not initialized module"
+msgstr ""
+
+#: ../../enterprise/include/functions_reporting_csv.php:518
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2654
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2644
+msgid "Time of downtime"
+msgstr ""
+
+#: ../../enterprise/include/functions_reporting_csv.php:521
+#: ../../enterprise/include/functions_reporting_csv.php:1429
+msgid "% OK"
+msgstr ""
+
+#: ../../enterprise/include/functions_reporting_csv.php:534
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2732
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2720
+msgid "Checks in OK status"
+msgstr ""
+
+#: ../../enterprise/include/functions_reporting_csv.php:538
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2744
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2744
+msgid "Unknown checks"
+msgstr ""
+
+#: ../../enterprise/include/functions_reporting_csv.php:662
+msgid "Maximum value"
+msgstr ""
+
+#: ../../enterprise/include/functions_reporting_csv.php:667
+msgid "Minimum value"
+msgstr ""
+
+#: ../../enterprise/include/functions_reporting_csv.php:670
+msgid "Average value"
+msgstr ""
+
+#: ../../enterprise/include/functions_reporting_csv.php:718
+msgid "Sec. group"
+msgstr ""
+
+#: ../../enterprise/include/functions_reporting_csv.php:718
+msgid "Custom Field"
+msgstr ""
+
+#: ../../enterprise/include/functions_reporting_csv.php:817
+msgid "Serialized data "
+msgstr ""
+
+#: ../../enterprise/include/functions_reporting_csv.php:856
+msgid "Last Value "
+msgstr ""
+
+#: ../../enterprise/include/functions_reporting_csv.php:983
+msgid "Uknown agents"
+msgstr ""
+
+#: ../../enterprise/include/functions_reporting_csv.php:983
+msgid "Last 8 hours events"
+msgstr ""
+
+#: ../../enterprise/include/functions_reporting_csv.php:1115
+msgid "Illegal query or any other error"
+msgstr ""
+
+#: ../../enterprise/include/functions_reporting_csv.php:1220
+#: ../../enterprise/include/functions_reporting_csv.php:1222
+#: ../../enterprise/include/functions_reporting_csv.php:1228
+#: ../../enterprise/include/functions_reporting_csv.php:1230
+msgid "Minimum Value"
+msgstr ""
+
+#: ../../enterprise/include/functions_reporting_csv.php:1275
+#: ../../enterprise/include/functions_reporting_csv.php:1277
+#: ../../enterprise/include/functions_reporting_csv.php:1283
+#: ../../enterprise/include/functions_reporting_csv.php:1285
+msgid "Maximun Value"
+msgstr ""
+
+#: ../../enterprise/include/functions_reporting_csv.php:1394
+msgid "AVG"
+msgstr ""
+
+#: ../../enterprise/include/functions_reporting_csv.php:1429
+msgid "% Wrong"
+msgstr ""
+
+#: ../../enterprise/include/functions_reporting_csv.php:1444
+msgid "Simple Graph"
+msgstr ""
+
+#: ../../enterprise/include/functions_reporting_csv.php:1504
+#: ../../enterprise/include/functions_reporting_csv.php:1550
+#: ../../enterprise/include/functions_reporting_csv.php:1623
+#: ../../enterprise/include/functions_reporting_csv.php:1742
+#: ../../enterprise/include/functions_reporting_csv.php:2050
+msgid "SLA Max"
+msgstr ""
+
+#: ../../enterprise/include/functions_reporting_csv.php:1505
+#: ../../enterprise/include/functions_reporting_csv.php:1551
+#: ../../enterprise/include/functions_reporting_csv.php:1624
+#: ../../enterprise/include/functions_reporting_csv.php:1743
+#: ../../enterprise/include/functions_reporting_csv.php:2051
+msgid "SLA Min"
+msgstr ""
+
+#: ../../enterprise/include/functions_reporting_csv.php:1507
+#: ../../enterprise/include/functions_reporting_csv.php:1553
+msgid "Time Total "
+msgstr ""
+
+#: ../../enterprise/include/functions_reporting_csv.php:1508
+#: ../../enterprise/include/functions_reporting_csv.php:1554
+msgid "Time OK "
+msgstr ""
+
+#: ../../enterprise/include/functions_reporting_csv.php:1509
+#: ../../enterprise/include/functions_reporting_csv.php:1555
+msgid "Time Error "
+msgstr ""
+
+#: ../../enterprise/include/functions_reporting_csv.php:1510
+#: ../../enterprise/include/functions_reporting_csv.php:1556
+msgid "Time Unknown "
+msgstr ""
+
+#: ../../enterprise/include/functions_reporting_csv.php:1511
+#: ../../enterprise/include/functions_reporting_csv.php:1557
+msgid "Time Not Init "
+msgstr ""
+
+#: ../../enterprise/include/functions_reporting_csv.php:1512
+#: ../../enterprise/include/functions_reporting_csv.php:1558
+msgid "Time Downtime "
+msgstr ""
+
+#: ../../enterprise/include/functions_reporting_csv.php:1513
+#: ../../enterprise/include/functions_reporting_csv.php:1559
+msgid "Checks Total "
+msgstr ""
+
+#: ../../enterprise/include/functions_reporting_csv.php:1514
+#: ../../enterprise/include/functions_reporting_csv.php:1560
+msgid "Checks OK "
+msgstr ""
+
+#: ../../enterprise/include/functions_reporting_csv.php:1515
+#: ../../enterprise/include/functions_reporting_csv.php:1561
+msgid "Checks Error "
+msgstr ""
+
+#: ../../enterprise/include/functions_reporting_csv.php:1516
+#: ../../enterprise/include/functions_reporting_csv.php:1562
+msgid "Checks Unknown "
+msgstr ""
+
+#: ../../enterprise/include/functions_reporting_csv.php:1517
+#: ../../enterprise/include/functions_reporting_csv.php:1563
+msgid "Checks Not Init "
+msgstr ""
+
+#: ../../enterprise/include/functions_reporting_csv.php:1518
+#: ../../enterprise/include/functions_reporting_csv.php:1564
+msgid "SLA "
+msgstr ""
+
+#: ../../enterprise/include/functions_reporting_csv.php:1519
+#: ../../enterprise/include/functions_reporting_csv.php:1565
+msgid "Status "
+msgstr ""
+
+#: ../../enterprise/include/functions_reporting_csv.php:1611
+#: ../../enterprise/include/functions_reporting_csv.php:1727
+#: ../../enterprise/include/functions_reporting_csv.php:1967
+#: ../../enterprise/include/functions_reporting_csv.php:2035
+msgid "Subtitle"
+msgstr ""
+
+#: ../../enterprise/include/functions_reporting_csv.php:1626
+#: ../../enterprise/include/functions_reporting_csv.php:1758
+#: ../../enterprise/include/functions_reporting_csv.php:2066
+msgid "Time Total Month"
+msgstr ""
+
+#: ../../enterprise/include/functions_reporting_csv.php:1627
+#: ../../enterprise/include/functions_reporting_csv.php:1759
+#: ../../enterprise/include/functions_reporting_csv.php:2067
+msgid "Time OK Month"
+msgstr ""
+
+#: ../../enterprise/include/functions_reporting_csv.php:1628
+#: ../../enterprise/include/functions_reporting_csv.php:1760
+#: ../../enterprise/include/functions_reporting_csv.php:2068
+msgid "Time Error Month"
+msgstr ""
+
+#: ../../enterprise/include/functions_reporting_csv.php:1629
+#: ../../enterprise/include/functions_reporting_csv.php:1761
+#: ../../enterprise/include/functions_reporting_csv.php:2069
+msgid "Time Unknown Month"
+msgstr ""
+
+#: ../../enterprise/include/functions_reporting_csv.php:1630
+#: ../../enterprise/include/functions_reporting_csv.php:1762
+#: ../../enterprise/include/functions_reporting_csv.php:2070
+msgid "Time Downtime Month"
+msgstr ""
+
+#: ../../enterprise/include/functions_reporting_csv.php:1631
+#: ../../enterprise/include/functions_reporting_csv.php:1763
+#: ../../enterprise/include/functions_reporting_csv.php:2071
+msgid "Time Not Init Month"
+msgstr ""
+
+#: ../../enterprise/include/functions_reporting_csv.php:1632
+#: ../../enterprise/include/functions_reporting_csv.php:1764
+#: ../../enterprise/include/functions_reporting_csv.php:2072
+msgid "Checks Total Month"
+msgstr ""
+
+#: ../../enterprise/include/functions_reporting_csv.php:1633
+#: ../../enterprise/include/functions_reporting_csv.php:1765
+#: ../../enterprise/include/functions_reporting_csv.php:2073
+msgid "Checks OK Month"
+msgstr ""
+
+#: ../../enterprise/include/functions_reporting_csv.php:1634
+#: ../../enterprise/include/functions_reporting_csv.php:1766
+#: ../../enterprise/include/functions_reporting_csv.php:2074
+msgid "Checks Error Month"
+msgstr ""
+
+#: ../../enterprise/include/functions_reporting_csv.php:1635
+#: ../../enterprise/include/functions_reporting_csv.php:1767
+#: ../../enterprise/include/functions_reporting_csv.php:2075
+msgid "Checks Unknown Month"
+msgstr ""
+
+#: ../../enterprise/include/functions_reporting_csv.php:1636
+#: ../../enterprise/include/functions_reporting_csv.php:1768
+#: ../../enterprise/include/functions_reporting_csv.php:2076
+msgid "Checks Not Init Month"
+msgstr ""
+
+#: ../../enterprise/include/functions_reporting_csv.php:1637
+#: ../../enterprise/include/functions_reporting_csv.php:1769
+#: ../../enterprise/include/functions_reporting_csv.php:2077
+msgid "SLA Month"
+msgstr ""
+
+#: ../../enterprise/include/functions_reporting_csv.php:1638
+#: ../../enterprise/include/functions_reporting_csv.php:1770
+#: ../../enterprise/include/functions_reporting_csv.php:2078
+msgid "Status Month"
+msgstr ""
+
+#: ../../enterprise/include/functions_reporting_csv.php:1660
+#: ../../enterprise/include/functions_reporting.php:2023
+msgid "Day"
+msgstr ""
+
+#: ../../enterprise/include/functions_reporting_csv.php:1661
+#: ../../enterprise/include/functions_reporting_csv.php:1816
+msgid "Time Total Day"
+msgstr ""
+
+#: ../../enterprise/include/functions_reporting_csv.php:1662
+#: ../../enterprise/include/functions_reporting_csv.php:1817
+msgid "Time OK Day"
+msgstr ""
+
+#: ../../enterprise/include/functions_reporting_csv.php:1663
+#: ../../enterprise/include/functions_reporting_csv.php:1818
+msgid "Time Error Day"
+msgstr ""
+
+#: ../../enterprise/include/functions_reporting_csv.php:1664
+#: ../../enterprise/include/functions_reporting_csv.php:1819
+msgid "Time Unknown Day"
+msgstr ""
+
+#: ../../enterprise/include/functions_reporting_csv.php:1665
+#: ../../enterprise/include/functions_reporting_csv.php:1820
+msgid "Time Not Init Day"
+msgstr ""
+
+#: ../../enterprise/include/functions_reporting_csv.php:1666
+#: ../../enterprise/include/functions_reporting_csv.php:1821
+msgid "Time Downtime Day"
+msgstr ""
+
+#: ../../enterprise/include/functions_reporting_csv.php:1667
+#: ../../enterprise/include/functions_reporting_csv.php:1822
+msgid "Time Out Day"
+msgstr ""
+
+#: ../../enterprise/include/functions_reporting_csv.php:1668
+#: ../../enterprise/include/functions_reporting_csv.php:1823
+msgid "Checks Total Day"
+msgstr ""
+
+#: ../../enterprise/include/functions_reporting_csv.php:1669
+#: ../../enterprise/include/functions_reporting_csv.php:1824
+msgid "Checks OK Day"
+msgstr ""
+
+#: ../../enterprise/include/functions_reporting_csv.php:1670
+#: ../../enterprise/include/functions_reporting_csv.php:1825
+msgid "Checks Error Day"
+msgstr ""
+
+#: ../../enterprise/include/functions_reporting_csv.php:1671
+#: ../../enterprise/include/functions_reporting_csv.php:1826
+msgid "Checks Unknown Day"
+msgstr ""
+
+#: ../../enterprise/include/functions_reporting_csv.php:1672
+#: ../../enterprise/include/functions_reporting_csv.php:1827
+msgid "Checks Not Init Day"
+msgstr ""
+
+#: ../../enterprise/include/functions_reporting_csv.php:1673
+#: ../../enterprise/include/functions_reporting_csv.php:1828
+msgid "SLA Day"
+msgstr ""
+
+#: ../../enterprise/include/functions_reporting_csv.php:1674
+#: ../../enterprise/include/functions_reporting_csv.php:1829
+msgid "SLA Fixed Day"
+msgstr ""
+
+#: ../../enterprise/include/functions_reporting_csv.php:1675
+#: ../../enterprise/include/functions_reporting_csv.php:1830
+msgid "Date From Day"
+msgstr ""
+
+#: ../../enterprise/include/functions_reporting_csv.php:1676
+#: ../../enterprise/include/functions_reporting_csv.php:1831
+msgid "Date To Day"
+msgstr ""
+
+#: ../../enterprise/include/functions_reporting_csv.php:1677
+#: ../../enterprise/include/functions_reporting_csv.php:1832
+msgid "Status Day"
+msgstr ""
+
+#: ../../enterprise/include/functions_reporting_csv.php:1738
+#: ../../enterprise/include/functions_reporting_csv.php:2046
+msgid "Month Number"
+msgstr ""
+
+#: ../../enterprise/include/functions_reporting_csv.php:1739
+#: ../../enterprise/include/functions_reporting_csv.php:2047
+msgid "Year"
+msgstr ""
+
+#: ../../enterprise/include/functions_reporting_csv.php:1789
+msgid "Time Total week"
+msgstr ""
+
+#: ../../enterprise/include/functions_reporting_csv.php:1790
+msgid "Time OK week"
+msgstr ""
+
+#: ../../enterprise/include/functions_reporting_csv.php:1791
+msgid "Time Error week"
+msgstr ""
+
+#: ../../enterprise/include/functions_reporting_csv.php:1792
+msgid "Time Unknown week"
+msgstr ""
+
+#: ../../enterprise/include/functions_reporting_csv.php:1793
+msgid "Time Downtime week"
+msgstr ""
+
+#: ../../enterprise/include/functions_reporting_csv.php:1794
+msgid "Time Not Init week"
+msgstr ""
+
+#: ../../enterprise/include/functions_reporting_csv.php:1795
+msgid "Checks Total week"
+msgstr ""
+
+#: ../../enterprise/include/functions_reporting_csv.php:1796
+msgid "Checks OK week"
+msgstr ""
+
+#: ../../enterprise/include/functions_reporting_csv.php:1797
+msgid "Checks Error week"
+msgstr ""
+
+#: ../../enterprise/include/functions_reporting_csv.php:1798
+msgid "Checks Unknown week"
+msgstr ""
+
+#: ../../enterprise/include/functions_reporting_csv.php:1799
+msgid "Status week"
+msgstr ""
+
+#: ../../enterprise/include/functions_reporting_csv.php:1815
+msgid "Day Week"
+msgstr ""
+
+#: ../../enterprise/include/functions_reporting_csv.php:1867
+msgid "S.L.A. Services"
+msgstr ""
+
+#: ../../enterprise/include/functions_reporting_csv.php:1885
+msgid "Lost sercice "
+msgstr ""
+
+#: ../../enterprise/include/functions_reporting_csv.php:1886
+msgid "Service "
+msgstr ""
+
+#: ../../enterprise/include/functions_reporting_csv.php:1887
+msgid "Limit "
+msgstr ""
+
+#: ../../enterprise/include/functions_reporting_csv.php:1888
+msgid "SLA Compilance "
+msgstr ""
+
+#: ../../enterprise/include/functions_reporting_csv.php:1889
+msgid "Unknown "
+msgstr ""
+
+#: ../../enterprise/include/functions_reporting_csv.php:1890
+msgid "Ok "
+msgstr ""
+
+#: ../../enterprise/include/functions_reporting_csv.php:1891
+msgid "Fail "
+msgstr ""
+
+#: ../../enterprise/include/functions_reporting_csv.php:1892
+msgid "Result "
+msgstr ""
+
+#: ../../enterprise/include/functions_reporting_csv.php:1917
+msgid "IPAM Networks"
+msgstr ""
+
+#: ../../enterprise/include/functions_reporting_csv.php:1977
+msgid "SLA max"
+msgstr ""
+
+#: ../../enterprise/include/functions_reporting_csv.php:1978
+msgid "SLA min"
+msgstr ""
+
+#: ../../enterprise/include/functions_reporting_csv.php:1979
+msgid "SLA limit"
+msgstr ""
+
+#: ../../enterprise/include/functions_reporting_csv.php:1982
+msgid "Time Error"
+msgstr ""
+
+#: ../../enterprise/include/functions_reporting_csv.php:1988
+msgid "Checks Error"
+msgstr ""
+
+#: ../../enterprise/include/functions_reporting_csv.php:1990
+#: ../../enterprise/include/functions_reporting.php:5066
+msgid "Checks Not Init"
+msgstr ""
+
+#: ../../enterprise/include/functions_reporting_csv.php:1992
+msgid "SLA Fixed"
+msgstr ""
+
+#: ../../enterprise/include/functions_reporting_csv.php:2097
+msgid "Time Total day"
+msgstr ""
+
+#: ../../enterprise/include/functions_reporting_csv.php:2098
+msgid "Time OK day"
+msgstr ""
+
+#: ../../enterprise/include/functions_reporting_csv.php:2099
+msgid "Time Error day"
+msgstr ""
+
+#: ../../enterprise/include/functions_reporting_csv.php:2100
+msgid "Time Unknown day"
+msgstr ""
+
+#: ../../enterprise/include/functions_reporting_csv.php:2101
+msgid "Time Downtime day"
+msgstr ""
+
+#: ../../enterprise/include/functions_reporting_csv.php:2102
+msgid "Time Not Init day"
+msgstr ""
+
+#: ../../enterprise/include/functions_reporting_csv.php:2103
+msgid "Checks Total day"
+msgstr ""
+
+#: ../../enterprise/include/functions_reporting_csv.php:2104
+msgid "Checks OK day"
+msgstr ""
+
+#: ../../enterprise/include/functions_reporting_csv.php:2105
+msgid "Checks Error day"
+msgstr ""
+
+#: ../../enterprise/include/functions_reporting_csv.php:2106
+msgid "Checks Unknown day"
+msgstr ""
+
+#: ../../enterprise/include/functions_reporting_csv.php:2107
+msgid "Status day"
+msgstr ""
+
+#: ../../enterprise/include/functions_reporting_csv.php:2123
+#: ../../enterprise/include/functions_events.php:230
+msgid "Hours"
+msgstr ""
+
+#: ../../enterprise/include/functions_reporting_csv.php:2124
+msgid "Time Total hours"
+msgstr ""
+
+#: ../../enterprise/include/functions_reporting_csv.php:2125
+msgid "Time OK hours"
+msgstr ""
+
+#: ../../enterprise/include/functions_reporting_csv.php:2126
+msgid "Time Error hours"
+msgstr ""
+
+#: ../../enterprise/include/functions_reporting_csv.php:2127
+msgid "Time Unknown hours"
+msgstr ""
+
+#: ../../enterprise/include/functions_reporting_csv.php:2128
+msgid "Time Not Init hours"
+msgstr ""
+
+#: ../../enterprise/include/functions_reporting_csv.php:2129
+msgid "Time Downtime hours"
+msgstr ""
+
+#: ../../enterprise/include/functions_reporting_csv.php:2130
+msgid "Time Out hours"
+msgstr ""
+
+#: ../../enterprise/include/functions_reporting_csv.php:2131
+msgid "Checks Total hours"
+msgstr ""
+
+#: ../../enterprise/include/functions_reporting_csv.php:2132
+msgid "Checks OK hours"
+msgstr ""
+
+#: ../../enterprise/include/functions_reporting_csv.php:2133
+msgid "Checks Error hours"
+msgstr ""
+
+#: ../../enterprise/include/functions_reporting_csv.php:2134
+msgid "Checks Unknown hours"
+msgstr ""
+
+#: ../../enterprise/include/functions_reporting_csv.php:2135
+msgid "Checks Not Init hours"
+msgstr ""
+
+#: ../../enterprise/include/functions_reporting_csv.php:2136
+msgid "SLA hours"
+msgstr ""
+
+#: ../../enterprise/include/functions_reporting_csv.php:2137
+msgid "SLA Fixed hours"
+msgstr ""
+
+#: ../../enterprise/include/functions_reporting_csv.php:2138
+msgid "Date From hours"
+msgstr ""
+
+#: ../../enterprise/include/functions_reporting_csv.php:2139
+msgid "Date To hours"
+msgstr ""
+
+#: ../../enterprise/include/functions_reporting_csv.php:2140
+msgid "Status hours"
+msgstr ""
+
+#: ../../enterprise/include/functions_reporting_csv.php:2267
+msgid "Simple Baseline Graph"
+msgstr ""
+
+#: ../../enterprise/include/functions_reporting_csv.php:2334
+#: ../../enterprise/meta/include/functions_wizard_meta.php:311
+msgid "Agent modules"
+msgstr ""
+
+#: ../../enterprise/include/functions_reporting_csv.php:2465
+msgid "Actions Triggered"
+msgstr ""
+
+#: ../../enterprise/include/functions_reporting_csv.php:2465
+msgid "Template Triggered"
+msgstr ""
+
+#: ../../enterprise/include/functions_reporting_csv.php:2502
+msgid "Event Report Log"
+msgstr ""
+
+#: ../../enterprise/include/functions_reporting_csv.php:2605
+msgid "Netflow data chart"
+msgstr ""
+
+#: ../../enterprise/include/functions_reporting_csv.php:2660
+msgid "Netflow summary"
+msgstr ""
+
+#: ../../enterprise/include/functions_reporting_csv.php:2680
+msgid "Avg. bits/sec"
+msgstr ""
+
+#: ../../enterprise/include/functions_reporting_csv.php:2680
+msgid "Avg. packets/sec"
+msgstr ""
+
+#: ../../enterprise/include/functions_reporting_csv.php:2680
+msgid "Avg. bytes/packet"
+msgstr ""
+
+#: ../../enterprise/include/functions_reporting_csv.php:2681
+msgid "Dst. IP"
+msgstr ""
+
+#: ../../enterprise/include/functions_reporting_csv.php:2707
+msgid "Agent/module status"
+msgstr ""
+
+#: ../../enterprise/include/functions_reporting_csv.php:2808
+msgid "Average Throughput (bits/sec)"
+msgstr ""
+
+#: ../../enterprise/include/ajax/log_viewer.ajax.php:65
+msgid "Capture regexp"
+msgstr ""
+
+#: ../../enterprise/include/ajax/log_viewer.ajax.php:75
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1249
+#: ../../enterprise/meta/event/custom_events.php:160
+msgid "Fields"
+msgstr ""
+
+#: ../../enterprise/include/ajax/log_viewer.ajax.php:175
+msgid "Empty ip or port"
+msgstr ""
+
+#: ../../enterprise/include/ajax/log_viewer.ajax.php:192
+msgid "Curl Error: "
+msgstr ""
+
+#: ../../enterprise/include/ajax/servers.ajax.php:99
+#: ../../enterprise/include/ajax/servers.ajax.php:157
+#: ../../enterprise/include/ajax/servers.ajax.php:283
+#: ../../enterprise/include/functions_ipam.php:1343
+#: ../../enterprise/godmode/servers/credential_boxes_satellite.php:248
+#: ../../enterprise/godmode/servers/manage_credential_boxes.php:57
+msgid "Subnet"
+msgstr ""
+
+#: ../../enterprise/include/ajax/servers.ajax.php:139
+#: ../../enterprise/godmode/servers/credential_boxes_satellite.php:293
+#: ../../enterprise/godmode/servers/list_satellite.php:69
+msgid "No Data"
+msgstr ""
+
+#: ../../enterprise/include/ajax/url_route_analyzer.ajax.php:33
+msgid "Global time: "
+msgstr ""
+
+#: ../../enterprise/include/ajax/ipam.ajax.php:249
+msgid "Current Networks"
+msgstr ""
+
+#: ../../enterprise/include/ajax/ipam.ajax.php:296
+msgid "Please, create networks to assign to "
+msgstr ""
+
+#: ../../enterprise/include/ajax/ipam.ajax.php:300
+msgid "No networks to assign to supernet"
+msgstr ""
+
+#: ../../enterprise/include/ajax/ipam.ajax.php:302
+msgid "Please, create networks to assign to"
+msgstr ""
+
+#: ../../enterprise/include/ajax/ipam.ajax.php:307
+msgid "Create and add networks in bulk"
+msgstr ""
+
+#: ../../enterprise/include/ajax/ipam.ajax.php:316
+msgid "Starting network"
+msgstr ""
+
+#: ../../enterprise/include/ajax/ipam.ajax.php:316
+msgid ""
+"The networks will be created/added starting from this address in the "
+"subnetting range given by the mask. Use CIDR format (e.g.: 192.168.72.0/22). "
+"If no value was provided, it uses the starting address of the supernet by "
+"default."
+msgstr ""
+
+#: ../../enterprise/include/ajax/ipam.ajax.php:320
+msgid "Max. number"
+msgstr ""
+
+#: ../../enterprise/include/ajax/ipam.ajax.php:320
+msgid ""
+"Maximum number of networks to be created/added from starting address of the "
+"range specified above"
+msgstr ""
+
+#: ../../enterprise/include/ajax/ipam.ajax.php:622
+msgid "Go to supernet edition"
+msgstr ""
+
+#: ../../enterprise/include/ajax/ipam.ajax.php:664
+msgid "Go to network edition"
+msgstr ""
+
+#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:94
+#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:253
+msgid "Group name"
+msgstr ""
+
+#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:118
+msgid "OS name"
+msgstr ""
+
+#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:128
+#: ../../enterprise/godmode/services/services.elements.php:220
+msgid "Custom field name"
+msgstr ""
+
+#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:130
+#: ../../enterprise/godmode/services/services.elements.php:232
+msgid "Custom field value"
+msgstr ""
+
+#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:136
+msgid "IP Network range"
+msgstr ""
+
+#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:141
+msgid "Script"
+msgstr ""
+
+#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:143
+msgid "Arguments"
+msgstr ""
+
+#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:149
+msgid "Unknown option"
+msgstr ""
+
+#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:188
+#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:877
+msgid "Update rule"
+msgstr ""
+
+#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:190
+#: ../../enterprise/meta/advanced/agents_setup.autoprovision_rules.php:201
+msgid "Create rule"
+msgstr ""
+
+#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:213
+#: ../../enterprise/godmode/modules/manage_inventory_modules.php:63
+#: ../../enterprise/godmode/agentes/agent_autoconfiguration.php:129
+#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:323
+#, php-format
+msgid ""
+"This console is not manager of this environment, please manage this feature "
+"from centralized manager console. Go to %s to manage it."
+msgstr ""
+
+#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:257
+msgid "IP range"
+msgstr ""
+
+#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:258
+msgid "Script output (> 0)"
+msgstr ""
+
+#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:272
+#: ../../enterprise/meta/include/functions_autoprovision.php:642
+#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:375
+#: ../../extensions/quick_shell.php:190
+msgid "Method"
+msgstr ""
+
+#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:394
+#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:634
+msgid "Op"
+msgstr ""
+
+#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:422
+#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:464
+msgid "Launch custom event"
+msgstr ""
+
+#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:423
+#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:465
+msgid "Launch alert action"
+msgstr ""
+
+#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:455
+#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:567
+#: ../../godmode/snmpconsole/snmp_alert.php:1023
+#: ../../godmode/snmpconsole/snmp_alert.php:1220
+msgid "Alert action"
+msgstr ""
+
+#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:475
+#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:587
+msgid "Script path"
+msgstr ""
+
+#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:479
+#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:591
+msgid "Script argument"
+msgstr ""
+
+#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:491
+#: ../../godmode/alerts/alert_list.list.php:688
+#: ../../godmode/alerts/alert_list.list.php:1169
+msgid "Update action"
+msgstr ""
+
+#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:508
+#: ../../enterprise/godmode/alerts/alert_inventory_list.php:344
+#: ../../enterprise/godmode/alerts/alert_inventory_list.php:350
+#: ../../enterprise/godmode/alerts/alert_inventory_list.php:444
+#: ../../enterprise/godmode/policies/policy_external_alerts.php:508
+#: ../../enterprise/godmode/policies/policy_alerts.php:754
+#: ../../godmode/snmpconsole/snmp_alert.php:1317
+#: ../../godmode/alerts/alert_list.list.php:899
+#: ../../godmode/alerts/alert_list.list.php:906
+#: ../../godmode/alerts/alert_list.list.php:1132
+msgid "Add action"
+msgstr ""
+
+#: ../../enterprise/include/ajax/top_n_widget.ajax.php:79
+msgid "avg"
+msgstr ""
+
+#: ../../enterprise/include/ajax/top_n_widget.ajax.php:80
+#: ../../godmode/reporting/reporting_builder.item_editor.php:4267
+msgid "max"
+msgstr ""
+
+#: ../../enterprise/include/ajax/top_n_widget.ajax.php:81
+#: ../../godmode/reporting/reporting_builder.item_editor.php:4268
+msgid "min"
+msgstr ""
+
+#: ../../enterprise/include/ajax/top_n_widget.ajax.php:82
+#: ../../godmode/reporting/reporting_builder.item_editor.php:4269
+msgid "sum"
+msgstr ""
+
+#: ../../enterprise/include/class/SAPView.class.php:146
+#: ../../enterprise/include/class/SAPView.class.php:190
+msgid "SAP View"
+msgstr ""
+
+#: ../../enterprise/include/class/SAPView.class.php:164
+msgid "SAP data not found."
+msgstr ""
+
+#: ../../enterprise/include/class/SAPView.class.php:258
+msgid "Refresh Every"
+msgstr ""
+
+#: ../../enterprise/include/class/SAPView.class.php:259
+#: ../../enterprise/include/class/SAPView.class.php:296
+#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:562
+#: ../../enterprise/include/class/Aws.cloud.php:1343
+#: ../../enterprise/include/class/Aws.S3.php:531
+#: ../../enterprise/include/class/MySQL.app.php:583
+#: ../../enterprise/include/class/Oracle.app.php:568
+#: ../../enterprise/include/class/DB2.app.php:561
+#: ../../enterprise/include/class/SAP.app.php:540
+#: ../../enterprise/include/class/VMware.app.php:693
+msgid "The minimum recomended interval is 5 minutes"
+msgstr ""
+
+#: ../../enterprise/include/class/SAPView.class.php:295
+msgid "Graph Interval"
+msgstr ""
+
+#: ../../enterprise/include/class/SAPView.class.php:626
+msgid ""
+"SAP view offers you to see the most important modules Discovery Server is "
+"usually configured to retry. You have not configured a Discovery SAP R3 task "
+"yet, please visit"
+msgstr ""
+
+#: ../../enterprise/include/class/SAPView.class.php:626
+#: ../../enterprise/extensions/vmware/vmware_view.php:1240
+#: ../../enterprise/extensions/vmware/vmware_view.php:1526
+msgid "this link"
+msgstr ""
+
+#: ../../enterprise/include/class/SAPView.class.php:626
+msgid "to start monitoring your SAP infrastructure."
+msgstr ""
+
+#: ../../enterprise/include/class/SAPView.class.php:633
+msgid "Discover SAP"
+msgstr ""
+
+#: ../../enterprise/include/class/CSVImportAgents.class.php:114
+#: ../../enterprise/godmode/menu.php:159
+#: ../../godmode/wizards/HostDevices.class.php:159
+msgid "Import CSV"
+msgstr ""
+
+#: ../../enterprise/include/class/CSVImportAgents.class.php:121
+msgid "The CSV file must have the fields in the following order:"
+msgstr ""
+
+#: ../../enterprise/include/class/CSVImportAgents.class.php:122
+msgid "Agent alias, IP address, OS id, Interval, Group id, Description"
+msgstr ""
+
+#: ../../enterprise/include/class/CSVImportAgents.class.php:177
+msgid "Alias as name"
+msgstr ""
+
+#: ../../enterprise/include/class/CSVImportAgents.class.php:242
+msgid "No data or wrong separator"
+msgstr ""
+
+#: ../../enterprise/include/class/CSVImportAgents.class.php:248
+#, php-format
+msgid "Agent %s duplicated."
+msgstr ""
+
+#: ../../enterprise/include/class/CSVImportAgents.class.php:255
+#, php-format
+msgid "Id group %s doesn't exist in %s"
+msgstr ""
+
+#: ../../enterprise/include/class/CSVImportAgents.class.php:263
+msgid "General failure."
+msgstr ""
+
+#: ../../enterprise/include/class/CSVImportAgents.class.php:284
+msgid "No input file detected"
+msgstr ""
+
+#: ../../enterprise/include/class/CSVImportAgents.class.php:373
+msgid "Agent processed successfully"
+msgstr ""
+
+#: ../../enterprise/include/class/CSVImportAgents.class.php:379
+msgid "Some errors while processing CSV."
+msgstr ""
+
+#: ../../enterprise/include/class/CSVImportAgents.class.php:382
+msgid "All agents processed correctly"
+msgstr ""
+
+#: ../../enterprise/include/class/CSVImportAgents.class.php:389
+#, php-format
+msgid "Line %s"
+msgstr ""
+
+#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:171
+msgid ""
+"This Microsoft SQL Server configuration has been already defined. Please "
+"edit it or create a new one."
+msgstr ""
+
+#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:213
+msgid "You must provide a valid Microsoft SQL Server server IP or FQDN."
+msgstr ""
+
+#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:277
+msgid "Failed to find discovery Microsoft SQL Server task."
+msgstr ""
+
+#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:388
+#: ../../enterprise/include/class/MySQL.app.php:403
+#: ../../enterprise/include/class/Oracle.app.php:393
+#: ../../enterprise/include/class/DB2.app.php:386
+#: ../../enterprise/include/class/SAP.app.php:336
+#: ../../enterprise/include/class/VMware.app.php:486
+msgid "Application"
+msgstr ""
+
+#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:406
+#: ../../enterprise/godmode/menu.php:173
+msgid "Microsoft SQL Server"
+msgstr ""
+
+#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:472
+#: ../../enterprise/include/class/Aws.cloud.php:1234
+#: ../../enterprise/include/class/Aws.S3.php:435
+#: ../../enterprise/include/class/MySQL.app.php:475
+#: ../../enterprise/include/class/Oracle.app.php:477
+#: ../../enterprise/include/class/DB2.app.php:470
+#: ../../enterprise/include/class/SAP.app.php:644
+#: ../../enterprise/include/class/VMware.app.php:763
+msgid "This group will be used also to classify discovered agents"
+msgstr ""
+
+#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:487
+msgid "Microsoft SQL Server targets"
+msgstr ""
+
+#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:488
+msgid ""
+"SERVER:PORT\\INSTANCE, comma separated or line by line, as many targets as "
+"you need."
+msgstr ""
+
+#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:488
+#: ../../enterprise/include/class/Oracle.app.php:494
+#: ../../enterprise/include/class/DB2.app.php:487
+msgid "Use # symbol to comment a line."
+msgstr ""
+
+#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:635
+#: ../../enterprise/include/class/MySQL.app.php:656
+#: ../../enterprise/include/class/Oracle.app.php:641
+#: ../../enterprise/include/class/DB2.app.php:634
+msgid "Target agent"
+msgstr ""
+
+#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:636
+#: ../../enterprise/include/class/Oracle.app.php:642
+#: ../../enterprise/include/class/DB2.app.php:635
+msgid ""
+"Defines a target agent where this task will store data detected, if you have "
+"defined multiple targets, define a comma separated list of names here or "
+"leave in blank to use target as name."
+msgstr ""
+
+#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:655
+#: ../../enterprise/include/class/MySQL.app.php:676
+#: ../../enterprise/include/class/Oracle.app.php:661
+#: ../../enterprise/include/class/DB2.app.php:654
+msgid "Custom module prefix"
+msgstr ""
+
+#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:656
+#: ../../enterprise/include/class/MySQL.app.php:677
+#: ../../enterprise/include/class/Oracle.app.php:662
+#: ../../enterprise/include/class/DB2.app.php:655
+msgid ""
+"Defines a custom prefix to be concatenated before module names generated by "
+"this task."
+msgstr ""
+
+#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:674
+#: ../../enterprise/include/class/MySQL.app.php:757
+#: ../../enterprise/include/class/Oracle.app.php:680
+msgid "Check engine uptime"
+msgstr ""
+
+#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:690
+#: ../../enterprise/include/class/MySQL.app.php:773
+#: ../../enterprise/include/class/Oracle.app.php:696
+msgid "Retrieve query statistics"
+msgstr ""
+
+#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:706
+#: ../../enterprise/include/class/MySQL.app.php:789
+#: ../../enterprise/include/class/Oracle.app.php:712
+msgid "Analyze connections"
+msgstr ""
+
+#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:722
+#: ../../enterprise/include/class/MySQL.app.php:837
+#: ../../enterprise/include/class/Oracle.app.php:776
+#: ../../enterprise/include/class/DB2.app.php:753
+msgid "Execute custom queries"
+msgstr ""
+
+#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:774
+#: ../../enterprise/include/class/MySQL.app.php:889
+#: ../../enterprise/include/class/Oracle.app.php:930
+#: ../../enterprise/include/class/DB2.app.php:821
+msgid "Custom queries"
+msgstr ""
+
+#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:775
+#: ../../enterprise/include/class/MySQL.app.php:890
+#: ../../enterprise/include/class/Oracle.app.php:931
+#: ../../enterprise/include/class/DB2.app.php:822
+msgid "Define here your custom queries."
+msgstr ""
+
+#: ../../enterprise/include/class/Aws.cloud.php:113
+#: ../../enterprise/include/class/Azure.cloud.php:148
+#: ../../enterprise/include/class/Google.cloud.php:142
+msgid "Cloud message"
+msgstr ""
+
+#: ../../enterprise/include/class/Aws.cloud.php:115
+#: ../../enterprise/include/class/Aws.cloud.php:162
+#: ../../enterprise/include/class/Azure.cloud.php:150
+#: ../../enterprise/include/class/Azure.cloud.php:194
+#: ../../enterprise/include/class/Google.cloud.php:144
+#: ../../enterprise/include/class/Google.cloud.php:188
+#: ../../enterprise/godmode/menu.php:193
+#: ../../enterprise/godmode/wizards/Cloud.class.php:186
+#: ../../enterprise/godmode/wizards/Cloud.class.php:195
+msgid "Cloud"
+msgstr ""
+
+#: ../../enterprise/include/class/Aws.cloud.php:158
+#: ../../enterprise/include/class/Azure.cloud.php:190
+#: ../../enterprise/include/class/DeploymentCenter.class.php:590
+#: ../../enterprise/include/class/Google.cloud.php:184
+#: ../../enterprise/godmode/wizards/Applications.class.php:157
+#: ../../enterprise/godmode/wizards/Cloud.class.php:182
+#: ../../godmode/servers/discovery.php:59 ../../godmode/menu.php:62
+#: ../../godmode/wizards/HostDevices.class.php:190
+msgid "Discovery"
+msgstr ""
+
+#: ../../enterprise/include/class/Aws.cloud.php:343
+msgid "Recon"
+msgstr ""
+
+#: ../../enterprise/include/class/Aws.cloud.php:344
+msgid "Costs"
+msgstr ""
+
+#: ../../enterprise/include/class/Aws.cloud.php:346
+msgid "Instances"
+msgstr ""
+
+#: ../../enterprise/include/class/Aws.cloud.php:441
+msgid "Amazon EC2"
+msgstr ""
+
+#: ../../enterprise/include/class/Aws.cloud.php:446
+msgid "Amazon RDS"
+msgstr ""
+
+#: ../../enterprise/include/class/Aws.cloud.php:451
+msgid "S3 Buckets"
+msgstr ""
+
+#: ../../enterprise/include/class/Aws.cloud.php:471
+#: ../../godmode/wizards/HostDevices.class.php:696
+msgid "NetScan"
+msgstr ""
+
+#: ../../enterprise/include/class/Aws.cloud.php:500
+#: ../../enterprise/include/class/Aws.S3.php:554
+#: ../../enterprise/include/class/VMware.app.php:547
+msgid ""
+"This kind of task uses multipurpose plugins in order to generate monitoring "
+"data, configure your desired tentacle target."
+msgstr ""
+
+#: ../../enterprise/include/class/Aws.cloud.php:510
+msgid "Discovery task name"
+msgstr ""
+
+#: ../../enterprise/include/class/Aws.cloud.php:540
+#: ../../enterprise/include/class/Aws.S3.php:559
+#: ../../enterprise/include/class/VMware.app.php:614
+#: ../../enterprise/include/class/Azure.cloud.php:797
+msgid "Tentacle options"
+msgstr ""
+
+#: ../../enterprise/include/class/Aws.cloud.php:566
+#: ../../enterprise/include/class/Aws.S3.php:584
+#: ../../enterprise/include/class/VMware.app.php:643
+#: ../../enterprise/include/class/Azure.cloud.php:823
+#: ../../enterprise/godmode/servers/manage_export_form.php:129
+msgid "Extra options"
+msgstr ""
+
+#: ../../enterprise/include/class/Aws.cloud.php:614
+msgid "Total cost"
+msgstr ""
+
+#: ../../enterprise/include/class/Aws.cloud.php:631
+msgid "Cost by region"
+msgstr ""
+
+#: ../../enterprise/include/class/Aws.cloud.php:645
+msgid "Cost interval"
+msgstr ""
+
+#: ../../enterprise/include/class/Aws.cloud.php:671
+#: ../../enterprise/include/class/Azure.cloud.php:928
+msgid "Scan and general monitoring."
+msgstr ""
+
+#: ../../enterprise/include/class/Aws.cloud.php:688
+#: ../../enterprise/include/class/Azure.cloud.php:941
+msgid "Cpu performance summary"
+msgstr ""
+
+#: ../../enterprise/include/class/Aws.cloud.php:698
+#: ../../enterprise/include/class/Azure.cloud.php:949
+#: ../../enterprise/include/class/Google.cloud.php:911
+msgid "IOPS performance summary"
+msgstr ""
+
+#: ../../enterprise/include/class/Aws.cloud.php:708
+#: ../../enterprise/include/class/Azure.cloud.php:957
+#: ../../enterprise/include/class/Google.cloud.php:919
+msgid "Disk performance summary"
+msgstr ""
+
+#: ../../enterprise/include/class/Aws.cloud.php:718
+#: ../../enterprise/include/class/Azure.cloud.php:965
+#: ../../enterprise/include/class/Google.cloud.php:927
+msgid "Network performance summary"
+msgstr ""
+
+#: ../../enterprise/include/class/Aws.cloud.php:742
+#: ../../enterprise/include/class/Aws.cloud.php:1274
+#: ../../enterprise/include/class/Azure.cloud.php:872
+#: ../../enterprise/include/class/Google.cloud.php:822
+msgid "No instances found."
+msgstr ""
+
+#: ../../enterprise/include/class/Aws.cloud.php:773
+msgid "Select EC2 instances"
+msgstr ""
+
+#: ../../enterprise/include/class/Aws.cloud.php:789
+msgid "Storage"
+msgstr ""
+
+#: ../../enterprise/include/class/Aws.cloud.php:799
+msgid "Elastic IP Adresses"
+msgstr ""
+
+#: ../../enterprise/include/class/Aws.cloud.php:982
+msgid "You must select at least one RDS instance."
+msgstr ""
+
+#: ../../enterprise/include/class/Aws.cloud.php:987
+msgid ""
+"You cannot monitor RDS instances from different types. Please define several "
+"tasks for several types."
+msgstr ""
+
+#: ../../enterprise/include/class/Aws.cloud.php:994
+msgid "Discovery.Cloud.AWS.RDS"
+msgstr ""
+
+#: ../../enterprise/include/class/Aws.cloud.php:1160
+msgid "RDS"
+msgstr ""
+
+#: ../../enterprise/include/class/Aws.cloud.php:1165
+msgid "DB monitoring"
+msgstr ""
+
+#: ../../enterprise/include/class/Aws.cloud.php:1175
+msgid "AWS RDS"
+msgstr ""
+
+#: ../../enterprise/include/class/Aws.cloud.php:1249
+msgid "Global DB User"
+msgstr ""
+
+#: ../../enterprise/include/class/Aws.cloud.php:1259
+msgid "Global DB password"
+msgstr ""
+
+#: ../../enterprise/include/class/Aws.cloud.php:1349
+msgid "Select RDS instances"
+msgstr ""
+
+#: ../../enterprise/include/class/Aws.cloud.php:1492
+#: ../../enterprise/include/class/Azure.cloud.php:355
+#: ../../enterprise/include/class/Google.cloud.php:349
+#, php-format
+msgid "%s not found or not executable"
+msgstr ""
+
+#: ../../enterprise/include/class/Aws.cloud.php:1652
+msgid "Invalid group"
+msgstr ""
+
+#: ../../enterprise/include/class/Aws.cloud.php:1710
+msgid "Cannot update the recon database"
+msgstr ""
+
+#: ../../enterprise/include/class/Aws.cloud.php:1732
+msgid "Engine not supported"
+msgstr ""
+
+#: ../../enterprise/include/class/AgentRepository.class.php:262
+#: ../../enterprise/include/class/DeploymentCenter.class.php:956
+msgid "Deploying"
+msgstr ""
+
+#: ../../enterprise/include/class/AgentRepository.class.php:336
+msgid "Time in seconds before deployment is cancelled."
+msgstr ""
+
+#: ../../enterprise/include/class/AgentRepository.class.php:354
+#: ../../enterprise/include/class/AgentRepository.class.php:631
+#: ../../enterprise/include/class/AgentRepository.class.php:681
+#: ../../enterprise/include/class/DeploymentCenter.class.php:757
+#: ../../enterprise/include/class/DeploymentCenter.class.php:825
+#: ../../enterprise/include/class/DeploymentCenter.class.php:1301
+#: ../../enterprise/include/class/DeploymentCenter.class.php:1397
+msgid "Architecture"
+msgstr ""
+
+#: ../../enterprise/include/class/AgentRepository.class.php:375
+msgid "Transfer timeout"
+msgstr ""
+
+#: ../../enterprise/include/class/AgentRepository.class.php:383
+msgid "Installation file"
+msgstr ""
+
+#: ../../enterprise/include/class/AgentRepository.class.php:423
+msgid "Agent version is required"
+msgstr ""
+
+#: ../../enterprise/include/class/AgentRepository.class.php:429
+#: ../../enterprise/include/class/DeploymentCenter.class.php:245
+msgid "Target OS is required"
+msgstr ""
+
+#: ../../enterprise/include/class/AgentRepository.class.php:431
+#: ../../enterprise/include/class/DeploymentCenter.class.php:247
+msgid "Target architecture is required"
+msgstr ""
+
+#: ../../enterprise/include/class/AgentRepository.class.php:440
+#: ../../enterprise/include/class/NetworkConfigManager.class.php:2089
+msgid "Cannot create target dir ["
+msgstr ""
+
+#: ../../enterprise/include/class/AgentRepository.class.php:461
+#, php-format
+msgid "Invalid installation file for %s"
+msgstr ""
+
+#: ../../enterprise/include/class/AgentRepository.class.php:490
+msgid "Installation files not modified"
+msgstr ""
+
+#: ../../enterprise/include/class/AgentRepository.class.php:509
+msgid "Installation files updated"
+msgstr ""
+
+#: ../../enterprise/include/class/AgentRepository.class.php:512
+#: ../../enterprise/meta/include/functions_wizard_meta.php:2341
+msgid "Agent successfully updated"
+msgstr ""
+
+#: ../../enterprise/include/class/AgentRepository.class.php:516
+msgid "You must provide installation files to create a new entry."
+msgstr ""
+
+#: ../../enterprise/include/class/AgentRepository.class.php:537
+msgid "This agent has been already defined."
+msgstr ""
+
+#: ../../enterprise/include/class/AgentRepository.class.php:553
+msgid "Agent successfully registered and uploaded"
+msgstr ""
+
+#: ../../enterprise/include/class/AgentRepository.class.php:591
+#: ../../enterprise/include/class/DeploymentCenter.class.php:335
+msgid "Target successfully deleted"
+msgstr ""
+
+#: ../../enterprise/include/class/AgentRepository.class.php:613
+#: ../../enterprise/godmode/menu.php:126
+msgid "Software agents repository"
+msgstr ""
+
+#: ../../enterprise/include/class/AgentRepository.class.php:633
+msgid "Uploaded by"
+msgstr ""
+
+#: ../../enterprise/include/class/AgentRepository.class.php:634
+msgid "Upload date"
+msgstr ""
+
+#: ../../enterprise/include/class/AgentRepository.class.php:713
+msgid "Add new software"
+msgstr ""
+
+#: ../../enterprise/include/class/AgentRepository.class.php:900
+msgid "Add new Software agent"
+msgstr ""
+
+#: ../../enterprise/include/class/AgentRepository.class.php:903
+msgid "Update Software agent"
+msgstr ""
+
+#: ../../enterprise/include/class/LogSource.class.php:455
+msgid "Source is required"
+msgstr ""
+
+#: ../../enterprise/include/class/LogSource.class.php:562
+msgid "id cannot be empty"
+msgstr ""
+
+#: ../../enterprise/include/class/LogSource.class.php:610
+#, php-format
+msgid "Log monitoring is disabled. %s"
+msgstr ""
+
+#: ../../enterprise/include/class/LogSource.class.php:680
+#: ../../enterprise/include/class/LogSource.class.php:846
+msgid "Add log source"
+msgstr ""
+
+#: ../../enterprise/include/class/LogSource.class.php:715
+msgid "Source name"
+msgstr ""
+
+#: ../../enterprise/include/class/LogSource.class.php:850
+msgid "Update log source"
+msgstr ""
+
+#: ../../enterprise/include/class/Aws.S3.php:60
+msgid "Aws S3"
+msgstr ""
+
+#: ../../enterprise/include/class/Aws.S3.php:214
+msgid "You must select something."
+msgstr ""
+
+#: ../../enterprise/include/class/Aws.S3.php:236
+msgid "Discovery.Cloud.AWS.S3"
+msgstr ""
+
+#: ../../enterprise/include/class/Aws.S3.php:294
+msgid "Unknown task"
+msgstr ""
+
+#: ../../enterprise/include/class/Aws.S3.php:313
+msgid "Unknown section."
+msgstr ""
+
+#: ../../enterprise/include/class/Aws.S3.php:339
+msgid "S3"
+msgstr ""
+
+#: ../../enterprise/include/class/Aws.S3.php:344
+msgid "Bucket monitoring"
+msgstr ""
+
+#: ../../enterprise/include/class/Aws.S3.php:454
+msgid "No buckets found."
+msgstr ""
+
+#: ../../enterprise/include/class/Aws.S3.php:598
+msgid "Select Buckets to be monitored"
+msgstr ""
+
+#: ../../enterprise/include/class/Aws.S3.php:633
+msgid "Monitor bucket size"
+msgstr ""
+
+#: ../../enterprise/include/class/Aws.S3.php:643
+msgid "Monitor bucket total items"
+msgstr ""
+
+#: ../../enterprise/include/class/MySQL.app.php:173
+msgid ""
+"This MySQL configuration has been already defined. Please edit it or create "
+"a new one."
+msgstr ""
+
+#: ../../enterprise/include/class/MySQL.app.php:216
+msgid "You must provide a valid MySQL server IP or FQDN."
+msgstr ""
+
+#: ../../enterprise/include/class/MySQL.app.php:221
+msgid "You must provide a valid port number."
+msgstr ""
+
+#: ../../enterprise/include/class/MySQL.app.php:233
+msgid "Discovery.Application.MySQL"
+msgstr ""
+
+#: ../../enterprise/include/class/MySQL.app.php:285
+msgid "Failed to find discovery MySQL task."
+msgstr ""
+
+#: ../../enterprise/include/class/MySQL.app.php:420
+#: ../../enterprise/godmode/setup/setup.php:178
+msgid "MySQL"
+msgstr ""
+
+#: ../../enterprise/include/class/MySQL.app.php:491
+msgid "MySQL server IP"
+msgstr ""
+
+#: ../../enterprise/include/class/MySQL.app.php:492
+msgid "Comma separated, as many targets as you need."
+msgstr ""
+
+#: ../../enterprise/include/class/MySQL.app.php:511
+msgid "MySQL server Port"
+msgstr ""
+
+#: ../../enterprise/include/class/MySQL.app.php:657
+msgid ""
+"Defines a target agent where this task will store data detected, if you have "
+"defined multiple targets, define a comma separated list of names here or "
+"leave in blank to use server IP address/ FQDN."
+msgstr ""
+
+#: ../../enterprise/include/class/MySQL.app.php:698
+msgid "Scan databases"
+msgstr ""
+
+#: ../../enterprise/include/class/MySQL.app.php:714
+msgid "Create agent per database"
+msgstr ""
+
+#: ../../enterprise/include/class/MySQL.app.php:735
+msgid "Custom database agent prefix"
+msgstr ""
+
+#: ../../enterprise/include/class/MySQL.app.php:736
+msgid ""
+"Defines a custom prefix to be concatenated before database agent names "
+"generated by this task."
+msgstr ""
+
+#: ../../enterprise/include/class/MySQL.app.php:805
+msgid "Retrieve InnoDB statistics"
+msgstr ""
+
+#: ../../enterprise/include/class/MySQL.app.php:821
+#: ../../enterprise/include/class/Oracle.app.php:760
+#: ../../enterprise/include/class/DB2.app.php:737
+msgid "Retrieve cache statistics"
+msgstr ""
+
+#: ../../enterprise/include/class/Oracle.app.php:172
+msgid ""
+"This Oracle configuration has been already defined. Please edit it or create "
+"a new one."
+msgstr ""
+
+#: ../../enterprise/include/class/Oracle.app.php:214
+msgid "You must provide a valid Oracle server IP or FQDN."
+msgstr ""
+
+#: ../../enterprise/include/class/Oracle.app.php:226
+msgid "Discovery.Application.Oracle"
+msgstr ""
+
+#: ../../enterprise/include/class/Oracle.app.php:277
+msgid "Failed to find discovery Oracle task."
+msgstr ""
+
+#: ../../enterprise/include/class/Oracle.app.php:411
+#: ../../enterprise/godmode/setup/setup.php:179
+#: ../../enterprise/godmode/menu.php:175
+msgid "Oracle"
+msgstr ""
+
+#: ../../enterprise/include/class/Oracle.app.php:493
+msgid "Oracle target strings"
+msgstr ""
+
+#: ../../enterprise/include/class/Oracle.app.php:494
+msgid ""
+"SERVER:PORT/SID, comma separated or line by line, as many targets as you "
+"need."
+msgstr ""
+
+#: ../../enterprise/include/class/Oracle.app.php:728
+msgid "Calculate fragmentation ratio"
+msgstr ""
+
+#: ../../enterprise/include/class/Oracle.app.php:744
+msgid "Monitor tablespaces"
+msgstr ""
+
+#: ../../enterprise/include/class/DB2.app.php:165
+msgid ""
+"This DB2 configuration has been already defined. Please edit it or create a "
+"new one."
+msgstr ""
+
+#: ../../enterprise/include/class/DB2.app.php:207
+msgid "You must provide a valid DB2 server IP or FQDN."
+msgstr ""
+
+#: ../../enterprise/include/class/DB2.app.php:219
+msgid "Discovery.Application.DB2"
+msgstr ""
+
+#: ../../enterprise/include/class/DB2.app.php:270
+msgid "Failed to find discovery DB2 task."
+msgstr ""
+
+#: ../../enterprise/include/class/DB2.app.php:404
+#: ../../enterprise/godmode/menu.php:178
+msgid "DB2"
+msgstr ""
+
+#: ../../enterprise/include/class/DB2.app.php:486
+msgid "DB2 target strings"
+msgstr ""
+
+#: ../../enterprise/include/class/DB2.app.php:487
+msgid ""
+"SERVER:PORT/DATABASE, comma separated or line by line, as many targets as "
+"you need."
+msgstr ""
+
+#: ../../enterprise/include/class/DB2.app.php:673
+msgid "Get database summary"
+msgstr ""
+
+#: ../../enterprise/include/class/DB2.app.php:689
+msgid "Check transactional log utilization"
+msgstr ""
+
+#: ../../enterprise/include/class/DB2.app.php:705
+msgid "Get number of connections"
+msgstr ""
+
+#: ../../enterprise/include/class/DB2.app.php:721
+msgid "Check DB size"
+msgstr ""
+
+#: ../../enterprise/include/class/SAP.app.php:154
+msgid ""
+"This SAP configuration has been already defined. Please edit it or create a "
+"new one."
+msgstr ""
+
+#: ../../enterprise/include/class/SAP.app.php:195
+msgid "You must specify at last one SAP hostname."
+msgstr ""
+
+#: ../../enterprise/include/class/SAP.app.php:206
+msgid "Discovery.Application.SAP"
+msgstr ""
+
+#: ../../enterprise/include/class/SAP.app.php:262
+msgid "Failed to find discovery SAP task."
+msgstr ""
+
+#: ../../enterprise/include/class/SAP.app.php:286
+msgid "Select at least a module."
+msgstr ""
+
+#: ../../enterprise/include/class/SAP.app.php:354
+msgid "SAP R3"
+msgstr ""
+
+#: ../../enterprise/include/class/SAP.app.php:371
+#: ../../enterprise/include/class/DeploymentCenter.class.php:482
+#: ../../enterprise/include/class/DeploymentCenter.class.php:490
+#: ../../enterprise/include/class/DeploymentCenter.class.php:498
+#: ../../enterprise/include/class/DeploymentCenter.class.php:657
+#: ../../enterprise/extensions/vmware/vmware_view.php:1737
+msgid "here"
+msgstr ""
+
+#: ../../enterprise/include/class/SAP.app.php:547
+msgid "SAP Hostname"
+msgstr ""
+
+#: ../../enterprise/include/class/SAP.app.php:571
+msgid "SAP Client"
+msgstr ""
+
+#: ../../enterprise/include/class/SAP.app.php:585
+msgid "SAP System Number"
+msgstr ""
+
+#: ../../enterprise/include/class/SAP.app.php:604
+#: ../../enterprise/include/class/SAP.app.php:607
+#: ../../enterprise/include/class/DeploymentCenter.class.php:1135
+#: ../../enterprise/include/class/DeploymentCenter.class.php:1138
+#: ../../enterprise/include/class/DeploymentCenter.class.php:1265
+#: ../../enterprise/include/class/DeploymentCenter.class.php:1268
+#: ../../godmode/wizards/HostDevices.class.php:1434
+#: ../../godmode/wizards/HostDevices.class.php:1437
+msgid "No credentials available"
+msgstr ""
+
+#: ../../enterprise/include/class/SAP.app.php:605
+#: ../../enterprise/include/class/DeploymentCenter.class.php:1136
+#: ../../enterprise/include/class/DeploymentCenter.class.php:1266
+#: ../../godmode/wizards/HostDevices.class.php:1435
+#: ../../godmode/agentes/module_manager_editor_network.php:474
+msgid "Manage credentials"
+msgstr ""
+
+#: ../../enterprise/include/class/SAP.app.php:617
+#: ../../enterprise/include/class/SAP.app.php:631
+msgid "SAP Credentials"
+msgstr ""
+
+#: ../../enterprise/include/class/SAP.app.php:617
+#: ../../enterprise/include/class/SAP.app.php:631
+msgid "Optional"
+msgstr ""
+
+#: ../../enterprise/include/class/SAP.app.php:764
+#, php-format
+msgid ""
+"Module 180 must be customized before being used, please use advanced options "
+"to define the module following the documentation:<br> %s"
+msgstr ""
+
+#: ../../enterprise/include/class/SAP.app.php:785
+msgid "Available modules"
+msgstr ""
+
+#: ../../enterprise/include/class/SAP.app.php:821
+msgid "Add monitors"
+msgstr ""
+
+#: ../../enterprise/include/class/SAP.app.php:834
+msgid "Remove monitors"
+msgstr ""
+
+#: ../../enterprise/include/class/SAP.app.php:845
+#: ../../enterprise/godmode/massive/massive_edit_service_elements.php:350
+#: ../../enterprise/godmode/massive/massive_delete_service_elements.php:241
+#: ../../enterprise/godmode/massive/massive_add_service_elements.php:594
+#: ../../enterprise/godmode/massive/massive_create_services.php:1235
+msgid "Selected modules"
+msgstr ""
+
+#: ../../enterprise/include/class/SAP.app.php:885
+msgid "Define your custom SAP modules."
+msgstr ""
+
+#: ../../enterprise/include/class/SAP.app.php:884
+msgid "Advanced module configuration"
+msgstr ""
+
+#: ../../enterprise/include/class/SAP.app.php:894
+msgid "Custom module definitions"
+msgstr ""
+
+#: ../../enterprise/include/class/SAP.app.php:895
+msgid ""
+"Each line is a module definition using following format: module name ; "
+"module_type ; SAP check definition."
+msgstr ""
+
+#: ../../enterprise/include/class/ManageBackups.class.php:106
+#, php-format
+msgid "%s database backup manager"
+msgstr ""
+
+#: ../../enterprise/include/class/ManageBackups.class.php:129
+#, php-format
+msgid ""
+"To schedule a periodic (or one-time) backup task you can do it through %s."
+msgstr ""
+
+#: ../../enterprise/include/class/ManageBackups.class.php:189
+msgid "Path backups"
+msgstr ""
+
+#: ../../enterprise/include/class/ManageBackups.class.php:314
+msgid "Rollback to this backup"
+msgstr ""
+
+#: ../../enterprise/include/class/ManageBackups.class.php:323
+msgid "Lost"
+msgstr ""
+
+#: ../../enterprise/include/class/ManageBackups.class.php:330
+msgid "In Progress"
+msgstr ""
+
+#: ../../enterprise/include/class/ManageBackups.class.php:361
+msgid "The backup was successfully deleted"
+msgstr ""
+
+#: ../../enterprise/include/class/ManageBackups.class.php:367
+msgid "Missed id parameter"
+msgstr ""
+
+#: ../../enterprise/include/class/ManageBackups.class.php:386
+msgid "Something was wrong with the rollback action."
+msgstr ""
+
+#: ../../enterprise/include/class/ManageBackups.class.php:389
+msgid "Missed id parameter."
+msgstr ""
+
+#: ../../enterprise/include/class/ManageBackups.class.php:437
+msgid ""
+"Are you sure you want to delete this database backup file? Once deleted you "
+"will not be able to recover it."
+msgstr ""
+
+#: ../../enterprise/include/class/ManageBackups.class.php:439
+msgid "Do you like perform a database restoration?"
+msgstr ""
+
+#: ../../enterprise/include/class/Omnishell.class.php:214
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:414
+msgid "Please follow the wizard."
+msgstr ""
+
+#: ../../enterprise/include/class/Omnishell.class.php:226
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:427
+msgid "You have no acess to edit this command."
+msgstr ""
+
+#: ../../enterprise/include/class/Omnishell.class.php:261
+msgid "Failed to save command."
+msgstr ""
+
+#: ../../enterprise/include/class/Omnishell.class.php:272
+msgid "Command not found."
+msgstr ""
+
+#: ../../enterprise/include/class/Omnishell.class.php:349
+#: ../../enterprise/include/class/Omnishell.class.php:610
+msgid "You must install php-yaml in order to use this feature."
+msgstr ""
+
+#: ../../enterprise/include/class/Omnishell.class.php:362
+#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:4081
+#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:4202
+#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:4362
+#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:543
+#: ../../enterprise/meta/advanced/policymanager.queue.php:261
+#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:443
+#: ../../enterprise/godmode/policies/policy_queue.php:671
+#: ../../enterprise/godmode/policies/policy_queue.php:674
+msgid "Finished"
+msgstr ""
+
+#: ../../enterprise/include/class/Omnishell.class.php:363
+#: ../../enterprise/include/class/Omnishell.class.php:1087
+#: ../../enterprise/include/class/DatabaseHA.class.php:214
+#: ../../godmode/wizards/DiscoveryTaskList.class.php:1845
+msgid "Pending"
+msgstr ""
+
+#: ../../enterprise/include/class/Omnishell.class.php:364
+msgid "Not Started"
+msgstr ""
+
+#: ../../enterprise/include/class/Omnishell.class.php:401
+#: ../../enterprise/include/functions_ipam.php:1411
+#: ../../enterprise/include/functions_ipam.php:1418
+#: ../../enterprise/include/functions_ipam.php:1423
+#: ../../enterprise/meta/advanced/policymanager.queue.php:260
+#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:702
+#: ../../enterprise/godmode/policies/policy_queue.php:650
+#: ../../godmode/wizards/DiscoveryTaskList.class.php:606
+msgid "Progress"
+msgstr ""
+
+#: ../../enterprise/include/class/Omnishell.class.php:442
+msgid "Commands status"
+msgstr ""
+
+#: ../../enterprise/include/class/Omnishell.class.php:487
+msgid "Create command"
+msgstr ""
+
+#: ../../enterprise/include/class/Omnishell.class.php:506
+msgid "Selected command definitions will be erased"
+msgstr ""
+
+#: ../../enterprise/include/class/Omnishell.class.php:688
+msgid "Time out"
+msgstr ""
+
+#: ../../enterprise/include/class/Omnishell.class.php:697
+msgid "Retries "
+msgstr ""
+
+#: ../../enterprise/include/class/Omnishell.class.php:708
+msgid "Preconditions "
+msgstr ""
+
+#: ../../enterprise/include/class/Omnishell.class.php:709
+msgid ""
+"All commands defined line per line must success to execute main commands"
+msgstr ""
+
+#: ../../enterprise/include/class/Omnishell.class.php:721
+msgid "Execute commands "
+msgstr ""
+
+#: ../../enterprise/include/class/Omnishell.class.php:722
+msgid "Define as many lines as commands you want to execute"
+msgstr ""
+
+#: ../../enterprise/include/class/Omnishell.class.php:734
+msgid "Postconditions "
+msgstr ""
+
+#: ../../enterprise/include/class/Omnishell.class.php:735
+msgid ""
+"All commands defined line per line must success to consider command success"
+msgstr ""
+
+#: ../../enterprise/include/class/Omnishell.class.php:825
+#: ../../enterprise/include/class/Omnishell.class.php:904
+#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:264
+#: ../../enterprise/godmode/reporting/graph_template_wizard.php:217
+#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:391
+#: ../../enterprise/godmode/reporting/reporting_builder.template.php:749
+#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:239
+#: ../../enterprise/godmode/policies/policy_agents.php:499
+#: ../../enterprise/godmode/policies/policy_agents.php:513
+msgid "Filter agent"
+msgstr ""
+
+#: ../../enterprise/include/class/Omnishell.class.php:835
+#: ../../godmode/agentes/planned_downtime.editor.php:799
+msgid "Available agents"
+msgstr ""
+
+#: ../../enterprise/include/class/Omnishell.class.php:867
+#: ../../enterprise/godmode/reporting/reporting_builder.template.php:857
+msgid "Add agents"
+msgstr ""
+
+#: ../../enterprise/include/class/Omnishell.class.php:880
+msgid "Remove agents"
+msgstr ""
+
+#: ../../enterprise/include/class/Omnishell.class.php:915
+#: ../../enterprise/godmode/massive/massive_edit_service_elements.php:335
+#: ../../enterprise/godmode/massive/massive_delete_service_elements.php:226
+#: ../../enterprise/godmode/massive/massive_add_service_elements.php:579
+#: ../../enterprise/godmode/massive/massive_create_services.php:1220
+msgid "Selected agents"
+msgstr ""
+
+#: ../../enterprise/include/class/Omnishell.class.php:1157
+msgid "Selected command definition will be erased"
+msgstr ""
+
+#: ../../enterprise/include/class/Omnishell.class.php:1243
+msgid "Command viewer"
+msgstr ""
+
+#: ../../enterprise/include/class/Omnishell.class.php:1251
+msgid "Detailed view"
+msgstr ""
+
+#: ../../enterprise/include/class/Omnishell.class.php:1392
+msgid "Not an array of ids"
+msgstr ""
+
+#: ../../enterprise/include/class/Omnishell.class.php:1450
+msgid "There are no targets for this remote command"
+msgstr ""
+
+#: ../../enterprise/include/class/Omnishell.class.php:1457
+msgid "Command does not exist"
+msgstr ""
+
+#: ../../enterprise/include/class/Omnishell.class.php:1553
+#: ../../enterprise/include/lib/Metaconsole/Node.php:141
+#: ../../enterprise/include/lib/Metaconsole/Node.php:190
+#: ../../enterprise/include/lib/Metaconsole/Node.php:241
+#: ../../enterprise/include/lib/Metaconsole/Node.php:336
+#: ../../enterprise/include/lib/Metaconsole/Node.php:389
+#: ../../enterprise/meta/advanced/metasetup.consoles.php:99
+msgid "success"
+msgstr ""
+
+#: ../../enterprise/include/class/Omnishell.class.php:1556
+msgid "timed out"
+msgstr ""
+
+#: ../../enterprise/include/class/Omnishell.class.php:1559
+msgid "failed"
+msgstr ""
+
+#: ../../enterprise/include/class/Omnishell.class.php:1575
+msgid "Waiting results..."
+msgstr ""
+
+#: ../../enterprise/include/class/Omnishell.class.php:1594
+msgid "RCMD does not exist"
+msgstr ""
+
+#: ../../enterprise/include/class/VMware.app.php:230
+msgid ""
+"This VMware configuration has been already defined. Please edit it or create "
+"a new one."
+msgstr ""
+
+#: ../../enterprise/include/class/VMware.app.php:274
+msgid "You must provide a valid V-Center IP or FQDN."
+msgstr ""
+
+#: ../../enterprise/include/class/VMware.app.php:291
+msgid "Discovery.Application.VMware"
+msgstr ""
+
+#: ../../enterprise/include/class/VMware.app.php:310
+msgid "Please select a valid group"
+msgstr ""
+
+#: ../../enterprise/include/class/VMware.app.php:369
+msgid "Failed to find discovery VMware task."
+msgstr ""
+
+#: ../../enterprise/include/class/VMware.app.php:384
+msgid "Threads must be equal or greater than 1."
+msgstr ""
+
+#: ../../enterprise/include/class/VMware.app.php:503
+#: ../../enterprise/godmode/menu.php:176
+msgid "VMware"
+msgstr ""
+
+#: ../../enterprise/include/class/VMware.app.php:656
+msgid "Datacenter user"
+msgstr ""
+
+#: ../../enterprise/include/class/VMware.app.php:707
+msgid "V-Center IP"
+msgstr ""
+
+#: ../../enterprise/include/class/VMware.app.php:718
+msgid "Datacenter name"
+msgstr ""
+
+#: ../../enterprise/include/class/VMware.app.php:719
+msgid ""
+"This name must match with the name wich appears when you log in you VMware "
+"manager"
+msgstr ""
+
+#: ../../enterprise/include/class/VMware.app.php:749
+msgid "Encrypt passwords"
+msgstr ""
+
+#: ../../enterprise/include/class/VMware.app.php:870
+msgid "Max threads"
+msgstr ""
+
+#: ../../enterprise/include/class/VMware.app.php:879
+msgid "Re-scan interval"
+msgstr ""
+
+#: ../../enterprise/include/class/VMware.app.php:880
+msgid "Enables re-scan entities process every interval defined."
+msgstr ""
+
+#: ../../enterprise/include/class/VMware.app.php:913
+msgid "Retry send"
+msgstr ""
+
+#: ../../enterprise/include/class/VMware.app.php:923
+msgid "Event mode"
+msgstr ""
+
+#: ../../enterprise/include/class/VMware.app.php:923
+msgid "Only for VCenter."
+msgstr ""
+
+#: ../../enterprise/include/class/VMware.app.php:933
+msgid "Virtual network monitoring"
+msgstr ""
+
+#: ../../enterprise/include/class/VMware.app.php:964
+msgid "Extra settings"
+msgstr ""
+
+#: ../../enterprise/include/class/VMware.app.php:965
+msgid "This RAW block will be directly added to config file."
+msgstr ""
+
+#: ../../enterprise/include/class/VMware.app.php:1259
+msgid "Include datastores"
+msgstr ""
+
+#: ../../enterprise/include/class/VMware.app.php:1269
+msgid "Include datacenters"
+msgstr ""
+
+#: ../../enterprise/include/class/VMware.app.php:1279
+msgid "Include esxs"
+msgstr ""
+
+#: ../../enterprise/include/class/VMware.app.php:1289
+msgid "Include vms"
+msgstr ""
+
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:473
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:532
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:591
+msgid "Alert not found."
+msgstr ""
+
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:480
+msgid "Invalid json data"
+msgstr ""
+
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:575
+msgid "Rules updated."
+msgstr ""
+
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:578
+msgid "JSON decoding error. Please call support."
+msgstr ""
+
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:897
+msgid "Pass"
+msgstr ""
+
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:898
+msgid "Drop"
+msgstr ""
+
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:924
+msgid "Module alert"
+msgstr ""
+
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:944
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2018
+msgid "Load from template"
+msgstr ""
+
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:961
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2197
+#: ../../godmode/alerts/configure_alert_template.php:625
+#: ../../godmode/alerts/alert_view.php:258
+msgid "Use special days list"
+msgstr ""
+
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:978
+#: ../../godmode/alerts/configure_alert_template.php:661
+msgid "Schedule"
+msgstr ""
+
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:981
+#: ../../godmode/alerts/configure_alert_template.php:665
+msgid "No alert has been scheduled yet"
+msgstr ""
+
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1003
+msgid "Execute alert"
+msgstr ""
+
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1006
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3457
+msgid "from"
+msgstr ""
+
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1026
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3475
+msgid "times in"
+msgstr ""
+
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1036
+msgid "threshold"
+msgstr ""
+
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1046
+msgid "Rule evaluation mode"
+msgstr ""
+
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1046
+msgid "Pass - All alerts are evaluated. Drop - It stops when 1 alert matches."
+msgstr ""
+
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1063
+msgid "Grouped by"
+msgstr ""
+
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1080
+#: ../../enterprise/godmode/alerts/alert_inventory_builder.php:270
+#: ../../godmode/snmpconsole/snmp_alert.php:1043
+#: ../../godmode/alerts/configure_alert_template.php:749
+msgid "Disable event"
+msgstr ""
+
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1202
+msgid ""
+"The templates shown are only for correlative alerts, event alert (legacy) "
+"will be deprecated in the future"
+msgstr ""
+
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1212
+msgid "Available items"
+msgstr ""
+
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1213
+msgid "Block"
+msgstr ""
+
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1261
+#: ../../enterprise/include/lib/AlertCorrelation.class.php:1044
+msgid "Log content"
+msgstr ""
+
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1266
+#: ../../enterprise/include/lib/AlertCorrelation.class.php:1047
+msgid "Log source"
+msgstr ""
+
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1271
+#: ../../enterprise/include/lib/AlertCorrelation.class.php:1050
+msgid "Log agent"
+msgstr ""
+
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1329
+#: ../../enterprise/include/lib/AlertCorrelation.class.php:1056
+msgid "Event content"
+msgstr ""
+
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1334
+#: ../../enterprise/include/lib/AlertCorrelation.class.php:1053
+msgid "Event user comment"
+msgstr ""
+
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1339
+#: ../../enterprise/include/lib/AlertCorrelation.class.php:1059
+msgid "Event agent"
+msgstr ""
+
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1344
+#: ../../enterprise/include/lib/AlertCorrelation.class.php:1062
+msgid "Event module"
+msgstr ""
+
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1349
+#: ../../enterprise/include/lib/AlertCorrelation.class.php:1065
+msgid "Event module alerts"
+msgstr ""
+
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1354
+#: ../../enterprise/include/lib/AlertCorrelation.class.php:1068
+msgid "Event group"
+msgstr ""
+
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1360
+msgid "Event group (recursive)"
+msgstr ""
+
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1366
+#: ../../enterprise/include/lib/AlertCorrelation.class.php:1074
+msgid "Event severity"
+msgstr ""
+
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1371
+#: ../../enterprise/include/lib/AlertCorrelation.class.php:1077
+msgid "Event tag"
+msgstr ""
+
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1376
+#: ../../enterprise/include/lib/AlertCorrelation.class.php:1080
+msgid "Event user"
+msgstr ""
+
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1406
+msgid "Operators"
+msgstr ""
+
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1411
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1455
+#: ../../enterprise/include/lib/AlertCorrelation.class.php:1393
+msgid "greater than"
+msgstr ""
+
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1416
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1459
+#: ../../enterprise/include/lib/AlertCorrelation.class.php:1397
+#: ../../enterprise/include/lib/AlertCorrelation.class.php:1405
+msgid "less than"
+msgstr ""
+
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1421
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1463
+#: ../../enterprise/include/lib/AlertCorrelation.class.php:1401
+msgid "greater or equal than"
+msgstr ""
+
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1426
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1467
+msgid "less or equal than"
+msgstr ""
+
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1431
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1471
+#: ../../enterprise/include/lib/AlertCorrelation.class.php:1409
+msgid "is equal"
+msgstr ""
+
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1436
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1475
+#: ../../enterprise/include/lib/AlertCorrelation.class.php:1413
+msgid "is different"
+msgstr ""
+
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1441
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1479
+#: ../../enterprise/include/lib/AlertCorrelation.class.php:1417
+msgid "is like (regex)"
+msgstr ""
+
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1446
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1483
+#: ../../enterprise/include/lib/AlertCorrelation.class.php:1421
+msgid "is not like (regex)"
+msgstr ""
+
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1516
+msgid "Modifiers"
+msgstr ""
+
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1521
+msgid "within an interval (seconds)"
+msgstr ""
+
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1526
+msgid "repeated at least"
+msgstr ""
+
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1566
+msgid "Matches on both true"
+msgstr ""
+
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1572
+msgid "Matches when any is false"
+msgstr ""
+
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1578
+msgid "Matches on any true"
+msgstr ""
+
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1584
+msgid "Matches when both are false"
+msgstr ""
+
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1590
+msgid "Matches when only one is true"
+msgstr ""
+
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1596
+msgid "Matches when both are either true or false"
+msgstr ""
+
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1632
+msgid "Rule definition"
+msgstr ""
+
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1921
+msgid "Remove rule"
+msgstr ""
+
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1932
+msgid "Remove item"
+msgstr ""
+
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1943
+#: ../../enterprise/include/functions_HA_cluster.php:64
+msgid "Cleanup"
+msgstr ""
+
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2044
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2689
+#: ../../godmode/alerts/configure_alert_template.php:928
+#: ../../godmode/alerts/alert_commands.php:100
+#: ../../godmode/alerts/alert_commands.php:105
+#: ../../godmode/alerts/alert_commands.php:121
+#: ../../godmode/alerts/alert_commands.php:127
+#: ../../godmode/alerts/alert_view.php:484
+#: ../../godmode/alerts/alert_view.php:603
+#, php-format
+msgid "Field %s"
+msgstr ""
+
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2111
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2113
+msgid "Triggering Condition"
+msgstr ""
+
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2201
+#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:122
+#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:313
+#: ../../enterprise/godmode/alerts/alert_inventory_builder.php:230
+#: ../../godmode/snmpconsole/snmp_alert.php:996
+#: ../../godmode/alerts/configure_alert_template.php:676
+#: ../../godmode/alerts/alert_templates.php:91
+#: ../../godmode/alerts/alert_view.php:262
+msgid "Time threshold"
+msgstr ""
+
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2206
+#: ../../godmode/alerts/alert_view.php:266
+msgid "Number of alerts"
+msgstr ""
+
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2294
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2557
+#: ../../godmode/alerts/alert_view.php:403
+#: ../../godmode/alerts/configure_alert_action.php:305
+msgid "Firing"
+msgstr ""
+
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2409
+msgid "There are no defined actions for this alert"
+msgstr ""
+
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2480
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3454
+msgid "Number of alerts match"
+msgstr ""
+
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2558
+#: ../../godmode/alerts/alert_view.php:404
+msgid "Recovering"
+msgstr ""
+
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2575
+msgid ""
+"Select the desired action and mode to view the Triggering fields for this "
+"action"
+msgstr ""
+
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2592
+#: ../../godmode/alerts/alert_view.php:395
+msgid "Select the action"
+msgstr ""
+
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2650
+#: ../../godmode/alerts/configure_alert_template.php:918
+#: ../../godmode/alerts/alert_view.php:435
+#: ../../godmode/alerts/alert_view.php:569
+msgid "Firing fields"
+msgstr ""
+
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2652
+#: ../../godmode/alerts/alert_view.php:437
+msgid ""
+"Fields passed to the command executed by this action when the alert is fired"
+msgstr ""
+
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2658
+#: ../../godmode/alerts/alert_view.php:443
+#: ../../godmode/alerts/alert_view.php:566
+msgid "Fields configured on the command associated to the action"
+msgstr ""
+
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2661
+msgid "Alerts fields"
+msgstr ""
+
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2663
+msgid "Triggering fields configured in Alerts"
+msgstr ""
+
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2666
+#: ../../godmode/alerts/alert_view.php:451
+msgid "Action fields"
+msgstr ""
+
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2668
+#: ../../godmode/alerts/alert_view.php:453
+msgid "Triggering fields configured in action"
+msgstr ""
+
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2671
+#: ../../godmode/alerts/alert_view.php:457
+msgid "Executed on firing"
+msgstr ""
+
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2673
+#: ../../godmode/alerts/alert_view.php:459
+#: ../../godmode/alerts/alert_view.php:571
+msgid "Fields used on execution when the alert is fired"
+msgstr ""
+
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2722
+msgid "Correlated alerts"
+msgstr ""
+
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2746
+msgid "Alert succesfully deleted"
+msgstr ""
+
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2755
+msgid "Alerts validated"
+msgstr ""
+
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2758
+msgid "Failed to process validation"
+msgstr ""
+
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2808
+#: ../../enterprise/godmode/modules/local_components.php:547
+#: ../../godmode/modules/manage_network_components.php:659
+msgid "Free Search"
+msgstr ""
+
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2843
+#: ../../enterprise/meta/event/custom_events.php:69
+#: ../../enterprise/meta/event/custom_events.php:88
+#: ../../enterprise/meta/general/main_menu.php:398
+#: ../../enterprise/meta/general/main_header.php:291
+#: ../../godmode/reporting/reporting_builder.list_items.php:222
+#: ../../godmode/events/events.php:90 ../../godmode/events/events.php:110
+msgid "Filters"
+msgstr ""
+
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2900
+#: ../../enterprise/include/functions_ipam.php:1643
+#: ../../enterprise/meta/include/functions_autoprovision.php:473
+#: ../../enterprise/meta/include/functions_autoprovision.php:640
+#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:190
+#: ../../godmode/reporting/reporting_builder.list_items.php:440
+#: ../../godmode/reporting/reporting_builder.list_items.php:740
+#: ../../godmode/reporting/graph_builder.graph_editor.php:217
+#: ../../godmode/reporting/graph_builder.graph_editor.php:318
+msgid "Sort"
+msgstr ""
+
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2903
+msgid "Matched"
+msgstr ""
+
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2926
+#: ../../enterprise/include/class/CommandCenter.class.php:329
+msgid "Sort elements"
+msgstr ""
+
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2971
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3357
+msgid "No associated actions"
+msgstr ""
+
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3005
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3021
+msgid "Add Actions"
+msgstr ""
+
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3076
+msgid "There are no defined correlated alerts"
+msgstr ""
+
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3212
+msgid "Are you sure you want to disable the alert"
+msgstr ""
+
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3219
+msgid "Are you sure you want to enable the alert"
+msgstr ""
+
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3226
+msgid "Disabled Alert"
+msgstr ""
+
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3268
+msgid "Are you sure you want to standby the alert"
+msgstr ""
+
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3275
+msgid "Are you sure you want to activate the alert"
+msgstr ""
+
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3283
+msgid "Standby Alert"
+msgstr ""
+
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3332
+#: ../../enterprise/godmode/policies/policy_external_alerts.php:465
+#: ../../enterprise/godmode/policies/policy_alerts.php:434
+#: ../../godmode/alerts/alert_list.list.php:642
+msgid "Until"
+msgstr ""
+
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3355
+msgid "Delete Actions"
+msgstr ""
+
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3534
+msgid "Successfully added action"
+msgstr ""
+
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3572
+msgid "Successfully delete action"
+msgstr ""
+
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3985
+msgid "Choosetime"
+msgstr ""
+
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:4208
+msgid "Drop Here"
+msgstr ""
+
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:4266
+#: ../../godmode/alerts/configure_alert_template.php:1495
+msgid "Simple"
+msgstr ""
+
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:4267
+#: ../../godmode/alerts/configure_alert_template.php:1496
+msgid "Detailed"
+msgstr ""
+
+#: ../../enterprise/include/class/AlertCorrelationManager.class.php:4322
+#: ../../godmode/alerts/configure_alert_template.php:1551
+msgid "Drag out to remove"
+msgstr ""
+
+#: ../../enterprise/include/class/NetworkConfigManager.class.php:375
+msgid "Perform action"
+msgstr ""
+
+#: ../../enterprise/include/class/NetworkConfigManager.class.php:628
+#: ../../enterprise/godmode/modules/local_components.php:690
+#: ../../enterprise/godmode/reporting/reporting_builder.template.php:627
+#: ../../enterprise/godmode/policies/policy_modules.php:1555
+#: ../../godmode/modules/manage_network_components.php:859
+#: ../../godmode/modules/manage_network_components.php:860
+#: ../../godmode/reporting/reporting_builder.php:1196
+#: ../../godmode/snmpconsole/snmp_alert.php:1303
+#: ../../godmode/snmpconsole/snmp_alert.php:1304
+#: ../../godmode/agentes/module_manager.php:1166
+#: ../../godmode/alerts/alert_actions.php:435
+#: ../../godmode/alerts/alert_templates.php:431
+msgid "Duplicate"
+msgstr ""
+
+#: ../../enterprise/include/class/NetworkConfigManager.class.php:1442
+msgid "NCM devices"
+msgstr ""
+
+#: ../../enterprise/include/class/NetworkConfigManager.class.php:1456
+msgid "NCM templates"
+msgstr ""
+
+#: ../../enterprise/include/class/NetworkConfigManager.class.php:1470
+msgid "Registered vendors"
+msgstr ""
+
+#: ../../enterprise/include/class/NetworkConfigManager.class.php:1484
+msgid "Registered models"
+msgstr ""
+
+#: ../../enterprise/include/class/NetworkConfigManager.class.php:1498
+msgid "Registered snippets"
+msgstr ""
+
+#: ../../enterprise/include/class/NetworkConfigManager.class.php:1512
+msgid "Registered firmwares"
+msgstr ""
+
+#: ../../enterprise/include/class/NetworkConfigManager.class.php:1548
+msgid "No agents with NCM features enabled yet"
+msgstr ""
+
+#: ../../enterprise/include/class/NetworkConfigManager.class.php:1679
+#: ../../enterprise/include/class/NetworkConfigManager.class.php:2189
+#: ../../enterprise/include/class/NetworkConfigManager.class.php:2240
+#, php-format
+msgid "Template not found: %s"
+msgstr ""
+
+#: ../../enterprise/include/class/NetworkConfigManager.class.php:1704
+msgid "Template created"
+msgstr ""
+
+#: ../../enterprise/include/class/NetworkConfigManager.class.php:1704
+msgid "Template updated"
+msgstr ""
+
+#: ../../enterprise/include/class/NetworkConfigManager.class.php:1770
+#: ../../enterprise/include/class/NetworkConfigManager.class.php:2314
+#, php-format
+msgid "Vendor not found: %s"
+msgstr ""
+
+#: ../../enterprise/include/class/NetworkConfigManager.class.php:1801
+msgid "Failed saving vendor: "
+msgstr ""
+
+#: ../../enterprise/include/class/NetworkConfigManager.class.php:1860
+#, php-format
+msgid "model not found: %s"
+msgstr ""
+
+#: ../../enterprise/include/class/NetworkConfigManager.class.php:1882
+#: ../../enterprise/include/class/NetworkConfigManager.class.php:2653
+msgid "you must select a valid vendor"
+msgstr ""
+
+#: ../../enterprise/include/class/NetworkConfigManager.class.php:1895
+msgid "Failed saving model: "
+msgstr ""
+
+#: ../../enterprise/include/class/NetworkConfigManager.class.php:1955
+#, php-format
+msgid "snippet not found: %s"
+msgstr ""
+
+#: ../../enterprise/include/class/NetworkConfigManager.class.php:1986
+msgid "Failed saving snippet: "
+msgstr ""
+
+#: ../../enterprise/include/class/NetworkConfigManager.class.php:2049
+#, php-format
+msgid "firmware not found: %s"
+msgstr ""
+
+#: ../../enterprise/include/class/NetworkConfigManager.class.php:2076
+msgid "Firmware file missing"
+msgstr ""
+
+#: ../../enterprise/include/class/NetworkConfigManager.class.php:2108
+#, php-format
+msgid "Failed to store file in %s"
+msgstr ""
+
+#: ../../enterprise/include/class/NetworkConfigManager.class.php:2125
+msgid "Failed saving firmware: "
+msgstr ""
+
+#: ../../enterprise/include/class/NetworkConfigManager.class.php:2152
+msgid ""
+"Upload only official binary files from your device provide in raw format "
+"(not compressed)"
+msgstr ""
+
+#: ../../enterprise/include/class/NetworkConfigManager.class.php:2201
+#: ../../godmode/modules/manage_network_templates.php:83
+msgid "Template successfully deleted"
+msgstr ""
+
+#: ../../enterprise/include/class/NetworkConfigManager.class.php:2256
+msgid "Template successfully duplicated"
+msgstr ""
+
+#: ../../enterprise/include/class/NetworkConfigManager.class.php:2279
+#, php-format
+msgid "Model not found: %s"
+msgstr ""
+
+#: ../../enterprise/include/class/NetworkConfigManager.class.php:2291
+msgid "Model successfully deleted"
+msgstr ""
+
+#: ../../enterprise/include/class/NetworkConfigManager.class.php:2326
+msgid "Vendor successfully deleted"
+msgstr ""
+
+#: ../../enterprise/include/class/NetworkConfigManager.class.php:2349
+#, php-format
+msgid "Snippet not found: %s"
+msgstr ""
+
+#: ../../enterprise/include/class/NetworkConfigManager.class.php:2361
+msgid "Snippet successfully deleted"
+msgstr ""
+
+#: ../../enterprise/include/class/NetworkConfigManager.class.php:2384
+#, php-format
+msgid "Firmware not found: %s"
+msgstr ""
+
+#: ../../enterprise/include/class/NetworkConfigManager.class.php:2396
+msgid "Firmware successfully deleted"
+msgstr ""
+
+#: ../../enterprise/include/class/NetworkConfigManager.class.php:2475
+msgid ""
+"Not executed yet, no content to display, define your own in following "
+"textarea."
+msgstr ""
+
+#: ../../enterprise/include/class/NetworkConfigManager.class.php:2484
+msgid ""
+"Following content is already queued to be executed! You must wait until "
+"execution is finished before being able to modify this."
+msgstr ""
+
+#: ../../enterprise/include/class/NetworkConfigManager.class.php:2576
+msgid "Check progress"
+msgstr ""
+
+#: ../../enterprise/include/class/NetworkConfigManager.class.php:2585
+#, php-format
+msgid "Script scheduled %s %s"
+msgstr ""
+
+#: ../../enterprise/include/class/NetworkConfigManager.class.php:2643
+#, php-format
+msgid "Error retrieving template: %s"
+msgstr ""
+
+#: ../../enterprise/include/class/NetworkConfigManager.class.php:2649
+msgid "you must select a template"
+msgstr ""
+
+#: ../../enterprise/include/class/NetworkConfigManager.class.php:2651
+msgid "you must select a valid model"
+msgstr ""
+
+#: ../../enterprise/include/class/NetworkConfigManager.class.php:2655
+msgid "you must select a valid port"
+msgstr ""
+
+#: ../../enterprise/include/class/NetworkConfigManager.class.php:2689
+#, php-format
+msgid "Failed to update%s"
+msgstr ""
+
+#: ../../enterprise/include/class/NetworkConfigManager.class.php:2721
+msgid "No configuration registers to backup"
+msgstr ""
+
+#: ../../enterprise/include/class/NetworkConfigManager.class.php:2729
+#: ../../enterprise/include/class/NetworkConfigManager.class.php:2745
+msgid "Successfully backed up"
+msgstr ""
+
+#: ../../enterprise/include/class/NetworkConfigManager.class.php:2780
+msgid "Invalid id given"
+msgstr ""
+
+#: ../../enterprise/include/class/NetworkConfigManager.class.php:2815
+msgid ""
+"Is highly recommendable to execute this kind of operation from agent details "
+"to preview the script content"
+msgstr ""
+
+#: ../../enterprise/include/class/NetworkConfigManager.class.php:2824
+msgid "This operation is not ready yet! Keep up to date with latest updates"
+msgstr ""
+
+#: ../../enterprise/include/class/NetworkConfigManager.class.php:2833
+msgid "Invalid action"
+msgstr ""
+
+#: ../../enterprise/include/class/NetworkConfigManager.class.php:2852
+#: ../../enterprise/include/class/DatabaseHA.class.php:190
+msgid "Successfully scheduled"
+msgstr ""
+
+#: ../../enterprise/include/class/NetworkConfigManager.class.php:2853
+msgid "Failed to schedule action."
+msgstr ""
+
+#: ../../enterprise/include/class/Azure.cloud.php:248
+#: ../../enterprise/include/class/Google.cloud.php:242
+msgid "Task details"
+msgstr ""
+
+#: ../../enterprise/include/class/Azure.cloud.php:249
+#: ../../enterprise/include/class/Google.cloud.php:243
+msgid "Instance explorer"
+msgstr ""
+
+#: ../../enterprise/include/class/Azure.cloud.php:250
+#: ../../enterprise/include/class/Google.cloud.php:244
+msgid "Metrics"
+msgstr ""
+
+#: ../../enterprise/include/class/Azure.cloud.php:307
+msgid "Microsoft Compute"
+msgstr ""
+
+#: ../../enterprise/include/class/Azure.cloud.php:468
+#: ../../enterprise/include/class/Google.cloud.php:470
+msgid "Group not found."
+msgstr ""
+
+#: ../../enterprise/include/class/Azure.cloud.php:598
+#: ../../enterprise/include/class/Azure.cloud.php:646
+#: ../../enterprise/include/class/Google.cloud.php:597
+#: ../../enterprise/include/class/Google.cloud.php:643
+msgid "Unauthorized access"
+msgstr ""
+
+#: ../../enterprise/include/class/Azure.cloud.php:909
+#: ../../enterprise/include/class/Google.cloud.php:865
+msgid "Select target virtual machines"
+msgstr ""
+
+#: ../../enterprise/include/class/DeploymentCenter.class.php:235
+msgid "IP address is required"
+msgstr ""
+
+#: ../../enterprise/include/class/DeploymentCenter.class.php:249
+msgid "Credentials to use are required"
+msgstr ""
+
+#: ../../enterprise/include/class/DeploymentCenter.class.php:251
+msgid "Desired agent version is required"
+msgstr ""
+
+#: ../../enterprise/include/class/DeploymentCenter.class.php:262
+msgid "Target already defined."
+msgstr ""
+
+#: ../../enterprise/include/class/DeploymentCenter.class.php:288
+msgid "Target successfully added"
+msgstr ""
+
+#: ../../enterprise/include/class/DeploymentCenter.class.php:309
+msgid "Target successfully updated"
+msgstr ""
+
+#: ../../enterprise/include/class/DeploymentCenter.class.php:352
+msgid "You should specify a Discovery server"
+msgstr ""
+
+#: ../../enterprise/include/class/DeploymentCenter.class.php:354
+msgid "You must select some targets to deploy"
+msgstr ""
+
+#: ../../enterprise/include/class/DeploymentCenter.class.php:384
+#: ../../enterprise/include/class/DeploymentCenter.class.php:1095
+msgid "Failed to schedule"
+msgstr ""
+
+#: ../../enterprise/include/class/DeploymentCenter.class.php:399
+msgid "Deploy scheduled"
+msgstr ""
+
+#: ../../enterprise/include/class/DeploymentCenter.class.php:425
+msgid "CSV file is needed"
+msgstr ""
+
+#: ../../enterprise/include/class/DeploymentCenter.class.php:480
+#, php-format
+msgid ""
+"Credential identifier %s does not exist, please, add it to your repository "
+"%s "
+msgstr ""
+
+#: ../../enterprise/include/class/DeploymentCenter.class.php:488
+#, php-format
+msgid "OS %s does not math any existing, please, add it to OS list %s"
+msgstr ""
+
+#: ../../enterprise/include/class/DeploymentCenter.class.php:496
+#, php-format
+msgid ""
+"Sofware agent version with id %s does not exist, please, add it to your "
+"repository %s "
+msgstr ""
+
+#: ../../enterprise/include/class/DeploymentCenter.class.php:518
+msgid "No target could be added. "
+msgstr ""
+
+#: ../../enterprise/include/class/DeploymentCenter.class.php:613
+#: ../../enterprise/godmode/menu.php:163
+#: ../../godmode/wizards/HostDevices.class.php:165
+#: ../../godmode/wizards/DiscoveryTaskList.class.php:823
+msgid "Agent deployment"
+msgstr ""
+
+#: ../../enterprise/include/class/DeploymentCenter.class.php:621
+msgid "Deployment center"
+msgstr ""
+
+#: ../../enterprise/include/class/DeploymentCenter.class.php:637
+msgid "There are no targets defined yet, please add some."
+msgstr ""
+
+#: ../../enterprise/include/class/DeploymentCenter.class.php:644
+#, php-format
+msgid "Please set %s to make software available for targets."
+msgstr ""
+
+#: ../../enterprise/include/class/DeploymentCenter.class.php:656
+#, php-format
+msgid ""
+"There are no software agents in your repository yet, please add some %s."
+msgstr ""
+
+#: ../../enterprise/include/class/DeploymentCenter.class.php:675
+#: ../../enterprise/include/class/DeploymentCenter.class.php:1751
+msgid "Scan for targets"
+msgstr ""
+
+#: ../../enterprise/include/class/DeploymentCenter.class.php:684
+msgid "Add target"
+msgstr ""
+
+#: ../../enterprise/include/class/DeploymentCenter.class.php:693
+msgid "Load targets"
+msgstr ""
+
+#: ../../enterprise/include/class/DeploymentCenter.class.php:758
+msgid "Key identifier"
+msgstr ""
+
+#: ../../enterprise/include/class/DeploymentCenter.class.php:759
+#: ../../enterprise/include/class/DeploymentCenter.class.php:1222
+#: ../../enterprise/include/class/DeploymentCenter.class.php:1359
+msgid "Target server IP"
+msgstr ""
+
+#: ../../enterprise/include/class/DeploymentCenter.class.php:760
+msgid "Agent version installed"
+msgstr ""
+
+#: ../../enterprise/include/class/DeploymentCenter.class.php:761
+msgid "Agent version desired"
+msgstr ""
+
+#: ../../enterprise/include/class/DeploymentCenter.class.php:762
+msgid "Installation date"
+msgstr ""
+
+#: ../../enterprise/include/class/DeploymentCenter.class.php:763
+msgid "Last error"
+msgstr ""
+
+#: ../../enterprise/include/class/DeploymentCenter.class.php:811
+msgid "Server IP"
+msgstr ""
+
+#: ../../enterprise/include/class/DeploymentCenter.class.php:836
+msgid "State"
+msgstr ""
+
+#: ../../enterprise/include/class/DeploymentCenter.class.php:868
+msgid "Deploy agent to targets"
+msgstr ""
+
+#: ../../enterprise/include/class/DeploymentCenter.class.php:1042
+msgid "You must define a network."
+msgstr ""
+
+#: ../../enterprise/include/class/DeploymentCenter.class.php:1044
+msgid "You must select at least one credential to test."
+msgstr ""
+
+#: ../../enterprise/include/class/DeploymentCenter.class.php:1046
+msgid "You must select a Discovery server."
+msgstr ""
+
+#: ../../enterprise/include/class/DeploymentCenter.class.php:1048
+msgid "Please select a desired software agent version."
+msgstr ""
+
+#: ../../enterprise/include/class/DeploymentCenter.class.php:1050
+msgid "Please specify a server IP."
+msgstr ""
+
+#: ../../enterprise/include/class/DeploymentCenter.class.php:1070
+#: ../../enterprise/include/class/DeploymentCenter.class.php:1103
+msgid "Discovery task list"
+msgstr ""
+
+#: ../../enterprise/include/class/DeploymentCenter.class.php:1069
+#, php-format
+msgid "This network is already being scanned. See progress at %s"
+msgstr ""
+
+#: ../../enterprise/include/class/DeploymentCenter.class.php:1102
+#, php-format
+msgid "Network scheduled to be scanned. You can see progress at %s"
+msgstr ""
+
+#: ../../enterprise/include/class/DeploymentCenter.class.php:1150
+msgid "Network/mask"
+msgstr ""
+
+#: ../../enterprise/include/class/DeploymentCenter.class.php:1159
+msgid "Scan from"
+msgstr ""
+
+#: ../../enterprise/include/class/DeploymentCenter.class.php:1178
+#: ../../godmode/wizards/HostDevices.class.php:1447
+msgid "Credentials to try with"
+msgstr ""
+
+#: ../../enterprise/include/class/DeploymentCenter.class.php:1189
+#: ../../enterprise/include/class/DeploymentCenter.class.php:1316
+#: ../../enterprise/include/class/DeploymentCenter.class.php:1326
+#: ../../enterprise/meta/include/functions_wizard_meta.php:974
+#: ../../enterprise/meta/include/functions_wizard_meta.php:1058
+#: ../../extensions/api_checker.php:195
+#: ../../godmode/wizards/HostDevices.class.php:1470
+msgid "Credentials"
+msgstr ""
+
+#: ../../enterprise/include/class/DeploymentCenter.class.php:1212
+#: ../../enterprise/include/class/DeploymentCenter.class.php:1349
+msgid "Desired agent version"
+msgstr ""
+
+#: ../../enterprise/include/class/DeploymentCenter.class.php:1396
+msgid "CSV format"
+msgstr ""
+
+#: ../../enterprise/include/class/DeploymentCenter.class.php:1397
+msgid "Target agent version"
+msgstr ""
+
+#: ../../enterprise/include/class/DeploymentCenter.class.php:1397
+#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1120
+#: ../../godmode/modules/manage_network_components_form_network.php:242
+#: ../../godmode/massive/massive_edit_modules.php:1198
+#: ../../godmode/agentes/module_manager_editor_network.php:459
+msgid "Credential identifier"
+msgstr ""
+
+#: ../../enterprise/include/class/DeploymentCenter.class.php:1397
+msgid "Target server ip"
+msgstr ""
+
+#: ../../enterprise/include/class/DeploymentCenter.class.php:1416
+msgid "CSV file"
+msgstr ""
+
+#: ../../enterprise/include/class/DeploymentCenter.class.php:1476
+msgid "Select desired targets to be deployed"
+msgstr ""
+
+#: ../../enterprise/include/class/DeploymentCenter.class.php:1479
+msgid "Deploy from"
+msgstr ""
+
+#: ../../enterprise/include/class/DeploymentCenter.class.php:1494
+msgid "Available targets"
+msgstr ""
+
+#: ../../enterprise/include/class/DeploymentCenter.class.php:1670
+msgid "Add new target"
+msgstr ""
+
+#: ../../enterprise/include/class/DeploymentCenter.class.php:1673
+msgid "Update target"
+msgstr ""
+
+#: ../../enterprise/include/class/DeploymentCenter.class.php:1719
+msgid "Import targets from CSV"
+msgstr ""
+
+#: ../../enterprise/include/class/DeploymentCenter.class.php:1752
+#: ../../godmode/modules/manage_network_components_form_wizard.php:636
+msgid "Scan"
+msgstr ""
+
+#: ../../enterprise/include/class/DeploymentCenter.class.php:1786
+msgid "Select targets"
+msgstr ""
+
+#: ../../enterprise/include/class/DeploymentCenter.class.php:1787
+#: ../../enterprise/include/functions_HA_cluster.php:46
+msgid "Deploy"
+msgstr ""
+
+#: ../../enterprise/include/class/DatabaseHA.class.php:137
+#: ../../enterprise/include/class/DatabaseHA.class.php:241
+#: ../../enterprise/include/class/DatabaseHA.class.php:423
+#: ../../enterprise/include/class/DatabaseHA.class.php:433
+#: ../../enterprise/include/class/DatabaseHA.class.php:525
+#: ../../enterprise/include/class/DatabaseHA.class.php:534
+#: ../../enterprise/include/class/DatabaseHA.class.php:651
+#: ../../enterprise/include/class/DatabaseHA.class.php:660
+msgid "Error, please refresh page"
+msgstr ""
+
+#: ../../enterprise/include/class/DatabaseHA.class.php:142
+msgid "Action already scheduled"
+msgstr ""
+
+#: ../../enterprise/include/class/DatabaseHA.class.php:148
+msgid "Unavailable action"
+msgstr ""
+
+#: ../../enterprise/include/class/DatabaseHA.class.php:160
+msgid "A node is already being synchronized, please wait until process finish."
+msgstr ""
+
+#: ../../enterprise/include/class/DatabaseHA.class.php:172
+msgid "Please verify resync configuration is set before use this feature."
+msgstr ""
+
+#: ../../enterprise/include/class/DatabaseHA.class.php:220
+msgid "Uninitialized"
+msgstr ""
+
+#: ../../enterprise/include/class/DatabaseHA.class.php:476
+#: ../../enterprise/include/class/DatabaseHA.class.php:575
+#: ../../enterprise/include/class/DatabaseHA.class.php:1251
+msgid "This is not a cluster node"
+msgstr ""
+
+#: ../../enterprise/include/class/DatabaseHA.class.php:480
+#: ../../enterprise/include/class/DatabaseHA.class.php:1255
+msgid "Failed to retrieve master position"
+msgstr ""
+
+#: ../../enterprise/include/class/DatabaseHA.class.php:494
+#: ../../enterprise/include/class/DatabaseHA.class.php:1268
+msgid "Failed to retrieve slave information"
+msgstr ""
+
+#: ../../enterprise/include/class/DatabaseHA.class.php:611
+msgid "Master"
+msgstr ""
+
+#: ../../enterprise/include/class/DatabaseHA.class.php:614
+msgid "Slave"
+msgstr ""
+
+#: ../../enterprise/include/class/DatabaseHA.class.php:823
+#: ../../enterprise/include/class/DatabaseHA.class.php:1006
+msgid "DB Replication user"
+msgstr ""
+
+#: ../../enterprise/include/class/DatabaseHA.class.php:824
+msgid "User configured for Master to Slaves replication"
+msgstr ""
+
+#: ../../enterprise/include/class/DatabaseHA.class.php:834
+#: ../../enterprise/include/class/DatabaseHA.class.php:1015
+msgid "DB Replication user password"
+msgstr ""
+
+#: ../../enterprise/include/class/DatabaseHA.class.php:835
+msgid "User password"
+msgstr ""
+
+#: ../../enterprise/include/class/DatabaseHA.class.php:845
+msgid "Resync data dir"
+msgstr ""
+
+#: ../../enterprise/include/class/DatabaseHA.class.php:846
+msgid "Directory where mysql files are stored (must be common to all nodes)"
+msgstr ""
+
+#: ../../enterprise/include/class/DatabaseHA.class.php:856
+msgid "Resync tmp directory"
+msgstr ""
+
+#: ../../enterprise/include/class/DatabaseHA.class.php:857
+msgid ""
+"Temporary working directory where to store the backups that will be used to "
+"re-synchronize a slave node"
+msgstr ""
+
+#: ../../enterprise/include/class/DatabaseHA.class.php:867
+msgid "Resync MySQL user"
+msgstr ""
+
+#: ../../enterprise/include/class/DatabaseHA.class.php:868
+msgid ""
+"User of the system that owns the MySQL files, necessary for the adjustment "
+"of permissions (by default mysql)"
+msgstr ""
+
+#: ../../enterprise/include/class/DatabaseHA.class.php:878
+msgid "Resync MySQL group"
+msgstr ""
+
+#: ../../enterprise/include/class/DatabaseHA.class.php:879
+msgid ""
+"System group that owns the MySQL files, needed for permissions setting "
+"(default mysql)"
+msgstr ""
+
+#: ../../enterprise/include/class/DatabaseHA.class.php:940
+msgid "IP or FQDN"
+msgstr ""
+
+#: ../../enterprise/include/class/DatabaseHA.class.php:941
+msgid ""
+"This action only registers an already configured node. This action does not "
+"configure any resource."
+msgstr ""
+
+#: ../../enterprise/include/class/DatabaseHA.class.php:951
+msgid "Cluster node label (pcs)"
+msgstr ""
+
+#: ../../enterprise/include/class/DatabaseHA.class.php:959
+#: ../../enterprise/meta/advanced/metasetup.consoles.php:602
+msgid "DB port"
+msgstr ""
+
+#: ../../enterprise/include/class/DatabaseHA.class.php:967
+msgid "SSH user"
+msgstr ""
+
+#: ../../enterprise/include/class/DatabaseHA.class.php:975
+msgid "SSH port"
+msgstr ""
+
+#: ../../enterprise/include/class/DatabaseHA.class.php:983
+msgid "SSH key"
+msgstr ""
+
+#: ../../enterprise/include/class/DatabaseHA.class.php:991
+msgid "SSH public key"
+msgstr ""
+
+#: ../../enterprise/include/class/DatabaseHA.class.php:1043
+msgid "Missed parameters"
+msgstr ""
+
+#: ../../enterprise/include/class/DatabaseHA.class.php:1090
+msgid "You must specify a host"
+msgstr ""
+
+#: ../../enterprise/include/class/DatabaseHA.class.php:1092
+msgid "DB port must be a positive integer"
+msgstr ""
+
+#: ../../enterprise/include/class/DatabaseHA.class.php:1094
+msgid "SSH port must be a positive integer"
+msgstr ""
+
+#: ../../enterprise/include/class/DatabaseHA.class.php:1096
+msgid "You must specify a SSH user"
+msgstr ""
+
+#: ../../enterprise/include/class/DatabaseHA.class.php:1098
+msgid "You must specify a replication DB user"
+msgstr ""
+
+#: ../../enterprise/include/class/DatabaseHA.class.php:1100
+msgid "You must specify a replication DB pass"
+msgstr ""
+
+#: ../../enterprise/include/class/DatabaseHA.class.php:1102
+msgid "You must specify a public key path"
+msgstr ""
+
+#: ../../enterprise/include/class/DatabaseHA.class.php:1104
+msgid "You must specify a private path"
+msgstr ""
+
+#: ../../enterprise/include/class/DatabaseHA.class.php:1154
+msgid "Successfully "
+msgstr ""
+
+#: ../../enterprise/include/class/Google.cloud.php:301
+msgid "Compute Engine"
+msgstr ""
+
+#: ../../enterprise/include/class/Google.cloud.php:877
+msgid "This options only applies to zone (region) agents."
+msgstr ""
+
+#: ../../enterprise/include/class/Google.cloud.php:890
+msgid "Scan and general monitoring"
+msgstr ""
+
+#: ../../enterprise/include/class/Google.cloud.php:903
+msgid "CPU performance summary"
+msgstr ""
+
+#: ../../enterprise/include/class/CommandCenter.class.php:146
+msgid "Command center"
+msgstr ""
+
+#: ../../enterprise/include/class/CommandCenter.class.php:160
+msgid "Could not be start merge process, no nodes in the metaconsole "
+msgstr ""
+
+#: ../../enterprise/include/class/CommandCenter.class.php:169
+#: ../../enterprise/include/functions_groups.php:49
+msgid "Metaconsole"
+msgstr ""
+
+#: ../../enterprise/include/class/CommandCenter.class.php:265
+#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:903
+msgid ""
+"Memory limit is recomended to be unlimited in metaconsole, please set to -1 "
+"in php.ini."
+msgstr ""
+
+#: ../../enterprise/include/class/CommandCenter.class.php:312
+msgid "Nodes priority order"
+msgstr ""
+
+#: ../../enterprise/include/class/CommandCenter.class.php:317
+#: ../../enterprise/meta/advanced/metasetup.consoles.php:830
+#: ../../enterprise/godmode/setup/setup_metaconsole.php:270
+msgid "DB"
+msgstr ""
+
+#: ../../enterprise/include/class/CommandCenter.class.php:318
+#: ../../enterprise/meta/advanced/metasetup.consoles.php:831
+#: ../../enterprise/godmode/setup/setup_metaconsole.php:271
+msgid "API"
+msgstr ""
+
+#: ../../enterprise/include/class/CommandCenter.class.php:366
+msgid "Unify databases"
+msgstr ""
+
+#: ../../enterprise/include/class/CommandCenter.class.php:383
+msgid "merge process"
+msgstr ""
+
+#: ../../enterprise/include/class/CommandCenter.class.php:391
+msgid "Process detail of node"
+msgstr ""
+
+#: ../../enterprise/include/class/CommandCenter.class.php:392
+msgid "Errors of node"
+msgstr ""
+
+#: ../../enterprise/include/class/CommandCenter.class.php:421
+msgid "Unexpected end of process"
+msgstr ""
+
+#: ../../enterprise/include/class/CommandCenter.class.php:422
+msgid "Please retry"
+msgstr ""
+
+#: ../../enterprise/include/class/CommandCenter.class.php:443
+msgid "Critical issues while merging"
+msgstr ""
+
+#: ../../enterprise/include/class/CommandCenter.class.php:444
+msgid "Please restore your backups"
+msgstr ""
+
+#: ../../enterprise/include/class/CommandCenter.class.php:455
+#: ../../enterprise/include/class/CommandCenter.class.php:1119
+msgid "Error message"
+msgstr ""
+
+#: ../../enterprise/include/class/CommandCenter.class.php:457
+msgid "Process details"
+msgstr ""
+
+#: ../../enterprise/include/class/CommandCenter.class.php:458
+msgid ""
+"System is not unified yet, something is wrong, please troubleshoot the "
+"errors and retry the merge process. Your data have not been modified."
+msgstr ""
+
+#: ../../enterprise/include/class/CommandCenter.class.php:459
+msgid "Errors while merging"
+msgstr ""
+
+#: ../../enterprise/include/class/CommandCenter.class.php:460
+msgid "The process has been completed correctly"
+msgstr ""
+
+#: ../../enterprise/include/class/CommandCenter.class.php:462
+msgid "System is merging your environment, please wait"
+msgstr ""
+
+#: ../../enterprise/include/class/CommandCenter.class.php:464
+#: ../../enterprise/include/class/CommandCenter.class.php:884
+msgid "Initialice merge"
+msgstr ""
+
+#: ../../enterprise/include/class/CommandCenter.class.php:465
+#: ../../enterprise/include/class/CommandCenter.class.php:890
+msgid "Apply merge"
+msgstr ""
+
+#: ../../enterprise/include/class/CommandCenter.class.php:466
+msgid "Finished merge"
+msgstr ""
+
+#: ../../enterprise/include/class/CommandCenter.class.php:467
+#: ../../enterprise/include/class/CommandCenter.class.php:896
+msgid "Restore merge"
+msgstr ""
+
+#: ../../enterprise/include/class/CommandCenter.class.php:469
+msgid "Succesfully"
+msgstr ""
+
+#: ../../enterprise/include/class/CommandCenter.class.php:470
+msgid "Pending operations"
+msgstr ""
+
+#: ../../enterprise/include/class/CommandCenter.class.php:472
+msgid "Error. Synchronization aborted. Backup restored"
+msgstr ""
+
+#: ../../enterprise/include/class/CommandCenter.class.php:542
+#: ../../enterprise/include/class/CommandCenter.class.php:548
+msgid "Update priority nodes"
+msgstr ""
+
+#: ../../enterprise/include/class/CommandCenter.class.php:543
+msgid "Successfully updated priority order nodes"
+msgstr ""
+
+#: ../../enterprise/include/class/CommandCenter.class.php:549
+msgid "Could not be updated priority order nodes"
+msgstr ""
+
+#: ../../enterprise/include/class/CommandCenter.class.php:565
+msgid ""
+"By unifying databases all information across your infrastructure will be "
+"merged to gain integrity"
+msgstr ""
+
+#: ../../enterprise/include/class/CommandCenter.class.php:578
+#: ../../enterprise/include/class/CommandCenter.class.php:588
+msgid "Blocked"
+msgstr ""
+
+#: ../../enterprise/include/class/CommandCenter.class.php:579
+msgid "This process already running"
+msgstr ""
+
+#: ../../enterprise/include/class/CommandCenter.class.php:589
+msgid "You cannot start a new merge because system is merging events data."
+msgstr ""
+
+#: ../../enterprise/include/class/CommandCenter.class.php:597
+msgid "Press OK button to start the process"
+msgstr ""
+
+#: ../../enterprise/include/class/CommandCenter.class.php:599
+msgid ""
+"There are backups from a previous merging process, are you sure you want to "
+"overwrite those backups? Press OK button to ignore this message and start "
+"the process."
+msgstr ""
+
+#: ../../enterprise/include/class/CommandCenter.class.php:647
+msgid "System is merging events..."
+msgstr ""
+
+#: ../../enterprise/include/class/CommandCenter.class.php:654
+msgid "Already working..."
+msgstr ""
+
+#: ../../enterprise/include/class/CommandCenter.class.php:760
+#: ../../enterprise/include/class/CommandCenter.class.php:761
+msgid "Initilize"
+msgstr ""
+
+#: ../../enterprise/include/class/CommandCenter.class.php:866
+#: ../../enterprise/include/class/CommandCenter.class.php:1054
+msgid "Waiting"
+msgstr ""
+
+#: ../../enterprise/include/class/CommandCenter.class.php:873
+msgid "Process detail"
+msgstr ""
+
+#: ../../enterprise/include/class/CommandCenter.class.php:878
+msgid "Display errors"
+msgstr ""
+
+#: ../../enterprise/include/class/CommandCenter.class.php:909
+msgid "There are no nodes to do the merge process."
+msgstr ""
+
+#: ../../enterprise/include/class/CommandCenter.class.php:1017
+msgid "merge events"
+msgstr ""
+
+#: ../../enterprise/include/class/CommandCenter.class.php:1060
+msgid "Retry process"
+msgstr ""
+
+#: ../../enterprise/include/class/CommandCenter.class.php:1065
+msgid "Display events errors"
+msgstr ""
+
+#: ../../enterprise/include/class/CommandCenter.class.php:1078
+msgid "Events History"
+msgstr ""
+
+#: ../../enterprise/include/class/CommandCenter.class.php:1140
+msgid "merge process events"
+msgstr ""
+
+#: ../../enterprise/include/functions_tasklist.php:58
+msgid ""
+"Discovery relies on a proper setup of cron, the time-based scheduling service"
+msgstr ""
+
+#: ../../enterprise/include/functions_tasklist.php:77
+msgid "Please check process is no locked."
+msgstr ""
+
+#: ../../enterprise/include/functions_tasklist.php:143
+#: ../../enterprise/include/functions_tasklist.php:688
+msgid "There are no console task defined yet."
+msgstr ""
+
+#: ../../enterprise/include/functions_tasklist.php:569
+msgid "Task disabled"
+msgstr ""
+
+#: ../../enterprise/include/functions_tasklist.php:693
+msgid "Console Tasks"
+msgstr ""
+
+#: ../../enterprise/include/reset_pass.php:98
+#: ../../enterprise/meta/include/reset_pass.php:93
+msgid "User to reset password"
+msgstr ""
+
+#: ../../enterprise/include/reset_pass.php:123
+#: ../../enterprise/include/process_reset_pass.php:136
+#: ../../enterprise/meta/include/reset_pass.php:122
+#: ../../enterprise/meta/include/process_reset_pass.php:132
+msgid "Back to login"
+msgstr ""
+
+#: ../../enterprise/include/reset_pass.php:174
+#: ../../enterprise/include/reset_pass.php:177
+#: ../../enterprise/meta/include/reset_pass.php:165
+#: ../../enterprise/meta/include/reset_pass.php:168
+msgid "Reset password failed"
+msgstr ""
+
+#: ../../enterprise/include/lib/RCMDFile.class.php:203
+msgid "You do not have grants to access this feature"
+msgstr ""
+
+#: ../../enterprise/include/lib/RCMDFile.class.php:548
+msgid "There was a problem creating RCMD"
+msgstr ""
+
+#: ../../enterprise/include/lib/RCMDFile.class.php:693
+#: ../../enterprise/include/lib/RCMDFile.class.php:717
+msgid "There was a problem deleting RCMD"
+msgstr ""
+
+#: ../../enterprise/include/lib/RCMDFile.class.php:865
+msgid "No agent configuration file"
+msgstr ""
+
+#: ../../enterprise/include/lib/RCMDFile.class.php:873
+msgid "you don't have write permissions in the configuration file"
+msgstr ""
+
+#: ../../enterprise/include/lib/RCMDFile.class.php:914
+msgid "This agent is already a target"
+msgstr ""
+
+#: ../../enterprise/include/lib/RCMDFile.class.php:945
+#, php-format
+msgid "You do not have grants to access in this agent %s"
+msgstr ""
+
+#: ../../enterprise/include/lib/RCMDFile.class.php:1011
+msgid "There was a problem creating RCMD files"
+msgstr ""
+
+#: ../../enterprise/include/lib/RCMDFile.class.php:1058
+msgid "There was a problem creating target"
+msgstr ""
+
+#: ../../enterprise/include/lib/RCMDFile.class.php:1092
+msgid "There was a problem adding items in the configuration file"
+msgstr ""
+
+#: ../../enterprise/include/lib/RCMDFile.class.php:1118
+#: ../../enterprise/include/lib/RCMDFile.class.php:1285
+msgid "No agent has been selected"
+msgstr ""
+
+#: ../../enterprise/include/lib/RCMDFile.class.php:1151
+msgid "Target doesn't exist"
+msgstr ""
+
+#: ../../enterprise/include/lib/RCMDFile.class.php:1223
+msgid "There was a problem deleting tokens in the configuration file"
+msgstr ""
+
+#: ../../enterprise/include/lib/RCMDFile.class.php:1259
+msgid "There was a problem deleting target from DB"
+msgstr ""
+
+#: ../../enterprise/include/lib/RCMDFile.class.php:1417
+msgid "Yaml is empty"
+msgstr ""
+
+#: ../../enterprise/include/lib/RCMDFile.class.php:1426
+msgid "Doesn't have a valid YAML format"
+msgstr ""
+
+#: ../../enterprise/include/lib/RCMDFile.class.php:1444
+#, php-format
+msgid "%s field is not allowed"
+msgstr ""
+
+#: ../../enterprise/include/lib/Service.php:152
+msgid "Service module does not match pointed one"
+msgstr ""
+
+#: ../../enterprise/include/lib/Service.php:158
+#, php-format
+msgid "Service module not found %s <br>"
+msgstr ""
+
+#: ../../enterprise/include/lib/Service.php:177
+msgid "Service module SLA not found"
+msgstr ""
+
+#: ../../enterprise/include/lib/Service.php:183
+#, php-format
+msgid "SLA service module not found %s<br>"
+msgstr ""
+
+#: ../../enterprise/include/lib/Service.php:202
+msgid "Service module SLA does not match pointed one"
+msgstr ""
+
+#: ../../enterprise/include/lib/Service.php:208
+#, php-format
+msgid "SLA service value module not found %s<br>"
+msgstr ""
+
+#: ../../enterprise/include/lib/Service.php:221
+#, php-format
+msgid "Service agent not found %s<br>"
+msgstr ""
+
+#: ../../enterprise/include/lib/Service.php:232
+#, php-format
+msgid "Service children could not be fully retrieved: %s<br>"
+msgstr ""
+
+#: ../../enterprise/include/lib/Service.php:313
+msgid ""
+" Cannot switch from SMART to MANUAL if there are dynamic elements attached "
+"to the service. Please erase dynamic elements before change to MANUAL"
+msgstr ""
+
+#: ../../enterprise/include/lib/Service.php:771
+#, php-format
+msgid "Failed to update CPS for moduleValue for service %s: "
+msgstr ""
+
+#: ../../enterprise/include/lib/Service.php:1384
+msgid "Error: id agent must be defined."
+msgstr ""
+
+#: ../../enterprise/include/lib/Service.php:1460
+msgid " error: Target agent does not exist."
+msgstr ""
+
+#: ../../enterprise/include/lib/Policy.php:281
+#, php-format
+msgid "Invalid operation %s"
+msgstr ""
+
+#: ../../enterprise/include/lib/Policy.php:1168
+#, php-format
+msgid "Policy already defined: \"%s\""
+msgstr ""
+
+#: ../../enterprise/include/lib/ClusterViewer/ClusterWizard.php:182
+msgid "Cluster already defined, please use another name."
+msgstr ""
+
+#: ../../enterprise/include/lib/ClusterViewer/ClusterWizard.php:779
+msgid "Cluster name"
+msgstr ""
+
+#: ../../enterprise/include/lib/ClusterViewer/ClusterWizard.php:780
+msgid ""
+"An agent with the same name of the cluster will be created, as well a "
+"special service with the same name"
+msgstr ""
+
+#: ../../enterprise/include/lib/ClusterViewer/ClusterWizard.php:794
+msgid "Cluster type"
+msgstr ""
+
+#: ../../enterprise/include/lib/ClusterViewer/ClusterWizard.php:795
+msgid ""
+"AA is a cluster where all members are working. In AP cluster only master "
+"member is working"
+msgstr ""
+
+#: ../../enterprise/include/lib/ClusterViewer/ClusterWizard.php:803
+msgid "Active - Active"
+msgstr ""
+
+#: ../../enterprise/include/lib/ClusterViewer/ClusterWizard.php:804
+msgid "Active - Pasive"
+msgstr ""
+
+#: ../../enterprise/include/lib/ClusterViewer/ClusterWizard.php:824
+msgid "Target cluster agent will be stored under this group"
+msgstr ""
+
+#: ../../enterprise/include/lib/ClusterViewer/ClusterWizard.php:841
+msgid ""
+"You must select a Prediction Server to perform all cluster status "
+"calculations"
+msgstr ""
+
+#: ../../enterprise/include/lib/ClusterViewer/ClusterWizard.php:1016
+msgid "critical if"
+msgstr ""
+
+#: ../../enterprise/include/lib/ClusterViewer/ClusterWizard.php:1025
+#: ../../enterprise/include/lib/ClusterViewer/ClusterWizard.php:1048
+#, php-format
+msgid "% of balanced modules are down (equal or greater)."
+msgstr ""
+
+#: ../../enterprise/include/lib/ClusterViewer/ClusterWizard.php:1063
+msgid "Please, set threholds for all active-active modules"
+msgstr ""
+
+#: ../../enterprise/include/lib/ClusterViewer/ClusterWizard.php:1167
+msgid "Please, check all active-passive modules critical for this cluster"
+msgstr ""
+
+#: ../../enterprise/include/lib/ClusterViewer/ClusterWizard.php:1169
+msgid ""
+"If a critical balanced module is going to critical status, then cluster will "
+"be critical."
+msgstr ""
+
+#: ../../enterprise/include/lib/ClusterViewer/ClusterManager.php:224
+msgid "Cluster not found: "
+msgstr ""
+
+#: ../../enterprise/include/lib/ClusterViewer/ClusterManager.php:233
+msgid "Cluster agent not found: "
+msgstr ""
+
+#: ../../enterprise/include/lib/ClusterViewer/ClusterManager.php:270
+#, php-format
+msgid "Error while deleting, reason: %s"
+msgstr ""
+
+#: ../../enterprise/include/lib/ClusterViewer/ClusterManager.php:278
+msgid "Cluster successfully deleted."
+msgstr ""
+
+#: ../../enterprise/include/lib/ClusterViewer/ClusterManager.php:304
+#, php-format
+msgid "Error while forcing, reason: %s"
+msgstr ""
+
+#: ../../enterprise/include/lib/ClusterViewer/ClusterManager.php:312
+msgid "Cluster successfully forced."
+msgstr ""
+
+#: ../../enterprise/include/lib/ClusterViewer/ClusterManager.php:568
+msgid "Not set"
+msgstr ""
+
+#: ../../enterprise/include/lib/ClusterViewer/ClusterManager.php:578
+msgid "Active-Active"
+msgstr ""
+
+#: ../../enterprise/include/lib/ClusterViewer/ClusterManager.php:580
+msgid "Active-Passive"
+msgstr ""
+
+#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:171
+msgid "Activating node"
+msgstr ""
+
+#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:205
+#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:361
+#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:673
+#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:800
+#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1071
+#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1165
+#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1517
+#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1814
+#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2183
+#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3107
+#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3388
+#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3542
+#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3617
+#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3922
+#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:4147
+msgid "Connect node"
+msgstr ""
+
+#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:580
+msgid "Create table tmerge_error"
+msgstr ""
+
+#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:606
+msgid "Create table tmerge_steps"
+msgstr ""
+
+#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:631
+msgid "Create table tmerge_queries"
+msgstr ""
+
+#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:772
+#, php-format
+msgid "%s console"
+msgstr ""
+
+#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:777
+msgid "Check cron task"
+msgstr ""
+
+#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:778
+msgid "Please login into this node before using this feature"
+msgstr ""
+
+#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:860
+msgid "memory_limit current value"
+msgstr ""
+
+#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:867
+msgid ""
+"Check current packages, all nodes and metaconsole, are not in the same "
+"version"
+msgstr ""
+
+#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:879
+msgid "Check Minor release, All nodes and metaconsole, do not have the same mr"
+msgstr ""
+
+#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:891
+msgid "Max size collection, all nodes and metaconsole, are not equal"
+msgstr ""
+
+#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:916
+#, php-format
+msgid ""
+"Post max size, nodes cannot be smaller than the size of the metaconsole %s"
+msgstr ""
+
+#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:931
+#, php-format
+msgid ""
+"Upload max file size, nodes cannot be smaller than the size of the "
+"metaconsole %s"
+msgstr ""
+
+#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:993
+#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1009
+msgid "Problems with the backup directory"
+msgstr ""
+
+#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:994
+msgid "Cannot create \"merge_backups\" folder in attachment directory"
+msgstr ""
+
+#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1010
+msgid "The \"merge_backpus\" directory does not have the correct permissions"
+msgstr ""
+
+#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1020
+msgid "Extension ZIP"
+msgstr ""
+
+#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1021
+msgid "The ZIP extension is not loaded, please install this dependency"
+msgstr ""
+
+#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1122
+msgid "Inserts backups, disable foreings keys, exceptions in tmerge_queries"
+msgstr ""
+
+#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1148
+msgid ""
+"Resets foreing keys and exceptions and ends the merge preparation process"
+msgstr ""
+
+#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1195
+msgid "Enable exceptions in tmerge_queries"
+msgstr ""
+
+#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1219
+msgid "Enable foreing keys in tmerge_queries"
+msgstr ""
+
+#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1498
+#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1783
+msgid "Preparation of all nodes for the table merge process"
+msgstr ""
+
+#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1574
+msgid "This table does not have the id"
+msgstr ""
+
+#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1575
+msgid "Prepare merge request"
+msgstr ""
+
+#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1901
+msgid "Inserts truncate, autoincrement and inserts in tmerge_queries"
+msgstr ""
+
+#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2071
+msgid "Inserts updates in tmerge_queries"
+msgstr ""
+
+#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2108
+msgid "Merging collections files"
+msgstr ""
+
+#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2164
+#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2310
+#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2481
+#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3094
+#, php-format
+msgid "Api call: %s"
+msgstr ""
+
+#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2222
+#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2223
+msgid "Problems while backing up collections from: "
+msgstr ""
+
+#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2240
+#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2244
+#, php-format
+msgid "Problems downloading collections from %s"
+msgstr ""
+
+#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2256
+#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2260
+#, php-format
+msgid "Problems unzipping collection file from %s"
+msgstr ""
+
+#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2539
+msgid "Start phase merge"
+msgstr ""
+
+#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2551
+msgid "Create backups"
+msgstr ""
+
+#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2619
+#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2620
+msgid "Problems creating the backup conf agents"
+msgstr ""
+
+#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2630
+#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2868
+#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3238
+msgid "Class agent"
+msgstr ""
+
+#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2654
+#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2666
+msgid "Disable_foreing"
+msgstr ""
+
+#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2678
+msgid "Truncate table"
+msgstr ""
+
+#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2696
+msgid "Autoincrement"
+msgstr ""
+
+#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2708
+msgid "Inserts"
+msgstr ""
+
+#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2726
+msgid "Disabling constraints"
+msgstr ""
+
+#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2744
+msgid "Updates"
+msgstr ""
+
+#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2767
+msgid "Restoring constraints"
+msgstr ""
+
+#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2785
+msgid "Enable exceptions"
+msgstr ""
+
+#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2803
+msgid "Enable foreings keys"
+msgstr ""
+
+#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2820
+#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2821
+msgid "Update conf agent policies"
+msgstr ""
+
+#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2857
+#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2858
+msgid "Error updating agent conf"
+msgstr ""
+
+#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2879
+msgid "Synchronizing collections"
+msgstr ""
+
+#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2891
+#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2892
+msgid "Error synchronizing collections"
+msgstr ""
+
+#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2929
+#: ../../enterprise/include/lib/Metaconsole/Node.php:1765
+msgid "Final step"
+msgstr ""
+
+#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2930
+#: ../../enterprise/include/lib/Metaconsole/Node.php:1766
+msgid "Database merged"
+msgstr ""
+
+#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2988
+msgid "Problems unzipping collections at: "
+msgstr ""
+
+#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2989
+#, php-format
+msgid "File is not a valid zip file \"%s\""
+msgstr ""
+
+#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3147
+msgid "Restoring database backup"
+msgstr ""
+
+#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3173
+#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:4419
+msgid "Problems creating the backup"
+msgstr ""
+
+#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3186
+msgid "Restore backups conf agents"
+msgstr ""
+
+#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3223
+msgid "Problems restoring the backup conf agents"
+msgstr ""
+
+#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3225
+#, php-format
+msgid "Agent \"%s\" with md5 file \"%s\""
+msgstr ""
+
+#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3251
+msgid "Restore collections"
+msgstr ""
+
+#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3266
+#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3267
+msgid "Error Synch collections"
+msgstr ""
+
+#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3484
+#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3724
+msgid "Insert info steps"
+msgstr ""
+
+#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3649
+msgid "Node not ready"
+msgstr ""
+
+#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3650
+msgid "Pending to be unified"
+msgstr ""
+
+#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3889
+#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3894
+#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3946
+#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3951
+msgid "Initialize"
+msgstr ""
+
+#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:4093
+msgid "Backup"
+msgstr ""
+
+#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:4124
+msgid "Applying"
+msgstr ""
+
+#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:4350
+msgid "Error updating events"
+msgstr ""
+
+#: ../../enterprise/include/lib/Metaconsole/Node.php:145
+msgid "auth error."
+msgstr ""
+
+#: ../../enterprise/include/lib/Metaconsole/Node.php:149
+msgid "connection error."
+msgstr ""
+
+#: ../../enterprise/include/lib/Metaconsole/Node.php:153
+msgid "could not resolve the host."
+msgstr ""
+
+#: ../../enterprise/include/lib/Metaconsole/Node.php:157
+#: ../../enterprise/include/lib/Metaconsole/Node.php:206
+#: ../../enterprise/include/lib/Metaconsole/Node.php:253
+#: ../../enterprise/include/lib/Metaconsole/Node.php:509
+msgid "unknown error."
+msgstr ""
+
+#: ../../enterprise/include/lib/Metaconsole/Node.php:194
+msgid "missing credentials."
+msgstr ""
+
+#: ../../enterprise/include/lib/Metaconsole/Node.php:198
+msgid "cannot connect to host."
+msgstr ""
+
+#: ../../enterprise/include/lib/Metaconsole/Node.php:202
+msgid "database does not exist."
+msgstr ""
+
+#: ../../enterprise/include/lib/Metaconsole/Node.php:245
+msgid "failed to connect to node database."
+msgstr ""
+
+#: ../../enterprise/include/lib/Metaconsole/Node.php:249
+msgid "MR version mistmatch."
+msgstr ""
+
+#: ../../enterprise/include/lib/Metaconsole/Node.php:288
+#, php-format
+msgid "last event replication: %s"
+msgstr ""
+
+#: ../../enterprise/include/lib/Metaconsole/Node.php:294
+msgid "server connection failed"
+msgstr ""
+
+#: ../../enterprise/include/lib/Metaconsole/Node.php:298
+#: ../../enterprise/include/lib/Metaconsole/Node.php:344
+#: ../../enterprise/include/lib/Metaconsole/Node.php:405
+msgid "unknown error"
+msgstr ""
+
+#: ../../enterprise/include/lib/Metaconsole/Node.php:310
+msgid "Last event replication"
+msgstr ""
+
+#: ../../enterprise/include/lib/Metaconsole/Node.php:340
+msgid "agent cache failed"
+msgstr ""
+
+#: ../../enterprise/include/lib/Metaconsole/Node.php:393
+msgid "node is not recognized as metaconsole node."
+msgstr ""
+
+#: ../../enterprise/include/lib/Metaconsole/Node.php:397
+msgid "node license missmatch."
+msgstr ""
+
+#: ../../enterprise/include/lib/Metaconsole/Node.php:401
+msgid "cannot connect to node"
+msgstr ""
+
+#: ../../enterprise/include/lib/Metaconsole/Node.php:433
+msgid "Database is up to date with this Metaconsole"
+msgstr ""
+
+#: ../../enterprise/include/lib/Metaconsole/Node.php:443
+msgid "Node not found"
+msgstr ""
+
+#: ../../enterprise/include/lib/Metaconsole/Node.php:448
+#, php-format
+msgid ""
+"There are %d queries pending to be applied, click in the eye to see results"
+msgstr ""
+
+#: ../../enterprise/include/lib/Metaconsole/Node.php:457
+msgid "Database synchronization state and pending tasks"
+msgstr ""
+
+#: ../../enterprise/include/lib/Metaconsole/Node.php:592
+msgid "Operation and table"
+msgstr ""
+
+#: ../../enterprise/include/lib/Metaconsole/Node.php:707
+#, php-format
+msgid ""
+"Failed synchronizing %s, please check node PHP configuration issues and "
+"collection max sizes"
+msgstr ""
+
+#: ../../enterprise/include/lib/Metaconsole/Node.php:1232
+msgid ""
+"The elimination of this node will lead to the suppression of its agents from "
+"metaconsole and all the configuration assigned to them. "
+msgstr ""
+
+#: ../../enterprise/include/lib/Metaconsole/Node.php:1236
+msgid "The rules for this node may stop working. "
+msgstr ""
+
+#: ../../enterprise/include/lib/Metaconsole/Node.php:1240
+msgid ""
+"The deleted node will lose its license, and you must license it manually "
+"again. "
+msgstr ""
+
+#: ../../enterprise/include/lib/Metaconsole/Node.php:1747
+#, php-format
+msgid "Failed to overwrite node data: %s"
+msgstr ""
+
+#: ../../enterprise/include/lib/AlertCorrelation.class.php:798
+#: ../../enterprise/include/lib/AlertCorrelation.class.php:812
+msgid "There was a problem creating Action"
+msgstr ""
+
+#: ../../enterprise/include/lib/AlertCorrelation.class.php:849
+#: ../../enterprise/include/lib/AlertCorrelation.class.php:862
+msgid "There was a problem updating Action"
+msgstr ""
+
+#: ../../enterprise/include/lib/AlertCorrelation.class.php:898
+#: ../../enterprise/include/lib/AlertCorrelation.class.php:912
+msgid "There was a problem deleting Action"
+msgstr ""
+
+#: ../../enterprise/include/lib/AlertCorrelation.class.php:953
+msgid "There was a problem standby alert"
+msgstr ""
+
+#: ../../enterprise/include/lib/AlertCorrelation.class.php:962
+msgid "There was a problem standby off alert"
+msgstr ""
+
+#: ../../enterprise/include/lib/AlertCorrelation.class.php:1005
+msgid "There was a problem enabled alert"
+msgstr ""
+
+#: ../../enterprise/include/lib/AlertCorrelation.class.php:1015
+msgid "There was a problem disabled alert"
+msgstr ""
+
+#: ../../enterprise/include/lib/AlertCorrelation.class.php:1071
+msgid "Event group Recursive"
+msgstr ""
+
+#: ../../enterprise/include/lib/AlertCorrelation.class.php:1089
+msgid "Time window"
+msgstr ""
+
+#: ../../enterprise/include/lib/AlertCorrelation.class.php:1623
+msgid "Failed to cleanup old rules."
+msgstr ""
+
+#: ../../enterprise/include/lib/AlertCorrelation.class.php:1631
+#, php-format
+msgid "Failed SQL: %s"
+msgstr ""
+
+#: ../../enterprise/include/lib/AlertCorrelation.class.php:1636
+#, php-format
+msgid "Failed to apply rule: %s."
+msgstr ""
+
+#: ../../enterprise/include/lib/AlertCorrelation.class.php:1784
+msgid "any"
+msgstr ""
+
+#: ../../enterprise/include/lib/NetworkManager/Template.php:192
+msgid "Error linking script: "
+msgstr ""
+
+#: ../../enterprise/include/lib/NetworkManager/NetworkAgent.php:197
+msgid "No template assigned"
+msgstr ""
+
+#: ../../enterprise/include/lib/NetworkManager/NetworkAgent.php:227
+msgid "NCM Agent without template assigned."
+msgstr ""
+
+#: ../../enterprise/include/lib/NetworkManager/NetworkAgent.php:233
+msgid "Current selected template does not match vendor configured."
+msgstr ""
+
+#: ../../enterprise/include/lib/NetworkManager/NetworkAgent.php:240
+msgid "Current selected template does not match model configured."
+msgstr ""
+
+#: ../../enterprise/include/lib/NetworkManager/NetworkAgent.php:549
+#: ../../enterprise/include/lib/NetworkManager/NetworkAgent.php:579
+#, php-format
+msgid "No %s script available for this agent, check template %s"
+msgstr ""
+
+#: ../../enterprise/include/lib/Policy/Inventory.php:156
+#, php-format
+msgid "inventory module already registered: \"%d\""
+msgstr ""
+
+#: ../../enterprise/include/lib/Policy/Inventory.php:181
+#, php-format
+msgid "Failed to update, already exists: \"%d\""
+msgstr ""
+
+#: ../../enterprise/include/lib/Policy/Queue.php:378
+#, php-format
+msgid "Already queued in %s"
+msgstr ""
+
+#: ../../enterprise/include/lib/Policy/Module.php:227
+#, php-format
+msgid "Failed to update: \"%s\""
+msgstr ""
+
+#: ../../enterprise/include/lib/ServiceElement.php:611
+#, php-format
+msgid "This filters will cause slowdown on server (%s ms)"
+msgstr ""
+
+#: ../../enterprise/include/lib/ServiceElement.php:625
+#, php-format
+msgid "Regular expression is not valid: %s."
+msgstr ""
+
+#: ../../enterprise/include/lib/ServiceElement.php:864
+#, php-format
+msgid " error while decoding rules: %s"
+msgstr ""
+
+#: ../../enterprise/include/lib/ServiceElement.php:1271
+#, php-format
+msgid " error: Failed to delete element: %s"
+msgstr ""
+
+#: ../../enterprise/include/lib/Core/SSH.php:163
+msgid "php-ssh2 not available"
+msgstr ""
+
+#: ../../enterprise/include/lib/Core/SSH.php:184
+msgid "Failed to connect"
+msgstr ""
+
+#: ../../enterprise/include/lib/Core/SSH.php:239
+#, php-format
+msgid "Unable to open public key file %s"
+msgstr ""
+
+#: ../../enterprise/include/lib/Core/SSH.php:257
+msgid "Failed to login to target"
+msgstr ""
+
+#: ../../enterprise/include/lib/Agent.php:99
+msgid " error, invalid agent."
+msgstr ""
+
+#: ../../enterprise/include/lib/Agent.php:663
+#, php-format
+msgid "Log module \"%s\" does not exist"
+msgstr ""
+
+#: ../../enterprise/include/lib/Agent.php:685
+#, php-format
+msgid "Plugin \"%s\" does not exist"
+msgstr ""
+
+#: ../../enterprise/include/lib/Agent.php:817
+#, php-format
+msgid "Log module \"%s\" does not exist, %s skipped"
+msgstr ""
+
+#: ../../enterprise/include/lib/Agent.php:852
+#, php-format
+msgid "Plugin \"%s\" does not exist, %s skipped"
+msgstr ""
+
+#: ../../enterprise/include/lib/Agent.php:923
+#, php-format
+msgid "Log module %s already defined"
+msgstr ""
+
+#: ../../enterprise/include/lib/Agent.php:940
+#, php-format
+msgid "Invalid module type %s"
+msgstr ""
+
+#: ../../enterprise/include/lib/Agent.php:970
+#, php-format
+msgid "Plugin %s already defined"
+msgstr ""
+
+#: ../../enterprise/include/lib/Agent.php:984
+msgid "Invalid plugin definition"
+msgstr ""
+
+#: ../../enterprise/include/lib/NetworkManager.php:83
+msgid "Retrieve config"
+msgstr ""
+
+#: ../../enterprise/include/lib/NetworkManager.php:84
+msgid "Restore backed up config"
+msgstr ""
+
+#: ../../enterprise/include/lib/NetworkManager.php:86
+msgid "Send firmware"
+msgstr ""
+
+#: ../../enterprise/include/lib/NetworkManager.php:88
+#: ../../godmode/setup/setup_general.php:408
+msgid "On demand"
+msgstr ""
+
+#: ../../enterprise/include/lib/NetworkManager.php:93
+msgid "Executing test"
+msgstr ""
+
+#: ../../enterprise/include/lib/NetworkManager.php:94
+msgid "Retrieving config"
+msgstr ""
+
+#: ../../enterprise/include/lib/NetworkManager.php:95
+msgid "Restoring backup"
+msgstr ""
+
+#: ../../enterprise/include/lib/NetworkManager.php:96
+msgid "Retrieving firmware version"
+msgstr ""
+
+#: ../../enterprise/include/lib/NetworkManager.php:97
+msgid "Sending firmware update"
+msgstr ""
+
+#: ../../enterprise/include/lib/NetworkManager.php:98
+msgid "Executing custom script"
+msgstr ""
+
+#: ../../enterprise/include/lib/NetworkManager.php:99
+msgid "Executing on demand script"
+msgstr ""
+
+#: ../../enterprise/include/lib/NetworkManager.php:186
+msgid "Montly"
+msgstr ""
+
+#: ../../enterprise/include/functions_services.php:108
+msgid "There is no information about"
+msgstr ""
+
+#: ../../enterprise/include/functions_services.php:113
+msgid "Service does not exist."
+msgstr ""
+
+#: ../../enterprise/include/functions_services.php:125
+msgid "module that stores the service"
+msgstr ""
+
+#: ../../enterprise/include/functions_services.php:137
+msgid "module that stores SLA service"
+msgstr ""
+
+#: ../../enterprise/include/functions_services.php:150
+msgid "agent that stores the service"
+msgstr ""
+
+#: ../../enterprise/include/functions_services.php:163
+msgid "agent that stores SLA service"
+msgstr ""
+
+#: ../../enterprise/include/functions_services.php:184
+msgid "alert critical SLA service"
+msgstr ""
+
+#: ../../enterprise/include/functions_services.php:205
+msgid "alert warning service"
+msgstr ""
+
+#: ../../enterprise/include/functions_services.php:226
+msgid "alert critical service"
+msgstr ""
+
+#: ../../enterprise/include/functions_services.php:247
+msgid "alert unknown service"
+msgstr ""
+
+#: ../../enterprise/include/functions_services.php:528
+#, php-format
+msgid "Module automatic create for the service %s"
+msgstr ""
+
+#: ../../enterprise/include/functions_services.php:728
+#: ../../enterprise/godmode/services/services.service.php:279
+msgid "Error updating service: "
+msgstr ""
+
+#: ../../enterprise/include/functions_services.php:1368
+#: ../../enterprise/include/functions_services.php:1370
+#: ../../enterprise/include/functions_services.php:1404
+#: ../../enterprise/include/functions_services.php:1405
+#: ../../enterprise/include/functions_services.php:1407
+#: ../../enterprise/include/functions_services.php:1458
+#: ../../enterprise/include/functions_services.php:1460
+#: ../../enterprise/include/functions_reporting.php:5797
+msgid "Nonexistent"
+msgstr ""
+
+#: ../../enterprise/include/functions_services.php:1432
+msgid "Normal (Alert)"
+msgstr ""
+
+#: ../../enterprise/include/functions_services.php:1436
+msgid "Critical (Alert)"
+msgstr ""
+
+#: ../../enterprise/include/functions_services.php:1444
+msgid "Warning (Alert)"
+msgstr ""
+
+#: ../../enterprise/include/functions_services.php:1582
+msgid "There are no service elements defined"
+msgstr ""
+
+#: ../../enterprise/include/functions_services.php:1606
+msgid "Weight Critical"
+msgstr ""
+
+#: ../../enterprise/include/functions_services.php:1607
+msgid "Weight Warning"
+msgstr ""
+
+#: ../../enterprise/include/functions_services.php:1608
+msgid "Weight Unknown"
+msgstr ""
+
+#: ../../enterprise/include/functions_services.php:1609
+msgid "Weight Ok"
+msgstr ""
+
+#: ../../enterprise/include/functions_services.php:1672
+#: ../../enterprise/include/functions_services.php:1717
+#: ../../enterprise/include/functions_services.php:1785
+msgid "Nonexistent. This element should be deleted"
+msgstr ""
+
+#: ../../enterprise/include/functions_services.php:1700
+#: ../../enterprise/include/functions_services.php:1767
+#: ../../enterprise/include/functions_services.php:1813
+msgid "This element does not affect service weigth because is disabled."
+msgstr ""
+
+#: ../../enterprise/include/functions_services.php:1828
+#, php-format
+msgid "Dynamic element (%d) '%s' does not match any target"
+msgstr ""
+
+#: ../../enterprise/include/functions_services.php:1837
+#, php-format
+msgid "Dynamic element (%d) '%s' causes an error: %s"
+msgstr ""
+
+#: ../../enterprise/include/functions_services.php:1849
+msgid "Dynamic element"
+msgstr ""
+
+#: ../../enterprise/include/functions_services.php:1855
+#, php-format
+msgid "agents like \"%s\""
+msgstr ""
+
+#: ../../enterprise/include/functions_services.php:1860
+#, php-format
+msgid "modules like \"%s\""
+msgstr ""
+
+#: ../../enterprise/include/functions_services.php:1989
+msgid "NOT INITIALIZED"
+msgstr ""
+
+#: ../../enterprise/include/functions_services.php:2015
+#: ../../enterprise/godmode/services/services.elements.php:806
+msgid "Edit service elements"
+msgstr ""
+
+#: ../../enterprise/include/functions_services.php:2023
+msgid "Delete service element"
+msgstr ""
+
+#: ../../enterprise/include/functions_services.php:2082
+msgid "FAIL"
+msgstr ""
+
+#: ../../enterprise/include/auth/saml.php:119
+#, php-format
+msgid "Pandora FMS SAML authentication error: %s"
+msgstr ""
+
+#: ../../enterprise/include/auth/saml.php:184
+msgid "Force log out"
+msgstr ""
+
+#: ../../enterprise/include/functions_events.php:219
+msgid "Id source events"
+msgstr ""
+
+#: ../../enterprise/include/functions_events.php:245
+#: ../../enterprise/include/functions_events.php:267
+msgid "More than 5 tags"
+msgstr ""
+
+#: ../../enterprise/include/functions_metaconsole.php:1408
+#: ../../enterprise/include/functions_metaconsole.php:1441
+#: ../../enterprise/include/functions_metaconsole.php:1474
+#: ../../enterprise/include/functions_metaconsole.php:1507
+#: ../../enterprise/include/functions_metaconsole.php:1540
+#: ../../enterprise/include/functions_metaconsole.php:1573
+#: ../../enterprise/include/functions_metaconsole.php:1604
+#: ../../enterprise/include/functions_metaconsole.php:1637
+#: ../../enterprise/meta/include/functions_wizard_meta.php:239
+#: ../../enterprise/meta/include/functions_wizard_meta.php:685
+#: ../../enterprise/godmode/setup/setup_log_collector.php:49
+#: ../../enterprise/godmode/modules/configure_local_component.php:503
+#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:183
+#: ../../godmode/agentes/module_manager_editor_web.php:172
+msgid "Check"
+msgstr ""
+
+#: ../../enterprise/include/functions_metaconsole.php:2943
+#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:163
+msgid "Target server ip address is set"
+msgstr ""
+
+#: ../../enterprise/include/functions_metaconsole.php:2950
+#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:159
+msgid "There are differences between MR versions"
+msgstr ""
+
+#: ../../enterprise/include/functions_metaconsole.php:2957
+msgid "Agent alerts action does not exist in target node"
+msgstr ""
+
+#: ../../enterprise/include/functions_metaconsole.php:2964
+msgid "Agent alerts template does not exist in target node"
+msgstr ""
+
+#: ../../enterprise/include/functions_metaconsole.php:2971
+msgid "Agent inventory does not exist in target node"
+msgstr ""
+
+#: ../../enterprise/include/functions_metaconsole.php:2978
+msgid "Exists agent conf please remove configuration file from target node."
+msgstr ""
+
+#: ../../enterprise/include/functions_metaconsole.php:2985
+msgid "Agent collections does not exist in target node"
+msgstr ""
+
+#: ../../enterprise/include/functions_metaconsole.php:2992
+msgid "Agent plugins does not exist in target node"
+msgstr ""
+
+#: ../../enterprise/include/functions_metaconsole.php:2999
+msgid ""
+"Agent policies definitions does not match  with defined ones in target node"
+msgstr ""
+
+#: ../../enterprise/include/functions_metaconsole.php:3006
+msgid "Agent group does not exist in target node"
+msgstr ""
+
+#: ../../enterprise/include/functions_metaconsole.php:3013
+msgid "Agent already exists in target node"
+msgstr ""
+
+#: ../../enterprise/include/functions_metaconsole.php:3037
+msgid "The agent: has not been added due to problems in the insertion"
+msgstr ""
+
+#: ../../enterprise/include/functions_metaconsole.php:3042
+msgid "The agent: has already been added to the migration queue"
+msgstr ""
+
+#: ../../enterprise/include/functions_metaconsole.php:3120
+msgid "Cannot "
+msgstr ""
+
+#: ../../enterprise/include/functions_login.php:22
+msgid "You must change password:"
+msgstr ""
+
+#: ../../enterprise/include/functions_login.php:38
+msgid "Password must be different from the 3 previous changes."
+msgstr ""
+
+#: ../../enterprise/include/functions_login.php:50
+msgid "Old pass: "
+msgstr ""
+
+#: ../../enterprise/include/functions_login.php:53
+msgid "New pass: "
+msgstr ""
+
+#: ../../enterprise/include/functions_login.php:57
+msgid "Confirm: "
+msgstr ""
+
+#: ../../enterprise/include/functions_login.php:63
+msgid "Change"
+msgstr ""
+
+#: ../../enterprise/include/functions_login.php:97
+msgid "Login blocked"
+msgstr ""
+
+#: ../../enterprise/include/functions_login.php:105
+msgid "User has been blocked. Try again in "
+msgstr ""
+
+#: ../../enterprise/include/functions_login.php:105
+msgid " minutes"
+msgstr ""
+
+#: ../../enterprise/include/functions_login.php:138
+msgid "Login successfully"
+msgstr ""
+
+#: ../../enterprise/include/functions_login.php:146
+msgid "User pass successfully updated"
+msgstr ""
+
+#: ../../enterprise/include/functions_login.php:252
+msgid "Password must be different from the "
+msgstr ""
+
+#: ../../enterprise/include/functions_login.php:252
+msgid " previous changes."
+msgstr ""
+
+#: ../../enterprise/include/functions_login.php:265
+msgid "Password must be different"
+msgstr ""
+
+#: ../../enterprise/include/functions_login.php:276
+msgid "Password too short"
+msgstr ""
+
+#: ../../enterprise/include/functions_login.php:288
+msgid "Password must contain numbers"
+msgstr ""
+
+#: ../../enterprise/include/functions_login.php:301
+msgid "Password must contain symbols"
+msgstr ""
+
+#: ../../enterprise/include/functions_login.php:324
+msgid "Invalid old password"
+msgstr ""
+
+#: ../../enterprise/include/functions_login.php:361
+msgid "Password confirm does not match"
+msgstr ""
+
+#: ../../enterprise/include/functions_login.php:368
+msgid "Password empty"
+msgstr ""
+
+#: ../../enterprise/include/functions_snmp.php:65
+msgid "Trap status agent recovered"
+msgstr ""
+
+#: ../../enterprise/include/functions_aws.php:381
+msgid "$"
+msgstr ""
+
+#: ../../enterprise/include/functions_aws.php:491
+msgid "Current deployments"
+msgstr ""
+
+#: ../../enterprise/include/functions_aws.php:525
+msgid "Cost analysis"
+msgstr ""
+
+#: ../../enterprise/include/functions_aws.php:528
+msgid "Current cost estimation"
+msgstr ""
+
+#: ../../enterprise/include/functions_aws.php:530
+msgid "Previous period cost"
+msgstr ""
+
+#: ../../enterprise/include/functions_aws.php:589
+msgid "Reservation status"
+msgstr ""
+
+#: ../../enterprise/include/functions_enterprise.php:460
+#: ../../enterprise/meta/include/functions_wizard_meta.php:613
+#: ../../enterprise/meta/include/functions_wizard_meta.php:670
+#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1066
+#: ../../godmode/massive/massive_edit_modules.php:1141
+#: ../../godmode/agentes/module_manager_editor_web.php:93
+msgid "Web checks"
+msgstr ""
+
+#: ../../enterprise/include/functions_enterprise.php:464
+msgid "Tree view by tags"
+msgstr ""
+
+#: ../../enterprise/include/functions_enterprise.php:494
+msgid ""
+"If the interval of days until events data purge is shorter than the events "
+"data history storage interval, data will be lost. It is recommended that the "
+"storage frequency is higher than the purge frequency."
+msgstr ""
+
+#: ../../enterprise/include/functions_enterprise.php:496
+msgid ""
+"Problems with event days purge and event days that pass data to history DB."
+msgstr ""
+
+#: ../../enterprise/include/functions_enterprise.php:507
+msgid ""
+"If days purge is less than history days pass to history db, you will have a "
+"problems and you lost data. Recommended that days purge will more taller "
+"than days to history DB"
+msgstr ""
+
+#: ../../enterprise/include/functions_enterprise.php:509
+msgid "Problems with days purge and days that pass data to history DB"
+msgstr ""
+
+#: ../../enterprise/include/functions_inventory.php:85
+#: ../../enterprise/include/functions_inventory.php:837
+msgid "No changes found"
+msgstr ""
+
+#: ../../enterprise/include/functions_inventory.php:184
+msgid "Get CSV file"
+msgstr ""
+
+#: ../../enterprise/include/functions_local_components.php:174
+#: ../../enterprise/meta/advanced/collections.data.php:117
+#: ../../enterprise/godmode/agentes/collections.data.php:217
+msgid "Empty name"
+msgstr ""
+
+#: ../../enterprise/include/functions_local_components.php:179
+msgid "Empty configuration"
+msgstr ""
+
+#: ../../enterprise/include/functions_local_components.php:184
+msgid "Empty OS"
+msgstr ""
+
+#: ../../enterprise/include/functions_log.php:279
+#: ../../enterprise/include/functions_log.php:282
+msgid "Lines"
+msgstr ""
+
+#: ../../enterprise/include/functions_HA_cluster.php:49
+msgid "Recover"
+msgstr ""
+
+#: ../../enterprise/include/functions_HA_cluster.php:52
+msgid "Promote"
+msgstr ""
+
+#: ../../enterprise/include/functions_HA_cluster.php:55
+msgid "Demote"
+msgstr ""
+
+#: ../../enterprise/include/functions_HA_cluster.php:67
+msgid "Resync"
+msgstr ""
+
+#: ../../enterprise/include/functions_HA_cluster.php:261
+msgid "Public Key Authentication Failed"
+msgstr ""
+
+#: ../../enterprise/include/functions_HA_cluster.php:268
+msgid "Connection failed"
+msgstr ""
+
+#: ../../enterprise/include/functions_HA_cluster.php:491
+msgid "Register"
+msgstr ""
+
+#: ../../enterprise/include/functions_HA_cluster.php:493
+msgid "Register new node"
+msgstr ""
+
+#: ../../enterprise/include/functions_reporting.php:71
+#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:198
+msgid "Wizard SLA"
+msgstr ""
+
+#: ../../enterprise/include/functions_reporting.php:82
+#: ../../enterprise/godmode/reporting/reporting_builder.global.php:74
+msgid "Global"
+msgstr ""
+
+#: ../../enterprise/include/functions_reporting.php:93
+msgid "Advance options"
+msgstr ""
+
+#: ../../enterprise/include/functions_reporting.php:117
+msgid "Templates list"
+msgstr ""
+
+#: ../../enterprise/include/functions_reporting.php:152
+msgid "Templates Wizard"
+msgstr ""
+
+#: ../../enterprise/include/functions_reporting.php:1232
+msgid "Availability item created from wizard."
+msgstr ""
+
+#: ../../enterprise/include/functions_reporting.php:1903
+#: ../../enterprise/include/functions_reporting.php:2959
+#: ../../enterprise/include/functions_reporting.php:3947
+msgid "Planned Downtimes"
+msgstr ""
+
+#: ../../enterprise/include/functions_reporting.php:1910
+msgid "Ignore time"
+msgstr ""
+
+#: ../../enterprise/include/functions_reporting.php:1930
+msgid "SLA Compliance per days"
+msgstr ""
+
+#: ../../enterprise/include/functions_reporting.php:2021
+msgid "Summary of SLA Failures"
+msgstr ""
+
+#: ../../enterprise/include/functions_reporting.php:2041
+#: ../../enterprise/include/functions_reporting.php:2042
+msgid "Out of SLA limits"
+msgstr ""
+
+#: ../../enterprise/include/functions_reporting.php:2047
+#: ../../enterprise/include/functions_reporting.php:2048
+msgid "IN of SLA limits"
+msgstr ""
+
+#: ../../enterprise/include/functions_reporting.php:2969
+#: ../../enterprise/include/functions_reporting.php:3210
+#: ../../enterprise/include/functions_reporting.php:3957
+msgid "Planned Downtime"
+msgstr ""
+
+#: ../../enterprise/include/functions_reporting.php:2999
+msgid "T. Total"
+msgstr ""
+
+#: ../../enterprise/include/functions_reporting.php:3000
+#: ../../enterprise/include/functions_reporting.php:3984
+msgid "T. OK"
+msgstr ""
+
+#: ../../enterprise/include/functions_reporting.php:3001
+#: ../../enterprise/include/functions_reporting.php:3985
+msgid "T. Error"
+msgstr ""
+
+#: ../../enterprise/include/functions_reporting.php:3002
+#: ../../enterprise/include/functions_reporting.php:3986
+msgid "T. Unknown"
+msgstr ""
+
+#: ../../enterprise/include/functions_reporting.php:3003
+#: ../../enterprise/include/functions_reporting.php:3987
+msgid "T. Not_init"
+msgstr ""
+
+#: ../../enterprise/include/functions_reporting.php:3004
+#: ../../enterprise/include/functions_reporting.php:3988
+msgid "T. Downtime"
+msgstr ""
+
+#: ../../enterprise/include/functions_reporting.php:3005
+#: ../../enterprise/include/functions_reporting.php:3989
+msgid "SLA %"
+msgstr ""
+
+#: ../../enterprise/include/functions_reporting.php:4211
+msgid "Ignore Planned Downtime"
+msgstr ""
+
+#: ../../enterprise/include/functions_reporting.php:4904
+msgid "Max/Min Critical"
+msgstr ""
+
+#: ../../enterprise/include/functions_reporting.php:4905
+msgid "Max/Min Warning"
+msgstr ""
+
+#: ../../enterprise/include/functions_reporting.php:4906
+msgid "Total checks ok/total"
+msgstr ""
+
+#: ../../enterprise/include/functions_reporting.php:4907
+msgid "% time ok"
+msgstr ""
+
+#: ../../enterprise/include/functions_reporting.php:4967
+msgid "Time Critical"
+msgstr ""
+
+#: ../../enterprise/include/functions_reporting.php:5062
+msgid "Checks Critical"
+msgstr ""
+
+#: ../../enterprise/include/functions_reporting.php:5582
+msgid "There are no SLAs defined."
+msgstr ""
+
+#: ../../enterprise/include/functions_reporting.php:6218
+msgid "Scheduled shutdow"
+msgstr ""
+
+#: ../../enterprise/include/functions_reporting.php:6584
+#: ../../enterprise/include/functions_reporting.php:7474
+#, php-format
+msgid "Graph agents(%s) - %s"
+msgstr ""
+
+#: ../../enterprise/include/functions_reporting.php:7382
+#, php-format
+msgid "Graph agent(%s) - %s"
+msgstr ""
+
+#: ../../enterprise/include/functions_reporting.php:7829
+msgid "There is not data for the selected conditions"
+msgstr ""
+
+#: ../../enterprise/include/functions_reporting.php:8021
+#: ../../enterprise/include/functions_reporting.php:8087
+msgid "Template editor"
+msgstr ""
+
+#: ../../enterprise/include/functions_reporting.php:8517
+msgid "Configuration changes"
+msgstr ""
+
+#: ../../enterprise/include/functions_reporting.php:8534
+msgid "No NCM capabilities detected"
+msgstr ""
+
+#: ../../enterprise/include/process_reset_pass.php:118
+#: ../../enterprise/meta/include/process_reset_pass.php:114
+msgid "Repeat password"
+msgstr ""
+
+#: ../../enterprise/include/process_reset_pass.php:124
+#: ../../enterprise/meta/include/process_reset_pass.php:120
+msgid "Change password"
+msgstr ""
+
+#: ../../enterprise/include/functions_visual_map.php:203
+#: ../../enterprise/include/functions_visual_map.php:268
+msgid "Crit:"
+msgstr ""
+
+#: ../../enterprise/include/functions_visual_map.php:207
+#: ../../enterprise/include/functions_visual_map.php:272
+msgid "Warn:"
+msgstr ""
+
+#: ../../enterprise/include/functions_visual_map.php:211
+#: ../../enterprise/include/functions_visual_map.php:276
+msgid "Ok:"
+msgstr ""
+
+#: ../../enterprise/include/functions_visual_map.php:215
+#: ../../enterprise/include/functions_visual_map.php:280
+#: ../../enterprise/meta/include/functions_autoprovision.php:765
+msgid "Value:"
+msgstr ""
+
+#: ../../enterprise/include/functions_visual_map.php:672
+msgid "None of the services was added"
+msgstr ""
+
+#: ../../enterprise/include/functions_visual_map.php:674
+#, php-format
+msgid "%d services couldn't be added"
+msgstr ""
+
+#: ../../enterprise/include/functions_visual_map.php:680
+msgid "There was an error retrieving the visual map information"
+msgstr ""
+
+#: ../../enterprise/include/functions_transactional.php:631
+msgid "Error in dependencies field"
+msgstr ""
+
+#: ../../enterprise/include/functions_transactional.php:640
+msgid "Error in enables field"
+msgstr ""
+
+#: ../../enterprise/include/functions_setup.php:44
+#: ../../enterprise/include/functions_setup.php:108
+#: ../../enterprise/godmode/menu.php:295 ../../godmode/setup/setup.php:317
+#: ../../godmode/extensions.php:140
+msgid "Enterprise"
+msgstr ""
+
+#: ../../enterprise/include/functions_setup.php:79
+#: ../../enterprise/include/functions_setup.php:125
+msgid "Log collector"
+msgstr ""
+
+#: ../../enterprise/include/functions_setup.php:151
+msgid "Metaconsole link status"
+msgstr ""
+
+#: ../../enterprise/include/functions_setup.php:183
+msgid "DB connection"
+msgstr ""
+
+#: ../../enterprise/include/functions_setup.php:192
+#: ../../enterprise/meta/advanced/metasetup.consoles.php:834
+msgid "Agent cache"
+msgstr ""
+
+#: ../../enterprise/include/functions_setup.php:201
+#: ../../enterprise/meta/advanced/policymanager.sync.php:328
+#: ../../enterprise/meta/advanced/metasetup.consoles.php:835
+#: ../../enterprise/godmode/servers/HA_cluster.php:166
+msgid "Sync"
+msgstr ""
+
+#: ../../enterprise/include/functions_setup.php:205
+msgid "This console is joining a metaconsole."
+msgstr ""
+
+#: ../../enterprise/include/functions_setup.php:213
+msgid "This console is not joining any metaconsole."
+msgstr ""
+
+#: ../../enterprise/include/functions_backup.php:162
+msgid "Command mysqldump not found."
+msgstr ""
+
+#: ../../enterprise/include/functions_backup.php:177
+msgid "The mysqldump execution goes wrong."
+msgstr ""
+
+#: ../../enterprise/include/functions_backup.php:190
+msgid ""
+"In order to make backups it is necessary to check if the configuration is "
+"correct."
+msgstr ""
+
+#: ../../enterprise/include/functions_backup.php:256
+msgid "No description"
+msgstr ""
+
+#: ../../enterprise/include/functions_backup.php:408
+msgid "Restoring a backup"
+msgstr ""
+
+#: ../../enterprise/include/functions_backup.php:410
+#, php-format
+msgid "Restoring a %s database backup must be done manually."
+msgstr ""
+
+#: ../../enterprise/include/functions_backup.php:412
+msgid ""
+"It's a complex operation that needs human intervation to avoid system "
+"failures and data loosing"
+msgstr ""
+
+#: ../../enterprise/include/functions_backup.php:414
+msgid "To restore the selected backup, please follow these steps"
+msgstr ""
+
+#: ../../enterprise/include/functions_backup.php:420
+msgid "Open a root shell in your system located at "
+msgstr ""
+
+#: ../../enterprise/include/functions_backup.php:424
+msgid "Connect to MySQL database using the following command"
+msgstr ""
+
+#: ../../enterprise/include/functions_backup.php:430
+msgid "Create a new database"
+msgstr ""
+
+#: ../../enterprise/include/functions_backup.php:454
+msgid "Restore the backup"
+msgstr ""
+
+#: ../../enterprise/include/functions_backup.php:469
+msgid "Modify console configuration to use this new database"
+msgstr ""
+
+#: ../../enterprise/include/functions_backup.php:470
+msgid "Open configuration file"
+msgstr ""
+
+#: ../../enterprise/include/functions_backup.php:473
+#: ../../enterprise/include/functions_backup.php:483
+msgid "Find"
+msgstr ""
+
+#: ../../enterprise/include/functions_backup.php:475
+#: ../../enterprise/include/functions_backup.php:485
+msgid "and replace with"
+msgstr ""
+
+#: ../../enterprise/include/functions_backup.php:480
+msgid "Modify servers configuration to use this new database"
+msgstr ""
+
+#: ../../enterprise/include/functions_backup.php:481
+msgid "Find servers configuration file and replace the following lines"
+msgstr ""
+
+#: ../../enterprise/include/functions_backup.php:490
+msgid "Restart the servers and login again into the console"
+msgstr ""
+
+#: ../../enterprise/include/functions_ipam.php:288
+msgid "Export to Excel"
+msgstr ""
+
+#: ../../enterprise/include/functions_ipam.php:395
+msgid "Assign next free IP"
+msgstr ""
+
+#: ../../enterprise/include/functions_ipam.php:413
+msgid "Next available IP"
+msgstr ""
+
+#: ../../enterprise/include/functions_ipam.php:1565
+msgid "Occupied"
+msgstr ""
+
+#: ../../enterprise/include/functions_ipam.php:1567
+#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:139
+msgid "Available"
+msgstr ""
+
+#: ../../enterprise/include/functions_ipam.php:1573
+msgid "Not managed"
+msgstr ""
+
+#: ../../enterprise/include/functions_ipam.php:1579
+msgid "Not Reserved"
+msgstr ""
+
+#: ../../enterprise/include/functions_ipam.php:1589
+msgid "Occupancy statistics"
+msgstr ""
+
+#: ../../enterprise/include/functions_ipam.php:1646
+msgid "DESC"
+msgstr ""
+
+#: ../../enterprise/include/functions_ipam.php:1647
+msgid "ASC"
+msgstr ""
+
+#: ../../enterprise/include/functions_ipam.php:1648
+msgid "A -> Z"
+msgstr ""
+
+#: ../../enterprise/include/functions_ipam.php:1649
+msgid "Z -> A"
+msgstr ""
+
+#: ../../enterprise/include/functions_ipam.php:1650
+#: ../../enterprise/include/functions_ipam.php:1651
+msgid "Last check"
+msgstr ""
+
+#: ../../enterprise/include/functions_ipam.php:1650
+msgid "Newer -> Older"
+msgstr ""
+
+#: ../../enterprise/include/functions_ipam.php:1651
+msgid "Older -> Newer"
+msgstr ""
+
+#: ../../enterprise/include/functions_ipam.php:1678
+msgid "Exact address match"
+msgstr ""
+
+#: ../../enterprise/include/functions_ipam.php:1682
+msgid "S.O"
+msgstr ""
+
+#: ../../enterprise/include/functions_ipam.php:1695
+msgid "Big"
+msgstr ""
+
+#: ../../enterprise/include/functions_ipam.php:1696
+msgid "Tiny"
+msgstr ""
+
+#: ../../enterprise/include/functions_ipam.php:1697
+msgid "Icons style"
+msgstr ""
+
+#: ../../enterprise/include/functions_ipam.php:1714
+msgid "Show not alive hosts"
+msgstr ""
+
+#: ../../enterprise/include/functions_ipam.php:1722
+msgid "Show only managed addresses"
+msgstr ""
+
+#: ../../enterprise/include/functions_ipam.php:1730
+msgid "Reserved addresses"
+msgstr ""
+
+#: ../../enterprise/include/functions_ipam.php:1735
+msgid "Unreserved"
+msgstr ""
+
+#: ../../enterprise/include/functions_ipam.php:1745
+msgid "Last Contact"
+msgstr ""
+
+#: ../../enterprise/include/functions_ipam.php:1788
+msgid "Filter options"
+msgstr ""
+
+#: ../../enterprise/include/functions_ipam.php:1979
+msgid "id Network"
+msgstr ""
+
+#: ../../enterprise/include/functions_ipam.php:1984
+msgid "ID recon task"
+msgstr ""
+
+#: ../../enterprise/include/functions_ipam.php:1985
+msgid "Scan Interval"
+msgstr ""
+
+#: ../../enterprise/include/functions_ipam.php:1986
+msgid "Users Operator"
+msgstr ""
+
+#: ../../enterprise/include/functions_ipam.php:1987
+msgid "Total Ips"
+msgstr ""
+
+#: ../../enterprise/include/functions_ipam.php:1988
+msgid "Last Update"
+msgstr ""
+
+#: ../../enterprise/include/functions_ipam.php:2041
+msgid "OS Name"
+msgstr ""
+
+#: ../../enterprise/include/functions_ipam.php:2045
+msgid "Last updated"
+msgstr ""
+
+#: ../../enterprise/include/functions_ipam.php:2046
+msgid "Last modified"
+msgstr ""
+
+#: ../../enterprise/include/functions_ipam.php:2047
+msgid "Dhcp Leased"
+msgstr ""
+
+#: ../../enterprise/include/functions_ipam.php:2048
+msgid "Dhcp Leased Mode"
+msgstr ""
+
+#: ../../enterprise/include/functions_ipam.php:2049
+msgid "Dhcp Leased Expiration"
+msgstr ""
+
+#: ../../enterprise/include/functions_ipam.php:2050
+msgid "Mac address"
+msgstr ""
+
+#: ../../enterprise/include/functions_reporting_pdf.php:1838
+msgid "Contents"
+msgstr ""
+
+#: ../../enterprise/include/functions_collection.php:39
+#, php-format
+msgid "Collection %d does not exist"
+msgstr ""
+
+#: ../../enterprise/include/functions_collection.php:48
+msgid "Collection dir does not exist."
+msgstr ""
+
+#: ../../enterprise/include/functions_collection.php:57
+#, php-format
+msgid "Failed to create collection path: %s"
+msgstr ""
+
+#: ../../enterprise/include/functions_collection.php:66
+msgid "Target collection path is not writable"
+msgstr ""
+
+#: ../../enterprise/include/functions_collection.php:80
+msgid "Failed to create zip file for collection"
+msgstr ""
+
+#: ../../enterprise/include/functions_collection.php:87
+#, php-format
+msgid "File of collection is bigger than the limit (%s bytes)"
+msgstr ""
+
+#: ../../enterprise/include/functions_servicemap.php:80
+msgid "Failed to retrieve service elements: "
+msgstr ""
+
+#: ../../enterprise/include/functions_hostdevices.php:45
+msgid "Remote commands enabled"
+msgstr ""
+
+#: ../../enterprise/include/functions_ui.php:79
+msgid "Select inventory module"
+msgstr ""
+
+#: ../../enterprise/include/functions_ui.php:92
+#: ../../enterprise/godmode/agentes/inventory_manager.php:222
+msgid "Target"
+msgstr ""
+
+#: ../../enterprise/include/functions_ui.php:96
+msgid "Use custom fields"
+msgstr ""
+
+#: ../../enterprise/include/functions_ui.php:179
+msgid "Field name"
+msgstr ""
+
+#: ../../enterprise/include/functions_ui.php:179
+msgid "It's a password"
+msgstr ""
+
+#: ../../enterprise/include/functions_ui.php:179
+msgid "Add field"
+msgstr ""
+
+#: ../../enterprise/include/functions_license.php:119
+msgid "Perpetual"
+msgstr ""
+
+#: ../../enterprise/include/functions_license.php:119
+msgid "Subscription"
+msgstr ""
+
+#: ../../enterprise/include/functions_license.php:120
+msgid "Expires"
+msgstr ""
+
+#: ../../enterprise/include/functions_policies.php:675
+#, php-format
+msgid "%s success"
+msgstr ""
+
+#: ../../enterprise/include/functions_policies.php:675
+#, php-format
+msgid "%s failed"
+msgstr ""
+
+#: ../../enterprise/include/functions_policies.php:680
+msgid "Policy cleaned from nodes: "
+msgstr ""
+
+#: ../../enterprise/include/functions_policies.php:934
+#, php-format
+msgid "Failed to connect to node %s"
+msgstr ""
+
+#: ../../enterprise/include/functions_policies.php:3504
+msgid "Policy linkation"
+msgstr ""
+
+#: ../../enterprise/include/functions_policies.php:3509
+msgid "Module linked"
+msgstr ""
+
+#: ../../enterprise/include/functions_policies.php:3514
+#: ../../enterprise/include/functions_policies.php:3534
+msgid "Unlink from policy"
+msgstr ""
+
+#: ../../enterprise/include/functions_policies.php:3519
+msgid "Module unlinked"
+msgstr ""
+
+#: ../../enterprise/include/functions_policies.php:3524
+#: ../../enterprise/include/functions_policies.php:3544
+msgid "Relink to policy"
+msgstr ""
+
+#: ../../enterprise/include/functions_policies.php:3529
+msgid "Module pending to link"
+msgstr ""
+
+#: ../../enterprise/include/functions_policies.php:3529
+#: ../../godmode/agentes/module_manager_editor.php:548
+msgid "Module will be linked in the next application"
+msgstr ""
+
+#: ../../enterprise/include/functions_policies.php:3539
+msgid "Module pending to unlink"
+msgstr ""
+
+#: ../../enterprise/include/functions_policies.php:3539
+#: ../../godmode/agentes/module_manager_editor.php:562
+msgid "Module will be unlinked in the next application"
+msgstr ""
+
+#: ../../enterprise/include/functions_policies.php:3709
+#: ../../enterprise/godmode/menu.php:108
+msgid "Manage policies"
+msgstr ""
+
+#: ../../enterprise/include/functions_policies.php:3730
+#: ../../enterprise/godmode/policies/policy.php:102
+#: ../../godmode/agentes/configurar_agente.php:526
+msgid "Agent wizard"
+msgstr ""
+
+#: ../../enterprise/include/functions_policies.php:3735
+#: ../../godmode/setup/snmp_wizard.php:31
+#: ../../godmode/agentes/configurar_agente.php:538
+#: ../../godmode/agentes/configurar_agente.php:759
+msgid "SNMP Wizard"
+msgstr ""
+
+#: ../../enterprise/include/functions_policies.php:3738
+#: ../../godmode/agentes/configurar_agente.php:548
+#: ../../godmode/agentes/configurar_agente.php:765
+msgid "SNMP Interfaces wizard"
+msgstr ""
+
+#: ../../enterprise/include/functions_policies.php:3741
+#: ../../godmode/agentes/configurar_agente.php:558
+#: ../../godmode/agentes/configurar_agente.php:771
+msgid "WMI Wizard"
+msgstr ""
+
+#: ../../enterprise/include/functions_policies.php:3753
+#: ../../enterprise/meta/include/functions_components_meta.php:113
+#: ../../enterprise/meta/include/functions_components_meta.php:160
+#: ../../enterprise/godmode/modules/manage_inventory_modules.php:45
+#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:37
+#: ../../enterprise/godmode/menu.php:90
+#: ../../enterprise/godmode/alerts/alert_inventory_builder.php:198
+#: ../../enterprise/godmode/policies/policy_inventory_modules.php:70
+#: ../../enterprise/godmode/policies/policy_inventory_modules.php:282
+msgid "Inventory modules"
+msgstr ""
+
+#: ../../enterprise/include/functions_policies.php:3769
+#: ../../enterprise/godmode/policies/policies.php:523
+#: ../../enterprise/godmode/policies/policy_external_alerts.php:52
+msgid "External alerts"
+msgstr ""
+
+#: ../../enterprise/include/functions_policies.php:3781
+#: ../../enterprise/godmode/policies/policy_linking.php:157
+#: ../../enterprise/godmode/policies/policies.php:501
+msgid "Linking"
+msgstr ""
+
+#: ../../enterprise/include/functions_policies.php:3811
+#: ../../enterprise/godmode/policies/policy.php:60
+#: ../../enterprise/godmode/policies/policies.php:527
+msgid "Queue"
+msgstr ""
+
+#: ../../enterprise/include/functions_policies.php:3830
+#: ../../enterprise/godmode/agentes/configurar_agente.php:112
+#: ../../enterprise/godmode/policies/policy.php:82
+#: ../../godmode/agentes/configurar_agente.php:717
+msgid "Agent plugins"
+msgstr ""
+
+#: ../../enterprise/include/functions_policies.php:4058
+msgid "Create a new policy map"
+msgstr ""
+
+#: ../../enterprise/include/functions_policies.php:4446
+#: ../../extensions/resource_registration.php:1098
+msgid "Error, please install the PHP libXML in the system."
+msgstr ""
+
+#: ../../enterprise/include/functions_policies.php:4458
+#, php-format
+msgid ""
+"This extension makes registration of policies enterprise. <br>You can get "
+"more policies in our <a href=\"%s\">Public Resource Library</a>"
+msgstr ""
+
+#: ../../enterprise/include/functions_policies.php:4465
+#: ../../extensions/resource_registration.php:1133
+msgid "Group filter: "
+msgstr ""
+
+#: ../../enterprise/include/functions_policies.php:4490
+#: ../../extensions/resource_registration.php:1150
+msgid ""
+"Error uploading resource. Check if the selected file is a valid resource "
+"template in .ptr format"
+msgstr ""
+
+#: ../../enterprise/include/functions_policies.php:4516
+msgid "Policy does not exist"
+msgstr ""
+
+#: ../../enterprise/include/functions_policies.php:4906
+msgid "This will not produce any action."
+msgstr ""
+
+#: ../../enterprise/include/functions_policies.php:4935
+#, php-format
+msgid "Error connecting with node %s."
+msgstr ""
+
+#: ../../enterprise/include/functions_policies.php:4942
+#, php-format
+msgid "This policy is being applied on node %s."
+msgstr ""
+
+#: ../../enterprise/include/functions_policies.php:4980
+msgid "Error syncronizing ."
+msgstr ""
+
+#: ../../enterprise/meta/screens/screens.php:37
+#: ../../enterprise/meta/general/main_menu.php:338
+#: ../../enterprise/meta/general/logon_ok.php:84
+#: ../../enterprise/meta/general/main_header.php:232
+msgid "Screens"
+msgstr ""
+
+#: ../../enterprise/meta/screens/screens.visualmap.php:71
+msgid "Create visualmap"
+msgstr ""
+
+#: ../../enterprise/meta/screens/screens.visualmap.php:297
+#: ../../godmode/reporting/visual_console_builder.php:844
+msgid "New visual console"
+msgstr ""
+
+#: ../../enterprise/meta/event/custom_events.php:50 ../../godmode/menu.php:264
+#: ../../godmode/events/events.php:68
+msgid "Event responses"
+msgstr ""
+
+#: ../../enterprise/meta/event/custom_events.php:98
+msgid "The user is not in neither group with EW profile"
+msgstr ""
+
+#: ../../enterprise/meta/event/custom_events.php:175
+#: ../../godmode/events/custom_events.php:129
+#: ../../godmode/agentes/status_monitor_custom_fields.php:164
+msgid "Fields available"
+msgstr ""
+
+#: ../../enterprise/meta/event/custom_events.php:177
+#: ../../godmode/events/custom_events.php:149
+#: ../../godmode/agentes/status_monitor_custom_fields.php:186
+msgid "Fields selected"
+msgstr ""
+
+#: ../../enterprise/meta/event/custom_events.php:187
+#: ../../godmode/events/custom_events.php:136
+#: ../../godmode/agentes/status_monitor_custom_fields.php:171
+msgid "Add fields to select"
+msgstr ""
+
+#: ../../enterprise/meta/event/custom_events.php:197
+#: ../../godmode/events/custom_events.php:144
+#: ../../godmode/agentes/status_monitor_custom_fields.php:180
+msgid "Delete fields to select"
+msgstr ""
+
+#: ../../enterprise/meta/event/custom_events.php:207
+#: ../../godmode/events/custom_events.php:74
+msgid "Show event fields"
+msgstr ""
+
+#: ../../enterprise/meta/event/custom_events.php:248
+#: ../../godmode/events/custom_events.php:203
+#: ../../godmode/agentes/status_monitor_custom_fields.php:240
+msgid ""
+"There must be at least one custom field. Timestamp will be set by default"
+msgstr ""
+
+#: ../../enterprise/meta/general/metaconsole_no_activated.php:24
+msgid ""
+"Metaconsole needs previous activation from regular console, please contact "
+"system administrator if you need assistance. <br>"
+msgstr ""
+
+#: ../../enterprise/meta/general/main_menu.php:200
+#: ../../enterprise/meta/general/main_header.php:109
+msgid "Groups view"
+msgstr ""
+
+#: ../../enterprise/meta/general/main_menu.php:212
+#: ../../enterprise/meta/general/main_header.php:121
+msgid "Monitors view"
+msgstr ""
+
+#: ../../enterprise/meta/general/main_menu.php:218
+#: ../../enterprise/meta/general/main_header.php:127
+msgid "Custom fields view"
+msgstr ""
+
+#: ../../enterprise/meta/general/main_menu.php:276
+#: ../../enterprise/meta/general/main_header.php:174
+msgid "Create new report"
+msgstr ""
+
+#: ../../enterprise/meta/general/main_menu.php:286
+#: ../../enterprise/meta/general/main_header.php:190
+msgid "Report templates"
+msgstr ""
+
+#: ../../enterprise/meta/general/main_menu.php:353
+#: ../../enterprise/meta/general/main_header.php:247
+#: ../../godmode/reporting/visual_console_favorite.php:118
+msgid "Favourite Visual Console"
+msgstr ""
+
+#: ../../enterprise/meta/general/main_menu.php:361
+#: ../../enterprise/meta/general/main_header.php:255
+msgid "Template Visual Console"
+msgstr ""
+
+#: ../../enterprise/meta/general/main_menu.php:368
+#: ../../enterprise/meta/general/main_header.php:262
+msgid "Wizard Visual Console"
+msgstr ""
+
+#: ../../enterprise/meta/general/main_menu.php:389
+#: ../../enterprise/meta/general/main_header.php:281
+msgid "Live view"
+msgstr ""
+
+#: ../../enterprise/meta/general/main_menu.php:407
+#: ../../enterprise/godmode/menu.php:257
+msgid "Alert correlation"
+msgstr ""
+
+#: ../../enterprise/meta/general/main_menu.php:427
+#: ../../enterprise/meta/general/main_menu.php:508
+msgid "Centralised management"
+msgstr ""
+
+#: ../../enterprise/meta/general/main_menu.php:434
+#: ../../enterprise/meta/general/main_menu.php:534
+#: ../../enterprise/meta/general/main_header.php:315
+#: ../../enterprise/meta/general/main_header.php:417
+msgid "Agent management"
+msgstr ""
+
+#: ../../enterprise/meta/general/main_menu.php:440
+#: ../../enterprise/meta/general/main_menu.php:540
+#: ../../enterprise/meta/general/main_header.php:327
+#: ../../enterprise/meta/general/main_header.php:423
+#: ../../enterprise/godmode/modules/local_components.php:157
+#: ../../enterprise/godmode/modules/manage_inventory_modules.php:45
+#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:37
+#: ../../godmode/modules/module_list.php:29
+#: ../../godmode/modules/manage_network_components.php:290
+#: ../../godmode/modules/manage_network_templates.php:39
+#: ../../godmode/modules/manage_network_templates_form.php:32
+#: ../../godmode/modules/manage_nc_groups.php:40
+msgid "Module management"
+msgstr ""
+
+#: ../../enterprise/meta/general/main_menu.php:446
+#: ../../enterprise/meta/general/main_menu.php:563
+#: ../../enterprise/meta/general/main_header.php:333
+#: ../../enterprise/meta/general/main_header.php:439
+msgid "Alert management"
+msgstr ""
+
+#: ../../enterprise/meta/general/main_menu.php:452
+#: ../../enterprise/meta/general/main_header.php:339
+msgid "Component management"
+msgstr ""
+
+#: ../../enterprise/meta/general/main_menu.php:464
+#: ../../enterprise/meta/general/main_menu.php:554
+#: ../../enterprise/meta/general/main_header.php:345
+msgid "Policy management"
+msgstr ""
+
+#: ../../enterprise/meta/general/main_menu.php:470
+#: ../../enterprise/meta/general/main_header.php:351
+msgid "Category management"
+msgstr ""
+
+#: ../../enterprise/meta/general/main_menu.php:476
+#: ../../enterprise/meta/general/main_menu.php:547
+#: ../../enterprise/meta/general/main_header.php:357
+#: ../../enterprise/meta/general/main_header.php:430
+msgid "Server management"
+msgstr ""
+
+#: ../../enterprise/meta/general/main_menu.php:482 ../../godmode/menu.php:183
+#: ../../godmode/massive/massive_operations.php:329
+msgid "Bulk operations"
+msgstr ""
+
+#: ../../enterprise/meta/general/main_menu.php:488
+msgid "Agent operations"
+msgstr ""
+
+#: ../../enterprise/meta/general/main_menu.php:496
+#: ../../enterprise/meta/general/main_header.php:363
+msgid "Command Center"
+msgstr ""
+
+#: ../../enterprise/meta/general/main_menu.php:584
+#: ../../enterprise/meta/general/main_header.php:369 ../../godmode/menu.php:371
+msgid "License"
+msgstr ""
+
+#: ../../enterprise/meta/general/main_menu.php:590
+#: ../../enterprise/meta/general/main_header.php:375
+msgid "Metasetup"
+msgstr ""
+
+#: ../../enterprise/meta/general/main_menu.php:626
+#: ../../enterprise/meta/general/main_header.php:458
+#: ../../godmode/extensions.php:28
+msgid "Extensions"
+msgstr ""
+
+#: ../../enterprise/meta/general/main_menu.php:667 ../../godmode/menu.php:388
+msgid "System audit log"
+msgstr ""
+
+#: ../../enterprise/meta/general/main_header.php:492
+msgid "Audit Logs"
+msgstr ""
+
+#: ../../enterprise/meta/general/footer.php:33
+#, php-format
+msgid "%s %s - Build %s - MR %s"
+msgstr ""
+
+#: ../../enterprise/meta/general/footer.php:38
+msgid "Page generated at"
+msgstr ""
+
+#: ../../enterprise/meta/general/login_page.php:58
+#: ../../enterprise/meta/include/reset_pass.php:41
+#: ../../enterprise/meta/include/process_reset_pass.php:41
+msgid "Go to Pandora FMS Support"
+msgstr ""
+
+#: ../../enterprise/meta/general/login_page.php:60
+#: ../../enterprise/meta/general/login_page.php:71
+#: ../../enterprise/meta/include/reset_pass.php:43
+#: ../../enterprise/meta/include/reset_pass.php:54
+#: ../../enterprise/meta/include/process_reset_pass.php:43
+#: ../../enterprise/meta/include/process_reset_pass.php:54
+msgid "Go to "
+msgstr ""
+
+#: ../../enterprise/meta/general/login_page.php:69
+#: ../../enterprise/meta/include/reset_pass.php:52
+#: ../../enterprise/meta/include/process_reset_pass.php:52
+msgid "Go to Pandora FMS Wiki"
+msgstr ""
+
+#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:92
+#: ../../godmode/alerts/alert_templates.php:61
+msgid "Everyday"
+msgstr ""
+
+#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:104
+#: ../../godmode/alerts/alert_templates.php:73
+msgid "Every"
+msgstr ""
+
+#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:115
+#: ../../godmode/alerts/alert_templates.php:84
+msgid "and"
+msgstr ""
+
+#: ../../enterprise/meta/include/ajax/wizard.ajax.php:56
+msgid "Agent succesfully deleted"
+msgstr ""
+
+#: ../../enterprise/meta/include/ajax/wizard.ajax.php:58
+msgid "Could not delete agent"
+msgstr ""
+
+#: ../../enterprise/meta/include/reset_pass.php:139
+#: ../../enterprise/meta/include/process_reset_pass.php:142
+#, php-format
+msgid "%s NEXT GENERATION"
+msgstr ""
+
+#: ../../enterprise/meta/include/functions_autoprovision.php:378
+msgid "Round Robin"
+msgstr ""
+
+#: ../../enterprise/meta/include/functions_autoprovision.php:383
+msgid "Less loaded"
+msgstr ""
+
+#: ../../enterprise/meta/include/functions_autoprovision.php:422
+msgid ""
+"It uses the Round-robin planning method to distribute, \n"
+"                in an equitable way and in a rational order, all the new "
+"Pandora software agents that reach the Metaconsole.\n"
+"                The distribution of the agents will be done in a circular "
+"way, assigning the corresponding server to each new agent.\n"
+"            "
+msgstr ""
+
+#: ../../enterprise/meta/include/functions_autoprovision.php:430
+msgid ""
+"The new agents will be dynamically assigned to those servers with less load."
+msgstr ""
+
+#: ../../enterprise/meta/include/functions_autoprovision.php:435
+msgid ""
+"In the customized classification, we will be able to define our own "
+"classification rules, \n"
+"                based on certain parameters retrieved from the information "
+"reported by the agent (name of the agent and its IP address).\n"
+"            "
+msgstr ""
+
+#: ../../enterprise/meta/include/functions_autoprovision.php:529
+msgid ""
+"There is no custom entries defined. Click on \"Create custom entry\" to add "
+"the first."
+msgstr ""
+
+#: ../../enterprise/meta/include/functions_autoprovision.php:534
+msgid "Create custom entry"
+msgstr ""
+
+#: ../../enterprise/meta/include/functions_autoprovision.php:561
+msgid "Provisioning configuration"
+msgstr ""
+
+#: ../../enterprise/meta/include/functions_autoprovision.php:566
+#: ../../enterprise/meta/advanced/collections.data.php:332
+#: ../../enterprise/godmode/agentes/collections.data.php:425
+#: ../../godmode/setup/os.builder.php:35
+#: ../../godmode/reporting/visual_console_builder.data.php:106
+msgid "Name:"
+msgstr ""
+
+#: ../../enterprise/meta/include/functions_autoprovision.php:572
+msgid "Configuration:"
+msgstr ""
+
+#: ../../enterprise/meta/include/functions_autoprovision.php:610
+msgid ""
+"There is no rules configured for this custom entry. Click on Add button to "
+"create the first."
+msgstr ""
+
+#: ../../enterprise/meta/include/functions_autoprovision.php:723
+msgid "There was an error when editing the rule."
+msgstr ""
+
+#: ../../enterprise/meta/include/functions_autoprovision.php:737
+msgid "Operation:"
+msgstr ""
+
+#: ../../enterprise/meta/include/functions_autoprovision.php:751
+msgid "Method:"
+msgstr ""
+
+#: ../../enterprise/meta/include/functions_autoprovision.php:816
+msgid "Move up"
+msgstr ""
+
+#: ../../enterprise/meta/include/functions_autoprovision.php:824
+msgid "Move down"
+msgstr ""
+
+#: ../../enterprise/meta/include/functions_relations.php:49
+msgid "Invalid file content"
+msgstr ""
+
+#: ../../enterprise/meta/include/functions_relations.php:54
+msgid "No relations found"
+msgstr ""
+
+#: ../../enterprise/meta/include/functions_relations.php:80
+#: ../../enterprise/meta/include/functions_relations.php:91
+#: ../../enterprise/meta/include/functions_relations.php:102
+#, php-format
+msgid "The relation type: %s to %s -> %s was not saved"
+msgstr ""
+
+#: ../../enterprise/meta/include/functions_relations.php:123
+#, php-format
+msgid "The relation %s -> %s was not saved"
+msgstr ""
+
+#: ../../enterprise/meta/include/functions_relations.php:133
+msgid "File imported successfully"
+msgstr ""
+
+#: ../../enterprise/meta/include/functions_relations.php:136
+msgid "Error inserting relations"
+msgstr ""
+
+#: ../../enterprise/meta/include/functions_relations.php:165
+msgid "Empty string"
+msgstr ""
+
+#: ../../enterprise/meta/include/functions_relations.php:170
+msgid "Empty custom node address"
+msgstr ""
+
+#: ../../enterprise/meta/include/functions_relations.php:208
+#, php-format
+msgid ""
+"The relation type: %s to %s -> %s was not saved. This relationship already "
+"exists in the database"
+msgstr ""
+
+#: ../../enterprise/meta/include/functions_relations.php:230
+#, php-format
+msgid "Error inserting the relation %s -> %s"
+msgstr ""
+
+#: ../../enterprise/meta/include/functions_relations.php:238
+msgid "Relation created successfully"
+msgstr ""
+
+#: ../../enterprise/meta/include/functions_relations.php:263
+msgid "Error deleting the relation"
+msgstr ""
+
+#: ../../enterprise/meta/include/functions_relations.php:269
+msgid "Relation deleted successfully"
+msgstr ""
+
+#: ../../enterprise/meta/include/functions_users_meta.php:186
+#: ../../enterprise/meta/include/functions_users_meta.php:212
+#: ../../godmode/menu.php:130 ../../godmode/users/user_list.php:225
+#: ../../godmode/users/configure_user.php:234
+#: ../../godmode/users/configure_profile.php:66
+#: ../../godmode/users/profile_list.php:74
+msgid "Profile management"
+msgstr ""
+
+#: ../../enterprise/meta/include/functions_users_meta.php:200
+msgid "User synchronization"
+msgstr ""
+
+#: ../../enterprise/meta/include/functions_users_meta.php:216
+msgid "Group synchronization"
+msgstr ""
+
+#: ../../enterprise/meta/include/functions_ui_meta.php:53
+#, php-format
+msgid "%s - the Flexible Monitoring System"
+msgstr ""
+
+#: ../../enterprise/meta/include/functions_meta.php:49
+msgid "No admin user"
+msgstr ""
+
+#: ../../enterprise/meta/include/functions_meta.php:112
+msgid "Centralized management"
+msgstr ""
+
+#: ../../enterprise/meta/include/functions_meta.php:148
+#: ../../enterprise/meta/advanced/metasetup.setup.php:158
+#: ../../godmode/setup/setup_general.php:98
+msgid "Phantomjs bin directory"
+msgstr ""
+
+#: ../../enterprise/meta/include/functions_meta.php:198
+msgid "Netflow disable custom live view filters"
+msgstr ""
+
+#: ../../enterprise/meta/include/functions_meta.php:248
+#: ../../enterprise/meta/advanced/metasetup.setup.php:283
+#: ../../enterprise/godmode/setup/setup.php:378
+msgid "Enable update manager"
+msgstr ""
+
+#: ../../enterprise/meta/include/functions_meta.php:262
+msgid "Customizable section"
+msgstr ""
+
+#: ../../enterprise/meta/include/functions_meta.php:283
+msgid "Agent API"
+msgstr ""
+
+#: ../../enterprise/meta/include/functions_meta.php:303
+#: ../../enterprise/meta/advanced/metasetup.setup.php:324
+#: ../../godmode/setup/setup_general.php:467
+msgid "Enable console log"
+msgstr ""
+
+#: ../../enterprise/meta/include/functions_meta.php:313
+#: ../../enterprise/meta/advanced/metasetup.setup.php:345
+#: ../../godmode/setup/setup_general.php:478
+msgid "Enable audit log"
+msgstr ""
+
+#: ../../enterprise/meta/include/functions_meta.php:323
+msgid "Policy add max. agents"
+msgstr ""
+
+#: ../../enterprise/meta/include/functions_meta.php:332
+msgid "Sync items warn detection"
+msgstr ""
+
+#: ../../enterprise/meta/include/functions_meta.php:470
+msgid "IP ElasticSearch"
+msgstr ""
+
+#: ../../enterprise/meta/include/functions_meta.php:480
+msgid "Port ElasticSearch"
+msgstr ""
+
+#: ../../enterprise/meta/include/functions_meta.php:592
+msgid "2FA_all_users"
+msgstr ""
+
+#: ../../enterprise/meta/include/functions_meta.php:715
+#: ../../enterprise/meta/include/functions_meta.php:727
+#: ../../enterprise/godmode/setup/setup_auth.php:337
+#: ../../enterprise/godmode/setup/setup_auth.php:385
+#: ../../enterprise/godmode/setup/setup_auth.php:1180
+msgid "Auto enable node access"
+msgstr ""
+
+#: ../../enterprise/meta/include/functions_meta.php:858
+msgid "SAML profile parameters"
+msgstr ""
+
+#: ../../enterprise/meta/include/functions_meta.php:1029
+#: ../../godmode/setup/setup_auth.php:267
+msgid "Secondary start TLS"
+msgstr ""
+
+#: ../../enterprise/meta/include/functions_meta.php:1135
+#, php-format
+msgid "%s host"
+msgstr ""
+
+#: ../../enterprise/meta/include/functions_meta.php:1189
+msgid "Babel Enterprise host"
+msgstr ""
+
+#: ../../enterprise/meta/include/functions_meta.php:1318
+msgid "Graph color (min)"
+msgstr ""
+
+#: ../../enterprise/meta/include/functions_meta.php:1328
+msgid "Graph color (avg)"
+msgstr ""
+
+#: ../../enterprise/meta/include/functions_meta.php:1338
+msgid "Graph color (max)"
+msgstr ""
+
+#: ../../enterprise/meta/include/functions_meta.php:1362
+#: ../../enterprise/meta/advanced/metasetup.visual.php:252
+#: ../../godmode/setup/setup_visuals.php:869
+msgid "Number of elements in Custom Graph"
+msgstr ""
+
+#: ../../enterprise/meta/include/functions_meta.php:1403
+#: ../../enterprise/meta/advanced/metasetup.visual.php:1036
+#: ../../godmode/setup/setup_visuals.php:1135
+msgid "Interval description"
+msgstr ""
+
+#: ../../enterprise/meta/include/functions_meta.php:1488
+msgid "full scale charts"
+msgstr ""
+
+#: ../../enterprise/meta/include/functions_meta.php:1498
+msgid "type mode type charts"
+msgstr ""
+
+#: ../../enterprise/meta/include/functions_meta.php:1508
+#: ../../enterprise/meta/advanced/metasetup.visual.php:969
+#: ../../godmode/setup/setup_visuals.php:1126
+msgid "Graph image height for HTML reports"
+msgstr ""
+
+#: ../../enterprise/meta/include/functions_meta.php:1518
+msgid "type mode zoom charts"
+msgstr ""
+
+#: ../../enterprise/meta/include/functions_meta.php:1528
+#: ../../enterprise/meta/advanced/metasetup.visual.php:826
+#: ../../godmode/setup/setup_visuals.php:563
+msgid "Visual effects and animation"
+msgstr ""
+
+#: ../../enterprise/meta/include/functions_meta.php:1538
+msgid "Type of charts"
+msgstr ""
+
+#: ../../enterprise/meta/include/functions_meta.php:1548
+#: ../../enterprise/meta/advanced/metasetup.visual.php:367
+msgid "Metaconsole elements"
+msgstr ""
+
+#: ../../enterprise/meta/include/functions_meta.php:1558
+#: ../../enterprise/meta/advanced/metasetup.visual.php:454
+#: ../../godmode/setup/setup_visuals.php:1247
+msgid "Show only the group name"
+msgstr ""
+
+#: ../../enterprise/meta/include/functions_meta.php:1588
+msgid "Custom logo (white background)"
+msgstr ""
+
+#: ../../enterprise/meta/include/functions_meta.php:1688
+#: ../../enterprise/meta/advanced/metasetup.visual.php:775
+#: ../../godmode/setup/setup_visuals.php:495
+msgid "Docs URL (login)"
+msgstr ""
+
+#: ../../enterprise/meta/include/functions_meta.php:1698
+#: ../../enterprise/meta/advanced/metasetup.visual.php:785
+#: ../../godmode/setup/setup_visuals.php:501
+msgid "Support URL (login)"
+msgstr ""
+
+#: ../../enterprise/meta/include/functions_meta.php:1708
+msgid "Custom background login"
+msgstr ""
+
+#: ../../enterprise/meta/include/functions_meta.php:1718
+msgid "Custom product name"
+msgstr ""
+
+#: ../../enterprise/meta/include/functions_meta.php:1728
+msgid "Custom copyright notice"
+msgstr ""
+
+#: ../../enterprise/meta/include/functions_meta.php:1929
+#: ../../enterprise/meta/advanced/metasetup.performance.php:83
+msgid "Active events history"
+msgstr ""
+
+#: ../../enterprise/meta/include/functions_meta.php:1969
+msgid "Default block size migration agents"
+msgstr ""
+
+#: ../../enterprise/meta/include/functions_meta.php:1981
+msgid "Default block size execution event"
+msgstr ""
+
+#: ../../enterprise/meta/include/functions_meta.php:1992
+msgid "Default row limit in csv log"
+msgstr ""
+
+#: ../../enterprise/meta/include/functions_meta.php:2038
+msgid "Node address default"
+msgstr ""
+
+#: ../../enterprise/meta/include/functions_wizard_meta.php:364
+msgid "Add selected modules to agent"
+msgstr ""
+
+#: ../../enterprise/meta/include/functions_wizard_meta.php:402
+msgid "Undo changes"
+msgstr ""
+
+#: ../../enterprise/meta/include/functions_wizard_meta.php:496
+#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:754
+#: ../../godmode/massive/massive_edit_modules.php:818
+#: ../../godmode/agentes/module_manager_editor_wmi.php:60
+#: ../../godmode/agentes/module_manager_editor_network.php:95
+msgid "Force primary key"
+msgstr ""
+
+#: ../../enterprise/meta/include/functions_wizard_meta.php:593
+msgid "Latency"
+msgstr ""
+
+#: ../../enterprise/meta/include/functions_wizard_meta.php:594
+msgid "Response"
+msgstr ""
+
+#: ../../enterprise/meta/include/functions_wizard_meta.php:596
+#: ../../godmode/agentes/module_manager_editor_web.php:199
+msgid "Check type"
+msgstr ""
+
+#: ../../enterprise/meta/include/functions_wizard_meta.php:649
+msgid "String to check"
+msgstr ""
+
+#: ../../enterprise/meta/include/functions_wizard_meta.php:655
+msgid "Add check"
+msgstr ""
+
+#: ../../enterprise/meta/include/functions_wizard_meta.php:664
+msgid "Delete check"
+msgstr ""
+
+#: ../../enterprise/meta/include/functions_wizard_meta.php:677
+#: ../../enterprise/godmode/modules/configure_local_component.php:494
+#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:180
+#: ../../godmode/agentes/module_manager_editor_web.php:164
+msgid "Load basic"
+msgstr ""
+
+#: ../../enterprise/meta/include/functions_wizard_meta.php:683
+#: ../../godmode/agentes/module_manager_editor_web.php:170
+msgid "Load a basic structure on Web Checks"
+msgstr ""
+
+#: ../../enterprise/meta/include/functions_wizard_meta.php:691
+#: ../../godmode/agentes/module_manager_editor_web.php:178
+msgid "Check the correct structure of the WebCheck"
+msgstr ""
+
+#: ../../enterprise/meta/include/functions_wizard_meta.php:698
+#: ../../godmode/agentes/module_manager_editor_web.php:253
+msgid "First line must be \"task_begin\""
+msgstr ""
+
+#: ../../enterprise/meta/include/functions_wizard_meta.php:699
+#: ../../godmode/agentes/module_manager_editor_web.php:254
+msgid "Webchecks configuration is empty"
+msgstr ""
+
+#: ../../enterprise/meta/include/functions_wizard_meta.php:700
+#: ../../enterprise/meta/include/functions_wizard_meta.php:701
+#: ../../godmode/agentes/module_manager_editor_web.php:255
+#: ../../godmode/agentes/module_manager_editor_web.php:256
+msgid "Last line must be \"task_end\""
+msgstr ""
+
+#: ../../enterprise/meta/include/functions_wizard_meta.php:702
+#: ../../enterprise/godmode/modules/configure_local_component.php:513
+#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:203
+#: ../../godmode/agentes/module_manager_editor_web.php:257
+msgid "There is a line with a unknown token 'token_fail'."
+msgstr ""
+
+#: ../../enterprise/meta/include/functions_wizard_meta.php:703
+#: ../../godmode/agentes/module_manager_editor_web.php:259
+msgid "Web checks are built correctly"
+msgstr ""
+
+#: ../../enterprise/meta/include/functions_wizard_meta.php:959
+#: ../../enterprise/meta/include/functions_wizard_meta.php:1050
+#: ../../enterprise/meta/include/functions_wizard_meta.php:1262
+msgid "Various"
+msgstr ""
+
+#: ../../enterprise/meta/include/functions_wizard_meta.php:985
+#: ../../enterprise/meta/include/functions_wizard_meta.php:994
+#: ../../enterprise/meta/include/functions_wizard_meta.php:1070
+#: ../../enterprise/meta/include/functions_wizard_meta.php:1079
+#: ../../enterprise/meta/include/functions_wizard_meta.php:1273
+#: ../../enterprise/meta/include/functions_wizard_meta.php:1282
+#: ../../enterprise/meta/include/functions_wizard_meta.php:1510
+#: ../../enterprise/meta/include/functions_wizard_meta.php:1519
+#: ../../enterprise/meta/include/functions_wizard_meta.php:1595
+#: ../../enterprise/meta/include/functions_wizard_meta.php:1604
+#: ../../enterprise/meta/include/functions_wizard_meta.php:1715
+#: ../../enterprise/meta/include/functions_wizard_meta.php:1724
+#: ../../enterprise/meta/include/functions_wizard_meta.php:1740
+#: ../../enterprise/godmode/modules/configure_local_component.php:338
+#: ../../enterprise/godmode/modules/configure_local_component.php:381
+#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:547
+#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:638
+#: ../../godmode/modules/manage_network_components_form_wizard.php:395
+#: ../../godmode/modules/manage_network_components_form_wizard.php:437
+#: ../../godmode/modules/manage_network_components_form_common.php:192
+#: ../../godmode/modules/manage_network_components_form_common.php:233
+#: ../../godmode/massive/massive_edit_modules.php:610
+#: ../../godmode/massive/massive_edit_modules.php:701
+#: ../../godmode/agentes/module_manager_editor_common.php:459
+#: ../../godmode/agentes/module_manager_editor_common.php:520
+msgid "Inverse interval"
+msgstr ""
+
+#: ../../enterprise/meta/include/functions_wizard_meta.php:1090
+#: ../../enterprise/meta/include/functions_wizard_meta.php:1622
+#: ../../godmode/agentes/module_manager_editor_web.php:224
+msgid "Proxy URL"
+msgstr ""
+
+#: ../../enterprise/meta/include/functions_wizard_meta.php:1095
+msgid "Web configuration"
+msgstr ""
+
+#: ../../enterprise/meta/include/functions_wizard_meta.php:1289
+#: ../../enterprise/meta/include/functions_wizard_meta.php:1302
+#: ../../enterprise/meta/include/functions_wizard_meta.php:1731
+#: ../../enterprise/meta/include/functions_wizard_meta.php:1738
+msgid "Str: "
+msgstr ""
+
+#: ../../enterprise/meta/include/functions_wizard_meta.php:1298
+#: ../../enterprise/meta/include/functions_wizard_meta.php:1311
+msgid " Inverse interval "
+msgstr ""
+
+#: ../../enterprise/meta/include/functions_wizard_meta.php:1371
+msgid "Alerts in module"
+msgstr ""
+
+#: ../../enterprise/meta/include/functions_wizard_meta.php:1618
+msgid "Checks"
+msgstr ""
+
+#: ../../enterprise/meta/include/functions_wizard_meta.php:1829
+msgid "Deleted modules"
+msgstr ""
+
+#: ../../enterprise/meta/include/functions_wizard_meta.php:2017
+#: ../../enterprise/meta/include/functions_wizard_meta.php:2117
+#: ../../enterprise/meta/include/functions_wizard_meta.php:2672
+#: ../../enterprise/meta/include/functions_wizard_meta.php:2791
+#: ../../enterprise/meta/include/functions_wizard_meta.php:2882
+#: ../../enterprise/meta/include/functions_wizard_meta.php:3077
+msgid "Another module already exists with the same name"
+msgstr ""
+
+#: ../../enterprise/meta/include/functions_wizard_meta.php:2029
+#: ../../enterprise/meta/include/functions_wizard_meta.php:2124
+#: ../../enterprise/meta/include/functions_wizard_meta.php:2684
+#, php-format
+msgid "Error adding module %s"
+msgstr ""
+
+#: ../../enterprise/meta/include/functions_wizard_meta.php:2038
+#: ../../enterprise/meta/include/functions_wizard_meta.php:2133
+msgid ""
+"There was an error creating the alerts, the operation has been cancelled"
+msgstr ""
+
+#: ../../enterprise/meta/include/functions_wizard_meta.php:2067
+#: ../../enterprise/meta/include/functions_wizard_meta.php:2162
+#: ../../enterprise/godmode/policies/policy_modules.php:919
+msgid "Successfully added module."
+msgstr ""
+
+#: ../../enterprise/meta/include/functions_wizard_meta.php:2222
+#, php-format
+msgid "Could not create agent %s"
+msgstr ""
+
+#: ../../enterprise/meta/include/functions_wizard_meta.php:2235
+msgid "Agent successfully added"
+msgstr ""
+
+#: ../../enterprise/meta/include/functions_wizard_meta.php:2256
+#: ../../enterprise/meta/include/functions_wizard_meta.php:2374
+#, php-format
+msgid "%s Modules created"
+msgstr ""
+
+#: ../../enterprise/meta/include/functions_wizard_meta.php:2332
+#, php-format
+msgid "Could not update agent %s"
+msgstr ""
+
+#: ../../enterprise/meta/include/functions_wizard_meta.php:2380
+#, php-format
+msgid "%s Modules deleted"
+msgstr ""
+
+#: ../../enterprise/meta/include/functions_wizard_meta.php:2696
+msgid ""
+"There was an error creating the alerts, the operation has been cancelled ."
+msgstr ""
+
+#: ../../enterprise/meta/include/functions_wizard_meta.php:2726
+msgid "Module successfully added."
+msgstr ""
+
+#: ../../enterprise/meta/include/functions_wizard_meta.php:2798
+#: ../../enterprise/meta/include/functions_wizard_meta.php:2889
+#: ../../enterprise/meta/include/functions_wizard_meta.php:3084
+#, php-format
+msgid "Error updating module %s"
+msgstr ""
+
+#: ../../enterprise/meta/include/functions_wizard_meta.php:2820
+#: ../../enterprise/meta/include/functions_wizard_meta.php:2911
+#: ../../enterprise/meta/include/functions_wizard_meta.php:3106
+msgid ""
+"There was an error updating the alerts, the operation has been cancelled"
+msgstr ""
+
+#: ../../enterprise/meta/include/functions_wizard_meta.php:2841
+#: ../../enterprise/meta/include/functions_wizard_meta.php:2932
+#: ../../enterprise/meta/include/functions_wizard_meta.php:3127
+msgid "Successfully updated module."
+msgstr ""
+
+#: ../../enterprise/meta/include/functions_wizard_meta.php:3507
+msgid "Manage agent modules"
+msgstr ""
+
+#: ../../enterprise/meta/include/functions_alerts_meta.php:137
+#: ../../enterprise/meta/include/functions_alerts_meta.php:168
+#: ../../godmode/menu.php:237
+msgid "Commands"
+msgstr ""
+
+#: ../../enterprise/meta/include/functions_alerts_meta.php:141
+msgid "Calendar"
+msgstr ""
+
+#: ../../enterprise/meta/include/functions_agents_meta.php:478
+#: ../../enterprise/meta/include/functions_agents_meta.php:542
+#: ../../enterprise/meta/include/functions_agents_meta.php:577
+msgid "Agents movement"
+msgstr ""
+
+#: ../../enterprise/meta/include/functions_agents_meta.php:489
+#: ../../enterprise/meta/include/functions_agents_meta.php:557
+msgid "Provisioning management"
+msgstr ""
+
+#: ../../enterprise/meta/include/functions_agents_meta.php:500
+#: ../../enterprise/meta/include/functions_agents_meta.php:567
+#: ../../enterprise/godmode/agentes/agent_autoconfiguration.php:103
+#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:301
+#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:422
+#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:680
+msgid "Agent autoconfiguration"
+msgstr ""
+
+#: ../../enterprise/meta/include/functions_agents_meta.php:511
+#: ../../enterprise/meta/include/functions_agents_meta.php:547
+#: ../../enterprise/meta/include/functions_agents_meta.php:552
+msgid "Group management"
+msgstr ""
+
+#: ../../enterprise/meta/include/functions_agents_meta.php:522
+msgid "Tree group"
+msgstr ""
+
+#: ../../enterprise/meta/include/functions_agents_meta.php:562
+msgid "Provisioning rules management"
+msgstr ""
+
+#: ../../enterprise/meta/include/functions_agents_meta.php:572
+msgid "Colecctions"
+msgstr ""
+
+#: ../../enterprise/meta/include/functions_agents_meta.php:605
+msgid "Agents Management"
+msgstr ""
+
+#: ../../enterprise/meta/include/functions_groups_meta.php:114
+#, php-format
+msgid "Error Duplicate name (%s) "
+msgstr ""
+
+#: ../../enterprise/meta/include/functions_groups_meta.php:132
+#, php-format
+msgid "(Error Duplicate ID (%d) ) "
+msgstr ""
+
+#: ../../enterprise/meta/include/functions_groups_meta.php:153
+msgid "Error Duplicate name"
+msgstr ""
+
+#: ../../enterprise/meta/include/functions_groups_meta.php:174
+#: ../../enterprise/meta/advanced/policymanager.sync.php:247
+#: ../../godmode/groups/group_list.php:667
+#, php-format
+msgid "Error connecting to %s"
+msgstr ""
+
+#: ../../enterprise/meta/include/functions_components_meta.php:80
+#: ../../enterprise/meta/include/functions_components_meta.php:135
+#: ../../godmode/menu.php:80
+msgid "Component groups"
+msgstr ""
+
+#: ../../enterprise/meta/include/functions_components_meta.php:88
+#: ../../enterprise/meta/include/functions_components_meta.php:139
+#: ../../enterprise/godmode/menu.php:99 ../../godmode/menu.php:153
+msgid "Local components"
+msgstr ""
+
+#: ../../enterprise/meta/include/functions_components_meta.php:96
+#: ../../enterprise/meta/include/functions_components_meta.php:143
+msgid "Network components"
+msgstr ""
+
+#: ../../enterprise/meta/include/functions_components_meta.php:104
+#: ../../enterprise/meta/include/functions_components_meta.php:147
+msgid "Plugin management"
+msgstr ""
+
+#: ../../enterprise/meta/include/functions_components_meta.php:124
+#: ../../enterprise/meta/include/functions_components_meta.php:164
+#: ../../godmode/servers/plugin.php:295
+#: ../../godmode/servers/plugin_registration.php:99
+msgid "Plugin registration"
+msgstr ""
+
+#: ../../enterprise/meta/include/functions_components_meta.php:153
+msgid "Create plugin"
+msgstr ""
+
+#: ../../enterprise/meta/include/functions_components_meta.php:155
+msgid "Edit plugin"
+msgstr ""
+
+#: ../../enterprise/meta/monitoring/custom_fields_csv.php:102
+#: ../../godmode/massive/massive_edit_modules.php:468
+msgid "Agent Status"
+msgstr ""
+
+#: ../../enterprise/meta/monitoring/custom_fields_csv.php:136
+msgid "No init"
+msgstr ""
+
+#: ../../enterprise/meta/monitoring/group_view.php:55
+msgid "Group View"
+msgstr ""
+
+#: ../../enterprise/meta/monitoring/group_view.php:151
+msgid "Summary by status"
+msgstr ""
+
+#: ../../enterprise/meta/monitoring/group_view.php:160
+#: ../../enterprise/meta/monitoring/group_view.php:172
+msgid "% Agents not init"
+msgstr ""
+
+#: ../../enterprise/meta/monitoring/group_view.php:163
+msgid "% Agents Warning"
+msgstr ""
+
+#: ../../enterprise/meta/monitoring/group_view.php:166
+msgid "% Agents OK"
+msgstr ""
+
+#: ../../enterprise/meta/monitoring/group_view.php:169
+msgid "% Agents Unknown"
+msgstr ""
+
+#: ../../enterprise/meta/monitoring/group_view.php:177
+msgid "% Monitors Critical"
+msgstr ""
+
+#: ../../enterprise/meta/monitoring/group_view.php:180
+msgid "% Monitors Warning"
+msgstr ""
+
+#: ../../enterprise/meta/monitoring/group_view.php:183
+msgid "% Monitors OK"
+msgstr ""
+
+#: ../../enterprise/meta/monitoring/group_view.php:186
+msgid "% Monitors Unknown"
+msgstr ""
+
+#: ../../enterprise/meta/monitoring/group_view.php:189
+msgid "% Monitors Not init"
+msgstr ""
+
+#: ../../enterprise/meta/monitoring/group_view.php:217
+#: ../../enterprise/meta/monitoring/group_view.php:223
+msgid "This data doesn't show in realtime"
+msgstr ""
+
+#: ../../enterprise/meta/monitoring/group_view.php:234
+msgid "Group or Tag"
+msgstr ""
+
+#: ../../enterprise/meta/monitoring/custom_fields_view.php:54
+msgid "Custom fields View"
+msgstr ""
+
+#: ../../enterprise/meta/monitoring/custom_fields_view.php:66
+msgid "Custom Fields View"
+msgstr ""
+
+#: ../../enterprise/meta/monitoring/custom_fields_view.php:187
+msgid "Status agents"
+msgstr ""
+
+#: ../../enterprise/meta/monitoring/custom_fields_view.php:203
+msgid "Status module"
+msgstr ""
+
+#: ../../enterprise/meta/monitoring/custom_fields_view.php:266
+msgid "Custom Fields Data"
+msgstr ""
+
+#: ../../enterprise/meta/monitoring/custom_fields_view.php:672
+msgid "Total counters"
+msgstr ""
+
+#: ../../enterprise/meta/monitoring/custom_fields_view.php:675
+msgid "Total Agents"
+msgstr ""
+
+#: ../../enterprise/meta/monitoring/custom_fields_view.php:684
+msgid "Total Modules"
+msgstr ""
+
+#: ../../enterprise/meta/monitoring/custom_fields_view.php:705
+msgid "I.P"
+msgstr ""
+
+#: ../../enterprise/meta/monitoring/custom_fields_view.php:727
+msgid "There are no custom search defined."
+msgstr ""
+
+#: ../../enterprise/meta/monitoring/tactical.php:251
+msgid "Report of state"
+msgstr ""
+
+#: ../../enterprise/meta/monitoring/tactical.php:279
+msgid "Report of events"
+msgstr ""
+
+#: ../../enterprise/meta/monitoring/tactical.php:284
+msgid "Info of state in events"
+msgstr ""
+
+#: ../../enterprise/meta/monitoring/tactical.php:302
+msgid "More events"
+msgstr ""
+
+#: ../../enterprise/meta/monitoring/wizard/wizard.php:50
+#: ../../enterprise/meta/advanced/massive_operations.php:54
+#, php-format
+msgid ""
+"You should centralise management in order to use Wizard section. Please go "
+"to %s"
+msgstr ""
+
+#: ../../enterprise/meta/monitoring/wizard/wizard.php:134
+msgid "The alert you are trying to add is already in the list of alerts"
+msgstr ""
+
+#: ../../enterprise/meta/monitoring/wizard/wizard.php:144
+msgid ""
+"Are you sure? If the agent is on a policy, it will be removed from the "
+"policy."
+msgstr ""
+
+#: ../../enterprise/meta/monitoring/wizard/wizard.php:145
+#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:384
+#: ../../godmode/reporting/graph_builder.graph_editor.php:367
+msgid "Please, select a module"
+msgstr ""
+
+#: ../../enterprise/meta/monitoring/wizard/wizard.php:146
+msgid "Please, select an alert"
+msgstr ""
+
+#: ../../enterprise/meta/monitoring/wizard/wizard.php:147
+msgid "Please, select an agent"
+msgstr ""
+
+#: ../../enterprise/meta/monitoring/wizard/wizard.php:153
+msgid "No agent name specified"
+msgstr ""
+
+#: ../../enterprise/meta/monitoring/wizard/wizard.php:154
+msgid "Another agent already exists with the same name"
+msgstr ""
+
+#: ../../enterprise/meta/monitoring/wizard/wizard.php:155
+#: ../../enterprise/meta/monitoring/wizard/wizard.php:213
+#: ../../enterprise/meta/monitoring/wizard/wizard.module.web.php:147
+#: ../../enterprise/meta/monitoring/wizard/wizard.module.local.php:156
+#: ../../enterprise/meta/monitoring/wizard/wizard.update_agent.php:46
+#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:131
+#: ../../enterprise/meta/monitoring/wizard/wizard.update_module.php:92
+#: ../../enterprise/meta/monitoring/wizard/wizard.module.network.php:195
+#, php-format
+msgid "Cannot connect to %s instance."
+msgstr ""
+
+#: ../../enterprise/meta/monitoring/wizard/wizard.php:156
+#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:430
+#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:433
+#: ../../godmode/agentes/module_manager_editor_common.php:627
+#: ../../godmode/agentes/module_manager_editor_common.php:629
+#, php-format
+msgid "Agent interval x %s"
+msgstr ""
+
+#: ../../enterprise/meta/monitoring/wizard/wizard.module.web.php:101
+#: ../../enterprise/meta/monitoring/wizard/wizard.module.local.php:108
+#: ../../enterprise/meta/monitoring/wizard/wizard.module.network.php:120
+msgid "Advanced configuration"
+msgstr ""
+
+#: ../../enterprise/meta/monitoring/wizard/wizard.module.web.php:117
+#: ../../enterprise/meta/monitoring/wizard/wizard.module.local.php:126
+#: ../../enterprise/meta/monitoring/wizard/wizard.update_module.php:39
+#: ../../enterprise/meta/monitoring/wizard/wizard.module.network.php:142
+#: ../../enterprise/godmode/policies/policy_modules.php:380
+msgid "Edit module"
+msgstr ""
+
+#: ../../enterprise/meta/monitoring/wizard/wizard.module.web.php:231
+msgid "Please, set a name"
+msgstr ""
+
+#: ../../enterprise/meta/monitoring/wizard/wizard.module.web.php:238
+#: ../../enterprise/meta/monitoring/wizard/wizard.module.local.php:229
+#: ../../enterprise/meta/monitoring/wizard/wizard.module.network.php:281
+msgid "Invalid characters founded in module name"
+msgstr ""
+
+#: ../../enterprise/meta/monitoring/wizard/wizard.module.web.php:252
+msgid "Please, set an interval"
+msgstr ""
+
+#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:237
+#: ../../godmode/menu.php:71 ../../godmode/agentes/configurar_agente.php:818
+#: ../../godmode/agentes/configurar_agente.php:840
+#: ../../godmode/agentes/modificar_agente.php:108
+msgid "Manage agents"
+msgstr ""
+
+#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:286
+msgid "Select the agent to be edited or deleted"
+msgstr ""
+
+#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:295
+#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:391
+#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:461
+#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:730
+#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:812
+#: ../../mobile/operation/agent.php:148 ../../mobile/operation/modules.php:241
+#: ../../mobile/operation/visualmaps.php:189
+#: ../../mobile/operation/visualmap.php:255
+#: ../../mobile/operation/tactical.php:102
+#: ../../mobile/operation/alerts.php:199 ../../mobile/operation/events.php:614
+#: ../../mobile/operation/module_graph.php:364
+#: ../../mobile/operation/module_graph.php:377
+#: ../../mobile/operation/agents.php:209 ../../mobile/operation/groups.php:82
+#: ../../godmode/alerts/configure_alert_action.php:395
+#: ../../godmode/groups/configure_group.php:272
+msgid "Back"
+msgstr ""
+
+#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:335
+msgid "Manage modules"
+msgstr ""
+
+#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:381
+msgid "Select the agent where the module will be created"
+msgstr ""
+
+#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:394
+msgid "Create Module"
+msgstr ""
+
+#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:451
+msgid "Select the module to be edited or deleted"
+msgstr ""
+
+#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:506
+#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:546
+msgid "Error creating alert"
+msgstr ""
+
+#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:510
+msgid "Alert could not be created"
+msgstr ""
+
+#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:530
+msgid "Perform create alert"
+msgstr ""
+
+#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:534
+msgid "Alert created correctly"
+msgstr ""
+
+#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:550
+msgid "Alert template must be setted"
+msgstr ""
+
+#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:589
+#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:622
+msgid "Error updating alert"
+msgstr ""
+
+#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:593
+msgid "Something gone wrong with alert update"
+msgstr ""
+
+#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:604
+msgid "Perform update alert"
+msgstr ""
+
+#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:608
+msgid "Alert updated correctly"
+msgstr ""
+
+#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:626
+msgid "Template must be set."
+msgstr ""
+
+#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:651
+#: ../../enterprise/meta/monitoring/wizard/wizard.manage_alert.php:104
+#: ../../godmode/snmpconsole/snmp_alert.php:91
+msgid "Create alert"
+msgstr ""
+
+#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:656
+#: ../../godmode/alerts/alert_list.php:494
+#: ../../godmode/alerts/alert_list.php:496
+#: ../../godmode/users/configure_profile.php:291
+msgid "Manage alerts"
+msgstr ""
+
+#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:719
+msgid "Select the module where the alert will be created"
+msgstr ""
+
+#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:801
+msgid "Select the alert to be edited or deleted"
+msgstr ""
+
+#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:148
+#: ../../godmode/modules/manage_network_components_form_wizard.php:335
+#: ../../godmode/massive/massive_delete_modules.php:323
+#: ../../godmode/massive/massive_edit_modules.php:309
+msgid "Module type"
+msgstr ""
+
+#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:148
+msgid "Web check"
+msgstr ""
+
+#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:245
+msgid "Module description"
+msgstr ""
+
+#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:267
+msgid "Step by step wizard"
+msgstr ""
+
+#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:275
+#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:280
+msgid "Click Create to continue"
+msgstr ""
+
+#: ../../enterprise/meta/monitoring/wizard/wizard.manage_alert.php:73
+#: ../../enterprise/godmode/alerts/alert_inventory_list.php:337
+msgid "Edit alert"
+msgstr ""
+
+#: ../../enterprise/meta/monitoring/wizard/wizard.manage_alert.php:248
+msgid "Create new template"
+msgstr ""
+
+#: ../../enterprise/meta/monitoring/wizard/wizard.manage_alert.php:280
+msgid "Create new action"
+msgstr ""
+
+#: ../../enterprise/meta/monitoring/wizard/wizard.agent.php:80
+msgid "Edit agent"
+msgstr ""
+
+#: ../../enterprise/meta/monitoring/wizard/wizard.agent.php:198
+#: ../../enterprise/meta/monitoring/wizard/wizard.module.network.php:280
+msgid "Please, set a valid IP/Name address"
+msgstr ""
+
+#: ../../enterprise/meta/monitoring/wizard/wizard.agent.php:209
+msgid "Please, select a group first"
+msgstr ""
+
+#: ../../enterprise/meta/advanced/agents_setup.autoprovision.php:72
+#, php-format
+msgid "Provisioning custom data <b>%s</b> successfully deleted."
+msgstr ""
+
+#: ../../enterprise/meta/advanced/agents_setup.autoprovision.php:79
+#, php-format
+msgid "Cannot delete custom data <b>%s</b>."
+msgstr ""
+
+#: ../../enterprise/meta/advanced/agents_setup.autoprovision.php:92
+msgid "There was an error when moving the custom provisioning data."
+msgstr ""
+
+#: ../../enterprise/meta/advanced/metasetup.auth.php:27
+msgid ""
+"Be aware that group synchronization can change the group configuration of "
+"the node"
+msgstr ""
+
+#: ../../enterprise/meta/advanced/metasetup.auth.php:47
+#: ../../enterprise/meta/advanced/metasetup.relations.php:96
+#: ../../enterprise/meta/advanced/metasetup.performance.php:47
+#: ../../enterprise/meta/advanced/metasetup.setup.php:79
+#: ../../enterprise/meta/advanced/metasetup.password.php:46
+#: ../../enterprise/meta/advanced/metasetup.log.php:41
+#: ../../enterprise/meta/advanced/metasetup.visual.php:51
+#, php-format
+msgid "Could not be update: Error in %s"
+msgstr ""
+
+#: ../../enterprise/meta/advanced/metasetup.auth.php:54
+#: ../../enterprise/meta/advanced/metasetup.relations.php:103
+#: ../../enterprise/meta/advanced/metasetup.performance.php:54
+#: ../../enterprise/meta/advanced/metasetup.setup.php:86
+#: ../../enterprise/meta/advanced/metasetup.consoles.php:219
+#: ../../enterprise/meta/advanced/metasetup.password.php:53
+#: ../../enterprise/meta/advanced/metasetup.log.php:48
+#: ../../enterprise/meta/advanced/metasetup.visual.php:58
+#: ../../enterprise/godmode/setup/setup_metaconsole.php:85
+msgid "Successfully update"
+msgstr ""
+
+#: ../../enterprise/meta/advanced/policymanager.sync.php:255
+#, php-format
+msgid "Error creating %s policies"
+msgstr ""
+
+#: ../../enterprise/meta/advanced/policymanager.sync.php:259
+#, php-format
+msgid "Created %s policies"
+msgstr ""
+
+#: ../../enterprise/meta/advanced/policymanager.sync.php:264
+#, php-format
+msgid "Error creating/updating %s/%s policy modules"
+msgstr ""
+
+#: ../../enterprise/meta/advanced/policymanager.sync.php:268
+#, php-format
+msgid "Created/Updated %s/%s policy modules"
+msgstr ""
+
+#: ../../enterprise/meta/advanced/policymanager.sync.php:273
+#, php-format
+msgid "Error deleting %s policy modules"
+msgstr ""
+
+#: ../../enterprise/meta/advanced/policymanager.sync.php:277
+#, php-format
+msgid "Deleted %s policy modules"
+msgstr ""
+
+#: ../../enterprise/meta/advanced/policymanager.sync.php:282
+#, php-format
+msgid "Error creating %s policy alerts"
+msgstr ""
+
+#: ../../enterprise/meta/advanced/policymanager.sync.php:286
+#, php-format
+msgid "Created %s policy alerts"
+msgstr ""
+
+#: ../../enterprise/meta/advanced/policymanager.sync.php:291
+#, php-format
+msgid "Error deleting %s policy alerts"
+msgstr ""
+
+#: ../../enterprise/meta/advanced/policymanager.sync.php:295
+#, php-format
+msgid "Deleted %s policy alerts"
+msgstr ""
+
+#: ../../enterprise/meta/advanced/policymanager.sync.php:321
+#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:199
+#: ../../godmode/massive/massive_copy_modules.php:239
+msgid "Targets"
+msgstr ""
+
+#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:124
+#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:127
+#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:131
+#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:135
+#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:139
+#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:143
+#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:147
+#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:151
+msgid "Agent: "
+msgstr ""
+
+#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:124
+msgid " already exists in target node"
+msgstr ""
+
+#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:127
+msgid " group does not exist in target node"
+msgstr ""
+
+#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:131
+msgid " policies definitions does not match  with defined ones in target node"
+msgstr ""
+
+#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:135
+msgid " plugins does not exist in target node"
+msgstr ""
+
+#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:139
+msgid " collections does not exist in target node"
+msgstr ""
+
+#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:143
+msgid " inventory does not exist in target node"
+msgstr ""
+
+#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:147
+msgid " alerts template does not exist in target node"
+msgstr ""
+
+#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:151
+msgid " alerts action does not exist in target node"
+msgstr ""
+
+#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:155
+msgid "Exists agent conf for agent: "
+msgstr ""
+
+#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:155
+msgid " please remove configuration file from target node."
+msgstr ""
+
+#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:267
+#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:269
+msgid "The agent: "
+msgstr ""
+
+#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:267
+msgid " has been successfully added to the migration queue "
+msgstr ""
+
+#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:269
+msgid " has not been added due to problems in the insertion"
+msgstr ""
+
+#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:272
+#, php-format
+msgid "The agent: %d has already been added to the migration queue"
+msgstr ""
+
+#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:292
+msgid "Problems delete queue"
+msgstr ""
+
+#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:312
+msgid "Move Agents"
+msgstr ""
+
+#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:328
+msgid "Source Server"
+msgstr ""
+
+#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:330
+msgid "Destination Server"
+msgstr ""
+
+#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:364
+msgid "Agents to move"
+msgstr ""
+
+#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:385
+msgid "Add agents to destination server"
+msgstr ""
+
+#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:394
+msgid "Remove agents to doesn't move to destination server"
+msgstr ""
+
+#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:413
+msgid "Discard history data"
+msgstr ""
+
+#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:426
+msgid "Agents do not exist in target server."
+msgstr ""
+
+#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:427
+msgid "Check group is synchronized with target server."
+msgstr ""
+
+#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:428
+msgid "All policies needed are synchronized with target server."
+msgstr ""
+
+#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:429
+msgid "All remote plugins needed are synchronized with target server."
+msgstr ""
+
+#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:430
+msgid "All collections needed are syncronized with target server."
+msgstr ""
+
+#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:431
+msgid ""
+"All remote inventory definitions needed are syncronized with target server."
+msgstr ""
+
+#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:432
+msgid ""
+"All alert templates definitions needed are syncronized with target server."
+msgstr ""
+
+#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:433
+msgid "All alert actions needed are syncronized with target server."
+msgstr ""
+
+#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:434
+msgid "Agents conf does not exists in target server."
+msgstr ""
+
+#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:435
+#, php-format
+msgid "Both %s servers must be in the same version"
+msgstr ""
+
+#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:436
+msgid "Check target server ip address is set"
+msgstr ""
+
+#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:446
+msgid "Move"
+msgstr ""
+
+#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:462
+msgid "Source node"
+msgstr ""
+
+#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:463
+msgid "Target node"
+msgstr ""
+
+#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:467
+msgid "Active db only"
+msgstr ""
+
+#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:520
+msgid "Creating modules in target node"
+msgstr ""
+
+#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:524
+msgid "Disabling agent in source node and enabling in target one"
+msgstr ""
+
+#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:528
+msgid "Transferring data"
+msgstr ""
+
+#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:533
+msgid "Creating agent in target node"
+msgstr ""
+
+#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:549
+msgid "Queued"
+msgstr ""
+
+#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:679
+msgid "checking migration requirements"
+msgstr ""
+
+#: ../../enterprise/meta/advanced/policymanager.apply.php:129
+#: ../../enterprise/godmode/policies/policy.php:198
+#: ../../enterprise/godmode/policies/policy.php:246
+msgid "Duplicated or incompatible operation in the queue"
+msgstr ""
+
+#: ../../enterprise/meta/advanced/policymanager.apply.php:137
+#: ../../enterprise/meta/advanced/policymanager.apply.php:141
+#: ../../enterprise/godmode/policies/policy.php:186
+#: ../../enterprise/godmode/policies/policy.php:241
+msgid "Operation successfully added to the queue"
+msgstr ""
+
+#: ../../enterprise/meta/advanced/policymanager.apply.php:141
+#: ../../enterprise/meta/advanced/policymanager.apply.php:149
+msgid "Only database"
+msgstr ""
+
+#: ../../enterprise/meta/advanced/policymanager.apply.php:145
+#: ../../enterprise/meta/advanced/policymanager.apply.php:149
+#: ../../enterprise/meta/advanced/policymanager.apply.php:153
+#: ../../enterprise/godmode/policies/policy.php:192
+#: ../../enterprise/godmode/policies/policy.php:242
+msgid "Operation cannot be added to the queue"
+msgstr ""
+
+#: ../../enterprise/meta/advanced/policymanager.apply.php:186
+msgid "Apply Policies"
+msgstr ""
+
+#: ../../enterprise/meta/advanced/policymanager.apply.php:200
+#: ../../enterprise/godmode/servers/HA_cluster.php:97
+#: ../../mobile/include/functions_web.php:28 ../../godmode/setup/os.php:225
+#: ../../godmode/reporting/visual_console_builder.wizard.php:333
+#: ../../godmode/menu.php:278
+msgid "Servers"
+msgstr ""
+
+#: ../../enterprise/meta/advanced/agents_setup.php:64
+msgid "Propagation"
+msgstr ""
+
+#: ../../enterprise/meta/advanced/policymanager.php:58
+msgid "Policy Manager"
+msgstr ""
+
+#: ../../enterprise/meta/advanced/policymanager.php:75
+msgid "Apply policies"
+msgstr ""
+
+#: ../../enterprise/meta/advanced/policymanager.php:79
+#: ../../enterprise/meta/advanced/policymanager.php:97
+msgid "Policies queue"
+msgstr ""
+
+#: ../../enterprise/meta/advanced/policymanager.php:93
+msgid "Policies apply"
+msgstr ""
+
+#: ../../enterprise/meta/advanced/policymanager.queue.php:58
+#: ../../enterprise/godmode/policies/policy_queue.php:96
+msgid "Operation successfully deleted from the queue"
+msgstr ""
+
+#: ../../enterprise/meta/advanced/policymanager.queue.php:59
+#: ../../enterprise/godmode/policies/policy_queue.php:97
+msgid "Operation cannot be deleted from the queue"
+msgstr ""
+
+#: ../../enterprise/meta/advanced/policymanager.queue.php:218
+#: ../../enterprise/godmode/policies/policy_queue.php:609
+msgid "Apply (database and files)"
+msgstr ""
+
+#: ../../enterprise/meta/advanced/policymanager.queue.php:219
+#: ../../enterprise/meta/advanced/policymanager.queue.php:315
+#: ../../enterprise/godmode/policies/policy_queue.php:610
+#: ../../enterprise/godmode/policies/policy_queue.php:718
+msgid "Apply (only database)"
+msgstr ""
+
+#: ../../enterprise/meta/advanced/policymanager.queue.php:229
+#: ../../enterprise/godmode/policies/policy_queue.php:620
+msgid "Complete"
+msgstr ""
+
+#: ../../enterprise/meta/advanced/policymanager.queue.php:230
+#: ../../enterprise/godmode/policies/policy_queue.php:621
+msgid "Incomplete"
+msgstr ""
+
+#: ../../enterprise/meta/advanced/policymanager.queue.php:298
+#: ../../enterprise/godmode/policies/policy_queue.php:688
+msgid "Policy "
+msgstr ""
+
+#: ../../enterprise/meta/advanced/policymanager.queue.php:339
+#: ../../enterprise/godmode/policies/policy_queue.php:748
+#: ../../enterprise/godmode/policies/policy_queue.php:757
+msgid "Policy applying timeout"
+msgstr ""
+
+#: ../../enterprise/meta/advanced/policymanager.queue.php:353
+#: ../../enterprise/godmode/policies/policy_queue.php:776
+msgid "Delete from queue"
+msgstr ""
+
+#: ../../enterprise/meta/advanced/policymanager.queue.php:371
+msgid "Empty queue."
+msgstr ""
+
+#: ../../enterprise/meta/advanced/metasetup.mail.php:79
+#: ../../godmode/update_manager/update_manager.setup.php:168
+#: ../../godmode/update_manager/update_manager.setup.php:243
+msgid "Succesful Update the url config vars."
+msgstr ""
+
+#: ../../enterprise/meta/advanced/metasetup.mail.php:80
+#: ../../godmode/update_manager/update_manager.setup.php:169
+#: ../../godmode/update_manager/update_manager.setup.php:244
+msgid "Unsuccesful Update the url config vars."
+msgstr ""
+
+#: ../../enterprise/meta/advanced/metasetup.mail.php:98
+msgid ""
+"Please notice that some providers like Gmail or Office365 need to setup/"
+"enable manually external connections using SMTP and you need to use STARTTLS "
+"on port 587.\n"
+"\n"
+"If you have manual settings in your pandora_server.conf, please note these "
+"settings will ignore this console setup."
+msgstr ""
+
+#: ../../enterprise/meta/advanced/metasetup.mail.php:104
+#: ../../godmode/setup/setup_general.php:518
+msgid "Mail configuration"
+msgstr ""
+
+#: ../../enterprise/meta/advanced/servers.php:39
+#: ../../godmode/servers/modificar_server.php:180
+msgid "Server deleted successfully"
+msgstr ""
+
+#: ../../enterprise/meta/advanced/servers.php:41
+#: ../../godmode/servers/modificar_server.php:182
+msgid "There was a problem deleting the server"
+msgstr ""
+
+#: ../../enterprise/meta/advanced/agents_setup.autoprovision_rules.php:64
+msgid "Cannot create an unnamed rule."
+msgstr ""
+
+#: ../../enterprise/meta/advanced/agents_setup.autoprovision_rules.php:75
+#: ../../enterprise/meta/advanced/agents_setup.autoprovision_rules.php:105
+msgid "Error creating provisioning rule."
+msgstr ""
+
+#: ../../enterprise/meta/advanced/agents_setup.autoprovision_rules.php:91
+#: ../../enterprise/meta/advanced/agents_setup.autoprovision_rules.php:119
+msgid "Error updating provisioning rule."
+msgstr ""
+
+#: ../../enterprise/meta/advanced/agents_setup.autoprovision_rules.php:125
+msgid "Error deleting provisioning rule."
+msgstr ""
+
+#: ../../enterprise/meta/advanced/agents_setup.autoprovision_rules.php:135
+msgid "There was an error rule when moving the provisioning."
+msgstr ""
+
+#: ../../enterprise/meta/advanced/agents_setup.autoprovision_rules.php:202
+msgid "Edit rule"
+msgstr ""
+
+#: ../../enterprise/meta/advanced/metasetup.relations.php:239
+msgid "Node Address Default"
+msgstr ""
+
+#: ../../enterprise/meta/advanced/metasetup.relations.php:271
+#: ../../enterprise/meta/advanced/metasetup.relations.php:388
+msgid "This value will be the one returned by the API"
+msgstr ""
+
+#: ../../enterprise/meta/advanced/metasetup.relations.php:305
+msgid "Import file"
+msgstr ""
+
+#: ../../enterprise/meta/advanced/metasetup.relations.php:319
+msgid "Ip Gateway"
+msgstr ""
+
+#: ../../enterprise/meta/advanced/metasetup.relations.php:320
+#: ../../enterprise/meta/advanced/metasetup.relations.php:564
+msgid "Imei"
+msgstr ""
+
+#: ../../enterprise/meta/advanced/metasetup.relations.php:351
+msgid "Relation"
+msgstr ""
+
+#: ../../enterprise/meta/advanced/metasetup.relations.php:361
+#: ../../enterprise/meta/advanced/metasetup.relations.php:440
+msgid "Node Address"
+msgstr ""
+
+#: ../../enterprise/meta/advanced/metasetup.relations.php:398
+msgid "Insert relation"
+msgstr ""
+
+#: ../../enterprise/meta/advanced/metasetup.relations.php:406
+msgid "Show list relations"
+msgstr ""
+
+#: ../../enterprise/meta/advanced/metasetup.relations.php:462
+msgid "Show Filters"
+msgstr ""
+
+#: ../../enterprise/meta/advanced/metasetup.relations.php:549
+msgid "Node address"
+msgstr ""
+
+#: ../../enterprise/meta/advanced/metasetup.relations.php:562
+msgid "Gateway"
+msgstr ""
+
+#: ../../enterprise/meta/advanced/metasetup.relations.php:642
+msgid "There are no relations yet"
+msgstr ""
+
+#: ../../enterprise/meta/advanced/servers.build_table.php:34
+#: ../../godmode/servers/servers.build_table.php:52
+msgid "There are no servers configured into the database"
+msgstr ""
+
+#: ../../enterprise/meta/advanced/servers.build_table.php:65
+#: ../../godmode/servers/servers.build_table.php:84
+msgid "Lag"
+msgstr ""
+
+#: ../../enterprise/meta/advanced/servers.build_table.php:65
+#: ../../godmode/servers/servers.build_table.php:84
+msgid "Avg. Delay(sec)/Modules delayed"
+msgstr ""
+
+#: ../../enterprise/meta/advanced/servers.build_table.php:66
+#: ../../godmode/servers/servers.build_table.php:85
+msgid "T/Q"
+msgstr ""
+
+#: ../../enterprise/meta/advanced/servers.build_table.php:66
+#: ../../godmode/servers/servers.build_table.php:85
+msgid "Threads / Queued modules currently"
+msgstr ""
+
+#: ../../enterprise/meta/advanced/servers.build_table.php:91
+#: ../../godmode/servers/servers.build_table.php:134
+msgid "This is a master server"
+msgstr ""
+
+#: ../../enterprise/meta/advanced/servers.build_table.php:106
+#: ../../enterprise/meta/advanced/servers.build_table.php:112
+#: ../../godmode/servers/servers.build_table.php:153
+#: ../../godmode/servers/servers.build_table.php:159
+msgid "of"
+msgstr ""
+
+#: ../../enterprise/meta/advanced/servers.build_table.php:134
+#: ../../godmode/servers/servers.build_table.php:260
+msgid "Modules run by this server will stop working. Do you want to continue?"
+msgstr ""
+
+#: ../../enterprise/meta/advanced/servers.build_table.php:160
+#: ../../godmode/servers/servers.build_table.php:287
+msgid "Tactical server information"
+msgstr ""
+
+#: ../../enterprise/meta/advanced/component_management.php:56
+msgid "Module groups Management"
+msgstr ""
+
+#: ../../enterprise/meta/advanced/component_management.php:60
+msgid "OS Management"
+msgstr ""
+
+#: ../../enterprise/meta/advanced/metasetup.translate_string.php:129
+#: ../../enterprise/extensions/translate_string.php:253
+msgid "Translation added successfully"
+msgstr ""
+
+#: ../../enterprise/meta/advanced/metasetup.translate_string.php:131
+#: ../../enterprise/extensions/translate_string.php:255
+msgid "Translation string could not be created"
+msgstr ""
+
+#: ../../enterprise/meta/advanced/metasetup.translate_string.php:144
+#: ../../enterprise/extensions/translate_string.php:268
+msgid "Translation updated successfully"
+msgstr ""
+
+#: ../../enterprise/meta/advanced/metasetup.translate_string.php:146
+#: ../../enterprise/extensions/translate_string.php:270
+msgid "Translation string could not be updated"
+msgstr ""
+
+#: ../../enterprise/meta/advanced/metasetup.translate_string.php:187
+#: ../../enterprise/meta/advanced/metasetup.translate_string.php:188
+#: ../../enterprise/extensions/translate_string.php:313
+#: ../../enterprise/extensions/translate_string.php:314
+#: ../../enterprise/godmode/agentes/collection_manager.php:42
+#: ../../enterprise/godmode/agentes/collections.php:309
+#: ../../enterprise/godmode/policies/policies.php:326
+#: ../../enterprise/godmode/policies/policy_collections.php:248
+msgid "Free text for search (*)"
+msgstr ""
+
+#: ../../enterprise/meta/advanced/metasetup.translate_string.php:206
+#: ../../enterprise/extensions/translate_string.php:334
+msgid "Original string"
+msgstr ""
+
+#: ../../enterprise/meta/advanced/metasetup.translate_string.php:207
+#: ../../enterprise/extensions/translate_string.php:335
+msgid "Translation in selected language"
+msgstr ""
+
+#: ../../enterprise/meta/advanced/metasetup.translate_string.php:208
+#: ../../enterprise/extensions/translate_string.php:336
+msgid "Customize translation"
+msgstr ""
+
+#: ../../enterprise/meta/advanced/collections.editor.php:79
+#: ../../enterprise/meta/advanced/collections.data.php:320
+msgid "This console is not manager of this environment."
+msgstr ""
+
+#: ../../enterprise/meta/advanced/collections.editor.php:128
+#: ../../enterprise/meta/advanced/collections.editor.php:195
+#: ../../enterprise/godmode/agentes/collections.editor.php:161
+#: ../../enterprise/godmode/agentes/collections.editor.php:226
+msgid "Back to file explorer"
+msgstr ""
+
+#: ../../enterprise/meta/advanced/collections.editor.php:217
+#: ../../enterprise/godmode/agentes/collections.editor.php:248
+#: ../../godmode/servers/plugin.php:192
+msgid "Compatibility mode"
+msgstr ""
+
+#: ../../enterprise/meta/advanced/collections.editor.php:269
+#: ../../enterprise/godmode/agentes/collections.editor.php:299
+msgid "Correct update file."
+msgstr ""
+
+#: ../../enterprise/meta/advanced/collections.editor.php:270
+#: ../../enterprise/godmode/agentes/collections.editor.php:300
+msgid "Incorrect update file."
+msgstr ""
+
+#: ../../enterprise/meta/advanced/collections.editor.php:403
+#: ../../enterprise/godmode/agentes/collections.editor.php:447
+msgid "Please, first save a new collection before to upload files."
+msgstr ""
+
+#: ../../enterprise/meta/advanced/metasetup.performance.php:74
+#: ../../godmode/setup/setup.php:125 ../../godmode/setup/setup.php:260
+#: ../../godmode/menu.php:334
+msgid "Performance"
+msgstr ""
+
+#: ../../enterprise/meta/advanced/metasetup.performance.php:94
+msgid "Migration block size"
+msgstr ""
+
+#: ../../enterprise/meta/advanced/metasetup.performance.php:104
+#: ../../godmode/setup/performance.php:612
+msgid "Events response max. execution"
+msgstr ""
+
+#: ../../enterprise/meta/advanced/metasetup.performance.php:106
+msgid "Number of events that will perform the desired action at the same time"
+msgstr ""
+
+#: ../../enterprise/meta/advanced/metasetup.performance.php:142
+#: ../../godmode/setup/performance.php:658
+#, php-format
+msgid ""
+"%s web2image cache system cleanup. It is always cleaned up after perform an "
+"upgrade"
+msgstr ""
+
+#: ../../enterprise/meta/advanced/metasetup.performance.php:147
+#: ../../godmode/setup/performance.php:665
+msgid "PhantomJS cache cleanup "
+msgstr ""
+
+#: ../../enterprise/meta/advanced/metasetup.performance.php:154
+#: ../../godmode/setup/performance.php:672
+msgid "No scheduled"
+msgstr ""
+
+#: ../../enterprise/meta/advanced/metasetup.performance.php:155
+#: ../../godmode/setup/performance.php:673
+msgid "Each week"
+msgstr ""
+
+#: ../../enterprise/meta/advanced/metasetup.performance.php:156
+#: ../../godmode/setup/performance.php:674
+msgid "Each day"
+msgstr ""
+
+#: ../../enterprise/meta/advanced/cron_main.php:75
+#: ../../enterprise/extensions/cron.php:156
+msgid "Cron jobs"
+msgstr ""
+
+#: ../../enterprise/meta/advanced/cron_main.php:87
+#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:551
+msgid "Add new job"
+msgstr ""
+
+#: ../../enterprise/meta/advanced/cron_main.php:173
+#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:244
+msgid "Only administrator users can create this type of functions"
+msgstr ""
+
+#: ../../enterprise/meta/advanced/cron_main.php:244
+#: ../../enterprise/meta/advanced/cron_main.php:278
+#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:356
+msgid "Edit job"
+msgstr ""
+
+#: ../../enterprise/meta/advanced/cron_main.php:333
+msgid ""
+"In order to make backups it is necessary to have mysqldump on your console."
+msgstr ""
+
+#: ../../enterprise/meta/advanced/cron_main.php:407
+msgid "Date format in Pandora is year/month/day"
+msgstr ""
+
+#: ../../enterprise/meta/advanced/cron_main.php:418
+msgid "Time format in Pandora is hours(24h):minutes:seconds"
+msgstr ""
+
+#: ../../enterprise/meta/advanced/collections.data.php:76
+#: ../../enterprise/godmode/agentes/collections.data.php:174
+msgid ""
+"Unable to create the collection. Another collection with the same short name."
+msgstr ""
+
+#: ../../enterprise/meta/advanced/collections.data.php:97
+#: ../../enterprise/meta/advanced/collections.data.php:117
+#: ../../enterprise/godmode/agentes/collections.data.php:197
+#: ../../enterprise/godmode/agentes/collections.data.php:217
+msgid "Unable to create the collection"
+msgstr ""
+
+#: ../../enterprise/meta/advanced/collections.data.php:97
+#: ../../enterprise/godmode/agentes/collections.data.php:197
+msgid "Invalid characters in short name"
+msgstr ""
+
+#: ../../enterprise/meta/advanced/collections.data.php:111
+#: ../../enterprise/godmode/agentes/collections.data.php:59
+#: ../../enterprise/godmode/agentes/collections.data.php:167
+#: ../../enterprise/godmode/agentes/collections.data.php:191
+#: ../../enterprise/godmode/agentes/collections.data.php:211
+#: ../../enterprise/godmode/agentes/collections.data.php:238
+#: ../../enterprise/godmode/agentes/collections.data.php:294
+msgid "Manager configuration &gt; New"
+msgstr ""
+
+#: ../../enterprise/meta/advanced/collections.data.php:142
+#: ../../enterprise/meta/advanced/collections.data.php:190
+#: ../../enterprise/godmode/agentes/collections.data.php:244
+#: ../../enterprise/godmode/agentes/collections.data.php:302
+msgid "Unable to create the collection."
+msgstr ""
+
+#: ../../enterprise/meta/advanced/collections.data.php:163
+#: ../../enterprise/meta/advanced/collections.data.php:309
+#: ../../enterprise/godmode/agentes/collections.data.php:270
+msgid "Correct create collection"
+msgstr ""
+
+#: ../../enterprise/meta/advanced/collections.data.php:231
+#: ../../enterprise/godmode/agentes/collections.editor.php:84
+#: ../../enterprise/godmode/agentes/collections.data.php:106
+#: ../../enterprise/godmode/agentes/collections.data.php:262
+#: ../../enterprise/godmode/agentes/collections.data.php:351
+#: ../../enterprise/godmode/agentes/collections.data.php:367
+#: ../../enterprise/godmode/agentes/collections.data.php:375
+msgid "Manager configuration &gt; Edit "
+msgstr ""
+
+#: ../../enterprise/meta/advanced/collections.data.php:287
+#: ../../enterprise/godmode/agentes/collections.data.php:358
+msgid "Unable to edit the collection, empty name."
+msgstr ""
+
+#: ../../enterprise/meta/advanced/collections.data.php:300
+#: ../../enterprise/godmode/agentes/collections.data.php:373
+msgid "Unable to edit the collection."
+msgstr ""
+
+#: ../../enterprise/meta/advanced/collections.data.php:345
+#: ../../enterprise/godmode/agentes/collections.data.php:438
+msgid "Recreate file"
+msgstr ""
+
+#: ../../enterprise/meta/advanced/collections.data.php:373
+#: ../../enterprise/meta/advanced/collections.data.php:374
+#: ../../enterprise/godmode/agentes/collection_manager.php:166
+#: ../../enterprise/godmode/agentes/collection_manager.php:167
+#: ../../enterprise/godmode/agentes/collection_manager.php:281
+#: ../../enterprise/godmode/agentes/collection_manager.php:282
+#: ../../enterprise/godmode/agentes/collections.data.php:467
+#: ../../enterprise/godmode/agentes/collections.data.php:468
+msgid "Need to regenerate"
+msgstr ""
+
+#: ../../enterprise/meta/advanced/collections.data.php:397
+#: ../../enterprise/godmode/agentes/collections.data.php:492
+msgid "Group:"
+msgstr ""
+
+#: ../../enterprise/meta/advanced/collections.data.php:420
+#: ../../enterprise/godmode/agentes/collections.data.php:514
+msgid "Short name:"
+msgstr ""
+
+#: ../../enterprise/meta/advanced/collections.data.php:426
+#: ../../enterprise/godmode/agentes/collections.data.php:519
+msgid ""
+"The collection's short name is the name of dir in attachment dir and the "
+"package collection."
+msgstr ""
+
+#: ../../enterprise/meta/advanced/collections.data.php:426
+#: ../../enterprise/godmode/agentes/collections.data.php:519
+msgid "Short name must contain only alphanumeric characters, - or _ ."
+msgstr ""
+
+#: ../../enterprise/meta/advanced/collections.data.php:426
+#: ../../enterprise/godmode/agentes/collections.data.php:519
+msgid "Empty for default short name fc_X where X is the collection id."
+msgstr ""
+
+#: ../../enterprise/meta/advanced/license_meta.php:52
+#: ../../godmode/setup/license.php:80
+msgid "Failed to Update license file"
+msgstr ""
+
+#: ../../enterprise/meta/advanced/license_meta.php:59
+msgid "Metaconsole and all nodes license updated"
+msgstr ""
+
+#: ../../enterprise/meta/advanced/license_meta.php:61
+#, php-format
+msgid "Metaconsole license updated but %d of %d node synchronization failed"
+msgstr ""
+
+#: ../../enterprise/meta/advanced/metasetup.php:55
+msgid "Consoles Setup"
+msgstr ""
+
+#: ../../enterprise/meta/advanced/metasetup.php:63
+#: ../../enterprise/meta/advanced/metasetup.php:216
+msgid "General setup"
+msgstr ""
+
+#: ../../enterprise/meta/advanced/metasetup.php:71
+#: ../../enterprise/meta/advanced/metasetup.php:219
+msgid "Passwords setup"
+msgstr ""
+
+#: ../../enterprise/meta/advanced/metasetup.php:91
+#: ../../enterprise/meta/advanced/metasetup.php:227
+#: ../../godmode/setup/setup.php:113 ../../godmode/setup/setup.php:255
+#: ../../godmode/menu.php:331
+msgid "Authentication"
+msgstr ""
+
+#: ../../enterprise/meta/advanced/metasetup.php:101
+#: ../../enterprise/meta/advanced/metasetup.php:231
+msgid "Visual setup"
+msgstr ""
+
+#: ../../enterprise/meta/advanced/metasetup.php:109
+#: ../../enterprise/meta/advanced/metasetup.php:235
+msgid "Performance setup"
+msgstr ""
+
+#: ../../enterprise/meta/advanced/metasetup.php:117
+#: ../../enterprise/meta/advanced/metasetup.php:239
+#: ../../godmode/setup/file_manager.php:46 ../../godmode/menu.php:399
+msgid "File manager"
+msgstr ""
+
+#: ../../enterprise/meta/advanced/metasetup.php:125
+#: ../../enterprise/meta/advanced/metasetup.php:243
+msgid "Strings translation"
+msgstr ""
+
+#: ../../enterprise/meta/advanced/metasetup.php:133
+#: ../../enterprise/meta/advanced/metasetup.php:247
+msgid "Mail"
+msgstr ""
+
+#: ../../enterprise/meta/advanced/metasetup.php:141
+#: ../../enterprise/meta/advanced/metasetup.php:251
+#: ../../godmode/setup/setup.php:204 ../../godmode/setup/setup.php:300
+#: ../../godmode/menu.php:355
+msgid "Notifications"
+msgstr ""
+
+#: ../../enterprise/meta/advanced/metasetup.php:153
+msgid "Relations rules"
+msgstr ""
+
+#: ../../enterprise/meta/advanced/metasetup.php:166
+msgid "Options Update Manager"
+msgstr ""
+
+#: ../../enterprise/meta/advanced/metasetup.php:174
+msgid "Options Update Journal"
+msgstr ""
+
+#: ../../enterprise/meta/advanced/metasetup.php:182
+msgid "Offline Update Manager"
+msgstr ""
+
+#: ../../enterprise/meta/advanced/metasetup.php:190
+msgid "Online Update Manager"
+msgstr ""
+
+#: ../../enterprise/meta/advanced/metasetup.php:211
+msgid "Consoles setup"
+msgstr ""
+
+#: ../../enterprise/meta/advanced/metasetup.php:255
+msgid "Relations Rules"
+msgstr ""
+
+#: ../../enterprise/meta/advanced/metasetup.php:259
+msgid "Online Update Options"
+msgstr ""
+
+#: ../../enterprise/meta/advanced/metasetup.php:263
+msgid "Online Update Journal"
+msgstr ""
+
+#: ../../enterprise/meta/advanced/metasetup.php:268
+msgid "Online Update Offline"
+msgstr ""
+
+#: ../../enterprise/meta/advanced/metasetup.php:275
+msgid "Online Update Online"
+msgstr ""
+
+#: ../../enterprise/meta/advanced/metasetup.setup.php:108
+#: ../../enterprise/godmode/modules/configure_local_component.php:164
+#: ../../godmode/modules/manage_network_components_form_common.php:52
+#: ../../godmode/alerts/configure_alert_template.php:933
+#: ../../godmode/alerts/configure_alert_template.php:974
+#: ../../godmode/alerts/configure_alert_template.php:1137
+#: ../../godmode/alerts/alert_commands.php:141
+#: ../../godmode/alerts/alert_commands.php:182
+#: ../../godmode/users/configure_user.php:1210
+msgid "Basic"
+msgstr ""
+
+#: ../../enterprise/meta/advanced/metasetup.setup.php:145
+#: ../../godmode/setup/setup_general.php:126
+msgid "Database"
+msgstr ""
+
+#: ../../enterprise/meta/advanced/metasetup.setup.php:149
+#, php-format
+msgid ""
+"If SSL is not properly configured, you will lose access to the %s Console. "
+"Do you want to continue?"
+msgstr ""
+
+#: ../../enterprise/meta/advanced/metasetup.setup.php:152
+msgid "Directory where temporary data is stored."
+msgstr ""
+
+#: ../../enterprise/meta/advanced/metasetup.setup.php:158
+msgid "Directory where phantomjs binary file exists and has execution grants."
+msgstr ""
+
+#: ../../enterprise/meta/advanced/metasetup.setup.php:193
+#: ../../godmode/setup/setup_general.php:296
+msgid "Change timezone"
+msgstr ""
+
+#: ../../enterprise/meta/advanced/metasetup.setup.php:198
+#, php-format
+msgid ""
+"Set this value when you need your %s to be accessible via a public URL (for "
+"example using Apache mod_proxy settings)."
+msgstr ""
+
+#: ../../enterprise/meta/advanced/metasetup.setup.php:202
+msgid "Force using defined public URL)."
+msgstr ""
+
+#: ../../enterprise/meta/advanced/metasetup.setup.php:209
+#, php-format
+msgid ""
+"If public URL is not properly configured, you will lose access to the %s "
+"Console. Do you want to continue?"
+msgstr ""
+
+#: ../../enterprise/meta/advanced/metasetup.setup.php:218
+msgid ""
+"Disable the definition of custom filters in the live view. Only existing "
+"filters can be used."
+msgstr ""
+
+#: ../../enterprise/meta/advanced/metasetup.setup.php:222
+msgid "The string modules with several lines show as command output"
+msgstr ""
+
+#: ../../enterprise/meta/advanced/metasetup.setup.php:227
+msgid "Customize sections"
+msgstr ""
+
+#: ../../enterprise/meta/advanced/metasetup.setup.php:248
+msgid "Disabled sections"
+msgstr ""
+
+#: ../../enterprise/meta/advanced/metasetup.setup.php:250
+msgid "Enabled sections"
+msgstr ""
+
+#: ../../enterprise/meta/advanced/metasetup.setup.php:255
+msgid "Push selected sections to enable it"
+msgstr ""
+
+#: ../../enterprise/meta/advanced/metasetup.setup.php:257
+msgid "Pop selected sections to disable it"
+msgstr ""
+
+#: ../../enterprise/meta/advanced/metasetup.setup.php:267
+msgid "Please be careful if you put a password put https access."
+msgstr ""
+
+#: ../../enterprise/meta/advanced/metasetup.setup.php:289
+#: ../../enterprise/godmode/setup/setup.php:98
+msgid " Bytes"
+msgstr ""
+
+#: ../../enterprise/meta/advanced/metasetup.setup.php:291
+msgid "Max. agents to add in policy concurrently"
+msgstr ""
+
+#: ../../enterprise/meta/advanced/metasetup.setup.php:291
+msgid ""
+"Maximum allowed number of agents to be added in policy concurrently (adding "
+"a high number of agents at a time can lead to performance issues)"
+msgstr ""
+
+#: ../../enterprise/meta/advanced/metasetup.setup.php:294
+msgid "Synchronization queue items warn detection"
+msgstr ""
+
+#: ../../enterprise/meta/advanced/metasetup.setup.php:294
+msgid "Number of items in synchronization queue before be notified, per node"
+msgstr ""
+
+#: ../../enterprise/meta/advanced/metasetup.setup.php:298
+msgid "Enable Agent API"
+msgstr ""
+
+#: ../../enterprise/meta/advanced/metasetup.setup.php:320
+msgid "Enable log viewer"
+msgstr ""
+
+#: ../../enterprise/meta/advanced/metasetup.setup.php:324
+msgid "Log location: pandora_console/log/console.log"
+msgstr ""
+
+#: ../../enterprise/meta/advanced/metasetup.setup.php:345
+msgid "Log location: pandora_console/log/audit.log"
+msgstr ""
+
+#: ../../enterprise/meta/advanced/metasetup.consoles.php:105
+#, php-format
+msgid "Node %s is not recognized as metaconsole node."
+msgstr ""
+
+#: ../../enterprise/meta/advanced/metasetup.consoles.php:112
+#, php-format
+msgid "Node %s license missmatch."
+msgstr ""
+
+#: ../../enterprise/meta/advanced/metasetup.consoles.php:119
+#, php-format
+msgid "Cannot connect to node %s"
+msgstr ""
+
+#: ../../enterprise/meta/advanced/metasetup.consoles.php:126
+#, php-format
+msgid "Unknown error synchronizing %s"
+msgstr ""
+
+#: ../../enterprise/meta/advanced/metasetup.consoles.php:136
+#, php-format
+msgid "Synchronized %d nodes, but some failed to synchronize %s"
+msgstr ""
+
+#: ../../enterprise/meta/advanced/metasetup.consoles.php:143
+#, php-format
+msgid "Successfully synchronized all nodes (%d)"
+msgstr ""
+
+#: ../../enterprise/meta/advanced/metasetup.consoles.php:210
+msgid "Node synchronization process failed"
+msgstr ""
+
+#: ../../enterprise/meta/advanced/metasetup.consoles.php:210
+#: ../../enterprise/meta/advanced/metasetup.consoles.php:324
+msgid ""
+"If you are trying to migrate this node to a new metaconsole, please use the "
+"form available at Settings > Enterprise at node console."
+msgstr ""
+
+#: ../../enterprise/meta/advanced/metasetup.consoles.php:220
+#: ../../enterprise/godmode/setup/setup_metaconsole.php:86
+msgid "Could not be update"
+msgstr ""
+
+#: ../../enterprise/meta/advanced/metasetup.consoles.php:260
+msgid "Could not be created, duplicated register found."
+msgstr ""
+
+#: ../../enterprise/meta/advanced/metasetup.consoles.php:322
+msgid "Node synchronization process failed: "
+msgstr ""
+
+#: ../../enterprise/meta/advanced/metasetup.consoles.php:322
+#: ../../godmode/setup/license.php:101
+msgid "Unknown error"
+msgstr ""
+
+#: ../../enterprise/meta/advanced/metasetup.consoles.php:343
+msgid "Successfully registered"
+msgstr ""
+
+#: ../../enterprise/meta/advanced/metasetup.consoles.php:344
+#, php-format
+msgid "Could not be registered %s"
+msgstr ""
+
+#: ../../enterprise/meta/advanced/metasetup.consoles.php:370
+msgid "Successfully delete"
+msgstr ""
+
+#: ../../enterprise/meta/advanced/metasetup.consoles.php:371
+msgid "Could not be delete"
+msgstr ""
+
+#: ../../enterprise/meta/advanced/metasetup.consoles.php:413
+#, php-format
+msgid "Could not be disabled: %s"
+msgstr ""
+
+#: ../../enterprise/meta/advanced/metasetup.consoles.php:429
+#, php-format
+msgid ""
+"System is centralised, but you just modify nodes registered, please go to %s "
+"to perform a database merge process."
+msgstr ""
+
+#: ../../enterprise/meta/advanced/metasetup.consoles.php:432
+msgid "This node will not be usable until unifying the environment"
+msgstr ""
+
+#: ../../enterprise/meta/advanced/metasetup.consoles.php:507
+#, php-format
+msgid "%s Metaconsole item edition"
+msgstr ""
+
+#: ../../enterprise/meta/advanced/metasetup.consoles.php:513
+msgid "Custom label to identify this setup."
+msgstr ""
+
+#: ../../enterprise/meta/advanced/metasetup.consoles.php:516
+#: ../../enterprise/meta/advanced/metasetup.consoles.php:839
+#: ../../enterprise/godmode/setup/setup_metaconsole.php:206
+msgid "Console URL"
+msgstr ""
+
+#: ../../enterprise/meta/advanced/metasetup.consoles.php:516
+#, php-format
+msgid "Full path to %s console (without index.php). Example %s"
+msgstr ""
+
+#: ../../enterprise/meta/advanced/metasetup.consoles.php:519
+#: ../../enterprise/godmode/setup/setup_metaconsole.php:202
+msgid "Auth token"
+msgstr ""
+
+#: ../../enterprise/meta/advanced/metasetup.consoles.php:520
+#, php-format
+msgid ""
+"Token previously configured on the destination %s console in order to use "
+"delegated authentification."
+msgstr ""
+
+#: ../../enterprise/meta/advanced/metasetup.consoles.php:544
+#: ../../enterprise/godmode/setup/setup_metaconsole.php:233
+msgid "Console User"
+msgstr ""
+
+#: ../../enterprise/meta/advanced/metasetup.consoles.php:553
+#: ../../enterprise/godmode/setup/setup_metaconsole.php:237
+msgid "Console Password"
+msgstr ""
+
+#: ../../enterprise/meta/advanced/metasetup.consoles.php:564
+#: ../../enterprise/meta/advanced/metasetup.consoles.php:840
+#: ../../enterprise/godmode/setup/setup_metaconsole.php:215
+#: ../../enterprise/godmode/setup/setup_metaconsole.php:275
+msgid "DB Host"
+msgstr ""
+
+#: ../../enterprise/meta/advanced/metasetup.consoles.php:573
+#: ../../enterprise/godmode/setup/setup_metaconsole.php:219
+msgid "DB Name"
+msgstr ""
+
+#: ../../enterprise/meta/advanced/metasetup.consoles.php:582
+#: ../../enterprise/godmode/setup/setup_metaconsole.php:224
+msgid "DB User"
+msgstr ""
+
+#: ../../enterprise/meta/advanced/metasetup.consoles.php:591
+#: ../../enterprise/godmode/setup/setup_metaconsole.php:228
+msgid "DB Password"
+msgstr ""
+
+#: ../../enterprise/meta/advanced/metasetup.consoles.php:613
+msgid "Define database connection from Pandora FMS node to this Metaconsole"
+msgstr ""
+
+#: ../../enterprise/meta/advanced/metasetup.consoles.php:635
+msgid "Metaconsole DB Host"
+msgstr ""
+
+#: ../../enterprise/meta/advanced/metasetup.consoles.php:644
+msgid "Metaconsole DB Name"
+msgstr ""
+
+#: ../../enterprise/meta/advanced/metasetup.consoles.php:653
+msgid "Metaconsole DB User"
+msgstr ""
+
+#: ../../enterprise/meta/advanced/metasetup.consoles.php:662
+msgid "Metaconsole DB Password"
+msgstr ""
+
+#: ../../enterprise/meta/advanced/metasetup.consoles.php:673
+#: ../../enterprise/godmode/setup/setup.php:250
+msgid "Metaconsole DB port"
+msgstr ""
+
+#: ../../enterprise/meta/advanced/metasetup.consoles.php:726
+msgid "Register empty node"
+msgstr ""
+
+#: ../../enterprise/meta/advanced/metasetup.consoles.php:732
+msgid "Register node with data to merge"
+msgstr ""
+
+#: ../../enterprise/meta/advanced/metasetup.consoles.php:769
+msgid "Node data will be wiped out"
+msgstr ""
+
+#: ../../enterprise/meta/advanced/metasetup.consoles.php:770
+msgid ""
+"Information contained in this node is not needed. Node information will be "
+"erased, and replaced with new data from this metaconsole automatically after "
+"register the node. Are you sure?"
+msgstr ""
+
+#: ../../enterprise/meta/advanced/metasetup.consoles.php:786
+msgid "Node data will be merged"
+msgstr ""
+
+#: ../../enterprise/meta/advanced/metasetup.consoles.php:787
+msgid ""
+"Information contained in this node is useful. After register the node, you "
+"must launch a merge process from command center, which will combine "
+"information in current environment with information contained in this new "
+"node. Are you sure?"
+msgstr ""
+
+#: ../../enterprise/meta/advanced/metasetup.consoles.php:832
+#: ../../enterprise/godmode/setup/setup_metaconsole.php:272
+msgid "Compatibility"
+msgstr ""
+
+#: ../../enterprise/meta/advanced/metasetup.consoles.php:833
+msgid "Event replication"
+msgstr ""
+
+#: ../../enterprise/meta/advanced/metasetup.consoles.php:836
+msgid "Database sync"
+msgstr ""
+
+#: ../../enterprise/meta/advanced/metasetup.consoles.php:903
+msgid "New node"
+msgstr ""
+
+#: ../../enterprise/meta/advanced/metasetup.consoles.php:935
+msgid "Synchronize all"
+msgstr ""
+
+#: ../../enterprise/meta/advanced/metasetup.password.php:73
+msgid "Passwords"
+msgstr ""
+
+#: ../../enterprise/meta/advanced/metasetup.password.php:102
+#: ../../enterprise/godmode/setup/setup.php:484
+msgid " Caracters"
+msgstr ""
+
+#: ../../enterprise/meta/advanced/metasetup.password.php:105
+msgid "Set 0 if never expire."
+msgstr ""
+
+#: ../../enterprise/meta/advanced/metasetup.password.php:106
+#: ../../enterprise/godmode/setup/setup.php:513
+msgid " Days"
+msgstr ""
+
+#: ../../enterprise/meta/advanced/metasetup.password.php:110
+#: ../../enterprise/godmode/setup/setup.php:533
+msgid " Minutes"
+msgstr ""
+
+#: ../../enterprise/meta/advanced/metasetup.password.php:113
+msgid "Two attempts minimum"
+msgstr ""
+
+#: ../../enterprise/meta/advanced/metasetup.password.php:114
+#: ../../enterprise/godmode/setup/setup.php:544
+msgid " Attempts"
+msgstr ""
+
+#: ../../enterprise/meta/advanced/collections.php:111
+msgid "Collection has been deleted"
+msgstr ""
+
+#: ../../enterprise/meta/advanced/collections.php:122
+#: ../../enterprise/meta/advanced/collections.php:138
+#: ../../enterprise/godmode/agentes/collection_manager.php:94
+#: ../../enterprise/godmode/agentes/collections.php:188
+#: ../../enterprise/godmode/agentes/collections.php:210
+msgid "Successful create collection package."
+msgstr ""
+
+#: ../../enterprise/meta/advanced/collections.php:139
+#: ../../enterprise/godmode/agentes/collection_manager.php:95
+#: ../../enterprise/godmode/agentes/collections.php:211
+msgid "Can not create collection package."
+msgstr ""
+
+#: ../../enterprise/meta/advanced/collections.php:154
+msgid "To manage collections you must activate centralized management"
+msgstr ""
+
+#: ../../enterprise/meta/advanced/collections.php:167
+#: ../../enterprise/meta/advanced/collections.php:173
+#: ../../godmode/users/user_list.php:402 ../../godmode/users/user_list.php:406
+msgid "Search by username, fullname or email"
+msgstr ""
+
+#: ../../enterprise/meta/advanced/collections.php:199
+#: ../../godmode/users/user_list.php:451
+msgid "Users control filter"
+msgstr ""
+
+#: ../../enterprise/meta/advanced/collections.php:208
+#: ../../enterprise/godmode/agentes/collections.php:245
+msgid "Error: The main directory of collections does not exist."
+msgstr ""
+
+#: ../../enterprise/meta/advanced/collections.php:312
+#: ../../enterprise/godmode/agentes/collection_manager.php:110
+#: ../../enterprise/godmode/agentes/collections.php:328
+#: ../../enterprise/godmode/policies/policy_collections.php:170
+#: ../../enterprise/godmode/policies/policy_collections.php:264
+msgid "Short Name"
+msgstr ""
+
+#: ../../enterprise/meta/advanced/collections.php:373
+#: ../../enterprise/godmode/agentes/collections.php:360
+msgid "Are you sure to delete?"
+msgstr ""
+
+#: ../../enterprise/meta/advanced/collections.php:378
+#: ../../enterprise/meta/advanced/collections.php:379
+#: ../../enterprise/godmode/agentes/collections.php:361
+msgid "Delete collection"
+msgstr ""
+
+#: ../../enterprise/meta/advanced/collections.php:388
+#: ../../enterprise/godmode/agentes/collections.php:368
+msgid "Are you sure to re-apply?"
+msgstr ""
+
+#: ../../enterprise/meta/advanced/collections.php:389
+#: ../../enterprise/godmode/agentes/collections.php:369
+msgid "Re-Apply changes"
+msgstr ""
+
+#: ../../enterprise/meta/advanced/collections.php:396
+#: ../../enterprise/godmode/agentes/collections.php:376
+msgid "Are you sure to apply?"
+msgstr ""
+
+#: ../../enterprise/meta/advanced/collections.php:397
+#: ../../enterprise/godmode/agentes/collections.php:377
+msgid "Apply changes"
+msgstr ""
+
+#: ../../enterprise/meta/advanced/metasetup.visual.php:98
+#: ../../godmode/setup/setup.php:137 ../../godmode/setup/setup.php:266
+#: ../../godmode/menu.php:337
+msgid "Visual styles"
+msgstr ""
+
+#: ../../enterprise/meta/advanced/metasetup.visual.php:109
+#: ../../godmode/setup/setup_visuals.php:1257
+msgid "Example"
+msgstr ""
+
+#: ../../enterprise/meta/advanced/metasetup.visual.php:136
+#: ../../godmode/setup/setup_visuals.php:1275
+msgid "Timestamp, time comparison, or compact mode"
+msgstr ""
+
+#: ../../enterprise/meta/advanced/metasetup.visual.php:139
+#: ../../godmode/setup/setup_visuals.php:1277
+msgid "Comparation in rollover"
+msgstr ""
+
+#: ../../enterprise/meta/advanced/metasetup.visual.php:148
+#: ../../godmode/setup/setup_visuals.php:1278
+msgid "Timestamp in rollover"
+msgstr ""
+
+#: ../../enterprise/meta/advanced/metasetup.visual.php:157
+#: ../../godmode/setup/setup_visuals.php:1279
+msgid "Compact mode"
+msgstr ""
+
+#: ../../enterprise/meta/advanced/metasetup.visual.php:197
+msgid "Data precision for reports and visual consoles"
+msgstr ""
+
+#: ../../enterprise/meta/advanced/metasetup.visual.php:200
+msgid "Precision must be a integer number between 0 and 5"
+msgstr ""
+
+#: ../../enterprise/meta/advanced/metasetup.visual.php:219
+msgid "Show percentile 95 in graphs"
+msgstr ""
+
+#: ../../enterprise/meta/advanced/metasetup.visual.php:291
+#: ../../godmode/setup/setup_visuals.php:951
+msgid "On Boolean graphs"
+msgstr ""
+
+#: ../../enterprise/meta/advanced/metasetup.visual.php:294
+msgid "Graph TIP view"
+msgstr ""
+
+#: ../../enterprise/meta/advanced/metasetup.visual.php:295
+msgid "This option may cause performance issues"
+msgstr ""
+
+#: ../../enterprise/meta/advanced/metasetup.visual.php:309
+#: ../../godmode/setup/setup_visuals.php:970
+msgid "Show only average by default"
+msgstr ""
+
+#: ../../enterprise/meta/advanced/metasetup.visual.php:310
+#: ../../godmode/setup/setup_visuals.php:971
+msgid "Show MAX/AVG/MIN by default"
+msgstr ""
+
+#: ../../enterprise/meta/advanced/metasetup.visual.php:312
+#: ../../godmode/setup/setup_visuals.php:967
+msgid "Graph mode"
+msgstr ""
+
+#: ../../enterprise/meta/advanced/metasetup.visual.php:332
+#: ../../godmode/setup/setup_visuals.php:986
+msgid "Zoom graphs:"
+msgstr ""
+
+#: ../../enterprise/meta/advanced/metasetup.visual.php:346
+#: ../../godmode/setup/setup_visuals.php:901
+msgid "Type of module charts"
+msgstr ""
+
+#: ../../enterprise/meta/advanced/metasetup.visual.php:369
+msgid "The number of elements retrieved for each instance in some views."
+msgstr ""
+
+#: ../../enterprise/meta/advanced/metasetup.visual.php:390
+msgid "Add new custom value to intervals"
+msgstr ""
+
+#: ../../enterprise/meta/advanced/metasetup.visual.php:505
+msgid ""
+"You can place your favicon into the folder images/custom_favicon/. This file "
+"should be in .ico format with a size of 16x16."
+msgstr ""
+
+#: ../../enterprise/meta/advanced/metasetup.visual.php:531
+#: ../../godmode/setup/setup_visuals.php:212
+msgid "Custom background logo"
+msgstr ""
+
+#: ../../enterprise/meta/advanced/metasetup.visual.php:533
+msgid "You can place your custom images into the folder images/backgrounds/"
+msgstr ""
+
+#: ../../enterprise/meta/advanced/metasetup.visual.php:576
+#: ../../godmode/setup/setup_visuals.php:279
+msgid "Custom logo (menu)"
+msgstr ""
+
+#: ../../enterprise/meta/advanced/metasetup.visual.php:607
+#: ../../godmode/setup/setup_visuals.php:284
+msgid "Custom logo collapsed (menu)"
+msgstr ""
+
+#: ../../enterprise/meta/advanced/metasetup.visual.php:638
+#: ../../godmode/setup/setup_visuals.php:289
+msgid "Custom logo (header white background)"
+msgstr ""
+
+#: ../../enterprise/meta/advanced/metasetup.visual.php:667
+#: ../../godmode/setup/setup_visuals.php:328
+msgid "Custom logo (login)"
+msgstr ""
+
+#: ../../enterprise/meta/advanced/metasetup.visual.php:696
+#: ../../godmode/setup/setup_visuals.php:367
+msgid "Custom Splash (login)"
+msgstr ""
+
+#: ../../enterprise/meta/advanced/metasetup.visual.php:746
+#: ../../godmode/setup/setup_visuals.php:471
+msgid "Title (header)"
+msgstr ""
+
+#: ../../enterprise/meta/advanced/metasetup.visual.php:750
+#: ../../godmode/setup/setup_visuals.php:476
+msgid "Subtitle (header)"
+msgstr ""
+
+#: ../../enterprise/meta/advanced/metasetup.visual.php:754
+#: ../../godmode/setup/setup_visuals.php:482
+msgid "Title 1 (login)"
+msgstr ""
+
+#: ../../enterprise/meta/advanced/metasetup.visual.php:765
+#: ../../godmode/setup/setup_visuals.php:489
+msgid "Title 2 (login)"
+msgstr ""
+
+#: ../../enterprise/meta/advanced/metasetup.visual.php:815
+msgid "Graphs font family"
+msgstr ""
+
+#: ../../enterprise/meta/advanced/metasetup.visual.php:836
+#: ../../godmode/setup/setup_visuals.php:1020
+msgid "Legacy Visual Console View"
+msgstr ""
+
+#: ../../enterprise/meta/advanced/metasetup.visual.php:838
+msgid "To use the old view when using the Visual Console visor"
+msgstr ""
+
+#: ../../enterprise/meta/advanced/metasetup.visual.php:857
+#: ../../godmode/setup/setup_visuals.php:1038
+msgid "Default cache expiration"
+msgstr ""
+
+#: ../../enterprise/meta/advanced/metasetup.visual.php:877
+msgid "This interval will affect to Visual Console pages"
+msgstr ""
+
+#: ../../enterprise/meta/advanced/metasetup.visual.php:903
+#: ../../godmode/setup/setup_visuals.php:1451
+msgid "Data multiplier to use in graphs/data"
+msgstr ""
+
+#: ../../enterprise/meta/advanced/metasetup.visual.php:907
+#: ../../godmode/setup/setup_visuals.php:1453
+msgid "Use 1024 when module unit are bytes"
+msgstr ""
+
+#: ../../enterprise/meta/advanced/metasetup.visual.php:908
+#: ../../godmode/setup/setup_visuals.php:1454
+msgid "Use always 1000"
+msgstr ""
+
+#: ../../enterprise/meta/advanced/metasetup.visual.php:909
+#: ../../godmode/setup/setup_visuals.php:1455
+msgid "Use always 1024"
+msgstr ""
+
+#: ../../enterprise/meta/advanced/metasetup.visual.php:933
+msgid "Reports configuration"
+msgstr ""
+
+#: ../../enterprise/meta/advanced/metasetup.visual.php:939
+#: ../../godmode/setup/setup_visuals.php:1097
+msgid "Show report info with description"
+msgstr ""
+
+#: ../../enterprise/meta/advanced/metasetup.visual.php:940
+msgid ""
+"Custom report description info. It will be applied to all reports and "
+"templates by default."
+msgstr ""
+
+#: ../../enterprise/meta/advanced/metasetup.visual.php:951
+#: ../../godmode/setup/setup_visuals.php:1106
+msgid "Custom report front page"
+msgstr ""
+
+#: ../../enterprise/meta/advanced/metasetup.visual.php:952
+msgid ""
+"Custom report front page. It will be applied to all reports and templates by "
+"default."
+msgstr ""
+
+#: ../../enterprise/meta/advanced/metasetup.visual.php:971
+msgid ""
+"This is the height in pixels of the module graph or custom graph in the "
+"reports (only: HTML)"
+msgstr ""
+
+#: ../../enterprise/meta/advanced/metasetup.visual.php:1038
+msgid ""
+"A long interval description is for example 10 hours, 20 minutes 33 seconds”, "
+"a short one is 10h 20m 33s"
+msgstr ""
+
+#: ../../enterprise/meta/advanced/metasetup.visual.php:1054
+#: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:128
+#: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:131
+msgid ""
+"The path of custom logos is 'images/custom_logo' in the console "
+"installation. You can upload more files (ONLY JPEG AND PNG) with the upload "
+"tool."
+msgstr ""
+
+#: ../../enterprise/meta/advanced/metasetup.visual.php:1318
+#: ../../godmode/setup/setup_visuals.php:1752
+msgid "Logo preview"
+msgstr ""
+
+#: ../../enterprise/meta/advanced/metasetup.visual.php:1340
+#: ../../godmode/setup/setup_visuals.php:1782
+msgid "Splash Preview"
+msgstr ""
+
+#: ../../enterprise/meta/advanced/metasetup.visual.php:1345
+#: ../../godmode/setup/setup_visuals.php:1806
+msgid "Background preview"
+msgstr ""
+
+#: ../../enterprise/meta/advanced/links.php:47 ../../godmode/setup/links.php:42
+msgid "There was a problem creating link"
+msgstr ""
+
+#: ../../enterprise/meta/advanced/links.php:60
+msgid "The link was not updated, the data is identical"
+msgstr ""
+
+#: ../../enterprise/meta/advanced/links.php:68 ../../godmode/setup/links.php:61
+msgid "There was a problem modifying link"
+msgstr ""
+
+#: ../../enterprise/meta/advanced/links.php:82 ../../godmode/setup/links.php:74
+msgid "There was a problem deleting link"
+msgstr ""
+
+#: ../../enterprise/meta/advanced/links.php:100
+msgid "Link Name error"
+msgstr ""
+
+#: ../../enterprise/meta/advanced/links.php:127
+#: ../../enterprise/meta/advanced/links.php:156
+#: ../../godmode/setup/links.php:116 ../../godmode/setup/links.php:145
+msgid "Link name"
+msgstr ""
+
+#: ../../enterprise/meta/advanced/links.php:130
+#: ../../enterprise/godmode/policies/policy_linking.php:204
+#: ../../godmode/setup/links.php:119
+msgid "Link"
+msgstr ""
+
+#: ../../enterprise/meta/advanced/links.php:152
+#: ../../godmode/setup/links.php:141
+msgid "There isn't links"
+msgstr ""
+
+#: ../../enterprise/meta/index.php:848
+#, php-format
+msgid ""
+"System is not centralised, please go to %s to perform a database merge "
+"process."
+msgstr ""
+
+#: ../../enterprise/meta/index.php:916
+#, php-format
+msgid "There are nodes with different MR than this (%d):"
+msgstr ""
+
+#: ../../enterprise/meta/agentsearch.php:121
+msgid "Search results for"
+msgstr ""
+
+#: ../../enterprise/meta/agentsearch.php:301
+msgid "There are no agents included in this group"
+msgstr ""
+
+#: ../../enterprise/meta/agentsearch.php:450
+msgid "There are no policies included in this group"
+msgstr ""
+
+#: ../../enterprise/extensions/disabled/check_acls.php:16
+msgid "ACL users for this agent"
+msgstr ""
+
+#: ../../enterprise/extensions/disabled/check_acls.php:49
+#: ../../enterprise/extensions/disabled/check_acls.php:136
+msgid "Agents reading"
+msgstr ""
+
+#: ../../enterprise/extensions/disabled/check_acls.php:51
+#: ../../enterprise/extensions/disabled/check_acls.php:138
+msgid "Agents disable"
+msgstr ""
+
+#: ../../enterprise/extensions/disabled/check_acls.php:52
+#: ../../enterprise/extensions/disabled/check_acls.php:139
+msgid "Alerts editing"
+msgstr ""
+
+#: ../../enterprise/extensions/disabled/check_acls.php:53
+#: ../../enterprise/extensions/disabled/check_acls.php:140
+#: ../../godmode/menu.php:125
+msgid "Users management"
+msgstr ""
+
+#: ../../enterprise/extensions/disabled/check_acls.php:54
+#: ../../enterprise/extensions/disabled/check_acls.php:141
+msgid "Database management"
+msgstr ""
+
+#: ../../enterprise/extensions/disabled/check_acls.php:55
+#: ../../enterprise/extensions/disabled/check_acls.php:142
+msgid "Alerts management"
+msgstr ""
+
+#: ../../enterprise/extensions/disabled/check_acls.php:56
+#: ../../enterprise/extensions/disabled/check_acls.php:143
+msgid "Reports reading"
+msgstr ""
+
+#: ../../enterprise/extensions/disabled/check_acls.php:57
+#: ../../enterprise/extensions/disabled/check_acls.php:144
+msgid "Reports writing"
+msgstr ""
+
+#: ../../enterprise/extensions/disabled/check_acls.php:58
+#: ../../enterprise/extensions/disabled/check_acls.php:145
+msgid "Reports management"
+msgstr ""
+
+#: ../../enterprise/extensions/disabled/check_acls.php:59
+#: ../../enterprise/extensions/disabled/check_acls.php:146
+msgid "Events reading"
+msgstr ""
+
+#: ../../enterprise/extensions/disabled/check_acls.php:60
+#: ../../enterprise/extensions/disabled/check_acls.php:147
+msgid "Events writing"
+msgstr ""
+
+#: ../../enterprise/extensions/disabled/check_acls.php:61
+#: ../../enterprise/extensions/disabled/check_acls.php:148
+msgid "Events management"
+msgstr ""
+
+#: ../../enterprise/extensions/disabled/check_acls.php:62
+#: ../../enterprise/extensions/disabled/check_acls.php:149
+msgid "Systems management"
+msgstr ""
+
+#: ../../enterprise/extensions/disabled/check_acls.php:112
+msgid "There are no defined users"
+msgstr ""
+
+#: ../../enterprise/extensions/disabled/check_acls.php:134
+#: ../../godmode/menu.php:117
+msgid "Module tags"
+msgstr ""
+
+#: ../../enterprise/extensions/disabled/check_acls.php:197
+msgid "ACL module tags for the modules in this agent"
+msgstr ""
+
+#: ../../enterprise/extensions/disabled/check_acls.php:208
+msgid "Only admin users can see this section."
+msgstr ""
+
+#: ../../enterprise/extensions/disabled/check_acls.php:215
+msgid "Check ACL"
+msgstr ""
+
+#: ../../enterprise/extensions/csv_import_group/main.php:23
+#: ../../enterprise/extensions/csv_import_group.php:69
+msgid "CSV import group"
+msgstr ""
+
+#: ../../enterprise/extensions/csv_import_group/main.php:48
+#, php-format
+msgid "Created group %s"
+msgstr ""
+
+#: ../../enterprise/extensions/csv_import_group/main.php:49
+#, php-format
+msgid "Could not create group %s"
+msgstr ""
+
+#: ../../enterprise/extensions/csv_import_group/main.php:56
+msgid "File processed"
+msgstr ""
+
+#: ../../enterprise/extensions/csv_import_group/main.php:59
+msgid "Please syncronize groups to nodes"
+msgstr ""
+
+#: ../../enterprise/extensions/resource_registration/functions.php:61
+#, php-format
+msgid "Error create '%s' policy, the name exist and there aren't free name."
+msgstr ""
+
+#: ../../enterprise/extensions/resource_registration/functions.php:69
+#, php-format
+msgid "Warning create '%s' policy, the name exist, the policy have a name %s."
+msgstr ""
+
+#: ../../enterprise/extensions/resource_registration/functions.php:78
+msgid "Error the policy haven't name."
+msgstr ""
+
+#: ../../enterprise/extensions/resource_registration/functions.php:99
+#, php-format
+msgid "Success create '%s' policy."
+msgstr ""
+
+#: ../../enterprise/extensions/resource_registration/functions.php:100
+#, php-format
+msgid "Error create '%s' policy."
+msgstr ""
+
+#: ../../enterprise/extensions/resource_registration/functions.php:142
+#, php-format
+msgid "Error add '%s' agent. The agent does not exist"
+msgstr ""
+
+#: ../../enterprise/extensions/resource_registration/functions.php:147
+#, php-format
+msgid "Success add '%s' agent."
+msgstr ""
+
+#: ../../enterprise/extensions/resource_registration/functions.php:148
+#, php-format
+msgid "Error add '%s' agent."
+msgstr ""
+
+#: ../../enterprise/extensions/resource_registration/functions.php:167
+msgid "The collection does not exist"
+msgstr ""
+
+#: ../../enterprise/extensions/resource_registration/functions.php:172
+#, php-format
+msgid "Success add '%s' collection."
+msgstr ""
+
+#: ../../enterprise/extensions/resource_registration/functions.php:173
+#, php-format
+msgid "Error add '%s' collection."
+msgstr ""
+
+#: ../../enterprise/extensions/resource_registration/functions.php:191
+#, php-format
+msgid "Success add '%s' agent plugin."
+msgstr ""
+
+#: ../../enterprise/extensions/resource_registration/functions.php:192
+#, php-format
+msgid "Error add '%s' agent plugin."
+msgstr ""
+
+#: ../../enterprise/extensions/resource_registration/functions.php:205
+msgid "Error add the module, haven't type."
+msgstr ""
+
+#: ../../enterprise/extensions/resource_registration/functions.php:411
+#: ../../enterprise/extensions/resource_registration/functions.php:480
+#: ../../enterprise/extensions/resource_registration/functions.php:581
+#: ../../enterprise/extensions/resource_registration/functions.php:637
+msgid "Error add the module, error in tag component."
+msgstr ""
+
+#: ../../enterprise/extensions/resource_registration/functions.php:693
+msgid "Error add the module plugin importation, plugin is not registered"
+msgstr ""
+
+#: ../../enterprise/extensions/resource_registration/functions.php:703
+#, php-format
+msgid "Success add '%s' module."
+msgstr ""
+
+#: ../../enterprise/extensions/resource_registration/functions.php:704
+#, php-format
+msgid "Error add '%s' module."
+msgstr ""
+
+#: ../../enterprise/extensions/resource_registration/functions.php:718
+#, php-format
+msgid "Error add the alert, the template '%s' don't exist."
+msgstr ""
+
+#: ../../enterprise/extensions/resource_registration/functions.php:731
+#: ../../enterprise/extensions/resource_registration/functions.php:749
+#, php-format
+msgid "Error add the alert, the module '%s' don't exist."
+msgstr ""
+
+#: ../../enterprise/extensions/resource_registration/functions.php:771
+#, php-format
+msgid "Success add '%s' alert."
+msgstr ""
+
+#: ../../enterprise/extensions/resource_registration/functions.php:772
+#, php-format
+msgid "Error add '%s' alert."
+msgstr ""
+
+#: ../../enterprise/extensions/resource_registration/functions.php:798
+#, php-format
+msgid "Error add the alert, the action '%s' don't exist."
+msgstr ""
+
+#: ../../enterprise/extensions/resource_registration/functions.php:817
+#, php-format
+msgid "Success add '%s' action."
+msgstr ""
+
+#: ../../enterprise/extensions/resource_registration/functions.php:818
+#: ../../extensions/resource_registration.php:436
+#: ../../extensions/resource_registration.php:458
+#: ../../extensions/resource_registration.php:469
+#, php-format
+msgid "Error add '%s' action."
+msgstr ""
+
+#: ../../enterprise/extensions/resource_registration/functions.php:854
+msgid "The inventory module does not exist"
+msgstr ""
+
+#: ../../enterprise/extensions/resource_registration/functions.php:859
+#, php-format
+msgid "Success add '%s' inventory module."
+msgstr ""
+
+#: ../../enterprise/extensions/resource_registration/functions.php:860
+#, php-format
+msgid "Error add '%s' inventory module."
+msgstr ""
+
+#: ../../enterprise/extensions/translate_string.php:168
+#: ../../enterprise/extensions/translate_string.php:380
+msgid "Translate string"
+msgstr ""
+
+#: ../../enterprise/extensions/vmware.php:46
+msgid "Failed to initialize VMware extension."
+msgstr ""
+
+#: ../../enterprise/extensions/vmware.php:89
+msgid "VMware View"
+msgstr ""
+
+#: ../../enterprise/extensions/csv_import_group.php:50
+#, php-format
+msgid ""
+"This node is configured with centralized mode. All group information is read "
+"only. Go to %s to import the CSV."
+msgstr ""
+
+#: ../../enterprise/extensions/csv_import_group.php:83
+msgid "CSV group import"
+msgstr ""
+
+#: ../../enterprise/extensions/resource_exportation/functions.php:20
+msgid "Export agents"
+msgstr ""
+
+#: ../../enterprise/extensions/vmware/vmware_view.php:61
+msgid "Top 5 VMs CPU Usage"
+msgstr ""
+
+#: ../../enterprise/extensions/vmware/vmware_view.php:70
+msgid "Top 5 VMs Memory Usage"
+msgstr ""
+
+#: ../../enterprise/extensions/vmware/vmware_view.php:82
+msgid "Top 5 VMs Provisioning Usage"
+msgstr ""
+
+#: ../../enterprise/extensions/vmware/vmware_view.php:91
+msgid "Top 5 VMs Network Usage"
+msgstr ""
+
+#: ../../enterprise/extensions/vmware/vmware_view.php:684
+msgid "Host ESX"
+msgstr ""
+
+#: ../../enterprise/extensions/vmware/vmware_view.php:1036
+msgid "CPU Usage"
+msgstr ""
+
+#: ../../enterprise/extensions/vmware/vmware_view.php:1046
+msgid "Memory Usage"
+msgstr ""
+
+#: ../../enterprise/extensions/vmware/vmware_view.php:1056
+msgid "Disk I/O Rate"
+msgstr ""
+
+#: ../../enterprise/extensions/vmware/vmware_view.php:1066
+msgid "Network Usage"
+msgstr ""
+
+#: ../../enterprise/extensions/vmware/vmware_view.php:1169
+msgid "Settings updated "
+msgstr ""
+
+#: ../../enterprise/extensions/vmware/vmware_view.php:1171
+msgid "No changes in settings "
+msgstr ""
+
+#: ../../enterprise/extensions/vmware/vmware_view.php:1179
+msgid "CPU usage graphs"
+msgstr ""
+
+#: ../../enterprise/extensions/vmware/vmware_view.php:1180
+#: ../../enterprise/extensions/vmware/vmware_view.php:1186
+#: ../../enterprise/extensions/vmware/vmware_view.php:1192
+#: ../../enterprise/extensions/vmware/vmware_view.php:1198
+msgid "Force minimum value"
+msgstr ""
+
+#: ../../enterprise/extensions/vmware/vmware_view.php:1182
+#: ../../enterprise/extensions/vmware/vmware_view.php:1188
+#: ../../enterprise/extensions/vmware/vmware_view.php:1194
+#: ../../enterprise/extensions/vmware/vmware_view.php:1200
+msgid "Force maximum value"
+msgstr ""
+
+#: ../../enterprise/extensions/vmware/vmware_view.php:1185
+msgid "Memory usage graphs"
+msgstr ""
+
+#: ../../enterprise/extensions/vmware/vmware_view.php:1191
+msgid "Provisioning Usage graphs"
+msgstr ""
+
+#: ../../enterprise/extensions/vmware/vmware_view.php:1197
+msgid "Network usage graphs"
+msgstr ""
+
+#: ../../enterprise/extensions/vmware/vmware_view.php:1208
+msgid "Map items"
+msgstr ""
+
+#: ../../enterprise/extensions/vmware/vmware_view.php:1209
+msgid "Show datastores"
+msgstr ""
+
+#: ../../enterprise/extensions/vmware/vmware_view.php:1216
+msgid "Show ESXis"
+msgstr ""
+
+#: ../../enterprise/extensions/vmware/vmware_view.php:1223
+msgid "Show VMs"
+msgstr ""
+
+#: ../../enterprise/extensions/vmware/vmware_view.php:1230
+msgid "Font size (px)"
+msgstr ""
+
+#: ../../enterprise/extensions/vmware/vmware_view.php:1232
+msgid "Node radius (px)"
+msgstr ""
+
+#: ../../enterprise/extensions/vmware/vmware_view.php:1234
+msgid "Node separation (rate)"
+msgstr ""
+
+#: ../../enterprise/extensions/vmware/vmware_view.php:1239
+msgid ""
+"Looking for VMware configuration? You can configure several tasks using "
+"Discovery Applications."
+msgstr ""
+
+#: ../../enterprise/extensions/vmware/vmware_view.php:1247
+msgid "Graph settings"
+msgstr ""
+
+#: ../../enterprise/extensions/vmware/vmware_view.php:1252
+msgid "Map settings"
+msgstr ""
+
+#: ../../enterprise/extensions/vmware/vmware_view.php:1296
+#: ../../enterprise/extensions/vmware/vmware_view.php:1368
+msgid "Welcome"
+msgstr ""
+
+#: ../../enterprise/extensions/vmware/vmware_view.php:1327
+msgid "ESX Detail"
+msgstr ""
+
+#: ../../enterprise/extensions/vmware/vmware_view.php:1358
+msgid "ESX details"
+msgstr ""
+
+#: ../../enterprise/extensions/vmware/vmware_view.php:1363
+msgid "VMware view options"
+msgstr ""
+
+#: ../../enterprise/extensions/vmware/vmware_view.php:1399
+msgid "VMWare"
+msgstr ""
+
+#: ../../enterprise/extensions/vmware/vmware_view.php:1504
+msgid ""
+"Some ESX Hosts are not up to date, please check VMware plugin configuration."
+msgstr ""
+
+#: ../../enterprise/extensions/vmware/vmware_view.php:1506
+msgid "VMware plugin is working."
+msgstr ""
+
+#: ../../enterprise/extensions/vmware/vmware_view.php:1515
+msgid "View VMware map"
+msgstr ""
+
+#: ../../enterprise/extensions/vmware/vmware_view.php:1516
+msgid "View VMware dashboard"
+msgstr ""
+
+#: ../../enterprise/extensions/vmware/vmware_view.php:1517
+msgid "View ESX Host statistics from"
+msgstr ""
+
+#: ../../enterprise/extensions/vmware/vmware_view.php:1524
+msgid "There are no VMware information detected in this environment."
+msgstr ""
+
+#: ../../enterprise/extensions/vmware/vmware_view.php:1525
+msgid "You can configure several tasks using Discovery Applications at "
+msgstr ""
+
+#: ../../enterprise/extensions/vmware/vmware_view.php:1734
+#, php-format
+msgid ""
+"This map is a quick representation of all your VMware entities detected. You "
+"can create a custom VMware map by defining a network map based on your "
+"VMware discovery task %s"
+msgstr ""
+
+#: ../../enterprise/extensions/vmware/vmware_view.php:1744
+msgid "Show Datastores"
+msgstr ""
+
+#: ../../enterprise/extensions/vmware/vmware_view.php:1747
+msgid "Show ESX"
+msgstr ""
+
+#: ../../enterprise/extensions/vmware/vmware_view.php:1750
+msgid "Show VM"
+msgstr ""
+
+#: ../../enterprise/extensions/vmware/vmware_view.php:1754
+#: ../../godmode/reporting/visual_console_builder.wizard.php:215
+msgid "Font"
+msgstr ""
+
+#: ../../enterprise/extensions/vmware/vmware_view.php:1772
+msgid "View options"
+msgstr ""
+
+#: ../../enterprise/extensions/vmware/vmware_manager.php:227
+msgid "Power Status: "
+msgstr ""
+
+#: ../../enterprise/extensions/vmware/vmware_manager.php:273
+msgid "Change Status"
+msgstr ""
+
+#: ../../enterprise/load_html_extra.php:202
+msgid "Activate license"
+msgstr ""
+
+#: ../../enterprise/load_html_extra.php:203
+msgid "Your <b>request key</b> is:"
+msgstr ""
+
+#: ../../enterprise/load_html_extra.php:206
+#, php-format
+msgid ""
+"You can activate it manually <a href=\"%s\" target=\"_blank\">here</a> or "
+"automatically filling the form below:"
+msgstr ""
+
+#: ../../enterprise/load_html_extra.php:213
+msgid "Auth Key:"
+msgstr ""
+
+#: ../../enterprise/load_html_extra.php:221
+#: ../../enterprise/load_html_extra.php:240
+msgid "Online validation"
+msgstr ""
+
+#: ../../enterprise/load_html_extra.php:233
+msgid "ERROR:"
+msgstr ""
+
+#: ../../enterprise/load_html_extra.php:233
+msgid "When connecting to licence server."
+msgstr ""
+
+#: ../../enterprise/load_enterprise.php:559 ../../godmode/setup/license.php:83
+msgid "License updated"
+msgstr ""
+
+#: ../../enterprise/load_enterprise.php:560
+msgid "Failed while updating license."
+msgstr ""
+
+#: ../../enterprise/load_enterprise.php:585
+#: ../../enterprise/load_enterprise.php:650
+msgid "Invalid licence."
+msgstr ""
+
+#: ../../enterprise/load_enterprise.php:585
+msgid "Please contact your system administrator."
+msgstr ""
+
+#: ../../enterprise/load_enterprise.php:650
+#, php-format
+msgid "Please contact %s for a valid licence."
+msgstr ""
+
+#: ../../enterprise/load_enterprise.php:651
+#, php-format
+msgid "Or disable %s enterprise"
+msgstr ""
+
+#: ../../enterprise/load_enterprise.php:753
+#: ../../enterprise/load_enterprise.php:1048
+msgid "Request new licence"
+msgstr ""
+
+#: ../../enterprise/load_enterprise.php:832
+msgid ""
+"<strong style=\"font-size: 11pt\">Metaconsole unreached</strong> <br><br> "
+"This node has a metaconsole license and cannot contact with the metaconsole."
+msgstr ""
+
+#: ../../enterprise/load_enterprise.php:849
+#: ../../enterprise/load_enterprise.php:855
+#: ../../enterprise/load_enterprise.php:871
+#, php-format
+msgid ""
+"<strong style=\"font-size: 11pt\">License exceeded</strong> <br><br> This "
+"license allows %d agents and you have %d agents configured."
+msgstr ""
+
+#: ../../enterprise/load_enterprise.php:850
+#: ../../enterprise/load_enterprise.php:857
+#: ../../enterprise/load_enterprise.php:866
+#: ../../enterprise/load_enterprise.php:873
+#: ../../enterprise/load_enterprise.php:885
+#, php-format
+msgid "Please contact %s to extend the license."
+msgstr ""
+
+#: ../../enterprise/load_enterprise.php:856
+#: ../../enterprise/load_enterprise.php:858
+#: ../../enterprise/load_enterprise.php:872
+#: ../../enterprise/load_enterprise.php:874
+#: ../../enterprise/load_enterprise.php:901
+#: ../../enterprise/load_enterprise.php:907
+msgid ""
+"This console will work in limited mode. Enterprise features will not "
+"function."
+msgstr ""
+
+#: ../../enterprise/load_enterprise.php:865
+#, php-format
+msgid ""
+"<strong cstyle=\"font-size: 11pt\">License exceeded</strong> <br><br> This "
+"license allows %d agents and you have %d agents configured."
+msgstr ""
+
+#: ../../enterprise/load_enterprise.php:884
+#, php-format
+msgid ""
+"<strong style=\"font-size: 11pt\">License exceeded</strong> <br><br> This "
+"license allows %d modules and you have %d modules configured."
+msgstr ""
+
+#: ../../enterprise/load_enterprise.php:894
+#: ../../enterprise/load_enterprise.php:900
+msgid ""
+"<strong style=\"font-size: 11pt\">This license has expired.</strong> "
+"<br><br>You can not get updates until you renew the license."
+msgstr ""
+
+#: ../../enterprise/load_enterprise.php:895
+#: ../../enterprise/load_enterprise.php:902
+#, php-format
+msgid "Please contact %s to renew the license."
+msgstr ""
+
+#: ../../enterprise/load_enterprise.php:905
+#: ../../enterprise/load_enterprise.php:1044
+msgid "Renew"
+msgstr ""
+
+#: ../../enterprise/load_enterprise.php:914
+#, php-format
+msgid ""
+"<strong style=\"font-size: 11pt\">This license is outside of support.</"
+"strong> <br><br>This %s installation will continue working normally and "
+"without limitations, but without support or updates."
+msgstr ""
+
+#: ../../enterprise/godmode/setup/setup.php:48
+msgid "Yes and change status"
+msgstr ""
+
+#: ../../enterprise/godmode/setup/setup.php:56
+msgid "Yes without changing status"
+msgstr ""
+
+#: ../../enterprise/godmode/setup/setup.php:124
+msgid "Seconds"
+msgstr ""
+
+#: ../../enterprise/godmode/setup/setup.php:144
+msgid "Last replication at"
+msgstr ""
+
+#: ../../enterprise/godmode/setup/setup.php:146
+msgid "No replication yet"
+msgstr ""
+
+#: ../../enterprise/godmode/setup/setup.php:160
+msgid "Only validated events"
+msgstr ""
+
+#: ../../enterprise/godmode/setup/setup.php:175
+msgid "Metaconsole DB engine"
+msgstr ""
+
+#: ../../enterprise/godmode/setup/setup.php:193
+msgid "Metaconsole DB host"
+msgstr ""
+
+#: ../../enterprise/godmode/setup/setup.php:207
+msgid "Metaconsole DB name"
+msgstr ""
+
+#: ../../enterprise/godmode/setup/setup.php:221
+msgid "Metaconsole DB user"
+msgstr ""
+
+#: ../../enterprise/godmode/setup/setup.php:235
+msgid "Metaconsole DB password"
+msgstr ""
+
+#: ../../enterprise/godmode/setup/setup.php:275
+msgid "Events Configuration Information"
+msgstr ""
+
+#: ../../enterprise/godmode/setup/setup.php:277
+msgid ""
+" If you are replicating events, events validated or deleted on the "
+"metaconsole WILL NOT be deleted or validated here. This option is just to "
+"allow local pandora users to see events, but not to operate with them. "
+"Operation, when event replication is enabled, should be done only in "
+"metaconsole"
+msgstr ""
+
+#: ../../enterprise/godmode/setup/setup.php:345
+msgid "Out of black list"
+msgstr ""
+
+#: ../../enterprise/godmode/setup/setup.php:347
+msgid "In black list"
+msgstr ""
+
+#: ../../enterprise/godmode/setup/setup.php:352
+msgid "Push selected modules into blacklist"
+msgstr ""
+
+#: ../../enterprise/godmode/setup/setup.php:354
+msgid "Pop selected modules out of blacklist"
+msgstr ""
+
+#: ../../enterprise/godmode/setup/setup.php:389
+msgid "Critical threshold for occupied addresses"
+msgstr ""
+
+#: ../../enterprise/godmode/setup/setup.php:401
+msgid "Warning threshold for occupied addresses"
+msgstr ""
+
+#: ../../enterprise/godmode/setup/setup.php:429
+msgid "Enterprise options"
+msgstr ""
+
+#: ../../enterprise/godmode/setup/setup.php:589
+#, php-format
+msgid ""
+"Password related configuration only applies when local %s authentication is "
+"selected."
+msgstr ""
+
+#: ../../enterprise/godmode/setup/setup.php:598
+msgid "Enterprise password policy"
+msgstr ""
+
+#: ../../enterprise/godmode/setup/setup_history.php:84
+msgid "Method does not exist"
+msgstr ""
+
+#: ../../enterprise/godmode/setup/setup_history.php:223
+msgid "Configure connection target"
+msgstr ""
+
+#: ../../enterprise/godmode/setup/setup_history.php:237
+msgid "Active to historical settings"
+msgstr ""
+
+#: ../../enterprise/godmode/setup/setup_history.php:241
+#, php-format
+msgid ""
+"Data will be available in active database as time as days you specify here. "
+"Older information will be sent to historical database. Note data will be "
+"purged from active database after %d days."
+msgstr ""
+
+#: ../../enterprise/godmode/setup/setup_history.php:247
+msgid "Data days old to keep in active database"
+msgstr ""
+
+#: ../../enterprise/godmode/setup/setup_history.php:262
+msgid ""
+"Number of rows to be sent to historical database each 'delay' seconds. If "
+"you experience issues running pandora_db, try decreasing this value."
+msgstr ""
+
+#: ../../enterprise/godmode/setup/setup_history.php:266
+msgid "Transference block size (Step)"
+msgstr ""
+
+#: ../../enterprise/godmode/setup/setup_history.php:271
+msgid "Delay between transferences (seconds)"
+msgstr ""
+
+#: ../../enterprise/godmode/setup/setup_history.php:276
+msgid "Historical data settings"
+msgstr ""
+
+#: ../../enterprise/godmode/setup/setup_history.php:278
+msgid "Maximum historical data age (days)"
+msgstr ""
+
+#: ../../enterprise/godmode/setup/setup_history.php:283
+msgid "Maximum historical string data age (days)"
+msgstr ""
+
+#: ../../enterprise/godmode/setup/setup_history.php:288
+msgid ""
+"Data older than 'days' is compacted in order to improve disk utilization."
+msgstr ""
+
+#: ../../enterprise/godmode/setup/setup_history.php:293
+msgid ""
+"Automatically create partitions on specific database IDB files "
+"(tagente_datos, tagente_datos_string, tevento). Monthly partitions."
+msgstr ""
+
+#: ../../enterprise/godmode/setup/setup_history.php:297
+msgid "Automatic partition of big tables."
+msgstr ""
+
+#: ../../enterprise/godmode/setup/setup_history.php:308
+msgid "Historical events settings"
+msgstr ""
+
+#: ../../enterprise/godmode/setup/setup_history.php:319
+#, php-format
+msgid ""
+"Events will remain in active database a maximum of specified days, then they "
+"will be transferred to historical database. Note events will be purged from "
+"active database after %d days."
+msgstr ""
+
+#: ../../enterprise/godmode/setup/setup_history.php:325
+msgid "Events days old to keep in active database"
+msgstr ""
+
+#: ../../enterprise/godmode/setup/setup_history.php:340
+msgid "Events will be purged from historical database after specified days."
+msgstr ""
+
+#: ../../enterprise/godmode/setup/setup_history.php:344
+msgid "Maximum historical events age (days)"
+msgstr ""
+
+#: ../../enterprise/godmode/setup/setup_history.php:361
+msgid "Enable historical events"
+msgstr ""
+
+#: ../../enterprise/godmode/setup/setup_history.php:373
+msgid "Customize settings"
+msgstr ""
+
+#: ../../enterprise/godmode/setup/setup_history.php:385
+msgid "Enable historical database"
+msgstr ""
+
+#: ../../enterprise/godmode/setup/setup_history.php:407
+msgid "History database connection is available."
+msgstr ""
+
+#: ../../enterprise/godmode/setup/setup_history.php:414
+#, php-format
+msgid "History database connection failed: %s"
+msgstr ""
+
+#: ../../enterprise/godmode/setup/setup_history.php:430
+msgid "History database schema is installed."
+msgstr ""
+
+#: ../../enterprise/godmode/setup/setup_history.php:439
+#, php-format
+msgid "Database is not installed: %s"
+msgstr ""
+
+#: ../../enterprise/godmode/setup/setup_history.php:444
+msgid "Install database schema"
+msgstr ""
+
+#: ../../enterprise/godmode/setup/setup_history.php:445
+msgid "This action will install the schema into the target, are you sure?"
+msgstr ""
+
+#: ../../enterprise/godmode/setup/setup_history.php:467
+msgid "History database schema is up to date with active database."
+msgstr ""
+
+#: ../../enterprise/godmode/setup/setup_history.php:476
+#, php-format
+msgid "Database is not updated: %s"
+msgstr ""
+
+#: ../../enterprise/godmode/setup/setup_history.php:491
+msgid "Current schema: "
+msgstr ""
+
+#: ../../enterprise/godmode/setup/setup_history.php:498
+msgid "Upgrade database schema"
+msgstr ""
+
+#: ../../enterprise/godmode/setup/setup_history.php:499
+msgid ""
+"This action will schedule the installation or upgrade of database schema "
+"into the target, are you sure?"
+msgstr ""
+
+#: ../../enterprise/godmode/setup/setup_history.php:513
+#: ../../godmode/setup/performance.php:684
+msgid "Database maintenance status"
+msgstr ""
+
+#: ../../enterprise/godmode/setup/setup_history.php:532
+msgid ""
+"By enabling historical database, target connection will be tested. If "
+"needed, database schema will be applied on your selected target, do you want "
+"to proceed?"
+msgstr ""
+
+#: ../../enterprise/godmode/setup/setup_history.php:533
+msgid ""
+"Changing historical database target, schema will be recreated in new one, "
+"but old data will remain in previous node, unlinked from this console and "
+"not maintained, do you want to proceed?"
+msgstr ""
+
+#: ../../enterprise/godmode/setup/setup_history.php:535
+#, php-format
+msgid ""
+"Disabling historical database, you will not keep any data older than %d "
+"days. Are you sure?"
+msgstr ""
+
+#: ../../enterprise/godmode/setup/setup_history.php:539
+#, php-format
+msgid ""
+"Historical database allows you to keep data older than %d days. This action "
+"will produce no changes. Historical database will remain disabled."
+msgstr ""
+
+#: ../../enterprise/godmode/setup/setup_history.php:544
+msgid ""
+"By changing historical database target, the new connection will be tested. "
+"If needed, database schema will be applied on your selected target. "
+"Information stored in previous configuration will be IGNORED, do you want to "
+"proceed?"
+msgstr ""
+
+#: ../../enterprise/godmode/setup/setup_history.php:547
+msgid "Please ensure all fields matches your needs."
+msgstr ""
+
+#: ../../enterprise/godmode/setup/setup_history.php:681
+msgid "Update scheduled."
+msgstr ""
+
+#: ../../enterprise/godmode/setup/setup_metaconsole.php:31
+msgid "Metaconsole setup"
+msgstr ""
+
+#: ../../enterprise/godmode/setup/setup_metaconsole.php:195
+msgid "Pandora FMS Metaconsole item edition"
+msgstr ""
+
+#: ../../enterprise/godmode/setup/setup_metaconsole.php:202
+msgid ""
+"Token previously configured on the destination Pandora console in order to "
+"use delegated authentification."
+msgstr ""
+
+#: ../../enterprise/godmode/setup/setup_metaconsole.php:274
+msgid "Console URLxxxxxx"
+msgstr ""
+
+#: ../../enterprise/godmode/setup/setup_auth.php:34
+msgid "Active directory"
+msgstr ""
+
+#: ../../enterprise/godmode/setup/setup_auth.php:35
+msgid "SAML"
+msgstr ""
+
+#: ../../enterprise/godmode/setup/setup_auth.php:87
+msgid "Force automatically create profile user"
+msgstr ""
+
+#: ../../enterprise/godmode/setup/setup_auth.php:92
+msgid "Local command"
+msgstr ""
+
+#: ../../enterprise/godmode/setup/setup_auth.php:95
+msgid "PHP function"
+msgstr ""
+
+#: ../../enterprise/godmode/setup/setup_auth.php:172
+#: ../../enterprise/godmode/setup/setup_auth.php:456
+#: ../../enterprise/godmode/setup/setup_auth.php:1251
+msgid "Profiles selected"
+msgstr ""
+
+#: ../../enterprise/godmode/setup/setup_auth.php:173
+#: ../../enterprise/godmode/setup/setup_auth.php:457
+#: ../../enterprise/godmode/setup/setup_auth.php:1252
+msgid "Groups selected"
+msgstr ""
+
+#: ../../enterprise/godmode/setup/setup_auth.php:174
+#: ../../enterprise/godmode/setup/setup_auth.php:458
+#: ../../enterprise/godmode/setup/setup_auth.php:1253
+#: ../../enterprise/godmode/modules/configure_local_component.php:581
+#: ../../godmode/modules/manage_network_components_form_common.php:382
+#: ../../godmode/agentes/module_manager_editor_common.php:1014
+msgid "Tags selected"
+msgstr ""
+
+#: ../../enterprise/godmode/setup/setup_auth.php:176
+#: ../../enterprise/godmode/setup/setup_auth.php:233
+msgid "LDAP Attributes"
+msgstr ""
+
+#: ../../enterprise/godmode/setup/setup_auth.php:177
+#: ../../enterprise/godmode/setup/setup_auth.php:234
+#: ../../enterprise/godmode/setup/setup_auth.php:460
+#: ../../enterprise/godmode/setup/setup_auth.php:512
+#: ../../enterprise/godmode/setup/setup_auth.php:1255
+#: ../../enterprise/godmode/setup/setup_auth.php:1309
+#: ../../godmode/setup/snmp_wizard.php:44
+msgid "OP"
+msgstr ""
+
+#: ../../enterprise/godmode/setup/setup_auth.php:229
+#: ../../enterprise/godmode/setup/setup_auth.php:508
+#: ../../enterprise/godmode/setup/setup_auth.php:1305
+#: ../../godmode/menu.php:136 ../../godmode/users/profile_list.php:323
+#: ../../godmode/groups/configure_group.php:122
+#: ../../godmode/groups/group_list.php:380
+msgid "Profiles"
+msgstr ""
+
+#: ../../enterprise/godmode/setup/setup_auth.php:242
+#: ../../enterprise/godmode/setup/setup_auth.php:519
+#: ../../enterprise/godmode/setup/setup_auth.php:1316
+msgid "Select profile"
+msgstr ""
+
+#: ../../enterprise/godmode/setup/setup_auth.php:287
+#: ../../enterprise/godmode/setup/setup_auth.php:557
+#: ../../enterprise/godmode/setup/setup_auth.php:1359
+msgid "Add new permissions"
+msgstr ""
+
+#: ../../enterprise/godmode/setup/setup_auth.php:385
+#: ../../enterprise/godmode/setup/setup_auth.php:1180
+msgid "New users will be able to log in to the nodes."
+msgstr ""
+
+#: ../../enterprise/godmode/setup/setup_auth.php:459
+#: ../../enterprise/godmode/setup/setup_auth.php:511
+#: ../../enterprise/godmode/setup/setup_auth.php:1254
+#: ../../enterprise/godmode/setup/setup_auth.php:1308
+msgid "AD Groups"
+msgstr ""
+
+#: ../../enterprise/godmode/setup/setup_auth.php:738
+#: ../../enterprise/godmode/setup/setup_auth.php:854
+msgid "You must select a profile from the list of profiles."
+msgstr ""
+
+#: ../../enterprise/godmode/setup/setup_auth.php:743
+#: ../../enterprise/godmode/setup/setup_auth.php:859
+msgid "You must select a group from the list of groups."
+msgstr ""
+
+#: ../../enterprise/godmode/setup/setup_auth.php:1084
+msgid "SimpleSAML path"
+msgstr ""
+
+#: ../../enterprise/godmode/setup/setup_auth.php:1085
+msgid "Directory where your 'simplesamlphp' folder is located."
+msgstr ""
+
+#: ../../enterprise/godmode/setup/setup_auth.php:1091
+msgid "SAML source"
+msgstr ""
+
+#: ../../enterprise/godmode/setup/setup_auth.php:1092
+msgid "Authsource name, e.g. 'example-userpass'"
+msgstr ""
+
+#: ../../enterprise/godmode/setup/setup_auth.php:1099
+msgid "SAML user id attribute"
+msgstr ""
+
+#: ../../enterprise/godmode/setup/setup_auth.php:1104
+msgid "SAML mail attribute"
+msgstr ""
+
+#: ../../enterprise/godmode/setup/setup_auth.php:1105
+msgid ""
+"SAML field where search for the user email (while autocreate remote users is "
+"enabled)"
+msgstr ""
+
+#: ../../enterprise/godmode/setup/setup_auth.php:1112
+msgid "SAML group name attribute"
+msgstr ""
+
+#: ../../enterprise/godmode/setup/setup_auth.php:1113
+msgid ""
+"SAML field where search for the group name (while autocreate remote users is "
+"enabled)"
+msgstr ""
+
+#: ../../enterprise/godmode/setup/setup_auth.php:1120
+msgid "Simple attribute / Multivalue attribute"
+msgstr ""
+
+#: ../../enterprise/godmode/setup/setup_auth.php:1125
+msgid "SAML profiles and tag attribute"
+msgstr ""
+
+#: ../../enterprise/godmode/setup/setup_auth.php:1130
+msgid "Profile attribute"
+msgstr ""
+
+#: ../../enterprise/godmode/setup/setup_auth.php:1135
+msgid "Tag attribute"
+msgstr ""
+
+#: ../../enterprise/godmode/setup/setup_auth.php:1140
+msgid "SAML profile and tags prefix"
+msgstr ""
+
+#: ../../enterprise/godmode/setup/setup_log_collector.php:37
+msgid "ElasticSearch IP"
+msgstr ""
+
+#: ../../enterprise/godmode/setup/setup_log_collector.php:37
+msgid "IP of ElasticSearch server"
+msgstr ""
+
+#: ../../enterprise/godmode/setup/setup_log_collector.php:39
+msgid "ElasticSearch Port"
+msgstr ""
+
+#: ../../enterprise/godmode/setup/setup_log_collector.php:39
+msgid "Port of ElasticSearch server"
+msgstr ""
+
+#: ../../enterprise/godmode/setup/setup_log_collector.php:48
+msgid "ElasticSearch Status"
+msgstr ""
+
+#: ../../enterprise/godmode/setup/edit_skin.php:44
+#: ../../enterprise/godmode/setup/setup_skins.php:38
+msgid "Skins configuration"
+msgstr ""
+
+#: ../../enterprise/godmode/setup/edit_skin.php:47
+msgid "Successfully updated skin"
+msgstr ""
+
+#: ../../enterprise/godmode/setup/edit_skin.php:49
+#: ../../enterprise/godmode/setup/edit_skin.php:67
+msgid "Error updating skin"
+msgstr ""
+
+#: ../../enterprise/godmode/setup/edit_skin.php:197
+msgid "Error creating skin"
+msgstr ""
+
+#: ../../enterprise/godmode/setup/edit_skin.php:201
+msgid "Successfully created skin"
+msgstr ""
+
+#: ../../enterprise/godmode/setup/edit_skin.php:241
+#: ../../enterprise/godmode/setup/setup_skins.php:126
+msgid "Relative path"
+msgstr ""
+
+#: ../../enterprise/godmode/setup/edit_skin.php:242
+msgid ""
+"Zip file with skin subdirectory. The name of the zip file only can have "
+"alphanumeric characters."
+msgstr ""
+
+#: ../../enterprise/godmode/setup/edit_skin.php:267
+msgid "Group/s"
+msgstr ""
+
+#: ../../enterprise/godmode/setup/setup_module_library.php:68
+#: ../../enterprise/godmode/wizards/Cloud.class.php:381
+#: ../../godmode/module_library/module_library_view.php:163
+msgid "Invalid username or password"
+msgstr ""
+
+#: ../../enterprise/godmode/setup/setup_module_library.php:69
+#: ../../godmode/module_library/module_library_view.php:162
+msgid "Problem with authentication. Check your internet connection"
+msgstr ""
+
+#: ../../enterprise/godmode/setup/setup_skins.php:77
+msgid "Error deleting skin"
+msgstr ""
+
+#: ../../enterprise/godmode/setup/setup_skins.php:79
+msgid "Successfully deleted skin"
+msgstr ""
+
+#: ../../enterprise/godmode/setup/setup_skins.php:125
+msgid "Skin name"
+msgstr ""
+
+#: ../../enterprise/godmode/setup/setup_skins.php:153
+msgid "There are no defined skins"
+msgstr ""
+
+#: ../../enterprise/godmode/setup/setup_skins.php:159
+msgid "Create skin"
+msgstr ""
+
+#: ../../enterprise/godmode/setup/setup_acl.php:46
+msgid "Enterprise ACL setup"
+msgstr ""
+
+#: ../../enterprise/godmode/setup/setup_acl.php:69
+msgid "ACL element was deleted successfully"
+msgstr ""
+
+#: ../../enterprise/godmode/setup/setup_acl.php:71
+msgid "There was a problem delete ACL element"
+msgstr ""
+
+#: ../../enterprise/godmode/setup/setup_acl.php:417
+msgid "This record already exists in the database"
+msgstr ""
+
+#: ../../enterprise/godmode/setup/setup_acl.php:422
+msgid "ACL element is added successfully"
+msgstr ""
+
+#: ../../enterprise/godmode/setup/setup_acl.php:424
+msgid "There was a problem adding ACL element"
+msgstr ""
+
+#: ../../enterprise/godmode/setup/setup_acl.php:464
+#: ../../enterprise/godmode/setup/setup_acl.php:539
+msgid "Add new ACL element to profile"
+msgstr ""
+
+#: ../../enterprise/godmode/setup/setup_acl.php:469
+#: ../../enterprise/godmode/setup/setup_acl.php:544
+#: ../../enterprise/godmode/setup/setup_acl.php:592
+msgid "Section"
+msgstr ""
+
+#: ../../enterprise/godmode/setup/setup_acl.php:476
+#: ../../enterprise/godmode/setup/setup_acl.php:694
+msgid "Mobile"
+msgstr ""
+
+#: ../../enterprise/godmode/setup/setup_acl.php:480
+#: ../../enterprise/godmode/setup/setup_acl.php:690
+msgid "Head search"
+msgstr ""
+
+#: ../../enterprise/godmode/setup/setup_acl.php:497
+#: ../../enterprise/godmode/setup/setup_acl.php:548
+#: ../../enterprise/godmode/setup/setup_acl.php:593
+msgid "Section 2"
+msgstr ""
+
+#: ../../enterprise/godmode/setup/setup_acl.php:514
+#: ../../enterprise/godmode/setup/setup_acl.php:552
+#: ../../enterprise/godmode/setup/setup_acl.php:594
+msgid "Section 3"
+msgstr ""
+
+#: ../../enterprise/godmode/setup/setup_acl.php:538
+msgid "Hidden"
+msgstr ""
+
+#: ../../enterprise/godmode/setup/setup_acl.php:570
+msgid "Filter by profile"
+msgstr ""
+
+#: ../../enterprise/godmode/setup/setup_acl.php:749
+#: ../../enterprise/godmode/setup/setup_acl.php:759
+msgid "Invalid"
+msgstr ""
+
+#: ../../enterprise/godmode/servers/manage_export_form.php:59
+#: ../../enterprise/godmode/servers/manage_export.php:43
+#: ../../enterprise/godmode/menu.php:247
+msgid "Export targets"
+msgstr ""
+
+#: ../../enterprise/godmode/servers/manage_export_form.php:91
+#: ../../enterprise/godmode/servers/manage_export.php:138
+msgid "Preffix"
+msgstr ""
+
+#: ../../enterprise/godmode/servers/manage_export_form.php:103
+#: ../../enterprise/godmode/servers/manage_export.php:141
+msgid "Transfer mode"
+msgstr ""
+
+#: ../../enterprise/godmode/servers/manage_export_form.php:125
+msgid "Target directory"
+msgstr ""
+
+#: ../../enterprise/godmode/servers/credential_boxes_satellite.php:35
+msgid "Credential Boxes List"
+msgstr ""
+
+#: ../../enterprise/godmode/servers/credential_boxes_satellite.php:42
+msgid "Credential Boxes"
+msgstr ""
+
+#: ../../enterprise/godmode/servers/manage_export.php:69
+msgid "Error updating export target"
+msgstr ""
+
+#: ../../enterprise/godmode/servers/manage_export.php:71
+msgid "Successfully updated export target"
+msgstr ""
+
+#: ../../enterprise/godmode/servers/manage_export.php:82
+msgid "Error deleting export target"
+msgstr ""
+
+#: ../../enterprise/godmode/servers/manage_export.php:84
+msgid ""
+"Successfully deleted export target.  All the linked modules will be "
+"automatically unattached"
+msgstr ""
+
+#: ../../enterprise/godmode/servers/manage_export.php:107
+msgid ""
+"Can't be created export target: User and password must be filled with FTP "
+"mode"
+msgstr ""
+
+#: ../../enterprise/godmode/servers/manage_export.php:126
+msgid "There are no defined export targets"
+msgstr ""
+
+#: ../../enterprise/godmode/servers/list_satellite.php:27
+msgid "Satellite Server"
+msgstr ""
+
+#: ../../enterprise/godmode/servers/HA_cluster.php:59
+#: ../../enterprise/godmode/servers/HA_cluster.php:83
+msgid "View nodes"
+msgstr ""
+
+#: ../../enterprise/godmode/servers/HA_cluster.php:80
+msgid "Manage Pandora DB HA"
+msgstr ""
+
+#: ../../enterprise/godmode/servers/HA_cluster.php:101
+msgid "Manage Database HA"
+msgstr ""
+
+#: ../../enterprise/godmode/servers/HA_cluster.php:136
+msgid ""
+"Make the cluster forget failed operations from history of\n"
+" the resource and re-detect its current state. This can be\n"
+" useful to purge knowledge of past failures that have since\n"
+" been resolved. If a resource id is not specified then all\n"
+" resources / stonith devices will be cleaned up. If a node\n"
+" is not specified then resources / stonith devices on all\n"
+" nodes will be cleaned up"
+msgstr ""
+
+#: ../../enterprise/godmode/servers/HA_cluster.php:162
+msgid "Node label"
+msgstr ""
+
+#: ../../enterprise/godmode/servers/HA_cluster.php:164
+msgid "DB Repl."
+msgstr ""
+
+#: ../../enterprise/godmode/servers/HA_cluster.php:165
+msgid "DB Status"
+msgstr ""
+
+#: ../../enterprise/godmode/servers/HA_cluster.php:167
+#: ../../extensions/quick_shell.php:195
+#: ../../godmode/agentes/module_manager_editor_network.php:478
+msgid "SSH"
+msgstr ""
+
+#: ../../enterprise/godmode/servers/HA_cluster.php:168
+msgid "DB Role"
+msgstr ""
+
+#: ../../enterprise/godmode/servers/HA_cluster.php:169
+msgid "Cluster Role"
+msgstr ""
+
+#: ../../enterprise/godmode/servers/HA_cluster.php:171
+msgid "Seconds behind master"
+msgstr ""
+
+#: ../../enterprise/godmode/servers/HA_cluster.php:172
+msgid "Virtual IP"
+msgstr ""
+
+#: ../../enterprise/godmode/servers/HA_cluster.php:173
+msgid "SQL version"
+msgstr ""
+
+#: ../../enterprise/godmode/servers/HA_cluster.php:174
+msgid "DB version"
+msgstr ""
+
+#: ../../enterprise/godmode/servers/HA_cluster.php:176
+msgid "Pending action"
+msgstr ""
+
+#: ../../enterprise/godmode/servers/HA_cluster.php:301
+msgid "Show/ edit node"
+msgstr ""
+
+#: ../../enterprise/godmode/servers/HA_cluster.php:317
+msgid "Put node into standby status"
+msgstr ""
+
+#: ../../enterprise/godmode/servers/HA_cluster.php:332
+msgid "Force node resync"
+msgstr ""
+
+#: ../../enterprise/godmode/servers/HA_cluster.php:359
+msgid "Put node into online status"
+msgstr ""
+
+#: ../../enterprise/godmode/servers/HA_cluster.php:374
+msgid "Show cluster details"
+msgstr ""
+
+#: ../../enterprise/godmode/servers/HA_cluster.php:392
+msgid "Remove node from this list"
+msgstr ""
+
+#: ../../enterprise/godmode/servers/HA_cluster.php:428
+msgid "Register node"
+msgstr ""
+
+#: ../../enterprise/godmode/servers/HA_cluster.php:466
+msgid ""
+"Target node will be erased from this list but not removed from cluster. Do "
+"you want to continue?"
+msgstr ""
+
+#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:148
+msgid "Error: The conf file of server is not readble."
+msgstr ""
+
+#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:152
+msgid "Error: The conf file of server is not writable."
+msgstr ""
+
+#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:348
+msgid "Delete remote conf server files"
+msgstr ""
+
+#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:349
+#: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:249
+#: ../../godmode/agentes/agent_manager.php:495
+msgid "Delete remote configuration file"
+msgstr ""
+
+#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:349
+msgid ""
+"Delete this conf file implies that server will send back local config to "
+"console"
+msgstr ""
+
+#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:567
+msgid "ICMP server"
+msgstr ""
+
+#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:642
+msgid "Network timeout"
+msgstr ""
+
+#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:650
+#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:666
+msgid " Seconds"
+msgstr ""
+
+#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:658
+msgid "Plugin timeout"
+msgstr ""
+
+#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:674
+msgid "SNMP console threads"
+msgstr ""
+
+#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:690
+msgid "Network threads"
+msgstr ""
+
+#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:706
+msgid "Plugin threads"
+msgstr ""
+
+#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:722
+msgid "Recon threads"
+msgstr ""
+
+#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:738
+msgid "Dataserver threads"
+msgstr ""
+
+#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:754
+msgid "Web threads"
+msgstr ""
+
+#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:770
+msgid "SNMP threads"
+msgstr ""
+
+#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:786
+msgid "ICMP threads"
+msgstr ""
+
+#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:816
+msgid "Autocreate group"
+msgstr ""
+
+#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:832
+msgid "Autocreate group force"
+msgstr ""
+
+#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:847
+msgid "Autocreate"
+msgstr ""
+
+#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:865
+msgid "Server features"
+msgstr ""
+
+#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:872
+msgid "Optimization settings"
+msgstr ""
+
+#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:879
+msgid "Other server settings"
+msgstr ""
+
+#: ../../enterprise/godmode/servers/manage_credential_boxes.php:20
+msgid "Add Credential Box"
+msgstr ""
+
+#: ../../enterprise/godmode/modules/configure_local_component.php:141
+msgid "Update Local Component"
+msgstr ""
+
+#: ../../enterprise/godmode/modules/configure_local_component.php:143
+msgid "Create Local Component"
+msgstr ""
+
+#: ../../enterprise/godmode/modules/configure_local_component.php:162
+#: ../../godmode/modules/manage_network_components_form_common.php:50
+#: ../../godmode/alerts/configure_alert_template.php:1134
+msgid "Wizard level"
+msgstr ""
+
+#: ../../enterprise/godmode/modules/configure_local_component.php:192
+msgid "Throw unknown events"
+msgstr ""
+
+#: ../../enterprise/godmode/modules/configure_local_component.php:292
+#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:489
+#: ../../godmode/modules/manage_network_components_form_common.php:146
+#: ../../godmode/massive/massive_edit_modules.php:552
+msgid "Dynamic Interval"
+msgstr ""
+
+#: ../../enterprise/godmode/modules/configure_local_component.php:298
+#: ../../godmode/modules/manage_network_components_form_common.php:152
+#: ../../godmode/agentes/module_manager_editor_common.php:691
+msgid "Advanced options Dynamic Threshold"
+msgstr ""
+
+#: ../../enterprise/godmode/modules/configure_local_component.php:303
+#: ../../godmode/modules/manage_network_components_form_common.php:157
+msgid "Dynamic Min. "
+msgstr ""
+
+#: ../../enterprise/godmode/modules/configure_local_component.php:305
+#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:493
+#: ../../godmode/modules/manage_network_components_form_common.php:159
+#: ../../godmode/massive/massive_edit_modules.php:556
+msgid "Dynamic Max."
+msgstr ""
+
+#: ../../enterprise/godmode/modules/configure_local_component.php:307
+#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:495
+#: ../../godmode/modules/manage_network_components_form_common.php:161
+#: ../../godmode/massive/massive_edit_modules.php:558
+msgid "Dynamic Two Tailed: "
+msgstr ""
+
+#: ../../enterprise/godmode/modules/configure_local_component.php:343
+#: ../../enterprise/godmode/modules/configure_local_component.php:386
+#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:567
+#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:658
+#: ../../godmode/modules/manage_network_components_form_wizard.php:399
+#: ../../godmode/modules/manage_network_components_form_wizard.php:441
+#: ../../godmode/modules/manage_network_components_form_common.php:196
+#: ../../godmode/modules/manage_network_components_form_common.php:237
+#: ../../godmode/massive/massive_edit_modules.php:630
+#: ../../godmode/massive/massive_edit_modules.php:722
+#: ../../godmode/agentes/module_manager_editor_common.php:464
+#: ../../godmode/agentes/module_manager_editor_common.php:526
+msgid "Percentage"
+msgstr ""
+
+#: ../../enterprise/godmode/modules/configure_local_component.php:391
+#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:873
+#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:232
+#: ../../godmode/modules/manage_network_components_form_common.php:243
+#: ../../godmode/massive/massive_edit_modules.php:930
+#: ../../godmode/agentes/module_manager_editor_common.php:780
+msgid "FF threshold"
+msgstr ""
+
+#: ../../enterprise/godmode/modules/configure_local_component.php:394
+#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:941
+#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:235
+#: ../../godmode/modules/manage_network_components_form_common.php:246
+#: ../../godmode/massive/massive_edit_modules.php:994
+#: ../../godmode/agentes/module_manager_editor_common.php:782
+msgid "Keep counters"
+msgstr ""
+
+#: ../../enterprise/godmode/modules/configure_local_component.php:402
+#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:885
+#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:900
+#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:252
+#: ../../godmode/modules/manage_network_components_form_common.php:260
+#: ../../godmode/massive/massive_edit_modules.php:938
+#: ../../godmode/massive/massive_edit_modules.php:953
+#: ../../godmode/agentes/module_manager_editor_common.php:799
+msgid "All state changing"
+msgstr ""
+
+#: ../../enterprise/godmode/modules/configure_local_component.php:417
+#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:884
+#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:910
+#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:274
+#: ../../godmode/modules/manage_network_components_form_common.php:276
+#: ../../godmode/massive/massive_edit_modules.php:937
+#: ../../godmode/massive/massive_edit_modules.php:963
+#: ../../godmode/agentes/module_manager_editor_common.php:821
+msgid "Each state changing"
+msgstr ""
+
+#: ../../enterprise/godmode/modules/configure_local_component.php:418
+#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:911
+#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:275
+#: ../../godmode/modules/manage_network_components_form_common.php:277
+#: ../../godmode/massive/massive_edit_modules.php:964
+#: ../../godmode/agentes/module_manager_editor_common.php:822
+msgid "To normal"
+msgstr ""
+
+#: ../../enterprise/godmode/modules/configure_local_component.php:427
+#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:921
+#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:289
+#: ../../godmode/modules/manage_network_components_form_common.php:286
+#: ../../godmode/massive/massive_edit_modules.php:974
+#: ../../godmode/agentes/module_manager_editor_common.php:836
+msgid "To warning"
+msgstr ""
+
+#: ../../enterprise/godmode/modules/configure_local_component.php:436
+#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:931
+#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:303
+#: ../../godmode/modules/manage_network_components_form_common.php:295
+#: ../../godmode/massive/massive_edit_modules.php:984
+#: ../../godmode/agentes/module_manager_editor_common.php:850
+msgid "To critical"
+msgstr ""
+
+#: ../../enterprise/godmode/modules/configure_local_component.php:450
+#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:963
+#: ../../godmode/massive/massive_edit_modules.php:1028
+#: ../../godmode/agentes/module_manager_editor_common.php:880
+msgid "FF timeout"
+msgstr ""
+
+#: ../../enterprise/godmode/modules/configure_local_component.php:458
+#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:964
+#: ../../godmode/massive/massive_edit_modules.php:1038
+msgid ""
+"Timeout in secs from start of flip flop counting. If this value is exceeded, "
+"FF counter is reset. Set to 0 for no timeout."
+msgstr ""
+
+#: ../../enterprise/godmode/modules/configure_local_component.php:459
+msgid "This value can be set only in the async modules."
+msgstr ""
+
+#: ../../enterprise/godmode/modules/configure_local_component.php:461
+#: ../../godmode/modules/manage_network_components_form_common.php:309
+msgid "Any value below this number is discarted"
+msgstr ""
+
+#: ../../enterprise/godmode/modules/configure_local_component.php:466
+#: ../../godmode/modules/manage_network_components_form_common.php:311
+msgid "Any value over this number is discarted"
+msgstr ""
+
+#: ../../enterprise/godmode/modules/configure_local_component.php:473
+#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:716
+#: ../../godmode/setup/snmp_wizard.php:43
+#: ../../godmode/modules/manage_network_components_form_plugin.php:49
+#: ../../godmode/modules/manage_network_components_form_wmi.php:55
+#: ../../godmode/modules/manage_network_components_form_network.php:178
+#: ../../godmode/massive/massive_edit_modules.php:780
+#: ../../godmode/agentes/module_manager_editor_common.php:649
+msgid "Post process"
+msgstr ""
+
+#: ../../enterprise/godmode/modules/configure_local_component.php:500
+#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:180
+msgid "Load a basic structure on data configuration"
+msgstr ""
+
+#: ../../enterprise/godmode/modules/configure_local_component.php:503
+#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:183
+msgid "Check the correct structure of the data configuration"
+msgstr ""
+
+#: ../../enterprise/godmode/modules/configure_local_component.php:506
+#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:196
+msgid "First line must be \"module_begin\""
+msgstr ""
+
+#: ../../enterprise/godmode/modules/configure_local_component.php:507
+#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:197
+msgid "Data configuration is empty"
+msgstr ""
+
+#: ../../enterprise/godmode/modules/configure_local_component.php:508
+#: ../../enterprise/godmode/modules/configure_local_component.php:512
+#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:198
+#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:202
+msgid "Last line must be \"module_end\""
+msgstr ""
+
+#: ../../enterprise/godmode/modules/configure_local_component.php:509
+#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:199
+msgid ""
+"Name is missed. Please add a line with \"module_name yourmodulename\" to "
+"data configuration"
+msgstr ""
+
+#: ../../enterprise/godmode/modules/configure_local_component.php:510
+#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:200
+msgid ""
+"Type is missed. Please add a line with \"module_type yourmoduletype\" to "
+"data configuration"
+msgstr ""
+
+#: ../../enterprise/godmode/modules/configure_local_component.php:511
+#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:201
+msgid "Type is wrong. Please set a correct type"
+msgstr ""
+
+#: ../../enterprise/godmode/modules/configure_local_component.php:514
+#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:204
+msgid "Error in the syntax, please check the data configuration."
+msgstr ""
+
+#: ../../enterprise/godmode/modules/configure_local_component.php:515
+#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:205
+msgid "Data configuration are built correctly"
+msgstr ""
+
+#: ../../enterprise/godmode/modules/configure_local_component.php:523
+#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1016
+#: ../../godmode/modules/manage_network_components_form_common.php:323
+#: ../../godmode/massive/massive_edit_modules.php:1092
+#: ../../godmode/agentes/module_manager_editor_common.php:1093
+msgid "Critical instructions"
+msgstr ""
+
+#: ../../enterprise/godmode/modules/configure_local_component.php:523
+#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1016
+#: ../../godmode/modules/manage_network_components_form_common.php:323
+#: ../../godmode/massive/massive_edit_modules.php:1092
+msgid "Instructions when the status is critical"
+msgstr ""
+
+#: ../../enterprise/godmode/modules/configure_local_component.php:528
+#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1020
+#: ../../godmode/modules/manage_network_components_form_common.php:327
+#: ../../godmode/massive/massive_edit_modules.php:1096
+#: ../../godmode/agentes/module_manager_editor_common.php:1098
+msgid "Warning instructions"
+msgstr ""
+
+#: ../../enterprise/godmode/modules/configure_local_component.php:528
+#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1020
+#: ../../godmode/modules/manage_network_components_form_common.php:327
+#: ../../godmode/massive/massive_edit_modules.php:1096
+msgid "Instructions when the status is warning"
+msgstr ""
+
+#: ../../enterprise/godmode/modules/configure_local_component.php:533
+#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1024
+#: ../../godmode/modules/manage_network_components_form_common.php:331
+#: ../../godmode/massive/massive_edit_modules.php:1100
+#: ../../godmode/agentes/module_manager_editor_common.php:1102
+msgid "Unknown instructions"
+msgstr ""
+
+#: ../../enterprise/godmode/modules/configure_local_component.php:533
+#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1024
+#: ../../godmode/modules/manage_network_components_form_common.php:331
+#: ../../godmode/massive/massive_edit_modules.php:1100
+msgid "Instructions when the status is unknown"
+msgstr ""
+
+#: ../../enterprise/godmode/modules/configure_local_component.php:542
+#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:984
+#: ../../godmode/modules/manage_network_components_form_common.php:342
+#: ../../godmode/massive/massive_edit_modules.php:1060
+#: ../../godmode/agentes/module_manager_editor_common.php:1143
+#: ../../godmode/module_library/module_library_view.php:123
+msgid "Category"
+msgstr ""
+
+#: ../../enterprise/godmode/modules/configure_local_component.php:561
+#: ../../godmode/modules/manage_network_components_form_common.php:362
+#: ../../godmode/agentes/module_manager_editor_common.php:906
+msgid "Tags available"
+msgstr ""
+
+#: ../../enterprise/godmode/modules/configure_local_component.php:579
+#: ../../godmode/modules/manage_network_components_form_common.php:380
+#: ../../godmode/agentes/module_manager_editor_common.php:1001
+msgid "Add tags to module"
+msgstr ""
+
+#: ../../enterprise/godmode/modules/configure_local_component.php:580
+#: ../../godmode/modules/manage_network_components_form_common.php:381
+#: ../../godmode/agentes/module_manager_editor_common.php:1010
+msgid "Delete tags to module"
+msgstr ""
+
+#: ../../enterprise/godmode/modules/configure_local_component.php:603
+msgid "Macros"
+msgstr ""
+
+#: ../../enterprise/godmode/modules/configure_local_component.php:978
+#: ../../godmode/modules/manage_network_components_form_common.php:706
+#: ../../godmode/agentes/module_manager_editor_common.php:1994
+msgid "Normal Status"
+msgstr ""
+
+#: ../../enterprise/godmode/modules/configure_local_component.php:979
+#: ../../godmode/modules/manage_network_components_form_common.php:707
+#: ../../godmode/agentes/module_manager_editor_common.php:1995
+msgid "Warning Status"
+msgstr ""
+
+#: ../../enterprise/godmode/modules/configure_local_component.php:980
+#: ../../godmode/modules/manage_network_components_form_common.php:708
+#: ../../godmode/agentes/module_manager_editor_common.php:1996
+msgid "Critical Status"
+msgstr ""
+
+#: ../../enterprise/godmode/modules/configure_local_component.php:983
+#: ../../godmode/modules/manage_network_components_form_common.php:710
+#: ../../godmode/agentes/module_manager_editor_common.php:1998
+msgid "Please introduce a maximum warning higher than the minimun warning"
+msgstr ""
+
+#: ../../enterprise/godmode/modules/configure_local_component.php:985
+#: ../../godmode/modules/manage_network_components_form_common.php:711
+#: ../../godmode/agentes/module_manager_editor_common.php:1999
+msgid "Please introduce a maximum critical higher than the minimun critical"
+msgstr ""
+
+#: ../../enterprise/godmode/modules/configure_local_component.php:987
+msgid "Please introduce a positicve percentage value"
+msgstr ""
+
+#: ../../enterprise/godmode/modules/local_components.php:141
+#: ../../godmode/modules/manage_network_components.php:196
+#: ../../godmode/alerts/configure_alert_template.php:191
+#, php-format
+msgid "Successfully created from %s"
+msgstr ""
+
+#: ../../enterprise/godmode/modules/local_components.php:157
+msgid "Local component management"
+msgstr ""
+
+#: ../../enterprise/godmode/modules/local_components.php:263
+#, php-format
+msgid ""
+"This node is configured with centralized mode. All local components are read "
+"only. Go to %s to manage them."
+msgstr ""
+
+#: ../../enterprise/godmode/modules/local_components.php:443
+#: ../../enterprise/godmode/modules/manage_inventory_modules.php:217
+#: ../../enterprise/godmode/modules/manage_inventory_modules.php:250
+#: ../../godmode/modules/manage_network_components.php:578
+#: ../../godmode/modules/manage_network_templates.php:114
+#: ../../godmode/modules/manage_nc_groups.php:194
+msgid "Successfully multiple deleted"
+msgstr ""
+
+#: ../../enterprise/godmode/modules/local_components.php:444
+#: ../../enterprise/godmode/modules/manage_inventory_modules.php:218
+#: ../../enterprise/godmode/modules/manage_inventory_modules.php:251
+#: ../../godmode/modules/manage_network_components.php:579
+#: ../../godmode/modules/manage_network_templates.php:115
+#: ../../godmode/modules/manage_nc_groups.php:195
+msgid "Not deleted. Error deleting multiple data"
+msgstr ""
+
+#: ../../enterprise/godmode/modules/local_components.php:548
+msgid "Search by name, description or data, list matches."
+msgstr ""
+
+#: ../../enterprise/godmode/modules/manage_inventory_modules.php:40
+msgid "To manage inventory plugin you must activate centralized management"
+msgstr ""
+
+#: ../../enterprise/godmode/modules/manage_inventory_modules.php:117
+msgid "Successfully created inventory module"
+msgstr ""
+
+#: ../../enterprise/godmode/modules/manage_inventory_modules.php:118
+msgid "Error creating inventory module"
+msgstr ""
+
+#: ../../enterprise/godmode/modules/manage_inventory_modules.php:143
+#: ../../enterprise/godmode/agentes/inventory_manager.php:128
+#: ../../enterprise/godmode/policies/policy_inventory_modules.php:216
+msgid "Successfully updated inventory module"
+msgstr ""
+
+#: ../../enterprise/godmode/modules/manage_inventory_modules.php:144
+#: ../../enterprise/godmode/agentes/inventory_manager.php:130
+#: ../../enterprise/godmode/policies/policy_inventory_modules.php:225
+msgid "Error updating inventory module"
+msgstr ""
+
+#: ../../enterprise/godmode/modules/manage_inventory_modules.php:162
+#: ../../enterprise/godmode/modules/manage_inventory_modules.php:183
+#: ../../enterprise/godmode/agentes/inventory_manager.php:100
+msgid "Successfully deleted inventory module"
+msgstr ""
+
+#: ../../enterprise/godmode/modules/manage_inventory_modules.php:163
+#: ../../enterprise/godmode/modules/manage_inventory_modules.php:184
+#: ../../enterprise/godmode/agentes/inventory_manager.php:102
+msgid "Error deleting inventory module"
+msgstr ""
+
+#: ../../enterprise/godmode/modules/manage_inventory_modules.php:275
+#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:114
+msgid "Interpreter"
+msgstr ""
+
+#: ../../enterprise/godmode/modules/manage_inventory_modules.php:284
+msgid "No inventory modules defined"
+msgstr ""
+
+#: ../../enterprise/godmode/modules/manage_inventory_modules.php:305
+msgid "Local module"
+msgstr ""
+
+#: ../../enterprise/godmode/modules/manage_inventory_modules.php:307
+msgid "Remote/Local"
+msgstr ""
+
+#: ../../enterprise/godmode/modules/manage_inventory_modules.php:353
+msgid ""
+"The configurations of inventory modules from the nodes have been unified.\n"
+"\t\tFrom this point on, changes to the inventory scripts must be made "
+"through this screen."
+msgstr ""
+
+#: ../../enterprise/godmode/modules/manage_inventory_modules.php:355
+msgid "You can find more information at:"
+msgstr ""
+
+#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:71
+#: ../../enterprise/godmode/agentes/inventory_manager.php:165
+msgid "Inventory module error"
+msgstr ""
+
+#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:116
+msgid "Left blank for the LOCAL inventory modules"
+msgstr ""
+
+#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:118
+msgid "Block Mode"
+msgstr ""
+
+#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:122
+msgid "separate fields with "
+msgstr ""
+
+#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:126
+msgid ""
+"Here is placed the script for the REMOTE inventory modules Local inventory "
+"modules don't use this field"
+msgstr ""
+
+#: ../../enterprise/godmode/services/services.elements.php:72
+msgid "Invalid service"
+msgstr ""
+
+#: ../../enterprise/godmode/services/services.elements.php:250
+msgid "Add custom field match"
+msgstr ""
+
+#: ../../enterprise/godmode/services/services.elements.php:256
+msgid "Both 'name' and 'value' must be defined to filter. Ignored otherwise."
+msgstr ""
+
+#: ../../enterprise/godmode/services/services.elements.php:261
+msgid "MySQL Regular expressions case sensitive."
+msgstr ""
+
+#: ../../enterprise/godmode/services/services.elements.php:267
+msgid "Matching objects type"
+msgstr ""
+
+#: ../../enterprise/godmode/services/services.elements.php:282
+msgid "Filter by group"
+msgstr ""
+
+#: ../../enterprise/godmode/services/services.elements.php:294
+msgid "Use regular expresions selectors"
+msgstr ""
+
+#: ../../enterprise/godmode/services/services.elements.php:302
+msgid "Having agent name"
+msgstr ""
+
+#: ../../enterprise/godmode/services/services.elements.php:310
+msgid "Having module name"
+msgstr ""
+
+#: ../../enterprise/godmode/services/services.elements.php:320
+msgid "Having custom fields"
+msgstr ""
+
+#: ../../enterprise/godmode/services/services.elements.php:331
+msgid "Apply rules on this server"
+msgstr ""
+
+#: ../../enterprise/godmode/services/services.elements.php:350
+msgid "Weights"
+msgstr ""
+
+#: ../../enterprise/godmode/services/services.elements.php:355
+msgid "In smart mode weights are automatically calculated."
+msgstr ""
+
+#: ../../enterprise/godmode/services/services.elements.php:453
+#: ../../enterprise/godmode/services/services.elements.php:461
+#: ../../enterprise/godmode/services/services.elements.php:468
+msgid "Selected agent not found."
+msgstr ""
+
+#: ../../enterprise/godmode/services/services.elements.php:474
+#: ../../enterprise/godmode/services/services.elements.php:485
+#, php-format
+msgid "Selected module not found in %s."
+msgstr ""
+
+#: ../../enterprise/godmode/services/services.elements.php:494
+msgid "Selected service not found."
+msgstr ""
+
+#: ../../enterprise/godmode/services/services.elements.php:511
+msgid "Selected service could generate a loop"
+msgstr ""
+
+#: ../../enterprise/godmode/services/services.elements.php:521
+#, php-format
+msgid "Failed adding service child: %s"
+msgstr ""
+
+#: ../../enterprise/godmode/services/services.elements.php:560
+#, php-format
+msgid "Selected rules are not valid: %s."
+msgstr ""
+
+#: ../../enterprise/godmode/services/services.elements.php:568
+msgid "Invalid element type."
+msgstr ""
+
+#: ../../enterprise/godmode/services/services.elements.php:594
+msgid "Element registered successfully"
+msgstr ""
+
+#: ../../enterprise/godmode/services/services.elements.php:640
+#, php-format
+msgid "Error deleting element: %s"
+msgstr ""
+
+#: ../../enterprise/godmode/services/services.elements.php:842
+msgid "Add element"
+msgstr ""
+
+#: ../../enterprise/godmode/services/services.elements.php:853
+msgid "Edit element"
+msgstr ""
+
+#: ../../enterprise/godmode/services/services.service.php:107
+msgid "Service already exists."
+msgstr ""
+
+#: ../../enterprise/godmode/services/services.service.php:118
+#: ../../enterprise/godmode/massive/massive_create_services.php:110
+msgid "No name specified for the service"
+msgstr ""
+
+#: ../../enterprise/godmode/services/services.service.php:129
+#: ../../enterprise/godmode/massive/massive_create_services.php:116
+msgid "No description specified for the service"
+msgstr ""
+
+#: ../../enterprise/godmode/services/services.service.php:140
+#: ../../enterprise/godmode/massive/massive_create_services.php:122
+msgid "You must specify an agent to store the service"
+msgstr ""
+
+#: ../../enterprise/godmode/services/services.service.php:197
+msgid "Error creating service: "
+msgstr ""
+
+#: ../../enterprise/godmode/services/services.service.php:206
+#: ../../enterprise/godmode/services/services.service.php:310
+msgid "New Service"
+msgstr ""
+
+#: ../../enterprise/godmode/services/services.service.php:212
+msgid "Service created successfully"
+msgstr ""
+
+#: ../../enterprise/godmode/services/services.service.php:290
+msgid "Service updated successfully"
+msgstr ""
+
+#: ../../enterprise/godmode/services/services.service.php:361
+msgid "Dynamic elements are not affected by cascade protection"
+msgstr ""
+
+#: ../../enterprise/godmode/services/services.service.php:511
+msgid "No Services or concrete action"
+msgstr ""
+
+#: ../../enterprise/godmode/services/services.service.php:530
+msgid "Random name"
+msgstr ""
+
+#: ../../enterprise/godmode/services/services.service.php:562
+#: ../../enterprise/godmode/massive/massive_create_services.php:659
+msgid ""
+"This group will be used also to control access to this service and its "
+"elements."
+msgstr ""
+
+#: ../../enterprise/godmode/services/services.service.php:578
+msgid "Server assigned"
+msgstr ""
+
+#: ../../enterprise/godmode/services/services.service.php:579
+msgid "Selected Prediction server will be assigned to evaluate the service."
+msgstr ""
+
+#: ../../enterprise/godmode/services/services.service.php:600
+msgid "Evaluation interval"
+msgstr ""
+
+#: ../../enterprise/godmode/services/services.service.php:626
+#: ../../enterprise/godmode/massive/massive_create_services.php:674
+msgid "Agent to store data"
+msgstr ""
+
+#: ../../enterprise/godmode/services/services.service.php:668
+#: ../../enterprise/godmode/massive/massive_create_services.php:716
+msgid "In smart mode, thresholds are percentual."
+msgstr ""
+
+#: ../../enterprise/godmode/services/services.service.php:718
+#: ../../enterprise/godmode/massive/massive_create_services.php:799
+msgid "Unknown elements as critical"
+msgstr ""
+
+#: ../../enterprise/godmode/services/services.service.php:748
+#: ../../enterprise/godmode/massive/massive_create_services.php:829
+msgid "Cascade protection enabled"
+msgstr ""
+
+#: ../../enterprise/godmode/services/services.service.php:758
+msgid "General Data"
+msgstr ""
+
+#: ../../enterprise/godmode/services/services.service.php:768
+#: ../../enterprise/godmode/massive/massive_create_services.php:842
+msgid "Calculate continuous SLA"
+msgstr ""
+
+#: ../../enterprise/godmode/services/services.service.php:778
+#: ../../enterprise/godmode/massive/massive_create_services.php:852
+msgid "S.L.A. interval"
+msgstr ""
+
+#: ../../enterprise/godmode/services/services.service.php:792
+#: ../../enterprise/godmode/massive/massive_create_services.php:866
+msgid "S.L.A. limit"
+msgstr ""
+
+#: ../../enterprise/godmode/services/services.service.php:813
+msgid ""
+"Here are described the alert templates, which will use their default "
+"actions.\n"
+"\t\tYou can modify the default behaviour editing alerts in the agent who "
+"stores data and alert definitions about the service and the SLA status."
+msgstr ""
+
+#: ../../enterprise/godmode/services/services.service.php:839
+#: ../../enterprise/godmode/massive/massive_create_services.php:896
+msgid "Warning service alert"
+msgstr ""
+
+#: ../../enterprise/godmode/services/services.service.php:851
+#: ../../enterprise/godmode/massive/massive_create_services.php:908
+msgid "Critical service alert"
+msgstr ""
+
+#: ../../enterprise/godmode/services/services.service.php:863
+#: ../../enterprise/godmode/massive/massive_create_services.php:920
+msgid "Unknown service alert"
+msgstr ""
+
+#: ../../enterprise/godmode/services/services.service.php:875
+#: ../../enterprise/godmode/massive/massive_create_services.php:932
+msgid "S.L.A. critical service alert"
+msgstr ""
+
+#: ../../enterprise/godmode/services/services.service.php:970
+msgid ""
+"This change in the service configuration will delete the history of the "
+"service modules. Do you wish to continue?"
+msgstr ""
+
+#: ../../enterprise/godmode/services/services.service.php:972
+msgid ""
+"This change in the service configuration will prevent the SLA modules from "
+"being created. Do you wish to continue?"
+msgstr ""
+
+#: ../../enterprise/godmode/services/services.massive.meta.php:56
+#: ../../enterprise/godmode/services/services.massive.elements.php:93
+#: ../../godmode/massive/massive_edit_agents.php:952
+#: ../../godmode/agentes/agent_manager.php:502
+msgid "Not available"
+msgstr ""
+
+#: ../../enterprise/godmode/services/services.massive.elements.php:56
+#: ../../enterprise/godmode/massive/massive_operations.php:157
+msgid "Bulk service elements adition"
+msgstr ""
+
+#: ../../enterprise/godmode/services/services.massive.elements.php:57
+#: ../../enterprise/godmode/massive/massive_operations.php:159
+msgid "Bulk service elements deletion"
+msgstr ""
+
+#: ../../enterprise/godmode/services/services.massive.elements.php:61
+#: ../../enterprise/godmode/massive/massive_operations.php:158
+msgid "Bulk service elements edition"
+msgstr ""
+
+#: ../../enterprise/godmode/reporting/visual_console_template.php:63
+#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:62
+#: ../../godmode/reporting/map_builder.php:75
+#: ../../godmode/reporting/map_builder.php:121
+#: ../../godmode/reporting/visual_console_favorite.php:72
+msgid "Visual Console List"
+msgstr ""
+
+#: ../../enterprise/godmode/reporting/visual_console_template.php:75
+#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:74
+#: ../../godmode/reporting/map_builder.php:87
+#: ../../godmode/reporting/visual_console_favorite.php:84
+msgid "Visual Favourite Console"
+msgstr ""
+
+#: ../../enterprise/godmode/reporting/visual_console_template.php:88
+#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:87
+#: ../../godmode/reporting/map_builder.php:100
+#: ../../godmode/reporting/visual_console_favorite.php:97
+msgid "Visual Console Template"
+msgstr ""
+
+#: ../../enterprise/godmode/reporting/visual_console_template.php:100
+#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:99
+#: ../../godmode/reporting/map_builder.php:112
+#: ../../godmode/reporting/visual_console_favorite.php:109
+msgid "Visual Console Template Wizard"
+msgstr ""
+
+#: ../../enterprise/godmode/reporting/visual_console_template.php:141
+#: ../../enterprise/godmode/reporting/visual_console_template.php:157
+msgid "visual console has not been selected"
+msgstr ""
+
+#: ../../enterprise/godmode/reporting/visual_console_template.php:147
+msgid "Error. Error created template"
+msgstr ""
+
+#: ../../enterprise/godmode/reporting/visual_console_template.php:149
+msgid "Error. Template name cannot be repeated"
+msgstr ""
+
+#: ../../enterprise/godmode/reporting/visual_console_template.php:151
+msgid "Successfully created template"
+msgstr ""
+
+#: ../../enterprise/godmode/reporting/visual_console_template.php:163
+msgid "Error. Error delete template"
+msgstr ""
+
+#: ../../enterprise/godmode/reporting/visual_console_template.php:165
+msgid "Successfully delete template"
+msgstr ""
+
+#: ../../enterprise/godmode/reporting/visual_console_template.php:187
+msgid "Create From"
+msgstr ""
+
+#: ../../enterprise/godmode/reporting/visual_console_template.php:198
+msgid "There is not any visual console created. Please, create one firstly."
+msgstr ""
+
+#: ../../enterprise/godmode/reporting/visual_console_template.php:254
+#: ../../enterprise/godmode/reporting/graph_template_list.php:257
+#: ../../enterprise/godmode/reporting/reporting_builder.template.php:166
+#: ../../enterprise/godmode/reporting/reporting_builder.template.php:667
+msgid "Create template"
+msgstr ""
+
+#: ../../enterprise/godmode/reporting/visual_console_template.php:260
+msgid "Create New Template"
+msgstr ""
+
+#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:108
+msgid "Template Wizard"
+msgstr ""
+
+#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:156
+#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:198
+msgid "Sucessfully applied"
+msgstr ""
+
+#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:158
+#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:200
+msgid "Could not be applied"
+msgstr ""
+
+#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:200
+msgid "Visual console name"
+msgstr ""
+
+#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:200
+msgid ""
+"You can use macro _agentalias_ here. Left in blank if you want to use "
+"default name: Template name - agent alias"
+msgstr ""
+
+#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:236
+#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:288
+msgid "Target group"
+msgstr ""
+
+#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:281
+#: ../../enterprise/godmode/reporting/graph_template_wizard.php:228
+#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:415
+#: ../../enterprise/godmode/reporting/reporting_builder.template.php:832
+msgid "Agents available"
+msgstr ""
+
+#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:287
+#: ../../enterprise/godmode/reporting/graph_template_wizard.php:234
+#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:425
+#: ../../enterprise/godmode/reporting/reporting_builder.template_editor.php:208
+#: ../../enterprise/godmode/reporting/reporting_builder.template.php:834
+msgid "Agents to apply"
+msgstr ""
+
+#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:304
+#: ../../enterprise/godmode/reporting/graph_template_wizard.php:259
+#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:466
+msgid "Add agents to template"
+msgstr ""
+
+#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:306
+#: ../../enterprise/godmode/reporting/graph_template_wizard.php:263
+#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:478
+msgid "Undo agents to template"
+msgstr ""
+
+#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:324
+#: ../../enterprise/godmode/reporting/graph_template_wizard.php:281
+#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:499
+msgid "Apply template"
+msgstr ""
+
+#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:631
+#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:661
+#: ../../enterprise/godmode/reporting/graph_template_wizard.php:443
+#: ../../enterprise/godmode/reporting/graph_template_wizard.php:475
+#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:830
+#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:861
+msgid "Please set template distinct than "
+msgstr ""
+
+#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:635
+#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:834
+msgid "Please set agent distinct than "
+msgstr ""
+
+#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:656
+#: ../../enterprise/godmode/reporting/graph_template_wizard.php:470
+#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:856
+msgid ""
+"This will be delete all reports created in previous template applications. "
+"Do you want to continue?"
+msgstr ""
+
+#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:207
+#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:226
+#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:245
+#: ../../godmode/reporting/reporting_builder.list_items.php:378
+#: ../../godmode/reporting/reporting_builder.list_items.php:397
+#: ../../godmode/reporting/reporting_builder.list_items.php:416
+msgid "Ascendent"
+msgstr ""
+
+#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:214
+#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:233
+#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:252
+#: ../../godmode/reporting/reporting_builder.list_items.php:385
+#: ../../godmode/reporting/reporting_builder.list_items.php:404
+#: ../../godmode/reporting/reporting_builder.list_items.php:420
+msgid "Descent"
+msgstr ""
+
+#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:258
+#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:215
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1722
+#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:111
+#: ../../godmode/reporting/reporting_builder.list_items.php:424
+#: ../../godmode/reporting/create_container.php:364
+#: ../../godmode/reporting/create_container.php:473
+#: ../../godmode/reporting/create_container.php:527
+#: ../../godmode/reporting/reporting_builder.item_editor.php:1212
+msgid "Time lapse"
+msgstr ""
+
+#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:259
+#: ../../godmode/reporting/reporting_builder.list_items.php:425
+msgid "Name or Description"
+msgstr ""
+
+#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:312
+#: ../../godmode/netflow/nf_item_list.php:228
+#: ../../godmode/netflow/nf_item_list.php:230
+msgid "Move to up"
+msgstr ""
+
+#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:325
+#: ../../godmode/netflow/nf_item_list.php:226
+#: ../../godmode/netflow/nf_item_list.php:231
+msgid "Move to down"
+msgstr ""
+
+#: ../../enterprise/godmode/reporting/aws_view.php:53
+msgid "Instance"
+msgstr ""
+
+#: ../../enterprise/godmode/reporting/aws_view.php:55
+msgid "IO read"
+msgstr ""
+
+#: ../../enterprise/godmode/reporting/aws_view.php:56
+msgid "IO write"
+msgstr ""
+
+#: ../../enterprise/godmode/reporting/aws_view.php:57
+msgid "Disk read"
+msgstr ""
+
+#: ../../enterprise/godmode/reporting/aws_view.php:58
+msgid "Disk write"
+msgstr ""
+
+#: ../../enterprise/godmode/reporting/aws_view.php:59
+msgid "Network in"
+msgstr ""
+
+#: ../../enterprise/godmode/reporting/aws_view.php:60
+msgid "Network out"
+msgstr ""
+
+#: ../../enterprise/godmode/reporting/aws_view.php:134
+msgid "Failed to retrieve AWS information using selected account."
+msgstr ""
+
+#: ../../enterprise/godmode/reporting/aws_view.php:153
+msgid "AWS credentials not validated."
+msgstr ""
+
+#: ../../enterprise/godmode/reporting/aws_view.php:168
+msgid "Discovery Cloud: AWS"
+msgstr ""
+
+#: ../../enterprise/godmode/reporting/aws_view.php:177
+msgid "Please, select an account: "
+msgstr ""
+
+#: ../../enterprise/godmode/reporting/aws_view.php:186
+msgid "CREATE CLOUD MONITORING DISCOVERY TASK"
+msgstr ""
+
+#: ../../enterprise/godmode/reporting/aws_view.php:189
+msgid ""
+"Within this view you will find information collected using Discovery Cloud "
+"AWS task. You will be able to see the most relevant information about your "
+"infrastructure, such as the current cost of your contracted services, the "
+"number of instances per region or resource usage metrics. In order to "
+"collect this information you must create a Cloud Monitoring Discovery task."
+msgstr ""
+
+#: ../../enterprise/godmode/reporting/aws_view.php:192
+msgid "Press the create button to begin."
+msgstr ""
+
+#: ../../enterprise/godmode/reporting/aws_view.php:221
+msgid "Instance table"
+msgstr ""
+
+#: ../../enterprise/godmode/reporting/graph_template_wizard.php:80
+#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:147
+msgid "Cleanup sucessfully"
+msgstr ""
+
+#: ../../enterprise/godmode/reporting/graph_template_wizard.php:83
+#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:150
+msgid "Cleanup error"
+msgstr ""
+
+#: ../../enterprise/godmode/reporting/graph_template_wizard.php:127
+#: ../../enterprise/godmode/reporting/graph_template_list.php:111
+#: ../../godmode/reporting/graph_container.php:101
+#: ../../godmode/reporting/graph_container.php:109
+#: ../../godmode/reporting/create_container.php:188
+msgid "Graph container"
+msgstr ""
+
+#: ../../enterprise/godmode/reporting/graph_template_wizard.php:135
+msgid "Wizard template"
+msgstr ""
+
+#: ../../enterprise/godmode/reporting/graph_template_wizard.php:197
+#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:266
+msgid "Clean up template"
+msgstr ""
+
+#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:195
+msgid "No item could be applied to report."
+msgstr ""
+
+#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:198
+msgid "reports"
+msgstr ""
+
+#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:198
+msgid "items"
+msgstr ""
+
+#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:207
+#: ../../godmode/massive/massive_operations.php:347
+msgid ""
+"In order to perform massive operations, PHP needs a correct configuration in "
+"timeout parameters. Please, open your PHP configuration file (php.ini) for "
+"example: <i>sudo vi /etc/php5/apache2/php.ini;</i><br> And set your timeout "
+"parameters to a correct value: <br><i> max_execution_time = 0</i> and "
+"<i>max_input_time = -1</i>"
+msgstr ""
+
+#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:221
+msgid "Create template report wizard"
+msgstr ""
+
+#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:273
+msgid "Create report per agent"
+msgstr ""
+
+#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:282
+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:327
+msgid "Filter by"
+msgstr ""
+
+#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:398
+msgid "Filter tag"
+msgstr ""
+
+#: ../../enterprise/godmode/reporting/mysql_builder.php:66
+msgid "Custom MySQL template builder"
+msgstr ""
+
+#: ../../enterprise/godmode/reporting/mysql_builder.php:117
+msgid "Create custom SQL"
+msgstr ""
+
+#: ../../enterprise/godmode/reporting/mysql_builder.php:128
+#: ../../enterprise/godmode/reporting/mysql_builder.php:146
+msgid "Create new custom"
+msgstr ""
+
+#: ../../enterprise/godmode/reporting/mysql_builder.php:187
+msgid "List of custom MySQL templates"
+msgstr ""
+
+#: ../../enterprise/godmode/reporting/mysql_builder.php:193
+msgid "Template builder"
+msgstr ""
+
+#: ../../enterprise/godmode/reporting/mysql_builder.php:212
+msgid "Successfully operation"
+msgstr ""
+
+#: ../../enterprise/godmode/reporting/mysql_builder.php:212
+msgid "Could not be operation"
+msgstr ""
+
+#: ../../enterprise/godmode/reporting/mysql_builder.php:214
+msgid "Without changes"
+msgstr ""
+
+#: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:81
+msgid "Advance Reporting"
+msgstr ""
+
+#: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:97
+msgid "Page orientation"
+msgstr ""
+
+#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:65
+msgid "Graph template item editor"
+msgstr ""
+
+#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:206
+msgid "Decrease Weight"
+msgstr ""
+
+#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:206
+msgid "Increase Weight"
+msgstr ""
+
+#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:57
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:196
+#: ../../enterprise/godmode/reporting/reporting_builder.global.php:51
+#: ../../godmode/reporting/reporting_builder.item_editor.php:58
+msgid "Only table"
+msgstr ""
+
+#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:58
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:197
+#: ../../enterprise/godmode/reporting/reporting_builder.global.php:52
+#: ../../godmode/reporting/reporting_builder.item_editor.php:59
+msgid "Table & Graph"
+msgstr ""
+
+#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:59
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:198
+#: ../../enterprise/godmode/reporting/reporting_builder.global.php:53
+#: ../../godmode/reporting/reporting_builder.item_editor.php:60
+msgid "Only graph"
+msgstr ""
+
+#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:224
+msgid "hourly S.L.A."
+msgstr ""
+
+#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:225
+msgid "Availability Graph S.L.A."
+msgstr ""
+
+#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:291
+#: ../../enterprise/godmode/reporting/reporting_builder.global.php:220
+#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:207
+#: ../../godmode/reporting/visual_console_builder.wizard.php:408
+msgid "If you select several agents, only the common modules will be displayed"
+msgstr ""
+
+#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:305
+#: ../../enterprise/godmode/reporting/reporting_builder.global.php:106
+#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:275
+msgid "Elements to apply"
+msgstr ""
+
+#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:354
+msgid "SLA min value"
+msgstr ""
+
+#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:354
+#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:360
+#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:366
+msgid "Enter possible range of values in SLA."
+msgstr ""
+
+#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:355
+msgid "SLA min Value"
+msgstr ""
+
+#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:360
+msgid "SLA max value"
+msgstr ""
+
+#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:361
+msgid "SLA max Value"
+msgstr ""
+
+#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:366
+msgid "SLA Limit %"
+msgstr ""
+
+#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:367
+msgid "SLA Limit Value"
+msgstr ""
+
+#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:372
+msgid "Dynamic SLA"
+msgstr ""
+
+#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:379
+msgid "Inverse SLA"
+msgstr ""
+
+#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:388
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3030
+#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:448
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3077
+msgid "Failover mode"
+msgstr ""
+
+#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:389
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3031
+#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:449
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3078
+msgid ""
+"SLA calculation must be performed taking into account the failover modules "
+"assigned to the primary module"
+msgstr ""
+
+#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:406
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3050
+#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:466
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3097
+msgid "Failover type"
+msgstr ""
+
+#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:411
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3055
+#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:471
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3102
+msgid "Failover normal"
+msgstr ""
+
+#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:423
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3067
+#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:483
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3114
+msgid "Failover simple"
+msgstr ""
+
+#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:436
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2965
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3022
+msgid "SLA items sorted by fulfillment value"
+msgstr ""
+
+#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:441
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1816
+#: ../../godmode/reporting/reporting_builder.item_editor.php:1309
+msgid "Only display wrong SLAs"
+msgstr ""
+
+#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:447
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2576
+#: ../../enterprise/godmode/reporting/reporting_builder.global.php:438
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2566
+msgid "Show graph"
+msgstr ""
+
+#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:467
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3366
+#: ../../enterprise/godmode/reporting/reporting_builder.global.php:465
+#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:783
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3427
+msgid "Show item in landscape format (only PDF)"
+msgstr ""
+
+#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:481
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3375
+#: ../../enterprise/godmode/reporting/reporting_builder.global.php:481
+#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:799
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3436
+msgid "Page break at the end of the item (only PDF)"
+msgstr ""
+
+#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:520
+msgid "Please introduce a SLA max value higher than the SLA min value"
+msgstr ""
+
+#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:644
+msgid "Dynamic SLA can not be Inverse"
+msgstr ""
+
+#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:649
+msgid "Check Dynamic SLA or introduce a max and min SLA value"
+msgstr ""
+
+#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:653
+msgid "SLA Limit value is needed"
+msgstr ""
+
+#: ../../enterprise/godmode/reporting/graph_template_editor.php:58
+msgid "Not created. Blank name"
+msgstr ""
+
+#: ../../enterprise/godmode/reporting/graph_template_editor.php:94
+msgid "Graph template editor"
+msgstr ""
+
+#: ../../enterprise/godmode/reporting/graph_template_editor.php:173
+msgid "Template updated successfully"
+msgstr ""
+
+#: ../../enterprise/godmode/reporting/graph_template_editor.php:219
+msgid "3 hours"
+msgstr ""
+
+#: ../../enterprise/godmode/reporting/graph_template_editor.php:223
+#: ../../godmode/setup/performance.php:532
+msgid "2 days"
+msgstr ""
+
+#: ../../enterprise/godmode/reporting/graph_template_editor.php:224
+msgid "4 days"
+msgstr ""
+
+#: ../../enterprise/godmode/reporting/graph_template_editor.php:225
+#: ../../godmode/setup/performance.php:534
+msgid "Last week"
+msgstr ""
+
+#: ../../enterprise/godmode/reporting/graph_template_editor.php:227
+#: ../../godmode/setup/performance.php:536
+msgid "Last month"
+msgstr ""
+
+#: ../../enterprise/godmode/reporting/graph_template_editor.php:228
+msgid "2 months"
+msgstr ""
+
+#: ../../enterprise/godmode/reporting/graph_template_editor.php:239
+msgid "Stacked"
+msgstr ""
+
+#: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:115
+msgid "Advance Options"
+msgstr ""
+
+#: ../../enterprise/godmode/reporting/graph_template_list.php:119
+msgid "Graph template management"
+msgstr ""
+
+#: ../../enterprise/godmode/reporting/graph_template_list.php:203
+#: ../../enterprise/godmode/reporting/reporting_builder.template.php:497
+#: ../../godmode/alerts/alert_list.list.php:56
+msgid "Template name"
+msgstr ""
+
+#: ../../enterprise/godmode/reporting/graph_template_list.php:252
+msgid "There are no defined graph templates"
+msgstr ""
+
+#: ../../enterprise/godmode/reporting/reporting_builder.template_editor.php:170
+#: ../../enterprise/godmode/reporting/reporting_builder.template.php:107
+#: ../../enterprise/godmode/reporting/reporting_builder.template.php:131
+#: ../../enterprise/godmode/reporting/reporting_builder.template.php:193
+msgid "Edit template"
+msgstr ""
+
+#: ../../enterprise/godmode/reporting/reporting_builder.template_editor.php:209
+#: ../../enterprise/godmode/reporting/reporting_builder.template.php:903
+msgid ""
+"Case insensitive regular expression for agent alias. For example: Network.* "
+"will match with the following agent alias: network_agent1, NetworK CHECKS"
+msgstr ""
+
+#: ../../enterprise/godmode/reporting/reporting_builder.template_editor.php:222
+#: ../../godmode/reporting/reporting_builder.main.php:226
+msgid "Generate cover page in PDF render"
+msgstr ""
+
+#: ../../enterprise/godmode/reporting/reporting_builder.template_editor.php:230
+#: ../../godmode/reporting/reporting_builder.main.php:234
+msgid "Generate index in PDF render"
+msgstr ""
+
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1624
+#: ../../godmode/reporting/reporting_builder.php:3660
+msgid "Successfull action"
+msgstr ""
+
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1625
+#: ../../godmode/servers/modificar_server.php:157
+#: ../../godmode/servers/modificar_server.php:168
+msgid "Unsuccessfull action"
+msgstr ""
+
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1642
+#: ../../godmode/reporting/reporting_builder.item_editor.php:972
+msgid "Item Editor"
+msgstr ""
+
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1744
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:4993
+#: ../../enterprise/godmode/reporting/reporting_builder.global.php:194
+#: ../../enterprise/godmode/reporting/reporting_builder.global.php:797
+#: ../../godmode/reporting/reporting_builder.item_editor.php:1237
+#: ../../godmode/reporting/reporting_builder.item_editor.php:6945
+msgid ""
+"Warning: period 0 reports cannot be used to show information back in time. "
+"Information contained in this kind of reports will be always reporting the "
+"most recent information"
+msgstr ""
+
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1784
+#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:759
+#: ../../godmode/reporting/reporting_builder.item_editor.php:1277
+msgid "Projection period"
+msgstr ""
+
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1803
+#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:734
+#: ../../godmode/reporting/reporting_builder.item_editor.php:1296
+msgid "Data range"
+msgstr ""
+
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1830
+#: ../../godmode/reporting/reporting_builder.item_editor.php:1323
+msgid "Current month"
+msgstr ""
+
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1840
+#: ../../godmode/reporting/reporting_builder.item_editor.php:1339
+msgid "Working time"
+msgstr ""
+
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1905
+#: ../../godmode/reporting/reporting_builder.item_editor.php:1405
+msgid "Time from"
+msgstr ""
+
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1923
+#: ../../godmode/reporting/reporting_builder.item_editor.php:1423
+msgid "Time to"
+msgstr ""
+
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1941
+#: ../../godmode/reporting/reporting_builder.item_editor.php:1441
+msgid "Show 24x7 item"
+msgstr ""
+
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1971
+msgid "Select server"
+msgstr ""
+
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1985
+#: ../../godmode/reporting/reporting_builder.item_editor.php:189
+msgid "Local metaconsole"
+msgstr ""
+
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2056
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3632
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3864
+msgid ""
+"Case insensitive regular expression or string for module name. For example: "
+"if you use this field with \"Module exact match\" enabled then this field "
+"has to be fulfilled with the literally string of the module name, if not you "
+"can use a regular expression. Example: .*usage.* will match: cpu_usage, vram "
+"usage in matchine 1."
+msgstr ""
+
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2078
+msgid "Module exact match"
+msgstr ""
+
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2079
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3564
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3640
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3788
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3871
+msgid "Check it if you want to match module name literally"
+msgstr ""
+
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2095
+msgid "Case insensitive regular expression or string for templates name."
+msgstr ""
+
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2118
+msgid "Case insensitive regular expression or string for actions name."
+msgstr ""
+
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2140
+msgid "Hide items without data"
+msgstr ""
+
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2141
+msgid "Check it if you want not show items without data"
+msgstr ""
+
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2198
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2237
+msgid "Max items"
+msgstr ""
+
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2215
+#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:770
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2249
+msgid "Serialized header"
+msgstr ""
+
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2216
+#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:770
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2250
+msgid "The separator character is |"
+msgstr ""
+
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2231
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2202
+msgid "Custom SQL template"
+msgstr ""
+
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2252
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2223
+msgid "The entities of the fields that contain them must be included."
+msgstr ""
+
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2277
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2280
+msgid "Protocol must be specified in URL (e.g.: \"https://\")"
+msgstr ""
+
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2283
+#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:774
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2286
+msgid "Field separator"
+msgstr ""
+
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2284
+#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:774
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2287
+msgid "Separator for different fields in the serialized text chain"
+msgstr ""
+
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2304
+#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:778
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2307
+msgid "Line separator"
+msgstr ""
+
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2305
+#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:778
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2308
+msgid ""
+"Separator in different lines (composed by fields) of the serialized text "
+"chain"
+msgstr ""
+
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2325
+#: ../../enterprise/godmode/reporting/reporting_builder.global.php:313
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2328
+msgid "Group by agent"
+msgstr ""
+
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2341
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3392
+msgid "Group by"
+msgstr ""
+
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2375
+#: ../../enterprise/godmode/reporting/reporting_builder.global.php:325
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2998
+msgid "Show in the same row"
+msgstr ""
+
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2377
+#: ../../enterprise/godmode/reporting/reporting_builder.global.php:326
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3000
+msgid "Show one module per row with all its operations"
+msgstr ""
+
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2469
+#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:523
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2432
+msgid "Graph render"
+msgstr ""
+
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2475
+#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:529
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2438
+msgid "Avg, max & min"
+msgstr ""
+
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2476
+#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:530
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2439
+msgid "Max only"
+msgstr ""
+
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2477
+#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:531
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2440
+msgid "Min only"
+msgstr ""
+
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2478
+#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:532
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2441
+msgid "Avg only"
+msgstr ""
+
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2491
+#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:559
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2487
+msgid "Full resolution graph (TIP)"
+msgstr ""
+
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2503
+#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:577
+msgid ""
+"If this option was checked, only adding in elements that type of modules "
+"support this option."
+msgstr ""
+
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2533
+#: ../../enterprise/godmode/reporting/reporting_builder.global.php:417
+#: ../../enterprise/godmode/alerts/alert_inventory_builder.php:215
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2542
+msgid "Condition"
+msgstr ""
+
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2543
+#: ../../enterprise/godmode/reporting/reporting_builder.global.php:424
+msgid ">="
+msgstr ""
+
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2550
+#: ../../enterprise/godmode/reporting/reporting_builder.global.php:426
+msgid "<"
+msgstr ""
+
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2590
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2580
+msgid "Select fields to show"
+msgstr ""
+
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2669
+#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:354
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2656
+msgid "Show address instead module name"
+msgstr ""
+
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2670
+#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:355
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2657
+msgid "Show the main address of agent."
+msgstr ""
+
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2689
+#: ../../enterprise/godmode/reporting/reporting_builder.global.php:450
+#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:332
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2676
+msgid "Show resume"
+msgstr ""
+
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2690
+#: ../../enterprise/godmode/reporting/reporting_builder.global.php:450
+msgid ""
+"Show a resume table with max, min, average of total modules on the report "
+"bottom"
+msgstr ""
+
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2708
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2696
+msgid "<p class= \"mrgn_lft_15px\">Select fields to show</p>"
+msgstr ""
+
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2756
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2756
+msgid "<p class=\"mrgn_lft_15px\">Select fields to show</p>"
+msgstr ""
+
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2772
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2772
+msgid "Agent min values"
+msgstr ""
+
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2784
+#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:591
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2785
+msgid "Show Summary group"
+msgstr ""
+
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2801
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3375
+msgid "Show Summary"
+msgstr ""
+
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2870
+#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:655
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2871
+msgid "Event Status"
+msgstr ""
+
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2901
+#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:685
+msgid "By agent"
+msgstr ""
+
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2911
+#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:695
+msgid "By user validator"
+msgstr ""
+
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2921
+#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:705
+msgid "By criticity"
+msgstr ""
+
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2931
+#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:715
+msgid "Validated vs unvalidated"
+msgstr ""
+
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2945
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2979
+msgid "Height (dynamic graphs)"
+msgstr ""
+
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2985
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2963
+msgid "Query History Database"
+msgstr ""
+
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2997
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3044
+msgid "Priority mode"
+msgstr ""
+
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3002
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3049
+msgid "Priority ok mode"
+msgstr ""
+
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3014
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3061
+msgid "Priority unknown mode"
+msgstr ""
+
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3104
+msgid "Modules to match"
+msgstr ""
+
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3106
+msgid "Select the modules to match when create a report for agents"
+msgstr ""
+
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3206
+msgid "Modules to match (Free text)"
+msgstr ""
+
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3208
+msgid "Free text to filter the modules of agents when apply this template."
+msgstr ""
+
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3225
+msgid "Create a graph for each agent"
+msgstr ""
+
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3227
+msgid ""
+"If it is checked, the regexp or name of modules match only each to each to "
+"agent, instead create a big graph with all modules from all agents."
+msgstr ""
+
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3254
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3169
+msgid "Calculate for custom intervals"
+msgstr ""
+
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3266
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3181
+msgid "Time lapse intervals"
+msgstr ""
+
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3268
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3184
+msgid ""
+"Lapses of time in which the period is divided to make more precise "
+"calculations"
+msgstr ""
+
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3313
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3225
+msgid "Table only"
+msgstr ""
+
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3323
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3236
+msgid "Graph only"
+msgstr ""
+
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3333
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3247
+msgid "Graph and table"
+msgstr ""
+
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3350
+#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:816
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3264
+msgid "Uncompress module"
+msgstr ""
+
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3351
+#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:817
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3265
+msgid "Use uncompressed module data."
+msgstr ""
+
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3382
+#: ../../godmode/reporting/reporting_builder.item_editor.php:1165
+msgid "Filter by network"
+msgstr ""
+
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3412
+#: ../../godmode/reporting/reporting_builder.item_editor.php:1184
+msgid "Show alive IPs only"
+msgstr ""
+
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3425
+#: ../../godmode/reporting/reporting_builder.item_editor.php:1197
+msgid "Show IPs not assigned to an agent"
+msgstr ""
+
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3451
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3699
+#: ../../godmode/netflow/nf_item_list.php:282
+msgid "Create item"
+msgstr ""
+
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3509
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3793
+msgid "SLA Min. (value)"
+msgstr ""
+
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3514
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3798
+msgid "SLA Max. (value)"
+msgstr ""
+
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3519
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3803
+msgid "SLA Limit (%)"
+msgstr ""
+
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3536
+msgid "Please save the SLA template for start to add items in this list."
+msgstr ""
+
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3577
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3804
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:4249
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:4394
+msgid "Not literally"
+msgstr ""
+
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3623
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3855
+msgid ""
+"Case insensitive regular expression for agent name. For example: Network* "
+"will match with the following agent names: network_agent1, NetworK CHECKS"
+msgstr ""
+
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3639
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3870
+msgid "Literal module name forced"
+msgstr ""
+
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3760
+msgid "Please save the template to start adding items into the list."
+msgstr ""
+
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:4275
+msgid "Name and SLA limit should not be empty"
+msgstr ""
+
+#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:150
+#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:151
+msgid "Push the selected services into the list"
+msgstr ""
+
+#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:161
+#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:162
+msgid "Remove the services from the list"
+msgstr ""
+
+#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:229
+msgid "Icon preview"
+msgstr ""
+
+#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:295
+msgid "The services list is empty"
+msgstr ""
+
+#: ../../enterprise/godmode/reporting/reporting_builder.template.php:181
+msgid "List templates"
+msgstr ""
+
+#: ../../enterprise/godmode/reporting/reporting_builder.template.php:565
+#: ../../godmode/reporting/reporting_builder.php:1055
+msgid "HTML view"
+msgstr ""
+
+#: ../../enterprise/godmode/reporting/reporting_builder.template.php:573
+#: ../../godmode/reporting/reporting_builder.php:1065
+msgid "Export to XML"
+msgstr ""
+
+#: ../../enterprise/godmode/reporting/reporting_builder.template.php:661
+msgid "You haven't created templates yet."
+msgstr ""
+
+#: ../../enterprise/godmode/reporting/reporting_builder.template.php:681
+msgid "Generate a dynamic report"
+msgstr ""
+
+#: ../../enterprise/godmode/reporting/reporting_builder.template.php:765
+msgid "Set start and end date"
+msgstr ""
+
+#: ../../enterprise/godmode/reporting/reporting_builder.template.php:815
+msgid "Monthly SLA period"
+msgstr ""
+
+#: ../../enterprise/godmode/reporting/reporting_builder.template.php:815
+msgid "This field only applies in case of Monthly SLA item."
+msgstr ""
+
+#: ../../enterprise/godmode/reporting/reporting_builder.template.php:865
+msgid "Undo agents"
+msgstr ""
+
+#: ../../enterprise/godmode/reporting/reporting_builder.template.php:902
+msgid "RegEx agent filter"
+msgstr ""
+
+#: ../../enterprise/godmode/reporting/reporting_builder.template.php:918
+msgid "Generate"
+msgstr ""
+
+#: ../../enterprise/godmode/reporting/reporting_builder.template.php:1312
+#: ../../enterprise/godmode/reporting/reporting_builder.template.php:1334
+msgid "Please set agent or agent regex distinct than "
+msgstr ""
+
+#: ../../enterprise/godmode/reporting/reporting_builder.template.php:1342
+msgid "It is not a regular expression "
+msgstr ""
+
+#: ../../enterprise/godmode/reporting/reporting_builder.template.php:1344
+msgid "No agent matches regular expression "
+msgstr ""
+
+#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:298
+msgid "Order:"
+msgstr ""
+
+#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:334
+msgid ""
+"Show a resume table with max, min, average of total modules on the report "
+"bottom:"
+msgstr ""
+
+#: ../../enterprise/godmode/menu.php:16
+msgid "Manage Satellite Server"
+msgstr ""
+
+#: ../../enterprise/godmode/menu.php:25
+#: ../../enterprise/godmode/massive/massive_operations.php:99
+msgid "Policies operations"
+msgstr ""
+
+#: ../../enterprise/godmode/menu.php:36
+#: ../../enterprise/godmode/massive/massive_operations.php:75
+msgid "SNMP operations"
+msgstr ""
+
+#: ../../enterprise/godmode/menu.php:48
+#: ../../enterprise/godmode/massive/massive_operations.php:28
+msgid "Satellite operations"
+msgstr ""
+
+#: ../../enterprise/godmode/menu.php:60
+#: ../../enterprise/godmode/massive/massive_operations.php:53
+msgid "Services operations"
+msgstr ""
+
+#: ../../enterprise/godmode/menu.php:72 ../../enterprise/godmode/menu.php:278
+msgid "Duplicate config"
+msgstr ""
+
+#: ../../enterprise/godmode/menu.php:81
+#: ../../godmode/agentes/configurar_agente.php:706
+msgid "Network config manager"
+msgstr ""
+
+#: ../../enterprise/godmode/menu.php:117
+msgid "Manage agent autoconfiguration"
+msgstr ""
+
+#: ../../enterprise/godmode/menu.php:174
+msgid "Mysql"
+msgstr ""
+
+#: ../../enterprise/godmode/menu.php:179
+#: ../../enterprise/godmode/wizards/Applications.class.php:163
+#: ../../enterprise/godmode/wizards/Applications.class.php:171
+msgid "Applications"
+msgstr ""
+
+#: ../../enterprise/godmode/menu.php:190
+msgid "Amazon Web Services"
+msgstr ""
+
+#: ../../enterprise/godmode/menu.php:191
+msgid "Microsoft Azure"
+msgstr ""
+
+#: ../../enterprise/godmode/menu.php:192
+msgid "Google Compute Platform"
+msgstr ""
+
+#: ../../enterprise/godmode/menu.php:208
+msgid "New console task"
+msgstr ""
+
+#: ../../enterprise/godmode/menu.php:218
+msgid "Enterprise ACL Setup"
+msgstr ""
+
+#: ../../enterprise/godmode/menu.php:227
+msgid "Skins"
+msgstr ""
+
+#: ../../enterprise/godmode/menu.php:237
+msgid "Manage database HA"
+msgstr ""
+
+#: ../../enterprise/godmode/menu.php:269
+msgid "Log Collector"
+msgstr ""
+
+#: ../../enterprise/godmode/menu.php:287
+msgid "Password policy"
+msgstr ""
+
+#: ../../enterprise/godmode/menu.php:331 ../../godmode/setup/setup.php:190
+#: ../../godmode/setup/setup.php:289
+msgid "Module Library"
+msgstr ""
+
+#: ../../enterprise/godmode/menu.php:339
+#: ../../enterprise/godmode/alerts/alert_inventory.php:78
+#: ../../enterprise/godmode/alerts/alert_inventory.php:80
+msgid "Inventory alerts"
+msgstr ""
+
+#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor_form.php:64
+#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:383
+msgid "Custom OID"
+msgstr ""
+
+#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:225
+#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:237
+msgid "Successfully added trap custom values"
+msgstr ""
+
+#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:227
+#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:239
+msgid "Error adding trap custom values"
+msgstr ""
+
+#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:242
+#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:317
+msgid "This custom OID is preexistent."
+msgstr ""
+
+#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:283
+msgid "No change in data"
+msgstr ""
+
+#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:285
+#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:312
+msgid "Successfully updated trap custom values"
+msgstr ""
+
+#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:287
+#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:314
+msgid "Error updating trap custom values"
+msgstr ""
+
+#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:330
+msgid "Successfully deleted trap custom values"
+msgstr ""
+
+#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:336
+msgid "Error deleting trap custom values"
+msgstr ""
+
+#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:342
+#, php-format
+msgid "Uploaded %s/%s traps"
+msgstr ""
+
+#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:346
+msgid "Fail uploaded file"
+msgstr ""
+
+#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:351
+msgid ""
+"MIB files will be loaded and searched for SNMP trap definitions. They will "
+"not be installed on the system! You can use the MIB uploader for that "
+"purpose."
+msgstr ""
+
+#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:360
+msgid "Load MIB"
+msgstr ""
+
+#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:362
+msgid "Upload MIB"
+msgstr ""
+
+#: ../../enterprise/godmode/admin_access_logs.php:78
+msgid "Show extended info"
+msgstr ""
+
+#: ../../enterprise/godmode/admin_access_logs.php:99
+msgid ""
+"The security check cannot be performed. There are no data in "
+"tsession_extended to check the hash."
+msgstr ""
+
+#: ../../enterprise/godmode/admin_access_logs.php:108
+msgid "Security check is ok."
+msgstr ""
+
+#: ../../enterprise/godmode/admin_access_logs.php:113
+msgid "Security check is fail."
+msgstr ""
+
+#: ../../enterprise/godmode/admin_access_logs.php:208
+msgid "Extended info:"
+msgstr ""
+
+#: ../../enterprise/godmode/admin_access_logs.php:216
+msgid "Changes:"
+msgstr ""
+
+#: ../../enterprise/godmode/massive/massive_edit_service_elements.php:65
+#: ../../enterprise/godmode/massive/massive_delete_service_elements.php:67
+#: ../../enterprise/godmode/massive/massive_add_service_elements.php:71
+msgid "You must select a service"
+msgstr ""
+
+#: ../../enterprise/godmode/massive/massive_edit_service_elements.php:131
+msgid "Failed to process updating elements in services: "
+msgstr ""
+
+#: ../../enterprise/godmode/massive/massive_edit_service_elements.php:153
+#: ../../enterprise/godmode/massive/massive_delete_service_elements.php:112
+#: ../../enterprise/godmode/massive/massive_add_service_elements.php:251
+#, php-format
+msgid "%d modules"
+msgstr ""
+
+#: ../../enterprise/godmode/massive/massive_edit_service_elements.php:161
+#: ../../enterprise/godmode/massive/massive_delete_service_elements.php:120
+#: ../../enterprise/godmode/massive/massive_add_service_elements.php:259
+#, php-format
+msgid "%d agents"
+msgstr ""
+
+#: ../../enterprise/godmode/massive/massive_edit_service_elements.php:169
+#: ../../enterprise/godmode/massive/massive_delete_service_elements.php:128
+#: ../../enterprise/godmode/massive/massive_add_service_elements.php:267
+#, php-format
+msgid "%d services"
+msgstr ""
+
+#: ../../enterprise/godmode/massive/massive_edit_service_elements.php:176
+#: ../../enterprise/godmode/massive/massive_delete_service_elements.php:135
+#: ../../enterprise/godmode/massive/massive_add_service_elements.php:274
+msgid "No changes made"
+msgstr ""
+
+#: ../../enterprise/godmode/massive/massive_edit_service_elements.php:252
+#: ../../enterprise/godmode/massive/massive_add_service_elements.php:496
+msgid "In smart services weights are automatically calculated."
+msgstr ""
+
+#: ../../enterprise/godmode/massive/massive_edit_service_elements.php:257
+#: ../../enterprise/godmode/massive/massive_add_service_elements.php:501
+msgid ""
+"Weights configured are common for every item added to the service, if you "
+"want to customize them, please edit each element at service element editor."
+msgstr ""
+
+#: ../../enterprise/godmode/massive/massive_edit_service_elements.php:262
+#: ../../enterprise/godmode/massive/massive_add_service_elements.php:506
+#: ../../enterprise/godmode/massive/massive_create_services.php:1148
+msgid "Service items summary"
+msgstr ""
+
+#: ../../enterprise/godmode/massive/massive_edit_service_elements.php:291
+#: ../../enterprise/godmode/massive/massive_add_service_elements.php:535
+#: ../../enterprise/godmode/massive/massive_create_services.php:1177
+msgid "Unknown weight"
+msgstr ""
+
+#: ../../enterprise/godmode/massive/massive_edit_service_elements.php:304
+#: ../../enterprise/godmode/massive/massive_add_service_elements.php:548
+#: ../../enterprise/godmode/massive/massive_create_services.php:1190
+msgid "Normal weight"
+msgstr ""
+
+#: ../../enterprise/godmode/massive/massive_edit_service_elements.php:320
+#: ../../enterprise/godmode/massive/massive_delete_service_elements.php:211
+#: ../../enterprise/godmode/massive/massive_add_service_elements.php:564
+#: ../../enterprise/godmode/massive/massive_create_services.php:1205
+msgid "Selected services"
+msgstr ""
+
+#: ../../enterprise/godmode/massive/massive_edit_service_elements.php:373
+msgid "Update selected service elements"
+msgstr ""
+
+#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:491
+#: ../../godmode/massive/massive_edit_modules.php:554
+msgid "Dynamic Min."
+msgstr ""
+
+#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:732
+#: ../../godmode/massive/massive_edit_modules.php:796
+msgid "SMNP community"
+msgstr ""
+
+#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:742
+#: ../../godmode/massive/massive_edit_modules.php:806
+#: ../../godmode/agentes/module_manager_editor_network.php:227
+msgid "SNMP OID"
+msgstr ""
+
+#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:804
+#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:808
+#: ../../godmode/massive/massive_edit_modules.php:861
+#: ../../godmode/massive/massive_edit_modules.php:865
+#: ../../godmode/wizards/HostDevices.class.php:1272
+#: ../../godmode/wizards/HostDevices.class.php:1303
+#: ../../godmode/agentes/module_manager_editor_network.php:349
+#: ../../godmode/agentes/module_manager_editor_network.php:371
+msgid "The pass length must be eight character minimum."
+msgstr ""
+
+#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:855
+#: ../../godmode/massive/massive_edit_modules.php:912
+#: ../../godmode/agentes/module_manager_editor_common.php:731
+msgid "Export target"
+msgstr ""
+
+#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:945
+#: ../../godmode/massive/massive_edit_modules.php:998
+msgid "Active Counters"
+msgstr ""
+
+#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:946
+#: ../../godmode/massive/massive_edit_modules.php:999
+msgid "Inactive Counters"
+msgstr ""
+
+#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:961
+#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:480
+#: ../../godmode/massive/massive_edit_modules.php:1014
+#: ../../godmode/agentes/module_manager_editor_common.php:865
+msgid "FF interval"
+msgstr ""
+
+#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:962
+#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:496
+#: ../../godmode/massive/massive_edit_modules.php:1024
+msgid "Module execution flip flop time interval (in secs)."
+msgstr ""
+
+#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:990
+#: ../../godmode/massive/massive_edit_modules.php:1066
+msgid "Policy linking status"
+msgstr ""
+
+#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:990
+#: ../../godmode/massive/massive_edit_modules.php:1066
+msgid "This field only has sense in modules adopted by a policy."
+msgstr ""
+
+#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:991
+#: ../../godmode/massive/massive_edit_modules.php:1067
+msgid "Linked"
+msgstr ""
+
+#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1000
+#: ../../godmode/modules/manage_network_components_form_common.php:315
+#: ../../godmode/massive/massive_edit_modules.php:1076
+#: ../../godmode/agentes/module_manager_editor_common.php:764
+msgid "Discard unknown events"
+msgstr ""
+
+#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1029
+#: ../../godmode/massive/massive_edit_modules.php:1105
+msgid "The module still store data but the alerts and events will be stop"
+msgstr ""
+
+#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1053
+#: ../../godmode/massive/massive_edit_modules.php:1131
+msgid "Seconds that agent will wait for the execution of the module."
+msgstr ""
+
+#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1059
+#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:515
+#: ../../godmode/massive/massive_edit_modules.php:1137
+msgid "Number of retries that the module will attempt to run."
+msgstr ""
+
+#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1070
+#: ../../godmode/modules/manage_network_components_form_network.php:209
+#: ../../godmode/massive/massive_edit_modules.php:1148
+#: ../../godmode/agentes/module_manager_editor_network.php:281
+msgid "TCP send"
+msgstr ""
+
+#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1073
+#: ../../godmode/modules/manage_network_components_form_network.php:216
+#: ../../godmode/massive/massive_edit_modules.php:1151
+#: ../../godmode/agentes/module_manager_editor_network.php:295
+msgid "TCP receive"
+msgstr ""
+
+#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1076
+#: ../../godmode/modules/manage_network_components_form_wmi.php:31
+#: ../../godmode/massive/massive_edit_modules.php:1154
+#: ../../godmode/agentes/module_manager_editor_wmi.php:133
+msgid "WMI query"
+msgstr ""
+
+#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1079
+#: ../../godmode/modules/manage_network_components_form_wizard.php:684
+#: ../../godmode/modules/manage_network_components_form_wmi.php:33
+#: ../../godmode/massive/massive_edit_modules.php:1157
+#: ../../godmode/agentes/module_manager_editor_wmi.php:151
+msgid "Key string"
+msgstr ""
+
+#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1082
+#: ../../godmode/modules/manage_network_components_form_wmi.php:39
+#: ../../godmode/massive/massive_edit_modules.php:1160
+#: ../../godmode/agentes/module_manager_editor_wmi.php:164
+msgid "Field number"
+msgstr ""
+
+#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1085
+#: ../../godmode/servers/plugin_registration.php:503
+#: ../../godmode/modules/manage_network_components_form_plugin.php:35
+#: ../../godmode/massive/massive_edit_plugins.php:346
+#: ../../godmode/massive/massive_edit_modules.php:1163
+#: ../../godmode/agentes/module_manager_editor_plugin.php:49
+msgid "Plugin"
+msgstr ""
+
+#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1135
+#: ../../godmode/modules/manage_network_components_form_network.php:258
+#: ../../godmode/massive/massive_edit_modules.php:1213
+#: ../../godmode/agentes/module_manager_editor_network.php:477
+msgid "Inherited"
+msgstr ""
+
+#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1136
+#: ../../godmode/modules/manage_network_components_form_network.php:259
+#: ../../godmode/massive/massive_edit_modules.php:1214
+msgid "Linux"
+msgstr ""
+
+#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1137
+#: ../../godmode/modules/manage_network_components_form_network.php:260
+#: ../../godmode/massive/massive_edit_modules.php:1215
+msgid "Windows"
+msgstr ""
+
+#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1140
+#: ../../godmode/modules/manage_network_components_form_network.php:263
+#: ../../godmode/massive/massive_edit_modules.php:1218
+msgid "Target OS"
+msgstr ""
+
+#: ../../enterprise/godmode/massive/massive_operations.php:115
+msgid "Bulk alerts policy add"
+msgstr ""
+
+#: ../../enterprise/godmode/massive/massive_operations.php:116
+msgid "Bulk alerts policy delete"
+msgstr ""
+
+#: ../../enterprise/godmode/massive/massive_operations.php:117
+msgid "Bulk tags module policy edit"
+msgstr ""
+
+#: ../../enterprise/godmode/massive/massive_operations.php:118
+msgid "Bulk modules policy tags edit"
+msgstr ""
+
+#: ../../enterprise/godmode/massive/massive_operations.php:119
+msgid "Bulk modules policy add from agent"
+msgstr ""
+
+#: ../../enterprise/godmode/massive/massive_operations.php:120
+msgid "Bulk modules policy edit"
+msgstr ""
+
+#: ../../enterprise/godmode/massive/massive_operations.php:131
+msgid "Bulk alert SNMP delete"
+msgstr ""
+
+#: ../../enterprise/godmode/massive/massive_operations.php:132
+msgid "Bulk alert SNMP edit"
+msgstr ""
+
+#: ../../enterprise/godmode/massive/massive_operations.php:143
+msgid "Bulk Satellite modules edit"
+msgstr ""
+
+#: ../../enterprise/godmode/massive/massive_operations.php:156
+msgid "Bulk services creation"
+msgstr ""
+
+#: ../../enterprise/godmode/massive/massive_operations.php:160
+msgid "Bulk services deletion"
+msgstr ""
+
+#: ../../enterprise/godmode/massive/massive_delete_service_elements.php:90
+msgid "Failed to process deleting services elements: "
+msgstr ""
+
+#: ../../enterprise/godmode/massive/massive_delete_service_elements.php:131
+msgid "removed"
+msgstr ""
+
+#: ../../enterprise/godmode/massive/massive_delete_service_elements.php:264
+msgid "Remove selected"
+msgstr ""
+
+#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:88
+msgid "Success: remove the alerts."
+msgstr ""
+
+#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:88
+msgid "Failed: remove the alerts for this modules, please check."
+msgstr ""
+
+#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:125
+#: ../../enterprise/godmode/massive/massive_add_alerts_policy.php:115
+#: ../../enterprise/godmode/policies/policy_alerts.php:642
+#: ../../godmode/massive/massive_add_alerts.php:280
+#: ../../godmode/massive/massive_standby_alerts.php:217
+#: ../../godmode/massive/massive_delete_alerts.php:271
+#: ../../godmode/massive/massive_enable_disable_alerts.php:189
+msgid "Alert template"
+msgstr ""
+
+#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:141
+msgid "Modules agents in policy"
+msgstr ""
+
+#: ../../enterprise/godmode/massive/massive_edit_tags_policy.php:92
+#: ../../enterprise/godmode/massive/massive_tags_edit_policy.php:87
+msgid "Successful update the tags"
+msgstr ""
+
+#: ../../enterprise/godmode/massive/massive_edit_tags_policy.php:93
+#: ../../enterprise/godmode/massive/massive_tags_edit_policy.php:88
+msgid "Unsuccessful update the tags"
+msgstr ""
+
+#: ../../enterprise/godmode/massive/massive_edit_tags_policy.php:143
+msgid "Tags unused"
+msgstr ""
+
+#: ../../enterprise/godmode/massive/massive_edit_tags_policy.php:183
+msgid "Tags used"
+msgstr ""
+
+#: ../../enterprise/godmode/massive/massive_add_alerts_policy.php:87
+msgid "Success: create the alerts."
+msgstr ""
+
+#: ../../enterprise/godmode/massive/massive_add_alerts_policy.php:87
+msgid "Failed: create the alerts for this modules, please check."
+msgstr ""
+
+#: ../../enterprise/godmode/massive/massive_add_alerts_policy.php:131
+msgid "Modules in policy"
+msgstr ""
+
+#: ../../enterprise/godmode/massive/massive_delete_services.php:50
+#, php-format
+msgid "Failed to delete: %s"
+msgstr ""
+
+#: ../../enterprise/godmode/massive/massive_add_service_elements.php:112
+#, php-format
+msgid "Problems while adding module element: %d, %s"
+msgstr ""
+
+#: ../../enterprise/godmode/massive/massive_add_service_elements.php:157
+#, php-format
+msgid "Problems while adding agent element: %d, %s"
+msgstr ""
+
+#: ../../enterprise/godmode/massive/massive_add_service_elements.php:205
+#, php-format
+msgid "%s: %d, %s"
+msgstr ""
+
+#: ../../enterprise/godmode/massive/massive_add_service_elements.php:228
+msgid "Failed to process adding elements in services: "
+msgstr ""
+
+#: ../../enterprise/godmode/massive/massive_add_service_elements.php:270
+msgid "added"
+msgstr ""
+
+#: ../../enterprise/godmode/massive/massive_add_service_elements.php:354
+msgid "Item type to be added"
+msgstr ""
+
+#: ../../enterprise/godmode/massive/massive_add_service_elements.php:371
+#: ../../enterprise/godmode/massive/massive_create_services.php:974
+msgid "Add selected"
+msgstr ""
+
+#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:75
+msgid "Successfully copied "
+msgstr ""
+
+#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:82
+msgid " cannot be copied to "
+msgstr ""
+
+#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:82
+msgid " policy"
+msgstr ""
+
+#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:190
+#: ../../godmode/massive/massive_copy_modules.php:213
+msgid "No modules for this agent"
+msgstr ""
+
+#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:223
+msgid "To policies"
+msgstr ""
+
+#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:359
+#: ../../godmode/massive/massive_add_alerts.php:324
+#: ../../godmode/massive/massive_edit_agents.php:1199
+#: ../../godmode/massive/massive_delete_alerts.php:382
+msgid ""
+"Unsucessful sending the data, please contact with your administrator or make "
+"with less elements."
+msgstr ""
+
+#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:376
+msgid "No destiny policies to copy"
+msgstr ""
+
+#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:159
+#: ../../godmode/snmpconsole/snmp_alert.php:682
+#, php-format
+msgid "Successfully deleted alerts (%s / %s)"
+msgstr ""
+
+#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:167
+#: ../../godmode/snmpconsole/snmp_alert.php:686
+#, php-format
+msgid "Unsuccessfully deleted alerts (%s / %s)"
+msgstr ""
+
+#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:175
+#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:233
+msgid "You must select a SNMP alert"
+msgstr ""
+
+#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:198
+#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:258
+msgid ""
+"Search by these fields description, OID, Custom Value, SNMP Agent (IP), "
+"Single value, each Custom OIDs/Datas."
+msgstr ""
+
+#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:217
+msgid "SNMP Alerts to be deleted"
+msgstr ""
+
+#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:289
+#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:403
+msgid "No snmp alert found."
+msgstr ""
+
+#: ../../enterprise/godmode/massive/massive_create_services.php:210
+#, php-format
+msgid "Failed to create service for agent %s, %s"
+msgstr ""
+
+#: ../../enterprise/godmode/massive/massive_create_services.php:294
+#, php-format
+msgid "Failed to create service for module %s, %s"
+msgstr ""
+
+#: ../../enterprise/godmode/massive/massive_create_services.php:380
+#, php-format
+msgid "Failed to create service for service %s, %s"
+msgstr ""
+
+#: ../../enterprise/godmode/massive/massive_create_services.php:435
+#, php-format
+msgid "Agent selected %d not found"
+msgstr ""
+
+#: ../../enterprise/godmode/massive/massive_create_services.php:481
+#, php-format
+msgid "Module selected %d not found"
+msgstr ""
+
+#: ../../enterprise/godmode/massive/massive_create_services.php:528
+#, php-format
+msgid "Service selected %d not found"
+msgstr ""
+
+#: ../../enterprise/godmode/massive/massive_create_services.php:562
+#, php-format
+msgid "Failed to create service for agent %s"
+msgstr ""
+
+#: ../../enterprise/godmode/massive/massive_create_services.php:573
+#, php-format
+msgid "Failed to create services: %s"
+msgstr ""
+
+#: ../../enterprise/godmode/massive/massive_create_services.php:593
+#, php-format
+msgid "%d services created with %d items"
+msgstr ""
+
+#: ../../enterprise/godmode/massive/massive_create_services.php:599
+msgid "No services created"
+msgstr ""
+
+#: ../../enterprise/godmode/massive/massive_create_services.php:632
+msgid "Service(s) definition"
+msgstr ""
+
+#: ../../enterprise/godmode/massive/massive_create_services.php:765
+msgid "Create a service per item"
+msgstr ""
+
+#: ../../enterprise/godmode/massive/massive_create_services.php:766
+msgid "If enabled multiple services will be created."
+msgstr ""
+
+#: ../../enterprise/godmode/massive/massive_create_services.php:784
+msgid "Services header"
+msgstr ""
+
+#: ../../enterprise/godmode/massive/massive_create_services.php:785
+msgid "All services names created will start with selected name."
+msgstr ""
+
+#: ../../enterprise/godmode/massive/massive_create_services.php:839
+msgid "SLA calculation"
+msgstr ""
+
+#: ../../enterprise/godmode/massive/massive_create_services.php:946
+msgid ""
+"Items selected here will be added to the lists at Service items summary."
+msgstr ""
+
+#: ../../enterprise/godmode/massive/massive_create_services.php:949
+msgid "Item(s) definition"
+msgstr ""
+
+#: ../../enterprise/godmode/massive/massive_create_services.php:957
+msgid "Item type"
+msgstr ""
+
+#: ../../enterprise/godmode/massive/massive_create_services.php:1144
+msgid ""
+"Weights configured are common for every item added to the service, if you "
+"want to customize them, please edit the service."
+msgstr ""
+
+#: ../../enterprise/godmode/massive/massive_create_services.php:1260
+msgid "Create services"
+msgstr ""
+
+#: ../../enterprise/godmode/massive/massive_tags_edit_policy.php:127
+msgid "Modules unused"
+msgstr ""
+
+#: ../../enterprise/godmode/massive/massive_tags_edit_policy.php:167
+msgid "Modules used"
+msgstr ""
+
+#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:217
+#, php-format
+msgid "Successfully updated alerts (%s / %s)"
+msgstr ""
+
+#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:225
+#, php-format
+msgid "Unsuccessfully updated alerts (%s / %s)"
+msgstr ""
+
+#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:277
+msgid "SNMP Alerts to be edit"
+msgstr ""
+
+#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:301
+#: ../../godmode/snmpconsole/snmp_alert.php:735
+msgid "Custom Value/OID"
+msgstr ""
+
+#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:307
+#: ../../godmode/snmpconsole/snmp_alert.php:785
+msgid "Single value"
+msgstr ""
+
+#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:309
+#: ../../godmode/snmpconsole/snmp_alert.php:988
+#: ../../godmode/alerts/configure_alert_template.php:691
+msgid "Min. number of alerts"
+msgstr ""
+
+#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:311
+#: ../../godmode/snmpconsole/snmp_alert.php:991
+#: ../../godmode/alerts/configure_alert_template.php:728
+msgid "Max. number of alerts"
+msgstr ""
+
+#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:326
+#: ../../godmode/snmpconsole/snmp_alert.php:1010
+msgid "Other value"
+msgstr ""
+
+#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:211
+#: ../../godmode/massive/massive_delete_modules.php:372
+#: ../../godmode/massive/massive_edit_modules.php:356
+msgid "Agent group"
+msgstr ""
+
+#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:242
+msgid "Filter module"
+msgstr ""
+
+#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:261
+#: ../../godmode/massive/massive_add_alerts.php:260
+#: ../../godmode/massive/massive_delete_modules.php:551
+#: ../../godmode/massive/massive_add_action_alerts.php:220
+#: ../../godmode/massive/massive_delete_action_alerts.php:241
+#: ../../godmode/massive/massive_delete_alerts.php:335
+#: ../../godmode/massive/massive_edit_modules.php:524
+msgid "When select agents"
+msgstr ""
+
+#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:423
+msgid "Updated modules on database"
+msgstr ""
+
+#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:425
+msgid "Agent configuration files updated"
+msgstr ""
+
+#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:691
+msgid "No changes have been made."
+msgstr ""
+
+#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:179
+msgid "Command Mysqldump is failed."
+msgstr ""
+
+#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:225
+#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:238
+#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:287
+#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:306
+#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:386
+#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:403
+msgid "Failed to create task"
+msgstr ""
+
+#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:293
+msgid "No template selected"
+msgstr ""
+
+#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:412
+msgid "I do not know what you want to do"
+msgstr ""
+
+#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:429
+#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:611
+msgid "You have no access to manage console tasks."
+msgstr ""
+
+#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:446
+#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:517
+msgid "Create new console task"
+msgstr ""
+
+#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:489
+msgid "Updating console task"
+msgstr ""
+
+#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:514
+#: ../../godmode/menu.php:33
+#: ../../godmode/wizards/DiscoveryTaskList.class.php:105
+msgid "Task list"
+msgstr ""
+
+#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:519
+msgid "Update console task"
+msgstr ""
+
+#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:650
+msgid "Next Execution"
+msgstr ""
+
+#: ../../enterprise/godmode/wizards/Applications.class.php:186
+#: ../../enterprise/godmode/wizards/Cloud.class.php:210
+msgid ""
+"All company names used here are for identification purposes only. Use of "
+"these names, logos, and brands does not imply endorsement."
+msgstr ""
+
+#: ../../enterprise/godmode/wizards/Cloud.class.php:240
+#: ../../enterprise/godmode/wizards/Cloud.class.php:248
+#, php-format
+msgid "%s credentials"
+msgstr ""
+
+#: ../../enterprise/godmode/wizards/Cloud.class.php:264
+msgid ""
+"If a task with the selected credentials is already running, it will be "
+"edited. To create a new one, another account from the credential store must "
+"be selected."
+msgstr ""
+
+#: ../../enterprise/godmode/wizards/Cloud.class.php:284
+msgid "Manage accounts"
+msgstr ""
+
+#: ../../enterprise/godmode/wizards/Cloud.class.php:296
+msgid "Cloud tool full path"
+msgstr ""
+
+#: ../../enterprise/godmode/wizards/Cloud.class.php:304
+msgid "Account"
+msgstr ""
+
+#: ../../enterprise/godmode/wizards/Cloud.class.php:365
+msgid "Select a set of credentials from the list"
+msgstr ""
+
+#: ../../enterprise/godmode/wizards/Cloud.class.php:378
+#, php-format
+msgid "Path %s is not executable."
+msgstr ""
+
+#: ../../enterprise/godmode/wizards/Cloud.class.php:423
+msgid "Account disconnected"
+msgstr ""
+
+#: ../../enterprise/godmode/wizards/Cloud.class.php:425
+msgid "Failed disconnecting account"
+msgstr ""
+
+#: ../../enterprise/godmode/wizards/Cloud.class.php:503
+msgid "Credentials successfully updated"
+msgstr ""
+
+#: ../../enterprise/godmode/wizards/Cloud.class.php:505
+msgid "Failed updating credentials process"
+msgstr ""
+
+#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:58
+#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:61
+msgid "The changes on this field are linked with the configuration data."
+msgstr ""
+
+#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:67
+msgid "Using local component"
+msgstr ""
+
+#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:76
+#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:96
+#: ../../godmode/agentes/module_manager_editor_common.php:118
+#: ../../godmode/agentes/module_manager_editor_common.php:135
+msgid "Manual setup"
+msgstr ""
+
+#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:88
+#: ../../godmode/agentes/module_manager_editor_common.php:127
+msgid "No component was found"
+msgstr ""
+
+#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:155
+msgid "Show configuration data"
+msgstr ""
+
+#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:166
+msgid "Hide configuration data"
+msgstr ""
+
+#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:174
+msgid "Data configuration"
+msgstr ""
+
+#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:24
+msgid "Capacity planning"
+msgstr ""
+
+#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:26
+msgid "Synthetic arithmetic"
+msgstr ""
+
+#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:27
+msgid "Synthetic average"
+msgstr ""
+
+#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:28
+msgid "Trending module"
+msgstr ""
+
+#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:114
+msgid "Fixed value"
+msgstr ""
+
+#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:119
+msgid "Add module to operation as add"
+msgstr ""
+
+#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:120
+msgid "Add module to operations as deduct"
+msgstr ""
+
+#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:121
+msgid "Add module to operations as multiplicate "
+msgstr ""
+
+#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:122
+msgid "Add module to operations as divide"
+msgstr ""
+
+#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:123
+msgid "Remove selected modules"
+msgstr ""
+
+#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:128
+msgid "Add module to average operation"
+msgstr ""
+
+#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:129
+msgid "Remove selected modules from operations stack"
+msgstr ""
+
+#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:144
+msgid "Move down selected modules"
+msgstr ""
+
+#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:145
+msgid "Move up selected modules"
+msgstr ""
+
+#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:175
+msgid "Select Service"
+msgstr ""
+
+#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:188
+msgid "Netflow filter"
+msgstr ""
+
+#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:197
+msgid "Select filter"
+msgstr ""
+
+#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:207
+msgid "Percentual value"
+msgstr ""
+
+#: ../../enterprise/godmode/agentes/inventory_manager.php:84
+#: ../../enterprise/godmode/policies/policy_inventory_modules.php:144
+msgid "Successfully added inventory module"
+msgstr ""
+
+#: ../../enterprise/godmode/agentes/inventory_manager.php:86
+#: ../../enterprise/godmode/policies/policy_inventory_modules.php:153
+msgid "Error adding inventory module"
+msgstr ""
+
+#: ../../enterprise/godmode/agentes/inventory_manager.php:89
+#: ../../enterprise/godmode/policies/policy_inventory_modules.php:156
+msgid "The inventory of the module already exists"
+msgstr ""
+
+#: ../../enterprise/godmode/agentes/inventory_manager.php:110
+msgid "Successfully forced inventory module"
+msgstr ""
+
+#: ../../enterprise/godmode/agentes/inventory_manager.php:112
+msgid "Error forcing inventory module"
+msgstr ""
+
+#: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:121
+msgid "Error: The conf file of agent is not readble."
+msgstr ""
+
+#: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:125
+msgid "Error: The conf file of agent is not writable."
+msgstr ""
+
+#: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:178
+#: ../../enterprise/godmode/policies/policy_modules.php:387
+msgid "Add module"
+msgstr ""
+
+#: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:213
+msgid "No module was found"
+msgstr ""
+
+#: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:248
+msgid "Delete remote conf agent files"
+msgstr ""
+
+#: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:249
+msgid ""
+"Delete this conf file implies that for restore you must reactive remote "
+"config in the local agent."
+msgstr ""
+
+#: ../../enterprise/godmode/agentes/module_manager.php:48
+msgid "Create a new web analysis module"
+msgstr ""
+
+#: ../../enterprise/godmode/agentes/agent_autoconfiguration.php:51
+msgid "Cannot delete autoconfiguration"
+msgstr ""
+
+#: ../../enterprise/godmode/agentes/agent_autoconfiguration.php:66
+#: ../../godmode/setup/license.php:151 ../../godmode/setup/license.php:154
+msgid "enabled"
+msgstr ""
+
+#: ../../enterprise/godmode/agentes/agent_autoconfiguration.php:67
+msgid "enabling"
+msgstr ""
+
+#: ../../enterprise/godmode/agentes/agent_autoconfiguration.php:69
+#: ../../godmode/setup/license.php:151 ../../godmode/setup/license.php:154
+msgid "disabled"
+msgstr ""
+
+#: ../../enterprise/godmode/agentes/agent_autoconfiguration.php:70
+msgid "disabling"
+msgstr ""
+
+#: ../../enterprise/godmode/agentes/agent_autoconfiguration.php:75
+#, php-format
+msgid "Successfully %s"
+msgstr ""
+
+#: ../../enterprise/godmode/agentes/agent_autoconfiguration.php:76
+#, php-format
+msgid "Error %s"
+msgstr ""
+
+#: ../../enterprise/godmode/agentes/agent_autoconfiguration.php:96
+#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:292
+msgid "Agent autoconfiguration list"
+msgstr ""
+
+#: ../../enterprise/godmode/agentes/agent_autoconfiguration.php:158
+msgid "There are no defined autoconfigurations"
+msgstr ""
+
+#: ../../enterprise/godmode/agentes/agent_autoconfiguration.php:195
+msgid "Add new configuration definition"
+msgstr ""
+
+#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:55
+msgid "Cannot delete rule from autoconfiguration"
+msgstr ""
+
+#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:61
+msgid "Agent Autoconfiguration Information"
+msgstr ""
+
+#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:62
+msgid ""
+"You must click the Create or Update buttom for a correct configuration!!!"
+msgstr ""
+
+#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:70
+msgid ""
+"Cannot create autoconfiguration from read only console, please create from "
+"metaconsole (centralized management)"
+msgstr ""
+
+#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:91
+msgid "Cannot create autoconfiguration in metaconsole"
+msgstr ""
+
+#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:99
+msgid "Cannot create unnamed autoconfiguration"
+msgstr ""
+
+#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:109
+msgid ""
+"Cannot udpate autoconfiguration from read only console, please create from "
+"metaconsole (centralized management)"
+msgstr ""
+
+#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:126
+msgid "Cannot update autoconfiguration"
+msgstr ""
+
+#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:136
+#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:191
+msgid ""
+"Cannot modify autoconfiguration from read only console, please create from "
+"metaconsole (centralized management)"
+msgstr ""
+
+#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:335
+msgid "Autoconfiguration"
+msgstr ""
+
+#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:405
+msgid "Add rule"
+msgstr ""
+
+#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:410
+msgid "Rules"
+msgstr ""
+
+#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:432
+msgid "New group"
+msgstr ""
+
+#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:619
+#: ../../enterprise/godmode/policies/configure_policy.php:47
+msgid "Add policy"
+msgstr ""
+
+#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:651
+msgid "Extra configuration block"
+msgstr ""
+
+#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:653
+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:686
+#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:717
+msgid "Extra actions"
+msgstr ""
+
+#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:707
+#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:1010
+msgid "Add extra action"
+msgstr ""
+
+#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:875
+msgid "Add new rule"
+msgstr ""
+
+#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:1097
+msgid "Update extra action"
+msgstr ""
+
+#: ../../enterprise/godmode/agentes/collection_manager.php:77
+msgid "Succesful add the collection"
+msgstr ""
+
+#: ../../enterprise/godmode/agentes/collection_manager.php:78
+msgid "Unsuccesful add the collection"
+msgstr ""
+
+#: ../../enterprise/godmode/agentes/collections.editor.php:98
+msgid "Files in "
+msgstr ""
+
+#: ../../enterprise/godmode/agentes/collections.editor.php:109
+#: ../../enterprise/godmode/agentes/collections.data.php:395
+#: ../../enterprise/godmode/agentes/collections.php:92
+#, php-format
+msgid ""
+"This console is not manager of this environment, please manage this feature "
+"from %s."
+msgstr ""
+
+#: ../../enterprise/godmode/agentes/manage_config_remote.php:42
+msgid "Data Copy"
+msgstr ""
+
+#: ../../enterprise/godmode/agentes/manage_config_remote.php:49
+msgid "No selected agents to copy"
+msgstr ""
+
+#: ../../enterprise/godmode/agentes/manage_config_remote.php:62
+msgid "No source agent selected"
+msgstr ""
+
+#: ../../enterprise/godmode/agentes/manage_config_remote.php:108
+msgid "Making copy of configuration file for"
+msgstr ""
+
+#: ../../enterprise/godmode/agentes/manage_config_remote.php:117
+msgid "Error copying md5 file "
+msgstr ""
+
+#: ../../enterprise/godmode/agentes/manage_config_remote.php:117
+#: ../../enterprise/godmode/agentes/manage_config_remote.php:119
+msgid " md5 file"
+msgstr ""
+
+#: ../../enterprise/godmode/agentes/manage_config_remote.php:119
+#: ../../enterprise/godmode/agentes/manage_config_remote.php:125
+msgid "Copied "
+msgstr ""
+
+#: ../../enterprise/godmode/agentes/manage_config_remote.php:123
+msgid "Error copying "
+msgstr ""
+
+#: ../../enterprise/godmode/agentes/manage_config_remote.php:123
+#: ../../enterprise/godmode/agentes/manage_config_remote.php:125
+msgid " config file"
+msgstr ""
+
+#: ../../enterprise/godmode/agentes/manage_config_remote.php:135
+msgid "Remote configuration management"
+msgstr ""
+
+#: ../../enterprise/godmode/agentes/manage_config_remote.php:186
+msgid "To agent(s):"
+msgstr ""
+
+#: ../../enterprise/godmode/agentes/manage_config_remote.php:203
+msgid "Replicate configuration"
+msgstr ""
+
+#: ../../enterprise/godmode/agentes/collections.agents.php:36
+msgid "Show Agent &gt;"
+msgstr ""
+
+#: ../../enterprise/godmode/agentes/collections.agents.php:120
+#: ../../enterprise/godmode/agentes/collections.agents.php:124
+msgid "This collection has not been added to any agents"
+msgstr ""
+
+#: ../../enterprise/godmode/agentes/collections.data.php:384
+msgid "Collection updated successfully"
+msgstr ""
+
+#: ../../enterprise/godmode/agentes/collections.data.php:410
+msgid "Please go to the metaconsole and apply this collection"
+msgstr ""
+
+#: ../../enterprise/godmode/agentes/collections.data.php:414
+msgid "Error: The collection directory does not exist."
+msgstr ""
+
+#: ../../enterprise/godmode/agentes/pandora_networkmap_empty.editor.php:93
+#: ../../godmode/agentes/pandora_networkmap_empty.editor.php:95
+msgid "Empty Network maps editor"
+msgstr ""
+
+#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:98
+#: ../../godmode/agentes/module_manager_editor_common.php:238
+msgid "Delete module"
+msgstr ""
+
+#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:127
+msgid "Run performance tests"
+msgstr ""
+
+#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:138
+msgid "Target web site"
+msgstr ""
+
+#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:140
+msgid ""
+"The url specified in this field is mandatory to retrieve performance stats."
+msgstr ""
+
+#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:154
+msgid "target web site (http://...)"
+msgstr ""
+
+#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:161
+msgid "Execute tests from"
+msgstr ""
+
+#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:177
+msgid "Browser"
+msgstr ""
+
+#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:179
+msgid ""
+"Support for IE and Edge browsers is experimental. Tests might not work as "
+"expected."
+msgstr ""
+
+#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:221
+msgid "Accept insecure certificates"
+msgstr ""
+
+#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:223
+msgid "Only Selenium 3."
+msgstr ""
+
+#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:349
+msgid "Paste your selenium test, exported as HTML, here"
+msgstr ""
+
+#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:362
+msgid "Add file"
+msgstr ""
+
+#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:370
+msgid "Upload your selenium test in html or side (only Selenium 3) format"
+msgstr ""
+
+#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:454
+#: ../../godmode/agentes/module_manager.php:1105
+msgid ""
+"The policy modules of data type will only update their intervals when policy "
+"is applied."
+msgstr ""
+
+#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:574
+#: ../../enterprise/godmode/policies/policy_modules.php:417
+#: ../../godmode/agentes/module_manager_editor_common.php:1226
+#: ../../godmode/agentes/module_manager_editor.php:750
+msgid "Custom macros"
+msgstr ""
+
+#: ../../enterprise/godmode/agentes/plugins_manager.php:66
+msgid "Plug-in updated succesfully"
+msgstr ""
+
+#: ../../enterprise/godmode/agentes/plugins_manager.php:66
+msgid "Plug-in cannot be updated"
+msgstr ""
+
+#: ../../enterprise/godmode/agentes/plugins_manager.php:74
+msgid "Plug-in deleted succesfully"
+msgstr ""
+
+#: ../../enterprise/godmode/agentes/plugins_manager.php:74
+msgid "Plug-in cannot be deleted"
+msgstr ""
+
+#: ../../enterprise/godmode/agentes/plugins_manager.php:87
+#: ../../enterprise/godmode/policies/policy_plugins.php:90
+msgid "Plug-in added succesfully"
+msgstr ""
+
+#: ../../enterprise/godmode/agentes/plugins_manager.php:87
+#: ../../enterprise/godmode/policies/policy_plugins.php:91
+msgid "Plug-in cannot be added"
+msgstr ""
+
+#: ../../enterprise/godmode/agentes/plugins_manager.php:97
+msgid "Plug-in enabled succesfully"
+msgstr ""
+
+#: ../../enterprise/godmode/agentes/plugins_manager.php:98
+msgid "Plug-in cannot be enabled"
+msgstr ""
+
+#: ../../enterprise/godmode/agentes/plugins_manager.php:109
+msgid "Plug-in disabled succesfully"
+msgstr ""
+
+#: ../../enterprise/godmode/agentes/plugins_manager.php:110
+msgid "Plug-in cannot be disabled"
+msgstr ""
+
+#: ../../enterprise/godmode/agentes/plugins_manager.php:127
+#: ../../enterprise/godmode/policies/policy_plugins.php:109
+msgid "If enabled, allows to define a complex module plugin or log."
+msgstr ""
+
+#: ../../enterprise/godmode/agentes/plugins_manager.php:142
+#: ../../enterprise/godmode/policies/policy_plugins.php:123
+msgid "New plug-in"
+msgstr ""
+
+#: ../../enterprise/godmode/agentes/plugins_manager.php:192
+#: ../../enterprise/godmode/policies/policies.php:535
+#: ../../enterprise/godmode/policies/policy_plugins.php:167
+#: ../../godmode/menu.php:293
+msgid "Plugins"
+msgstr ""
+
+#: ../../enterprise/godmode/agentes/collections.php:65
+msgid "Success: recreate file"
+msgstr ""
+
+#: ../../enterprise/godmode/agentes/collections.php:67
+msgid "Error: recreate file "
+msgstr ""
+
+#: ../../enterprise/godmode/agentes/collections.php:82
+#: ../../enterprise/godmode/agentes/collections.php:123
+#: ../../enterprise/godmode/agentes/collections.php:232
+msgid "Collections Management"
+msgstr ""
+
+#: ../../enterprise/godmode/agentes/collections.php:175
+msgid "Manager collection"
+msgstr ""
+
+#: ../../enterprise/godmode/alerts/alert_inventory_list.php:91
+#: ../../godmode/massive/massive_add_alerts.php:168
+#: ../../godmode/massive/massive_add_action_alerts.php:160
+#: ../../godmode/alerts/alert_list.php:271
+msgid "Successfully added"
+msgstr ""
+
+#: ../../enterprise/godmode/alerts/alert_inventory_list.php:92
+#: ../../enterprise/godmode/policies/policy_agents.php:251
+#: ../../enterprise/godmode/policies/policy_external_alerts.php:201
+#: ../../enterprise/godmode/policies/policy_alerts.php:280
+#: ../../godmode/massive/massive_add_alerts.php:169
+#: ../../godmode/massive/massive_add_action_alerts.php:75
+#: ../../godmode/massive/massive_add_action_alerts.php:134
+#: ../../godmode/massive/massive_add_action_alerts.php:160
+#: ../../godmode/massive/massive_add_action_alerts.php:163
+#: ../../godmode/massive/massive_add_action_alerts.php:166
+#: ../../godmode/massive/massive_delete_action_alerts.php:175
+#: ../../godmode/alerts/alert_list.php:272
+msgid "Could not be added"
+msgstr ""
+
+#: ../../enterprise/godmode/alerts/alert_inventory_list.php:174
+msgid "Inventory alert filters"
+msgstr ""
+
+#: ../../enterprise/godmode/alerts/alert_inventory_list.php:220
+msgid "Alert name"
+msgstr ""
+
+#: ../../enterprise/godmode/alerts/alert_inventory_list.php:319
+#: ../../godmode/alerts/alert_list.list.php:673
+msgid "Delete action"
+msgstr ""
+
+#: ../../enterprise/godmode/alerts/alert_inventory_list.php:404
+msgid "Disable alert"
+msgstr ""
+
+#: ../../enterprise/godmode/alerts/alert_inventory_list.php:407
+msgid "Enable alert"
+msgstr ""
+
+#: ../../enterprise/godmode/alerts/alert_inventory_list.php:415
+msgid "Delete alert"
+msgstr ""
+
+#: ../../enterprise/godmode/alerts/alert_inventory_list.php:427
+msgid "There are no defined inventory alerts"
+msgstr ""
+
+#: ../../enterprise/godmode/alerts/alert_inventory_builder.php:176
+msgid "Group acl"
+msgstr ""
+
+#: ../../enterprise/godmode/alerts/alert_inventory_builder.php:256
+msgid "Alert groups"
+msgstr ""
+
+#: ../../enterprise/godmode/alerts/alert_inventory_builder.php:278
+#: ../../godmode/snmpconsole/snmp_alert.php:83
+msgid "Update alert"
+msgstr ""
+
+#: ../../enterprise/godmode/alerts/alert_inventory.php:67
+msgid "Inventory alert list"
+msgstr ""
+
+#: ../../enterprise/godmode/alerts/alert_inventory.php:71
+msgid "Inventory alert builder"
+msgstr ""
+
+#: ../../enterprise/godmode/policies/policy_agents.php:62
+#: ../../enterprise/godmode/policies/policy_queue.php:78
+msgid ""
+"Starting with Pandora FMS version 760, assigning an entire group to a policy "
+"will apply it automatically to all the new agents added to that group."
+msgstr ""
+
+#: ../../enterprise/godmode/policies/policy_agents.php:85
+#: ../../enterprise/godmode/policies/policy_linking.php:41
+#: ../../enterprise/godmode/policies/policy_modules.php:599
+#: ../../enterprise/godmode/policies/policies.php:249
+#: ../../enterprise/godmode/policies/policy_external_alerts.php:77
+#: ../../enterprise/godmode/policies/policy_inventory_modules.php:98
+#: ../../enterprise/godmode/policies/policy_alerts.php:94
+#: ../../enterprise/godmode/policies/policy_collections.php:63
+#: ../../godmode/agentes/module_manager_editor.php:542
+msgid "This policy is applying and cannot be modified"
+msgstr ""
+
+#: ../../enterprise/godmode/policies/policy_agents.php:102
+msgid ""
+"Successfully added to delete pending agents. Will be deleted in the next "
+"policy application."
+msgstr ""
+
+#: ../../enterprise/godmode/policies/policy_agents.php:113
+#: ../../enterprise/godmode/policies/policy_agents.php:129
+#: ../../enterprise/godmode/policies/policy_modules.php:1316
+#: ../../enterprise/godmode/policies/policy_external_alerts.php:150
+#: ../../enterprise/godmode/policies/policy_inventory_modules.php:169
+#: ../../enterprise/godmode/policies/policy_alerts.php:259
+#: ../../enterprise/godmode/policies/policy_collections.php:103
+#: ../../enterprise/godmode/policies/policy_plugins.php:70
+msgid "Successfully reverted deletion"
+msgstr ""
+
+#: ../../enterprise/godmode/policies/policy_agents.php:114
+#: ../../enterprise/godmode/policies/policy_agents.php:130
+#: ../../enterprise/godmode/policies/policy_modules.php:1317
+#: ../../enterprise/godmode/policies/policy_external_alerts.php:151
+#: ../../enterprise/godmode/policies/policy_inventory_modules.php:172
+#: ../../enterprise/godmode/policies/policy_alerts.php:260
+#: ../../enterprise/godmode/policies/policy_collections.php:104
+#: ../../enterprise/godmode/policies/policy_plugins.php:71
+msgid "Could not be reverted"
+msgstr ""
+
+#: ../../enterprise/godmode/policies/policy_agents.php:124
+msgid ""
+"Successfully added to delete pending groups. Will be deleted in the next "
+"policy application."
+msgstr ""
+
+#: ../../enterprise/godmode/policies/policy_agents.php:148
+#: ../../enterprise/godmode/policies/policy_agents.php:193
+#: ../../enterprise/godmode/policies/policy_agents.php:261
+msgid "Policy with this id does not exist. "
+msgstr ""
+
+#: ../../enterprise/godmode/policies/policy_agents.php:177
+#: ../../enterprise/godmode/policies/policy_agents.php:310
+msgid "Successfully added to delete queue"
+msgstr ""
+
+#: ../../enterprise/godmode/policies/policy_agents.php:178
+#: ../../enterprise/godmode/policies/policy_agents.php:311
+msgid "Could not be added to delete queue"
+msgstr ""
+
+#: ../../enterprise/godmode/policies/policy_agents.php:250
+#, php-format
+msgid "Successfully added %d"
+msgstr ""
+
+#: ../../enterprise/godmode/policies/policy_agents.php:281
+msgid ""
+"Number of agents added to the policy concurrently is too large. This might "
+"cause the operation to fail or lead to performance issues."
+msgstr ""
+
+#: ../../enterprise/godmode/policies/policy_agents.php:288
+msgid "Successfully added to policy"
+msgstr ""
+
+#: ../../enterprise/godmode/policies/policy_agents.php:289
+msgid "Could not be added to policy"
+msgstr ""
+
+#: ../../enterprise/godmode/policies/policy_agents.php:407
+msgid "Apply to"
+msgstr ""
+
+#: ../../enterprise/godmode/policies/policy_agents.php:538
+#: ../../enterprise/godmode/policies/policy_agents.php:670
+msgid "Agents in Policy"
+msgstr ""
+
+#: ../../enterprise/godmode/policies/policy_agents.php:572
+#: ../../enterprise/godmode/policies/policy_agents.php:1217
+msgid "Groups in Policy"
+msgstr ""
+
+#: ../../enterprise/godmode/policies/policy_agents.php:707
+msgid "Add agents to policy"
+msgstr ""
+
+#: ../../enterprise/godmode/policies/policy_agents.php:734
+msgid "Delete agents from policy"
+msgstr ""
+
+#: ../../enterprise/godmode/policies/policy_agents.php:831
+msgid "Applied"
+msgstr ""
+
+#: ../../enterprise/godmode/policies/policy_agents.php:832
+msgid "Not applied"
+msgstr ""
+
+#: ../../enterprise/godmode/policies/policy_agents.php:849
+#: ../../godmode/servers/servers.build_table.php:246
+#: ../../godmode/reporting/reporting_builder.item_editor.php:79
+#: ../../godmode/massive/massive_edit_agents.php:945
+#: ../../godmode/agentes/configurar_agente.php:603
+#: ../../godmode/agentes/configurar_agente.php:753
+#: ../../godmode/agentes/agent_manager.php:485
+msgid "Remote configuration"
+msgstr ""
+
+#: ../../enterprise/godmode/policies/policy_agents.php:853
+msgid "Unlinked modules"
+msgstr ""
+
+#: ../../enterprise/godmode/policies/policy_agents.php:853
+msgid "U."
+msgstr ""
+
+#: ../../enterprise/godmode/policies/policy_agents.php:857
+#: ../../enterprise/godmode/policies/policy_agents.php:1373
+msgid "Add to delete queue"
+msgstr ""
+
+#: ../../enterprise/godmode/policies/policy_agents.php:857
+#: ../../enterprise/godmode/policies/policy_agents.php:1373
+msgid "D."
+msgstr ""
+
+#: ../../enterprise/godmode/policies/policy_agents.php:946
+#: ../../godmode/agentes/agent_manager.php:260
+msgid "This agent can be remotely configured"
+msgstr ""
+
+#: ../../enterprise/godmode/policies/policy_agents.php:953
+msgid "This agent can not be remotely configured"
+msgstr ""
+
+#: ../../enterprise/godmode/policies/policy_agents.php:1003
+#: ../../enterprise/godmode/policies/policy_agents.php:1482
+msgid "Process deletion"
+msgstr ""
+
+#: ../../enterprise/godmode/policies/policy_agents.php:1012
+#: ../../enterprise/godmode/policies/policy_agents.php:1493
+#: ../../enterprise/godmode/policies/policy_queue.php:337
+msgid "Add to apply queue"
+msgstr ""
+
+#: ../../enterprise/godmode/policies/policy_agents.php:1066
+#: ../../enterprise/godmode/policies/policy_agents.php:1535
+#: ../../enterprise/godmode/policies/policy_modules.php:1573
+#: ../../enterprise/godmode/policies/policy_external_alerts.php:533
+#: ../../enterprise/godmode/policies/policy_inventory_modules.php:329
+#: ../../enterprise/godmode/policies/policy_alerts.php:529
+msgid "Undo deletion"
+msgstr ""
+
+#: ../../enterprise/godmode/policies/policy_agents.php:1110
+#: ../../enterprise/godmode/policies/policy_agents.php:1435
+msgid "Need apply"
+msgstr ""
+
+#: ../../enterprise/godmode/policies/policy_agents.php:1122
+#: ../../enterprise/godmode/policies/policy_agents.php:1447
+msgid "Applying policy"
+msgstr ""
+
+#: ../../enterprise/godmode/policies/policy_agents.php:1135
+#: ../../enterprise/godmode/policies/policy_agents.php:1458
+msgid "Deleting from policy"
+msgstr ""
+
+#: ../../enterprise/godmode/policies/policy_agents.php:1295
+msgid "Add groups to policy"
+msgstr ""
+
+#: ../../enterprise/godmode/policies/policy_agents.php:1317
+msgid "Delete groups from policy"
+msgstr ""
+
+#: ../../enterprise/godmode/policies/policy_agents.php:1370
+msgid "Total agents in policy group"
+msgstr ""
+
+#: ../../enterprise/godmode/policies/policy_agents.php:1370
+msgid "T."
+msgstr ""
+
+#: ../../enterprise/godmode/policies/policy_queue.php:63
+msgid "No policies with this id"
+msgstr ""
+
+#: ../../enterprise/godmode/policies/policy_queue.php:146
+#, php-format
+msgid "%s: Operations successfully deleted from the queue"
+msgstr ""
+
+#: ../../enterprise/godmode/policies/policy_queue.php:153
+msgid "Operations successfully deleted from the queue"
+msgstr ""
+
+#: ../../enterprise/godmode/policies/policy_queue.php:154
+msgid "Operations cannot be deleted from the queue"
+msgstr ""
+
+#: ../../enterprise/godmode/policies/policy_queue.php:261
+#, php-format
+msgid "Some nodes (%s) are unreachebles. Some information may be missing."
+msgstr ""
+
+#: ../../enterprise/godmode/policies/policy_queue.php:308
+msgid "Update pending"
+msgstr ""
+
+#: ../../enterprise/godmode/policies/policy_queue.php:314
+msgid "Update pending agents"
+msgstr ""
+
+#: ../../enterprise/godmode/policies/policy_queue.php:343
+msgid "Add to apply queue only for database"
+msgstr ""
+
+#: ../../enterprise/godmode/policies/policy_queue.php:354
+msgid "Update pending groups"
+msgstr ""
+
+#: ../../enterprise/godmode/policies/policy_queue.php:368
+msgid "Link pending modules"
+msgstr ""
+
+#: ../../enterprise/godmode/policies/policy_queue.php:376
+msgid "Will be linked in the next policy application"
+msgstr ""
+
+#: ../../enterprise/godmode/policies/policy_queue.php:382
+msgid "Unlink pending modules"
+msgstr ""
+
+#: ../../enterprise/godmode/policies/policy_queue.php:388
+msgid "Will be unlinked in the next policy application"
+msgstr ""
+
+#: ../../enterprise/godmode/policies/policy_queue.php:393
+msgid "Delete pending"
+msgstr ""
+
+#: ../../enterprise/godmode/policies/policy_queue.php:399
+msgid "Delete pending agents"
+msgstr ""
+
+#: ../../enterprise/godmode/policies/policy_queue.php:407
+#: ../../enterprise/godmode/policies/policy_queue.php:422
+#: ../../enterprise/godmode/policies/policy_queue.php:437
+#: ../../enterprise/godmode/policies/policy_queue.php:452
+#: ../../enterprise/godmode/policies/policy_queue.php:467
+#: ../../enterprise/godmode/policies/policy_queue.php:482
+#: ../../enterprise/godmode/policies/policy_queue.php:497
+#: ../../enterprise/godmode/policies/policy_queue.php:512
+msgid "Will be deleted in the next policy application"
+msgstr ""
+
+#: ../../enterprise/godmode/policies/policy_queue.php:414
+msgid "Delete pending groups"
+msgstr ""
+
+#: ../../enterprise/godmode/policies/policy_queue.php:429
+msgid "Delete pending modules"
+msgstr ""
+
+#: ../../enterprise/godmode/policies/policy_queue.php:444
+msgid "Delete pending inventory modules"
+msgstr ""
+
+#: ../../enterprise/godmode/policies/policy_queue.php:459
+msgid "Delete pending alerts"
+msgstr ""
+
+#: ../../enterprise/godmode/policies/policy_queue.php:474
+msgid "Delete pending external alerts"
+msgstr ""
+
+#: ../../enterprise/godmode/policies/policy_queue.php:489
+msgid "Delete pending file collections"
+msgstr ""
+
+#: ../../enterprise/godmode/policies/policy_queue.php:504
+msgid "Delete pending plugins"
+msgstr ""
+
+#: ../../enterprise/godmode/policies/policy_queue.php:518
+msgid "Advices"
+msgstr ""
+
+#: ../../enterprise/godmode/policies/policy_queue.php:523
+msgid "Queue summary"
+msgstr ""
+
+#: ../../enterprise/godmode/policies/policy_queue.php:636
+msgid "Queue filter"
+msgstr ""
+
+#: ../../enterprise/godmode/policies/policy_queue.php:790
+msgid "Empty queue"
+msgstr ""
+
+#: ../../enterprise/godmode/policies/policy_queue.php:804
+msgid "This operation could take a long time"
+msgstr ""
+
+#: ../../enterprise/godmode/policies/policy_queue.php:815
+msgid "Apply all queues"
+msgstr ""
+
+#: ../../enterprise/godmode/policies/policy_queue.php:821
+msgid "Clear all items"
+msgstr ""
+
+#: ../../enterprise/godmode/policies/policy_linking.php:28
+msgid "Linking modules"
+msgstr ""
+
+#: ../../enterprise/godmode/policies/policy_linking.php:99
+msgid "Error: Update linking modules to policy"
+msgstr ""
+
+#: ../../enterprise/godmode/policies/policy_linking.php:101
+msgid "Success: Update linking modules to policy"
+msgstr ""
+
+#: ../../enterprise/godmode/policies/policy_linking.php:127
+msgid "Free text for filter (*)"
+msgstr ""
+
+#: ../../enterprise/godmode/policies/policy_linking.php:128
+msgid "Free text for filter"
+msgstr ""
+
+#: ../../enterprise/godmode/policies/policy_linking.php:138
+msgid "Cannot retrieve unlinked modules"
+msgstr ""
+
+#: ../../enterprise/godmode/policies/policy_linking.php:140
+msgid "There are no defined modules unlinked"
+msgstr ""
+
+#: ../../enterprise/godmode/policies/policy_linking.php:142
+msgid "List of modules unlinked"
+msgstr ""
+
+#: ../../enterprise/godmode/policies/policy_modules.php:299
+msgid ""
+"If you change this description, you must change into the text of Data "
+"configuration."
+msgstr ""
+
+#: ../../enterprise/godmode/policies/policy_modules.php:372
+msgid "Invalid module type."
+msgstr ""
+
+#: ../../enterprise/godmode/policies/policy_modules.php:403
+#: ../../godmode/agentes/module_manager_editor.php:738
+msgid "Base options"
+msgstr ""
+
+#: ../../enterprise/godmode/policies/policy_modules.php:548
+msgid "Could not be added module(s). You must select a policy"
+msgstr ""
+
+#: ../../enterprise/godmode/policies/policy_modules.php:581
+#, php-format
+msgid "Successfully added module(s) (%s/%s) to policy %s"
+msgstr ""
+
+#: ../../enterprise/godmode/policies/policy_modules.php:587
+#, php-format
+msgid "Could not be added module(s) (%s/%s) to policy %s"
+msgstr ""
+
+#: ../../enterprise/godmode/policies/policy_modules.php:623
+msgid "To define plugins please use plugin configuration tab."
+msgstr ""
+
+#: ../../enterprise/godmode/policies/policy_modules.php:920
+msgid "Could not be added module."
+msgstr ""
+
+#: ../../enterprise/godmode/policies/policy_modules.php:1265
+msgid ""
+"The module type in Data configuration is empty, take from combo box of form."
+msgstr ""
+
+#: ../../enterprise/godmode/policies/policy_modules.php:1269
+msgid ""
+"The module name in Data configuration is empty, take from text field of form."
+msgstr ""
+
+#: ../../enterprise/godmode/policies/policy_modules.php:1299
+#: ../../enterprise/godmode/policies/policy_modules.php:1312
+#: ../../enterprise/godmode/policies/policy_inventory_modules.php:163
+msgid ""
+"Successfully added to delete pending modules. Will be deleted in the next "
+"policy application."
+msgstr ""
+
+#: ../../enterprise/godmode/policies/policy_modules.php:1303
+msgid "Could not be added to deleted all modules."
+msgstr ""
+
+#: ../../enterprise/godmode/policies/policy_modules.php:1381
+#: ../../godmode/agentes/configurar_agente.php:2124
+#, php-format
+msgid "copy of %s (%d)"
+msgstr ""
+
+#: ../../enterprise/godmode/policies/policy_modules.php:1411
+msgid "Successfully duplicate the module."
+msgstr ""
+
+#: ../../enterprise/godmode/policies/policy_modules.php:1492
+msgid "Local component"
+msgstr ""
+
+#: ../../enterprise/godmode/policies/policy_modules.php:1509
+#: ../../enterprise/godmode/policies/policy_modules.php:1510
+msgid "Disabled module"
+msgstr ""
+
+#: ../../enterprise/godmode/policies/policy_modules.php:1517
+#: ../../enterprise/godmode/policies/policy_modules.php:1518
+msgid "Enabled module"
+msgstr ""
+
+#: ../../enterprise/godmode/policies/policy_modules.php:1528
+#: ../../enterprise/godmode/policies/policy_modules.php:1529
+#: ../../godmode/agentes/module_manager.php:1143
+#: ../../godmode/agentes/module_manager.php:1144
+msgid "Enable module"
+msgstr ""
+
+#: ../../enterprise/godmode/policies/policy_modules.php:1538
+#: ../../enterprise/godmode/policies/policy_modules.php:1539
+#: ../../godmode/agentes/module_manager.php:1153
+#: ../../godmode/agentes/module_manager.php:1154
+msgid "Disable module"
+msgstr ""
+
+#: ../../enterprise/godmode/policies/policy_modules.php:1624
+msgid "There are no defined modules"
+msgstr ""
+
+#: ../../enterprise/godmode/policies/policy_modules.php:1643
+#: ../../godmode/massive/massive_copy_modules.php:188
+msgid "Copy modules"
+msgstr ""
+
+#: ../../enterprise/godmode/policies/policy_modules.php:1644
+msgid "Copy selected modules to policy: "
+msgstr ""
+
+#: ../../enterprise/godmode/policies/policy_modules.php:1706
+#: ../../godmode/agentes/module_manager_editor.php:822
+msgid "No module name provided"
+msgstr ""
+
+#: ../../enterprise/godmode/policies/policy_modules.php:1707
+#: ../../godmode/agentes/module_manager_editor.php:832
+msgid "No target IP provided"
+msgstr ""
+
+#: ../../enterprise/godmode/policies/policy_modules.php:1708
+#: ../../godmode/agentes/module_manager_editor.php:842
+msgid "No SNMP OID provided"
+msgstr ""
+
+#: ../../enterprise/godmode/policies/policy_modules.php:1849
+msgid "Are you sure to copy modules into policy?\\n"
+msgstr ""
+
+#: ../../enterprise/godmode/policies/policy_modules.php:1869
+msgid "Please select any module to copy"
+msgstr ""
+
+#: ../../enterprise/godmode/policies/policies.php:85
+msgid "Policy not found."
+msgstr ""
+
+#: ../../enterprise/godmode/policies/policies.php:153
+msgid "Policy name already exists"
+msgstr ""
+
+#: ../../enterprise/godmode/policies/policies.php:224
+msgid "Policies Management"
+msgstr ""
+
+#: ../../enterprise/godmode/policies/policies.php:243
+msgid "All policy agents added to delete queue"
+msgstr ""
+
+#: ../../enterprise/godmode/policies/policies.php:244
+msgid "Policy agents cannot be added to the delete queue"
+msgstr ""
+
+#: ../../enterprise/godmode/policies/policies.php:330
+msgid "a"
+msgstr ""
+
+#: ../../enterprise/godmode/policies/policies.php:514
+msgid "Agent Wizard"
+msgstr ""
+
+#: ../../enterprise/godmode/policies/policies.php:595
+msgid "There must be no agents to delete the policy."
+msgstr ""
+
+#: ../../enterprise/godmode/policies/policies.php:601
+msgid "A policy with agents cannot be deleted. Purge it first"
+msgstr ""
+
+#: ../../enterprise/godmode/policies/policies.php:611
+msgid "Deleting all policy agents"
+msgstr ""
+
+#: ../../enterprise/godmode/policies/policies.php:616
+msgid "All the policy agents will be deleted"
+msgstr ""
+
+#: ../../enterprise/godmode/policies/policies.php:625
+msgid "Delete all agents"
+msgstr ""
+
+#: ../../enterprise/godmode/policies/policy_external_alerts.php:87
+#: ../../godmode/alerts/alert_list.php:173
+msgid "No module specified"
+msgstr ""
+
+#: ../../enterprise/godmode/policies/policy_external_alerts.php:123
+msgid "Created successfuly"
+msgstr ""
+
+#: ../../enterprise/godmode/policies/policy_external_alerts.php:127
+msgid "Duplicated alert"
+msgstr ""
+
+#: ../../enterprise/godmode/policies/policy_external_alerts.php:145
+#: ../../enterprise/godmode/policies/policy_alerts.php:255
+msgid ""
+"Successfully added to delete pending alerts. Will be deleted in the next "
+"policy application."
+msgstr ""
+
+#: ../../enterprise/godmode/policies/policy_external_alerts.php:173
+#: ../../enterprise/godmode/policies/policy_alerts.php:302
+msgid "Deleted action successfuly"
+msgstr ""
+
+#: ../../enterprise/godmode/policies/policy_external_alerts.php:200
+#: ../../enterprise/godmode/policies/policy_alerts.php:280
+msgid "Added action successfuly"
+msgstr ""
+
+#: ../../enterprise/godmode/policies/policy_external_alerts.php:383
+msgid "Modules in policy per agents"
+msgstr ""
+
+#: ../../enterprise/godmode/policies/policy_external_alerts.php:566
+msgid "There is not external alerts configured in this policy"
+msgstr ""
+
+#: ../../enterprise/godmode/policies/policy_external_alerts.php:620
+msgid "Modules in policy agents"
+msgstr ""
+
+#: ../../enterprise/godmode/policies/policy_external_alerts.php:648
+msgid "Alert Template"
+msgstr ""
+
+#: ../../enterprise/godmode/policies/configure_policy.php:122
+msgid "Force Apply"
+msgstr ""
+
+#: ../../enterprise/godmode/policies/configure_policy.php:122
+msgid ""
+"Force the creation of modules even if the software agent does not have "
+"remote configuration"
+msgstr ""
+
+#: ../../enterprise/godmode/policies/policy_inventory_modules.php:110
+msgid "Module is not selected"
+msgstr ""
+
+#: ../../enterprise/godmode/policies/policy_inventory_modules.php:296
+msgid "There are no defined inventory modules"
+msgstr ""
+
+#: ../../enterprise/godmode/policies/policy_alerts.php:178
+#: ../../godmode/massive/massive_standby_alerts.php:132
+#: ../../godmode/alerts/alert_list.php:420
+msgid "Successfully set standby"
+msgstr ""
+
+#: ../../enterprise/godmode/policies/policy_alerts.php:179
+#: ../../godmode/massive/massive_standby_alerts.php:132
+#: ../../godmode/alerts/alert_list.php:421
+msgid "Could not be set standby"
+msgstr ""
+
+#: ../../enterprise/godmode/policies/policy_alerts.php:204
+#: ../../godmode/massive/massive_standby_alerts.php:102
+#: ../../godmode/alerts/alert_list.php:447
+msgid "Successfully set off standby"
+msgstr ""
+
+#: ../../enterprise/godmode/policies/policy_alerts.php:205
+#: ../../godmode/massive/massive_standby_alerts.php:102
+#: ../../godmode/alerts/alert_list.php:448
+msgid "Could not be set off standby"
+msgstr ""
+
+#: ../../enterprise/godmode/policies/policy_alerts.php:249
+msgid " created successfuly"
+msgstr ""
+
+#: ../../enterprise/godmode/policies/policy_alerts.php:249
+msgid " could not be created"
+msgstr ""
+
+#: ../../enterprise/godmode/policies/policy_alerts.php:613
+msgid "There is not alerts configured in this policy."
+msgstr ""
+
+#: ../../enterprise/godmode/policies/policy_alerts.php:653
+msgid "Policy module"
+msgstr ""
+
+#: ../../enterprise/godmode/policies/policy_alerts.php:731
+#: ../../godmode/alerts/alert_list.list.php:1057
+msgid "Set off standby"
+msgstr ""
+
+#: ../../enterprise/godmode/policies/policy_alerts.php:740
+#: ../../godmode/alerts/alert_list.list.php:1084
+msgid "Set standby"
+msgstr ""
+
+#: ../../enterprise/godmode/policies/policy_collections.php:99
+msgid ""
+"Successfully added to delete the collection. Will be deleted in the next "
+"policy application."
+msgstr ""
+
+#: ../../enterprise/godmode/policies/policy_collections.php:241
+msgid "Collections in policy"
+msgstr ""
+
+#: ../../enterprise/godmode/policies/policy_collections.php:245
+msgid "Collections to add"
+msgstr ""
+
+#: ../../enterprise/godmode/policies/policy_collections.php:315
+msgid "No available collection to add"
+msgstr ""
+
+#: ../../enterprise/godmode/policies/policy_plugins.php:56
+msgid ""
+"Successfully added to delete pending plugins. Will be deleted in the next "
+"policy application."
+msgstr ""
+
+#: ../../enterprise/godmode/policies/policy_plugins.php:57
+msgid "Cannot be added to delete pending plugins."
+msgstr ""
+
+#: ../../enterprise/godmode/policies/policy_plugins.php:210
+msgid "There are no defined plugins"
+msgstr ""
+
+#: ../../extensions/quick_shell.php:140 ../../extensions/quick_shell.php:244
+msgid "WebService engine has not been started, please check documentation."
+msgstr ""
+
+#: ../../extensions/quick_shell.php:152
+msgid "Retry"
+msgstr ""
+
+#: ../../extensions/quick_shell.php:196
+msgid "Telnet"
+msgstr ""
+
+#: ../../extensions/quick_shell.php:204
+msgid "Connect"
+msgstr ""
+
+#: ../../extensions/quick_shell.php:232
+msgid "Please use SSH or Telnet."
+msgstr ""
+
+#: ../../extensions/quick_shell.php:266
+msgid "WebService engine is not working properly, please check documentation."
+msgstr ""
+
+#: ../../extensions/quick_shell.php:425
+#, php-format
+msgid "%d Updated"
+msgstr ""
+
+#: ../../extensions/quick_shell.php:428
+#, php-format
+msgid "%d Updated, please restart WebSocket engine service"
+msgstr ""
+
+#: ../../extensions/quick_shell.php:438
+msgid "Quickshell"
+msgstr ""
+
+#: ../../extensions/quick_shell.php:448
+msgid "Gotty path"
+msgstr ""
+
+#: ../../extensions/quick_shell.php:458
+msgid "Gotty host"
+msgstr ""
+
+#: ../../extensions/quick_shell.php:468
+msgid "Gotty ssh port"
+msgstr ""
+
+#: ../../extensions/quick_shell.php:478
+msgid "Gotty telnet port"
+msgstr ""
+
+#: ../../extensions/quick_shell.php:495
+msgid "Gotty user"
+msgstr ""
+
+#: ../../extensions/quick_shell.php:505
+msgid "Gotty password"
+msgstr ""
+
+#: ../../extensions/quick_shell.php:545
+msgid "QuickShell"
+msgstr ""
+
+#: ../../extensions/disabled/matrix_events.php:30
+msgid "Matrix events"
+msgstr ""
+
+#: ../../extensions/pandora_logs.php:29
+msgid "Cannot find file"
+msgstr ""
+
+#: ../../extensions/pandora_logs.php:34
+msgid "File is too large than PHP memory allocated in the system."
+msgstr ""
+
+#: ../../extensions/pandora_logs.php:35
+msgid "The preview file is imposible."
+msgstr ""
+
+#: ../../extensions/pandora_logs.php:38 ../../extensions/pandora_logs.php:45
+msgid ""
+"The folder /var/log/pandora must have pandora:apache and its content too."
+msgstr ""
+
+#: ../../extensions/pandora_logs.php:67
+msgid "System logfile viewer"
+msgstr ""
+
+#: ../../extensions/pandora_logs.php:69
+#, php-format
+msgid "Use this tool to view your %s logfiles directly on the console"
+msgstr ""
+
+#: ../../extensions/pandora_logs.php:71
+msgid ""
+"You can choose the amount of information shown in general setup (Log size "
+"limit in system logs viewer extension), "
+msgstr ""
+
+#: ../../extensions/pandora_logs.php:85
+msgid "System logfiles"
+msgstr ""
+
+#: ../../extensions/users_connected.php:37
+#: ../../extensions/users_connected.php:209
+msgid "Users connected"
+msgstr ""
+
+#: ../../extensions/users_connected.php:42
+msgid "This user does not have any associated profile"
+msgstr ""
+
+#: ../../extensions/users_connected.php:132
+msgid "No other users connected"
+msgstr ""
+
+#: ../../extensions/users_connected.php:145
+msgid "Last login"
+msgstr ""
+
+#: ../../extensions/realtime_graphs.php:58
+#: ../../extensions/realtime_graphs.php:268
+msgid "Realtime graphs"
+msgstr ""
+
+#: ../../extensions/realtime_graphs.php:134
+#, php-format
+msgid "%s Server CPU"
+msgstr ""
+
+#: ../../extensions/realtime_graphs.php:136
+#, php-format
+msgid "Pending packages from %s Server"
+msgstr ""
+
+#: ../../extensions/realtime_graphs.php:140
+#, php-format
+msgid "%s Server Disk IO Wait"
+msgstr ""
+
+#: ../../extensions/realtime_graphs.php:144
+#, php-format
+msgid "%s Server Apache load"
+msgstr ""
+
+#: ../../extensions/realtime_graphs.php:148
+#, php-format
+msgid "%s Server MySQL load"
+msgstr ""
+
+#: ../../extensions/realtime_graphs.php:152
+#, php-format
+msgid "%s Server load"
+msgstr ""
+
+#: ../../extensions/realtime_graphs.php:155
+msgid "SNMP Interface throughput"
+msgstr ""
+
+#: ../../extensions/realtime_graphs.php:206
+msgid "Refresh interval"
+msgstr ""
+
+#: ../../extensions/realtime_graphs.php:217
+#: ../../godmode/modules/manage_network_components_form_wizard.php:135
+msgid "Incremental"
+msgstr ""
+
+#: ../../extensions/realtime_graphs.php:222
+msgid "Clear graph"
+msgstr ""
+
+#: ../../extensions/realtime_graphs.php:249
+#: ../../godmode/agentes/module_manager_editor_network.php:43
+msgid "Use this OID"
+msgstr ""
+
+#: ../../extensions/dbmanager.php:110
+msgid "Database interface"
+msgstr ""
+
+#: ../../extensions/dbmanager.php:123
+msgid ""
+"Warning, you are accessing the database directly. You can leave the system "
+"inoperative if you run an inappropriate SQL statement"
+msgstr ""
+
+#: ../../extensions/dbmanager.php:161
+#, php-format
+msgid ""
+"This is an advanced extension to interface with %s database directly from "
+"WEB console\n"
+"\t\tusing native SQL sentences. Please note that <b>you can damage</b> your "
+"%s installation\n"
+"\t\tif you don't know </b>exactly</b> what are you are doing,\n"
+"\t\tthis means that you can severily damage your setup using this "
+"extension.\n"
+"\t\tThis extension is intended to be used <b>only by experienced users</b>\n"
+"\t\twith a depth knowledge of %s internals."
+msgstr ""
+
+#: ../../extensions/dbmanager.php:207
+msgid "Select query target"
+msgstr ""
+
+#: ../../extensions/dbmanager.php:214
+msgid "Execute SQL"
+msgstr ""
+
+#: ../../extensions/dbmanager.php:255
+msgid "Error querying database node"
+msgstr ""
+
+#: ../../extensions/dbmanager.php:322 ../../godmode/menu.php:433
+msgid "DB interface"
+msgstr ""
+
+#: ../../extensions/files_repo/files_repo_get_file.php:66
+msgid "Unreliable petition"
+msgstr ""
+
+#: ../../extensions/files_repo/files_repo_get_file.php:66
+msgid "Please contact the administrator"
+msgstr ""
+
+#: ../../extensions/files_repo/functions_files_repo.php:28
+#: ../../extensions/files_repo/functions_files_repo.php:46
+msgid "Attachment directory is not writable by HTTP Server"
+msgstr ""
+
+#: ../../extensions/files_repo/functions_files_repo.php:28
+#: ../../extensions/files_repo/functions_files_repo.php:46
+#, php-format
+msgid "Please check that the web server has write rights on the %s directory"
+msgstr ""
+
+#: ../../extensions/files_repo/functions_files_repo.php:248
+msgid "The file could not be copied"
+msgstr ""
+
+#: ../../extensions/files_repo/functions_files_repo.php:251
+msgid "There was an error creating the file"
+msgstr ""
+
+#: ../../extensions/files_repo/functions_files_repo.php:295
+msgid "There was an error updating the file"
+msgstr ""
+
+#: ../../extensions/files_repo/files_repo_form.php:84
+msgid "Only 200 characters are permitted"
+msgstr ""
+
+#: ../../extensions/files_repo/files_repo_form.php:95
+#: ../../godmode/extensions.php:138
+msgid "File"
+msgstr ""
+
+#: ../../extensions/files_repo/files_repo_form.php:98
+#: ../../extensions/files_repo/files_repo_form.php:104
+#: ../../extensions/files_repo/files_repo_list.php:112
+msgid "Public link"
+msgstr ""
+
+#: ../../extensions/files_repo/files_repo_list.php:106
+msgid "Copy to clipboard"
+msgstr ""
+
+#: ../../extensions/db_status.php:25 ../../extensions/db_status.php:453
+#: ../../godmode/menu.php:433
+msgid "DB Schema check"
+msgstr ""
+
+#: ../../extensions/db_status.php:43
+msgid ""
+"This extension checks the DB is correct. Because sometimes the old DB from a "
+"migration has not some fields in the tables or the data is changed."
+msgstr ""
+
+#: ../../extensions/db_status.php:46
+msgid "At the moment the checks is for MySQL/MariaDB."
+msgstr ""
+
+#: ../../extensions/db_status.php:52
+msgid "DB settings"
+msgstr ""
+
+#: ../../extensions/db_status.php:56
+msgid "DB User with privileges"
+msgstr ""
+
+#: ../../extensions/db_status.php:58
+msgid "DB Password for this user"
+msgstr ""
+
+#: ../../extensions/db_status.php:62
+msgid "DB Hostname"
+msgstr ""
+
+#: ../../extensions/db_status.php:64
+msgid "DB Name (temporal for testing)"
+msgstr ""
+
+#: ../../extensions/db_status.php:72
+msgid "Execute Test"
+msgstr ""
+
+#: ../../extensions/db_status.php:108
+msgid "Unsuccessful connected to the DB"
+msgstr ""
+
+#: ../../extensions/db_status.php:119
+msgid "Unsuccessful created the testing DB"
+msgstr ""
+
+#: ../../extensions/db_status.php:135
+msgid "Unsuccessful installed tables into the testing DB"
+msgstr ""
+
+#: ../../extensions/db_status.php:219
+#, php-format
+msgid "Success! %s DB contains all tables"
+msgstr ""
+
+#: ../../extensions/db_status.php:221
+#, php-format
+msgid "%s DB could not retrieve all tables. The missing tables are (%s)"
+msgstr ""
+
+#: ../../extensions/db_status.php:235 ../../extensions/db_status.php:246
+#: ../../extensions/db_status.php:349
+msgid "You can execute this SQL query for to fix."
+msgstr ""
+
+#: ../../extensions/db_status.php:343
+#, php-format
+msgid "Unsuccessful the table %s has not the field %s"
+msgstr ""
+
+#: ../../extensions/db_status.php:408
+msgid "Successful all the tables have the correct fields"
+msgstr ""
+
+#: ../../extensions/agents_alerts.php:37
+msgid "Agents/Alerts view"
+msgstr ""
+
+#: ../../extensions/extension_uploader.php:29
+msgid "Uploader extension"
+msgstr ""
+
+#: ../../extensions/extension_uploader.php:72
+msgid "Success to upload extension"
+msgstr ""
+
+#: ../../extensions/extension_uploader.php:73
+msgid "Fail to upload extension"
+msgstr ""
+
+#: ../../extensions/extension_uploader.php:82
+msgid "Upload extension"
+msgstr ""
+
+#: ../../extensions/extension_uploader.php:83
+msgid "Upload the extension as a zip file."
+msgstr ""
+
+#: ../../extensions/extension_uploader.php:85
+msgid "Upload enterprise extension"
+msgstr ""
+
+#: ../../extensions/extension_uploader.php:98
+msgid "Extension uploader"
+msgstr ""
+
+#: ../../extensions/module_groups.php:48
+msgid "Counters Module"
+msgstr ""
+
+#: ../../extensions/module_groups.php:49
+msgid "Alerts_Fired"
+msgstr ""
+
+#: ../../extensions/module_groups.php:51
+msgid "warning"
+msgstr ""
+
+#: ../../extensions/module_groups.php:54
+msgid "Not_init"
+msgstr ""
+
+#: ../../extensions/module_groups.php:251
+msgid "Combined table of agent group and module group"
+msgstr ""
+
+#: ../../extensions/module_groups.php:275
+msgid "Search by agent group"
+msgstr ""
+
+#: ../../extensions/module_groups.php:279
+msgid "Search by module group"
+msgstr ""
+
+#: ../../extensions/module_groups.php:392
+msgid ""
+"Orange cell when the module group and agent have at least one alarm fired."
+msgstr ""
+
+#: ../../extensions/module_groups.php:393
+msgid ""
+"Red cell when the module group and agent have at least one module in "
+"critical status and the others in any status"
+msgstr ""
+
+#: ../../extensions/module_groups.php:394
+msgid ""
+"Yellow cell when the module group and agent have at least one in warning "
+"status and the others in grey or green status"
+msgstr ""
+
+#: ../../extensions/module_groups.php:395
+msgid ""
+"Grey cell when the module group and agent have at least one in unknown "
+"status and the others in green status"
+msgstr ""
+
+#: ../../extensions/module_groups.php:396
+msgid ""
+"Green cell when the module group and agent have all modules in OK status"
+msgstr ""
+
+#: ../../extensions/module_groups.php:397
+msgid ""
+"Blue cell when the module group and agent have all modules in not init "
+"status."
+msgstr ""
+
+#: ../../extensions/module_groups.php:401
+msgid ""
+"This table shows in columns the modules group and in rows agents group. The "
+"cell shows all modules"
+msgstr ""
+
+#: ../../extensions/module_groups.php:402
+msgid "There are no defined groups or module groups"
+msgstr ""
+
+#: ../../extensions/agents_modules.php:564
+msgid "Agent/module view"
+msgstr ""
+
+#: ../../extensions/agents_modules.php:605
+msgid "Filters "
+msgstr ""
+
+#: ../../extensions/agents_modules.php:605
+msgid "Secondary groups and agent subgroups will be taken into account."
+msgstr ""
+
+#: ../../extensions/agents_modules.php:765
+msgid "Previous modules"
+msgstr ""
+
+#: ../../extensions/agents_modules.php:791
+msgid "More modules"
+msgstr ""
+
+#: ../../extensions/agents_modules.php:945
+msgid "Cell turns blue when the module is in 'not initialize' status"
+msgstr ""
+
+#: ../../extensions/agents_modules.php:959
+msgid "Agents/Modules view"
+msgstr ""
+
+#: ../../extensions/files_repo.php:103
+msgid "Extension not installed"
+msgstr ""
+
+#: ../../extensions/files_repo.php:118 ../../extensions/files_repo.php:207
+msgid "Administration view"
+msgstr ""
+
+#: ../../extensions/files_repo.php:130 ../../extensions/files_repo.php:240
+msgid "Files repository manager"
+msgstr ""
+
+#: ../../extensions/files_repo.php:148
+msgid ""
+"Problem uploading. Please check this PHP runtime variable values: <pre>  "
+"post_max_size (currently "
+msgstr ""
+
+#: ../../extensions/files_repo.php:221 ../../extensions/files_repo.php:238
+msgid "Files repository"
+msgstr ""
+
+#: ../../extensions/resource_registration.php:55
+#, php-format
+msgid "Success add '%s' item in report '%s'."
+msgstr ""
+
+#: ../../extensions/resource_registration.php:60
+#, php-format
+msgid "Error create '%s' item in report '%s'."
+msgstr ""
+
+#: ../../extensions/resource_registration.php:96
+#, php-format
+msgid "Error create '%s' report, the name exist and there aren't free name."
+msgstr ""
+
+#: ../../extensions/resource_registration.php:104
+#, php-format
+msgid "Warning create '%s' report, the name exist, the report have a name %s."
+msgstr ""
+
+#: ../../extensions/resource_registration.php:113
+msgid "Error the report haven't name."
+msgstr ""
+
+#: ../../extensions/resource_registration.php:127
+msgid "Error the report haven't group."
+msgstr ""
+
+#: ../../extensions/resource_registration.php:140
+#, php-format
+msgid "Success create '%s' report."
+msgstr ""
+
+#: ../../extensions/resource_registration.php:141
+#, php-format
+msgid "Error create '%s' report."
+msgstr ""
+
+#: ../../extensions/resource_registration.php:435
+#: ../../extensions/resource_registration.php:457
+#: ../../extensions/resource_registration.php:468
+#, php-format
+msgid "Success add '%s' content."
+msgstr ""
+
+#: ../../extensions/resource_registration.php:445
+#, php-format
+msgid "Success add '%s' SLA."
+msgstr ""
+
+#: ../../extensions/resource_registration.php:446
+#, php-format
+msgid "Error add '%s' SLA."
+msgstr ""
+
+#: ../../extensions/resource_registration.php:489
+#, php-format
+msgid "Error create '%s' visual map, lost tag name."
+msgstr ""
+
+#: ../../extensions/resource_registration.php:532
+#, php-format
+msgid ""
+"Error create '%s' visual map, the name exist and there aren't free name."
+msgstr ""
+
+#: ../../extensions/resource_registration.php:540
+#, php-format
+msgid ""
+"Warning create '%s' visual map, the name exist, the report have a name %s."
+msgstr ""
+
+#: ../../extensions/resource_registration.php:552
+#, php-format
+msgid "Success create '%s' visual map."
+msgstr ""
+
+#: ../../extensions/resource_registration.php:553
+#, php-format
+msgid "Error create '%s' visual map."
+msgstr ""
+
+#: ../../extensions/resource_registration.php:718
+#, php-format
+msgid "Success create item type '%d' visual map."
+msgstr ""
+
+#: ../../extensions/resource_registration.php:719
+#, php-format
+msgid "Error create item type '%d' visual map."
+msgstr ""
+
+#: ../../extensions/resource_registration.php:742
+#: ../../extensions/resource_registration.php:763
+#, php-format
+msgid "Success create item for agent '%s' visual map."
+msgstr ""
+
+#: ../../extensions/resource_registration.php:743
+#: ../../extensions/resource_registration.php:764
+#, php-format
+msgid "Error create item for agent '%s' visual map."
+msgstr ""
+
+#: ../../extensions/resource_registration.php:1028
+#, php-format
+msgid "Success create '%s' component."
+msgstr ""
+
+#: ../../extensions/resource_registration.php:1029
+#, php-format
+msgid "Error create '%s' component."
+msgstr ""
+
+#: ../../extensions/resource_registration.php:1095
+#: ../../extensions/resource_registration.php:1158
+msgid "Resource registration"
+msgstr ""
+
+#: ../../extensions/resource_registration.php:1114
+#, php-format
+msgid ""
+"This node is configured with centralized mode. Go to %s to create a policy."
+msgstr ""
+
+#: ../../extensions/resource_registration.php:1123
+msgid "This extension makes registering resource templates easier."
+msgstr ""
+
+#: ../../extensions/resource_registration.php:1123
+msgid "Here you can upload a resource template in .ptr format."
+msgstr ""
+
+#: ../../extensions/resource_registration.php:1123
+#, php-format
+msgid ""
+"Please refer to our documentation for more information on how to obtain and "
+"use %s resources."
+msgstr ""
+
+#: ../../extensions/resource_registration.php:1123
+msgid ""
+"You can get more resurces in our <a href=\"https://pandorafms.com/Library/"
+"Library/\">Public Resource Library</a>"
+msgstr ""
+
+#: ../../extensions/resource_exportation.php:50
+#: ../../extensions/resource_exportation.php:420
+msgid "Resource exportation"
+msgstr ""
+
+#: ../../extensions/resource_exportation.php:423
+msgid "This extension makes exportation of resource template more easy."
+msgstr ""
+
+#: ../../extensions/resource_exportation.php:423
+msgid "You can export resource templates in .ptr format."
+msgstr ""
+
+#: ../../extensions/api_checker.php:111 ../../extensions/api_checker.php:248
+msgid "API checker"
+msgstr ""
+
+#: ../../extensions/api_checker.php:128
+#, php-format
+msgid "%s Console URL"
+msgstr ""
+
+#: ../../extensions/api_checker.php:133
+msgid "API Pass"
+msgstr ""
+
+#: ../../extensions/api_checker.php:151
+msgid "Action (get or set)"
+msgstr ""
+
+#: ../../extensions/api_checker.php:166
+msgid "ID 2"
+msgstr ""
+
+#: ../../extensions/api_checker.php:171
+msgid "Return Type"
+msgstr ""
+
+#: ../../extensions/api_checker.php:181
+msgid "Other Mode"
+msgstr ""
+
+#: ../../extensions/api_checker.php:189
+msgid "Raw URL"
+msgstr ""
+
+#: ../../extensions/api_checker.php:200
+msgid "Call parameters"
+msgstr ""
+
+#: ../../extensions/api_checker.php:200
+msgid "Action: get Operation: module_last_value id: 63"
+msgstr ""
+
+#: ../../extensions/api_checker.php:207
+msgid "Custom URL"
+msgstr ""
+
+#: ../../extensions/api_checker.php:213
+msgid "Call"
+msgstr ""
+
+#: ../../extensions/api_checker.php:222 ../../extensions/api_checker.php:239
+msgid "Show URL"
+msgstr ""
+
+#: ../../extensions/api_checker.php:235
+msgid "Hide URL"
+msgstr ""
+
+#: ../../extensions/insert_data.php:58
+msgid "Insert data"
+msgstr ""
+
+#: ../../extensions/insert_data.php:89
+msgid "You haven't privileges for insert data in the agent."
+msgstr ""
+
+#: ../../extensions/insert_data.php:125
+#, php-format
+msgid "Can't save agent (%s), module (%s) data xml."
+msgstr ""
+
+#: ../../extensions/insert_data.php:134
+#, php-format
+msgid "Save agent (%s), module (%s) data xml."
+msgstr ""
+
+#: ../../extensions/insert_data.php:145
+#, php-format
+msgid ""
+"Please check that the directory \"%s\" is writeable by the apache user. <br /"
+"><br />The CSV file format is date;value&lt;newline&gt;date;value&lt;"
+"newline&gt;... The date in CSV is in format Y/m/d H:i:s."
+msgstr ""
+
+#: ../../extensions/insert_data.php:273
+msgid "Insert Data"
+msgstr ""
+
+#: ../../mobile/operation/agent.php:162
+msgid "No agent found"
+msgstr ""
+
+#: ../../mobile/operation/agent.php:238
+msgid "Modules by status"
+msgstr ""
+
+#: ../../mobile/operation/agent.php:375
+#, php-format
+msgid "Last %s Events"
+msgstr ""
+
+#: ../../mobile/operation/modules.php:250
+#, php-format
+msgid "Filter Modules by %s"
+msgstr ""
+
+#: ../../mobile/operation/modules.php:325 ../../mobile/operation/alerts.php:266
+#: ../../mobile/operation/events.php:718 ../../mobile/operation/agents.php:260
+msgid "Apply Filter"
+msgstr ""
+
+#: ../../mobile/operation/modules.php:659
+msgid "Interval."
+msgstr ""
+
+#: ../../mobile/operation/modules.php:661
+msgid "Last update."
+msgstr ""
+
+#: ../../mobile/operation/modules.php:772
+#: ../../godmode/agentes/agent_template.php:269
+msgid "No modules"
+msgstr ""
+
+#: ../../mobile/operation/modules.php:885 ../../mobile/operation/alerts.php:379
+#: ../../mobile/operation/events.php:1155 ../../mobile/operation/agents.php:550
+msgid "(Default)"
+msgstr ""
+
+#: ../../mobile/operation/modules.php:891 ../../mobile/operation/alerts.php:392
+#: ../../mobile/operation/events.php:1188 ../../mobile/operation/agents.php:556
+#, php-format
+msgid "Group: %s"
+msgstr ""
+
+#: ../../mobile/operation/modules.php:906
+#, php-format
+msgid "Module group: %s"
+msgstr ""
+
+#: ../../mobile/operation/modules.php:913 ../../mobile/operation/alerts.php:399
+#: ../../mobile/operation/events.php:1208 ../../mobile/operation/agents.php:563
+#, php-format
+msgid "Status: %s"
+msgstr ""
+
+#: ../../mobile/operation/modules.php:920 ../../mobile/operation/alerts.php:406
+#: ../../mobile/operation/agents.php:570
+#, php-format
+msgid "Free Search: %s"
+msgstr ""
+
+#: ../../mobile/operation/modules.php:928
+#, php-format
+msgid "Tag: %s"
+msgstr ""
+
+#: ../../mobile/operation/visualmaps.php:242
+msgid "All visual consoles"
+msgstr ""
+
+#: ../../mobile/operation/visualmaps.php:254
+msgid "Favourite visual consoles"
+msgstr ""
+
+#: ../../mobile/operation/visualmaps.php:263
+msgid "No maps defined"
+msgstr ""
+
+#: ../../mobile/operation/home.php:161 ../../mobile/include/ui.class.php:239
+msgid "Home"
+msgstr ""
+
+#: ../../mobile/operation/tactical.php:216
+msgid "Last activity"
+msgstr ""
+
+#: ../../mobile/operation/alerts.php:125 ../../mobile/operation/alerts.php:126
+#: ../../mobile/operation/alerts.php:256 ../../mobile/operation/alerts.php:257
+#: ../../godmode/alerts/alert_view.php:128
+msgid "Stand by"
+msgstr ""
+
+#: ../../mobile/operation/alerts.php:208
+#, php-format
+msgid "Filter Alerts by %s"
+msgstr ""
+
+#: ../../mobile/operation/alerts.php:346
+msgid "Last Fired"
+msgstr ""
+
+#: ../../mobile/operation/alerts.php:357
+msgid "No alerts"
+msgstr ""
+
+#: ../../mobile/operation/alerts.php:385
+#, php-format
+msgid "Standby: %s"
+msgstr ""
+
+#: ../../mobile/operation/events.php:405 ../../mobile/operation/events.php:414
+#: ../../mobile/operation/events.php:643 ../../mobile/operation/events.php:644
+msgid "Preset Filters"
+msgstr ""
+
+#: ../../mobile/operation/events.php:485
+msgid "ERROR: Event detail"
+msgstr ""
+
+#: ../../mobile/operation/events.php:486
+msgid "Error connecting to DB."
+msgstr ""
+
+#: ../../mobile/operation/events.php:501
+msgid "Event detail"
+msgstr ""
+
+#: ../../mobile/operation/events.php:584
+msgid "Sucessful validate"
+msgstr ""
+
+#: ../../mobile/operation/events.php:586
+msgid "Fail validate"
+msgstr ""
+
+#: ../../mobile/operation/events.php:625
+#, php-format
+msgid "Filter Events by %s"
+msgstr ""
+
+#: ../../mobile/operation/events.php:1160
+#, php-format
+msgid "Filter: %s"
+msgstr ""
+
+#: ../../mobile/operation/events.php:1172
+#, php-format
+msgid "Severity: %s"
+msgstr ""
+
+#: ../../mobile/operation/events.php:1201
+#, php-format
+msgid "Type: %s"
+msgstr ""
+
+#: ../../mobile/operation/events.php:1215
+#, php-format
+msgid "Free search: %s"
+msgstr ""
+
+#: ../../mobile/operation/events.php:1222
+#, php-format
+msgid "Hours: %s"
+msgstr ""
+
+#: ../../mobile/operation/module_graph.php:359
+#: ../../mobile/operation/module_graph.php:372
+#, php-format
+msgid "%s: %s"
+msgstr ""
+
+#: ../../mobile/operation/module_graph.php:405
+#, php-format
+msgid "Options for %s : %s"
+msgstr ""
+
+#: ../../mobile/operation/module_graph.php:412
+msgid "Show Alerts"
+msgstr ""
+
+#: ../../mobile/operation/module_graph.php:420
+msgid "Show Events"
+msgstr ""
+
+#: ../../mobile/operation/module_graph.php:449
+msgid "Time range (hours)"
+msgstr ""
+
+#: ../../mobile/operation/module_graph.php:468
+msgid "Update graph"
+msgstr ""
+
+#: ../../mobile/operation/module_graph.php:478
+msgid "Error get the graph"
+msgstr ""
+
+#: ../../mobile/operation/agents.php:218
+#, php-format
+msgid "Filter Agents by %s"
+msgstr ""
+
+#: ../../mobile/operation/agents.php:454
+msgid "No agents"
+msgstr ""
+
+#: ../../mobile/include/user.class.php:171
+msgid "User cannot log in into this console, please contact administrator"
+msgstr ""
+
+#: ../../mobile/include/user.class.php:264
+#: ../../mobile/include/user.class.php:279
+#: ../../mobile/include/user.class.php:286
+msgid "Double authentication failed"
+msgstr ""
+
+#: ../../mobile/include/user.class.php:265
+msgid "Secret code not found"
+msgstr ""
+
+#: ../../mobile/include/user.class.php:265
+msgid "Please contact the administrator to reset your double authentication"
+msgstr ""
+
+#: ../../mobile/include/user.class.php:287
+msgid "There was an error checking the code"
+msgstr ""
+
+#: ../../mobile/include/user.class.php:328
+msgid "Login Failed"
+msgstr ""
+
+#: ../../mobile/include/user.class.php:332
+msgid "User not found in database or incorrect password."
+msgstr ""
+
+#: ../../mobile/include/user.class.php:341
+msgid "Login out"
+msgstr ""
+
+#: ../../mobile/include/user.class.php:372
+msgid "user"
+msgstr ""
+
+#: ../../mobile/include/user.class.php:379
+msgid "password"
+msgstr ""
+
+#: ../../mobile/include/user.class.php:468
+#: ../../mobile/include/user.class.php:469
+msgid "Authenticator code"
+msgstr ""
+
+#: ../../mobile/include/system.class.php:156
+msgid ""
+"Access to this page is restricted to authorized users only, please contact "
+"your system administrator if you should need help."
+msgstr ""
+
+#: ../../mobile/include/system.class.php:156
+#, php-format
+msgid ""
+"Please remember that any attempts to access this page will be recorded on "
+"the %s System Database."
+msgstr ""
+
+#: ../../mobile/include/ui.class.php:120
+#, php-format
+msgid "%s mobile"
+msgstr ""
+
+#: ../../mobile/include/ui.class.php:217
+#, php-format
+msgid "%s : Mobile"
+msgstr ""
+
+#: ../../mobile/include/ui.class.php:327
+#, php-format
+msgid "%s %s - Build %s"
+msgstr ""
+
+#: ../../mobile/include/ui.class.php:773
+msgid "Not found header."
+msgstr ""
+
+#: ../../mobile/include/ui.class.php:775
+msgid "Not found content."
+msgstr ""
+
+#: ../../mobile/include/ui.class.php:777
+msgid "Not found footer."
+msgstr ""
+
+#: ../../mobile/include/ui.class.php:779
+msgid "Incorrect form."
+msgstr ""
+
+#: ../../mobile/include/ui.class.php:781
+msgid "Incorrect grid."
+msgstr ""
+
+#: ../../mobile/include/ui.class.php:783
+msgid "Incorrect collapsible."
+msgstr ""
+
+#: ../../mobile/include/functions_web.php:83
+#, php-format
+msgid "Pandora FMS %s - Build %s"
+msgstr ""
+
+#: ../../godmode/setup/setup.php:165 ../../godmode/setup/setup.php:283
+#: ../../godmode/setup/setup_integria.php:585 ../../godmode/menu.php:350
+msgid "Integria IMS"
+msgstr ""
+
+#: ../../godmode/setup/setup.php:216
+msgid "Websocket engine"
+msgstr ""
+
+#: ../../godmode/setup/setup.php:234
+msgid "GIS Map connection"
+msgstr ""
+
+#: ../../godmode/setup/setup.php:295 ../../godmode/menu.php:365
+msgid "Map conections GIS"
+msgstr ""
+
+#: ../../godmode/setup/setup.php:305
+msgid "Pandora Websocket Engine"
+msgstr ""
+
+#: ../../godmode/setup/setup.php:349
+msgid "Correct update the setup options"
+msgstr ""
+
+#: ../../godmode/setup/snmp_wizard.php:155
+msgid "Unsucessful update the snmp translation"
+msgstr ""
+
+#: ../../godmode/setup/snmp_wizard.php:162
+msgid "Unsucessful update the snmp translation."
+msgstr ""
+
+#: ../../godmode/setup/snmp_wizard.php:210
+msgid "Unsucessful delete the snmp translation"
+msgstr ""
+
+#: ../../godmode/setup/snmp_wizard.php:217
+msgid "Unsucessful delete the snmp translation."
+msgstr ""
+
+#: ../../godmode/setup/snmp_wizard.php:278
+msgid "Unsucessful save the snmp translation"
+msgstr ""
+
+#: ../../godmode/setup/snmp_wizard.php:287
+msgid "Unsucessful save the snmp translation."
+msgstr ""
+
+#: ../../godmode/setup/os.list.php:56
+#, php-format
+msgid ""
+"This node is configured with centralized mode. All OS definitions are read "
+"only. Go to %s to manage them."
+msgstr ""
+
+#: ../../godmode/setup/os.list.php:141
+msgid "There are no defined operating systems"
+msgstr ""
+
+#: ../../godmode/setup/os.list.php:147
+msgid "Create OS"
+msgstr ""
+
+#: ../../godmode/setup/setup_integria.php:296
+msgid "URL to Integria IMS setup"
+msgstr ""
+
+#: ../../godmode/setup/setup_integria.php:296
+msgid ""
+"Full URL to your Integria IMS setup (e.g., http://192.168.1.20/integria, "
+"https://support.mycompany.com)."
+msgstr ""
+
+#: ../../godmode/setup/setup_integria.php:302
+msgid "API Password"
+msgstr ""
+
+#: ../../godmode/setup/setup_integria.php:309
+#: ../../godmode/setup/setup_ehorus.php:105
+msgid "Request timeout"
+msgstr ""
+
+#: ../../godmode/setup/setup_integria.php:315
+msgid "Sync inventory"
+msgstr ""
+
+#: ../../godmode/setup/setup_integria.php:348
+#: ../../godmode/setup/setup_integria.php:469
+msgid "Ticket body"
+msgstr ""
+
+#: ../../godmode/setup/setup_integria.php:603
+msgid "Integria API settings"
+msgstr ""
+
+#: ../../godmode/setup/setup_integria.php:614
+msgid "Alert default values"
+msgstr ""
+
+#: ../../godmode/setup/setup_integria.php:624
+msgid "Event custom response default values"
+msgstr ""
+
+#: ../../godmode/setup/setup_integria.php:719
+#: ../../godmode/setup/setup_ehorus.php:254
+msgid "Connection timeout"
+msgstr ""
+
+#: ../../godmode/setup/gis_step_2.php:37
+msgid "GIS Maps connections"
+msgstr ""
+
+#: ../../godmode/setup/gis_step_2.php:54
+msgid "Create new map connection"
+msgstr ""
+
+#: ../../godmode/setup/gis_step_2.php:81
+msgid "Edit map connection"
+msgstr ""
+
+#: ../../godmode/setup/gis_step_2.php:213
+msgid "Connection Name"
+msgstr ""
+
+#: ../../godmode/setup/gis_step_2.php:219
+msgid "Number of zoom levels"
+msgstr ""
+
+#: ../../godmode/setup/gis_step_2.php:223
+msgid "Default zoom level"
+msgstr ""
+
+#: ../../godmode/setup/gis_step_2.php:226
+msgid "Basic configuration"
+msgstr ""
+
+#: ../../godmode/setup/gis_step_2.php:231
+msgid "Open Street Maps"
+msgstr ""
+
+#: ../../godmode/setup/gis_step_2.php:232
+msgid "Google Maps"
+msgstr ""
+
+#: ../../godmode/setup/gis_step_2.php:234
+msgid "WMS Server"
+msgstr ""
+
+#: ../../godmode/setup/gis_step_2.php:236
+msgid "Please select the connection type"
+msgstr ""
+
+#: ../../godmode/setup/gis_step_2.php:238
+msgid "Map connection type"
+msgstr ""
+
+#: ../../godmode/setup/gis_step_2.php:286
+msgid "Tile Server URL"
+msgstr ""
+
+#: ../../godmode/setup/gis_step_2.php:299
+msgid "Google Physical"
+msgstr ""
+
+#: ../../godmode/setup/gis_step_2.php:300
+msgid "Google Hybrid"
+msgstr ""
+
+#: ../../godmode/setup/gis_step_2.php:301
+msgid "Google Satelite"
+msgstr ""
+
+#: ../../godmode/setup/gis_step_2.php:303
+msgid "Google Map Type"
+msgstr ""
+
+#: ../../godmode/setup/gis_step_2.php:327
+msgid "Google Maps Key"
+msgstr ""
+
+#: ../../godmode/setup/gis_step_2.php:336
+msgid "Image URL"
+msgstr ""
+
+#: ../../godmode/setup/gis_step_2.php:343
+msgid "Corners of the area of the image"
+msgstr ""
+
+#: ../../godmode/setup/gis_step_2.php:371
+msgid "Image Size"
+msgstr ""
+
+#: ../../godmode/setup/gis_step_2.php:388
+msgid "WMS Server URL"
+msgstr ""
+
+#: ../../godmode/setup/gis_step_2.php:395
+#: ../../godmode/gis_maps/configure_gis_map.php:552
+msgid "Layers"
+msgstr ""
+
+#: ../../godmode/setup/gis_step_2.php:430
+msgid ""
+"Preview to select the center of the map and the default position of an agent "
+"without gis data"
+msgstr ""
+
+#: ../../godmode/setup/gis_step_2.php:431
+msgid "Load preview map"
+msgstr ""
+
+#: ../../godmode/setup/gis_step_2.php:440
+msgid "Map Center"
+msgstr ""
+
+#: ../../godmode/setup/gis_step_2.php:441
+msgid "Default position for agents without GIS data"
+msgstr ""
+
+#: ../../godmode/setup/gis_step_2.php:443
+msgid "Change in the map"
+msgstr ""
+
+#: ../../godmode/setup/gis_step_2.php:564
+#: ../../godmode/setup/gis_step_2.php:659
+msgid "Center"
+msgstr ""
+
+#: ../../godmode/setup/gis_step_2.php:624
+msgid "Refresh preview map"
+msgstr ""
+
+#: ../../godmode/setup/setup_visuals.php:79
+msgid "Paginated module view"
+msgstr ""
+
+#: ../../godmode/setup/setup_visuals.php:106
+msgid "Click to display lateral menus"
+msgstr ""
+
+#: ../../godmode/setup/setup_visuals.php:120
+msgid "Space between items in Service maps"
+msgstr ""
+
+#: ../../godmode/setup/setup_visuals.php:151
+msgid "Colors"
+msgstr ""
+
+#: ../../godmode/setup/setup_visuals.php:152
+msgid "Faces"
+msgstr ""
+
+#: ../../godmode/setup/setup_visuals.php:153
+msgid "Colors and text"
+msgstr ""
+
+#: ../../godmode/setup/setup_visuals.php:451
+msgid "Custom mobile console icon"
+msgstr ""
+
+#: ../../godmode/setup/setup_visuals.php:519
+msgid "Disable logo in graphs"
+msgstr ""
+
+#: ../../godmode/setup/setup_visuals.php:535
+msgid "Disable helps"
+msgstr ""
+
+#: ../../godmode/setup/setup_visuals.php:555
+msgid "Automatically hide submenu"
+msgstr ""
+
+#: ../../godmode/setup/setup_visuals.php:604
+msgid "Agent icon group"
+msgstr ""
+
+#: ../../godmode/setup/setup_visuals.php:622
+msgid "Graphs font size"
+msgstr ""
+
+#: ../../godmode/setup/setup_visuals.php:654
+#: ../../godmode/setup/setup_visuals.php:659
+msgid "Small:"
+msgstr ""
+
+#: ../../godmode/setup/setup_visuals.php:655
+#: ../../godmode/setup/setup_visuals.php:660
+msgid "Normal:"
+msgstr ""
+
+#: ../../godmode/setup/setup_visuals.php:678
+msgid "Show unit along with value in reports"
+msgstr ""
+
+#: ../../godmode/setup/setup_visuals.php:824
+msgid "Data precision"
+msgstr ""
+
+#: ../../godmode/setup/setup_visuals.php:842
+msgid "Data precision in graphs"
+msgstr ""
+
+#: ../../godmode/setup/setup_visuals.php:918
+msgid "Type of interface charts"
+msgstr ""
+
+#: ../../godmode/setup/setup_visuals.php:946
+msgid "Graph TIP view:"
+msgstr ""
+
+#: ../../godmode/setup/setup_visuals.php:1059
+msgid "Classic view"
+msgstr ""
+
+#: ../../godmode/setup/setup_visuals.php:1060
+msgid "View of favorites"
+msgstr ""
+
+#: ../../godmode/setup/setup_visuals.php:1061
+msgid "Type of view of visual consoles"
+msgstr ""
+
+#: ../../godmode/setup/setup_visuals.php:1065
+msgid "Number of favorite visual consoles to show in the menu"
+msgstr ""
+
+#: ../../godmode/setup/setup_visuals.php:1083
+msgid "Number of favorite services to show in the menu"
+msgstr ""
+
+#: ../../godmode/setup/setup_visuals.php:1150
+msgid ""
+"The dir of custom logos is in your www Console in 'images/custom_logo'. You "
+"can upload more files (ONLY JPEG AND PNG) in upload tool in console."
+msgstr ""
+
+#: ../../godmode/setup/setup_visuals.php:1287
+msgid "Custom values post process"
+msgstr ""
+
+#: ../../godmode/setup/setup_visuals.php:1308
+#: ../../godmode/setup/setup_visuals.php:1376
+msgid "Delete custom values"
+msgstr ""
+
+#: ../../godmode/setup/setup_visuals.php:1340
+msgid "Interval values"
+msgstr ""
+
+#: ../../godmode/setup/setup_visuals.php:1368
+msgid "Module units"
+msgstr ""
+
+#: ../../godmode/setup/setup_visuals.php:1484
+msgid "Behaviour configuration"
+msgstr ""
+
+#: ../../godmode/setup/setup_visuals.php:1489
+msgid "GIS configuration"
+msgstr ""
+
+#: ../../godmode/setup/setup_visuals.php:1494
+msgid "Style configuration"
+msgstr ""
+
+#: ../../godmode/setup/setup_visuals.php:1499
+msgid "Charts configuration"
+msgstr ""
+
+#: ../../godmode/setup/setup_visuals.php:1504
+msgid "Font and Text configuration"
+msgstr ""
+
+#: ../../godmode/setup/setup_visuals.php:1509
+msgid "Visual consoles configuration"
+msgstr ""
+
+#: ../../godmode/setup/setup_visuals.php:1514
+msgid "Reports configuration "
+msgstr ""
+
+#: ../../godmode/setup/setup_visuals.php:1519
+msgid "Services configuration"
+msgstr ""
+
+#: ../../godmode/setup/setup_visuals.php:1524
+msgid "Other configuration"
+msgstr ""
+
+#: ../../godmode/setup/setup_visuals.php:1801
+msgid "Mobile console logo preview"
+msgstr ""
+
+#: ../../godmode/setup/setup_visuals.php:1836
+msgid "Gis icons preview"
+msgstr ""
+
+#: ../../godmode/setup/setup_visuals.php:1902
+msgid "Status set preview"
+msgstr ""
+
+#: ../../godmode/setup/os.php:190
+msgid "List OS"
+msgstr ""
+
+#: ../../godmode/setup/os.php:202
+msgid "Builder OS"
+msgstr ""
+
+#: ../../godmode/setup/os.php:211 ../../godmode/setup/os.php:229
+#: ../../godmode/menu.php:369
+msgid "Edit OS"
+msgstr ""
+
+#: ../../godmode/setup/os.php:211
+msgid "List of OS"
+msgstr ""
+
+#: ../../godmode/setup/os.php:242
+msgid "Fail creating OS"
+msgstr ""
+
+#: ../../godmode/setup/os.php:250
+msgid "Error updating OS"
+msgstr ""
+
+#: ../../godmode/setup/os.php:254
+msgid "There are agents with this OS."
+msgstr ""
+
+#: ../../godmode/setup/os.php:258
+msgid "Success deleting"
+msgstr ""
+
+#: ../../godmode/setup/os.php:262
+msgid "Error deleting"
+msgstr ""
+
+#: ../../godmode/setup/news.php:29
+msgid "Site news management"
+msgstr ""
+
+#: ../../godmode/setup/news.php:152 ../../godmode/setup/links.php:92
+msgid "Name error"
+msgstr ""
+
+#: ../../godmode/setup/news.php:191
+msgid "Modal screen"
+msgstr ""
+
+#: ../../godmode/setup/news.php:194
+msgid "Expire"
+msgstr ""
+
+#: ../../godmode/setup/news.php:197 ../../godmode/setup/news.php:250
+msgid "Expiration"
+msgstr ""
+
+#: ../../godmode/setup/news.php:241
+msgid "There are no defined news"
+msgstr ""
+
+#: ../../godmode/setup/news.php:268
+msgid "Modal"
+msgstr ""
+
+#: ../../godmode/setup/news.php:270
+msgid "Board"
+msgstr ""
+
+#: ../../godmode/setup/news.php:281
+msgid "Expired"
+msgstr ""
+
+#: ../../godmode/setup/setup_auth.php:207
+msgid "Enable secondary LDAP"
+msgstr ""
+
+#: ../../godmode/setup/setup_auth.php:278
+msgid "Secondary Base DN"
+msgstr ""
+
+#: ../../godmode/setup/setup_auth.php:291
+msgid "Secondary Login attribute"
+msgstr ""
+
+#: ../../godmode/setup/setup_auth.php:368
+msgid "Force 2FA for all users is enabled"
+msgstr ""
+
+#: ../../godmode/setup/setup_auth.php:389
+msgid "Session timeout (mins)"
+msgstr ""
+
+#: ../../godmode/setup/setup_auth.php:432
+#, php-format
+msgid "Local %s"
+msgstr ""
+
+#: ../../godmode/setup/setup_auth.php:433
+msgid "ldap"
+msgstr ""
+
+#: ../../godmode/setup/license.php:51
+msgid "License management"
+msgstr ""
+
+#: ../../godmode/setup/license.php:99
+msgid "Error while connecting to licence server."
+msgstr ""
+
+#: ../../godmode/setup/license.php:100
+msgid "Invalid response while validating license."
+msgstr ""
+
+#: ../../godmode/setup/license.php:121
+msgid "Licence"
+msgstr ""
+
+#: ../../godmode/setup/license.php:136 ../../godmode/setup/license.php:139
+#: ../../godmode/setup/license.php:142 ../../godmode/setup/license.php:145
+msgid "agents"
+msgstr ""
+
+#: ../../godmode/setup/license.php:150
+msgid "NMS"
+msgstr ""
+
+#: ../../godmode/setup/license.php:167 ../../godmode/setup/license.php:182
+msgid "Request new license"
+msgstr ""
+
+#: ../../godmode/setup/license.php:186
+#, php-format
+msgid "To get your <b>%s Enterprise License</b>:"
+msgstr ""
+
+#: ../../godmode/setup/license.php:189
+#, php-format
+msgid "Go to %s"
+msgstr ""
+
+#: ../../godmode/setup/license.php:192
+msgid "Enter the <b>auth key</b> and the following <b>request key</b>:"
+msgstr ""
+
+#: ../../godmode/setup/license.php:198
+msgid "Enter your name (or a company name) and a contact email address."
+msgstr ""
+
+#: ../../godmode/setup/license.php:201
+msgid "Click on <b>Generate</b>."
+msgstr ""
+
+#: ../../godmode/setup/license.php:204
+msgid ""
+"Click <a href=\"javascript: close_code_license_dialog();\">here</a>, enter "
+"the generated license key and click on <b>Validate</b>."
+msgstr ""
+
+#: ../../godmode/setup/setup_general.php:145
+msgid "Enforce https Information"
+msgstr ""
+
+#: ../../godmode/setup/setup_general.php:146
+msgid "If SSL is not properly configured you will lose access to "
+msgstr ""
+
+#: ../../godmode/setup/setup_general.php:146
+#: ../../godmode/setup/setup_general.php:340
+msgid " Console"
+msgstr ""
+
+#: ../../godmode/setup/setup_general.php:160
+msgid "Use cert of SSL"
+msgstr ""
+
+#: ../../godmode/setup/setup_general.php:173
+msgid "Path of SSL Cert."
+msgstr ""
+
+#: ../../godmode/setup/setup_general.php:338
+msgid "Enforce public URL usage information"
+msgstr ""
+
+#: ../../godmode/setup/setup_general.php:340
+msgid "If public URL is not properly configured you will lose access to "
+msgstr ""
+
+#: ../../godmode/setup/setup_general.php:378
+msgid "Change remote config encoding"
+msgstr ""
+
+#: ../../godmode/setup/setup_general.php:407
+msgid "Full mode"
+msgstr ""
+
+#: ../../godmode/setup/setup_general.php:409
+msgid "Expert"
+msgstr ""
+
+#: ../../godmode/setup/setup_general.php:433
+msgid "Limit for bulk operations"
+msgstr ""
+
+#: ../../godmode/setup/setup_general.php:443
+msgid "Include agents manually disabled"
+msgstr ""
+
+#: ../../godmode/setup/setup_general.php:451
+msgid "Set alias as name by default in agent creation"
+msgstr ""
+
+#: ../../godmode/setup/setup_general.php:468
+#: ../../godmode/setup/setup_general.php:479
+msgid "Log location"
+msgstr ""
+
+#: ../../godmode/setup/setup_general.php:489
+msgid "Module custom ID readonly"
+msgstr ""
+
+#: ../../godmode/setup/setup_general.php:490
+msgid "Useful for integrations"
+msgstr ""
+
+#: ../../godmode/setup/setup_general.php:503
+msgid "General options"
+msgstr ""
+
+#: ../../godmode/setup/setup_general.php:522
+msgid ""
+"Please notice that some providers like Gmail or Office365 need to setup/"
+"enable manually external connections using SMTP and you need to use STARTTLS "
+"on port 587.\n"
+"\n"
+"    If you have manual settings in your pandora_server.conf, please note "
+"these settings will ignore this console setup."
+msgstr ""
+
+#: ../../godmode/setup/setup_general.php:528
+msgid "From address"
+msgstr ""
+
+#: ../../godmode/setup/setup_general.php:548
+msgid "SMTP Server"
+msgstr ""
+
+#: ../../godmode/setup/setup_general.php:558
+msgid "SMTP Port"
+msgstr ""
+
+#: ../../godmode/setup/setup_general.php:608
+msgid "Email test"
+msgstr ""
+
+#: ../../godmode/setup/setup_general.php:670
+msgid "Check mail configuration"
+msgstr ""
+
+#: ../../godmode/setup/gis.php:68
+msgid "Map connection name"
+msgstr ""
+
+#: ../../godmode/setup/gis.php:86
+msgid "Do you wan delete this connection?"
+msgstr ""
+
+#: ../../godmode/setup/performance.php:181
+msgid "Pandora_db running in active database."
+msgstr ""
+
+#: ../../godmode/setup/performance.php:182
+#: ../../godmode/setup/performance.php:238
+msgid "Executed:"
+msgstr ""
+
+#: ../../godmode/setup/performance.php:237
+msgid "Pandora_db running in historical database."
+msgstr ""
+
+#: ../../godmode/setup/performance.php:245
+msgid "not executed"
+msgstr ""
+
+#: ../../godmode/setup/performance.php:341
+msgid "Max. days before delete autodisabled agents"
+msgstr ""
+
+#: ../../godmode/setup/performance.php:508
+msgid "Item limit for realtime reports"
+msgstr ""
+
+#: ../../godmode/setup/performance.php:531
+msgid "Last day"
+msgstr ""
+
+#: ../../godmode/setup/performance.php:533
+msgid "10 days"
+msgstr ""
+
+#: ../../godmode/setup/performance.php:535
+msgid "2 weeks"
+msgstr ""
+
+#: ../../godmode/setup/performance.php:582
+msgid "Big Operation Step to purge old data"
+msgstr ""
+
+#: ../../godmode/setup/performance.php:632
+msgid "SNMP walk binary"
+msgstr ""
+
+#: ../../godmode/setup/performance.php:643
+msgid ""
+"SNMP bulk walk is not able to request V1 SNMP, this option will be used "
+"instead (by default snmpwalk, slower)."
+msgstr ""
+
+#: ../../godmode/setup/performance.php:646
+msgid "SNMP walk binary (fallback)"
+msgstr ""
+
+#: ../../godmode/setup/performance.php:689
+msgid "Database maintenance options"
+msgstr ""
+
+#: ../../godmode/setup/performance.php:695
+msgid "Historical database maintenance options"
+msgstr ""
+
+#: ../../godmode/setup/setup_ehorus.php:93
+msgid "API Hostname"
+msgstr ""
+
+#: ../../godmode/setup/setup_ehorus.php:99
+msgid "API Port"
+msgstr ""
+
+#: ../../godmode/setup/setup_ehorus.php:139
+msgid "Remote Management System"
+msgstr ""
+
+#: ../../godmode/setup/setup_ehorus.php:147
+msgid "Custom field eHorusID created"
+msgstr ""
+
+#: ../../godmode/setup/setup_ehorus.php:147
+msgid "Error creating custom field"
+msgstr ""
+
+#: ../../godmode/setup/setup_ehorus.php:151
+msgid "eHorus has his own agent identifiers"
+msgstr ""
+
+#: ../../godmode/setup/setup_ehorus.php:152
+msgid "To store them, it will be necessary to use an agent custom field"
+msgstr ""
+
+#: ../../godmode/setup/setup_ehorus.php:153
+msgid ""
+"Possibly the eHorus id will have to be filled in by hand for every agent"
+msgstr ""
+
+#: ../../godmode/setup/setup_ehorus.php:158
+msgid "The custom field does not exists already"
+msgstr ""
+
+#: ../../godmode/setup/setup_ehorus.php:172
+msgid "eHorus API"
+msgstr ""
+
+#: ../../godmode/setup/setup_websocket_engine.php:38
+msgid "WebSocket settings"
+msgstr ""
+
+#: ../../godmode/setup/setup_websocket_engine.php:47
+msgid "Bind address"
+msgstr ""
+
+#: ../../godmode/setup/setup_websocket_engine.php:57
+msgid "Bind port"
+msgstr ""
+
+#: ../../godmode/setup/links.php:28
+msgid "Link management"
+msgstr ""
+
+#: ../../godmode/servers/plugin.php:73
+msgid "Network Components"
+msgstr ""
+
+#: ../../godmode/servers/plugin.php:290 ../../godmode/servers/plugin.php:617
+#: ../../godmode/servers/plugin_registration.php:59
+msgid "To manage plugin you must activate centralized management"
+msgstr ""
+
+#: ../../godmode/servers/plugin.php:303
+msgid "Plugin update"
+msgstr ""
+
+#: ../../godmode/servers/plugin.php:314 ../../godmode/servers/plugin.php:636
+msgid ""
+"This console is not manager of this environment,\n"
+"        \t\tplease manage this feature from centralized manager console "
+"(Metaconsole)."
+msgstr ""
+
+#: ../../godmode/servers/plugin.php:345
+msgid "Plugin type"
+msgstr ""
+
+#: ../../godmode/servers/plugin.php:346 ../../godmode/servers/plugin.php:845
+#: ../../godmode/servers/modificar_server.php:40
+msgid "Standard"
+msgstr ""
+
+#: ../../godmode/servers/plugin.php:347 ../../godmode/servers/plugin.php:847
+msgid "Nagios"
+msgstr ""
+
+#: ../../godmode/servers/plugin.php:352
+msgid "Max. timeout"
+msgstr ""
+
+#: ../../godmode/servers/plugin.php:352
+msgid ""
+"This value only will be applied if is minor than the server general "
+"configuration plugin timeout"
+msgstr ""
+
+#: ../../godmode/servers/plugin.php:352
+msgid "If you set a 0 seconds timeout, the server plugin timeout will be used"
+msgstr ""
+
+#: ../../godmode/servers/plugin.php:401
+msgid "Plugin command"
+msgstr ""
+
+#: ../../godmode/servers/plugin.php:401
+msgid ""
+"Specify interpreter and plugin path. The server needs permissions to run it."
+msgstr ""
+
+#: ../../godmode/servers/plugin.php:413
+msgid "Plug-in parameters"
+msgstr ""
+
+#: ../../godmode/servers/plugin.php:422 ../../godmode/alerts/alert_view.php:527
+#: ../../godmode/alerts/alert_view.php:654
+#: ../../godmode/alerts/configure_alert_action.php:310
+msgid "Command preview"
+msgstr ""
+
+#: ../../godmode/servers/plugin.php:581 ../../godmode/servers/plugin.php:586
+msgid "Parameters macros"
+msgstr ""
+
+#: ../../godmode/servers/plugin.php:623
+#, php-format
+msgid "Plug-ins registered on %s"
+msgstr ""
+
+#: ../../godmode/servers/plugin.php:645
+msgid "You need to create your own plugins with Windows compatibility"
+msgstr ""
+
+#: ../../godmode/servers/plugin.php:711
+msgid "Problem updating plugin"
+msgstr ""
+
+#: ../../godmode/servers/plugin.php:713
+msgid "Plugin updated successfully"
+msgstr ""
+
+#: ../../godmode/servers/plugin.php:771
+msgid "Problem creating plugin"
+msgstr ""
+
+#: ../../godmode/servers/plugin.php:773
+msgid "Plugin created successfully"
+msgstr ""
+
+#: ../../godmode/servers/plugin.php:785
+msgid "Problem deleting plugin"
+msgstr ""
+
+#: ../../godmode/servers/plugin.php:787 ../../godmode/servers/plugin.php:799
+msgid "Plugin deleted successfully"
+msgstr ""
+
+#: ../../godmode/servers/plugin.php:884
+msgid "All the modules that are using this plugin will be deleted"
+msgstr ""
+
+#: ../../godmode/servers/plugin.php:901
+msgid "There are no plugins in the system"
+msgstr ""
+
+#: ../../godmode/servers/plugin.php:915
+#, php-format
+msgid "List of modules and components created by \"%s\" "
+msgstr ""
+
+#: ../../godmode/servers/plugin.php:1021 ../../godmode/servers/plugin.php:1037
+msgid "Some modules or components are using the plugin"
+msgstr ""
+
+#: ../../godmode/servers/plugin.php:1022
+msgid ""
+"The modules or components should be updated manually or using the bulk "
+"operations for plugins after this change"
+msgstr ""
+
+#: ../../godmode/servers/plugin.php:1024
+msgid "Are you sure you want to perform this action?"
+msgstr ""
+
+#: ../../godmode/servers/plugin.php:1038
+msgid "Are you sure you want to unlock this item?"
+msgstr ""
+
+#: ../../godmode/servers/plugin.php:1058
+msgid ""
+"The plugin command cannot be updated because some modules or components are "
+"using the plugin."
+msgstr ""
+
+#: ../../godmode/servers/plugin.php:1064
+msgid ""
+"The plugin macros cannot be updated because some modules or components are "
+"using the plugin"
+msgstr ""
+
+#: ../../godmode/servers/modificar_server.php:34
+msgid "Update Server"
+msgstr ""
+
+#: ../../godmode/servers/modificar_server.php:77
+msgid "Exec Server"
+msgstr ""
+
+#: ../../godmode/servers/modificar_server.php:85
+msgid "Leave blank to use SSH default port (22)"
+msgstr ""
+
+#: ../../godmode/servers/modificar_server.php:90
+msgid "Check Exec Server"
+msgstr ""
+
+#: ../../godmode/servers/modificar_server.php:106
+msgid "Credential boxes"
+msgstr ""
+
+#: ../../godmode/servers/modificar_server.php:130
+msgid "Standard editor"
+msgstr ""
+
+#: ../../godmode/servers/modificar_server.php:134
+msgid "Advanced editor"
+msgstr ""
+
+#: ../../godmode/servers/modificar_server.php:141
+msgid "Remote Configuration"
+msgstr ""
+
+#: ../../godmode/servers/modificar_server.php:150
+#, php-format
+msgid "%s servers"
+msgstr ""
+
+#: ../../godmode/servers/modificar_server.php:159
+#: ../../godmode/servers/modificar_server.php:170
+msgid "Successfully action"
+msgstr ""
+
+#: ../../godmode/servers/modificar_server.php:201
+msgid "Server updated successfully"
+msgstr ""
+
+#: ../../godmode/servers/modificar_server.php:203
+msgid "There was a problem updating the server"
+msgstr ""
+
+#: ../../godmode/servers/modificar_server.php:222
+#: ../../godmode/agentes/configurar_agente.php:867
+msgid "Conf file deleted successfully"
+msgstr ""
+
+#: ../../godmode/servers/modificar_server.php:223
+#: ../../godmode/agentes/configurar_agente.php:868
+msgid "Could not delete conf file"
+msgstr ""
+
+#: ../../godmode/servers/plugin_registration.php:65
+msgid "PLUGIN REGISTRATION"
+msgstr ""
+
+#: ../../godmode/servers/plugin_registration.php:76
+#, php-format
+msgid ""
+"This console is not manager of this environment, please manage this feature "
+"from feature from %s."
+msgstr ""
+
+#: ../../godmode/servers/plugin_registration.php:95
+msgid "Plugin Registration"
+msgstr ""
+
+#: ../../godmode/servers/plugin_registration.php:103
+msgid "You can get more plugins in our"
+msgstr ""
+
+#: ../../godmode/servers/plugin_registration.php:105
+msgid "Public Resource Library"
+msgstr ""
+
+#: ../../godmode/servers/plugin_registration.php:133
+msgid "Failed to create temporary directory"
+msgstr ""
+
+#: ../../godmode/servers/plugin_registration.php:152
+msgid "Cannot load INI file"
+msgstr ""
+
+#: ../../godmode/servers/plugin_registration.php:177
+msgid "Plugin exec not found. Aborting!"
+msgstr ""
+
+#: ../../godmode/servers/plugin_registration.php:188
+msgid "Plugin already registered. Aborting!"
+msgstr ""
+
+#: ../../godmode/servers/plugin_registration.php:355
+msgid "Plug-in Remote Registered unsuccessfull"
+msgstr ""
+
+#: ../../godmode/servers/plugin_registration.php:358
+msgid "Please check the syntax of file \"plugin_definition.ini\""
+msgstr ""
+
+#: ../../godmode/servers/plugin_registration.php:498
+msgid "Module plugin registered"
+msgstr ""
+
+#: ../../godmode/servers/plugin_registration.php:503
+msgid "Registered successfully"
+msgstr ""
+
+#: ../../godmode/servers/plugin_registration.php:516
+msgid "Unable to uncompress uploaded file"
+msgstr ""
+
+#: ../../godmode/servers/plugin_registration.php:534
+#, php-format
+msgid "Cannot move uploaded file to %s."
+msgstr ""
+
+#: ../../godmode/servers/servers.build_table.php:118
+msgid "Server has crashed."
+msgstr ""
+
+#: ../../godmode/servers/servers.build_table.php:126
+msgid "Server is stopped."
+msgstr ""
+
+#: ../../godmode/servers/servers.build_table.php:138
+msgid "Exec server enabled"
+msgstr ""
+
+#: ../../godmode/servers/servers.build_table.php:196
+msgid "Manage Discovery tasks"
+msgstr ""
+
+#: ../../godmode/servers/servers.build_table.php:211
+msgid "Reset module status and fired alert counts"
+msgstr ""
+
+#: ../../godmode/servers/servers.build_table.php:222
+msgid "Claim back SNMP modules"
+msgstr ""
+
+#: ../../godmode/servers/discovery.php:182
+msgid "You must create a task first"
+msgstr ""
+
+#: ../../godmode/um_client/index.php:96
+#, php-format
+msgid ""
+"You cannot use update manager %s. You are exceding monitoring limits by %s "
+"elements. Please update your license or disable enterprise section by moving "
+"enterprise directory to another location and try again."
+msgstr ""
+
+#: ../../godmode/um_client/index.php:107
+#, php-format
+msgid ""
+"You cannot use update manager %s. This license has expired %d days ago. "
+"Please update your license or disable enterprise section by moving "
+"enterprise directory to another location and try again."
+msgstr ""
+
+#: ../../godmode/um_client/index.php:120
+#, php-format
+msgid ""
+"You cannot use update manager %s. This license is a trial license to test "
+"all %s features. Please update your license to unlock all %s features."
+msgstr ""
+
+#: ../../godmode/um_client/index.php:215
+#, php-format
+msgid "Master server version %s does not match console version %s."
+msgstr ""
+
+#: ../../godmode/um_client/index.php:227
+#, php-format
+msgid ""
+"'%s' recommended value is %s or greater. Please, change it on your PHP "
+"configuration file (php.ini) or contact with administrator"
+msgstr ""
+
+#: ../../godmode/um_client/index.php:316
+msgid "Update manager online requires registration."
+msgstr ""
+
+#: ../../godmode/um_client/index.php:321
+msgid ""
+"Applying offline patches may make your console unusable, we recommend to "
+"completely backup your files before applying any patch."
+msgstr ""
+
+#: ../../godmode/update_manager/update_manager.php:49
+msgid "Journal"
+msgstr ""
+
+#: ../../godmode/update_manager/update_manager.php:56
+msgid "Offline update manager"
+msgstr ""
+
+#: ../../godmode/update_manager/update_manager.php:63
+msgid "Online update manager"
+msgstr ""
+
+#: ../../godmode/update_manager/update_manager.php:68
+msgid "Update manager » Journal"
+msgstr ""
+
+#: ../../godmode/update_manager/update_manager.php:72
+msgid "Update manager » Setup"
+msgstr ""
+
+#: ../../godmode/update_manager/update_manager.php:76
+msgid "Update manager » Offline"
+msgstr ""
+
+#: ../../godmode/update_manager/update_manager.php:81
+msgid "Update manager » Online"
+msgstr ""
+
+#: ../../godmode/update_manager/update_manager.setup.php:271
+msgid "URL update manager:"
+msgstr ""
+
+#: ../../godmode/update_manager/update_manager.setup.php:275
+msgid "URL update manager"
+msgstr ""
+
+#: ../../godmode/update_manager/update_manager.setup.php:281
+msgid "Use secured update manager:"
+msgstr ""
+
+#: ../../godmode/update_manager/update_manager.setup.php:290
+msgid "Proxy server:"
+msgstr ""
+
+#: ../../godmode/update_manager/update_manager.setup.php:294
+msgid "Proxy server"
+msgstr ""
+
+#: ../../godmode/update_manager/update_manager.setup.php:300
+msgid "Proxy port:"
+msgstr ""
+
+#: ../../godmode/update_manager/update_manager.setup.php:304
+msgid "Proxy port"
+msgstr ""
+
+#: ../../godmode/update_manager/update_manager.setup.php:310
+msgid "Proxy user:"
+msgstr ""
+
+#: ../../godmode/update_manager/update_manager.setup.php:314
+msgid "Proxy user"
+msgstr ""
+
+#: ../../godmode/update_manager/update_manager.setup.php:320
+msgid "Proxy password:"
+msgstr ""
+
+#: ../../godmode/update_manager/update_manager.setup.php:324
+msgid "Proxy password"
+msgstr ""
+
+#: ../../godmode/update_manager/update_manager.setup.php:330
+msgid "Allow no-consecutive patches:"
+msgstr ""
+
+#: ../../godmode/update_manager/update_manager.setup.php:339
+msgid "Limit to LTS updates:"
+msgstr ""
+
+#: ../../godmode/update_manager/update_manager.setup.php:349
+msgid "Registration ID:"
+msgstr ""
+
+#: ../../godmode/update_manager/update_manager.setup.php:353
+msgid "Cancel registration:"
+msgstr ""
+
+#: ../../godmode/update_manager/update_manager.setup.php:365
+msgid "Unregister"
+msgstr ""
+
+#: ../../godmode/update_manager/update_manager.setup.php:370
+msgid "Pandora FMS community reminder"
+msgstr ""
+
+#: ../../godmode/update_manager/update_manager.setup.php:370
+msgid ""
+"Every 8 days, a message is displayed to admin users to remember to register "
+"this Pandora instance"
+msgstr ""
+
+#: ../../godmode/update_manager/update_manager.history.php:42
+msgid "Origin"
+msgstr ""
+
+#: ../../godmode/modules/module_list.php:29
+msgid "Defined modules"
+msgstr ""
+
+#: ../../godmode/modules/module_list.php:51
+msgid "Problem modifying module"
+msgstr ""
+
+#: ../../godmode/modules/module_list.php:53
+msgid "Module updated successfully"
+msgstr ""
+
+#: ../../godmode/modules/manage_network_components_form.php:355
+msgid "Update Network Component"
+msgstr ""
+
+#: ../../godmode/modules/manage_network_components_form.php:357
+msgid "Create Network Component"
+msgstr ""
+
+#: ../../godmode/modules/manage_network_components.php:290
+msgid "Remote component management"
+msgstr ""
+
+#: ../../godmode/modules/manage_network_components.php:313
+#, php-format
+msgid ""
+"This node is configured with centralized mode. All remote components are "
+"read only. Go to %s to manage them."
+msgstr ""
+
+#: ../../godmode/modules/manage_network_components.php:424
+msgid "Could not be created because the component exists"
+msgstr ""
+
+#: ../../godmode/modules/manage_network_components.php:660
+msgid "Search by name, description, tcp send or tcp rcv, list matches."
+msgstr ""
+
+#: ../../godmode/modules/manage_network_components.php:753
+msgid "Max/Min"
+msgstr ""
+
+#: ../../godmode/modules/manage_network_components.php:837
+msgid "Wizard module"
+msgstr ""
+
+#: ../../godmode/modules/manage_network_components.php:910
+msgid "There are no defined network components"
+msgstr ""
+
+#: ../../godmode/modules/manage_network_components.php:921
+msgid "Create a new network component"
+msgstr ""
+
+#: ../../godmode/modules/manage_network_components.php:922
+msgid "Create a new plugin component"
+msgstr ""
+
+#: ../../godmode/modules/manage_network_components.php:923
+msgid "Create a new WMI component"
+msgstr ""
+
+#: ../../godmode/modules/manage_network_components.php:924
+msgid "Create a new wizard component"
+msgstr ""
+
+#: ../../godmode/modules/manage_network_templates.php:84
+msgid "Error deleting template"
+msgstr ""
+
+#: ../../godmode/modules/manage_network_templates.php:124
+msgid "This template does not exist"
+msgstr ""
+
+#: ../../godmode/modules/manage_network_templates.php:304
+msgid "There are no defined network profiles"
+msgstr ""
+
+#: ../../godmode/modules/manage_network_templates_form.php:59
+msgid "Successfully deleted module from profile"
+msgstr ""
+
+#: ../../godmode/modules/manage_network_templates_form.php:60
+msgid "Error deleting module from profile"
+msgstr ""
+
+#: ../../godmode/modules/manage_network_templates_form.php:79
+msgid "Successfully added module to profile"
+msgstr ""
+
+#: ../../godmode/modules/manage_network_templates_form.php:80
+msgid "Error adding module to profile"
+msgstr ""
+
+#: ../../godmode/modules/manage_network_templates_form.php:113
+msgid "Successfully updated network profile"
+msgstr ""
+
+#: ../../godmode/modules/manage_network_templates_form.php:114
+msgid "Error updating network profile"
+msgstr ""
+
+#: ../../godmode/modules/manage_network_templates_form.php:138
+msgid "Successfully added network profile"
+msgstr ""
+
+#: ../../godmode/modules/manage_network_templates_form.php:139
+msgid "Error adding network profile"
+msgstr ""
+
+#: ../../godmode/modules/manage_network_templates_form.php:145
+msgid "Cannot create a template without name"
+msgstr ""
+
+#: ../../godmode/modules/manage_network_templates_form.php:219
+msgid "No modules for this profile"
+msgstr ""
+
+#: ../../godmode/modules/manage_network_components_form_wizard.php:92
+msgid "Add a macro oid"
+msgstr ""
+
+#: ../../godmode/modules/manage_network_components_form_wizard.php:110
+msgid "Remove last macro oid"
+msgstr ""
+
+#: ../../godmode/modules/manage_network_components_form_wizard.php:134
+msgid "Numeric"
+msgstr ""
+
+#: ../../godmode/modules/manage_network_components_form_wizard.php:136
+msgid "Boolean"
+msgstr ""
+
+#: ../../godmode/modules/manage_network_components_form_wizard.php:137
+msgid "Alphanumeric"
+msgstr ""
+
+#: ../../godmode/modules/manage_network_components_form_wizard.php:257
+msgid "Add by default"
+msgstr ""
+
+#: ../../godmode/modules/manage_network_components_form_wizard.php:285
+msgid "Module protocol"
+msgstr ""
+
+#: ../../godmode/modules/manage_network_components_form_wizard.php:301
+msgid "Protocol"
+msgstr ""
+
+#: ../../godmode/modules/manage_network_components_form_wizard.php:314
+#: ../../godmode/modules/manage_network_components_form_network.php:191
+msgid "Name OID"
+msgstr ""
+
+#: ../../godmode/modules/manage_network_components_form_wizard.php:317
+msgid "Manufacturer ID"
+msgstr ""
+
+#: ../../godmode/modules/manage_network_components_form_wizard.php:349
+msgid "Component Group"
+msgstr ""
+
+#: ../../godmode/modules/manage_network_components_form_wizard.php:367
+msgid "Module unit"
+msgstr ""
+
+#: ../../godmode/modules/manage_network_components_form_wizard.php:457
+msgid "Scan Type"
+msgstr ""
+
+#: ../../godmode/modules/manage_network_components_form_wizard.php:471
+#: ../../godmode/agentes/planned_downtime.list.php:321
+msgid "Execution type"
+msgstr ""
+
+#: ../../godmode/modules/manage_network_components_form_wizard.php:491
+msgid "Value OID"
+msgstr ""
+
+#: ../../godmode/modules/manage_network_components_form_wizard.php:508
+msgid "Macros OID"
+msgstr ""
+
+#: ../../godmode/modules/manage_network_components_form_wizard.php:516
+#: ../../godmode/modules/manage_network_components_form_wizard.php:701
+msgid "Value operation"
+msgstr ""
+
+#: ../../godmode/modules/manage_network_components_form_wizard.php:533
+#: ../../godmode/modules/manage_network_components_form_wizard.php:718
+msgid "Satellite execution"
+msgstr ""
+
+#: ../../godmode/modules/manage_network_components_form_wizard.php:550
+#: ../../godmode/modules/manage_network_components_form_wizard.php:735
+msgid "Server plugin"
+msgstr ""
+
+#: ../../godmode/modules/manage_network_components_form_wizard.php:588
+msgid "WMI class"
+msgstr ""
+
+#: ../../godmode/modules/manage_network_components_form_wizard.php:605
+msgid "Query key field"
+msgstr ""
+
+#: ../../godmode/modules/manage_network_components_form_wizard.php:622
+msgid "Query extra fields"
+msgstr ""
+
+#: ../../godmode/modules/manage_network_components_form_wizard.php:630
+msgid "Query filters"
+msgstr ""
+
+#: ../../godmode/modules/manage_network_components_form_wizard.php:673
+msgid "Field value"
+msgstr ""
+
+#: ../../godmode/modules/manage_nc_groups.php:40
+msgid "Component group management"
+msgstr ""
+
+#: ../../godmode/modules/manage_nc_groups.php:293
+#, php-format
+msgid ""
+"This node is configured with centralized mode. Component groups are read "
+"only. Go to %s to manage it."
+msgstr ""
+
+#: ../../godmode/modules/manage_nc_groups.php:311
+msgid "There are no defined component groups"
+msgstr ""
+
+#: ../../godmode/modules/manage_network_components_form_common.php:712
+#: ../../godmode/agentes/module_manager_editor_common.php:2000
+msgid "Please introduce a positive percentage value"
+msgstr ""
+
+#: ../../godmode/modules/manage_network_components_form_wmi.php:41
+#: ../../godmode/agentes/module_manager_editor_wmi.php:87
+msgid "Namespace"
+msgstr ""
+
+#: ../../godmode/modules/manage_network_components_form_network.php:72
+msgid "SNMP Enterprise String"
+msgstr ""
+
+#: ../../godmode/modules/manage_nc_groups_form.php:54
+msgid "Update Group Component"
+msgstr ""
+
+#: ../../godmode/modules/manage_nc_groups_form.php:56
+msgid "Create Group Component"
+msgstr ""
+
+#: ../../godmode/category/category.php:63
+#: ../../godmode/category/category.php:77
+#: ../../godmode/category/edit_category.php:47
+#: ../../godmode/category/edit_category.php:61
+msgid "List categories"
+msgstr ""
+
+#: ../../godmode/category/category.php:89
+#: ../../godmode/category/category.php:91
+#: ../../godmode/category/edit_category.php:73
+#: ../../godmode/category/edit_category.php:75
+msgid "Categories configuration"
+msgstr ""
+
+#: ../../godmode/category/category.php:108
+#, php-format
+msgid ""
+"This node is configured with centralized mode. All categories information is "
+"read only. Go to %s to manage it."
+msgstr ""
+
+#: ../../godmode/category/category.php:123
+msgid "Error deleting category"
+msgstr ""
+
+#: ../../godmode/category/category.php:129
+msgid "Successfully deleted category"
+msgstr ""
+
+#: ../../godmode/category/category.php:168
+msgid "Category name"
+msgstr ""
+
+#: ../../godmode/category/category.php:226
+msgid "No categories found"
+msgstr ""
+
+#: ../../godmode/category/category.php:239
+#: ../../godmode/category/edit_category.php:171
+msgid "Create category"
+msgstr ""
+
+#: ../../godmode/category/edit_category.php:73
+msgid "Editor"
+msgstr ""
+
+#: ../../godmode/category/edit_category.php:95
+msgid "Error updating category"
+msgstr ""
+
+#: ../../godmode/category/edit_category.php:101
+msgid "Successfully updated category"
+msgstr ""
+
+#: ../../godmode/category/edit_category.php:123
+msgid "Error creating category"
+msgstr ""
+
+#: ../../godmode/category/edit_category.php:131
+msgid "Successfully created category"
+msgstr ""
+
+#: ../../godmode/category/edit_category.php:163
+msgid "Update category"
+msgstr ""
+
+#: ../../godmode/gis_maps/configure_gis_map.php:98
+msgid "View GIS"
+msgstr ""
+
+#: ../../godmode/gis_maps/configure_gis_map.php:106
+msgid "GIS Maps builder"
+msgstr ""
+
+#: ../../godmode/gis_maps/configure_gis_map.php:196
+msgid "Map successfully created"
+msgstr ""
+
+#: ../../godmode/gis_maps/configure_gis_map.php:197
+msgid "Map could not be created"
+msgstr ""
+
+#: ../../godmode/gis_maps/configure_gis_map.php:299
+msgid "Map successfully update"
+msgstr ""
+
+#: ../../godmode/gis_maps/configure_gis_map.php:300
+msgid "Map could not be updated"
+msgstr ""
+
+#: ../../godmode/gis_maps/configure_gis_map.php:353
+msgid "Do you want to use the default data from the connection?"
+msgstr ""
+
+#: ../../godmode/gis_maps/configure_gis_map.php:387
+msgid "The connection"
+msgstr ""
+
+#: ../../godmode/gis_maps/configure_gis_map.php:387
+msgid "just added previously."
+msgstr ""
+
+#: ../../godmode/gis_maps/configure_gis_map.php:455
+msgid "Map Name"
+msgstr ""
+
+#: ../../godmode/gis_maps/configure_gis_map.php:474
+msgid "Add Map connection"
+msgstr ""
+
+#: ../../godmode/gis_maps/configure_gis_map.php:523
+msgid "Default zoom"
+msgstr ""
+
+#: ../../godmode/gis_maps/configure_gis_map.php:530
+msgid "Center Latitude"
+msgstr ""
+
+#: ../../godmode/gis_maps/configure_gis_map.php:533
+msgid "Center Longitude"
+msgstr ""
+
+#: ../../godmode/gis_maps/configure_gis_map.php:536
+msgid "Center Altitude"
+msgstr ""
+
+#: ../../godmode/gis_maps/configure_gis_map.php:539
+msgid "Default Latitude"
+msgstr ""
+
+#: ../../godmode/gis_maps/configure_gis_map.php:542
+msgid "Default Longitude"
+msgstr ""
+
+#: ../../godmode/gis_maps/configure_gis_map.php:545
+msgid "Default Altitude"
+msgstr ""
+
+#: ../../godmode/gis_maps/configure_gis_map.php:561
+msgid "List of layers"
+msgstr ""
+
+#: ../../godmode/gis_maps/configure_gis_map.php:562
+msgid "New layer"
+msgstr ""
+
+#: ../../godmode/gis_maps/configure_gis_map.php:568
+msgid "Layer name"
+msgstr ""
+
+#: ../../godmode/gis_maps/configure_gis_map.php:570
+msgid "Visible"
+msgstr ""
+
+#: ../../godmode/gis_maps/configure_gis_map.php:574
+msgid "Show agents from group"
+msgstr ""
+
+#: ../../godmode/gis_maps/configure_gis_map.php:586
+msgid "Add agent"
+msgstr ""
+
+#: ../../godmode/gis_maps/configure_gis_map.php:608
+msgid "List of Agents to be shown in the layer"
+msgstr ""
+
+#: ../../godmode/gis_maps/configure_gis_map.php:639
+msgid "Use the data of this agent"
+msgstr ""
+
+#: ../../godmode/gis_maps/configure_gis_map.php:647
+msgid "List of groups to be shown in the layer"
+msgstr ""
+
+#: ../../godmode/gis_maps/configure_gis_map.php:654
+msgid "Save Layer"
+msgstr ""
+
+#: ../../godmode/gis_maps/configure_gis_map.php:670
+#: ../../godmode/gis_maps/configure_gis_map.php:677
+msgid "Save map"
+msgstr ""
+
+#: ../../godmode/gis_maps/configure_gis_map.php:672
+msgid "Update map"
+msgstr ""
+
+#: ../../godmode/gis_maps/configure_gis_map.php:1060
+msgid "Using data from"
+msgstr ""
+
+#: ../../godmode/gis_maps/configure_gis_map.php:1218
+msgid "Empty layer names are not supported"
+msgstr ""
+
+#: ../../godmode/extensions.php:28
+msgid "Defined extensions"
+msgstr ""
+
+#: ../../godmode/extensions.php:33
+msgid "There are no extensions defined"
+msgstr ""
+
+#: ../../godmode/extensions.php:141
+msgid "Godmode Function"
+msgstr ""
+
+#: ../../godmode/extensions.php:142
+msgid "Godmode Menu"
+msgstr ""
+
+#: ../../godmode/extensions.php:143
+msgid "Operation Menu"
+msgstr ""
+
+#: ../../godmode/extensions.php:144
+msgid "Operation Function"
+msgstr ""
+
+#: ../../godmode/extensions.php:145
+msgid "Login Function"
+msgstr ""
+
+#: ../../godmode/extensions.php:146
+msgid "Agent operation tab"
+msgstr ""
+
+#: ../../godmode/extensions.php:147
+msgid "Agent godmode tab"
+msgstr ""
+
+#: ../../godmode/reporting/reporting_builder.main.php:146
+msgid "Only the group can view the report"
+msgstr ""
+
+#: ../../godmode/reporting/reporting_builder.main.php:147
+msgid "The next group can edit the report"
+msgstr ""
+
+#: ../../godmode/reporting/reporting_builder.main.php:148
+msgid "Only the user and admin user can edit the report"
+msgstr ""
+
+#: ../../godmode/reporting/reporting_builder.main.php:150
+msgid "Write Access"
+msgstr ""
+
+#: ../../godmode/reporting/reporting_builder.main.php:152
+msgid ""
+"For example, you want a report that the people of \"All\" groups can see but "
+"you want to edit only for you or your group."
+msgstr ""
+
+#: ../../godmode/reporting/reporting_builder.main.php:193
+msgid "Non interactive report"
+msgstr ""
+
+#: ../../godmode/reporting/map_builder.php:318
+#: ../../godmode/reporting/map_builder.php:326
+msgid "Not copied. Error copying data"
+msgstr ""
+
+#: ../../godmode/reporting/map_builder.php:368
+#: ../../godmode/reporting/visual_console_favorite.php:185
+msgid "Group Recursion"
+msgstr ""
+
+#: ../../godmode/reporting/map_builder.php:384
+msgid "Map name"
+msgstr ""
+
+#: ../../godmode/reporting/map_builder.php:386
+msgid "Items"
+msgstr ""
+
+#: ../../godmode/reporting/visual_console_builder.php:211
+msgid "This file isn't image"
+msgstr ""
+
+#: ../../godmode/reporting/visual_console_builder.php:214
+msgid "This file isn't image."
+msgstr ""
+
+#: ../../godmode/reporting/visual_console_builder.php:220
+#: ../../godmode/reporting/visual_console_builder.php:223
+msgid "File already are exists."
+msgstr ""
+
+#: ../../godmode/reporting/visual_console_builder.php:231
+#: ../../godmode/reporting/visual_console_builder.php:234
+msgid "The file have not image extension."
+msgstr ""
+
+#: ../../godmode/reporting/visual_console_builder.php:246
+#: ../../godmode/reporting/visual_console_builder.php:249
+#: ../../godmode/reporting/visual_console_builder.php:259
+#: ../../godmode/reporting/visual_console_builder.php:265
+msgid "Problems with move file to target."
+msgstr ""
+
+#: ../../godmode/reporting/visual_console_builder.php:302
+msgid "Successfully update."
+msgstr ""
+
+#: ../../godmode/reporting/visual_console_builder.php:321
+msgid "Could not be update."
+msgstr ""
+
+#: ../../godmode/reporting/visual_console_builder.php:341
+msgid "Successfully created."
+msgstr ""
+
+#: ../../godmode/reporting/visual_console_builder.php:360
+msgid "Could not be created."
+msgstr ""
+
+#: ../../godmode/reporting/visual_console_builder.php:408
+msgid "Successfully multiple delete."
+msgstr ""
+
+#: ../../godmode/reporting/visual_console_builder.php:409
+msgid "Unsuccessful multiple delete."
+msgstr ""
+
+#: ../../godmode/reporting/visual_console_builder.php:529
+msgid "Successfully delete."
+msgstr ""
+
+#: ../../godmode/reporting/graphs.php:106
+msgid "Graphs containers"
+msgstr ""
+
+#: ../../godmode/reporting/graphs.php:120
+msgid "List of custom graphs"
+msgstr ""
+
+#: ../../godmode/reporting/graphs.php:235
+#: ../../godmode/reporting/reporting_builder.php:779
+msgid "Free text for search: "
+msgstr ""
+
+#: ../../godmode/reporting/graphs.php:236
+#: ../../godmode/reporting/reporting_builder.php:781
+msgid "Search by report name or description, list matches."
+msgstr ""
+
+#: ../../godmode/reporting/graphs.php:248
+#: ../../godmode/reporting/reporting_builder.php:807
+msgid "Show Option"
+msgstr ""
+
+#: ../../godmode/reporting/graphs.php:402
+msgid "Create graph"
+msgstr ""
+
+#: ../../godmode/reporting/graph_container.php:134
+#: ../../godmode/reporting/create_container.php:196
+msgid "Create container"
+msgstr ""
+
+#: ../../godmode/reporting/reporting_builder.list_items.php:706
+#: ../../godmode/reporting/reporting_builder.list_items.php:710
+#: ../../godmode/reporting/graph_builder.graph_editor.php:284
+#: ../../godmode/reporting/graph_builder.graph_editor.php:288
+msgid "Sort items"
+msgstr ""
+
+#: ../../godmode/reporting/reporting_builder.list_items.php:713
+msgid "Sort selected items from position: "
+msgstr ""
+
+#: ../../godmode/reporting/reporting_builder.list_items.php:716
+msgid "Move before to"
+msgstr ""
+
+#: ../../godmode/reporting/reporting_builder.list_items.php:717
+msgid "Move after to"
+msgstr ""
+
+#: ../../godmode/reporting/reporting_builder.list_items.php:757
+#: ../../godmode/reporting/reporting_builder.list_items.php:761
+msgid "Delete items"
+msgstr ""
+
+#: ../../godmode/reporting/reporting_builder.list_items.php:764
+msgid "Delete selected items from position: "
+msgstr ""
+
+#: ../../godmode/reporting/reporting_builder.list_items.php:767
+msgid "Delete above to"
+msgstr ""
+
+#: ../../godmode/reporting/reporting_builder.list_items.php:768
+msgid "Delete below to"
+msgstr ""
+
+#: ../../godmode/reporting/reporting_builder.list_items.php:824
+msgid ""
+"Are you sure to sort the items into the report?\\n. This action change the "
+"sorting of items into data base."
+msgstr ""
+
+#: ../../godmode/reporting/reporting_builder.list_items.php:844
+#: ../../godmode/reporting/graph_builder.graph_editor.php:407
+msgid "Please select any item to order"
+msgstr ""
+
+#: ../../godmode/reporting/reporting_builder.list_items.php:874
+msgid "Are you sure to delete the items into the report?\\n"
+msgstr ""
+
+#: ../../godmode/reporting/reporting_builder.list_items.php:901
+msgid "Please select any item to delete"
+msgstr ""
+
+#: ../../godmode/reporting/graph_builder.php:336
+msgid "Graph builder"
+msgstr ""
+
+#: ../../godmode/reporting/graph_builder.php:378
+msgid "Graph stored successfully"
+msgstr ""
+
+#: ../../godmode/reporting/graph_builder.php:379
+msgid "There was a problem storing Graph"
+msgstr ""
+
+#: ../../godmode/reporting/graph_builder.php:386
+#: ../../godmode/agentes/configurar_agente.php:1938
+msgid "Module added successfully"
+msgstr ""
+
+#: ../../godmode/reporting/graph_builder.php:387
+msgid "There was a problem adding Module"
+msgstr ""
+
+#: ../../godmode/reporting/graph_builder.php:394
+msgid "Update the graph"
+msgstr ""
+
+#: ../../godmode/reporting/graph_builder.php:395
+msgid "Bad update the graph"
+msgstr ""
+
+#: ../../godmode/reporting/graph_builder.php:402
+msgid "Graph deleted successfully"
+msgstr ""
+
+#: ../../godmode/reporting/graph_builder.php:403
+msgid "There was a problem deleting Graph"
+msgstr ""
+
+#: ../../godmode/reporting/visual_console_builder.data.php:94
+msgid "Create visual console"
+msgstr ""
+
+#: ../../godmode/reporting/visual_console_builder.data.php:106
+msgid ""
+"Use [ or ( as first character, for example '[*] Map name', to render this "
+"map name in main menu"
+msgstr ""
+
+#: ../../godmode/reporting/visual_console_builder.data.php:179
+msgid "Background image"
+msgstr ""
+
+#: ../../godmode/reporting/visual_console_builder.data.php:211
+msgid "Layout size"
+msgstr ""
+
+#: ../../godmode/reporting/visual_console_builder.data.php:214
+msgid "Set custom size"
+msgstr ""
+
+#: ../../godmode/reporting/visual_console_builder.data.php:220
+msgid "Get default image size"
+msgstr ""
+
+#: ../../godmode/reporting/visual_console_builder.data.php:222
+msgid "Favourite visual console"
+msgstr ""
+
+#: ../../godmode/reporting/visual_console_builder.data.php:225
+msgid "Auto adjust to screen in fullscreen"
+msgstr ""
+
+#: ../../godmode/reporting/create_container.php:155
+msgid "Container name is missing."
+msgstr ""
+
+#: ../../godmode/reporting/create_container.php:205
+msgid "Container stored successfully"
+msgstr ""
+
+#: ../../godmode/reporting/create_container.php:205
+msgid "There was a problem storing container"
+msgstr ""
+
+#: ../../godmode/reporting/create_container.php:212
+msgid "Update the container"
+msgstr ""
+
+#: ../../godmode/reporting/create_container.php:212
+msgid "Bad update the container"
+msgstr ""
+
+#: ../../godmode/reporting/create_container.php:287
+msgid "Parent container"
+msgstr ""
+
+#: ../../godmode/reporting/create_container.php:365
+#: ../../godmode/reporting/create_container.php:474
+#: ../../godmode/reporting/create_container.php:528
+msgid ""
+"This is the interval or period of time with which the graph data will be "
+"obtained. For example, a week means data from a week ago from now. "
+msgstr ""
+
+#: ../../godmode/reporting/create_container.php:448
+#: ../../godmode/reporting/create_container.php:501
+#: ../../godmode/reporting/create_container.php:596
+msgid "Add item"
+msgstr ""
+
+#: ../../godmode/reporting/create_container.php:614
+msgid "There are no items in this container."
+msgstr ""
+
+#: ../../godmode/reporting/create_container.php:623
+msgid "Agent/Module"
+msgstr ""
+
+#: ../../godmode/reporting/create_container.php:626
+msgid "M.Group"
+msgstr ""
+
+#: ../../godmode/reporting/visual_console_favorite.php:223
+msgid "No favourite consoles defined"
+msgstr ""
+
+#: ../../godmode/reporting/visual_console_builder.elements.php:106
+msgid "Width x Height<br>Max value"
+msgstr ""
+
+#: ../../godmode/reporting/visual_console_builder.elements.php:108
+msgid "Map linked"
+msgstr ""
+
+#: ../../godmode/reporting/visual_console_builder.elements.php:193
+msgid "Percentile Bar"
+msgstr ""
+
+#: ../../godmode/reporting/visual_console_builder.elements.php:203
+msgid "Percentile Bubble"
+msgstr ""
+
+#: ../../godmode/reporting/visual_console_builder.elements.php:251
+msgid "Simple Value (Process Max)"
+msgstr ""
+
+#: ../../godmode/reporting/visual_console_builder.elements.php:262
+msgid "Simple Value (Process Min)"
+msgstr ""
+
+#: ../../godmode/reporting/visual_console_builder.elements.php:273
+msgid "Simple Value (Process Avg)"
+msgstr ""
+
+#: ../../godmode/reporting/visual_console_builder.elements.php:394
+#: ../../godmode/reporting/visual_console_builder.elements.php:832
+msgid "Edit label"
+msgstr ""
+
+#: ../../godmode/reporting/reporting_builder.item_editor.php:993
+msgid "Not valid"
+msgstr ""
+
+#: ../../godmode/reporting/reporting_builder.item_editor.php:1001
+msgid ""
+"This type of report brings a lot of data loading, it is recommended to use "
+"it for scheduled reports and not for real-time view."
+msgstr ""
+
+#: ../../godmode/reporting/reporting_builder.item_editor.php:1151
+msgid "Log number"
+msgstr ""
+
+#: ../../godmode/reporting/reporting_builder.item_editor.php:1153
+msgid ""
+"Warning: this parameter limits the contents of the logs and affects the "
+"performance."
+msgstr ""
+
+#: ../../godmode/reporting/reporting_builder.item_editor.php:1214
+msgid ""
+"This is the range, or period of time over which the report renders the "
+"information for this report type. For example, a week means data from a week "
+"ago from now. "
+msgstr ""
+
+#: ../../godmode/reporting/reporting_builder.item_editor.php:1773
+msgid "Show modules"
+msgstr ""
+
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2154
+msgid "Target server"
+msgstr ""
+
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2455
+msgid "Macros definition"
+msgstr ""
+
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2466
+msgid "Render definition"
+msgstr ""
+
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2467
+msgid "Please note that not all CSS styles are supported by PDF reports."
+msgstr ""
+
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2547
+msgid "Greater or equal (>=)"
+msgstr ""
+
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2548
+msgid "Less or equal (<=)"
+msgstr ""
+
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2549
+msgid "Less (<)"
+msgstr ""
+
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2550
+msgid "Greater (>)"
+msgstr ""
+
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2551
+msgid "Equal (=)"
+msgstr ""
+
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2552
+msgid "Not equal (!=)"
+msgstr ""
+
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2677
+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:2732
+msgid "Checks in Warning status"
+msgstr ""
+
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2802
+msgid "Only data"
+msgstr ""
+
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2900
+msgid "Include extended events"
+msgstr ""
+
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2919
+msgid "By agent "
+msgstr ""
+
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2929
+msgid "By user validator "
+msgstr ""
+
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2939
+msgid "By criticity "
+msgstr ""
+
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2949
+msgid "Validated vs unvalidated "
+msgstr ""
+
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2964
+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:3149
+msgid "Include filter"
+msgstr ""
+
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3153
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3162
+msgid "Free text string search on event description"
+msgstr ""
+
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3158
+msgid "Exclude filter"
+msgstr ""
+
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3357
+msgid "Select by group"
+msgstr ""
+
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3445
+msgid "Display options"
+msgstr ""
+
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3503
+msgid "Agent group filter"
+msgstr ""
+
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3523
+msgid "Agent OS filter"
+msgstr ""
+
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3549
+msgid "Agent custom field"
+msgstr ""
+
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3571
+msgid "Agent custom field filter"
+msgstr ""
+
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3595
+msgid "Agent status filter"
+msgstr ""
+
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3633
+msgid "Agent version filter"
+msgstr ""
+
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3657
+msgid "Agent has remote configuration"
+msgstr ""
+
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3658
+msgid "Filter agents by remote configuration enabled."
+msgstr ""
+
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3669
+msgid "Agent module filter"
+msgstr ""
+
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3775
+#: ../../godmode/reporting/reporting_builder.item_editor.php:4290
+msgid "Agent Failover"
+msgstr ""
+
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3780
+#: ../../godmode/reporting/reporting_builder.item_editor.php:4293
+msgid "Module Failover"
+msgstr ""
+
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3820
+msgid "Please save the item before adding entries to this list."
+msgstr ""
+
+#: ../../godmode/reporting/reporting_builder.item_editor.php:4266
+msgid "rate"
+msgstr ""
+
+#: ../../godmode/reporting/reporting_builder.item_editor.php:4314
+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:4334
+msgid "Please save the report to start adding items into the list."
+msgstr ""
+
+#: ../../godmode/reporting/reporting_builder.item_editor.php:4600
+#: ../../godmode/reporting/reporting_builder.item_editor.php:4604
+#: ../../godmode/reporting/reporting_builder.item_editor.php:4608
+#: ../../godmode/reporting/reporting_builder.item_editor.php:4612
+#: ../../godmode/reporting/reporting_builder.item_editor.php:4616
+#: ../../godmode/reporting/reporting_builder.item_editor.php:4620
+#: ../../godmode/reporting/reporting_builder.item_editor.php:4624
+#: ../../godmode/reporting/reporting_builder.item_editor.php:4628
+msgid "Item Editor Information"
+msgstr ""
+
+#: ../../godmode/reporting/reporting_builder.item_editor.php:4601
+msgid "Please select a name."
+msgstr ""
+
+#: ../../godmode/reporting/reporting_builder.item_editor.php:4605
+msgid "Please select an agent."
+msgstr ""
+
+#: ../../godmode/reporting/reporting_builder.item_editor.php:4609
+#: ../../godmode/agentes/planned_downtime.editor.php:1388
+msgid "Please select a module."
+msgstr ""
+
+#: ../../godmode/reporting/reporting_builder.item_editor.php:4613
+msgid "Please insert a SQL query."
+msgstr ""
+
+#: ../../godmode/reporting/reporting_builder.item_editor.php:4617
+msgid "Please insert a URL."
+msgstr ""
+
+#: ../../godmode/reporting/reporting_builder.item_editor.php:4621
+msgid "Please checked a custom interval option."
+msgstr ""
+
+#: ../../godmode/reporting/reporting_builder.item_editor.php:4625
+msgid "Please select a user."
+msgstr ""
+
+#: ../../godmode/reporting/reporting_builder.item_editor.php:4629
+msgid "Please select a group."
+msgstr ""
+
+#: ../../godmode/reporting/reporting_builder.php:535
+#: ../../godmode/reporting/reporting_builder.php:3439
+#: ../../godmode/reporting/reporting_builder.php:3522
+#: ../../godmode/reporting/reporting_builder.php:3570
+msgid "Reports list"
+msgstr ""
+
+#: ../../godmode/reporting/reporting_builder.php:583
+msgid "List of reports"
+msgstr ""
+
+#: ../../godmode/reporting/reporting_builder.php:1046
+msgid "This report exceeds the item limit for realtime operations"
+msgstr ""
+
+#: ../../godmode/reporting/reporting_builder.php:1278
+msgid "Create report"
+msgstr ""
+
+#: ../../godmode/reporting/reporting_builder.php:3573
+msgid "Create Custom Report"
+msgstr ""
+
+#: ../../godmode/reporting/reporting_builder.php:3661
+msgid "Unsuccessful action<br><br>"
+msgstr ""
+
+#: ../../godmode/reporting/visual_console_builder.editor.php:163
+msgid "Min allowed size is 1024x768"
+msgstr ""
+
+#: ../../godmode/reporting/visual_console_builder.editor.php:167
+msgid "Loading in progress"
+msgstr ""
+
+#: ../../godmode/reporting/visual_console_builder.editor.php:169
+msgid "Saving in progress"
+msgstr ""
+
+#: ../../godmode/reporting/visual_console_builder.editor.php:171
+msgid "Deletion in progress"
+msgstr ""
+
+#: ../../godmode/reporting/graph_builder.graph_editor.php:199
+#, php-format
+msgid ""
+"The maximum number of items in a chart is %d. You have %d elements, only "
+"first %d will be displayed."
+msgstr ""
+
+#: ../../godmode/reporting/graph_builder.graph_editor.php:291
+msgid "Sort selected items"
+msgstr ""
+
+#: ../../godmode/reporting/graph_builder.graph_editor.php:294
+msgid "before to"
+msgstr ""
+
+#: ../../godmode/reporting/graph_builder.graph_editor.php:295
+msgid "after to"
+msgstr ""
+
+#: ../../godmode/reporting/graph_builder.main.php:230
+msgid "Equalize maximum thresholds"
+msgstr ""
+
+#: ../../godmode/reporting/graph_builder.main.php:258
+msgid "Add summatory series"
+msgstr ""
+
+#: ../../godmode/reporting/graph_builder.main.php:268
+msgid "Add average series"
+msgstr ""
+
+#: ../../godmode/reporting/graph_builder.main.php:279
+msgid "Modules and series"
+msgstr ""
+
+#: ../../godmode/reporting/visual_console_builder.wizard.php:165
+msgid "Range between elements (px)"
+msgstr ""
+
+#: ../../godmode/reporting/visual_console_builder.wizard.php:178
+msgid "Size (px)"
+msgstr ""
+
+#: ../../godmode/reporting/visual_console_builder.wizard.php:273
+msgid "Width (px)"
+msgstr ""
+
+#: ../../godmode/reporting/visual_console_builder.wizard.php:378
+msgid "One item per agent"
+msgstr ""
+
+#: ../../godmode/reporting/visual_console_builder.wizard.php:448
+#: ../../godmode/reporting/visual_console_builder.wizard.php:765
+msgid "Agent - Module"
+msgstr ""
+
+#: ../../godmode/reporting/visual_console_builder.wizard.php:465
+msgid "Enable link agent"
+msgstr ""
+
+#: ../../godmode/reporting/visual_console_builder.wizard.php:476
+msgid "Set Parent"
+msgstr ""
+
+#: ../../godmode/reporting/visual_console_builder.wizard.php:479
+msgid "Item created in the visualmap"
+msgstr ""
+
+#: ../../godmode/reporting/visual_console_builder.wizard.php:480
+msgid "Use the agents relationship (from selected agents)"
+msgstr ""
+
+#: ../../godmode/reporting/visual_console_builder.wizard.php:489
+msgid "Item in the map"
+msgstr ""
+
+#: ../../godmode/reporting/visual_console_builder.wizard.php:490
+#, php-format
+msgid "The parenting relationships in %s will be drawn on the map."
+msgstr ""
+
+#: ../../godmode/reporting/visual_console_builder.wizard.php:510
+#: ../../godmode/reporting/visual_console_builder.wizard.php:514
+msgid "Are you sure to add many elements\\nin visual map?"
+msgstr ""
+
+#: ../../godmode/reporting/visual_console_builder.wizard.php:686
+msgid "Please select any module or modules."
+msgstr ""
+
+#: ../../godmode/menu.php:41
+msgid "Network scan"
+msgstr ""
+
+#: ../../godmode/menu.php:43
+msgid "Custom network scan"
+msgstr ""
+
+#: ../../godmode/menu.php:47
+msgid "Manage scan scripts"
+msgstr ""
+
+#: ../../godmode/menu.php:50 ../../godmode/wizards/HostDevices.class.php:204
+msgid "Host & devices"
+msgstr ""
+
+#: ../../godmode/menu.php:83
+msgid "Module categories"
+msgstr ""
+
+#: ../../godmode/menu.php:87
+msgid "Module types"
+msgstr ""
+
+#: ../../godmode/menu.php:97 ../../godmode/netflow/nf_edit.php:57
+#: ../../godmode/netflow/nf_edit.php:63
+#: ../../godmode/netflow/nf_edit_form.php:73
+#: ../../godmode/netflow/nf_edit_form.php:83
+msgid "Netflow filters"
+msgstr ""
+
+#: ../../godmode/menu.php:103 ../../godmode/agentes/configurar_agente.php:817
+#: ../../godmode/agentes/configurar_agente.php:839
+#: ../../godmode/agentes/modificar_agente.php:104
+msgid "Resources"
+msgstr ""
+
+#: ../../godmode/menu.php:111
+msgid "Manage agents groups"
+msgstr ""
+
+#: ../../godmode/menu.php:149 ../../godmode/wizards/HostDevices.class.php:1077
+#: ../../godmode/agentes/configurar_agente.php:437
+msgid "Module templates"
+msgstr ""
+
+#: ../../godmode/menu.php:155
+msgid "Remote components"
+msgstr ""
+
+#: ../../godmode/menu.php:188 ../../godmode/massive/massive_operations.php:257
+msgid "Agents operations"
+msgstr ""
+
+#: ../../godmode/menu.php:189 ../../godmode/massive/massive_operations.php:269
+msgid "Modules operations"
+msgstr ""
+
+#: ../../godmode/menu.php:190 ../../godmode/massive/massive_operations.php:281
+msgid "Plugins operations"
+msgstr ""
+
+#: ../../godmode/menu.php:192 ../../godmode/massive/massive_operations.php:245
+msgid "Users operations"
+msgstr ""
+
+#: ../../godmode/menu.php:195 ../../godmode/massive/massive_operations.php:233
+msgid "Alerts operations"
+msgstr ""
+
+#: ../../godmode/menu.php:205 ../../godmode/groups/group_list.php:349
+msgid "Credential store"
+msgstr ""
+
+#: ../../godmode/menu.php:225
+msgid "List of Alerts"
+msgstr ""
+
+#: ../../godmode/menu.php:240 ../../godmode/menu.php:241
+msgid "Special days list"
+msgstr ""
+
+#: ../../godmode/menu.php:245
+msgid "SNMP alerts"
+msgstr ""
+
+#: ../../godmode/menu.php:257
+msgid "Event filters"
+msgstr ""
+
+#: ../../godmode/menu.php:262
+msgid "Custom events"
+msgstr ""
+
+#: ../../godmode/menu.php:285
+msgid "Manage servers"
+msgstr ""
+
+#: ../../godmode/menu.php:296
+msgid "Register Plugin"
+msgstr ""
+
+#: ../../godmode/menu.php:358
+msgid "Websocket Engine"
+msgstr ""
+
+#: ../../godmode/menu.php:392
+msgid "Diagnostic info"
+msgstr ""
+
+#: ../../godmode/menu.php:397
+msgid "Site news"
+msgstr ""
+
+#: ../../godmode/menu.php:403
+msgid "DB Schema Check"
+msgstr ""
+
+#: ../../godmode/menu.php:406
+msgid "DB Interface"
+msgstr ""
+
+#: ../../godmode/menu.php:493
+msgid "Extension manager view"
+msgstr ""
+
+#: ../../godmode/menu.php:497
+msgid "Extension manager"
+msgstr ""
+
+#: ../../godmode/menu.php:528
+msgid "Update manager"
+msgstr ""
+
+#: ../../godmode/menu.php:533
+msgid "Update Manager offline"
+msgstr ""
+
+#: ../../godmode/menu.php:536
+msgid "Update Manager online"
+msgstr ""
+
+#: ../../godmode/menu.php:539
+msgid "Update Manager options"
+msgstr ""
+
+#: ../../godmode/menu.php:542
+msgid "Update Manager journal"
+msgstr ""
+
+#: ../../godmode/menu.php:550
+#: ../../godmode/module_library/module_library_view.php:81
+msgid "Module library"
+msgstr ""
+
+#: ../../godmode/menu.php:557
+#: ../../godmode/module_library/module_library_view.php:54
+#: ../../godmode/module_library/module_library_view.php:68
+#: ../../godmode/module_library/module_library_view.php:104
+msgid "Categories"
+msgstr ""
+
+#: ../../godmode/snmpconsole/snmp_alert.php:99
+msgid "Alert overview"
+msgstr ""
+
+#: ../../godmode/snmpconsole/snmp_alert.php:277
+msgid "There was a problem creating the alert"
+msgstr ""
+
+#: ../../godmode/snmpconsole/snmp_alert.php:413
+msgid "There was a problem updating the alert"
+msgstr ""
+
+#: ../../godmode/snmpconsole/snmp_alert.php:610
+#: ../../godmode/snmpconsole/snmp_alert.php:623
+msgid "There was a problem duplicating the alert"
+msgstr ""
+
+#: ../../godmode/snmpconsole/snmp_alert.php:616
+msgid "Successfully Duplicate"
+msgstr ""
+
+#: ../../godmode/snmpconsole/snmp_alert.php:644
+msgid "There was a problem deleting the alert"
+msgstr ""
+
+#: ../../godmode/snmpconsole/snmp_alert.php:730
+msgid "Matches substrings. End the string with $ for exact matches."
+msgstr ""
+
+#: ../../godmode/snmpconsole/snmp_alert.php:790
+#: ../../godmode/snmpconsole/snmp_alert.php:797
+#: ../../godmode/snmpconsole/snmp_alert.php:806
+#: ../../godmode/snmpconsole/snmp_alert.php:815
+#: ../../godmode/snmpconsole/snmp_alert.php:824
+#: ../../godmode/snmpconsole/snmp_alert.php:833
+#: ../../godmode/snmpconsole/snmp_alert.php:842
+#: ../../godmode/snmpconsole/snmp_alert.php:850
+#: ../../godmode/snmpconsole/snmp_alert.php:858
+#: ../../godmode/snmpconsole/snmp_alert.php:866
+#: ../../godmode/snmpconsole/snmp_alert.php:874
+#: ../../godmode/snmpconsole/snmp_alert.php:882
+#: ../../godmode/snmpconsole/snmp_alert.php:890
+#: ../../godmode/snmpconsole/snmp_alert.php:898
+#: ../../godmode/snmpconsole/snmp_alert.php:906
+#: ../../godmode/snmpconsole/snmp_alert.php:914
+#: ../../godmode/snmpconsole/snmp_alert.php:922
+#: ../../godmode/snmpconsole/snmp_alert.php:930
+#: ../../godmode/snmpconsole/snmp_alert.php:938
+#: ../../godmode/snmpconsole/snmp_alert.php:946
+msgid "Variable bindings/Data"
+msgstr ""
+
+#: ../../godmode/snmpconsole/snmp_alert.php:1074
+msgid ""
+"Search by these fields description, OID, Custom Value, SNMP Agent (IP), "
+"Single value, each Variable bindings/Datas."
+msgstr ""
+
+#: ../../godmode/snmpconsole/snmp_alert.php:1093
+msgid "Alert SNMP control filter"
+msgstr ""
+
+#: ../../godmode/snmpconsole/snmp_alert.php:1178
+msgid "There are no SNMP alerts"
+msgstr ""
+
+#: ../../godmode/snmpconsole/snmp_alert.php:1229
+msgid "Custom Value/Enterprise String"
+msgstr ""
+
+#: ../../godmode/snmpconsole/snmp_alert.php:1234
+msgid "TF."
+msgstr ""
+
+#: ../../godmode/snmpconsole/snmp_alert.php:1357
+msgid "ID Alert SNMP"
+msgstr ""
+
+#: ../../godmode/snmpconsole/snmp_alert.php:1589
+msgid "Add action "
+msgstr ""
+
+#: ../../godmode/snmpconsole/snmp_filters.php:41
+msgid "Filter overview"
+msgstr ""
+
+#: ../../godmode/snmpconsole/snmp_filters.php:108
+msgid "There was a problem updating the filter"
+msgstr ""
+
+#: ../../godmode/snmpconsole/snmp_filters.php:126
+#: ../../godmode/snmpconsole/snmp_filters.php:152
+msgid "Description is empty"
+msgstr ""
+
+#: ../../godmode/snmpconsole/snmp_filters.php:129
+msgid "Filter is empty"
+msgstr ""
+
+#: ../../godmode/snmpconsole/snmp_filters.php:149
+msgid "Filters are empty"
+msgstr ""
+
+#: ../../godmode/snmpconsole/snmp_filters.php:159
+msgid "There was a problem creating the filter"
+msgstr ""
+
+#: ../../godmode/snmpconsole/snmp_filters.php:178
+msgid "There was a problem deleting the filter"
+msgstr ""
+
+#: ../../godmode/snmpconsole/snmp_filters.php:221
+#: ../../godmode/snmpconsole/snmp_filters.php:231
+msgid ""
+"This field contains a substring, could be part of a IP address, a numeric "
+"OID, or a plain substring"
+msgstr ""
+
+#: ../../godmode/snmpconsole/snmp_filters.php:223
+msgid "Click to remove the filter"
+msgstr ""
+
+#: ../../godmode/snmpconsole/snmp_filters.php:254
+#: ../../godmode/snmpconsole/snmp_filters.php:255
+msgid "Click to add new filter"
+msgstr ""
+
+#: ../../godmode/snmpconsole/snmp_trap_generator.php:38
+msgid "SNMP Trap generator"
+msgstr ""
+
+#: ../../godmode/snmpconsole/snmp_trap_generator.php:68
+msgid "Empty parameters"
+msgstr ""
+
+#: ../../godmode/snmpconsole/snmp_trap_generator.php:74
+msgid "Successfully generated"
+msgstr ""
+
+#: ../../godmode/snmpconsole/snmp_trap_generator.php:75
+#, php-format
+msgid "Could not be generated: %s"
+msgstr ""
+
+#: ../../godmode/snmpconsole/snmp_trap_generator.php:85
+msgid "Host address"
+msgstr ""
+
+#: ../../godmode/snmpconsole/snmp_trap_generator.php:135
+msgid "SNMP Type"
+msgstr ""
+
+#: ../../godmode/snmpconsole/snmp_trap_generator.php:168
+msgid "Generate trap"
+msgstr ""
+
+#: ../../godmode/tag/edit_tag.php:57 ../../godmode/tag/edit_tag.php:75
+#: ../../godmode/tag/tag.php:140
+msgid "List tags"
+msgstr ""
+
+#: ../../godmode/tag/edit_tag.php:85 ../../godmode/tag/tag.php:152
+msgid "Tags configuration"
+msgstr ""
+
+#: ../../godmode/tag/edit_tag.php:128
+msgid "Successfully updated tag"
+msgstr ""
+
+#: ../../godmode/tag/edit_tag.php:129
+msgid "Error updating tag"
+msgstr ""
+
+#: ../../godmode/tag/edit_tag.php:169
+msgid "Successfully created tag"
+msgstr ""
+
+#: ../../godmode/tag/edit_tag.php:170
+msgid "Error creating tag"
+msgstr ""
+
+#: ../../godmode/tag/edit_tag.php:201
+msgid "Update Tag"
+msgstr ""
+
+#: ../../godmode/tag/edit_tag.php:205
+msgid "Create Tag"
+msgstr ""
+
+#: ../../godmode/tag/edit_tag.php:229
+msgid "Hyperlink to help information that has to exist previously."
+msgstr ""
+
+#: ../../godmode/tag/edit_tag.php:241
+msgid "Associated Email direction to use later in alerts associated to Tags."
+msgstr ""
+
+#: ../../godmode/tag/edit_tag.php:251 ../../godmode/tag/tag.php:282
+msgid "Phone"
+msgstr ""
+
+#: ../../godmode/tag/edit_tag.php:253
+msgid "Associated phone number to use later in alerts associated to Tags."
+msgstr ""
+
+#: ../../godmode/tag/tag.php:117
+msgid "Number of modules"
+msgstr ""
+
+#: ../../godmode/tag/tag.php:119
+msgid "Number of policy modules"
+msgstr ""
+
+#: ../../godmode/tag/tag.php:178
+msgid "Successfully deleted tag"
+msgstr ""
+
+#: ../../godmode/tag/tag.php:179
+msgid "Error deleting tag"
+msgstr ""
+
+#: ../../godmode/tag/tag.php:195
+#, php-format
+msgid ""
+"This node is configured with centralized mode. All tags information is read "
+"only. Go to %s to manage it."
+msgstr ""
+
+#: ../../godmode/tag/tag.php:277
+msgid "Tag name"
+msgstr ""
+
+#: ../../godmode/tag/tag.php:279
+msgid "Detail information"
+msgstr ""
+
+#: ../../godmode/tag/tag.php:280
+msgid "Number of modules affected"
+msgstr ""
+
+#: ../../godmode/tag/tag.php:311
+msgid "Tag details"
+msgstr ""
+
+#: ../../godmode/tag/tag.php:344
+#, php-format
+msgid "Emails for the tag: %s"
+msgstr ""
+
+#: ../../godmode/tag/tag.php:367
+#, php-format
+msgid "Phones for the tag: %s"
+msgstr ""
+
+#: ../../godmode/tag/tag.php:413
+msgid "No tags defined"
+msgstr ""
+
+#: ../../godmode/tag/tag.php:428
+msgid "Create tag"
+msgstr ""
+
+#: ../../godmode/events/event_edit_filter.php:249
+msgid "Update Filter"
+msgstr ""
+
+#: ../../godmode/events/event_edit_filter.php:251
+msgid "Create Filter"
+msgstr ""
+
+#: ../../godmode/events/event_edit_filter.php:264
+msgid "Save in group"
+msgstr ""
+
+#: ../../godmode/events/event_edit_filter.php:264
+msgid ""
+"This group will be use to restrict the visibility of this filter with ACLs"
+msgstr ""
+
+#: ../../godmode/events/event_edit_filter.php:414
+msgid "Choose between the users who have validated an event. "
+msgstr ""
+
+#: ../../godmode/events/event_edit_filter.php:636
+msgid "Custom data filter type"
+msgstr ""
+
+#: ../../godmode/events/event_edit_filter.php:639
+msgid "Filter custom data by name field"
+msgstr ""
+
+#: ../../godmode/events/event_edit_filter.php:640
+msgid "Filter custom data by value field"
+msgstr ""
+
+#: ../../godmode/events/event_edit_filter.php:654
+msgid "Id souce event"
+msgstr ""
+
+#: ../../godmode/events/event_responses.editor.php:73
+msgid "Edit event responses"
+msgstr ""
+
+#: ../../godmode/events/event_responses.editor.php:123
+msgid "For Command type Modal Window mode is enforced"
+msgstr ""
+
+#: ../../godmode/events/event_responses.editor.php:125
+msgid "Modal window"
+msgstr ""
+
+#: ../../godmode/events/event_responses.editor.php:126
+msgid "New window"
+msgstr ""
+
+#: ../../godmode/events/event_responses.editor.php:198
+msgid "Command timeout (s)"
+msgstr ""
+
+#: ../../godmode/events/event_responses.editor.php:204
+msgid "Display command"
+msgstr ""
+
+#: ../../godmode/events/event_responses.editor.php:204
+msgid ""
+"If enabled the command will be displayed to any user that can execute this "
+"event response"
+msgstr ""
+
+#: ../../godmode/events/custom_events.php:76
+msgid "Load the fields from previous events"
+msgstr ""
+
+#: ../../godmode/events/custom_events.php:76
+msgid "Event fields will be loaded. Do you want to continue?"
+msgstr ""
+
+#: ../../godmode/events/custom_events.php:97
+msgid "Agent Name"
+msgstr ""
+
+#: ../../godmode/events/event_responses.php:51
+msgid "Response added succesfully"
+msgstr ""
+
+#: ../../godmode/events/event_responses.php:53
+msgid "Response cannot be added"
+msgstr ""
+
+#: ../../godmode/events/event_responses.php:77
+msgid "Response updated succesfully"
+msgstr ""
+
+#: ../../godmode/events/event_responses.php:79
+msgid "Response cannot be updated"
+msgstr ""
+
+#: ../../godmode/events/event_responses.php:89
+msgid "Response deleted succesfully"
+msgstr ""
+
+#: ../../godmode/events/event_responses.php:91
+msgid "Response cannot be deleted"
+msgstr ""
+
+#: ../../godmode/events/event_responses.list.php:32
+msgid "No responses found"
+msgstr ""
+
+#: ../../godmode/events/event_responses.list.php:92
+msgid "Create response"
+msgstr ""
+
+#: ../../godmode/events/events.php:54 ../../godmode/netflow/nf_edit_form.php:53
+msgid "Filter list"
+msgstr ""
+
+#: ../../godmode/events/event_filter.php:215
+#: ../../godmode/netflow/nf_edit.php:212
+msgid "There are no defined filters"
+msgstr ""
+
+#: ../../godmode/db/db_main.php:74
+msgid "Current database maintenance setup"
+msgstr ""
+
+#: ../../godmode/db/db_main.php:80
+msgid "Database setup"
+msgstr ""
+
+#: ../../godmode/db/db_main.php:84
+msgid "Max. time before compact data"
+msgstr ""
+
+#: ../../godmode/db/db_main.php:90
+msgid "Max. time before purge"
+msgstr ""
+
+#: ../../godmode/db/db_main.php:114
+msgid "Total data items (tagente_datos)"
+msgstr ""
+
+#: ../../godmode/db/db_main.php:127
+msgid "Total log4x items (tagente_datos_log4x)"
+msgstr ""
+
+#: ../../godmode/db/db_main.php:140
+msgid "Total data string items (tagente_datos_string)"
+msgstr ""
+
+#: ../../godmode/db/db_main.php:146
+msgid "Total modules configured"
+msgstr ""
+
+#: ../../godmode/db/db_main.php:154
+msgid "Total agent access records"
+msgstr ""
+
+#: ../../godmode/db/db_main.php:166
+msgid "Database sanity"
+msgstr ""
+
+#: ../../godmode/db/db_main.php:170
+msgid "Total uknown agents"
+msgstr ""
+
+#: ../../godmode/db/db_main.php:176
+msgid "Total non-init modules"
+msgstr ""
+
+#: ../../godmode/db/db_main.php:185
+msgid "Last time on DB maintance"
+msgstr ""
+
+#: ../../godmode/db/db_main.php:208
+#, php-format
+msgid ""
+"Please make sure your %s Server settings are correct and that the database "
+"maintenance daemon is running. It's very important to keep your database up "
+"to date in order to get the best performance and results from %s."
+msgstr ""
+
+#: ../../godmode/netflow/nf_edit.php:38
+msgid "Manage Netflow Filter"
+msgstr ""
+
+#: ../../godmode/netflow/nf_edit_form.php:55
+#: ../../godmode/netflow/nf_edit_form.php:77
+msgid "Add filter"
+msgstr ""
+
+#: ../../godmode/netflow/nf_edit_form.php:58
+msgid "Netflow Filter"
+msgstr ""
+
+#: ../../godmode/netflow/nf_edit_form.php:235
+msgid "Filter:"
+msgstr ""
+
+#: ../../godmode/netflow/nf_item_list.php:30
+#: ../../godmode/netflow/nf_item_list.php:38
+msgid "Report items"
+msgstr ""
+
+#: ../../godmode/netflow/nf_item_list.php:33
+msgid "Edit report"
+msgstr ""
+
+#: ../../godmode/netflow/nf_item_list.php:53
+msgid "Netflow reports"
+msgstr ""
+
+#: ../../godmode/netflow/nf_item_list.php:57
+msgid "Item list"
+msgstr ""
+
+#: ../../godmode/netflow/nf_item_list.php:277
+msgid "There are no defined items"
+msgstr ""
+
+#: ../../godmode/massive/massive_add_alerts.php:105
+#: ../../godmode/massive/massive_delete_alerts.php:108
+msgid "No alert selected"
+msgstr ""
+
+#: ../../godmode/massive/massive_delete_modules.php:82
+msgid "No module selected"
+msgstr ""
+
+#: ../../godmode/massive/massive_delete_modules.php:156
+msgid ""
+"There was an error deleting the modules, the operation has been cancelled"
+msgstr ""
+
+#: ../../godmode/massive/massive_delete_modules.php:318
+#: ../../godmode/massive/massive_edit_modules.php:304
+msgid "Selection mode"
+msgstr ""
+
+#: ../../godmode/massive/massive_delete_modules.php:319
+#: ../../godmode/massive/massive_edit_modules.php:305
+msgid "Select modules first "
+msgstr ""
+
+#: ../../godmode/massive/massive_delete_modules.php:320
+#: ../../godmode/massive/massive_edit_modules.php:306
+msgid "Select agents first "
+msgstr ""
+
+#: ../../godmode/massive/massive_delete_modules.php:343
+#: ../../godmode/massive/massive_edit_modules.php:325
+msgid "Select all modules of this type"
+msgstr ""
+
+#: ../../godmode/massive/massive_delete_modules.php:387
+#: ../../godmode/massive/massive_edit_modules.php:371
+msgid "Select all modules of this group"
+msgstr ""
+
+#: ../../godmode/massive/massive_delete_modules.php:458
+#: ../../godmode/massive/massive_copy_modules.php:196
+#: ../../godmode/massive/massive_edit_modules.php:420
+msgid "Filter Modules"
+msgstr ""
+
+#: ../../godmode/massive/massive_delete_modules.php:477
+#: ../../godmode/massive/massive_edit_modules.php:436
+msgid "Select all modules"
+msgstr ""
+
+#: ../../godmode/massive/massive_delete_modules.php:479
+#: ../../godmode/massive/massive_edit_modules.php:438
+msgid "When select modules"
+msgstr ""
+
+#: ../../godmode/massive/massive_delete_modules.php:483
+#: ../../godmode/massive/massive_edit_modules.php:442
+msgid "Show common agents"
+msgstr ""
+
+#: ../../godmode/massive/massive_delete_modules.php:484
+#: ../../godmode/massive/massive_edit_modules.php:443
+msgid "Show all agents"
+msgstr ""
+
+#: ../../godmode/massive/massive_delete_modules.php:530
+#: ../../godmode/massive/massive_copy_modules.php:292
+msgid "Filter Agents"
+msgstr ""
+
+#: ../../godmode/massive/massive_delete_modules.php:549
+#: ../../godmode/massive/massive_edit_modules.php:522
+msgid "Select all agents"
+msgstr ""
+
+#: ../../godmode/massive/massive_delete_modules.php:557
+#: ../../godmode/massive/massive_add_action_alerts.php:226
+#: ../../godmode/massive/massive_delete_action_alerts.php:247
+#: ../../godmode/massive/massive_edit_modules.php:530
+msgid "Show unknown and not init modules"
+msgstr ""
+
+#: ../../godmode/massive/massive_delete_modules.php:595
+#: ../../godmode/massive/massive_edit_modules.php:1260
+msgid "Please, select an agent first"
+msgstr ""
+
+#: ../../godmode/massive/massive_copy_modules.php:193
+msgid "Copy alerts"
+msgstr ""
+
+#: ../../godmode/massive/massive_copy_modules.php:230
+msgid "No alerts for this agent"
+msgstr ""
+
+#: ../../godmode/massive/massive_copy_modules.php:309
+msgid "To agent(s)"
+msgstr ""
+
+#: ../../godmode/massive/massive_copy_modules.php:559
+msgid "No operation selected"
+msgstr ""
+
+#: ../../godmode/massive/massive_operations.php:59
+msgid "Bulk alert add"
+msgstr ""
+
+#: ../../godmode/massive/massive_operations.php:60
+msgid "Bulk alert delete"
+msgstr ""
+
+#: ../../godmode/massive/massive_operations.php:61
+msgid "Bulk alert actions add"
+msgstr ""
+
+#: ../../godmode/massive/massive_operations.php:62
+msgid "Bulk alert actions delete"
+msgstr ""
+
+#: ../../godmode/massive/massive_operations.php:63
+msgid "Bulk alert enable/disable"
+msgstr ""
+
+#: ../../godmode/massive/massive_operations.php:64
+msgid "Bulk alert setting standby"
+msgstr ""
+
+#: ../../godmode/massive/massive_operations.php:68
+msgid "Bulk agent edit"
+msgstr ""
+
+#: ../../godmode/massive/massive_operations.php:69
+#: ../../godmode/massive/massive_operations.php:73
+msgid "Bulk agent delete"
+msgstr ""
+
+#: ../../godmode/massive/massive_operations.php:79
+msgid "Bulk profile add"
+msgstr ""
+
+#: ../../godmode/massive/massive_operations.php:80
+msgid "Bulk profile delete"
+msgstr ""
+
+#: ../../godmode/massive/massive_operations.php:87
+msgid "Bulk module edit"
+msgstr ""
+
+#: ../../godmode/massive/massive_operations.php:88
+msgid "Bulk module copy"
+msgstr ""
+
+#: ../../godmode/massive/massive_operations.php:89
+msgid "Bulk module delete"
+msgstr ""
+
+#: ../../godmode/massive/massive_operations.php:93
+msgid "Bulk plugin edit"
+msgstr ""
+
+#: ../../godmode/massive/massive_operations.php:389
+#, php-format
+msgid ""
+"No changes have been made because they exceed the maximum allowed (%d). Make "
+"fewer changes or contact the administrator."
+msgstr ""
+
+#: ../../godmode/massive/massive_operations.php:417
+#, php-format
+msgid ""
+"This node is configured with centralized mode. To delete agents go to %s"
+msgstr ""
+
+#: ../../godmode/massive/massive_operations.php:440
+msgid "The blank fields will not be updated"
+msgstr ""
+
+#: ../../godmode/massive/massive_add_profiles.php:52
+#: ../../godmode/massive/massive_delete_profiles.php:52
+#, php-format
+msgid ""
+"This node is configured with centralized mode. All profiles user information "
+"is read only. Go to %s to manage it."
+msgstr ""
+
+#: ../../godmode/massive/massive_add_profiles.php:184
+msgid "Profiles added successfully"
+msgstr ""
+
+#: ../../godmode/massive/massive_add_profiles.php:185
+msgid "Profiles cannot be added"
+msgstr ""
+
+#: ../../godmode/massive/massive_standby_alerts.php:223
+msgid "Not standby alerts"
+msgstr ""
+
+#: ../../godmode/massive/massive_standby_alerts.php:252
+#: ../../godmode/massive/massive_standby_alerts.php:256
+msgid "Set standby selected alerts"
+msgstr ""
+
+#: ../../godmode/massive/massive_standby_alerts.php:258
+msgid "Standby alerts"
+msgstr ""
+
+#: ../../godmode/massive/massive_add_action_alerts.php:134
+msgid "No alerts selected"
+msgstr ""
+
+#: ../../godmode/massive/massive_add_action_alerts.php:166
+msgid "No actions selected"
+msgstr ""
+
+#: ../../godmode/massive/massive_add_action_alerts.php:212
+#: ../../godmode/massive/massive_delete_action_alerts.php:230
+msgid "Agents with templates"
+msgstr ""
+
+#: ../../godmode/massive/massive_add_action_alerts.php:218
+#: ../../godmode/massive/massive_delete_action_alerts.php:239
+#: ../../godmode/alerts/alert_templates.php:131
+#: ../../godmode/alerts/alert_templates.php:183
+#: ../../godmode/alerts/alert_templates.php:206
+#: ../../godmode/alerts/alert_templates.php:227
+msgid "Alert templates"
+msgstr ""
+
+#: ../../godmode/massive/massive_edit_agents.php:176
+msgid "No values changed"
+msgstr ""
+
+#: ../../godmode/massive/massive_edit_agents.php:227
+msgid "Configuration files deleted successfully"
+msgstr ""
+
+#: ../../godmode/massive/massive_edit_agents.php:228
+msgid "Configuration files cannot be deleted"
+msgstr ""
+
+#: ../../godmode/massive/massive_edit_agents.php:420
+#, php-format
+msgid "Agents updated successfully (%d)"
+msgstr ""
+
+#: ../../godmode/massive/massive_edit_agents.php:435
+#, php-format
+msgid "Agents cannot be updated (%d), ids (%s)"
+msgstr ""
+
+#: ../../godmode/massive/massive_edit_agents.php:450
+#, php-format
+msgid "Agent ID: %s cannot be updated custom fields (%s)"
+msgstr ""
+
+#: ../../godmode/massive/massive_edit_agents.php:470
+#, php-format
+msgid "Agent ID: %s cannot be updated %s secondary groups (%s)"
+msgstr ""
+
+#: ../../godmode/massive/massive_edit_agents.php:547
+#: ../../godmode/massive/massive_delete_agents.php:226
+msgid "Show agents"
+msgstr ""
+
+#: ../../godmode/massive/massive_edit_agents.php:661
+#: ../../godmode/agentes/agent_manager.php:551
+msgid "Cascade protection"
+msgstr ""
+
+#: ../../godmode/massive/massive_edit_agents.php:858
+#: ../../godmode/agentes/agent_manager.php:567
+msgid "Module definition"
+msgstr ""
+
+#: ../../godmode/massive/massive_edit_agents.php:870
+#: ../../godmode/agentes/agent_manager.php:572
+msgid "Learning mode"
+msgstr ""
+
+#: ../../godmode/massive/massive_edit_agents.php:881
+#: ../../godmode/agentes/agent_manager.php:582
+msgid "Normal mode"
+msgstr ""
+
+#: ../../godmode/massive/massive_edit_agents.php:892
+#: ../../godmode/agentes/agent_manager.php:592
+msgid "Autodisable mode"
+msgstr ""
+
+#: ../../godmode/massive/massive_edit_agents.php:919
+msgid ""
+"If the remote configuration is enabled, it will also go into standby mode "
+"when disabling it."
+msgstr ""
+
+#: ../../godmode/massive/massive_edit_agents.php:932
+msgid "Active"
+msgstr ""
+
+#: ../../godmode/massive/massive_edit_agents.php:948
+msgid "Delete available remote configurations"
+msgstr ""
+
+#: ../../godmode/massive/massive_edit_agents.php:980
+#: ../../godmode/agentes/agent_manager.php:656
+msgid "Agent icon"
+msgstr ""
+
+#: ../../godmode/massive/massive_edit_agents.php:981
+msgid "Without status"
+msgstr ""
+
+#: ../../godmode/massive/massive_edit_agents.php:984
+#: ../../godmode/agentes/agent_conf_gis.php:124
+msgid "Ignore new GIS data:"
+msgstr ""
+
+#: ../../godmode/massive/massive_edit_agents.php:991
+msgid "The agent still runs but the alerts and events will be stop"
+msgstr ""
+
+#: ../../godmode/massive/massive_edit_agents.php:1006
+#: ../../godmode/agentes/agent_manager.php:479
+msgid "Safe operation mode"
+msgstr ""
+
+#: ../../godmode/massive/massive_edit_agents.php:1008
+#, php-format
+msgid ""
+"This mode allow %s to disable all modules \n"
+"of this agent while the selected module is on CRITICAL status"
+msgstr ""
+
+#: ../../godmode/massive/massive_delete_profiles.php:133
+msgid "Profiles deleted successfully"
+msgstr ""
+
+#: ../../godmode/massive/massive_delete_profiles.php:134
+msgid "Profiles cannot be deleted"
+msgstr ""
+
+#: ../../godmode/massive/massive_delete_action_alerts.php:75
+msgid "Could not be deleted. No agents selected"
+msgstr ""
+
+#: ../../godmode/massive/massive_delete_action_alerts.php:122
+msgid "Could not be deleted. No alerts selected"
+msgstr ""
+
+#: ../../godmode/massive/massive_delete_action_alerts.php:181
+msgid "Could not be deleted. No action selected"
+msgstr ""
+
+#: ../../godmode/massive/massive_delete_alerts.php:301
+msgid "Show alerts on disabled modules"
+msgstr ""
+
+#: ../../godmode/massive/massive_delete_agents.php:122
+#, php-format
+msgid ""
+"There was an error deleting the agent, the operation has been cancelled "
+"Could not delete agent %s"
+msgstr ""
+
+#: ../../godmode/massive/massive_delete_agents.php:132
+#, php-format
+msgid "Successfully deleted (%s)"
+msgstr ""
+
+#: ../../godmode/massive/massive_edit_plugins.php:177
+msgid "Error retrieving the plugin macros"
+msgstr ""
+
+#: ../../godmode/massive/massive_edit_plugins.php:185
+msgid "Error retrieving the modified macros"
+msgstr ""
+
+#: ../../godmode/massive/massive_edit_plugins.php:208
+msgid "Error retrieving the module plugin macros"
+msgstr ""
+
+#: ../../godmode/massive/massive_edit_plugins.php:226
+msgid "Error retrieving the module plugin macros data"
+msgstr ""
+
+#: ../../godmode/massive/massive_edit_plugins.php:264
+msgid "Error building the new macros"
+msgstr ""
+
+#: ../../godmode/massive/massive_edit_plugins.php:290
+#, php-format
+msgid "%d modules updated"
+msgstr ""
+
+#: ../../godmode/massive/massive_edit_plugins.php:321
+msgid "There are not registered plugins"
+msgstr ""
+
+#: ../../godmode/massive/massive_edit_plugins.php:464
+msgid "Invalid plugin data"
+msgstr ""
+
+#: ../../godmode/massive/massive_edit_plugins.php:571
+msgid "Clear"
+msgstr ""
+
+#: ../../godmode/massive/massive_edit_plugins.php:599
+msgid "Invalid macros array"
+msgstr ""
+
+#: ../../godmode/massive/massive_edit_plugins.php:624
+msgid "Multiple values"
+msgstr ""
+
+#: ../../godmode/massive/massive_edit_plugins.php:656
+#: ../../godmode/massive/massive_edit_plugins.php:792
+#: ../../godmode/massive/massive_edit_plugins.php:808
+msgid "Invalid agents array"
+msgstr ""
+
+#: ../../godmode/massive/massive_edit_plugins.php:672
+msgid "Invalid agent element"
+msgstr ""
+
+#: ../../godmode/massive/massive_edit_plugins.php:683
+msgid "Invalid modules array"
+msgstr ""
+
+#: ../../godmode/massive/massive_edit_plugins.php:711
+msgid "Invalid module element"
+msgstr ""
+
+#: ../../godmode/massive/massive_edit_plugins.php:920
+msgid "There are no modules using this plugin"
+msgstr ""
+
+#: ../../godmode/massive/massive_edit_plugins.php:1005
+msgid "There was a problem loading the module plugin macros data"
+msgstr ""
+
+#: ../../godmode/massive/massive_enable_disable_alerts.php:195
+msgid "Enabled alerts"
+msgstr ""
+
+#: ../../godmode/massive/massive_enable_disable_alerts.php:224
+msgid "Disable selected alerts"
+msgstr ""
+
+#: ../../godmode/massive/massive_enable_disable_alerts.php:228
+msgid "Enable selected alerts"
+msgstr ""
+
+#: ../../godmode/massive/massive_enable_disable_alerts.php:230
+msgid "Disabled alerts"
+msgstr ""
+
+#: ../../godmode/massive/massive_edit_modules.php:137
+msgid "Error updating the modules from a module type"
+msgstr ""
+
+#: ../../godmode/massive/massive_edit_modules.php:160
+msgid "Error updating the modules from an agent group"
+msgstr ""
+
+#: ../../godmode/massive/massive_edit_modules.php:178
+msgid "Error updating the modules (maybe there was no field to update)"
+msgstr ""
+
+#: ../../godmode/wizards/HostDevices.class.php:152
+msgid "Net Scan"
+msgstr ""
+
+#: ../../godmode/wizards/HostDevices.class.php:172
+msgid "Custom NetScan"
+msgstr ""
+
+#: ../../godmode/wizards/HostDevices.class.php:180
+msgid "Manage NetScan scripts"
+msgstr ""
+
+#: ../../godmode/wizards/HostDevices.class.php:325
+#, php-format
+msgid "Invalid mimetype for csv file: %s"
+msgstr ""
+
+#: ../../godmode/wizards/HostDevices.class.php:348
+#, php-format
+msgid "Invalid content readed from csv file: %s"
+msgstr ""
+
+#: ../../godmode/wizards/HostDevices.class.php:391
+msgid ""
+"This network scan task has been already defined. Please edit it or create a "
+"new one."
+msgstr ""
+
+#: ../../godmode/wizards/HostDevices.class.php:433
+msgid "You must provide a valid network."
+msgstr ""
+
+#: ../../godmode/wizards/HostDevices.class.php:700
+#, php-format
+msgid "\"%s\" features"
+msgstr ""
+
+#: ../../godmode/wizards/HostDevices.class.php:868
+msgid "Use CSV file definition"
+msgstr ""
+
+#: ../../godmode/wizards/HostDevices.class.php:869
+msgid "Define targets using csv o network definition."
+msgstr ""
+
+#: ../../godmode/wizards/HostDevices.class.php:887
+msgid "Networks (csv)"
+msgstr ""
+
+#: ../../godmode/wizards/HostDevices.class.php:888
+msgid ""
+"You can upload a CSV file. Each line must contain a network in IP/MASK "
+"format. For instance: 192.168.1.1/32"
+msgstr ""
+
+#: ../../godmode/wizards/HostDevices.class.php:900
+msgid "Networks (current)"
+msgstr ""
+
+#: ../../godmode/wizards/HostDevices.class.php:901
+msgid "Please upload a new file to overwrite this content."
+msgstr ""
+
+#: ../../godmode/wizards/HostDevices.class.php:917
+msgid ""
+"You can specify several networks, separated by commas, for example: "
+"192.168.50.0/24,192.168.60.0/24"
+msgstr ""
+
+#: ../../godmode/wizards/HostDevices.class.php:1047
+msgid "Filter by opened ports"
+msgstr ""
+
+#: ../../godmode/wizards/HostDevices.class.php:1049
+msgid ""
+"Targets will be scanned if at least one of defined ports (comma separated) "
+"is open."
+msgstr ""
+
+#: ../../godmode/wizards/HostDevices.class.php:1062
+msgid "Auto discover known hardware"
+msgstr ""
+
+#: ../../godmode/wizards/HostDevices.class.php:1064
+msgid ""
+"Targets will be monitorized based on its <i>Private Enterprise Number</i>. "
+"Requires SNMP."
+msgstr ""
+
+#: ../../godmode/wizards/HostDevices.class.php:1079
+msgid "Module <i>Host Alive</i> will be added to discovered agents by default."
+msgstr ""
+
+#: ../../godmode/wizards/HostDevices.class.php:1127
+#, php-format
+msgid ""
+"Configured networks could generate %d agents, your license only allows %d, "
+"'review results' is mandatory."
+msgstr ""
+
+#: ../../godmode/wizards/HostDevices.class.php:1135
+#: ../../godmode/wizards/DiscoveryTaskList.class.php:908
+msgid "Review results"
+msgstr ""
+
+#: ../../godmode/wizards/HostDevices.class.php:1137
+msgid "Targets must be validated by user before create agents."
+msgstr ""
+
+#: ../../godmode/wizards/HostDevices.class.php:1163
+msgid "Apply autoconfiguration rules"
+msgstr ""
+
+#: ../../godmode/wizards/HostDevices.class.php:1165
+msgid ""
+"System is able to auto configure detected host & devices by applying your "
+"defined configuration rules."
+msgstr ""
+
+#: ../../godmode/wizards/HostDevices.class.php:1181
+msgid "SNMP enabled"
+msgstr ""
+
+#: ../../godmode/wizards/HostDevices.class.php:1223
+msgid "SNMP communities to try with"
+msgstr ""
+
+#: ../../godmode/wizards/HostDevices.class.php:1225
+msgid ""
+"You can specify several values, separated by commas, for example: public,"
+"mysecret,1234"
+msgstr ""
+
+#: ../../godmode/wizards/HostDevices.class.php:1353
+msgid "OS detection"
+msgstr ""
+
+#: ../../godmode/wizards/HostDevices.class.php:1365
+msgid "Name resolution"
+msgstr ""
+
+#: ../../godmode/wizards/HostDevices.class.php:1376
+msgid "Parent detection"
+msgstr ""
+
+#: ../../godmode/wizards/HostDevices.class.php:1387
+msgid "Parent recursion"
+msgstr ""
+
+#: ../../godmode/wizards/HostDevices.class.php:1398
+msgid "VLAN enabled"
+msgstr ""
+
+#: ../../godmode/wizards/HostDevices.class.php:1409
+msgid "WMI enabled"
+msgstr ""
+
+#: ../../godmode/wizards/DiscoveryTaskList.class.php:254
+msgid "Task successfully deleted"
+msgstr ""
+
+#: ../../godmode/wizards/DiscoveryTaskList.class.php:361
+#: ../../godmode/wizards/DiscoveryTaskList.class.php:488
+msgid "Task successfully enabled"
+msgstr ""
+
+#: ../../godmode/wizards/DiscoveryTaskList.class.php:361
+msgid "Task succesfully disabled"
+msgstr ""
+
+#: ../../godmode/wizards/DiscoveryTaskList.class.php:401
+msgid "Console Task successfully deleted"
+msgstr ""
+
+#: ../../godmode/wizards/DiscoveryTaskList.class.php:443
+msgid "Task successfully disabled"
+msgstr ""
+
+#: ../../godmode/wizards/DiscoveryTaskList.class.php:520
+msgid "Discovery Server is disabled"
+msgstr ""
+
+#: ../../godmode/wizards/DiscoveryTaskList.class.php:603
+msgid "Task type"
+msgstr ""
+
+#: ../../godmode/wizards/DiscoveryTaskList.class.php:682
+msgid "This task has not been completely defined, please edit it"
+msgstr ""
+
+#: ../../godmode/wizards/DiscoveryTaskList.class.php:732
+msgid "Discovery Cloud Azure Compute"
+msgstr ""
+
+#: ../../godmode/wizards/DiscoveryTaskList.class.php:736
+msgid "Cloud.Azure.Compute"
+msgstr ""
+
+#: ../../godmode/wizards/DiscoveryTaskList.class.php:745
+msgid "Discovery Cloud AWS EC2"
+msgstr ""
+
+#: ../../godmode/wizards/DiscoveryTaskList.class.php:749
+msgid "Cloud.AWS.EC2"
+msgstr ""
+
+#: ../../godmode/wizards/DiscoveryTaskList.class.php:758
+msgid "Discovery Cloud RDS"
+msgstr ""
+
+#: ../../godmode/wizards/DiscoveryTaskList.class.php:762
+msgid "Discovery.Cloud.Aws.RDS"
+msgstr ""
+
+#: ../../godmode/wizards/DiscoveryTaskList.class.php:771
+msgid "Discovery Cloud S3"
+msgstr ""
+
+#: ../../godmode/wizards/DiscoveryTaskList.class.php:775
+msgid "Discovery.Cloud.Aws.S3"
+msgstr ""
+
+#: ../../godmode/wizards/DiscoveryTaskList.class.php:784
+msgid "Discovery Applications MySQL"
+msgstr ""
+
+#: ../../godmode/wizards/DiscoveryTaskList.class.php:788
+msgid "Discovery.App.MySQL"
+msgstr ""
+
+#: ../../godmode/wizards/DiscoveryTaskList.class.php:797
+msgid "Discovery Applications Oracle"
+msgstr ""
+
+#: ../../godmode/wizards/DiscoveryTaskList.class.php:801
+msgid "Discovery.App.Oracle"
+msgstr ""
+
+#: ../../godmode/wizards/DiscoveryTaskList.class.php:810
+msgid "Discovery Applications DB2"
+msgstr ""
+
+#: ../../godmode/wizards/DiscoveryTaskList.class.php:814
+msgid "Discovery.App.DB2"
+msgstr ""
+
+#: ../../godmode/wizards/DiscoveryTaskList.class.php:825
+msgid "Discovery.Agent.Deployment"
+msgstr ""
+
+#: ../../godmode/wizards/DiscoveryTaskList.class.php:833
+msgid "Discovery Applications Microsoft SQL Server"
+msgstr ""
+
+#: ../../godmode/wizards/DiscoveryTaskList.class.php:835
+msgid "Discovery.App.Microsoft SQL Server"
+msgstr ""
+
+#: ../../godmode/wizards/DiscoveryTaskList.class.php:846
+msgid "Discovery NetScan"
+msgstr ""
+
+#: ../../godmode/wizards/DiscoveryTaskList.class.php:850
+msgid "Discovery.NetScan"
+msgstr ""
+
+#: ../../godmode/wizards/DiscoveryTaskList.class.php:896
+msgid "Not executed yet"
+msgstr ""
+
+#: ../../godmode/wizards/DiscoveryTaskList.class.php:920
+msgid "View summary"
+msgstr ""
+
+#: ../../godmode/wizards/DiscoveryTaskList.class.php:941
+msgid "View map"
+msgstr ""
+
+#: ../../godmode/wizards/DiscoveryTaskList.class.php:965
+#: ../../godmode/wizards/DiscoveryTaskList.class.php:991
+msgid "Edit task"
+msgstr ""
+
+#: ../../godmode/wizards/DiscoveryTaskList.class.php:975
+#: ../../godmode/wizards/DiscoveryTaskList.class.php:1001
+msgid "Delete task"
+msgstr ""
+
+#: ../../godmode/wizards/DiscoveryTaskList.class.php:1014
+msgid "enable task"
+msgstr ""
+
+#: ../../godmode/wizards/DiscoveryTaskList.class.php:1043
+msgid "has no discovery tasks assigned"
+msgstr ""
+
+#: ../../godmode/wizards/DiscoveryTaskList.class.php:1050
+msgid "Server Tasks"
+msgstr ""
+
+#: ../../godmode/wizards/DiscoveryTaskList.class.php:1197
+msgid "Overall Progress"
+msgstr ""
+
+#: ../../godmode/wizards/DiscoveryTaskList.class.php:1216
+msgid "Scanning network"
+msgstr ""
+
+#: ../../godmode/wizards/DiscoveryTaskList.class.php:1220
+msgid "Checking"
+msgstr ""
+
+#: ../../godmode/wizards/DiscoveryTaskList.class.php:1224
+msgid "Finding AFT connectivity"
+msgstr ""
+
+#: ../../godmode/wizards/DiscoveryTaskList.class.php:1228
+msgid "Finding traceroute connectivity"
+msgstr ""
+
+#: ../../godmode/wizards/DiscoveryTaskList.class.php:1232
+msgid "Finding gateway connectivity"
+msgstr ""
+
+#: ../../godmode/wizards/DiscoveryTaskList.class.php:1236
+msgid "Searching for devices..."
+msgstr ""
+
+#: ../../godmode/wizards/DiscoveryTaskList.class.php:1240
+msgid "Analyzing application..."
+msgstr ""
+
+#: ../../godmode/wizards/DiscoveryTaskList.class.php:1244
+msgid "Executing custom queries..."
+msgstr ""
+
+#: ../../godmode/wizards/DiscoveryTaskList.class.php:1248
+msgid "Testing modules..."
+msgstr ""
+
+#: ../../godmode/wizards/DiscoveryTaskList.class.php:1252
+msgid "Processing results..."
+msgstr ""
+
+#: ../../godmode/wizards/DiscoveryTaskList.class.php:1256
+msgid "Processing..."
+msgstr ""
+
+#: ../../godmode/wizards/DiscoveryTaskList.class.php:1369
+msgid "Host&devices total"
+msgstr ""
+
+#: ../../godmode/wizards/DiscoveryTaskList.class.php:1374
+msgid "Agents monitored"
+msgstr ""
+
+#: ../../godmode/wizards/DiscoveryTaskList.class.php:1379
+msgid "Agents pending"
+msgstr ""
+
+#: ../../godmode/wizards/DiscoveryTaskList.class.php:1386
+msgid "Hosts discovered"
+msgstr ""
+
+#: ../../godmode/wizards/DiscoveryTaskList.class.php:1402
+msgid "Responding SNMP"
+msgstr ""
+
+#: ../../godmode/wizards/DiscoveryTaskList.class.php:1407
+msgid "Responding WMI"
+msgstr ""
+
+#: ../../godmode/wizards/DiscoveryTaskList.class.php:1452
+msgid "Task completed."
+msgstr ""
+
+#: ../../godmode/wizards/DiscoveryTaskList.class.php:1454
+msgid "This task has never executed"
+msgstr ""
+
+#: ../../godmode/wizards/DiscoveryTaskList.class.php:1466
+msgid "Task queued, please wait."
+msgstr ""
+
+#: ../../godmode/wizards/DiscoveryTaskList.class.php:1510
+msgid ""
+"Please ensure instances or regions are being monitorized and 'scan and "
+"general monitoring' is enabled."
+msgstr ""
+
+#: ../../godmode/wizards/DiscoveryTaskList.class.php:1528
+#: ../../godmode/wizards/DiscoveryTaskList.class.php:1670
+msgid "Invalid task"
+msgstr ""
+
+#: ../../godmode/wizards/DiscoveryTaskList.class.php:1627
+msgid "Please select devices to be monitored"
+msgstr ""
+
+#: ../../godmode/wizards/DiscoveryTaskList.class.php:1630
+msgid "select all"
+msgstr ""
+
+#: ../../godmode/wizards/DiscoveryTaskList.class.php:1633
+msgid "deselect all"
+msgstr ""
+
+#: ../../godmode/wizards/DiscoveryTaskList.class.php:1636
+msgid "expand all"
+msgstr ""
+
+#: ../../godmode/wizards/DiscoveryTaskList.class.php:1639
+msgid "collapse all"
+msgstr ""
+
+#: ../../godmode/wizards/DiscoveryTaskList.class.php:1653
+msgid "No devices found in temporary resources, please re-launch."
+msgstr ""
+
+#: ../../godmode/wizards/DiscoveryTaskList.class.php:1720
+#, php-format
+msgid "Your selection exceeds the agents available on your license. Limit %d"
+msgstr ""
+
+#: ../../godmode/wizards/DiscoveryTaskList.class.php:1744
+#: ../../godmode/wizards/DiscoveryTaskList.class.php:1763
+msgid "Removed"
+msgstr ""
+
+#: ../../godmode/wizards/DiscoveryTaskList.class.php:1800
+msgid "No changes. Re-Scheduled"
+msgstr ""
+
+#: ../../godmode/wizards/DiscoveryTaskList.class.php:1802
+msgid "Scheduled for creation"
+msgstr ""
+
+#: ../../godmode/wizards/DiscoveryTaskList.class.php:1829
+msgid "Cancelled"
+msgstr ""
+
+#: ../../godmode/wizards/DiscoveryTaskList.class.php:1830
+msgid "Server has been restarted while executing this task, please retry."
+msgstr ""
+
+#: ../../godmode/wizards/DiscoveryTaskList.class.php:1841
+#: ../../godmode/wizards/DiscoveryTaskList.class.php:1858
+msgid "Not started"
+msgstr ""
+
+#: ../../godmode/wizards/DiscoveryTaskList.class.php:1863
+msgid "Searching"
+msgstr ""
+
+#: ../../godmode/agentes/module_manager_editor_web.php:155
+msgid "Debug remotely this module"
+msgstr ""
+
+#: ../../godmode/agentes/module_manager_editor_web.php:158
+msgid "Debug this module once it has been initialized"
+msgstr ""
+
+#: ../../godmode/agentes/module_manager_editor_web.php:205
+msgid "Requests"
+msgstr ""
+
+#: ../../godmode/agentes/module_manager_editor_web.php:208
+msgid "Agent browser id"
+msgstr ""
+
+#: ../../godmode/agentes/module_manager_editor_web.php:214
+msgid "HTTP auth (login)"
+msgstr ""
+
+#: ../../godmode/agentes/module_manager_editor_web.php:217
+msgid "HTTP auth (password)"
+msgstr ""
+
+#: ../../godmode/agentes/module_manager_editor_web.php:231
+msgid "Proxy auth (login)"
+msgstr ""
+
+#: ../../godmode/agentes/module_manager_editor_web.php:235
+msgid "Proxy auth (pass)"
+msgstr ""
+
+#: ../../godmode/agentes/module_manager_editor_web.php:242
+msgid "Proxy auth (server)"
+msgstr ""
+
+#: ../../godmode/agentes/module_manager_editor_web.php:246
+msgid "Proxy auth (realm)"
+msgstr ""
+
+#: ../../godmode/agentes/module_manager_editor_web.php:258
+msgid "There isn't get or post"
+msgstr ""
+
+#: ../../godmode/agentes/module_manager_editor_wmi.php:87
+msgid "Optional. WMI namespace. If unsure leave blank."
+msgstr ""
+
+#: ../../godmode/agentes/module_manager_editor_wmi.php:151
+msgid ""
+"Optional. Substring to look for in the WQL query result. The module returns "
+"1 if found, 0 if not."
+msgstr ""
+
+#: ../../godmode/agentes/module_manager_editor_wmi.php:164
+msgid ""
+"Column number to retrieve from the WQL query result (starting from zero)."
+msgstr ""
+
+#: ../../godmode/agentes/module_manager_editor_prediction.php:110
+msgid "Source module"
+msgstr ""
+
+#: ../../godmode/agentes/module_manager_editor_prediction.php:148
+#: ../../godmode/agentes/module_manager_editor_prediction.php:169
+msgid "Select Module"
+msgstr ""
+
+#: ../../godmode/agentes/module_manager_editor_prediction.php:195
+msgid "Calculation type"
+msgstr ""
+
+#: ../../godmode/agentes/module_manager_editor_prediction.php:203
+msgid "Estimated absolute value"
+msgstr ""
+
+#: ../../godmode/agentes/module_manager_editor_prediction.php:204
+msgid "Calculation of days to reach limit"
+msgstr ""
+
+#: ../../godmode/agentes/module_manager_editor_prediction.php:213
+msgid "Future estimation"
+msgstr ""
+
+#: ../../godmode/agentes/module_manager_editor_prediction.php:228
+msgid "Limit value"
+msgstr ""
+
+#: ../../godmode/agentes/module_manager.php:130
+msgid "Create a new data server module"
+msgstr ""
+
+#: ../../godmode/agentes/module_manager.php:132
+msgid "Create a new network server module"
+msgstr ""
+
+#: ../../godmode/agentes/module_manager.php:136
+msgid "Create a new plugin server module"
+msgstr ""
+
+#: ../../godmode/agentes/module_manager.php:140
+msgid "Create a new WMI server module"
+msgstr ""
+
+#: ../../godmode/agentes/module_manager.php:144
+msgid "Create a new prediction server module"
+msgstr ""
+
+#: ../../godmode/agentes/module_manager.php:148
+msgid "Create a new web Server module"
+msgstr ""
+
+#: ../../godmode/agentes/module_manager.php:211
+msgid "<p>Type</p>"
+msgstr ""
+
+#: ../../godmode/agentes/module_manager.php:241
+msgid "Get more modules on Monitoring Library"
+msgstr ""
+
+#: ../../godmode/agentes/module_manager.php:280
+msgid "There was a problem completing the operation"
+msgstr ""
+
+#: ../../godmode/agentes/module_manager.php:437
+#: ../../godmode/agentes/module_manager.php:478
+#, php-format
+msgid "There was a problem completing the operation. Applied to 0/%d modules."
+msgstr ""
+
+#: ../../godmode/agentes/module_manager.php:443
+#: ../../godmode/agentes/module_manager.php:484
+msgid "Operation finished successfully."
+msgstr ""
+
+#: ../../godmode/agentes/module_manager.php:447
+#: ../../godmode/agentes/module_manager.php:488
+#, php-format
+msgid "There was a problem completing the operation. Applied to %d/%d modules."
+msgstr ""
+
+#: ../../godmode/agentes/module_manager.php:868
+msgid "Del."
+msgstr ""
+
+#: ../../godmode/agentes/module_manager.php:1180
+msgid "Normalize"
+msgstr ""
+
+#: ../../godmode/agentes/module_manager.php:1190
+msgid "Normalize (Disabled)"
+msgstr ""
+
+#: ../../godmode/agentes/module_manager.php:1214
+msgid "Create network component (Disabled)"
+msgstr ""
+
+#: ../../godmode/agentes/module_manager.php:1274
+msgid "Execute action"
+msgstr ""
+
+#: ../../godmode/agentes/configure_field.php:41
+msgid "Update agent custom field"
+msgstr ""
+
+#: ../../godmode/agentes/configure_field.php:43
+msgid "Create agent custom field"
+msgstr ""
+
+#: ../../godmode/agentes/configure_field.php:55
+#: ../../godmode/agentes/configure_field.php:59
+#: ../../godmode/agentes/configure_field.php:63
+#: ../../godmode/agentes/configure_field.php:67
+msgid "Agent Custom Fields Information"
+msgstr ""
+
+#: ../../godmode/agentes/configure_field.php:56
+msgid ""
+"You cannot set the Password type until you clear the combo values and click "
+"on update button."
+msgstr ""
+
+#: ../../godmode/agentes/configure_field.php:60
+msgid ""
+"You cannot unset the enable combo until you clear the combo values and click "
+"on update."
+msgstr ""
+
+#: ../../godmode/agentes/configure_field.php:64
+msgid "If you select Enabled combo the Password type will be disabled."
+msgstr ""
+
+#: ../../godmode/agentes/configure_field.php:68
+msgid "If you select Passord type the Enabled combo will be disabled."
+msgstr ""
+
+#: ../../godmode/agentes/configure_field.php:84
+msgid "Pass type"
+msgstr ""
+
+#: ../../godmode/agentes/configure_field.php:85
+msgid ""
+"The fields with pass type enabled will be displayed like html input type "
+"pass in html"
+msgstr ""
+
+#: ../../godmode/agentes/configure_field.php:106
+msgid "Enabled combo"
+msgstr ""
+
+#: ../../godmode/agentes/configure_field.php:118
+msgid "Combo values"
+msgstr ""
+
+#: ../../godmode/agentes/configure_field.php:119
+msgid "Set values separated by comma"
+msgstr ""
+
+#: ../../godmode/agentes/module_manager_editor_common.php:108
+msgid "Using module component"
+msgstr ""
+
+#: ../../godmode/agentes/module_manager_editor_common.php:413
+msgid "Warning threshold"
+msgstr ""
+
+#: ../../godmode/agentes/module_manager_editor_common.php:415
+#: ../../godmode/agentes/module_manager_editor_common.php:476
+msgid "Min. "
+msgstr ""
+
+#: ../../godmode/agentes/module_manager_editor_common.php:474
+msgid "Critical threshold"
+msgstr ""
+
+#: ../../godmode/agentes/module_manager_editor_common.php:673
+msgid "Dynamic Threshold Interval"
+msgstr ""
+
+#: ../../godmode/agentes/module_manager_editor_common.php:700
+msgid "Dynamic Threshold Min. "
+msgstr ""
+
+#: ../../godmode/agentes/module_manager_editor_common.php:713
+msgid "Dynamic Threshold Max. "
+msgstr ""
+
+#: ../../godmode/agentes/module_manager_editor_common.php:726
+msgid "Dynamic Threshold Two Tailed: "
+msgstr ""
+
+#: ../../godmode/agentes/module_manager_editor_common.php:737
+msgid "Not needed"
+msgstr ""
+
+#: ../../godmode/agentes/module_manager_editor_common.php:1035
+msgid "Tags from policy"
+msgstr ""
+
+#: ../../godmode/agentes/module_manager_editor_common.php:1075
+msgid "Cascade Protection Services"
+msgstr ""
+
+#: ../../godmode/agentes/module_manager_editor_common.php:1109
+#: ../../godmode/agentes/module_manager_editor_common.php:1117
+#: ../../godmode/agentes/module_manager_editor_common.php:1126
+msgid "Cron from"
+msgstr ""
+
+#: ../../godmode/agentes/module_manager_editor_common.php:1113
+#: ../../godmode/agentes/module_manager_editor_common.php:1121
+#: ../../godmode/agentes/module_manager_editor_common.php:1130
+msgid "Cron to"
+msgstr ""
+
+#: ../../godmode/agentes/module_manager_editor_common.php:1166
+msgid "Module parent"
+msgstr ""
+
+#: ../../godmode/agentes/module_manager_editor_common.php:1264
+#: ../../godmode/agentes/module_manager_editor_common.php:1375
+msgid "Direct"
+msgstr ""
+
+#: ../../godmode/agentes/module_manager_editor_common.php:1266
+msgid "Rel. type"
+msgstr ""
+
+#: ../../godmode/agentes/module_manager_editor_common.php:1281
+msgid "Add relationship"
+msgstr ""
+
+#: ../../godmode/agentes/module_manager_editor_common.php:1306
+msgid "Changes"
+msgstr ""
+
+#: ../../godmode/agentes/status_monitor_custom_fields.php:125
+msgid "Show monitor detail fields"
+msgstr ""
+
+#: ../../godmode/agentes/configurar_agente.php:243
+#: ../../godmode/agentes/configurar_agente.php:1040
+msgid "No agent alias specified"
+msgstr ""
+
+#: ../../godmode/agentes/configurar_agente.php:246
+msgid "Agent cannot be created due to the maximum agent limit for this group"
+msgstr ""
+
+#: ../../godmode/agentes/configurar_agente.php:352
+msgid "Could not be created, because name already exists"
+msgstr ""
+
+#: ../../godmode/agentes/configurar_agente.php:354
+msgid "Could not be created, because IP already exists"
+msgstr ""
+
+#: ../../godmode/agentes/configurar_agente.php:744
+msgid "Gis"
+msgstr ""
+
+#: ../../godmode/agentes/configurar_agente.php:786
+msgid "SNMP explorer"
+msgstr ""
+
+#: ../../godmode/agentes/configurar_agente.php:827
+msgid "Agent manager"
+msgstr ""
+
+#: ../../godmode/agentes/configurar_agente.php:912
+#: ../../godmode/agentes/configurar_agente.php:916
+msgid "No data to normalize"
+msgstr ""
+
+#: ../../godmode/agentes/configurar_agente.php:921
+#, php-format
+msgid "Deleted data above %f"
+msgstr ""
+
+#: ../../godmode/agentes/configurar_agente.php:922
+#, php-format
+msgid "Error normalizing module %s"
+msgstr ""
+
+#: ../../godmode/agentes/configurar_agente.php:1050
+#, php-format
+msgid "The group id %d is incorrect."
+msgstr ""
+
+#: ../../godmode/agentes/configurar_agente.php:1052
+msgid "Agent cannot be updated due to the maximum agent limit for this group"
+msgstr ""
+
+#: ../../godmode/agentes/configurar_agente.php:1054
+msgid "Duplicate main IP address"
+msgstr ""
+
+#: ../../godmode/agentes/configurar_agente.php:1106
+msgid "There was a problem updating the agent"
+msgstr ""
+
+#: ../../godmode/agentes/configurar_agente.php:1199
+msgid "There was a problem loading the agent"
+msgstr ""
+
+#: ../../godmode/agentes/configurar_agente.php:1709
+msgid ""
+"There was a problem updating module. Another module already exists with the "
+"same name."
+msgstr ""
+
+#: ../../godmode/agentes/configurar_agente.php:1713
+msgid ""
+"There was a problem updating module. Some required fields are missed: (name)"
+msgstr ""
+
+#: ../../godmode/agentes/configurar_agente.php:1717
+msgid "There was a problem updating module. \"No change\""
+msgstr ""
+
+#: ../../godmode/agentes/configurar_agente.php:1723
+msgid "There was a problem updating module. Processing error"
+msgstr ""
+
+#: ../../godmode/agentes/configurar_agente.php:1752
+msgid "Module successfully updated"
+msgstr ""
+
+#: ../../godmode/agentes/configurar_agente.php:1899
+msgid ""
+"There was a problem adding module. Another module already exists with the "
+"same name."
+msgstr ""
+
+#: ../../godmode/agentes/configurar_agente.php:1903
+msgid ""
+"There was a problem adding module. Some required fields are missed : (name)"
+msgstr ""
+
+#: ../../godmode/agentes/configurar_agente.php:1909
+msgid "There was a problem adding module. Processing error"
+msgstr ""
+
+#: ../../godmode/agentes/configurar_agente.php:2089
+msgid "There was a problem deleting the module"
+msgstr ""
+
+#: ../../godmode/agentes/configurar_agente.php:2093
+msgid "Module deleted succesfully"
+msgstr ""
+
+#: ../../godmode/agentes/configurar_agente.php:2339
+#: ../../godmode/agentes/configurar_agente.php:2351
+msgid "Invalid tab specified"
+msgstr ""
+
+#: ../../godmode/agentes/agent_manager.php:241
+msgid "Delete agent"
+msgstr ""
+
+#: ../../godmode/agentes/agent_manager.php:272
+msgid "QR Code Agent view"
+msgstr ""
+
+#: ../../godmode/agentes/agent_manager.php:293
+msgid "Use alias as name"
+msgstr ""
+
+#: ../../godmode/agentes/agent_manager.php:335
+msgid "Primary group"
+msgstr ""
+
+#: ../../godmode/agentes/agent_manager.php:520
+msgid "Cascade protection services"
+msgstr ""
+
+#: ../../godmode/agentes/agent_manager.php:609
+msgid "Disabled mode"
+msgstr ""
+
+#: ../../godmode/agentes/agent_manager.php:706
+msgid "Update new GIS data:"
+msgstr ""
+
+#: ../../godmode/agentes/agent_manager.php:764
+msgid "Click to display"
+msgstr ""
+
+#: ../../godmode/agentes/agent_manager.php:1016
+msgid "Secondary group cannot be primary too."
+msgstr ""
+
+#: ../../godmode/agentes/planned_downtime.export_csv.php:202
+#: ../../godmode/agentes/planned_downtime.list.php:574
+msgid "No scheduled downtime"
+msgstr ""
+
+#: ../../godmode/agentes/module_manager_editor.php:718
+msgid "Invalid module type"
+msgstr ""
+
+#: ../../godmode/agentes/module_manager_editor.php:762
+msgid "Module relations"
+msgstr ""
+
+#: ../../godmode/agentes/module_manager_editor.php:852
+msgid "No module to predict"
+msgstr ""
+
+#: ../../godmode/agentes/module_manager_editor.php:862
+msgid "No plug-in provided"
+msgstr ""
+
+#: ../../godmode/agentes/module_manager_editor.php:872
+msgid "No server provided"
+msgstr ""
+
+#: ../../godmode/agentes/module_manager_editor.php:903
+msgid ""
+"Error, The field name and name in module_name in data configuration are "
+"different."
+msgstr ""
+
+#: ../../godmode/agentes/module_manager_editor.php:941
+msgid "The File APIs are not fully supported in this browser."
+msgstr ""
+
+#: ../../godmode/agentes/module_manager_editor.php:942
+msgid "Couldn`t find the fileinput element."
+msgstr ""
+
+#: ../../godmode/agentes/module_manager_editor.php:943
+msgid "This browser doesn`t seem to support the files property of file inputs."
+msgstr ""
+
+#: ../../godmode/agentes/module_manager_editor.php:944
+msgid "Please select a file before clicking Load"
+msgstr ""
+
+#: ../../godmode/agentes/planned_downtime.editor.php:208
+#: ../../godmode/agentes/planned_downtime.editor.php:1123
+#: ../../godmode/agentes/planned_downtime.editor.php:1258
+msgid "This elements cannot be modified while the downtime is being executed"
+msgstr ""
+
+#: ../../godmode/agentes/planned_downtime.editor.php:583
+msgid "Quiet: Modules will not generate events or fire alerts."
+msgstr ""
+
+#: ../../godmode/agentes/planned_downtime.editor.php:583
+msgid "Disable Agents: Disables the selected agents."
+msgstr ""
+
+#: ../../godmode/agentes/planned_downtime.editor.php:583
+msgid "Disable Alerts: Disable alerts for the selected agents."
+msgstr ""
+
+#: ../../godmode/agentes/planned_downtime.editor.php:589
+#: ../../godmode/agentes/planned_downtime.list.php:656
+msgid "Disabled Agents"
+msgstr ""
+
+#: ../../godmode/agentes/planned_downtime.editor.php:590
+#: ../../godmode/agentes/planned_downtime.list.php:657
+msgid "Disabled only Alerts"
+msgstr ""
+
+#: ../../godmode/agentes/planned_downtime.editor.php:606
+#: ../../godmode/agentes/planned_downtime.list.php:318
+msgid "Once"
+msgstr ""
+
+#: ../../godmode/agentes/planned_downtime.editor.php:607
+#: ../../godmode/agentes/planned_downtime.list.php:319
+#: ../../godmode/agentes/planned_downtime.list.php:664
+msgid "Periodically"
+msgstr ""
+
+#: ../../godmode/agentes/planned_downtime.editor.php:622
+msgid "Configure the time"
+msgstr ""
+
+#: ../../godmode/agentes/planned_downtime.editor.php:641
+msgid "Type Periodicity:"
+msgstr ""
+
+#: ../../godmode/agentes/planned_downtime.editor.php:673
+msgid "From day:"
+msgstr ""
+
+#: ../../godmode/agentes/planned_downtime.editor.php:687
+msgid "To day:"
+msgstr ""
+
+#: ../../godmode/agentes/planned_downtime.editor.php:706
+msgid "From hour:"
+msgstr ""
+
+#: ../../godmode/agentes/planned_downtime.editor.php:719
+msgid "To hour:"
+msgstr ""
+
+#: ../../godmode/agentes/planned_downtime.editor.php:795
+msgid "Group filter"
+msgstr ""
+
+#: ../../godmode/agentes/planned_downtime.editor.php:829
+msgid "Available modules:"
+msgstr ""
+
+#: ../../godmode/agentes/planned_downtime.editor.php:830
+msgid "Only for type Quiet for downtimes."
+msgstr ""
+
+#: ../../godmode/agentes/planned_downtime.editor.php:888
+msgid "Agents planned for this downtime"
+msgstr ""
+
+#: ../../godmode/agentes/planned_downtime.editor.php:906
+msgid "There are no agents"
+msgstr ""
+
+#: ../../godmode/agentes/planned_downtime.editor.php:948
+msgid "All alerts"
+msgstr ""
+
+#: ../../godmode/agentes/planned_downtime.editor.php:950
+msgid "Entire agent"
+msgstr ""
+
+#: ../../godmode/agentes/planned_downtime.editor.php:953
+#: ../../godmode/agentes/planned_downtime.editor.php:1075
+msgid "All modules"
+msgstr ""
+
+#: ../../godmode/agentes/planned_downtime.editor.php:955
+#: ../../godmode/agentes/planned_downtime.editor.php:1067
+#: ../../godmode/agentes/planned_downtime.editor.php:1071
+msgid "Some modules"
+msgstr ""
+
+#: ../../godmode/agentes/planned_downtime.editor.php:1021
+msgid "Add Module:"
+msgstr ""
+
+#: ../../godmode/agentes/planned_downtime.editor.php:1523
+msgid ""
+"WARNING: If you edit this scheduled downtime, the data of future SLA reports "
+"may be altered"
+msgstr ""
+
+#: ../../godmode/agentes/planned_downtime.list.php:206
+msgid "An error occurred stopping the scheduled downtime"
+msgstr ""
+
+#: ../../godmode/agentes/planned_downtime.list.php:233
+msgid "This scheduled downtime is running"
+msgstr ""
+
+#: ../../godmode/agentes/planned_downtime.list.php:333
+msgid "Show past downtimes"
+msgstr ""
+
+#: ../../godmode/agentes/planned_downtime.list.php:610
+msgid "Name #Ag."
+msgstr ""
+
+#: ../../godmode/agentes/planned_downtime.list.php:617
+msgid "Affected"
+msgstr ""
+
+#: ../../godmode/agentes/planned_downtime.list.php:622
+#: ../../godmode/agentes/planned_downtime.list.php:725
+#: ../../godmode/agentes/planned_downtime.list.php:731
+msgid "Stop downtime"
+msgstr ""
+
+#: ../../godmode/agentes/planned_downtime.list.php:663
+msgid "once"
+msgstr ""
+
+#: ../../godmode/agentes/planned_downtime.list.php:678
+msgid "Not running"
+msgstr ""
+
+#: ../../godmode/agentes/planned_downtime.list.php:696
+msgid "Agents / Modules affected"
+msgstr ""
+
+#: ../../godmode/agentes/planned_downtime.list.php:705
+msgid "Agents and modules affected"
+msgstr ""
+
+#: ../../godmode/agentes/planned_downtime.list.php:903
+msgid ""
+"WARNING: If you delete this scheduled downtime, it will not be taken into "
+"account in future SLA reports"
+msgstr ""
+
+#: ../../godmode/agentes/planned_downtime.list.php:909
+msgid "WARNING: There are malformed scheduled downtimes"
+msgstr ""
+
+#: ../../godmode/agentes/planned_downtime.list.php:909
+msgid "Do you want to migrate automatically the malformed items?"
+msgstr ""
+
+#: ../../godmode/agentes/agent_conf_gis.php:50
+msgid ""
+"There is no GIS data for this agent, so it's positioned in default position "
+"of map."
+msgstr ""
+
+#: ../../godmode/agentes/agent_conf_gis.php:58
+msgid ""
+"When you change the Agent position, the agent automatically activates the "
+"'Ignore new GIS data' option"
+msgstr ""
+
+#: ../../godmode/agentes/agent_conf_gis.php:67
+msgid "Agent position"
+msgstr ""
+
+#: ../../godmode/agentes/agent_conf_gis.php:73
+msgid "Latitude: "
+msgstr ""
+
+#: ../../godmode/agentes/agent_conf_gis.php:90
+msgid "Longitude: "
+msgstr ""
+
+#: ../../godmode/agentes/agent_conf_gis.php:107
+msgid "Altitude: "
+msgstr ""
+
+#: ../../godmode/agentes/fields_manager.php:30
+msgid "Agents custom fields manager"
+msgstr ""
+
+#: ../../godmode/agentes/fields_manager.php:48
+msgid "The name must be unique"
+msgstr ""
+
+#: ../../godmode/agentes/fields_manager.php:59
+msgid "Field successfully created"
+msgstr ""
+
+#: ../../godmode/agentes/fields_manager.php:80
+msgid "Field successfully updated"
+msgstr ""
+
+#: ../../godmode/agentes/fields_manager.php:82
+msgid "There was a problem modifying field"
+msgstr ""
+
+#: ../../godmode/agentes/fields_manager.php:94
+msgid "There was a problem deleting field"
+msgstr ""
+
+#: ../../godmode/agentes/fields_manager.php:96
+msgid "Field successfully deleted"
+msgstr ""
+
+#: ../../godmode/agentes/fields_manager.php:168
+msgid "Create field"
+msgstr ""
+
+#: ../../godmode/agentes/agent_incidents.php:69
+msgid "No incidents associated to this agent"
+msgstr ""
+
+#: ../../godmode/agentes/agent_incidents.php:90
+msgid "Incident"
+msgstr ""
+
+#: ../../godmode/agentes/agent_template.php:156
+msgid "Error adding modules"
+msgstr ""
+
+#: ../../godmode/agentes/agent_template.php:158
+msgid "Error adding modules. The following errors already exists: "
+msgstr ""
+
+#: ../../godmode/agentes/agent_template.php:188
+msgid "Assign"
+msgstr ""
+
+#: ../../godmode/agentes/module_manager_editor_network.php:266
+msgid "SNMP walk"
+msgstr ""
+
+#: ../../godmode/agentes/module_manager_editor_network.php:448
+msgid ""
+"Please use single quotation marks when necessary. \n"
+"\n"
+"If double quotation marks are needed, please escape them with a backslash "
+"(\\&quot;)"
+msgstr ""
+
+#: ../../godmode/agentes/module_manager_editor_network.php:479
+msgid "Windows remote"
+msgstr ""
+
+#: ../../godmode/agentes/modificar_agente.php:95
+#, php-format
+msgid "Agents defined in %s"
+msgstr ""
+
+#: ../../godmode/agentes/modificar_agente.php:124
+#, php-format
+msgid ""
+"This node is configured with centralized mode. Go to %s to delete an agent"
+msgstr ""
+
+#: ../../godmode/agentes/modificar_agente.php:170
+msgid "Success deleted agent."
+msgstr ""
+
+#: ../../godmode/agentes/modificar_agente.php:171
+msgid "Could not be deleted."
+msgstr ""
+
+#: ../../godmode/agentes/modificar_agente.php:186
+msgid "Maybe the files conf or md5 could not be deleted"
+msgstr ""
+
+#: ../../godmode/agentes/modificar_agente.php:320
+msgid "Show Agents"
+msgstr ""
+
+#: ../../godmode/agentes/modificar_agente.php:322
+msgid "Everyone"
+msgstr ""
+
+#: ../../godmode/agentes/modificar_agente.php:336
+msgid "Operative System"
+msgstr ""
+
+#: ../../godmode/agentes/modificar_agente.php:367
+msgid ""
+"Search filter by alias, name, description, IP address or custom fields "
+"content"
+msgstr ""
+
+#: ../../godmode/agentes/modificar_agente.php:648
+msgid "Remote agent configuration"
+msgstr ""
+
+#: ../../godmode/agentes/modificar_agente.php:648
+msgid "R"
+msgstr ""
+
+#: ../../godmode/agentes/modificar_agente.php:858
+msgid "Edit remote config"
+msgstr ""
+
+#: ../../godmode/agentes/modificar_agente.php:908
+msgid "You are going to enable a cluster agent. Are you sure?"
+msgstr ""
+
+#: ../../godmode/agentes/modificar_agente.php:911
+msgid "Enable agent"
+msgstr ""
+
+#: ../../godmode/agentes/modificar_agente.php:918
+msgid "You are going to disable a cluster agent. Are you sure?"
+msgstr ""
+
+#: ../../godmode/agentes/modificar_agente.php:921
+msgid "Disable agent"
+msgstr ""
+
+#: ../../godmode/agentes/modificar_agente.php:931
+msgid "WARNING! - You are going to delete a cluster agent. Are you sure?"
+msgstr ""
+
+#: ../../godmode/alerts/configure_alert_template.php:250
+#: ../../godmode/alerts/configure_alert_template.php:254
+msgid "Conditions"
+msgstr ""
+
+#: ../../godmode/alerts/configure_alert_template.php:271
+#: ../../godmode/alerts/configure_alert_template.php:275
+msgid "Advanced fields"
+msgstr ""
+
+#: ../../godmode/alerts/configure_alert_template.php:419
+#, php-format
+msgid ""
+"This node is configured with centralized mode. All alerts templates "
+"information is read only. Go to Go to %s to manage it."
+msgstr ""
+
+#: ../../godmode/alerts/configure_alert_template.php:531
+msgid "No template name specified"
+msgstr ""
+
+#: ../../godmode/alerts/configure_alert_template.php:712
+msgid "Reset counter for non-sustained alerts"
+msgstr ""
+
+#: ../../godmode/alerts/configure_alert_template.php:714
+msgid ""
+"Enable this option if you want the counter to be reset when the alert is not "
+"being fired consecutively, even if it's within the time threshold"
+msgstr ""
+
+#: ../../godmode/alerts/configure_alert_template.php:788
+msgid ""
+"Unless they're left blank, the fields from the action will override those "
+"set on the template."
+msgstr ""
+
+#: ../../godmode/alerts/configure_alert_template.php:792
+msgid "Condition type"
+msgstr ""
+
+#: ../../godmode/alerts/configure_alert_template.php:809
+msgid "Trigger when matches the value"
+msgstr ""
+
+#: ../../godmode/alerts/configure_alert_template.php:832
+msgid "The regular expression is valid"
+msgstr ""
+
+#: ../../godmode/alerts/configure_alert_template.php:842
+msgid "The regular expression is not valid"
+msgstr ""
+
+#: ../../godmode/alerts/configure_alert_template.php:897
+msgid "Alert recovery"
+msgstr ""
+
+#: ../../godmode/alerts/configure_alert_template.php:919
+msgid "Recovery fields"
+msgstr ""
+
+#: ../../godmode/alerts/configure_alert_template.php:1136
+msgid "No wizard"
+msgstr ""
+
+#: ../../godmode/alerts/configure_alert_template.php:1217
+#, php-format
+msgid "The alert would fire when the value doesn\\'t match %s"
+msgstr ""
+
+#: ../../godmode/alerts/configure_alert_template.php:1221
+msgid ""
+"The alert would fire when the value is not between <span id=min></span> and "
+"<span id=max></span>"
+msgstr ""
+
+#: ../../godmode/alerts/configure_alert_template.php:1222
+#: ../../godmode/alerts/alert_view.php:200
+msgid "The alert would fire when the value is below <span id=\"min\"></span>"
+msgstr ""
+
+#: ../../godmode/alerts/configure_alert_template.php:1223
+#: ../../godmode/alerts/alert_view.php:205
+msgid "The alert would fire when the value is above <span id=\"max\"></span>"
+msgstr ""
+
+#: ../../godmode/alerts/configure_alert_template.php:1226
+#: ../../godmode/alerts/alert_view.php:211
+msgid "The alert would fire when the module value changes"
+msgstr ""
+
+#: ../../godmode/alerts/configure_alert_template.php:1227
+#: ../../godmode/alerts/alert_view.php:213
+msgid "The alert would fire when the module value does not change"
+msgstr ""
+
+#: ../../godmode/alerts/configure_alert_template.php:1228
+#: ../../godmode/alerts/alert_view.php:230
+msgid "The alert would fire when the module is in unknown status"
+msgstr ""
+
+#: ../../godmode/alerts/configure_alert_template.php:1229
+msgid ""
+"The alert template cannot have the same value for min and max thresholds."
+msgstr ""
+
+#: ../../godmode/alerts/configure_alert_template.php:1230
+#: ../../godmode/alerts/alert_view.php:226
+msgid "The alert would fire when the module is in not normal status"
+msgstr ""
+
+#: ../../godmode/alerts/configure_alert_template.php:1407
+msgid ""
+"The alert would fire when the module is in unknown status. Warning: "
+"unknown_updates of pandora_server.conf must be equal to 1"
+msgstr ""
+
+#: ../../godmode/alerts/alert_list.list.php:123
+msgid "Field content"
+msgstr ""
+
+#: ../../godmode/alerts/alert_list.list.php:662
+#: ../../godmode/alerts/alert_view.php:317
+msgid ""
+"The default actions will be executed every time that the alert is fired and "
+"no other action is executed"
+msgstr ""
+
+#: ../../godmode/alerts/alert_list.list.php:930
+msgid "View alert advanced details"
+msgstr ""
+
+#: ../../godmode/alerts/alert_actions.php:222
+#: ../../godmode/alerts/configure_alert_action.php:120
+#, php-format
+msgid ""
+"This node is configured with centralized mode. All alert actions information "
+"is read only. Go to %s to manage it."
+msgstr ""
+
+#: ../../godmode/alerts/alert_actions.php:396
+msgid ""
+"You cannot edit this action, You don't have the permission to edit All group."
+msgstr ""
+
+#: ../../godmode/alerts/alert_actions.php:407
+msgid ""
+"The action and the command associated with it do not have the same group. "
+"Please contact an administrator to fix it."
+msgstr ""
+
+#: ../../godmode/alerts/alert_actions.php:465
+msgid "No alert actions configured"
+msgstr ""
+
+#: ../../godmode/alerts/alert_list.builder.php:91
+msgid "Latest value"
+msgstr ""
+
+#: ../../godmode/alerts/alert_list.builder.php:201
+msgid "Finish and view cluster"
+msgstr ""
+
+#: ../../godmode/alerts/alert_templates.php:268
+#, php-format
+msgid ""
+"This node is configured with centralized mode. All alert templates "
+"information is read only. Go to %s to manage it."
+msgstr ""
+
+#: ../../godmode/alerts/alert_templates.php:412
+msgid ""
+"You cannot edit this alert template, You don't have the permission to edit "
+"All group."
+msgstr ""
+
+#: ../../godmode/alerts/alert_templates.php:473
+msgid "No alert templates defined"
+msgstr ""
+
+#: ../../godmode/alerts/alert_commands.php:143
+msgid ""
+"For sending emails, text must be HTML format, if you want to use plain text, "
+"type it between the following labels: <pre></pre>"
+msgstr ""
+
+#: ../../godmode/alerts/alert_commands.php:219
+#: ../../godmode/alerts/alert_commands.php:250
+msgid "Text/plain"
+msgstr ""
+
+#: ../../godmode/alerts/alert_commands.php:221
+#: ../../godmode/alerts/alert_commands.php:252
+msgid "For sending emails only text plain"
+msgstr ""
+
+#: ../../godmode/alerts/alert_commands.php:235
+#: ../../godmode/alerts/alert_commands.php:266
+msgid "Text/html"
+msgstr ""
+
+#: ../../godmode/alerts/alert_commands.php:474
+msgid "Permissions warning"
+msgstr ""
+
+#: ../../godmode/alerts/alert_commands.php:477
+msgid ""
+"Command management is limited to administrator users or user profiles with "
+"permissions PM"
+msgstr ""
+
+#: ../../godmode/alerts/alert_commands.php:494
+msgid "Alert commands"
+msgstr ""
+
+#: ../../godmode/alerts/alert_commands.php:619
+msgid " (copy)"
+msgstr ""
+
+#: ../../godmode/alerts/alert_commands.php:643
+#: ../../godmode/alerts/configure_alert_command.php:196
+#, php-format
+msgid ""
+"This node is configured with centralized mode. All alert commands "
+"information is read only. Go to %s to manage it."
+msgstr ""
+
+#: ../../godmode/alerts/alert_commands.php:740
+msgid "No alert commands configured"
+msgstr ""
+
+#: ../../godmode/alerts/alert_list.php:115
+msgid "Already added"
+msgstr ""
+
+#: ../../godmode/alerts/alert_list.php:169
+msgid "No template specified"
+msgstr ""
+
+#: ../../godmode/alerts/alert_list.php:480
+#: ../../godmode/alerts/alert_view.php:83
+#: ../../godmode/alerts/alert_view.php:84
+msgid "List alerts"
+msgstr ""
+
+#: ../../godmode/alerts/alert_list.php:484
+msgid "Builder alert"
+msgstr ""
+
+#: ../../godmode/alerts/configure_alert_command.php:60
+msgid "Configure alert command"
+msgstr ""
+
+#: ../../godmode/alerts/configure_alert_command.php:207
+msgid "Update Command"
+msgstr ""
+
+#: ../../godmode/alerts/configure_alert_command.php:207
+#: ../../godmode/alerts/configure_alert_action.php:275
+msgid "Create Command"
+msgstr ""
+
+#: ../../godmode/alerts/configure_alert_command.php:297
+#, php-format
+msgid "Field %s description"
+msgstr ""
+
+#: ../../godmode/alerts/configure_alert_command.php:325
+#, php-format
+msgid "Field %s values"
+msgstr ""
+
+#: ../../godmode/alerts/configure_alert_command.php:327
+msgid "value1,tag1;value2,tag2;value3,tag3"
+msgstr ""
+
+#: ../../godmode/alerts/configure_alert_command.php:363
+msgid "Hide"
+msgstr ""
+
+#: ../../godmode/alerts/alert_view.php:281
+msgid "Firing conditions"
+msgstr ""
+
+#: ../../godmode/alerts/alert_view.php:305
+#: ../../godmode/alerts/alert_view.php:339
+msgid "Every time that the alert is fired"
+msgstr ""
+
+#: ../../godmode/alerts/alert_view.php:385
+msgid ""
+"Select the desired action and mode to see the Firing/Recovery fields for "
+"this action"
+msgstr ""
+
+#: ../../godmode/alerts/alert_view.php:446
+msgid "Template fields"
+msgstr ""
+
+#: ../../godmode/alerts/alert_view.php:448
+msgid "Triggering fields configured in template"
+msgstr ""
+
+#: ../../godmode/alerts/alert_view.php:542
+msgid "The alert recovering is disabled on this template."
+msgstr ""
+
+#: ../../godmode/alerts/alert_view.php:558
+msgid "Recovering fields"
+msgstr ""
+
+#: ../../godmode/alerts/alert_view.php:560
+msgid ""
+"Fields passed to the command executed by this action when the alert is "
+"recovered"
+msgstr ""
+
+#: ../../godmode/alerts/alert_view.php:574
+msgid "Template recovery fields"
+msgstr ""
+
+#: ../../godmode/alerts/alert_view.php:576
+msgid "Recovery fields configured in alert template"
+msgstr ""
+
+#: ../../godmode/alerts/alert_view.php:579
+msgid "Action recovery fields"
+msgstr ""
+
+#: ../../godmode/alerts/alert_view.php:581
+msgid "Recovery fields configured in alert action"
+msgstr ""
+
+#: ../../godmode/alerts/alert_view.php:584
+msgid "Executed on recovery"
+msgstr ""
+
+#: ../../godmode/alerts/alert_view.php:586
+msgid "Fields used on execution when the alert is recovered"
+msgstr ""
+
+#: ../../godmode/alerts/configure_alert_action.php:74
+#: ../../godmode/alerts/configure_alert_action.php:87
+msgid "Configure alert action"
+msgstr ""
+
+#: ../../godmode/alerts/configure_alert_action.php:167
+msgid "Update Action"
+msgstr ""
+
+#: ../../godmode/alerts/configure_alert_action.php:204
+msgid "This action may stop working, if you change its name."
+msgstr ""
+
+#: ../../godmode/alerts/configure_alert_action.php:306
+msgid "Recovery"
+msgstr ""
+
+#: ../../godmode/alerts/configure_alert_action.php:330
+msgid "Create workunit on recovery"
+msgstr ""
+
+#: ../../godmode/alerts/configure_alert_action.php:331
+msgid ""
+"If closed status is set on recovery, a workunit will be added to the ticket "
+"in Integria IMS rather that closing the ticket."
+msgstr ""
+
+#: ../../godmode/users/user_list.php:250
+#, php-format
+msgid "Users defined on %s"
+msgstr ""
+
+#: ../../godmode/users/user_list.php:287
+#: ../../godmode/users/configure_user.php:151
+#, php-format
+msgid "Deleted user %s"
+msgstr ""
+
+#: ../../godmode/users/user_list.php:294 ../../godmode/users/user_list.php:332
+#: ../../godmode/users/configure_user.php:158
+msgid "There was a problem deleting the user"
+msgstr ""
+
+#: ../../godmode/users/user_list.php:308
+#: ../../godmode/users/configure_user.php:173
+#, php-format
+msgid "Deleted user %s from metaconsole"
+msgstr ""
+
+#: ../../godmode/users/user_list.php:320
+#: ../../godmode/users/configure_user.php:184
+#, php-format
+msgid "Deleted user %s from %s"
+msgstr ""
+
+#: ../../godmode/users/user_list.php:326
+#: ../../godmode/users/configure_user.php:190
+#, php-format
+msgid "Successfully deleted from %s"
+msgstr ""
+
+#: ../../godmode/users/user_list.php:327
+#: ../../godmode/users/configure_user.php:191
+#, php-format
+msgid "There was a problem deleting the user from %s"
+msgstr ""
+
+#: ../../godmode/users/user_list.php:341
+#: ../../godmode/users/profile_list.php:127
+msgid "There was a problem deleting the profile"
+msgstr ""
+
+#: ../../godmode/users/user_list.php:367
+msgid "There was a problem disabling user"
+msgstr ""
+
+#: ../../godmode/users/user_list.php:373
+msgid "There was a problem enabling user"
+msgstr ""
+
+#: ../../godmode/users/user_list.php:484
+msgid "Profile / Group"
+msgstr ""
+
+#: ../../godmode/users/user_list.php:714
+msgid "Other profiles are also assigned."
+msgstr ""
+
+#: ../../godmode/users/user_list.php:716
+msgid ""
+"Other profiles you cannot manage are also assigned. These profiles are not "
+"shown. You cannot enable/disable or delete this user."
+msgstr ""
+
+#: ../../godmode/users/user_list.php:873
+#: ../../godmode/users/configure_user.php:208
+msgid "Create user"
+msgstr ""
+
+#: ../../godmode/users/user_list.php:876
+#: ../../godmode/users/configure_user.php:317
+#, php-format
+msgid "The current authentication scheme doesn't support creating users on %s"
+msgstr ""
+
+#: ../../godmode/users/configure_user.php:206
+msgid "Update user"
+msgstr ""
+
+#: ../../godmode/users/configure_user.php:403
+msgid "User ID cannot be empty"
+msgstr ""
+
+#: ../../godmode/users/configure_user.php:410
+msgid "Invalid user ID: leading or trailing blank spaces not allowed"
+msgstr ""
+
+#: ../../godmode/users/configure_user.php:418
+msgid "Passwords cannot be empty"
+msgstr ""
+
+#: ../../godmode/users/configure_user.php:425
+msgid "Passwords didn't match"
+msgstr ""
+
+#: ../../godmode/users/configure_user.php:484
+msgid ""
+"Strict ACL is not recommended for admin users because performance could be "
+"affected."
+msgstr ""
+
+#: ../../godmode/users/configure_user.php:519
+#: ../../godmode/users/configure_user.php:806
+msgid "Profile added successfully"
+msgstr ""
+
+#: ../../godmode/users/configure_user.php:520
+#: ../../godmode/users/configure_user.php:807
+msgid "Profile cannot be added"
+msgstr ""
+
+#: ../../godmode/users/configure_user.php:644
+#: ../../godmode/users/configure_user.php:668
+#: ../../godmode/users/configure_user.php:738
+#: ../../godmode/users/configure_user.php:745
+#: ../../godmode/users/configure_user.php:777
+msgid "Error updating user info (no change?)"
+msgstr ""
+
+#: ../../godmode/users/configure_user.php:673
+msgid "Password of the active user is required to perform password change"
+msgstr ""
+
+#: ../../godmode/users/configure_user.php:675
+msgid "Password of active user is not correct"
+msgstr ""
+
+#: ../../godmode/users/configure_user.php:691
+msgid "Passwords does not match"
+msgstr ""
+
+#: ../../godmode/users/configure_user.php:766
+msgid ""
+"Strict ACL is not recommended for this user. Performance could be affected."
+msgstr ""
+
+#: ../../godmode/users/configure_user.php:845
+msgid "Update User"
+msgstr ""
+
+#: ../../godmode/users/configure_user.php:847
+msgid "Create User"
+msgstr ""
+
+#: ../../godmode/users/configure_user.php:968
+msgid "Own password confirmation"
+msgstr ""
+
+#: ../../godmode/users/configure_user.php:977
+msgid "Global Profile"
+msgstr ""
+
+#: ../../godmode/users/configure_user.php:985
+msgid ""
+"This user has permissions to manage all. An admin user should not requiere "
+"additional group permissions, except for using Enterprise ACL."
+msgstr ""
+
+#: ../../godmode/users/configure_user.php:1000
+msgid ""
+"This user has separated permissions to view data in his group agents, create "
+"incidents belong to his groups, add notes in another incidents, create "
+"personal assignments or reviews and other tasks, on different profiles"
+msgstr ""
+
+#: ../../godmode/users/configure_user.php:1081
+msgid "Search custom field view"
+msgstr ""
+
+#: ../../godmode/users/configure_user.php:1081
+msgid "Load by default the selected view in custom field view"
+msgstr ""
+
+#: ../../godmode/users/configure_user.php:1098
+msgid "Use global conf"
+msgstr ""
+
+#: ../../godmode/users/configure_user.php:1115
+msgid "External link"
+msgstr ""
+
+#: ../../godmode/users/configure_user.php:1208
+msgid "Metaconsole access"
+msgstr ""
+
+#: ../../godmode/users/configure_user.php:1226
+msgid "Not Login"
+msgstr ""
+
+#: ../../godmode/users/configure_user.php:1228
+msgid "The user with not login set only can access to API."
+msgstr ""
+
+#: ../../godmode/users/configure_user.php:1238
+msgid "Local user"
+msgstr ""
+
+#: ../../godmode/users/configure_user.php:1240
+msgid ""
+"The user with local authentication enabled will always use local "
+"authentication."
+msgstr ""
+
+#: ../../godmode/users/configure_user.php:1250
+msgid "Session Time"
+msgstr ""
+
+#: ../../godmode/users/configure_user.php:1252
+msgid ""
+"This is defined in minutes, If you wish a permanent session should putting "
+"-1 in this field."
+msgstr ""
+
+#: ../../godmode/users/configure_user.php:1286
+msgid "Default event filter"
+msgstr ""
+
+#: ../../godmode/users/configure_user.php:1300
+msgid "eHorus user access enabled"
+msgstr ""
+
+#: ../../godmode/users/configure_user.php:1340
+msgid "User must be created before activating double authentication."
+msgstr ""
+
+#: ../../godmode/users/configure_user.php:1368
+msgid "Enable agents managment"
+msgstr ""
+
+#: ../../godmode/users/configure_user.php:1376
+msgid "Assigned node"
+msgstr ""
+
+#: ../../godmode/users/configure_user.php:1376
+msgid "Server where the agents created of this user will be placed"
+msgstr ""
+
+#: ../../godmode/users/configure_user.php:1385
+msgid "Enable node access"
+msgstr ""
+
+#: ../../godmode/users/configure_user.php:1385
+msgid "With this option enabled, the user will can access to nodes console"
+msgstr ""
+
+#: ../../godmode/users/configure_user.php:1602
+msgid "yes"
+msgstr ""
+
+#: ../../godmode/users/configure_user.php:1605
+msgid "no"
+msgstr ""
+
+#: ../../godmode/users/configure_user.php:1609
+msgid "please select profile and group"
+msgstr ""
+
+#: ../../godmode/users/configure_user.php:1635
+msgid "Deleting last profile will delete this user"
+msgstr ""
+
+#: ../../godmode/users/configure_user.php:1675
+msgid ""
+"User will be created without profiles assigned and won't be able to log in, "
+"are you sure?"
+msgstr ""
+
+#: ../../godmode/users/configure_profile.php:76
+#: ../../godmode/users/profile_list.php:84
+#, php-format
+msgid "Profiles defined on %s"
+msgstr ""
+
+#: ../../godmode/users/configure_profile.php:142
+msgid "Create profile"
+msgstr ""
+
+#: ../../godmode/users/configure_profile.php:147
+msgid "There was a problem loading profile"
+msgstr ""
+
+#: ../../godmode/users/configure_profile.php:239
+msgid "Update profile"
+msgstr ""
+
+#: ../../godmode/users/configure_profile.php:249
+msgid "Update Profile"
+msgstr ""
+
+#: ../../godmode/users/configure_profile.php:251
+msgid "Create Profile"
+msgstr ""
+
+#: ../../godmode/users/configure_profile.php:272
+msgid "View agents"
+msgstr ""
+
+#: ../../godmode/users/configure_profile.php:276
+msgid "Disable agents"
+msgstr ""
+
+#: ../../godmode/users/configure_profile.php:280
+msgid "Edit agents"
+msgstr ""
+
+#: ../../godmode/users/configure_profile.php:287
+msgid "Edit alerts"
+msgstr ""
+
+#: ../../godmode/users/configure_profile.php:302
+msgid "Edit events"
+msgstr ""
+
+#: ../../godmode/users/configure_profile.php:313
+msgid "View reports"
+msgstr ""
+
+#: ../../godmode/users/configure_profile.php:317
+msgid "Edit reports"
+msgstr ""
+
+#: ../../godmode/users/configure_profile.php:321
+msgid "Manage reports"
+msgstr ""
+
+#: ../../godmode/users/configure_profile.php:328
+msgid "View network maps"
+msgstr ""
+
+#: ../../godmode/users/configure_profile.php:332
+msgid "Edit network maps"
+msgstr ""
+
+#: ../../godmode/users/configure_profile.php:336
+msgid "Manage network maps"
+msgstr ""
+
+#: ../../godmode/users/configure_profile.php:347
+msgid "Edit visual console"
+msgstr ""
+
+#: ../../godmode/users/configure_profile.php:351
+msgid "Manage visual console"
+msgstr ""
+
+#: ../../godmode/users/configure_profile.php:363
+msgid "View NCM data"
+msgstr ""
+
+#: ../../godmode/users/configure_profile.php:367
+msgid "Operate NCM"
+msgstr ""
+
+#: ../../godmode/users/configure_profile.php:371
+msgid "Manage NCM"
+msgstr ""
+
+#: ../../godmode/users/configure_profile.php:378
+msgid "Manage users"
+msgstr ""
+
+#: ../../godmode/users/configure_profile.php:385
+msgid "Manage database"
+msgstr ""
+
+#: ../../godmode/users/configure_profile.php:392
+#, php-format
+msgid "%s management"
+msgstr ""
+
+#: ../../godmode/users/profile_list.php:115
+#, php-format
+msgid ""
+"This node is configured with centralized mode. All profiles information is "
+"read only. Go to %s to manage it."
+msgstr ""
+
+#: ../../godmode/users/profile_list.php:254
+msgid "There was a problem updating this profile"
+msgstr ""
+
+#: ../../godmode/users/profile_list.php:257
+msgid "Profile name cannot be empty"
+msgstr ""
+
+#: ../../godmode/users/profile_list.php:303
+#: ../../godmode/users/profile_list.php:306
+msgid "There was a problem creating this profile"
+msgstr ""
+
+#: ../../godmode/users/profile_list.php:456
+msgid "There are no defined profiles"
+msgstr ""
+
+#: ../../godmode/module_library/module_library_view.php:68
+msgid "Main view"
+msgstr ""
+
+#: ../../godmode/module_library/module_library_view.php:147
+msgid "View all categories"
+msgstr ""
+
+#: ../../godmode/module_library/module_library_view.php:158
+msgid "More details"
+msgstr ""
+
+#: ../../godmode/module_library/module_library_view.php:160
+msgid "View in Module Library"
+msgstr ""
+
+#: ../../godmode/module_library/module_library_view.php:161
+msgid "No module found"
+msgstr ""
+
+#: ../../godmode/module_library/module_library_view.php:164
+msgid "Error loading Module Library"
+msgstr ""
+
+#: ../../godmode/module_library/module_library_view.php:165
+msgid "Error loading category"
+msgstr ""
+
+#: ../../godmode/module_library/module_library_view.php:166
+msgid "Error loading categories"
+msgstr ""
+
+#: ../../godmode/module_library/module_library_view.php:167
+msgid "There is no such category"
+msgstr ""
+
+#: ../../godmode/module_library/module_library_view.php:168
+msgid "Error loading results"
+msgstr ""
+
+#: ../../godmode/groups/configure_group.php:87
+#: ../../godmode/groups/configure_modu_group.php:49
+msgid "There was a problem loading group"
+msgstr ""
+
+#: ../../godmode/groups/configure_group.php:106
+msgid "Update group"
+msgstr ""
+
+#: ../../godmode/groups/configure_group.php:108
+#: ../../godmode/groups/group_list.php:981
+msgid "Create group"
+msgstr ""
+
+#: ../../godmode/groups/configure_group.php:126
+#: ../../godmode/groups/group_list.php:384
+msgid "Manage agents group"
+msgstr ""
+
+#: ../../godmode/groups/configure_group.php:138
+msgid "Update Group"
+msgstr ""
+
+#: ../../godmode/groups/configure_group.php:140
+msgid "Create Group"
+msgstr ""
+
+#: ../../godmode/groups/configure_group.php:178
+msgid "You have not access to the parent."
+msgstr ""
+
+#: ../../godmode/groups/configure_group.php:226
+msgid "Group Password"
+msgstr ""
+
+#: ../../godmode/groups/configure_group.php:230
+msgid "Enable alert use in this group."
+msgstr ""
+
+#: ../../godmode/groups/configure_group.php:234
+msgid "Propagate ACL"
+msgstr ""
+
+#: ../../godmode/groups/configure_group.php:234
+msgid "Propagate the same ACL security into the child subgroups."
+msgstr ""
+
+#: ../../godmode/groups/configure_group.php:246
+msgid "Contact information accessible through the _groupcontact_ macro"
+msgstr ""
+
+#: ../../godmode/groups/configure_group.php:250
+msgid "Information accessible through the _group_other_ macro"
+msgstr ""
+
+#: ../../godmode/groups/configure_group.php:259
+msgid "Max agents allowed"
+msgstr ""
+
+#: ../../godmode/groups/configure_group.php:259
+msgid "Set the maximum of agents allowed for this group. 0 is unlimited."
+msgstr ""
+
+#: ../../godmode/groups/modu_group_list.php:70
+#, php-format
+msgid "Module groups defined in %s"
+msgstr ""
+
+#: ../../godmode/groups/modu_group_list.php:92
+#, php-format
+msgid ""
+"This node is configured with centralized mode. All module groups information "
+"is read only. Go to %s to manage it."
+msgstr ""
+
+#: ../../godmode/groups/modu_group_list.php:119
+#: ../../godmode/groups/group_list.php:468
+msgid "Group successfully created"
+msgstr ""
+
+#: ../../godmode/groups/modu_group_list.php:122
+#: ../../godmode/groups/group_list.php:470
+msgid "There was a problem creating group"
+msgstr ""
+
+#: ../../godmode/groups/modu_group_list.php:127
+#: ../../godmode/groups/modu_group_list.php:163
+msgid "Each module group must have a different name"
+msgstr ""
+
+#: ../../godmode/groups/modu_group_list.php:131
+#: ../../godmode/groups/modu_group_list.php:167
+msgid "Module group must have a name"
+msgstr ""
+
+#: ../../godmode/groups/modu_group_list.php:155
+#: ../../godmode/groups/group_list.php:540
+msgid "Group successfully updated"
+msgstr ""
+
+#: ../../godmode/groups/modu_group_list.php:158
+#: ../../godmode/groups/group_list.php:542
+msgid "There was a problem modifying group"
+msgstr ""
+
+#: ../../godmode/groups/modu_group_list.php:227
+#: ../../godmode/groups/group_list.php:723
+msgid "There was a problem deleting group"
+msgstr ""
+
+#: ../../godmode/groups/modu_group_list.php:229
+#: ../../godmode/groups/group_list.php:720
+msgid "Group successfully deleted"
+msgstr ""
+
+#: ../../godmode/groups/modu_group_list.php:294
+msgid "There are no defined module groups"
+msgstr ""
+
+#: ../../godmode/groups/modu_group_list.php:303
+msgid "Create module group"
+msgstr ""
+
+#: ../../godmode/groups/group_list.php:309
+msgid "Tree Group view"
+msgstr ""
+
+#: ../../godmode/groups/group_list.php:333
+msgid "Credential Store"
+msgstr ""
+
+#: ../../godmode/groups/group_list.php:339
+#, php-format
+msgid "Groups defined in %s"
+msgstr ""
+
+#: ../../godmode/groups/group_list.php:365
+msgid "Edit or delete groups can cause problems with synchronization"
+msgstr ""
+
+#: ../../godmode/groups/group_list.php:403
+#, php-format
+msgid ""
+"This node is configured with centralized mode. All groups information is "
+"read only. Go to %s to manage it."
+msgstr ""
+
+#: ../../godmode/groups/group_list.php:473
+#: ../../godmode/groups/group_list.php:545
+msgid "Each group must have a different name"
+msgstr ""
+
+#: ../../godmode/groups/group_list.php:476
+#: ../../godmode/groups/group_list.php:548
+msgid "Group must have a name"
+msgstr ""
+
+#: ../../godmode/groups/group_list.php:605
+#, php-format
+msgid "The group %s could not be deleted because it is not empty in the nodes"
+msgstr ""
+
+#: ../../godmode/groups/group_list.php:679
+msgid ""
+"The group has not been deleted in the metaconsole due to an error in the "
+"node database"
+msgstr ""
+
+#: ../../godmode/groups/group_list.php:688
+#, php-format
+msgid "The group %s has been deleted in the nodes"
+msgstr ""
+
+#: ../../godmode/groups/group_list.php:730
+#, php-format
+msgid "The group is not empty. It is use in %s."
+msgstr ""
+
+#: ../../godmode/groups/group_list.php:775
+#: ../../godmode/groups/group_list.php:969
+msgid "There are no defined groups"
+msgstr ""
+
+#: ../../godmode/groups/group_list.php:924
+msgid "Are you sure? This group will also be deleted in all the nodes."
+msgstr ""
+
+#: ../../godmode/groups/group_list.php:930
+msgid ""
+"The child groups will be updated to use the parent id of the deleted group"
+msgstr ""
+
+#: ../../godmode/groups/configure_modu_group.php:31
+msgid "Module group management"
+msgstr ""

From ad00594b1de4187a7eaa71fedfd3ab0cd3d44890 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Jos=C3=A9=20Gonz=C3=A1lez?= <jose.gonzalez@pandorafms.com>
Date: Tue, 7 Jun 2022 17:21:13 +0200
Subject: [PATCH 085/138] Set new brand and color for header

---
 .../custom_logo/logo-pandorafms-1-collapsed.png | Bin 0 -> 36861 bytes
 .../images/custom_logo/logo-pandorafms-1.png    | Bin 0 -> 16310 bytes
 pandora_console/include/functions_config.php    |   8 ++++----
 pandora_console/include/styles/menu.css         |   3 ++-
 4 files changed, 6 insertions(+), 5 deletions(-)
 create mode 100644 pandora_console/images/custom_logo/logo-pandorafms-1-collapsed.png
 create mode 100644 pandora_console/images/custom_logo/logo-pandorafms-1.png

diff --git a/pandora_console/images/custom_logo/logo-pandorafms-1-collapsed.png b/pandora_console/images/custom_logo/logo-pandorafms-1-collapsed.png
new file mode 100644
index 0000000000000000000000000000000000000000..494003c145e1d04acf03ad1b8d4428cb0240933b
GIT binary patch
literal 36861
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
Y)bMM)we>|Ne;t?UZA+s%1DBZp0r7R*2mk;8

literal 0
HcmV?d00001

diff --git a/pandora_console/images/custom_logo/logo-pandorafms-1.png b/pandora_console/images/custom_logo/logo-pandorafms-1.png
new file mode 100644
index 0000000000000000000000000000000000000000..172802af8b55f163314a6975531ebb60857052d5
GIT binary patch
literal 16310
zcmeHuXH=6*_iqTj*MOo3qNot6^sW>UkRl}n5fZu(n)DVRDyWEJ0|lunpd^q7l-?p1
z5Ks^#C><0~s?tIcxD(HL&pGeC|NG%x>)vm#YdKD4_WX98J$s(#@v60@2{(r*2Mh+|
zHa%%%1B0<+VK9b7HbyXFxuO9kI5E+7=ujKi2#KKJKrbIZPl?c|AWsR;NFOg4EV94g
zzGM2{I&Pz#5QGbyU0`pzp}?r-FyY?9wON}@Q!DXw=U&w#*WNPlvoS5NHEl=b#{amP
z|K(}F$%7K9ePLATYYGSOy41}aTl~lfE92DEv{hejelEG$d+b^4mSTUO_xAa%ke8{Q
z^=pOk+23O0KI!i$&h!<fU=D4_+PRrDi)@}!(HBIlZ|sjhgq{hxtGR(mg|=pvLUtT>
zMe6=kn-km6eM{ac&Hk2AZpr`iw)uF&-A)#>`mccV9DaeTqo8Rdk!JJ8`!Lhji1Qn9
zeA`oRP&0w7TbJ5sRhX{Z>sLRJ&)KhYNjEXo;N!PfH}0&^p48{>w6}%D_Ixdx32%&C
zd5n1|PLA;(q;+Ju^`3Y#FlDWOV=c~o(CaEXTF0-X;Jtaq!=}!+A(UxG-*n4<9jhG2
zgqg`qIdbf?rrg8gmFU;v3`l-Wo8fDWvxQj#YrT<^$c7F#&xEg0u4Lmz+U*ffZ>`R{
zeynFZS6YXMX5`PJ&MB+FYIU3aQ&*(ArW9h0B|rHcxOpuiiEy$pH*b2+sCXwvoPc9E
ze*K6^@+o*-Q{kt~okvU)%(aTv>%YwI4bCYu?056=RIW*YJ(+k|Gx5<l`aM%Htjlf2
zrr3|Kwb;$i##fr#FX>hHVE2-?on7^>ATcFIcBwB~pE}B6L{y@F1CPe@=jZHu3!N`p
zI+r}}e_la#x-vdp&{u>DY@mJc#ym<%_O1NTvMYon{Y)ZLYhX5{L$lBA-Rq8Pbs~(^
z{_^%xr`)0N5%<mpo@LFIZ$3r2=O-Nxp}4jnuc0IhryMbvsIZmEq03enk>a7n!RVFB
zfraX&(!h^;(DvLq>yrsy-$h9T<EFar*}1J2A<eHwjLNV(MP7Uh3=EgjDYDnk5}ASt
zj+q9iCy*(3hb*g`1X}mn@Gr(XlSV%7uiFZPIWF<d7TXSAa}wrxZ*6J^G#S2o$dxTp
zMwU&<D>PXBSr>?_D<5gA^|?1@-1**pb@SAmEomXd1VOAId(5m!zYqJ+b8EMMif&l8
z+ZDlQWi377+U_H24rTc6i+sVp*`Al9ogGn{MV3Bu$q%Ne?W)Au4ux^i*Y)Q=!q3{h
z?-?*qyR4s8I9wU~cBsv6Ldah}N^w(;nY!;?R@}RXE*_q9n*IY8@Ur`8b*9~^X$`BD
zSq&pM_-549%r6~hKk6Lvz*{zzq_$t<<~Nc`3-`mX&nD+)R$m#3sF9yxk3`lAw1gB*
zw&nDx-j`j`(q68&vWKPDOxC1WR`9SkbFSp3T@BUqS+{<dlfwR-DPnQ1?wp_A#A%VN
zA>v-nX%)=JsF}o#53WY3x8Ly+TMih0<{lf37kZJ?%GCtL_@F*qcZ>LL&c?2Nx6Kjl
z!T7b}f%sg|JiIg8$H5O__tDQsQF~V%dZ~<)U2^k2i}JGKwdI#J0~abhh;x^fO)e}S
zF<+_fck!?*^}Vt%9DU?s`H6;^Z_i79#K_;45nKzU>51Ka-N!h8@+|ABeKyCGYBte4
zwpFu7GeVeEhU!`T-Z<n_N7k)fk%ihUOa>=z^G7nisjfM-Sa9S#&fa|PV9pVe{B3+t
zy^2E2iE}(h1NW#GsXb}%{gmk&CmM+hGn8v}6S#Y^(f4vnR!6<1@3SSi(QauCPiKP(
z|Jk&&F(X!9zM&_quR906YIEXWi1FQxjLcB(NDGQSaJ+RmPfO#gainsMVBec#C-yFc
zl=1CVJX~J)?r2IvgmX`O=+L=D;f$i6XI7}0E{eyQI7ZStTDKe9bl=CBJI4gE-0Cvg
zFUI$wS?J4h2QyF3Rrl+Hd~=^joWvsJI}hEoQ>UKvEwUf}lFIaH*FHA(ty5&x+qPOx
zCTE8}#H=O6NY7`~4W4@XqH{XBm8<tW|9+3B)R-!=X|!ZNvp2Krl*H5P7l(D7n)>CP
zbPt+d{P_6AUDoJ~1T9u`w?2<l)2+NgTu{~`Vbni&Gbt+fvj~%m=q|NijN>Ozk+;1y
zUbYrpBOhuKV>Uk5s&N9wQc<wlDjhkxSuS^UBFCj{-}BuMt{gxKUG?7mDkH_QXzU{%
zI$QUm!La{2DtIurdh5Afc3DqWN%p%AzJ@b><@LHy)AGLl6Z?ASxmWs(636ty`(qdQ
zl}y%QWqsZF+ktnly$X9+78d$x8GG&)PR8qe0jlKW-c=aSH3L*og=mE@%lRu(qBm}w
zJmQX$5PN)d;%UENsK!O3@9S>l+XRgMM~RE~LU1E$d8kvFeF0ika={ZH4fvP4M6)hh
z+&EEWIA(ZA>%y@D-D@sE`yB1~i%lIKYk1wL<|Ff1a6#5<{h~hYuJDv83g3OhhQ>QX
zcPKRG=v?XjK_2XP^D`CPl^s~A4-WDF<hXOJ){y(FjDBS324i9FllUvU3SkJ=?f1xA
zn$JZ;8AWhs9==z2k$%7S<&ET1d42Z?yq<S=Y5Q!LiR>majhb~|q^Y#XWIfxXEWvS@
zO=HPOZkT#8vs=`FSAf^}<Jfh>*Ei=crF~LVxy+LEA~Ba)LgZua-4l<~yG_kL?Xo7l
zg00<UQ!5X;x-apj&yiI`U;S&J!P8WMTHEFy_n(MmeacI+d2%EsQKvr<v423bQ|;iR
zo6YiJm7zNR9@+V`+*6gCWj9AJ<ZHGnZ1bgMKT+O)lJrt#)41gHU3IUbyv;t2`Cl^g
zais&+^$*(4+)TEt>v1yPz?P;+y$o5=Q~2O<U_$TU`!KdL-_`^<Det=)LiNJm8LSA8
zKL1o|ziRWEO_Q<P`oQ7j*FQhF#|Zn}d%6<IYsz@<#Co{wnQJ-OZhj}n4fu_NF5<Y7
z(E_J-|MXt3waU02?8`gB&EcMvlzVbANtSYK7Wcw30r{bFUPSDWlA?bwY2{Jq6Heo1
zr+u<9B~~Q~Q+t#IcilO5O*Ep+=@o(0+;h|D(JED-*dpbp26uMQuZNFj0xz3gjaq(V
zBeHWz@I{VAjoDF`AlL87;l80~E5}#6RXn2W#9)~jwF$*`1=iiir``H9-Wo75?0zdO
zC0`UGL@VWUBVErZesq5D{dsd<#7VnC)gWUi%?xMu%B)B;M@~JM^Y|Wa<z2n1&zIyQ
z1jl>%lFlfd$jWLDYGKNCQ)S(=kK5q%t0NvM0fq<WTeT*5(prS~i+wqv7S0=U<=yKO
z_bg4Na9JKB5Jgz<^nH;#HcT&s%@sL(llCd;vriv(YmM8>8>Q&87B(&CX0&CLuP%4$
zL6QCu=i!SlbHywJx=vJ0-uxiR`ZhYDRPKPirv&3CJYz}BNo5-1HIu&FxK-f69HX5_
zjNEyXiT1`{6ZWaI$zP2=nc=b~pJLC+J0Cgsgz@^px%{Czef90YliJ~;&rBRH=#Ab~
z8rwYAzn;@4Z4+|DjkBToRESY&ke!j{25djHk*5}5chCqYzIJ(#H*hmA-Y!yS;HsG~
zvhd<X71-k_i;zVz$s;W6E7}`fL;E8$f+pIYwkqt_H5<%w?Y$DOefnGPqbu$idBt7F
z64ttZD5)Okkg>aUW2N%?gGYT=!+yGLUP2iKk0}Roia78cBQd{}$vAQGn5D7L;}AnO
zH4f>wJq4>@PPpzSj(r=*egZeaFeV5}8&w&6KJi`QL7)dS{+-9wzz09O4*WR&=$rrt
z)2T9~has=dB^i<63r<(=g`}vBoR~CPw+XnuPw>E-4?oEFJ2U2tLL6_>s@&T>lppX|
zA=vIDyVhC@X*s=OLjROPTRczsCF!I7CKe%(aMrfSoMEzDy7B|%R>flk6#DQ0yKDVD
ztvL0<3zXp-HZPD+nRgIZrr58+!lFR-%WpA7V<&~ox4YwM>%XcPO=Rwz>`BOS?rP^b
z=F(p%+9;BnTk17^Dz)<R@R$DBZEg&I*9)VB%gXe++sDw*+SJhSU!^uEu(R;DbWgst
z7D}|Tt&mLP3FixIwa%8klC0s2NVeYpk)uTGe*Ln^x$c{ft2H=EnOWn7i9GV}YqhF5
zE{yVCd35K_!)tdVF*fJ;za+M7YAocujG-|YG<2vC-MP9#2TmOpbW^L6Omg{<$S28$
zwf0I^LYhjiQTudPP7l3~N{=7O?Iljiu`n5p@AkT{_EYQU$3p+0;lnq|Z<7Ra1yeIa
zkB^&_BKI|&m#>xm(eWh1w3FZD>T9<>NdFGA!V@~Cdu>&-7ZXV>GE;Kz&(ySK(!MHi
zO|48wmG+1l2ymh=G4XR0e>%2XZT$JnWAw?MsOA>^(G96!>975;11&l-T@rP1KlImh
zorsD`^HPa|$EL1*iREI<cg{N<lC|L8;*$k?;XP^=xQ-0NZroWuV}4DH;g<jCcx{1n
z3}u3+YsaItaMtYj8H0RSeeMVKiG)U{Jn!BIPD^`>c#kD{rPVU<@DOfEdXm@c>+0|U
zJF6;FG{#My;0Wd2QU2ggwATmReb5%CwA=&z<y}1j-8|(Z{e!^W2nN&9j|_5k$9aZI
zxOsZ}1n5dG)HO*;_;~0_I;dJGS_Bz-p7S{w9qefvZE5EojdR!Zkkr@X(23Ln0REn#
zt`d>{egPp`k-Cz<akW67KCB=q@tY(Rrz?rJu$C|k4EB^zkynvdlrxU>2|p^S$04B;
z?BS(lV|3zA2=Gf+@?2<Wkd}f%L_~yqgtB~Ku(yJerlzKX;!%a8N96#8Tu4+vsB5HL
zK*#|)#2*+&o+0kRK0%>AfdLY9OjozSuuxq|NiZ+*FZuj~EG+(l4+#0w3cwx;k*+}s
zO7e;d{{9O8ToDp#91cMK6zG3k5n>0fkP0@QA%S7R?w-cso&li;{t4mX{@41TuwcL6
z>Ug*-c=~zz1JV${Rq5YYnwVNx|Fwc{0&gGxpx>*2vHy)S)W_>@WBr?K^qJr4{8JFH
z{4d;pqyCrfzli~rg@u+;pnDiyJX0fGNjiTmk3e@H53S!_O?OXCWo1QAIWJ{3PdOD&
zFAX^jFI5dWcV$)2qiXKzu1Xpn|9~<L2nlr!aQCD`0dRRAfa9*_rtYS$t}b`<sH(f1
zikpVJoQArRhn$D2lA5}briZ$!tNK46tb%<&RJ!{8Qz|-?2Y~W$_W*0uH06$Zc__)L
zXt*iKxvGMmyQ+rAQ8z_bPZhPJzo9(bwN3;E`?~^n`uMwgdnyD4c>kWD8(izSwW+S;
zQF+C`N38u^L%qNPT}ca9cL^)ozh~@x{5@?$UFqgjQd3n?Q&Le<(@@mVR8suMa+GIq
z2na<wsFI?*@*gvFzi0t%fMs3jfeHYA!vbZr41+ygLj!~D0t5YYCFwFr&{zJBZwZ}0
zymHbf1W-iLL;la8xAi>#$FD#3fS=FrDG7<+ajWI({s)r~*Kp52TmshpG39>FHNe{w
zZ16uL>R;nN|AV(wfsfriRW;=_RNP&G!`;+@!__q8JXG9)pVT!qJw051tMM0lNT63}
zgln+pac`h0&;~@%Z*3%w{9#M!e<zPP=Seq|BG}!EYI2I|c1r46ibu6nG?1VLMpgJz
zV+H!Y{+G%+3jc>ubbb^3BN2dge~f_y1M-!^UkU3^qtWg7|MAbC&iMbx0YLwk$$w<u
z|C;N+=K7B;@E;NXH@g07uK&ma{}J(jqwD{fxj6p5@^}V-GAIIEXaYB%f!9E=bn8=g
z#^B#mKIeDs+I68u9<+aS{?Gm&BcT0j>Yv2_9RI8T7bWQI?Ce}^(4uWF=C`?x&b62I
z#8L*+yC$Gp%_bRd>=#xirWQZ7jy|gHyZY&S!_&^d`Lz5@AQ?lbjioK@*yJa=xD0OQ
zCPuI;%wi|O5B8vwjv+9Z2tWNVL))PxeK5!xYHDH3I?2My3s+>AOIC%!Bw(gS$L%8f
z=Z1XJADwuZaGGb<Xh~-_K7>5mH&;GnpCRFPBPM>M`rxHqjh7@;xPJ94H<5&32`d&W
zF(?t(u_xu-jxgA*ZZj_i*ef4o8Z(UVQHh-}OrrE*`E3SRSV0*KmV5(wiy8I=d7T+%
zZQ|@B3p++{5=5uX+!<igW^N3yk2f7eIbqfg0-UhC3-#S-SVH}6Gz^CLn)V6~``vt`
z_r58T4+_Kb=#2!uId(Zp3gG|UM9(4<nPIKStA93K7>qPv=VA&PdM{ykk<M<z%#{K5
zyBGS&frArvlg_w{-pi|NwE2^J0=)<8c?`jT1kG^RGF^gYdha*o-_0=>IuFdhc);)l
zV9Ed1{9gBW^Y`LExXw5B&(juqzAtP1>RE4zA6QTTvUE8-bEb9n%s>ONUsexPz{Aol
zm|*8B$)znlV~viJKQvqrbYpDyZAZCeqV(rnI*D{KdppZe3oWkC`sZT@Ie=i;Eq(`@
zh2rHY6j0ik);kgP>C&o}j4Uj#ud!Ay;K7mb)N5ef#tiXX*h+3YItExUwAW#wI&5X<
zQQ0aG<XZuGcxvd-)tANqVUCrm=IFfjy$ped9UH)}=miSY%>hBW0x<qoRTeDQ6x=@h
z!4k|iri1(a7ppNsU<!+Ie*YjgJdnT)doGN2T$=72xCC&|6_Z!V7U8rKz&`Uk@eAJe
z!jL^+VX@r18Z{u~79j*!Y!NEnt&WZ=02}A6Hp<A7<06ruJJ~3sKvsJ&L>H--1$8xQ
zr6pCL6HIhB%BYazKGA93G|H$0ntL^(umldqnaBYlKO_W8=-=?ggu2MZ-n0g5*Egr5
zKMBo$HDPB+$b{oIKlw4yjoKVF-?l(ZtYQP2-F!w~rEx6!el|kGIbp54(E}meQ58{s
zhk>C!esI{mz_X91s3&CSWoLN*&UgIA%b6edTF!62^?qi`02|WLj?~V&vFZQI%KHu+
zhEE%oj&d66?8Mi0dOrfcdsjOi*1hz}T@&mt2EJ0&S?L{%dZ*Of;l&KwD1O)OP}LIC
z_Bx3f1}8SOJJ6=2rWPCqAP{Z^(UFQDK0YKn_8`x0E7@KIHuU8p**?TMjG%h9*EN1k
zp(bV|fx5n%)3?VLd*_xd6rFFR#>=<NKLw*^j5E99r&ov8XV!PgcP^2WJ~dSW?Vdnn
zfnSTGTkQmgfiLS-oeJ}%z)?@+q0$eBy*1(yrhPr?Rfluwlq7OanTZQtsT9Ad*IBI@
zHB1kwhm`(C$xdqAukkmdgS5s#W?`7M1;#k%*K`F2<8X_`?ei<3W$)VZ=(@n;((O>X
zhY|Rd*4qvXsq<zzAXu#9u>QQe7pJ4Qmmhw1#4^ANX!aeScgHR5Q6HGfq}hQ5V+6$c
zwcfEl!vPv@N?Dig^{<V|w1M|kG;&J?Yc)1p7*LfF5DP8m!<+V|#6?}IaVZ2!yKTz!
z&pI?^g>H$;PrV09961V=mL*|^;#Jpt#g|=Q7Xd4BaFOtj8~b%1P1%p`Hu3ib(E!)g
zyC3A6WPS;wHAoLEh?2a#Haed@-C(dSpMRYjwrmf(wNE_OKOV2XDCAnXwuu6QPcTte
z)8-d@<3|?pJi3!JqXIy?Q&{87oUxT5se*{n882S2BUFYQ>NGo7{8MR1#icsdEK>P<
z8+bpix}xIwv++y2(<4(z<ZS=8rxkaqCw&e=<G*T`#*WhF7>8xJ)Vmtq*2{dU&YcT6
z=%R`nDN41CqZ;qC{qE-dU=dk;e(>aX6=?jFLiCwn=D8?jKweBwRN7o#?vmj_7bV<C
z;W{UhS$63@>WlV(3Ic=PZN-#S{Ee8PKU*JaQ;dz^=nTU&iw@{cdT+B`b!cyk@cAX<
zwYy!X&|&>ODi(vs55A9(Y>gB>x=#~_HU3WQW9_?TU@;d*(uCfiQrAE0ADd1qpLagf
z7-HXHlNx2$@C-5HfDx-ErexV<9>=CB<2NriaaPBtsc;b=P|Si_6|g@A$#=?bP|SwW
zQgW*rY8mK^^oB7?W_eBn=QK0k-T*VFxAQKuy(Z5UJ+y2;>mJ9>nHznb6vIm^N%k4-
zr$$y9=O!zVVv8<(oXT$$@0C3Qxh?nBHnQJB^Aha4l$uhE6_lYjHkB96s^)wnD$zKd
zFBhuzqHW*bi8vnC8{}@^<3ME1U_D8yqD+6ksqg(kkenK}Fji@wJhATql9a`%hY&}v
zTe7fQ85NvL$|p;%*k9Q{Nfg9Ym4qt$&fmv$TsZ6^w!(~Rs49^e`rJ(ZaT;sPNy>76
zXWmW}79`$o<WQx=`n!oSq4-;VoyPVGqE}pAl0v<Sq3_uV_UC|A#F8k<Jq|Ct*3V|6
ztq5s5_c7fzBGH>qp?7&@1E_)pKX*fIrx}9kgm%Qe`wrI;C^3B4aMD?d{gT_9ynTRy
zh1gQdG$U?S4k~WAwEp%&s@$CaBg(WkWEP!yjP56sZ=QoAM@J6MDnZ3rZ%$*w;@Fq&
zFjqZeCkc69JXn-pp3^6UZaI3nYG)wi-pV1@T!Lz4WUyQ)EbQuo;}uTNvMsP-qUgjD
zU%Y+y>_g1woRHyzvntT^11TqLngjZ^LN%a}(%AD@gBwv*s?AIK(WJj?`sa%T8apo{
zK+he?x>a_IA{xU*DjT-={QeN+#!R*I!y>B7>v%{%@L^3xzc{Sc3-`>aLcW`b+gHp#
zx?``e1hj^$5qh1lh?+`m9ugbA;`#={WkFo7*B=Qj?p-z^*hgUPe<{ZgF;kB~W;~=d
zcH3{$REHP!m1RvYO-frt>$pi}#a8?w8MR!b<oF5lvnH<-gftnbP?C}OX=TU<>mQiE
zIh{4CJs5A7C_+dZd!o-l+F-<yB9Qab<c!l;cG*OGORWEb>T0iw^StAm8cxzYurr9K
z<f^eaI8F%d$%<Nz%V0v866|r9tsieMamNtSem&8z6h^xPE28SzBbNG7D4Fpc!e|cU
zhD>bYJkho`@aM%M_P{iME%&WNRSwb#IAF;+F9iYVjzWctaN>`!VJB?1A+1+wqAIcj
ziiMkFuV=GR(F?+ZEfeFXv2q%2Q{S$bVpoLFMa7%bCa!b0t$Mpcu-DVXmtM*_6cJRZ
zbqt&&OGex`8K|wZKL<X8j>6!NzJ6tj4GX$}KzqjS*!$OR-}h03f_W|rpz*Zcx{bz-
zJSg0WAO)cm&;SBezwR|~(5#Mo=rndhEN~yL;3FUU4uwPS#W$rETJ@T(T^Ku#R1c)?
zMPWVH&NpEd5MJkP=ib7RtI~}xD49$sB|@0bLvp$Z%KjcC!%Iq9U}Y!CcJkZpLAT#)
z$aH^Q++#O)*amQnlU`#&x11gM+TE<RDuQOfsBe#7j(o?2tL&ke{TPU=anT6J%ANgj
zuq8QC`vE1Hs?RVi@nU0I2jU@YPTwM@i3n3m8YpJFf<9xMu@krv<3PccUibRQUz9V?
z2c>4);Ka8Sv+}l$d199!HoNF)W^?g30V?_vruQ@>a`akZwHi7CYh3s3)_8?J{^Bn}
zg-03Zr&MNC7cZYSBtQx#q<LOQBH=5ZLp*TY>wHbxjIbd3w6Da<Q~lv7`EPFt84EWL
zK}q$@O|xmts8(J@1V8#M%Bh7=5lAG*2~i)uZr~twroOkYFQ&BN?`g!j;1}hkn5Z|k
zp`?RABVQGWg^(6~At`3tTlmKJXy^q+^e8L!=Hz{G4d{)>;ofSe<99o=CCTt6i()Xv
z5?h;Ha*vXEyJ@VJVpcU?%S{5J4p-TFCRQNOKY6<}TQb>5_cLrPG0YA8L&jLCfzM1R
zQe)dbv|&5Jewgu6mB5DYXK1U4k{n+nJ=J6514lOZ)}Jcc9?jLZcS(#TdTjRJ^j|Wo
z25CZ)5jj>oqYCYF-SmyfZVNgYX7%hXg(EKIy;iyAY3%hEeF3Gm@uR8P5V`sK!n_0|
zFz+|SM7_JQ#f19c^t$Xr<C)N@B^k&~1Vu6yL3?6YIr?=>If>PHxt;R{*u+gXTSI~>
z8%eQq0HH(JEH2vw$@>JBTRL@pj1l=^t6RwFcqPRwI==25MU->!^BH#1aV$HD`Ce3j
z>*lm3!eje&4Ty@^T-VtHQ1_ss+`OfeBOdW>_jM{G?quz=6+yJ^ZRH3@I*)^lgPpdg
z-<!_!bCAqZ*Wt+1!Ugk0#f2jf6RMt)+0Ox>rFM<R9U+p1&*sLkk*XJj{cAWmNtC5b
zZ`~DdHqyr!vlc>Hq&E&Y+=!t15rMwgn5;)>xWW$U?QsnkM4wl1WhcckA`LN#yA05S
zz2mbY5EGR|$-GeSlu0pjK#Q@UMt2XkM<x6y>KROIvOA3iC2jp{c{%6}6H%=f#rMtj
zo)|rYq(v(+Q=1!$<)I{&O<#L#V$KV^KH^&rHnfo<fL4<K7AAt$Tt$E#l+H};vcpQr
zkj&_G*?Zy=ekg>*w`@p3ZjH|M1;S|KjtB{8nuGN9+Gks=1;encBi2Hi>RN)YI0WTb
z=pU<&+}lJ+UJG}(A|Mv4){EImN|b9~KRd>4HdgQii!-Bs5)hOA%}i9GcsbO70}?*d
zzX7A|46_XxH@%RC7Pl;%-LTBDb%RCQcL`}e-rtWx-3xx)KrA%Y;=IFG>t{^LyE^ua
z#$}kPE}edR2gna6=2JwO(kX3%=$>hsnJC(pRH13N@a0Hkm?C9MKcH;t2Oz?YZT1SF
zFH(x-AUFBv6b?Z&VOR={t+;96$&4ChKo?!u^qth8WmA$@!xQ%{>1(`ZC!HhM56(*h
zqX!B@w<)5BuBIJ^;JlP*3uA4g9CmYTm>@bIWg0_JO)vj|+J$~Z@s))NH{j-Oi8DkB
zBNQ-D&WIb90yTjEIv<Yw*eUMK3&J8z0A!|9*b+`s+C9j?{_H5_HhuaB7rM{KcT|9C
zicNf%U`$r_(3p%5y#e9?j{LHHJEn$MlOP4jaFX)B-f^rWgw47peRzEjLJdv{q3wad
z+7DP94}%oXPD*0L6{|uAsne9&*=W%O)y?D0b)fVNcV<D|AJG>^gS*%fsF;(q-*-h;
zr{;1K(<2g<)EMKy2u)(12?A5SpIJtr!?wPjN+cj6g|9uiCJSw_$=<4PTgleildw|c
zyeE}kZ4cV<#(Hj!1tUoq1df68{!_FTa7KxvaY;F>TqOG@lq~d6*QW0c7g}HUp=G)Z
zRID?}NeYG|r+DrtgM4rAi7lzVgeV<zV@+>u(=&XTf1@!|{xs_hC#e*Uq(t)rN!XU%
z`{Be^N@g1y$#v_kE!OivzH3#<L1>aoN1I)ifH(?0+=@-1_)0==l+3Xcj@fV|3Ts^b
zuAp4cIbs1)XB(+l?#*(Y_a-2|%)N0-UC+(6U{0r;sT%!aV0;!hCf<o+rEf;LWWF1X
zKS3SebIH~FT%=u(Lyy|zoF$>x5nJM-EXGXz6podWq#Nz&O^WD+oRiE{2cE5WU5Y!8
zIDr%(xmNVr7(8Pm`EHm24}41OwfB@etI!DqpdnUzQ#u>zcAcMLlO^;zW2D$fDZ8O%
zWBr(&o6PE)?!skp1H2@PZFR2iG*Pn?q?9~w>Uiop@u-Ax7+4|&*{B}-LCH*JC*|Ky
z_Sb@%hb8K*!fJp4q@ZzsmPeGfK?gYQU0Kx68Dn<RelsjLbE4lf0%DD2tfHI}%|>Eb
z;PV0wKTb!hI5)&bLa<I9B&d3Fkn&0Q{gt5F#^W0AGV;e|K>GSd5d{|VeM~OqB1vPg
z7R=13+Q7U%%Je47Sk`fL48eX#tT`4WL0N*m9fqCsoS<sNM%wR!<(?>6OotPf_FM{K
zaRstfd<{d9#DR#-<Xwb{$sbvgP+=A!ZQ1;r92DJjeC?$<R!WD=K_U-31DpMrF~%Z<
z(YCGx)w|Wh18k(>K)&rDuyc_fSZ)y4D<2);GZ+P79Vn@lAXO$=BB##gof0g9URklH
zQZ{~V@&VE{Gk$adEA_5E)Ey_-z(g$=7?Jq(fC&8TNH4VD$Y>z&A{-~92pvSNsjhJJ
zJJ@frjE%67*t~m78F2uESlB3lKF)|^`_;tj18+Y^qs;h>{0!uik4&+~PJAO4GtTq`
z8Uca3kOyD*3Zsbt?GVIrNA2z&G}&x(dVsJkLa6vPX!BDE1E>rbkyLL4`YIz%Mh#-I
zO-<j8uJb1nRM|-rMd|MuXI_$jW8n<31-vBaQE}2MLfR~jAI+(Qn<EBJ`5cK~G8II-
zcT;4(Tta9=Z&v9-u1^=Q<ys1%^I828wYH9s9>Qnz*h!U)#D>P?-5|*cpx2kouoLX0
zJbn55hoRfCn*JixMw&F_#Z0xp%IRBjl2RM*Ceuv<9+pvx^`Rs`0%C{L_m==_!4~_D
zgLIK1+ML73L|xb}18ABGI-DdAf+{|e0oNL|aT;C2NF3&$*Wb&G`eyi?vN7ufHY;-E
zqBI<N7RxQijOqw9!@fIDswOwq*+%;wf;cqgQnHz-tcg+}z&@!;K)$@B{F{{I6@0~B
zwEBTTX4K-H3xE+gN8Q*-HjKE9Svb|Y`MU}BUC6gs9@-AA6fYS;u=m2sDbRynRO}0=
zZMo%GQC$m`Sp3x4FbrP3)fvmIC%!C*zQ##UgLy<(A#@rm)j9ynyuq=Dhh%b}fBs$}
zBTfK)-Gy!<uvMj`K@bOEEySHEqGogHr5wmpXF5VN&+w2q3SWqV-B=38`G8{>>=l#<
zNbqf{)f-<NI0ev#s)UvGzRv+zF~j9vf2Sy{u5WIE>yxKsCaMTo0=g}f4mez-$P|?K
zH<(l}#3d&!m^{p8LJ>tE0Vb*hw82FhjqzV$Wg)Cwi&v@Gg}&BA^<tb6%_H;J4iHv^
z(IqYv5X<cb2G}qm^#1r^Tdc9RM*Q{#1~~4C3Y3m7n;SkbONVu6HpVjRa<h>XTpneD
zt&6%cA&f4VN~4(FM9;BM-!YTEFRmQ8O+P7dE=3EJ<XT@MFUh#h@QxvCn?5rcO*tZs
zwyIzw!315Mi+M?8)`tyDsAu@JLr^-<!t6BKJ(~dT7sG(D7Ia3QB*EKNq2Kb2_Dn^G
z8I|P553VoZJTZ`~1RP3Os9kt$wpOnDGA~&{f2`s{qv$ky`aVY73wCELC^M9RYbLl!
z`OB2#hPb*WV4Bz)AM|I7#V@FS>~U~rq5e{imLecLxKnF5aI#2f909PWc}UeCZo469
z`_T8&M4-wQTCZxiT-P?7nC4EeU_f@L5JUT*%A-VUn-W%1RId3((2KO*M0*qLbyG%M
zN5!+p9Hes~`hr0`_+bmqyxVtR_7|KQy0ds70MzG(plGQconWR~pT}~)h12r@a?QRh
zRqu{DnxOyb5sec)0MuznZWJy4PIO_!os)*%ydtPhes&OGL1l$0ae#EUtO{b=s&aBF
zCy;x&S3QC)7mobq8b7NFigNo_DN-9F*l((UhX+>bY)=C#H4}3{r;-m%JK6Ij9F%{Q
z>BG>4k`dW^&>P9$sR;SQxQti-7KLN;tyWV)*wxU>P!Yv<uGBc|*;9&H@aMvAO7dyC
z_V^zhfYo8`Wjw>o-kAfdf&k2H`?E3&in8)xKLoG$d@L0ZTkTFJsM?93ZB23HZAx?~
zo&i^f8{OSZYU$1&2T9LyQ|6@<30zo7W^mjU1h}P{t$i4F#!$3gZ{)wWgcHll+#G@G
z`=K|d2&#uhtZZ0OKbi&5o(B!W=m{-Bd~O_04V+^}m4=+W21;6Sv?DbDYUWr9{~+uD
zU?t%=vxY^mxxQDf!l^&c_+zsls(NgK0|l)_sHnAjlR{7}95M&D@Uk~}3oNtN#mA8h
z1jPKa>^{r!xPjg?=#jG&Ee;ZNxbD&;|70#w{vw5=@p_6hC-P%V+7FtEwzktIP;nR9
zwx8vxGW5_=HF{%HqVx>s4FBBa1cCS-#H%z4$GY(Z8)?^oX>+q^JG~%dCt)34Q5%kR
zH~MNp@<;{jmQv@-0E|1vd3=k{`T-%$Lx~xcK|pxAOB3gwv7%a=&8o=kBo;=TS><H$
z9P$1|$a1Iju4t~b&Z|wSnWKzI8jIswCH=|I&#9DT`!82T^}h}X@uOXHx`fcuU>hBU
zP~@dxt9w@&XX>Zn)S7<rxa|!Gw!V%J5>T-oD3W02Vl!z=eXhHujzF0_Bp6v3d%pXt
zeFXs#c!;#5@aAf6RoF`J#0>vDGA>DRi{$|13rd4VN^*?0=JxgJE>2AANp+AW-B_tb
zxW*qnp5qqobvlrIlc;2TlN|y*^6NyGJ3ZSre^!aXrm3D)Sj1A;%rR|`m|hRw5J8W~
zVc!wbj(q{=*c97NIBj;Dw&$`ccbLBa_;s+~?8TRuQEe^z#~X|v7o^scrAWsJ_P*G}
zNF{>38CLfm3$@d6_v+ZbdUIUURT|rvoky()F9<B=_Piue(`}!)CDM4GbssZIj=oEU
zH)W_s+?PjqZ^qjn<(sKvKv$IjCb!-f&at8vM^Du(f1s%XWtdRr_aI@*k3Y8E)~F@P
znkH4WCruu5V7!x{dJrQneXsF8<&3stpLH|+;m}YZS7eI~ro`z^s#W~ty3oet8A<Yb
z-!~>yTcYgveeo^7{z&X=WU^$s-gaYUoFjM=WCscjaKq26ks*t3cPx<=@M$|LV^P}@
z&$KG<i_%ZavE+wet*`D90%w^7V5~r}55v5!Hd&)h&BQs&)Ok<f!!p5DL;(F1PApxQ
z;@|*UgXHe&A~PsvPDoqaH|BGKxYw-l%E}zsiM(e_9)K)AJW_2tE^N$Tp6iBjs;l=&
zWr5FZG7F*QR_#+_F5T1gLH#f$1#bF2BM02^k%HPZCW|y4fcm@an&eLR;m>^ner#~!
z07Z1!zKq7!sT?!m^6kr|k)6eH;Nl7l5GHKJ-ojxdnJ$c~2%6wxibV*am!?FAIvXXI
zKcPN5(C7yL&{^ouf=Yhe+OX`iT4B#A2PK2c#uGYj|2y~9vyW()!H~_N$Jtd8K2a6A
z3K@lsIsPZG_9AG*YlO5z(nl5W5Aky0SZ>c*KRD7H%e^5pCq?R8)D(@oF}gAL{97V-
z_)d7-2l1Rcl(vd1iF-j1CDj*u|FoUMA=90(_IuI!E>C_@eDleZrLA8&z&hO%+cd*!
zvs$ajY^Cm5kYZTmvG#muLmVMZUV2eJZk>KGfpYE$5@NxpRYKv<;4@`w-PW3&g8RH<
zU-dFVg~3b4*fa#%(20;1r2W2b?JcUM<r>}WpQc1tdZ$;`*048{qAosY+m)>9z1Hg$
zk^S3$Q5!N}4!1%+uaTsWEpUP=jzMq)#}(0IgJDKrf0k4uuE+WOrCtoic_Bn^q^|p2
z;dP44#Qoe^zkW+>!SL-6`M6pHxH+O;(aqP^tVQCwsbF$`!jd#a($4EN1v%%^JtTMl
z!8H)v_*&t|g&Yc~lDda{J2KFQ=FQw8O?dpRa}K_4&OGAp@<CM&4&p|~w8k~*zPBd1
zpsq1yp<08Adqc+A6~B`*q^^G<c6~$bY~?GhcQFQw)(hzeplOgF36!=fP46?m9^<4?
zSndM4V{q7slcapr7g}HI97`JaoQ%`(Y9(%U<T9Muf#p-qR9t$!cS(?i%J-b3zm@n{
z{2;Ztz(ueZoa?8t+{axGE!UiMk>ViD1#Im-J+k%n{am%hX4w0B?OjjE^gH-2wBeqp
zwD~))oStXZfrl;e+gvMVW0q56jK^I{&Jw10z0PCQ_-0Zw`1Y}TM>J)r>n^8JlEZ~l
z8eNb)B+1I}%hz%vhh9mOg2O8pJKLofTBI5ur&pIHok+}h>Z-n=^@(;b#b!u4E7yUr
zAv3~a7meY5dr$r&$JItR!@}d*QHZS`yQLO`yA+vo-r(-cQfQLQ6o!}+pdJ{!zc}>e
zjE#%^hy$EBOc6DBb6h(Nv9e?rrmALu<(8WBo5;;#l*iN%5LIPKmG91S_SqW_#`7R^
zmA`-7+P#7r+k{Mq!9DA>fbfIRpM5xr&bi`JN&MsK?K4O8AymmNP%NHY8O40H<8u%%
zsUR1B)r-F#fO%FsiNL+u1n(xn`_b>0oiDji_7V?%Z@+}Q5?j?<?r&TmhyU*2KGWaV
zrf+=tY@<=<mehA<|B9gNa}GS`bGKB+FfYp_&$dK2sa@M!Dd%SaE;!bMFSnTsTq!5c
z$(I`7%P+Oxj-RsJmMcB8K9O5^C*^Qwh^bt&ujqy#c%D$sl|dVbk9X0JzLb@)j31V3
zCrT_;-GiJF!wwiZ>~{+Xit4Q{UOj3r3aRJ3CthB5`|kIqR(sszwRQ>iq&t^&@_9do
zv*XTR&Js3yKeOAdYjd@_y0kGn+y1Nr_)dVyhyE=<V_|##M6P&`f@9vw>FDrRzNB(q
z-zbsVtR`WvogHTKt#RA^-{47+yQ6wPN|9*eqn}37hn{NB^$ijSa_1jRgfn=jK(`nY
zn$N6CjLqFanxz&rgv4a8wzGOV52wDIJWxe!gu})$&06FKOf#5!X?iuq&o#5G7NWkC
z%WqB<`6EIj>nLzo;>wHA`CPr(hz*_id3}SK(7}Zryv5Ao7ySmSq9yPKd`jgz5+?Ch
ziqz6(3T=z|UAD*w-!JY0UMc25je9j$h=+gXAiKX*Bg@DxPIzV*C>$}C0=2$cT@x3F
zzF-<TwqknJ6kyh9%*M!fgbOY{vIg3`bom;P?lucGZm9F?rTaq2`3WLTg<TdV;qTf&
z-8yACW>~h5j&_ij)Gj|O*1W^@S}W})`tsIqBD`z1!N`7Dsj`3;Qw#$P+*LPP_U6<D
zN#9m43oj}G(7_0*{+pUyL+Z&luafULfR~U$RMw>$*0^u-wr<%9cjzQ6)K%dxJYyIu
zq2c~&%_HE=rBq@?YRKgu<a_Z2d;9k(k(UuL#rUkv1KncHO_LWQ57yd7YFH|Lehf=^
zt<E0tv;XU^oukzG^BI87`XqLXc4$n~E9Yzu?S9lsv=yBPhYZQKL;F&Ejh^K7$at};
zo`Zl(ImgUC8qZkg8;&?JT!iImhYb!GdM`Tu*P*c}v+>|q<~>Vs8qPhk&jCQX2vuot
zf$x3o%?hpZaB`2{5FEUS9lhAB6<BF&(>JyLav-tp<#)Vk9i(;;j8pn^3b|HWdR&it
z4e_K-#XX2q@;8A|OcK*ROqh6Q^E4@x42=EI5To_^ah_9#!-|olrXh{No%V`^#BzQH
zm?|sks-Gb&0hFnr>2~<Dp%{QStsLgS*1sD#CveRXS@2r*i0tnkFhCvz8VP!n2Z5LS
z|5!|i`RC%_F#kIOfccH^ck_Qo_*;-8vQf;ilYhwYKOx)(3cUK47XOmLg#ji&mtols
z-RKKD=Jpl|JLU?4JRyLi-GK|h0nFceb(y=ZgYQ@p3&=3oRVmO!OUsTNhDnssH7)y!
zfE`mvoN!`-9ZUzFI+$J$KAn*&iwy%TfAa+mEc;+O8GQMIUgY?r$-DDv5kcqg%m5P_
zKsWCCgMWhCp7uTlz&Z?kyyNG-E&zjFFDQk<%=~4M`(S*I;~cQOt~cey46s{LV7M(s
zmM9E{`@!(5j&e~3*agpYdsZ0VlV>ELM{kWM9{k_?EpeJ9$tU%)sW12@31(_+X;f-}
Hz3{&PyZF!y

literal 0
HcmV?d00001

diff --git a/pandora_console/include/functions_config.php b/pandora_console/include/functions_config.php
index 855bc67a7d..52d72063aa 100644
--- a/pandora_console/include/functions_config.php
+++ b/pandora_console/include/functions_config.php
@@ -2357,12 +2357,12 @@ function config_process_config()
         config_update_value('custom_favicon', '');
     }
 
-    if (!isset($config['custom_logo'])) {
-        config_update_value('custom_logo', 'pandora_logo_head_4.png');
+    if (isset($config['custom_logo']) === false) {
+        config_update_value('custom_logo', 'logo-pandorafms-1.png');
     }
 
-    if (!isset($config['custom_logo_collapsed'])) {
-        config_update_value('custom_logo_collapsed', 'pandora_logo_green_collapsed.png');
+    if (isset($config['custom_logo_collapsed']) === false) {
+        config_update_value('custom_logo_collapsed', 'logo-pandorafms-1-collapsed.png');
     }
 
     if (is_metaconsole()) {
diff --git a/pandora_console/include/styles/menu.css b/pandora_console/include/styles/menu.css
index ebf201c761..7348875a45 100644
--- a/pandora_console/include/styles/menu.css
+++ b/pandora_console/include/styles/menu.css
@@ -399,7 +399,8 @@ ul li {
 }
 
 .logo_green {
-  height: 60px;
+  background-color: #fff;
+  min-height: 60px;
   display: flex;
   justify-content: center;
   align-items: center;

From 8a5847a22538a6027195db9e2becdf9e2ce38e26 Mon Sep 17 00:00:00 2001
From: artica <artica.devel@gmail.com>
Date: Wed, 8 Jun 2022 01:00:24 +0200
Subject: [PATCH 086/138] Auto-updated build strings.

---
 pandora_agents/unix/DEBIAN/control             | 2 +-
 pandora_agents/unix/DEBIAN/make_deb_package.sh | 2 +-
 pandora_agents/unix/pandora_agent              | 2 +-
 pandora_agents/unix/pandora_agent.redhat.spec  | 2 +-
 pandora_agents/unix/pandora_agent.spec         | 2 +-
 pandora_agents/unix/pandora_agent_installer    | 2 +-
 pandora_agents/win32/installer/pandora.mpi     | 2 +-
 pandora_agents/win32/pandora.cc                | 2 +-
 pandora_agents/win32/versioninfo.rc            | 2 +-
 pandora_console/DEBIAN/control                 | 2 +-
 pandora_console/DEBIAN/make_deb_package.sh     | 2 +-
 pandora_console/include/config_process.php     | 2 +-
 pandora_console/install.php                    | 2 +-
 pandora_console/pandora_console.redhat.spec    | 2 +-
 pandora_console/pandora_console.rhel7.spec     | 2 +-
 pandora_console/pandora_console.spec           | 2 +-
 pandora_server/DEBIAN/control                  | 2 +-
 pandora_server/DEBIAN/make_deb_package.sh      | 2 +-
 pandora_server/lib/PandoraFMS/Config.pm        | 2 +-
 pandora_server/lib/PandoraFMS/PluginTools.pm   | 2 +-
 pandora_server/pandora_server.redhat.spec      | 2 +-
 pandora_server/pandora_server.spec             | 2 +-
 pandora_server/pandora_server_installer        | 2 +-
 pandora_server/util/pandora_db.pl              | 2 +-
 pandora_server/util/pandora_manage.pl          | 2 +-
 25 files changed, 25 insertions(+), 25 deletions(-)

diff --git a/pandora_agents/unix/DEBIAN/control b/pandora_agents/unix/DEBIAN/control
index b3cb1f17fb..922a687d99 100644
--- a/pandora_agents/unix/DEBIAN/control
+++ b/pandora_agents/unix/DEBIAN/control
@@ -1,5 +1,5 @@
 package: pandorafms-agent-unix
-Version: 7.0NG.762-220607
+Version: 7.0NG.762-220608
 Architecture: all
 Priority: optional
 Section: admin
diff --git a/pandora_agents/unix/DEBIAN/make_deb_package.sh b/pandora_agents/unix/DEBIAN/make_deb_package.sh
index 5d6573eac3..98c9118a78 100644
--- a/pandora_agents/unix/DEBIAN/make_deb_package.sh
+++ b/pandora_agents/unix/DEBIAN/make_deb_package.sh
@@ -14,7 +14,7 @@
 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 # GNU General Public License for more details.
 
-pandora_version="7.0NG.762-220607"
+pandora_version="7.0NG.762-220608"
 
 echo "Test if you has the tools for to make the packages."
 whereis dpkg-deb | cut -d":" -f2 | grep dpkg-deb > /dev/null
diff --git a/pandora_agents/unix/pandora_agent b/pandora_agents/unix/pandora_agent
index b32f414bde..8dee5f151e 100755
--- a/pandora_agents/unix/pandora_agent
+++ b/pandora_agents/unix/pandora_agent
@@ -1015,7 +1015,7 @@ my $Sem = undef;
 my $ThreadSem = undef;
 
 use constant AGENT_VERSION => '7.0NG.762';
-use constant AGENT_BUILD => '220607';
+use constant AGENT_BUILD => '220608';
 
 # Agent log default file size maximum and instances
 use constant DEFAULT_MAX_LOG_SIZE => 600000;
diff --git a/pandora_agents/unix/pandora_agent.redhat.spec b/pandora_agents/unix/pandora_agent.redhat.spec
index 56d2497d72..a8e4c1b829 100644
--- a/pandora_agents/unix/pandora_agent.redhat.spec
+++ b/pandora_agents/unix/pandora_agent.redhat.spec
@@ -3,7 +3,7 @@
 #
 %define name        pandorafms_agent_unix
 %define version     7.0NG.762
-%define release     220607
+%define release     220608
 
 Summary:            Pandora FMS Linux agent, PERL version
 Name:               %{name}
diff --git a/pandora_agents/unix/pandora_agent.spec b/pandora_agents/unix/pandora_agent.spec
index 7ef4039d8d..26224284e1 100644
--- a/pandora_agents/unix/pandora_agent.spec
+++ b/pandora_agents/unix/pandora_agent.spec
@@ -3,7 +3,7 @@
 #
 %define name        pandorafms_agent_unix
 %define version     7.0NG.762
-%define release     220607
+%define release     220608
 
 Summary:            Pandora FMS Linux agent, PERL version
 Name:               %{name}
diff --git a/pandora_agents/unix/pandora_agent_installer b/pandora_agents/unix/pandora_agent_installer
index 1b6e438a75..15fcc47738 100755
--- a/pandora_agents/unix/pandora_agent_installer
+++ b/pandora_agents/unix/pandora_agent_installer
@@ -10,7 +10,7 @@
 # **********************************************************************
 
 PI_VERSION="7.0NG.762"
-PI_BUILD="220607"
+PI_BUILD="220608"
 OS_NAME=`uname -s`
 
 FORCE=0
diff --git a/pandora_agents/win32/installer/pandora.mpi b/pandora_agents/win32/installer/pandora.mpi
index 5334433382..9cea4335e5 100644
--- a/pandora_agents/win32/installer/pandora.mpi
+++ b/pandora_agents/win32/installer/pandora.mpi
@@ -186,7 +186,7 @@ UpgradeApplicationID
 {}
 
 Version
-{220607}
+{220608}
 
 ViewReadme
 {Yes}
diff --git a/pandora_agents/win32/pandora.cc b/pandora_agents/win32/pandora.cc
index 2f7eabaf99..c38a63c3ff 100644
--- a/pandora_agents/win32/pandora.cc
+++ b/pandora_agents/win32/pandora.cc
@@ -30,7 +30,7 @@ using namespace Pandora;
 using namespace Pandora_Strutils;
 
 #define PATH_SIZE    _MAX_PATH+1
-#define PANDORA_VERSION ("7.0NG.762 Build 220607")
+#define PANDORA_VERSION ("7.0NG.762 Build 220608")
 
 string pandora_path;
 string pandora_dir;
diff --git a/pandora_agents/win32/versioninfo.rc b/pandora_agents/win32/versioninfo.rc
index d0744b30ae..8f2689dd2a 100644
--- a/pandora_agents/win32/versioninfo.rc
+++ b/pandora_agents/win32/versioninfo.rc
@@ -11,7 +11,7 @@ BEGIN
       VALUE "LegalCopyright", "Artica ST"
       VALUE "OriginalFilename", "PandoraAgent.exe"
       VALUE "ProductName", "Pandora FMS Windows Agent"
-      VALUE "ProductVersion", "(7.0NG.762(Build 220607))"
+      VALUE "ProductVersion", "(7.0NG.762(Build 220608))"
       VALUE "FileVersion", "1.0.0.0"
     END
   END
diff --git a/pandora_console/DEBIAN/control b/pandora_console/DEBIAN/control
index addb068715..5d7ac0db29 100644
--- a/pandora_console/DEBIAN/control
+++ b/pandora_console/DEBIAN/control
@@ -1,5 +1,5 @@
 package: pandorafms-console
-Version: 7.0NG.762-220607
+Version: 7.0NG.762-220608
 Architecture: all
 Priority: optional
 Section: admin
diff --git a/pandora_console/DEBIAN/make_deb_package.sh b/pandora_console/DEBIAN/make_deb_package.sh
index 2de6132844..449b334f8e 100644
--- a/pandora_console/DEBIAN/make_deb_package.sh
+++ b/pandora_console/DEBIAN/make_deb_package.sh
@@ -14,7 +14,7 @@
 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 # GNU General Public License for more details.
 
-pandora_version="7.0NG.762-220607"
+pandora_version="7.0NG.762-220608"
 
 package_pear=0
 package_pandora=1
diff --git a/pandora_console/include/config_process.php b/pandora_console/include/config_process.php
index 8096b72dc1..9e9f90deb6 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 = 'PC220607';
+$build_version = 'PC220608';
 $pandora_version = 'v7.0NG.762';
 
 // Do not overwrite default timezone set if defined.
diff --git a/pandora_console/install.php b/pandora_console/install.php
index d19447f5b0..b8969a90fd 100644
--- a/pandora_console/install.php
+++ b/pandora_console/install.php
@@ -129,7 +129,7 @@
         <div style='height: 10px'>
             <?php
             $version = '7.0NG.762';
-            $build = '220607';
+            $build = '220608';
             $banner = "v$version Build $build";
 
             error_reporting(0);
diff --git a/pandora_console/pandora_console.redhat.spec b/pandora_console/pandora_console.redhat.spec
index bf6b75a900..e4e77a476b 100644
--- a/pandora_console/pandora_console.redhat.spec
+++ b/pandora_console/pandora_console.redhat.spec
@@ -3,7 +3,7 @@
 #
 %define name        pandorafms_console
 %define version     7.0NG.762
-%define release     220607
+%define release     220608
 
 # User and Group under which Apache is running
 %define httpd_name  httpd
diff --git a/pandora_console/pandora_console.rhel7.spec b/pandora_console/pandora_console.rhel7.spec
index 643f8340fe..f5a71b2f8b 100644
--- a/pandora_console/pandora_console.rhel7.spec
+++ b/pandora_console/pandora_console.rhel7.spec
@@ -3,7 +3,7 @@
 #
 %define name        pandorafms_console
 %define version     7.0NG.762
-%define release     220607
+%define release     220608
 
 # User and Group under which Apache is running
 %define httpd_name  httpd
diff --git a/pandora_console/pandora_console.spec b/pandora_console/pandora_console.spec
index 21194e6d24..376522e812 100644
--- a/pandora_console/pandora_console.spec
+++ b/pandora_console/pandora_console.spec
@@ -3,7 +3,7 @@
 #
 %define name        pandorafms_console
 %define version     7.0NG.762
-%define release     220607
+%define release     220608
 %define httpd_name      httpd
 # User and Group under which Apache is running
 %define httpd_name  apache2
diff --git a/pandora_server/DEBIAN/control b/pandora_server/DEBIAN/control
index 777367f95d..5c65dd81cb 100644
--- a/pandora_server/DEBIAN/control
+++ b/pandora_server/DEBIAN/control
@@ -1,5 +1,5 @@
 package: pandorafms-server
-Version: 7.0NG.762-220607
+Version: 7.0NG.762-220608
 Architecture: all
 Priority: optional
 Section: admin
diff --git a/pandora_server/DEBIAN/make_deb_package.sh b/pandora_server/DEBIAN/make_deb_package.sh
index 80b2429cb7..4f594fa7c8 100644
--- a/pandora_server/DEBIAN/make_deb_package.sh
+++ b/pandora_server/DEBIAN/make_deb_package.sh
@@ -14,7 +14,7 @@
 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 # GNU General Public License for more details.
 
-pandora_version="7.0NG.762-220607"
+pandora_version="7.0NG.762-220608"
 
 package_cpan=0
 package_pandora=1
diff --git a/pandora_server/lib/PandoraFMS/Config.pm b/pandora_server/lib/PandoraFMS/Config.pm
index 43774bd7e7..3afe98d3da 100644
--- a/pandora_server/lib/PandoraFMS/Config.pm
+++ b/pandora_server/lib/PandoraFMS/Config.pm
@@ -46,7 +46,7 @@ our @EXPORT = qw(
 
 # version: Defines actual version of Pandora Server for this module only
 my $pandora_version = "7.0NG.762";
-my $pandora_build = "220607";
+my $pandora_build = "220608";
 our $VERSION = $pandora_version." ".$pandora_build;
 
 # Setup hash
diff --git a/pandora_server/lib/PandoraFMS/PluginTools.pm b/pandora_server/lib/PandoraFMS/PluginTools.pm
index 7d5b27bbe1..e7474ae50e 100644
--- a/pandora_server/lib/PandoraFMS/PluginTools.pm
+++ b/pandora_server/lib/PandoraFMS/PluginTools.pm
@@ -34,7 +34,7 @@ our @ISA = qw(Exporter);
 
 # version: Defines actual version of Pandora Server for this module only
 my $pandora_version = "7.0NG.762";
-my $pandora_build = "220607";
+my $pandora_build = "220608";
 our $VERSION = $pandora_version." ".$pandora_build;
 
 our %EXPORT_TAGS = ( 'all' => [ qw() ] );
diff --git a/pandora_server/pandora_server.redhat.spec b/pandora_server/pandora_server.redhat.spec
index eb162c68d7..cc61dc9a15 100644
--- a/pandora_server/pandora_server.redhat.spec
+++ b/pandora_server/pandora_server.redhat.spec
@@ -3,7 +3,7 @@
 #
 %define name        pandorafms_server
 %define version     7.0NG.762
-%define release     220607
+%define release     220608
 
 Summary:            Pandora FMS Server
 Name:               %{name}
diff --git a/pandora_server/pandora_server.spec b/pandora_server/pandora_server.spec
index 01ec646be8..d54c7be0b0 100644
--- a/pandora_server/pandora_server.spec
+++ b/pandora_server/pandora_server.spec
@@ -3,7 +3,7 @@
 #
 %define name        pandorafms_server
 %define version     7.0NG.762
-%define release     220607
+%define release     220608
 
 Summary:            Pandora FMS Server
 Name:               %{name}
diff --git a/pandora_server/pandora_server_installer b/pandora_server/pandora_server_installer
index ea215e6c7f..7c1b20eded 100755
--- a/pandora_server/pandora_server_installer
+++ b/pandora_server/pandora_server_installer
@@ -9,7 +9,7 @@
 # **********************************************************************
 
 PI_VERSION="7.0NG.762"
-PI_BUILD="220607"
+PI_BUILD="220608"
 
 MODE=$1
 if [ $# -gt 1 ]; then
diff --git a/pandora_server/util/pandora_db.pl b/pandora_server/util/pandora_db.pl
index cc2e5e832d..0c4f49b025 100755
--- a/pandora_server/util/pandora_db.pl
+++ b/pandora_server/util/pandora_db.pl
@@ -35,7 +35,7 @@ use PandoraFMS::Config;
 use PandoraFMS::DB;
 
 # version: define current version
-my $version = "7.0NG.762 Build 220607";
+my $version = "7.0NG.762 Build 220608";
 
 # Pandora server configuration
 my %conf;
diff --git a/pandora_server/util/pandora_manage.pl b/pandora_server/util/pandora_manage.pl
index 8097c5333c..fcd068a7ec 100755
--- a/pandora_server/util/pandora_manage.pl
+++ b/pandora_server/util/pandora_manage.pl
@@ -36,7 +36,7 @@ use Encode::Locale;
 Encode::Locale::decode_argv;
 
 # version: define current version
-my $version = "7.0NG.762 Build 220607";
+my $version = "7.0NG.762 Build 220608";
 
 # save program name for logging
 my $progname = basename($0);

From 12b0f5cda10b34ba065dbbf0941768e6a005691e Mon Sep 17 00:00:00 2001
From: "alejandro.campos@artica.es" <alejandro.campos@artica.es>
Date: Wed, 8 Jun 2022 11:49:48 +0200
Subject: [PATCH 087/138] database changes

---
 pandora_console/extras/mr/55.sql              | 35 +++++++--
 .../pandoradb_migrate_6.0_to_759.mysql.sql    | 73 +++++++++++++++++++
 pandora_console/pandoradb.sql                 | 46 ++++++------
 3 files changed, 125 insertions(+), 29 deletions(-)

diff --git a/pandora_console/extras/mr/55.sql b/pandora_console/extras/mr/55.sql
index f833cb0517..ea2d76070e 100644
--- a/pandora_console/extras/mr/55.sql
+++ b/pandora_console/extras/mr/55.sql
@@ -1,16 +1,39 @@
 START TRANSACTION;
 
-ALTER TABLE `tuser_double_auth` DROP FOREIGN KEY `tuser_double_auth_ibfk_1`, MODIFY `id_user` VARCHAR(255) NOT NULL;
-ALTER TABLE `tnotification_user` DROP FOREIGN KEY `tnotification_user_ibfk_2`, MODIFY `id_user` VARCHAR(255) NOT NULL;
-ALTER TABLE `tnotification_source_user` DROP FOREIGN KEY `tnotification_source_user_ibfk_2`, MODIFY `id_user` VARCHAR(255) NOT NULL;
-ALTER TABLE `tnotification_source_group_user` DROP FOREIGN KEY `tnotification_source_group_user_ibfk_2`, MODIFY `id_user` VARCHAR(255) NOT NULL;
-ALTER TABLE `tvisual_console_elements_cache` DROP FOREIGN KEY `tvisual_console_elements_cache_ibfk_3`, MODIFY `user_id` VARCHAR(255) DEFAULT NULL;
-ALTER TABLE `tusuario` MODIFY `id_user` VARCHAR(255) NOT NULL DEFAULT '0';
+ALTER TABLE `tuser_double_auth` DROP FOREIGN KEY `tuser_double_auth_ibfk_1`, MODIFY COLUMN `id_user` VARCHAR(255) NOT NULL;
+ALTER TABLE `tnotification_user` DROP FOREIGN KEY `tnotification_user_ibfk_2`, MODIFY COLUMN `id_user` VARCHAR(255) NOT NULL;
+ALTER TABLE `tnotification_source_user` DROP FOREIGN KEY `tnotification_source_user_ibfk_2`, MODIFY COLUMN `id_user` VARCHAR(255) NOT NULL;
+ALTER TABLE `tnotification_source_group_user` DROP FOREIGN KEY `tnotification_source_group_user_ibfk_2`, MODIFY COLUMN `id_user` VARCHAR(255) NOT NULL;
+ALTER TABLE `tvisual_console_elements_cache` DROP FOREIGN KEY `tvisual_console_elements_cache_ibfk_3`, MODIFY COLUMN `user_id` VARCHAR(255) DEFAULT NULL;
+ALTER TABLE `tusuario` MODIFY COLUMN `id_user` VARCHAR(255) NOT NULL DEFAULT '0';
 ALTER TABLE `tuser_double_auth` ADD CONSTRAINT `tuser_double_auth_ibfk_1` FOREIGN KEY (`id_user`) REFERENCES `tusuario` (`id_user`) ON DELETE CASCADE;
 ALTER TABLE `tnotification_user` ADD CONSTRAINT `tnotification_user_ibfk_2` FOREIGN KEY (`id_user`) REFERENCES `tusuario` (`id_user`) ON DELETE CASCADE ON UPDATE CASCADE;
 ALTER TABLE `tnotification_source_user` ADD CONSTRAINT `tnotification_source_user_ibfk_2` FOREIGN KEY (`id_user`) REFERENCES `tusuario` (`id_user`) ON DELETE CASCADE ON UPDATE CASCADE;
 ALTER TABLE `tnotification_source_group_user` ADD CONSTRAINT `tnotification_source_group_user_ibfk_2` FOREIGN KEY (`id_user`) REFERENCES `tusuario` (`id_user`) ON DELETE CASCADE ON UPDATE CASCADE;
 ALTER TABLE `tvisual_console_elements_cache` ADD CONSTRAINT `tvisual_console_elements_cache_ibfk_3` FOREIGN KEY (`user_id`) REFERENCES `tusuario` (`id_user`) ON DELETE CASCADE ON UPDATE CASCADE;
 ALTER TABLE `tservice` ADD COLUMN `enable_sunburst` tinyint(1) NOT NULL default 0;
+ALTER TABLE `tattachment` MODIFY COLUMN `id_usuario` VARCHAR(255) NOT NULL DEFAULT '';
+ALTER TABLE `tevento` MODIFY COLUMN `id_usuario` VARCHAR(255) NOT NULL DEFAULT '0';
+ALTER TABLE `tincidencia` MODIFY COLUMN `id_usuario` VARCHAR(255) NOT NULL DEFAULT '';
+ALTER TABLE `tnota` MODIFY COLUMN `id_usuario` VARCHAR(255) NOT NULL DEFAULT '0';
+ALTER TABLE `tsesion` MODIFY COLUMN `id_usuario` VARCHAR(255) NOT NULL DEFAULT '0';
+ALTER TABLE `ttrap` MODIFY COLUMN `id_usuario` VARCHAR(255) DEFAULT '';
+ALTER TABLE `tusuario_perfil` MODIFY COLUMN `id_usuario` VARCHAR(255) NOT NULL DEFAULT '';
+ALTER TABLE `treset_pass_history` MODIFY COLUMN `id_user` VARCHAR(255) NOT NULL;
+ALTER TABLE `tmensajes` MODIFY COLUMN `id_usuario_origen` VARCHAR(255) NOT NULL DEFAULT '';
+ALTER TABLE `tgraph` MODIFY COLUMN `id_user` VARCHAR(255) NOT NULL DEFAULT '';
+ALTER TABLE `treport` MODIFY COLUMN `id_user` VARCHAR(255) NOT NULL DEFAULT '';
+ALTER TABLE `tplanned_downtime` MODIFY COLUMN `id_user` VARCHAR(255) NOT NULL DEFAULT '0';
+ALTER TABLE `tnetwork_map` MODIFY COLUMN `id_user` VARCHAR(255) NOT NULL;
+ALTER TABLE `tpassword_history` MODIFY COLUMN `id_user` VARCHAR(255) NOT NULL;
+ALTER TABLE `tupdate_journal` MODIFY COLUMN `id_user` VARCHAR(255) NOT NULL DEFAULT '';
+ALTER TABLE `tmap` MODIFY COLUMN `id_user` VARCHAR(255) NOT NULL DEFAULT '';
+ALTER TABLE `tdashboard` MODIFY COLUMN `id_user` VARCHAR(255) NOT NULL DEFAULT '';
+ALTER TABLE `treport_template` MODIFY COLUMN `id_user` VARCHAR(255) NOT NULL DEFAULT '';
+ALTER TABLE `tmetaconsole_event` MODIFY COLUMN `id_usuario` VARCHAR(255) NOT NULL DEFAULT '0';
+ALTER TABLE `tmetaconsole_event_history` MODIFY COLUMN `id_usuario` VARCHAR(255) NOT NULL DEFAULT '0';
+ALTER TABLE `treset_pass` MODIFY COLUMN `id_user` VARCHAR(255) NOT NULL DEFAULT '';
+ALTER TABLE `tuser_task_scheduled` MODIFY COLUMN `id_usuario` VARCHAR(255) NOT NULL DEFAULT '0';
+ALTER TABLE `tbackup` MODIFY COLUMN `id_user` VARCHAR(255) DEFAULT '';
 
 COMMIT;
diff --git a/pandora_console/extras/pandoradb_migrate_6.0_to_759.mysql.sql b/pandora_console/extras/pandoradb_migrate_6.0_to_759.mysql.sql
index 242e7d42c6..df09c2b8e4 100644
--- a/pandora_console/extras/pandoradb_migrate_6.0_to_759.mysql.sql
+++ b/pandora_console/extras/pandoradb_migrate_6.0_to_759.mysql.sql
@@ -838,6 +838,8 @@ CREATE TABLE IF NOT EXISTS `treport_template` (
 	PRIMARY KEY(`id_report`)
 ) ENGINE = InnoDB DEFAULT CHARSET=utf8;
 
+ALTER TABLE `treport_template` MODIFY COLUMN `id_user` VARCHAR(255) NOT NULL DEFAULT '';
+
 -- -----------------------------------------------------
 -- Table `treport_content_template`
 -- -----------------------------------------------------
@@ -1054,6 +1056,7 @@ ALTER TABLE `tmetaconsole_event` ADD INDEX `tme_module_status_idx` (`module_stat
 ALTER TABLE `tmetaconsole_event` ADD INDEX `tme_criticity_idx` (`criticity`);
 ALTER TABLE `tmetaconsole_event` ADD INDEX `tme_agent_name_idx` (`agent_name`);
 ALTER TABLE `tmetaconsole_event` MODIFY `data` TINYTEXT default NULL;
+ALTER TABLE `tmetaconsole_event` MODIFY COLUMN `id_usuario` VARCHAR(255) NOT NULL DEFAULT '0';
 
 -- ---------------------------------------------------------------------
 -- Table `tmetaconsole_event_history`
@@ -1104,6 +1107,8 @@ ALTER TABLE `tmetaconsole_event_history` ADD COLUMN `data` double(50,5) default
 ALTER TABLE `tmetaconsole_event_history` ADD COLUMN `module_status` int(4) NOT NULL default '0';
 ALTER TABLE `tmetaconsole_event_history` ADD INDEX `tmeh_estado_idx` (`estado`);
 ALTER TABLE `tmetaconsole_event_history` ADD INDEX `tmeh_timestamp_idx` (`timestamp`);
+ALTER TABLE `tmetaconsole_event_history` MODIFY COLUMN `id_usuario` VARCHAR(255) NOT NULL DEFAULT '0';
+
 -- ---------------------------------------------------------------------
 -- Table `textension_translate_string`
 -- ---------------------------------------------------------------------
@@ -1454,6 +1459,7 @@ ALTER TABLE `talert_commands` MODIFY COLUMN `id_group` mediumint(8) unsigned NUL
 -- Table `tmap`
 -- ---------------------------------------------------------------------
 ALTER TABLE `tmap` MODIFY COLUMN `id_user` varchar(250) NOT NULL DEFAULT '';
+ALTER TABLE `tmap` MODIFY COLUMN `id_user` VARCHAR(255) NOT NULL DEFAULT '';
 
 -- ---------------------------------------------------------------------
 -- Table `ttag`
@@ -1749,6 +1755,7 @@ ALTER TABLE tgraph ADD COLUMN `average_series`  tinyint(1) UNSIGNED NOT NULL def
 ALTER TABLE tgraph ADD COLUMN `modules_series`  tinyint(1) UNSIGNED NOT NULL default '0';
 ALTER TABLE tgraph ADD COLUMN `fullscale` tinyint(1) UNSIGNED NOT NULL default '0';
 ALTER TABLE `tgraph` MODIFY COLUMN `percentil` tinyint(1) unsigned NOT NULL DEFAULT '0';
+ALTER TABLE `tgraph` MODIFY COLUMN `id_user` VARCHAR(255) NOT NULL DEFAULT '';
 
 -- ---------------------------------------------------------------------
 -- Table `tnetflow_filter`
@@ -1952,6 +1959,8 @@ CREATE TABLE IF NOT EXISTS `treset_pass_history` (
 	PRIMARY KEY (`id`)
 ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
 
+ALTER TABLE `treset_pass_history` MODIFY COLUMN `id_user` VARCHAR(255) NOT NULL;
+
 -- ---------------------------------------------------------------------
 -- Table `tcontainer_item`
 -- ---------------------------------------------------------------------
@@ -1978,6 +1987,9 @@ CREATE TABLE IF NOT EXISTS `tcontainer_item` (
 
 ALTER TABLE tusuario add default_event_filter int(10) unsigned NOT NULL DEFAULT 0;
 
+-- ---------------------------------------------------------------------
+-- Table `treset_pass`
+-- ---------------------------------------------------------------------
 CREATE TABLE IF NOT EXISTS `treset_pass` (
     `id` bigint(10) unsigned NOT NULL auto_increment,
     `id_user` varchar(100) NOT NULL default '',
@@ -1986,6 +1998,8 @@ CREATE TABLE IF NOT EXISTS `treset_pass` (
     PRIMARY KEY (`id`) 
 )ENGINE=InnoDB DEFAULT CHARSET=utf8;
 
+ALTER TABLE `treset_pass` MODIFY COLUMN `id_user` VARCHAR(255) NOT NULL DEFAULT '';
+
 UPDATE tgis_map_connection SET conection_data = '{"type":"OSM","url":"http://tile.openstreetmap.org/${z}/${x}/${y}.png"}' where id_tmap_connection = 1;
 
 ALTER TABLE tpolicy_modules MODIFY post_process double(24,15) default 0;
@@ -2047,6 +2061,7 @@ INSERT INTO `ttipo_modulo` VALUES
 -- Table `tdashboard`
 -- ---------------------------------------------------------------------
 ALTER TABLE `tdashboard` ADD COLUMN `cells_slideshow` TINYINT(1) NOT NULL default 0;
+ALTER TABLE `tdashboard` MODIFY COLUMN `id_user` VARCHAR(255) NOT NULL DEFAULT '';
 
 -- ---------------------------------------------------------------------
 -- Table `tsnmp_filter`
@@ -2356,6 +2371,7 @@ ALTER TABLE `treport` ADD COLUMN `orientation` varchar(25) NOT NULL default 'ver
 ALTER TABLE `treport` MODIFY COLUMN `hidden` tinyint(1) NULL DEFAULT '0' AFTER `non_interactive`;
 ALTER TABLE `treport` ADD COLUMN `cover_page_render` tinyint(1) NOT NULL DEFAULT 1;
 ALTER TABLE `treport` ADD COLUMN `index_render` tinyint(1) NOT NULL DEFAULT 1;
+ALTER TABLE `treport` MODIFY COLUMN `id_user` VARCHAR(255) NOT NULL DEFAULT '';
 
 ALTER TABLE `trecon_task` ADD COLUMN `snmp_version` varchar(5) NOT NULL default '1';
 ALTER TABLE `trecon_task` ADD COLUMN `snmp_auth_user` varchar(255) NOT NULL default '';
@@ -2393,6 +2409,8 @@ ALTER TABLE `tevento` ADD COLUMN `module_status` int(4) NOT NULL default '0';
 
 ALTER TABLE `tevento` MODIFY `data` TINYTEXT default NULL;
 
+ALTER TABLE `tevento` MODIFY COLUMN `id_usuario` VARCHAR(255) NOT NULL DEFAULT '0';
+
 -- ---------------------------------------------------------------------
 -- Table `tevent_extended`
 -- ---------------------------------------------------------------------
@@ -2462,6 +2480,8 @@ CREATE TABLE IF NOT EXISTS `tuser_task_scheduled` (
 	PRIMARY KEY (`id`)
 ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
 
+ALTER TABLE `tuser_task_scheduled` MODIFY COLUMN `id_usuario` VARCHAR(255) NOT NULL DEFAULT '0';
+
 -- -----------------------------------------------------
 -- Table `tnotification_source`
 -- -----------------------------------------------------
@@ -2501,6 +2521,8 @@ ALTER TABLE `tmensajes` ADD CONSTRAINT `tsource_fk` FOREIGN KEY (`id_source`) RE
 ALTER TABLE `tmensajes` DROP COLUMN `id_usuario_destino`,
 	ADD UNIQUE INDEX `id_mensaje` (`id_mensaje`);
 
+ALTER TABLE `tmensajes` MODIFY COLUMN `id_usuario_origen` VARCHAR(255) NOT NULL DEFAULT '';
+
 -- ----------------------------------------------------------------------
 -- Table `tnotification_user`
 -- ----------------------------------------------------------------------
@@ -2796,6 +2818,7 @@ UPDATE `trecon_script` SET `description`='Specific&#x20;Pandora&#x20;FMS&#x20;In
 -- Table `tusuario_perfil`
 -- ---------------------------------------------------------------------
 ALTER TABLE `tusuario_perfil` MODIFY COLUMN `no_hierarchy` tinyint(1) NOT NULL DEFAULT '0';
+ALTER TABLE `tusuario_perfil` MODIFY COLUMN `id_usuario` VARCHAR(255) NOT NULL DEFAULT '';
 
 
 -- Extra tnetwork_component
@@ -4353,3 +4376,53 @@ ALTER TABLE `tnotification_user` ADD CONSTRAINT `tnotification_user_ibfk_2` FORE
 ALTER TABLE `tnotification_source_user` ADD CONSTRAINT `tnotification_source_user_ibfk_2` FOREIGN KEY (`id_user`) REFERENCES `tusuario` (`id_user`) ON DELETE CASCADE ON UPDATE CASCADE;
 ALTER TABLE `tnotification_source_group_user` ADD CONSTRAINT `tnotification_source_group_user_ibfk_2` FOREIGN KEY (`id_user`) REFERENCES `tusuario` (`id_user`) ON DELETE CASCADE ON UPDATE CASCADE;
 ALTER TABLE `tvisual_console_elements_cache` ADD CONSTRAINT `tvisual_console_elements_cache_ibfk_3` FOREIGN KEY (`user_id`) REFERENCES `tusuario` (`id_user`) ON DELETE CASCADE ON UPDATE CASCADE;
+
+-- ----------------------------------------------------------------------
+-- Table `tattachment`
+-- ----------------------------------------------------------------------
+ALTER TABLE `tattachment` MODIFY COLUMN `id_usuario` VARCHAR(255) NOT NULL DEFAULT '';
+
+-- ----------------------------------------------------------------------
+-- Table `tincidencia`
+-- ----------------------------------------------------------------------
+ALTER TABLE `tincidencia` MODIFY COLUMN `id_usuario` VARCHAR(255) NOT NULL DEFAULT '';
+
+-- ----------------------------------------------------------------------
+-- Table `tnota`
+-- ----------------------------------------------------------------------
+ALTER TABLE `tnota` MODIFY COLUMN `id_usuario` VARCHAR(255) NOT NULL DEFAULT '0';
+
+-- ----------------------------------------------------------------------
+-- Table `tsesion`
+-- ----------------------------------------------------------------------
+ALTER TABLE `tsesion` MODIFY COLUMN `id_usuario` VARCHAR(255) NOT NULL DEFAULT '0';
+
+-- ----------------------------------------------------------------------
+-- Table `ttrap`
+-- ----------------------------------------------------------------------
+ALTER TABLE `ttrap` MODIFY COLUMN `id_usuario` VARCHAR(255) DEFAULT '';
+
+-- ----------------------------------------------------------------------
+-- Table `tplanned_downtime`
+-- ----------------------------------------------------------------------
+ALTER TABLE `tplanned_downtime` MODIFY COLUMN `id_user` VARCHAR(255) NOT NULL DEFAULT '0';
+
+-- ----------------------------------------------------------------------
+-- Table `tnetwork_map`
+-- ----------------------------------------------------------------------
+ALTER TABLE `tnetwork_map` MODIFY COLUMN `id_user` VARCHAR(255) NOT NULL;
+
+-- ----------------------------------------------------------------------
+-- Table `tpassword_history`
+-- ----------------------------------------------------------------------
+ALTER TABLE `tpassword_history` MODIFY COLUMN `id_user` VARCHAR(255) NOT NULL;
+
+-- ----------------------------------------------------------------------
+-- Table `tupdate_journal`
+-- ----------------------------------------------------------------------
+ALTER TABLE `tupdate_journal` MODIFY COLUMN `id_user` VARCHAR(255) NOT NULL DEFAULT '';
+
+-- ----------------------------------------------------------------------
+-- Table `tbackup`
+-- ----------------------------------------------------------------------
+ALTER TABLE `tbackup` MODIFY COLUMN `id_user` VARCHAR(255) DEFAULT '';
diff --git a/pandora_console/pandoradb.sql b/pandora_console/pandoradb.sql
index 9bdad4af90..08a43d2979 100644
--- a/pandora_console/pandoradb.sql
+++ b/pandora_console/pandoradb.sql
@@ -616,7 +616,7 @@ CREATE TABLE IF NOT EXISTS `talert_execution_queue` (
 CREATE TABLE IF NOT EXISTS `tattachment` (
   `id_attachment` INT UNSIGNED NOT NULL AUTO_INCREMENT,
   `id_incidencia` INT UNSIGNED NOT NULL DEFAULT 0,
-  `id_usuario` VARCHAR(60) NOT NULL DEFAULT '',
+  `id_usuario` VARCHAR(255) NOT NULL DEFAULT '',
   `filename` VARCHAR(255) NOT NULL DEFAULT '',
   `description` VARCHAR(150) DEFAULT '',
   `size` BIGINT UNSIGNED NOT NULL DEFAULT 0,
@@ -689,7 +689,7 @@ CREATE TABLE IF NOT EXISTS `tcontainer_item` (
 CREATE TABLE IF NOT EXISTS `tevento` (
   `id_evento` BIGINT UNSIGNED NOT NULL AUTO_INCREMENT,
   `id_agente` INT NOT NULL DEFAULT 0,
-  `id_usuario` VARCHAR(100) NOT NULL DEFAULT '0',
+  `id_usuario` VARCHAR(255) NOT NULL DEFAULT '0',
   `id_grupo` MEDIUMINT NOT NULL DEFAULT 0,
   `estado` TINYINT UNSIGNED NOT NULL DEFAULT 0,
   `timestamp` DATETIME NOT NULL DEFAULT '1970-01-01 00:00:00',
@@ -779,7 +779,7 @@ CREATE TABLE IF NOT EXISTS `tincidencia` (
   `cierre` DATETIME NOT NULL DEFAULT '1970-01-01 00:00:00',
   `titulo` TEXT,
   `descripcion` TEXT,
-  `id_usuario` VARCHAR(60) NOT NULL DEFAULT '',
+  `id_usuario` VARCHAR(255) NOT NULL DEFAULT '',
   `origen` VARCHAR(100) NOT NULL DEFAULT '',
   `estado` INT NOT NULL DEFAULT 0,
   `prioridad` INT NOT NULL DEFAULT 0,
@@ -1059,7 +1059,7 @@ CREATE TABLE IF NOT EXISTS `tnetwork_profile_pen` (
 CREATE TABLE IF NOT EXISTS `tnota` (
   `id_nota` BIGINT UNSIGNED NOT NULL AUTO_INCREMENT,
   `id_incident` BIGINT UNSIGNED NOT NULL,
-  `id_usuario` VARCHAR(100) NOT NULL DEFAULT '0',
+  `id_usuario` VARCHAR(255) NOT NULL DEFAULT '0',
   `timestamp` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
   `nota` MEDIUMTEXT,
   PRIMARY KEY  (`id_nota`),
@@ -1172,7 +1172,7 @@ CREATE TABLE IF NOT EXISTS `tserver` (
 -- ----------------------------------------------------------------------
 CREATE TABLE IF NOT EXISTS `tsesion` (
   `id_sesion` BIGINT UNSIGNED NOT NULL AUTO_INCREMENT,
-  `id_usuario` VARCHAR(60) NOT NULL DEFAULT '0',
+  `id_usuario` VARCHAR(255) NOT NULL DEFAULT '0',
   `ip_origen` VARCHAR(100) NOT NULL DEFAULT '',
   `accion` VARCHAR(100) NOT NULL DEFAULT '',
   `descripcion` TEXT,
@@ -1208,7 +1208,7 @@ CREATE TABLE IF NOT EXISTS `ttrap` (
   `value_custom` TEXT,
   `alerted` SMALLINT NOT NULL DEFAULT 0,
   `status` SMALLINT NOT NULL DEFAULT 0,
-  `id_usuario` VARCHAR(150) DEFAULT '',
+  `id_usuario` VARCHAR(255) DEFAULT '',
   `timestamp` DATETIME NOT NULL DEFAULT '1970-01-01 00:00:00',
   `priority` TINYINT UNSIGNED NOT NULL DEFAULT 2,
   `text` VARCHAR(255) DEFAULT '',
@@ -1313,7 +1313,7 @@ CREATE TABLE IF NOT EXISTS `tusuario` (
 -- ----------------------------------------------------------------------
 CREATE TABLE IF NOT EXISTS `tusuario_perfil` (
   `id_up` BIGINT UNSIGNED NOT NULL AUTO_INCREMENT,
-  `id_usuario` VARCHAR(100) NOT NULL DEFAULT '',
+  `id_usuario` VARCHAR(255) NOT NULL DEFAULT '',
   `id_perfil` INT UNSIGNED NOT NULL DEFAULT 0,
   `id_grupo` INT NOT NULL DEFAULT 0,
   `no_hierarchy` TINYINT NOT NULL DEFAULT 0,
@@ -1340,7 +1340,7 @@ CREATE TABLE IF NOT EXISTS `tuser_double_auth` (
 -- ----------------------------------------------------------------------
 CREATE TABLE IF NOT EXISTS `treset_pass_history` (
   `id` INT UNSIGNED NOT NULL AUTO_INCREMENT,
-  `id_user` VARCHAR(60) NOT NULL,
+  `id_user` VARCHAR(255) NOT NULL,
   `reset_moment` DATETIME NOT NULL,
   `success` TINYINT NOT NULL,
   PRIMARY KEY (`id`)
@@ -1366,7 +1366,7 @@ CREATE TABLE IF NOT EXISTS `tnotification_source` (
 -- -----------------------------------------------------
 CREATE TABLE IF NOT EXISTS `tmensajes` (
   `id_mensaje` INT UNSIGNED NOT NULL AUTO_INCREMENT,
-  `id_usuario_origen` VARCHAR(60) NOT NULL DEFAULT '',
+  `id_usuario_origen` VARCHAR(255) NOT NULL DEFAULT '',
   `mensaje` TEXT,
   `timestamp` BIGINT UNSIGNED NOT NULL DEFAULT 0,
   `subject` VARCHAR(255) NOT NULL DEFAULT '',
@@ -1476,7 +1476,7 @@ CREATE TABLE IF NOT EXISTS `tnews` (
 -- ----------------------------------------------------------------------
 CREATE TABLE IF NOT EXISTS `tgraph` (
   `id_graph` INT UNSIGNED NOT NULL  AUTO_INCREMENT,
-  `id_user` VARCHAR(100) NOT NULL DEFAULT '',
+  `id_user` VARCHAR(255) NOT NULL DEFAULT '',
   `name` VARCHAR(150) NOT NULL DEFAULT '',
   `description` TEXT,
   `period` INT NOT NULL DEFAULT 0,
@@ -1514,7 +1514,7 @@ CREATE TABLE IF NOT EXISTS `tgraph_source` (
 -- ----------------------------------------------------------------------
 CREATE TABLE IF NOT EXISTS `treport` (
   `id_report` INT UNSIGNED NOT NULL  AUTO_INCREMENT,
-  `id_user` VARCHAR(100) NOT NULL DEFAULT '',
+  `id_user` VARCHAR(255) NOT NULL DEFAULT '',
   `name` VARCHAR(150) NOT NULL DEFAULT '',
   `description` TEXT,
   `private` TINYINT UNSIGNED NOT NULL DEFAULT 0,
@@ -1813,7 +1813,7 @@ CREATE TABLE IF NOT EXISTS `tplanned_downtime` (
   `type_downtime` VARCHAR(100) NOT NULL DEFAULT 'disabled_agents_alerts',
   `type_execution` VARCHAR(100) NOT NULL DEFAULT 'once',
   `type_periodicity` VARCHAR(100) NOT NULL DEFAULT 'weekly',
-  `id_user` VARCHAR(100) NOT NULL DEFAULT '0',
+  `id_user` VARCHAR(255) NOT NULL DEFAULT '0',
   PRIMARY KEY (  `id` ) 
 ) ENGINE=InnoDB DEFAULT CHARSET=UTF8MB4;
 
@@ -2036,7 +2036,7 @@ CREATE TABLE IF NOT EXISTS `tgroup_stat` (
 -- ----------------------------------------------------------------------
 CREATE TABLE IF NOT EXISTS `tnetwork_map` (
   `id_networkmap` INT UNSIGNED NOT NULL AUTO_INCREMENT,
-  `id_user` VARCHAR(60)  NOT NULL,
+  `id_user` VARCHAR(255)  NOT NULL,
   `name` VARCHAR(100)  NOT NULL,
   `type` VARCHAR(20)  NOT NULL,
   `layout` VARCHAR(20)  NOT NULL,
@@ -2196,7 +2196,7 @@ CREATE TABLE IF NOT EXISTS `tnetflow_report_content` (
 -- ---------------------------------------------------------------------
 CREATE TABLE IF NOT EXISTS `tpassword_history` (
   `id_pass`  INT UNSIGNED NOT NULL AUTO_INCREMENT,
-  `id_user` VARCHAR(60) NOT NULL,
+  `id_user` VARCHAR(255) NOT NULL,
   `password` VARCHAR(45) DEFAULT NULL,
   `date_begin` DATETIME,
   `date_end` DATETIME,
@@ -2249,7 +2249,7 @@ CREATE TABLE `tupdate_journal` (
   `version` VARCHAR(25) DEFAULT '',
   `type` VARCHAR(25) DEFAULT '',
   `origin` VARCHAR(25) DEFAULT '',
-  `id_user` VARCHAR(250) NOT NULL DEFAULT ''
+  `id_user` VARCHAR(255) NOT NULL DEFAULT ''
 ) ENGINE=InnoDB DEFAULT CHARSET=UTF8MB4;
 
 -- ---------------------------------------------------------------------
@@ -2298,7 +2298,7 @@ CREATE TABLE IF NOT EXISTS `tsessions_php` (
 CREATE TABLE IF NOT EXISTS `tmap` (
   `id` INT UNSIGNED NOT NULL AUTO_INCREMENT,
   `id_group` INT UNSIGNED NOT NULL DEFAULT 0,
-  `id_user` VARCHAR(250) NOT NULL DEFAULT '',
+  `id_user` VARCHAR(255) NOT NULL DEFAULT '',
   `type` INT UNSIGNED NOT NULL DEFAULT 0,
   `subtype` INT UNSIGNED NOT NULL DEFAULT 0,
   `name` VARCHAR(250) DEFAULT '',
@@ -2579,7 +2579,7 @@ CREATE TABLE IF NOT EXISTS `tpolicy_group_agents` (
 CREATE TABLE IF NOT EXISTS `tdashboard` (
   `id` INT UNSIGNED NOT NULL AUTO_INCREMENT,
   `name` VARCHAR(60) NOT NULL DEFAULT '',
-  `id_user` VARCHAR(60) NOT NULL DEFAULT '',
+  `id_user` VARCHAR(255) NOT NULL DEFAULT '',
   `id_group` INT NOT NULL DEFAULT 0,
   `active` TINYINT NOT NULL DEFAULT 0,
   `cells` INT UNSIGNED DEFAULT 0,
@@ -3128,7 +3128,7 @@ CREATE TABLE IF NOT EXISTS `tnetworkmap_ent_rel_nodes` (
 -- -----------------------------------------------------
 CREATE TABLE IF NOT EXISTS `treport_template` (
   `id_report` INT UNSIGNED NOT NULL  AUTO_INCREMENT,
-  `id_user` VARCHAR(100) NOT NULL DEFAULT '',
+  `id_user` VARCHAR(255) NOT NULL DEFAULT '',
   `name` VARCHAR(150) NOT NULL DEFAULT '',
   `description` TEXT,
   `private` TINYINT UNSIGNED NOT NULL DEFAULT 0,
@@ -3297,7 +3297,7 @@ CREATE TABLE IF NOT EXISTS `tmetaconsole_event` (
   `id_source_event` BIGINT UNSIGNED NOT NULL,
   `id_agente` INT NOT NULL DEFAULT 0,
   `agent_name` VARCHAR(600) NOT NULL DEFAULT '',
-  `id_usuario` VARCHAR(100) NOT NULL DEFAULT '0',
+  `id_usuario` VARCHAR(255) NOT NULL DEFAULT '0',
   `id_grupo` MEDIUMINT NOT NULL DEFAULT 0,
   `group_name` VARCHAR(100) NOT NULL DEFAULT '',
   `estado` TINYINT UNSIGNED NOT NULL DEFAULT 0,
@@ -3349,7 +3349,7 @@ CREATE TABLE IF NOT EXISTS `tmetaconsole_event_history` (
   `id_source_event` BIGINT UNSIGNED NOT NULL,
   `id_agente` INT NOT NULL DEFAULT 0,
   `agent_name` VARCHAR(600) NOT NULL DEFAULT '',
-  `id_usuario` VARCHAR(100) NOT NULL DEFAULT '0',
+  `id_usuario` VARCHAR(255) NOT NULL DEFAULT '0',
   `id_grupo` MEDIUMINT NOT NULL DEFAULT 0,
   `group_name` VARCHAR(100) NOT NULL DEFAULT '',
   `estado` TINYINT UNSIGNED NOT NULL DEFAULT 0,
@@ -3513,7 +3513,7 @@ CREATE TABLE IF NOT EXISTS `tphase`(
 
 CREATE TABLE IF NOT EXISTS `treset_pass` (
   `id` BIGINT UNSIGNED NOT NULL AUTO_INCREMENT,
-  `id_user` VARCHAR(100) NOT NULL DEFAULT '',
+  `id_user` VARCHAR(255) NOT NULL DEFAULT '',
   `cod_hash` VARCHAR(100) NOT NULL DEFAULT '',
   `reset_time` INT UNSIGNED NOT NULL DEFAULT 0,
   PRIMARY KEY (`id`)
@@ -3818,7 +3818,7 @@ CREATE TABLE IF NOT EXISTS `tuser_task` (
 -- ---------------------------------------------------------------------
 CREATE TABLE IF NOT EXISTS `tuser_task_scheduled` (
   `id` INT UNSIGNED NOT NULL AUTO_INCREMENT,
-  `id_usuario` VARCHAR(60) NOT NULL DEFAULT '0',
+  `id_usuario` VARCHAR(255) NOT NULL DEFAULT '0',
   `id_user_task` INT UNSIGNED NOT NULL DEFAULT 0,
   `args` TEXT,
   `scheduled` ENUM('no','hourly','daily','weekly','monthly','yearly','custom') DEFAULT 'no',
@@ -4217,7 +4217,7 @@ CREATE TABLE IF NOT EXISTS `tbackup` (
   `id` SERIAL,
   `utimestamp` BIGINT DEFAULT 0,
   `filename` VARCHAR(512) DEFAULT '',
-  `id_user` VARCHAR(60) DEFAULT '',
+  `id_user` VARCHAR(255) DEFAULT '',
   `description` MEDIUMTEXT,
   `pid` INT UNSIGNED DEFAULT 0,
   `filepath` VARCHAR(512) DEFAULT '',

From 5297123d170e673f787691a5334ee309491ceb52 Mon Sep 17 00:00:00 2001
From: Calvo <luis.calvo@artica.es>
Date: Wed, 8 Jun 2022 13:10:01 +0200
Subject: [PATCH 088/138] Console changes for 8950

---
 pandora_console/extras/mr/55.sql              |  4 ++
 .../pandoradb_migrate_6.0_to_759.mysql.sql    |  2 +
 .../godmode/agentes/agent_manager.php         | 41 ++++++++++++++++++-
 .../godmode/agentes/configurar_agente.php     |  4 ++
 .../agentes/estado_generalagente.php          | 21 ++++++++++
 pandora_console/pandoradb.sql                 |  2 +
 6 files changed, 73 insertions(+), 1 deletion(-)

diff --git a/pandora_console/extras/mr/55.sql b/pandora_console/extras/mr/55.sql
index f53133c456..3da77ea7c0 100644
--- a/pandora_console/extras/mr/55.sql
+++ b/pandora_console/extras/mr/55.sql
@@ -4,4 +4,8 @@ ALTER TABLE `tservice` ADD COLUMN `enable_sunburst` tinyint(1) NOT NULL default
 
 ALTER TABLE `tdashboard` MODIFY `name` TEXT NOT NULL DEFAULT '';
 
+ALTER TABLE `tagente` ADD COLUMN `satellite_server` INT NOT NULL default 0;
+ALTER TABLE `tmetaconsole_agent` ADD COLUMN `satellite_server` INT NOT NULL default 0;
+
 COMMIT;
+
diff --git a/pandora_console/extras/pandoradb_migrate_6.0_to_759.mysql.sql b/pandora_console/extras/pandoradb_migrate_6.0_to_759.mysql.sql
index ca68a5472a..73203c82e9 100644
--- a/pandora_console/extras/pandoradb_migrate_6.0_to_759.mysql.sql
+++ b/pandora_console/extras/pandoradb_migrate_6.0_to_759.mysql.sql
@@ -1660,6 +1660,8 @@ ALTER TABLE tagente ADD COLUMN (alias varchar(600) not null default '');
 ALTER TABLE tagente ADD `alias_as_name` int(2) unsigned default '0';
 ALTER TABLE tagente ADD COLUMN `safe_mode_module` int(10) unsigned NOT NULL default '0';
 ALTER TABLE `tagente` ADD COLUMN `cps` int NOT NULL default 0;
+ALTER TABLE `tagente` ADD COLUMN `satellite_server` INT NOT NULL DEFAULT 0;
+
 
 UPDATE tagente SET tagente.alias = tagente.nombre;
 
diff --git a/pandora_console/godmode/agentes/agent_manager.php b/pandora_console/godmode/agentes/agent_manager.php
index d1246b298c..afe6a3cfeb 100644
--- a/pandora_console/godmode/agentes/agent_manager.php
+++ b/pandora_console/godmode/agentes/agent_manager.php
@@ -245,8 +245,11 @@ if (!$new_agent && $alias != '') {
     }
 
     // Remote configuration available.
+    $remote_agent = false;
     if (isset($filename)) {
         if (file_exists($filename['md5'])) {
+            $remote_agent = true;
+
             $agent_name = agents_get_name($id_agente);
             $agent_name = io_safe_output($agent_name);
             $agent_md5 = md5($agent_name, false);
@@ -427,6 +430,42 @@ $table_server .= html_print_select(
     true
 ).'<div class="label_select_child_icons"></div></div></div>';
 
+
+$table_satellite = '';
+if ($remote_agent === true) {
+    // Satellite server selector.
+    $satellite_servers = db_get_all_rows_filter(
+        'tserver',
+        ['server_type' => SERVER_TYPE_ENTERPRISE_SATELLITE],
+        [
+            'id_server',
+            'name',
+        ]
+    );
+
+    $satellite_names = [];
+    if (empty($satellite_servers) === false) {
+        foreach ($satellite_servers as $s_server) {
+            $satellite_names[$s_server['id_server']] = $s_server['name'];
+        }
+
+            $table_satellite = '<div class="label_select"><p class="input_label">'.__('Satellite').'</p>';
+            $table_satellite .= '<div class="label_select_parent">';
+
+            $table_satellite .= html_print_input(
+                [
+                    'type'          => 'select',
+                    'fields'        => $satellite_names,
+                    'name'          => 'satellite_server',
+                    'selected'      => $satellite_server,
+                    'nothing'       => __('None'),
+                    'nothinf_value' => 0,
+                    'return'        => true,
+                ]
+            ).'<div class="label_select_child_icons"></div></div></div>';
+    }
+}
+
 // Description.
 $table_description = '<div class="label_select"><p class="input_label">'.__('Description').'</p>';
 $table_description .= html_print_textarea(
@@ -443,7 +482,7 @@ $table_description .= html_print_textarea(
 echo '<div class="first_row">
         <div class="box-shadow agent_options '.$agent_options_update.' white_box">
             <div class="agent_options_column_left">'.$table_agent_name.$table_alias.$table_ip.$table_primary_group.'</div>
-            <div class="agent_options_column_right">'.$table_interval.$table_os.$table_server.$table_description.'</div>
+            <div class="agent_options_column_right">'.$table_interval.$table_os.$table_server.$table_satellite.$table_description.'</div>
         </div>';
 if (!$new_agent && $alias != '') {
     echo $table_qr_code;
diff --git a/pandora_console/godmode/agentes/configurar_agente.php b/pandora_console/godmode/agentes/configurar_agente.php
index 8e63416b97..4d26746ed1 100644
--- a/pandora_console/godmode/agentes/configurar_agente.php
+++ b/pandora_console/godmode/agentes/configurar_agente.php
@@ -155,6 +155,7 @@ $alert_d7 = 1;
 $alert_recovery = 0;
 $alert_priority = 0;
 $server_name = '';
+$satellite_server = 0;
 $grupo = 0;
 $id_os = 9;
 // Windows.
@@ -985,6 +986,7 @@ if ($update_agent) {
     $old_values = db_get_row('tagente', 'id_agente', $id_agente);
     $fields = db_get_all_fields_in_table('tagent_custom_fields');
     $secondary_groups = (string) get_parameter('secondary_hidden', '');
+    $satellite_server = (int) get_parameter('satellite_server', 0);
 
     if ($fields === false) {
         $fields = [];
@@ -1092,6 +1094,7 @@ if ($update_agent) {
             'quiet'                     => $quiet,
             'cps'                       => $cps,
             'safe_mode_module'          => $safe_mode_module,
+            'satellite_server'          => $satellite_server,
         ];
 
         if ($config['metaconsole_agent_cache'] == 1) {
@@ -1230,6 +1233,7 @@ if ($id_agente) {
     $cps = $agent['cps'];
     $safe_mode_module = $agent['safe_mode_module'];
     $safe_mode = ($safe_mode_module) ? 1 : 0;
+    $satellite_server = (int) $agent['satellite_server'];
 }
 
 $update_module = (bool) get_parameter('update_module');
diff --git a/pandora_console/operation/agentes/estado_generalagente.php b/pandora_console/operation/agentes/estado_generalagente.php
index 26775a9315..86597dae79 100755
--- a/pandora_console/operation/agentes/estado_generalagente.php
+++ b/pandora_console/operation/agentes/estado_generalagente.php
@@ -265,6 +265,27 @@ if ($has_remote_conf) {
         ['class' => 'invert_filter']
     );
     $remote_cfg .= __('Remote configuration enabled').'</p>';
+
+    $satellite_server = (int) db_get_value_filter(
+        'satellite_server',
+        'tagente',
+        ['id_agente' => $id_agente]
+    );
+
+    if (empty($satellite_server) === false) {
+        $satellite_name = db_get_value_filter(
+            'name',
+            'tserver',
+            ['id_server' => $satellite_server]
+        );
+
+        $remote_cfg .= '<p>'.html_print_image(
+            'images/satellite.png',
+            true,
+            ['class' => 'invert_filter']
+        );
+        $remote_cfg .= __('Satellite server: ').$satellite_name.'</p>';
+    }
 } else {
     $remote_cfg = '';
 }
diff --git a/pandora_console/pandoradb.sql b/pandora_console/pandoradb.sql
index ebd940c749..6aa9f990e3 100644
--- a/pandora_console/pandoradb.sql
+++ b/pandora_console/pandoradb.sql
@@ -88,6 +88,7 @@ CREATE TABLE IF NOT EXISTS `tagente` (
   `alias_as_name` TINYINT NOT NULL DEFAULT 0,
   `safe_mode_module` INT UNSIGNED NOT NULL DEFAULT 0,
   `cps` INT NOT NULL DEFAULT 0,
+  `satellite_server` INT NOT NULL DEFAULT 0,
   PRIMARY KEY  (`id_agente`),
   KEY `nombre` (`nombre`(255)),
   KEY `direccion` (`direccion`),
@@ -3468,6 +3469,7 @@ CREATE TABLE IF NOT EXISTS `tmetaconsole_agent` (
   `alias_as_name` TINYINT NOT NULL DEFAULT 0,
   `safe_mode_module` INT UNSIGNED NOT NULL DEFAULT 0,
   `cps` INT NOT NULL DEFAULT 0,
+  `satellite_server` INT NOT NULL DEFAULT 0,
   PRIMARY KEY  (`id_agente`),
   KEY `nombre` (`nombre`(255)),
   KEY `direccion` (`direccion`),

From bad2438867590e00bece0ed3ec9011fdfd368a2c Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Jos=C3=A9=20Gonz=C3=A1lez?=
 <79-jose.gonzalez@users.noreply.brutus.artica.es>
Date: Wed, 8 Jun 2022 12:38:03 +0000
Subject: [PATCH 089/138] Update massive_edit_modules.php

---
 pandora_console/godmode/massive/massive_edit_modules.php | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/pandora_console/godmode/massive/massive_edit_modules.php b/pandora_console/godmode/massive/massive_edit_modules.php
index 089dfcb356..c3734ca90f 100755
--- a/pandora_console/godmode/massive/massive_edit_modules.php
+++ b/pandora_console/godmode/massive/massive_edit_modules.php
@@ -2222,7 +2222,7 @@ function process_manage_edit($module_name, $agents_select=null, $module_status='
         $values['history_data'] = get_parameter('history_data');
     }
 
-    if (get_parameter('quiet_select', -1) !== -1) {
+    if (get_parameter('quiet_select', -1) != -1) {
         $values['quiet'] = get_parameter('quiet_select');
     }
 

From c48eae6da07a66b5ac25183d072bc98b779ca9e2 Mon Sep 17 00:00:00 2001
From: "alejandro.campos@artica.es" <alejandro.campos@artica.es>
Date: Wed, 8 Jun 2022 18:25:32 +0200
Subject: [PATCH 090/138] fixed wrong encoding

---
 .../update_manager_client/lib/UpdateManager/Client.php         | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/pandora_console/update_manager_client/lib/UpdateManager/Client.php b/pandora_console/update_manager_client/lib/UpdateManager/Client.php
index 4e38b20a75..61dfd0a4e9 100644
--- a/pandora_console/update_manager_client/lib/UpdateManager/Client.php
+++ b/pandora_console/update_manager_client/lib/UpdateManager/Client.php
@@ -2077,7 +2077,8 @@ class Client
                     'status'         => $status,
                     'message'        => $msg,
                     'extra'          => $extra,
-                ]
+                ],
+                JSON_UNESCAPED_UNICODE
             );
 
             if ($field_exists === false) {

From 9d28c67a1c28a3dbcc9a5a29597b72c912884c55 Mon Sep 17 00:00:00 2001
From: artica <artica.devel@gmail.com>
Date: Thu, 9 Jun 2022 01:00:21 +0200
Subject: [PATCH 091/138] Auto-updated build strings.

---
 pandora_agents/unix/DEBIAN/control             | 2 +-
 pandora_agents/unix/DEBIAN/make_deb_package.sh | 2 +-
 pandora_agents/unix/pandora_agent              | 2 +-
 pandora_agents/unix/pandora_agent.redhat.spec  | 2 +-
 pandora_agents/unix/pandora_agent.spec         | 2 +-
 pandora_agents/unix/pandora_agent_installer    | 2 +-
 pandora_agents/win32/installer/pandora.mpi     | 2 +-
 pandora_agents/win32/pandora.cc                | 2 +-
 pandora_agents/win32/versioninfo.rc            | 2 +-
 pandora_console/DEBIAN/control                 | 2 +-
 pandora_console/DEBIAN/make_deb_package.sh     | 2 +-
 pandora_console/include/config_process.php     | 2 +-
 pandora_console/install.php                    | 2 +-
 pandora_console/pandora_console.redhat.spec    | 2 +-
 pandora_console/pandora_console.rhel7.spec     | 2 +-
 pandora_console/pandora_console.spec           | 2 +-
 pandora_server/DEBIAN/control                  | 2 +-
 pandora_server/DEBIAN/make_deb_package.sh      | 2 +-
 pandora_server/lib/PandoraFMS/Config.pm        | 2 +-
 pandora_server/lib/PandoraFMS/PluginTools.pm   | 2 +-
 pandora_server/pandora_server.redhat.spec      | 2 +-
 pandora_server/pandora_server.spec             | 2 +-
 pandora_server/pandora_server_installer        | 2 +-
 pandora_server/util/pandora_db.pl              | 2 +-
 pandora_server/util/pandora_manage.pl          | 2 +-
 25 files changed, 25 insertions(+), 25 deletions(-)

diff --git a/pandora_agents/unix/DEBIAN/control b/pandora_agents/unix/DEBIAN/control
index 922a687d99..14605ca173 100644
--- a/pandora_agents/unix/DEBIAN/control
+++ b/pandora_agents/unix/DEBIAN/control
@@ -1,5 +1,5 @@
 package: pandorafms-agent-unix
-Version: 7.0NG.762-220608
+Version: 7.0NG.762-220609
 Architecture: all
 Priority: optional
 Section: admin
diff --git a/pandora_agents/unix/DEBIAN/make_deb_package.sh b/pandora_agents/unix/DEBIAN/make_deb_package.sh
index 98c9118a78..92a47e425f 100644
--- a/pandora_agents/unix/DEBIAN/make_deb_package.sh
+++ b/pandora_agents/unix/DEBIAN/make_deb_package.sh
@@ -14,7 +14,7 @@
 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 # GNU General Public License for more details.
 
-pandora_version="7.0NG.762-220608"
+pandora_version="7.0NG.762-220609"
 
 echo "Test if you has the tools for to make the packages."
 whereis dpkg-deb | cut -d":" -f2 | grep dpkg-deb > /dev/null
diff --git a/pandora_agents/unix/pandora_agent b/pandora_agents/unix/pandora_agent
index 8dee5f151e..ae60e82b09 100755
--- a/pandora_agents/unix/pandora_agent
+++ b/pandora_agents/unix/pandora_agent
@@ -1015,7 +1015,7 @@ my $Sem = undef;
 my $ThreadSem = undef;
 
 use constant AGENT_VERSION => '7.0NG.762';
-use constant AGENT_BUILD => '220608';
+use constant AGENT_BUILD => '220609';
 
 # Agent log default file size maximum and instances
 use constant DEFAULT_MAX_LOG_SIZE => 600000;
diff --git a/pandora_agents/unix/pandora_agent.redhat.spec b/pandora_agents/unix/pandora_agent.redhat.spec
index a8e4c1b829..71d6083850 100644
--- a/pandora_agents/unix/pandora_agent.redhat.spec
+++ b/pandora_agents/unix/pandora_agent.redhat.spec
@@ -3,7 +3,7 @@
 #
 %define name        pandorafms_agent_unix
 %define version     7.0NG.762
-%define release     220608
+%define release     220609
 
 Summary:            Pandora FMS Linux agent, PERL version
 Name:               %{name}
diff --git a/pandora_agents/unix/pandora_agent.spec b/pandora_agents/unix/pandora_agent.spec
index 26224284e1..eeb70b5de5 100644
--- a/pandora_agents/unix/pandora_agent.spec
+++ b/pandora_agents/unix/pandora_agent.spec
@@ -3,7 +3,7 @@
 #
 %define name        pandorafms_agent_unix
 %define version     7.0NG.762
-%define release     220608
+%define release     220609
 
 Summary:            Pandora FMS Linux agent, PERL version
 Name:               %{name}
diff --git a/pandora_agents/unix/pandora_agent_installer b/pandora_agents/unix/pandora_agent_installer
index 15fcc47738..60b0b1cbe3 100755
--- a/pandora_agents/unix/pandora_agent_installer
+++ b/pandora_agents/unix/pandora_agent_installer
@@ -10,7 +10,7 @@
 # **********************************************************************
 
 PI_VERSION="7.0NG.762"
-PI_BUILD="220608"
+PI_BUILD="220609"
 OS_NAME=`uname -s`
 
 FORCE=0
diff --git a/pandora_agents/win32/installer/pandora.mpi b/pandora_agents/win32/installer/pandora.mpi
index 9cea4335e5..7b74712743 100644
--- a/pandora_agents/win32/installer/pandora.mpi
+++ b/pandora_agents/win32/installer/pandora.mpi
@@ -186,7 +186,7 @@ UpgradeApplicationID
 {}
 
 Version
-{220608}
+{220609}
 
 ViewReadme
 {Yes}
diff --git a/pandora_agents/win32/pandora.cc b/pandora_agents/win32/pandora.cc
index c38a63c3ff..044352ebd7 100644
--- a/pandora_agents/win32/pandora.cc
+++ b/pandora_agents/win32/pandora.cc
@@ -30,7 +30,7 @@ using namespace Pandora;
 using namespace Pandora_Strutils;
 
 #define PATH_SIZE    _MAX_PATH+1
-#define PANDORA_VERSION ("7.0NG.762 Build 220608")
+#define PANDORA_VERSION ("7.0NG.762 Build 220609")
 
 string pandora_path;
 string pandora_dir;
diff --git a/pandora_agents/win32/versioninfo.rc b/pandora_agents/win32/versioninfo.rc
index 8f2689dd2a..00993b8da6 100644
--- a/pandora_agents/win32/versioninfo.rc
+++ b/pandora_agents/win32/versioninfo.rc
@@ -11,7 +11,7 @@ BEGIN
       VALUE "LegalCopyright", "Artica ST"
       VALUE "OriginalFilename", "PandoraAgent.exe"
       VALUE "ProductName", "Pandora FMS Windows Agent"
-      VALUE "ProductVersion", "(7.0NG.762(Build 220608))"
+      VALUE "ProductVersion", "(7.0NG.762(Build 220609))"
       VALUE "FileVersion", "1.0.0.0"
     END
   END
diff --git a/pandora_console/DEBIAN/control b/pandora_console/DEBIAN/control
index 5d7ac0db29..20ca174529 100644
--- a/pandora_console/DEBIAN/control
+++ b/pandora_console/DEBIAN/control
@@ -1,5 +1,5 @@
 package: pandorafms-console
-Version: 7.0NG.762-220608
+Version: 7.0NG.762-220609
 Architecture: all
 Priority: optional
 Section: admin
diff --git a/pandora_console/DEBIAN/make_deb_package.sh b/pandora_console/DEBIAN/make_deb_package.sh
index 449b334f8e..4882f52603 100644
--- a/pandora_console/DEBIAN/make_deb_package.sh
+++ b/pandora_console/DEBIAN/make_deb_package.sh
@@ -14,7 +14,7 @@
 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 # GNU General Public License for more details.
 
-pandora_version="7.0NG.762-220608"
+pandora_version="7.0NG.762-220609"
 
 package_pear=0
 package_pandora=1
diff --git a/pandora_console/include/config_process.php b/pandora_console/include/config_process.php
index 9e9f90deb6..3872282adc 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 = 'PC220608';
+$build_version = 'PC220609';
 $pandora_version = 'v7.0NG.762';
 
 // Do not overwrite default timezone set if defined.
diff --git a/pandora_console/install.php b/pandora_console/install.php
index b8969a90fd..de06be6bb2 100644
--- a/pandora_console/install.php
+++ b/pandora_console/install.php
@@ -129,7 +129,7 @@
         <div style='height: 10px'>
             <?php
             $version = '7.0NG.762';
-            $build = '220608';
+            $build = '220609';
             $banner = "v$version Build $build";
 
             error_reporting(0);
diff --git a/pandora_console/pandora_console.redhat.spec b/pandora_console/pandora_console.redhat.spec
index e4e77a476b..27b1168a78 100644
--- a/pandora_console/pandora_console.redhat.spec
+++ b/pandora_console/pandora_console.redhat.spec
@@ -3,7 +3,7 @@
 #
 %define name        pandorafms_console
 %define version     7.0NG.762
-%define release     220608
+%define release     220609
 
 # User and Group under which Apache is running
 %define httpd_name  httpd
diff --git a/pandora_console/pandora_console.rhel7.spec b/pandora_console/pandora_console.rhel7.spec
index f5a71b2f8b..0e01a9a1f3 100644
--- a/pandora_console/pandora_console.rhel7.spec
+++ b/pandora_console/pandora_console.rhel7.spec
@@ -3,7 +3,7 @@
 #
 %define name        pandorafms_console
 %define version     7.0NG.762
-%define release     220608
+%define release     220609
 
 # User and Group under which Apache is running
 %define httpd_name  httpd
diff --git a/pandora_console/pandora_console.spec b/pandora_console/pandora_console.spec
index 376522e812..f2810959b4 100644
--- a/pandora_console/pandora_console.spec
+++ b/pandora_console/pandora_console.spec
@@ -3,7 +3,7 @@
 #
 %define name        pandorafms_console
 %define version     7.0NG.762
-%define release     220608
+%define release     220609
 %define httpd_name      httpd
 # User and Group under which Apache is running
 %define httpd_name  apache2
diff --git a/pandora_server/DEBIAN/control b/pandora_server/DEBIAN/control
index 5c65dd81cb..cc02beb183 100644
--- a/pandora_server/DEBIAN/control
+++ b/pandora_server/DEBIAN/control
@@ -1,5 +1,5 @@
 package: pandorafms-server
-Version: 7.0NG.762-220608
+Version: 7.0NG.762-220609
 Architecture: all
 Priority: optional
 Section: admin
diff --git a/pandora_server/DEBIAN/make_deb_package.sh b/pandora_server/DEBIAN/make_deb_package.sh
index 4f594fa7c8..76498604ec 100644
--- a/pandora_server/DEBIAN/make_deb_package.sh
+++ b/pandora_server/DEBIAN/make_deb_package.sh
@@ -14,7 +14,7 @@
 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 # GNU General Public License for more details.
 
-pandora_version="7.0NG.762-220608"
+pandora_version="7.0NG.762-220609"
 
 package_cpan=0
 package_pandora=1
diff --git a/pandora_server/lib/PandoraFMS/Config.pm b/pandora_server/lib/PandoraFMS/Config.pm
index 3afe98d3da..93a7cdb9fb 100644
--- a/pandora_server/lib/PandoraFMS/Config.pm
+++ b/pandora_server/lib/PandoraFMS/Config.pm
@@ -46,7 +46,7 @@ our @EXPORT = qw(
 
 # version: Defines actual version of Pandora Server for this module only
 my $pandora_version = "7.0NG.762";
-my $pandora_build = "220608";
+my $pandora_build = "220609";
 our $VERSION = $pandora_version." ".$pandora_build;
 
 # Setup hash
diff --git a/pandora_server/lib/PandoraFMS/PluginTools.pm b/pandora_server/lib/PandoraFMS/PluginTools.pm
index e7474ae50e..26759d2fe6 100644
--- a/pandora_server/lib/PandoraFMS/PluginTools.pm
+++ b/pandora_server/lib/PandoraFMS/PluginTools.pm
@@ -34,7 +34,7 @@ our @ISA = qw(Exporter);
 
 # version: Defines actual version of Pandora Server for this module only
 my $pandora_version = "7.0NG.762";
-my $pandora_build = "220608";
+my $pandora_build = "220609";
 our $VERSION = $pandora_version." ".$pandora_build;
 
 our %EXPORT_TAGS = ( 'all' => [ qw() ] );
diff --git a/pandora_server/pandora_server.redhat.spec b/pandora_server/pandora_server.redhat.spec
index cc61dc9a15..fedd1ee651 100644
--- a/pandora_server/pandora_server.redhat.spec
+++ b/pandora_server/pandora_server.redhat.spec
@@ -3,7 +3,7 @@
 #
 %define name        pandorafms_server
 %define version     7.0NG.762
-%define release     220608
+%define release     220609
 
 Summary:            Pandora FMS Server
 Name:               %{name}
diff --git a/pandora_server/pandora_server.spec b/pandora_server/pandora_server.spec
index d54c7be0b0..50ec2bd595 100644
--- a/pandora_server/pandora_server.spec
+++ b/pandora_server/pandora_server.spec
@@ -3,7 +3,7 @@
 #
 %define name        pandorafms_server
 %define version     7.0NG.762
-%define release     220608
+%define release     220609
 
 Summary:            Pandora FMS Server
 Name:               %{name}
diff --git a/pandora_server/pandora_server_installer b/pandora_server/pandora_server_installer
index 7c1b20eded..c3946ff3b8 100755
--- a/pandora_server/pandora_server_installer
+++ b/pandora_server/pandora_server_installer
@@ -9,7 +9,7 @@
 # **********************************************************************
 
 PI_VERSION="7.0NG.762"
-PI_BUILD="220608"
+PI_BUILD="220609"
 
 MODE=$1
 if [ $# -gt 1 ]; then
diff --git a/pandora_server/util/pandora_db.pl b/pandora_server/util/pandora_db.pl
index 0c4f49b025..20cd6bb72f 100755
--- a/pandora_server/util/pandora_db.pl
+++ b/pandora_server/util/pandora_db.pl
@@ -35,7 +35,7 @@ use PandoraFMS::Config;
 use PandoraFMS::DB;
 
 # version: define current version
-my $version = "7.0NG.762 Build 220608";
+my $version = "7.0NG.762 Build 220609";
 
 # Pandora server configuration
 my %conf;
diff --git a/pandora_server/util/pandora_manage.pl b/pandora_server/util/pandora_manage.pl
index fcd068a7ec..21bf2142cb 100755
--- a/pandora_server/util/pandora_manage.pl
+++ b/pandora_server/util/pandora_manage.pl
@@ -36,7 +36,7 @@ use Encode::Locale;
 Encode::Locale::decode_argv;
 
 # version: define current version
-my $version = "7.0NG.762 Build 220608";
+my $version = "7.0NG.762 Build 220609";
 
 # save program name for logging
 my $progname = basename($0);

From bce182f2b2183e2701ee814f69789751df81c61d Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Jos=C3=A9=20Gonz=C3=A1lez?= <jose.gonzalez@pandorafms.com>
Date: Thu, 9 Jun 2022 11:02:11 +0200
Subject: [PATCH 092/138] Improve event names

---
 pandora_console/include/styles/events.css   | 1 +
 pandora_console/operation/events/events.php | 9 +++------
 2 files changed, 4 insertions(+), 6 deletions(-)

diff --git a/pandora_console/include/styles/events.css b/pandora_console/include/styles/events.css
index 4b8177b2af..2b12f58e98 100644
--- a/pandora_console/include/styles/events.css
+++ b/pandora_console/include/styles/events.css
@@ -116,6 +116,7 @@ table.dataTable tbody td {
   padding-top: 7px;
   padding-bottom: 7px;
   border-bottom: 2px solid #dedede;
+  word-break: break-all;
 }
 
 .filter_input {
diff --git a/pandora_console/operation/events/events.php b/pandora_console/operation/events/events.php
index b72217fa2c..c1a88ee723 100644
--- a/pandora_console/operation/events/events.php
+++ b/pandora_console/operation/events/events.php
@@ -375,20 +375,17 @@ if (is_ajax() === true) {
                         }
 
                         $tmp->evento = str_replace('"', '', io_safe_output($tmp->evento));
-                        if (strlen($tmp->evento) >= 255) {
-                            $tmp->evento = ui_print_truncate_text($tmp->evento, 255, $tmp->evento, true, false);
-                        }
 
-                        if ($tmp->module_name) {
+                        if (empty($tmp->module_name) === false) {
                             $tmp->module_name = io_safe_output($tmp->module_name);
                         }
 
-                        if ($tmp->comments) {
+                        if (empty($tmp->comments) === false) {
                             $tmp->comments = ui_print_comments($tmp->comments);
                         }
 
                         // Show last event.
-                        if (isset($tmp->max_id_evento) && $tmp->max_id_evento !== $tmp->id_evento) {
+                        if (isset($tmp->max_id_evento) === true && $tmp->max_id_evento !== $tmp->id_evento) {
                             $max_event = db_get_row_sql(
                                 sprintf(
                                     'SELECT criticity, timestamp FROM %s

From 5e33df93ac72cee946416520a342b93c0f72f7af Mon Sep 17 00:00:00 2001
From: Ramon Novoa <ramon.novoa@pandorafms.com>
Date: Thu, 9 Jun 2022 13:29:43 +0200
Subject: [PATCH 093/138] Auto-assign Satellite Servers to agents when
 possible.

---
 pandora_server/lib/PandoraFMS/Core.pm       |  5 +++--
 pandora_server/lib/PandoraFMS/DataServer.pm | 12 +++++++++++-
 2 files changed, 14 insertions(+), 3 deletions(-)

diff --git a/pandora_server/lib/PandoraFMS/Core.pm b/pandora_server/lib/PandoraFMS/Core.pm
index acc4d83546..189be884c9 100644
--- a/pandora_server/lib/PandoraFMS/Core.pm
+++ b/pandora_server/lib/PandoraFMS/Core.pm
@@ -3002,10 +3002,10 @@ defined also the parent is updated.
 
 =cut
 ##########################################################################
-sub pandora_update_agent ($$$$$$$;$$) {
+sub pandora_update_agent ($$$$$$$;$$$) {
 	my ($pa_config, $agent_timestamp, $agent_id, $os_version,
 		$agent_version, $agent_interval, $dbh, $timezone_offset,
-		$parent_agent_id) = @_;
+		$parent_agent_id, $satellite_server_id) = @_;
 	
 	# No access update for data without interval.
 	# Single modules from network server, for example. This could be very Heavy for Pandora FMS
@@ -3026,6 +3026,7 @@ sub pandora_update_agent ($$$$$$$;$$) {
 	                                         'os_version' => $os_version,
 	                                         'timezone_offset' => $timezone_offset,
 	                                         'id_parent' => $parent_agent_id,
+	                                         'satellite_server' => $satellite_server_id
 	                                        });
 	
 	db_do ($dbh, "UPDATE tagente SET $set WHERE id_agente = ?", @{$values}, $agent_id);
diff --git a/pandora_server/lib/PandoraFMS/DataServer.pm b/pandora_server/lib/PandoraFMS/DataServer.pm
index 232361a50f..87909350cc 100644
--- a/pandora_server/lib/PandoraFMS/DataServer.pm
+++ b/pandora_server/lib/PandoraFMS/DataServer.pm
@@ -452,6 +452,16 @@ sub process_xml_data ($$$$$) {
 		logger($pa_config, "Error retrieving information for agent ID $agent_id",10);
 		return;
 	}
+
+	# Get the ID of the Satellite Server if available.
+	my $satellite_server_id = 0;
+	if (defined($data->{'satellite_server'})) {
+		$satellite_server_id = get_server_id($dbh, $data->{'satellite_server'}, SATELLITESERVER);
+		if ($satellite_server_id < 0) {
+			logger($pa_config, "Satellite Server '" . $data->{'satellite_server'} . "' does not exist.", 10);
+			$satellite_server_id = 0;
+		}
+	}
 	
 	# Check if agent is disabled and return if it's disabled. Disabled agents doesnt process data
 	# in order to avoid not only events, also possible invalid data coming from agents.
@@ -536,7 +546,7 @@ sub process_xml_data ($$$$$) {
 	}
 	
 	# Update agent information
-	pandora_update_agent($pa_config, $timestamp, $agent_id, $os_version, $agent_version, $interval, $dbh, $timezone_offset, $parent_id);
+	pandora_update_agent($pa_config, $timestamp, $agent_id, $os_version, $agent_version, $interval, $dbh, $timezone_offset, $parent_id, $satellite_server_id);
 
 	# Update GIS data
 	if ($pa_config->{'activate_gis'} != 0 && $agent->{'update_gis_data'} == 1) {

From a5517a9c0243cafe8a3ff9aaae7a71f94b866d02 Mon Sep 17 00:00:00 2001
From: Daniel Maya <daniel.maya@pandorafms.com>
Date: Thu, 9 Jun 2022 15:12:05 +0200
Subject: [PATCH 094/138] #9134 Added disabled

---
 pandora_console/pandoradb.sql | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/pandora_console/pandoradb.sql b/pandora_console/pandoradb.sql
index ebd940c749..6da9fd470b 100644
--- a/pandora_console/pandoradb.sql
+++ b/pandora_console/pandoradb.sql
@@ -3664,7 +3664,7 @@ CREATE TABLE IF NOT EXISTS `tautoconfig` (
   `name` VARCHAR(100) NOT NULL,
   `order` INT NOT NULL DEFAULT 0,
   `description` TEXT,
-
+  `disabled` TINYINT DEFAULT 0,
   PRIMARY KEY (`id`)
 ) ENGINE=InnoDB DEFAULT CHARSET=UTF8MB4;
 

From 519fd13299b4a2ba96d09ce6d5c08b7fce681b97 Mon Sep 17 00:00:00 2001
From: Daniel Maya <daniel.maya@pandorafms.com>
Date: Thu, 9 Jun 2022 15:22:14 +0200
Subject: [PATCH 095/138] #9134 Added dsiabled in mr

---
 pandora_console/extras/mr/55.sql | 10 ++++++++++
 1 file changed, 10 insertions(+)

diff --git a/pandora_console/extras/mr/55.sql b/pandora_console/extras/mr/55.sql
index f53133c456..b802aa2dd8 100644
--- a/pandora_console/extras/mr/55.sql
+++ b/pandora_console/extras/mr/55.sql
@@ -4,4 +4,14 @@ ALTER TABLE `tservice` ADD COLUMN `enable_sunburst` tinyint(1) NOT NULL default
 
 ALTER TABLE `tdashboard` MODIFY `name` TEXT NOT NULL DEFAULT '';
 
+SET @st_oum763 = (SELECT IF(
+    (SELECT COUNT(*) FROM INFORMATION_SCHEMA.COLUMNS WHERE table_name = 'tautoconfig' AND table_schema = DATABASE() AND column_name = 'disabled') > 0,
+    "SELECT 1",
+    "ALTER TABLE `tautoconfig` ADD COLUMN `disabled` TINYINT DEFAULT 0"
+));
+
+PREPARE pr_oum763 FROM @st_oum763;
+EXECUTE pr_oum763;
+DEALLOCATE PREPARE pr_oum763;
+
 COMMIT;

From ae657ee018106361af096002dc6fe85474011d0b Mon Sep 17 00:00:00 2001
From: "edu.corral" <eduardo.corral@artica.es>
Date: Thu, 9 Jun 2022 17:22:00 +0200
Subject: [PATCH 096/138] 8856 meta api functions

---
 pandora_console/include/functions_api.php | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/pandora_console/include/functions_api.php b/pandora_console/include/functions_api.php
index a265c10c84..d2c4f11823 100644
--- a/pandora_console/include/functions_api.php
+++ b/pandora_console/include/functions_api.php
@@ -5116,7 +5116,7 @@ function api_set_update_snmp_module($id_module, $thrash1, $other, $thrash3)
 function api_set_new_network_component($id, $thrash1, $other, $thrash2)
 {
     global $config;
-    if (is_metaconsole() === true) {
+    if (defined('METACONSOLE')) {
         return;
     }
 
@@ -5218,7 +5218,7 @@ function api_set_new_plugin_component($id, $thrash1, $other, $thrash2)
 {
     global $config;
 
-    if (is_metaconsole() === true) {
+    if (defined('METACONSOLE')) {
         return;
     }
 
@@ -5498,7 +5498,7 @@ function api_set_new_local_component($id, $thrash1, $other, $thrash2)
 {
     global $config;
 
-    if (is_metaconsole() === true) {
+    if (defined('METACONSOLE')) {
         return;
     }
 

From 32c62e9f9398065749b866f5363bb5957014cadb Mon Sep 17 00:00:00 2001
From: artica <artica.devel@gmail.com>
Date: Fri, 10 Jun 2022 01:00:21 +0200
Subject: [PATCH 097/138] Auto-updated build strings.

---
 pandora_agents/unix/DEBIAN/control             | 2 +-
 pandora_agents/unix/DEBIAN/make_deb_package.sh | 2 +-
 pandora_agents/unix/pandora_agent              | 2 +-
 pandora_agents/unix/pandora_agent.redhat.spec  | 2 +-
 pandora_agents/unix/pandora_agent.spec         | 2 +-
 pandora_agents/unix/pandora_agent_installer    | 2 +-
 pandora_agents/win32/installer/pandora.mpi     | 2 +-
 pandora_agents/win32/pandora.cc                | 2 +-
 pandora_agents/win32/versioninfo.rc            | 2 +-
 pandora_console/DEBIAN/control                 | 2 +-
 pandora_console/DEBIAN/make_deb_package.sh     | 2 +-
 pandora_console/include/config_process.php     | 2 +-
 pandora_console/install.php                    | 2 +-
 pandora_console/pandora_console.redhat.spec    | 2 +-
 pandora_console/pandora_console.rhel7.spec     | 2 +-
 pandora_console/pandora_console.spec           | 2 +-
 pandora_server/DEBIAN/control                  | 2 +-
 pandora_server/DEBIAN/make_deb_package.sh      | 2 +-
 pandora_server/lib/PandoraFMS/Config.pm        | 2 +-
 pandora_server/lib/PandoraFMS/PluginTools.pm   | 2 +-
 pandora_server/pandora_server.redhat.spec      | 2 +-
 pandora_server/pandora_server.spec             | 2 +-
 pandora_server/pandora_server_installer        | 2 +-
 pandora_server/util/pandora_db.pl              | 2 +-
 pandora_server/util/pandora_manage.pl          | 2 +-
 25 files changed, 25 insertions(+), 25 deletions(-)

diff --git a/pandora_agents/unix/DEBIAN/control b/pandora_agents/unix/DEBIAN/control
index 14605ca173..dd47d2cbf1 100644
--- a/pandora_agents/unix/DEBIAN/control
+++ b/pandora_agents/unix/DEBIAN/control
@@ -1,5 +1,5 @@
 package: pandorafms-agent-unix
-Version: 7.0NG.762-220609
+Version: 7.0NG.762-220610
 Architecture: all
 Priority: optional
 Section: admin
diff --git a/pandora_agents/unix/DEBIAN/make_deb_package.sh b/pandora_agents/unix/DEBIAN/make_deb_package.sh
index 92a47e425f..a4b1c51141 100644
--- a/pandora_agents/unix/DEBIAN/make_deb_package.sh
+++ b/pandora_agents/unix/DEBIAN/make_deb_package.sh
@@ -14,7 +14,7 @@
 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 # GNU General Public License for more details.
 
-pandora_version="7.0NG.762-220609"
+pandora_version="7.0NG.762-220610"
 
 echo "Test if you has the tools for to make the packages."
 whereis dpkg-deb | cut -d":" -f2 | grep dpkg-deb > /dev/null
diff --git a/pandora_agents/unix/pandora_agent b/pandora_agents/unix/pandora_agent
index ae60e82b09..0407a9c3f9 100755
--- a/pandora_agents/unix/pandora_agent
+++ b/pandora_agents/unix/pandora_agent
@@ -1015,7 +1015,7 @@ my $Sem = undef;
 my $ThreadSem = undef;
 
 use constant AGENT_VERSION => '7.0NG.762';
-use constant AGENT_BUILD => '220609';
+use constant AGENT_BUILD => '220610';
 
 # Agent log default file size maximum and instances
 use constant DEFAULT_MAX_LOG_SIZE => 600000;
diff --git a/pandora_agents/unix/pandora_agent.redhat.spec b/pandora_agents/unix/pandora_agent.redhat.spec
index 71d6083850..1276e25dc7 100644
--- a/pandora_agents/unix/pandora_agent.redhat.spec
+++ b/pandora_agents/unix/pandora_agent.redhat.spec
@@ -3,7 +3,7 @@
 #
 %define name        pandorafms_agent_unix
 %define version     7.0NG.762
-%define release     220609
+%define release     220610
 
 Summary:            Pandora FMS Linux agent, PERL version
 Name:               %{name}
diff --git a/pandora_agents/unix/pandora_agent.spec b/pandora_agents/unix/pandora_agent.spec
index eeb70b5de5..810b0caec0 100644
--- a/pandora_agents/unix/pandora_agent.spec
+++ b/pandora_agents/unix/pandora_agent.spec
@@ -3,7 +3,7 @@
 #
 %define name        pandorafms_agent_unix
 %define version     7.0NG.762
-%define release     220609
+%define release     220610
 
 Summary:            Pandora FMS Linux agent, PERL version
 Name:               %{name}
diff --git a/pandora_agents/unix/pandora_agent_installer b/pandora_agents/unix/pandora_agent_installer
index 60b0b1cbe3..f0bceb189f 100755
--- a/pandora_agents/unix/pandora_agent_installer
+++ b/pandora_agents/unix/pandora_agent_installer
@@ -10,7 +10,7 @@
 # **********************************************************************
 
 PI_VERSION="7.0NG.762"
-PI_BUILD="220609"
+PI_BUILD="220610"
 OS_NAME=`uname -s`
 
 FORCE=0
diff --git a/pandora_agents/win32/installer/pandora.mpi b/pandora_agents/win32/installer/pandora.mpi
index 7b74712743..4d5fe7ad73 100644
--- a/pandora_agents/win32/installer/pandora.mpi
+++ b/pandora_agents/win32/installer/pandora.mpi
@@ -186,7 +186,7 @@ UpgradeApplicationID
 {}
 
 Version
-{220609}
+{220610}
 
 ViewReadme
 {Yes}
diff --git a/pandora_agents/win32/pandora.cc b/pandora_agents/win32/pandora.cc
index 044352ebd7..7386a63da8 100644
--- a/pandora_agents/win32/pandora.cc
+++ b/pandora_agents/win32/pandora.cc
@@ -30,7 +30,7 @@ using namespace Pandora;
 using namespace Pandora_Strutils;
 
 #define PATH_SIZE    _MAX_PATH+1
-#define PANDORA_VERSION ("7.0NG.762 Build 220609")
+#define PANDORA_VERSION ("7.0NG.762 Build 220610")
 
 string pandora_path;
 string pandora_dir;
diff --git a/pandora_agents/win32/versioninfo.rc b/pandora_agents/win32/versioninfo.rc
index 00993b8da6..558c565907 100644
--- a/pandora_agents/win32/versioninfo.rc
+++ b/pandora_agents/win32/versioninfo.rc
@@ -11,7 +11,7 @@ BEGIN
       VALUE "LegalCopyright", "Artica ST"
       VALUE "OriginalFilename", "PandoraAgent.exe"
       VALUE "ProductName", "Pandora FMS Windows Agent"
-      VALUE "ProductVersion", "(7.0NG.762(Build 220609))"
+      VALUE "ProductVersion", "(7.0NG.762(Build 220610))"
       VALUE "FileVersion", "1.0.0.0"
     END
   END
diff --git a/pandora_console/DEBIAN/control b/pandora_console/DEBIAN/control
index 20ca174529..a1801d6703 100644
--- a/pandora_console/DEBIAN/control
+++ b/pandora_console/DEBIAN/control
@@ -1,5 +1,5 @@
 package: pandorafms-console
-Version: 7.0NG.762-220609
+Version: 7.0NG.762-220610
 Architecture: all
 Priority: optional
 Section: admin
diff --git a/pandora_console/DEBIAN/make_deb_package.sh b/pandora_console/DEBIAN/make_deb_package.sh
index 4882f52603..fd4de102b2 100644
--- a/pandora_console/DEBIAN/make_deb_package.sh
+++ b/pandora_console/DEBIAN/make_deb_package.sh
@@ -14,7 +14,7 @@
 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 # GNU General Public License for more details.
 
-pandora_version="7.0NG.762-220609"
+pandora_version="7.0NG.762-220610"
 
 package_pear=0
 package_pandora=1
diff --git a/pandora_console/include/config_process.php b/pandora_console/include/config_process.php
index 3872282adc..1aa9892988 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 = 'PC220609';
+$build_version = 'PC220610';
 $pandora_version = 'v7.0NG.762';
 
 // Do not overwrite default timezone set if defined.
diff --git a/pandora_console/install.php b/pandora_console/install.php
index de06be6bb2..32dfac4eb9 100644
--- a/pandora_console/install.php
+++ b/pandora_console/install.php
@@ -129,7 +129,7 @@
         <div style='height: 10px'>
             <?php
             $version = '7.0NG.762';
-            $build = '220609';
+            $build = '220610';
             $banner = "v$version Build $build";
 
             error_reporting(0);
diff --git a/pandora_console/pandora_console.redhat.spec b/pandora_console/pandora_console.redhat.spec
index 27b1168a78..c1dd94c61d 100644
--- a/pandora_console/pandora_console.redhat.spec
+++ b/pandora_console/pandora_console.redhat.spec
@@ -3,7 +3,7 @@
 #
 %define name        pandorafms_console
 %define version     7.0NG.762
-%define release     220609
+%define release     220610
 
 # User and Group under which Apache is running
 %define httpd_name  httpd
diff --git a/pandora_console/pandora_console.rhel7.spec b/pandora_console/pandora_console.rhel7.spec
index 0e01a9a1f3..ea00a4c339 100644
--- a/pandora_console/pandora_console.rhel7.spec
+++ b/pandora_console/pandora_console.rhel7.spec
@@ -3,7 +3,7 @@
 #
 %define name        pandorafms_console
 %define version     7.0NG.762
-%define release     220609
+%define release     220610
 
 # User and Group under which Apache is running
 %define httpd_name  httpd
diff --git a/pandora_console/pandora_console.spec b/pandora_console/pandora_console.spec
index f2810959b4..ca77332baa 100644
--- a/pandora_console/pandora_console.spec
+++ b/pandora_console/pandora_console.spec
@@ -3,7 +3,7 @@
 #
 %define name        pandorafms_console
 %define version     7.0NG.762
-%define release     220609
+%define release     220610
 %define httpd_name      httpd
 # User and Group under which Apache is running
 %define httpd_name  apache2
diff --git a/pandora_server/DEBIAN/control b/pandora_server/DEBIAN/control
index cc02beb183..08a9a16cde 100644
--- a/pandora_server/DEBIAN/control
+++ b/pandora_server/DEBIAN/control
@@ -1,5 +1,5 @@
 package: pandorafms-server
-Version: 7.0NG.762-220609
+Version: 7.0NG.762-220610
 Architecture: all
 Priority: optional
 Section: admin
diff --git a/pandora_server/DEBIAN/make_deb_package.sh b/pandora_server/DEBIAN/make_deb_package.sh
index 76498604ec..17571b7562 100644
--- a/pandora_server/DEBIAN/make_deb_package.sh
+++ b/pandora_server/DEBIAN/make_deb_package.sh
@@ -14,7 +14,7 @@
 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 # GNU General Public License for more details.
 
-pandora_version="7.0NG.762-220609"
+pandora_version="7.0NG.762-220610"
 
 package_cpan=0
 package_pandora=1
diff --git a/pandora_server/lib/PandoraFMS/Config.pm b/pandora_server/lib/PandoraFMS/Config.pm
index 93a7cdb9fb..f9f1997c1f 100644
--- a/pandora_server/lib/PandoraFMS/Config.pm
+++ b/pandora_server/lib/PandoraFMS/Config.pm
@@ -46,7 +46,7 @@ our @EXPORT = qw(
 
 # version: Defines actual version of Pandora Server for this module only
 my $pandora_version = "7.0NG.762";
-my $pandora_build = "220609";
+my $pandora_build = "220610";
 our $VERSION = $pandora_version." ".$pandora_build;
 
 # Setup hash
diff --git a/pandora_server/lib/PandoraFMS/PluginTools.pm b/pandora_server/lib/PandoraFMS/PluginTools.pm
index 26759d2fe6..6d11c34eb5 100644
--- a/pandora_server/lib/PandoraFMS/PluginTools.pm
+++ b/pandora_server/lib/PandoraFMS/PluginTools.pm
@@ -34,7 +34,7 @@ our @ISA = qw(Exporter);
 
 # version: Defines actual version of Pandora Server for this module only
 my $pandora_version = "7.0NG.762";
-my $pandora_build = "220609";
+my $pandora_build = "220610";
 our $VERSION = $pandora_version." ".$pandora_build;
 
 our %EXPORT_TAGS = ( 'all' => [ qw() ] );
diff --git a/pandora_server/pandora_server.redhat.spec b/pandora_server/pandora_server.redhat.spec
index fedd1ee651..0c39fb9703 100644
--- a/pandora_server/pandora_server.redhat.spec
+++ b/pandora_server/pandora_server.redhat.spec
@@ -3,7 +3,7 @@
 #
 %define name        pandorafms_server
 %define version     7.0NG.762
-%define release     220609
+%define release     220610
 
 Summary:            Pandora FMS Server
 Name:               %{name}
diff --git a/pandora_server/pandora_server.spec b/pandora_server/pandora_server.spec
index 50ec2bd595..901f95c8ca 100644
--- a/pandora_server/pandora_server.spec
+++ b/pandora_server/pandora_server.spec
@@ -3,7 +3,7 @@
 #
 %define name        pandorafms_server
 %define version     7.0NG.762
-%define release     220609
+%define release     220610
 
 Summary:            Pandora FMS Server
 Name:               %{name}
diff --git a/pandora_server/pandora_server_installer b/pandora_server/pandora_server_installer
index c3946ff3b8..8c650a9f7c 100755
--- a/pandora_server/pandora_server_installer
+++ b/pandora_server/pandora_server_installer
@@ -9,7 +9,7 @@
 # **********************************************************************
 
 PI_VERSION="7.0NG.762"
-PI_BUILD="220609"
+PI_BUILD="220610"
 
 MODE=$1
 if [ $# -gt 1 ]; then
diff --git a/pandora_server/util/pandora_db.pl b/pandora_server/util/pandora_db.pl
index 20cd6bb72f..d2932e46b5 100755
--- a/pandora_server/util/pandora_db.pl
+++ b/pandora_server/util/pandora_db.pl
@@ -35,7 +35,7 @@ use PandoraFMS::Config;
 use PandoraFMS::DB;
 
 # version: define current version
-my $version = "7.0NG.762 Build 220609";
+my $version = "7.0NG.762 Build 220610";
 
 # Pandora server configuration
 my %conf;
diff --git a/pandora_server/util/pandora_manage.pl b/pandora_server/util/pandora_manage.pl
index 21bf2142cb..5899e44c71 100755
--- a/pandora_server/util/pandora_manage.pl
+++ b/pandora_server/util/pandora_manage.pl
@@ -36,7 +36,7 @@ use Encode::Locale;
 Encode::Locale::decode_argv;
 
 # version: define current version
-my $version = "7.0NG.762 Build 220609";
+my $version = "7.0NG.762 Build 220610";
 
 # save program name for logging
 my $progname = basename($0);

From 815a737a6937dbe1a60a5f54b73895d20fb40a4c Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Jos=C3=A9=20Gonz=C3=A1lez?= <jose.gonzalez@pandorafms.com>
Date: Fri, 10 Jun 2022 10:17:23 +0200
Subject: [PATCH 098/138] Change strings for Update Manager references to WARP
 update

---
 pandora_console/godmode/menu.php              | 10 ++++----
 pandora_console/godmode/um_client/index.php   |  2 +-
 .../godmode/update_manager/update_manager.php | 24 +++++++++++-------
 .../update_manager/update_manager.setup.php   | 25 ++++++++++---------
 .../include/class/OrderInterpreter.class.php  |  6 ++---
 .../update_manager_client/views/register.php  | 10 ++++----
 6 files changed, 42 insertions(+), 35 deletions(-)

diff --git a/pandora_console/godmode/menu.php b/pandora_console/godmode/menu.php
index aeecc25273..9d7719dd89 100644
--- a/pandora_console/godmode/menu.php
+++ b/pandora_console/godmode/menu.php
@@ -525,21 +525,21 @@ $menu_godmode['links']['sub'] = $sub;
 
 // Update Manager
 if (check_acl($config['id_user'], 0, 'PM') && $config['enable_update_manager']) {
-    $menu_godmode['messages']['text'] = __('Update manager');
+    $menu_godmode['messages']['text'] = __('WARP Update');
     $menu_godmode['messages']['id'] = 'god-um_messages';
     $menu_godmode['messages']['sec2'] = '';
 
     $sub = [];
-    $sub['godmode/update_manager/update_manager&tab=offline']['text'] = __('Update Manager offline');
+    $sub['godmode/update_manager/update_manager&tab=offline']['text'] = __('Update offline');
     $sub['godmode/update_manager/update_manager&tab=offline']['id'] = 'Offline';
 
-    $sub['godmode/update_manager/update_manager&tab=online']['text'] = __('Update Manager online');
+    $sub['godmode/update_manager/update_manager&tab=online']['text'] = __('Update online');
     $sub['godmode/update_manager/update_manager&tab=online']['id'] = 'Online';
 
-    $sub['godmode/update_manager/update_manager&tab=setup']['text'] = __('Update Manager options');
+    $sub['godmode/update_manager/update_manager&tab=setup']['text'] = __('Options');
     $sub['godmode/update_manager/update_manager&tab=setup']['id'] = 'Options';
 
-    $sub['godmode/update_manager/update_manager&tab=history']['text'] = __('Update Manager journal');
+    $sub['godmode/update_manager/update_manager&tab=history']['text'] = __('WARP journal');
     $sub['godmode/update_manager/update_manager&tab=history']['id'] = 'Journal';
 
     $menu_godmode['messages']['sub'] = $sub;
diff --git a/pandora_console/godmode/um_client/index.php b/pandora_console/godmode/um_client/index.php
index ebd13796c6..e74045b570 100644
--- a/pandora_console/godmode/um_client/index.php
+++ b/pandora_console/godmode/um_client/index.php
@@ -313,7 +313,7 @@ if (is_array($config) === true) {
         if ($mode === Manager::MODE_ONLINE
             && ($puid === null || $puid === 'OFFLINE')
         ) {
-            ui_print_error_message(__('Update manager online requires registration.'));
+            ui_print_error_message(__('Update online requires registration.'));
         }
 
         if ($mode === Manager::MODE_OFFLINE) {
diff --git a/pandora_console/godmode/update_manager/update_manager.php b/pandora_console/godmode/update_manager/update_manager.php
index da9eb8543d..e880e82a43 100644
--- a/pandora_console/godmode/update_manager/update_manager.php
+++ b/pandora_console/godmode/update_manager/update_manager.php
@@ -39,7 +39,7 @@ $buttons['setup'] = [
     'active' => ($tab == 'setup') ? true : false,
     'text'   => '<a href="'.ui_get_full_url(
         'index.php?sec=gsetup&sec2=godmode/update_manager/update_manager&tab=setup'
-    ).'">'.html_print_image('images/gm_setup.png', true, ['title' => __('Options'), 'class' => 'invert_filter']).'</a>',
+    ).'">'.html_print_image('images/gm_setup.png', true, ['title' => __('Setup'), 'class' => 'invert_filter']).'</a>',
 ];
 
 $buttons['history'] = [
@@ -53,42 +53,48 @@ $buttons['offline'] = [
     'active' => ($tab == 'offline') ? true : false,
     'text'   => '<a href="'.ui_get_full_url(
         'index.php?sec=gsetup&sec2=godmode/update_manager/update_manager&tab=offli'
-    ).'ne">'.html_print_image('images/box.png', true, ['title' => __('Offline update manager'), 'class' => 'invert_filter']).'</a>',
+    ).'ne">'.html_print_image('images/box.png', true, ['title' => __('Offline update'), 'class' => 'invert_filter']).'</a>',
 ];
 
 $buttons['online'] = [
     'active' => ($tab == 'online') ? true : false,
     'text'   => '<a href="'.ui_get_full_url(
         'index.php?sec=gsetup&sec2=godmode/update_manager/update_manager&tab=onlin'
-    ).'e">'.html_print_image('images/op_gis.png', true, ['title' => __('Online update manager'), 'class' => 'invert_filter']).'</a>',
+    ).'e">'.html_print_image('images/op_gis.png', true, ['title' => __('Online update'), 'class' => 'invert_filter']).'</a>',
 ];
 
 switch ($tab) {
     case 'history':
-        $title = __('Update manager » Journal');
+        $title = __('Journal');
     break;
 
     case 'setup':
-        $title = __('Update manager » Setup');
+        $title = __('Setup');
     break;
 
     case 'offline':
-        $title = __('Update manager » Offline');
+        $title = __('Offline');
     break;
 
     case 'online':
     default:
-        $title = __('Update manager » Online');
+        $title = __('Online');
     break;
 }
 
-ui_print_page_header(
+ui_print_standard_header(
     $title,
     'images/gm_setup.png',
     false,
     '',
     true,
-    $buttons
+    $buttons,
+    [
+        [
+            'link'  => '',
+            'label' => 'Warp Update',
+        ],
+    ]
 );
 
 switch ($tab) {
diff --git a/pandora_console/godmode/update_manager/update_manager.setup.php b/pandora_console/godmode/update_manager/update_manager.setup.php
index e22c31031d..a671424bdc 100644
--- a/pandora_console/godmode/update_manager/update_manager.setup.php
+++ b/pandora_console/godmode/update_manager/update_manager.setup.php
@@ -268,17 +268,18 @@ $table->style[$i] = 'font-weight: bolder;width:250px';
 
 $url_update_manager = update_manager_get_url();
 
-$table->data[$i][0] = __('URL update manager:');
+$table->data[$i][0] = __('WARP Update URL');
 $table->data[$i++][1] = html_print_input_text(
     'url_update_manager',
     $url_update_manager,
     __('URL update manager'),
     80,
     255,
+    true,
     true
 );
 
-$table->data[$i][0] = __('Use secured update manager:');
+$table->data[$i][0] = __('Use secured WARP Update');
 $table->data[$i++][1] = html_print_input(
     [
         'type'  => 'switch',
@@ -287,7 +288,7 @@ $table->data[$i++][1] = html_print_input(
     ]
 );
 
-$table->data[$i][0] = __('Proxy server:');
+$table->data[$i][0] = __('Proxy server');
 $table->data[$i++][1] = html_print_input_text(
     'update_manager_proxy_server',
     $update_manager_proxy_server,
@@ -297,7 +298,7 @@ $table->data[$i++][1] = html_print_input_text(
     true
 );
 
-$table->data[$i][0] = __('Proxy port:');
+$table->data[$i][0] = __('Proxy port');
 $table->data[$i++][1] = html_print_input_text(
     'update_manager_proxy_port',
     $update_manager_proxy_port,
@@ -307,7 +308,7 @@ $table->data[$i++][1] = html_print_input_text(
     true
 );
 
-$table->data[$i][0] = __('Proxy user:');
+$table->data[$i][0] = __('Proxy user');
 $table->data[$i++][1] = html_print_input_text(
     'update_manager_proxy_user',
     $update_manager_proxy_user,
@@ -317,7 +318,7 @@ $table->data[$i++][1] = html_print_input_text(
     true
 );
 
-$table->data[$i][0] = __('Proxy password:');
+$table->data[$i][0] = __('Proxy password');
 $table->data[$i++][1] = html_print_input_password(
     'update_manager_proxy_password',
     $update_manager_proxy_password,
@@ -327,7 +328,7 @@ $table->data[$i++][1] = html_print_input_password(
     true
 );
 
-$table->data[$i][0] = __('Allow no-consecutive patches:');
+$table->data[$i][0] = __('Allow no-consecutive patches');
 $table->data[$i++][1] = html_print_switch(
     [
         'name'   => 'allow_offline_patches',
@@ -336,7 +337,7 @@ $table->data[$i++][1] = html_print_switch(
     ]
 );
 
-$table->data[$i][0] = __('Limit to LTS updates:');
+$table->data[$i][0] = __('Limit to LTS updates');
 $table->data[$i++][1] = html_print_switch(
     [
         'name'   => 'lts_updates',
@@ -346,11 +347,11 @@ $table->data[$i++][1] = html_print_switch(
 );
 
 
-$table->data[$i][0] = __('Registration ID:');
-$table->data[$i++][1] = '<i>'.$config['pandora_uid'].'</i>';
+$table->data[$i][0] = __('Registration ID');
+$table->data[$i++][1] = '<i>'.($config['pandora_uid'] ?? __('Not registred yet')).'</i>';
 
 if (update_manager_verify_registration() === true && users_is_admin()) {
-    $table->data[$i][0] = __('Cancel registration:');
+    $table->data[$i][0] = __('Cancel registration');
     $table->data[$i][1] = '<a href="';
     if ((bool) is_metaconsole() === true) {
         $table->data[$i][1] .= ui_get_full_url(
@@ -367,7 +368,7 @@ if (update_manager_verify_registration() === true && users_is_admin()) {
 
 if (license_free()) {
     $config['identification_reminder'] = isset($config['identification_reminder']) ? $config['identification_reminder'] : 1;
-    $table->data[$i][0] = __('Pandora FMS community reminder').ui_print_help_tip(__('Every 8 days, a message is displayed to admin users to remember to register this Pandora instance'), true);
+    $table->data[$i][0] = __('%s community reminder', get_product_name()).ui_print_help_tip(__('Every 8 days, a message is displayed to admin users to remember to register this %s instance', get_product_name()), true);
     $table->data[$i][1] = __('Yes').'&nbsp;&nbsp;&nbsp;'.html_print_radio_button('identification_reminder', 1, '', $config['identification_reminder'], true).'&nbsp;&nbsp;';
     $table->data[$i++][1] .= __('No').'&nbsp;&nbsp;&nbsp;'.html_print_radio_button('identification_reminder', 0, '', $config['identification_reminder'], true);
 }
diff --git a/pandora_console/include/class/OrderInterpreter.class.php b/pandora_console/include/class/OrderInterpreter.class.php
index 25ecfdae64..5762a678a7 100644
--- a/pandora_console/include/class/OrderInterpreter.class.php
+++ b/pandora_console/include/class/OrderInterpreter.class.php
@@ -336,7 +336,7 @@ class OrderInterpreter extends Wizard
                 ),
             ],
             [
-                'name' => __('Update Manager'),
+                'name' => __('WARP Update'),
                 'icon' => ui_get_full_url(
                     'images/menu/um_messages.menu_gray.png'
                 ),
@@ -404,10 +404,10 @@ class OrderInterpreter extends Wizard
                         '.$value['name'].'</a><br>';
                     }
 
-                    $iterator ++;
+                    $iterator++;
 
                     if ($iterator > 10) {
-                        $more_results ++;
+                        $more_results++;
                     }
                 }
             }
diff --git a/pandora_console/update_manager_client/views/register.php b/pandora_console/update_manager_client/views/register.php
index 45767ea1cc..7f126c79b6 100644
--- a/pandora_console/update_manager_client/views/register.php
+++ b/pandora_console/update_manager_client/views/register.php
@@ -45,7 +45,7 @@ $product_name = get_product_name(); ?>
 </head>
 
 <div id="registration_wizard" title="
-    <?php echo __('Register to Update Manager'); ?>
+    <?php echo __('Register to WARP Update'); ?>
     " class="invisible">
     <div class="register_update_manager">
         <?php echo html_print_image('images/pandora_circle_big.png', true); ?>
@@ -59,10 +59,10 @@ $product_name = get_product_name(); ?>
         <p>
             <?php
             echo __(
-                'When you subscribe to the %s Update Manager service, you accept that we
+                'When you subscribe to the WARP update service for %s, you accept that we
             register your %s instance as an identifier on a database owned by %s. This data will solely be used to
             provide you with information about %s and will not be conceded to third parties. You can unregister from
-            said database at any time from the Update Manager options.',
+            said database at any time from the WARP update options.',
                 $product_name,
                 $product_name,
                 $product_name,
@@ -72,7 +72,7 @@ $product_name = get_product_name(); ?>
         </p>
 
         <p>
-            <?php echo __('Visit our privacy policy for more information'); ?>: 
+            <?php echo __('Visit our privacy policy for more information'); ?>:
             <a href="https://pandorafms.com/privacy-policy/" target="_blank">https://pandorafms.com/privacy-policy/</a>
         </p>
 
@@ -109,7 +109,7 @@ $product_name = get_product_name(); ?>
 <!-- Verification modal.. -->
 <div id="reg_ensure_cancel" title="Confirmation Required" class="invisible">
     <div class="font_12_20">
-        <?php echo __('Are you sure you don\'t want to use update manager?'); ?>
+        <?php echo __('Are you sure you don\'t want to use WARP update?'); ?>
         <p>
             <?php
             echo __(

From eed2030bba9d303d3d0ac5edaeb1b368470012a6 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Jos=C3=A9=20Gonz=C3=A1lez?= <jose.gonzalez@pandorafms.com>
Date: Fri, 10 Jun 2022 10:17:53 +0200
Subject: [PATCH 099/138] WIP: Backup upload

---
 .../update_manager_client/resources/styles/pandora.css      | 6 +++---
 pandora_console/update_manager_client/views/online.php      | 6 +++---
 2 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/pandora_console/update_manager_client/resources/styles/pandora.css b/pandora_console/update_manager_client/resources/styles/pandora.css
index 6003234002..3781aa6fb2 100644
--- a/pandora_console/update_manager_client/resources/styles/pandora.css
+++ b/pandora_console/update_manager_client/resources/styles/pandora.css
@@ -168,7 +168,7 @@
 
 div#box_online * {
   font-size: 16pt;
-  margin-bottom: 50px;
+  /*margin-bottom: 50px;*/
 }
 
 #box_online .content {
@@ -224,9 +224,9 @@ a.update_manager_button:after {
 
 #box_online #pkg_version {
   color: #82b92e;
-  font-size: 75pt;
+  font-size: 6em;
   font-weight: bold;
-  margin-bottom: 50px;
+  margin: 35px 0 !important;
 }
 
 /* METACONSOLE */
diff --git a/pandora_console/update_manager_client/views/online.php b/pandora_console/update_manager_client/views/online.php
index a72372f0f7..5fa953d74b 100644
--- a/pandora_console/update_manager_client/views/online.php
+++ b/pandora_console/update_manager_client/views/online.php
@@ -40,10 +40,10 @@
     <span class="loading" style="font-size: 18pt; display: none;">
         <img src="images/wait.gif">
     </span>
-    
-    <p style="font-weight: 600;">The latest version of package installed is:</p>
+
+    <p style="font-weight: 600;margin-top: 3em;"><?php echo __('The latest version of package installed is').':'; ?></p>
     <div id="pkg_version"><?php echo $version; ?></div>
-    
+
     <div class="content">
         <?php
         if (empty($error) !== true) {

From bb17645c885d28e897ad55e59bb90dd7f54a250b Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Jos=C3=A9=20Gonz=C3=A1lez?= <jose.gonzalez@pandorafms.com>
Date: Fri, 10 Jun 2022 10:40:28 +0200
Subject: [PATCH 100/138] Fix

---
 pandora_console/include/lib/Dashboard/Widgets/top_n.php | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/pandora_console/include/lib/Dashboard/Widgets/top_n.php b/pandora_console/include/lib/Dashboard/Widgets/top_n.php
index 93781e7ba7..0406a4e214 100644
--- a/pandora_console/include/lib/Dashboard/Widgets/top_n.php
+++ b/pandora_console/include/lib/Dashboard/Widgets/top_n.php
@@ -258,8 +258,8 @@ class TopNWidget extends Widget
 
         // Order.
         $fields = [
-            1 => __('Descending'),
-            2 => __('Ascending'),
+            1 => __('Ascending'),
+            2 => __('Descending'),
             3 => __('By agent name'),
         ];
 
@@ -466,7 +466,7 @@ class TopNWidget extends Widget
         ];
 
         foreach ($modules as $module) {
-            $module['aliasAgent'] = ui_print_truncate_text($module['aliasAgent'], 20);
+            $module['aliasAgent'] = ui_print_truncate_text($module['aliasAgent'], 20, false, true, false);
             $item_name = $module['aliasAgent'].' - '.$module['nameModule'];
             $data_hbar[$item_name]['g'] = $module[$display];
             // Calculation of max-min values for show in graph.

From 0784b25ea06ee9f149b42599bf9a42f6206a3cb5 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Jos=C3=A9=20Gonz=C3=A1lez?= <jose.gonzalez@pandorafms.com>
Date: Fri, 10 Jun 2022 12:56:45 +0200
Subject: [PATCH 101/138] Update Warp strings

---
 pandora_console/godmode/menu.php                          | 4 ++--
 .../godmode/update_manager/update_manager.setup.php       | 4 ++--
 pandora_console/include/constants.php                     | 2 +-
 pandora_console/update_manager_client/views/register.php  | 8 ++++----
 4 files changed, 9 insertions(+), 9 deletions(-)

diff --git a/pandora_console/godmode/menu.php b/pandora_console/godmode/menu.php
index 9d7719dd89..bb43ad0df5 100644
--- a/pandora_console/godmode/menu.php
+++ b/pandora_console/godmode/menu.php
@@ -525,7 +525,7 @@ $menu_godmode['links']['sub'] = $sub;
 
 // Update Manager
 if (check_acl($config['id_user'], 0, 'PM') && $config['enable_update_manager']) {
-    $menu_godmode['messages']['text'] = __('WARP Update');
+    $menu_godmode['messages']['text'] = __('Warp Update');
     $menu_godmode['messages']['id'] = 'god-um_messages';
     $menu_godmode['messages']['sec2'] = '';
 
@@ -539,7 +539,7 @@ if (check_acl($config['id_user'], 0, 'PM') && $config['enable_update_manager'])
     $sub['godmode/update_manager/update_manager&tab=setup']['text'] = __('Options');
     $sub['godmode/update_manager/update_manager&tab=setup']['id'] = 'Options';
 
-    $sub['godmode/update_manager/update_manager&tab=history']['text'] = __('WARP journal');
+    $sub['godmode/update_manager/update_manager&tab=history']['text'] = __('Warp journal');
     $sub['godmode/update_manager/update_manager&tab=history']['id'] = 'Journal';
 
     $menu_godmode['messages']['sub'] = $sub;
diff --git a/pandora_console/godmode/update_manager/update_manager.setup.php b/pandora_console/godmode/update_manager/update_manager.setup.php
index a671424bdc..e3ca9f4958 100644
--- a/pandora_console/godmode/update_manager/update_manager.setup.php
+++ b/pandora_console/godmode/update_manager/update_manager.setup.php
@@ -268,7 +268,7 @@ $table->style[$i] = 'font-weight: bolder;width:250px';
 
 $url_update_manager = update_manager_get_url();
 
-$table->data[$i][0] = __('WARP Update URL');
+$table->data[$i][0] = __('Warp Update URL');
 $table->data[$i++][1] = html_print_input_text(
     'url_update_manager',
     $url_update_manager,
@@ -279,7 +279,7 @@ $table->data[$i++][1] = html_print_input_text(
     true
 );
 
-$table->data[$i][0] = __('Use secured WARP Update');
+$table->data[$i][0] = __('Use secured Warp Update');
 $table->data[$i++][1] = html_print_input(
     [
         'type'  => 'switch',
diff --git a/pandora_console/include/constants.php b/pandora_console/include/constants.php
index e1d24ede9c..9e4f13dedc 100644
--- a/pandora_console/include/constants.php
+++ b/pandora_console/include/constants.php
@@ -802,7 +802,7 @@ define('AUDIT_LOG_SNMP_MANAGEMENT', 'SNMP management');
 define('AUDIT_LOG_DASHBOARD_MANAGEMENT', 'Dashboard management');
 define('AUDIT_LOG_SERVICE_MANAGEMENT', 'Service management');
 define('AUDIT_LOG_INCIDENT_MANAGEMENT', 'Incident management');
-define('AUDIT_LOG_UMC', 'Update Manager');
+define('AUDIT_LOG_UMC', 'Warp Manager');
 
 // MIMEs.
 define(
diff --git a/pandora_console/update_manager_client/views/register.php b/pandora_console/update_manager_client/views/register.php
index 7f126c79b6..89225432ad 100644
--- a/pandora_console/update_manager_client/views/register.php
+++ b/pandora_console/update_manager_client/views/register.php
@@ -45,7 +45,7 @@ $product_name = get_product_name(); ?>
 </head>
 
 <div id="registration_wizard" title="
-    <?php echo __('Register to WARP Update'); ?>
+    <?php echo __('Register to Warp Update'); ?>
     " class="invisible">
     <div class="register_update_manager">
         <?php echo html_print_image('images/pandora_circle_big.png', true); ?>
@@ -59,10 +59,10 @@ $product_name = get_product_name(); ?>
         <p>
             <?php
             echo __(
-                'When you subscribe to the WARP update service for %s, you accept that we
+                'When you subscribe to the Warp update service for %s, you accept that we
             register your %s instance as an identifier on a database owned by %s. This data will solely be used to
             provide you with information about %s and will not be conceded to third parties. You can unregister from
-            said database at any time from the WARP update options.',
+            said database at any time from the Warp update options.',
                 $product_name,
                 $product_name,
                 $product_name,
@@ -109,7 +109,7 @@ $product_name = get_product_name(); ?>
 <!-- Verification modal.. -->
 <div id="reg_ensure_cancel" title="Confirmation Required" class="invisible">
     <div class="font_12_20">
-        <?php echo __('Are you sure you don\'t want to use WARP update?'); ?>
+        <?php echo __('Are you sure you don\'t want to use Warp update?'); ?>
         <p>
             <?php
             echo __(

From 022d28981dacb8e0f17502e265857f15509a0e89 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Jos=C3=A9=20Gonz=C3=A1lez?= <jose.gonzalez@pandorafms.com>
Date: Fri, 10 Jun 2022 12:57:04 +0200
Subject: [PATCH 102/138] Update styles

---
 pandora_console/include/styles/pandora_black.css         | 4 ----
 .../update_manager_client/resources/styles/pandora.css   | 9 ++++-----
 .../update_manager_client/resources/styles/um.css        | 8 ++++----
 3 files changed, 8 insertions(+), 13 deletions(-)

diff --git a/pandora_console/include/styles/pandora_black.css b/pandora_console/include/styles/pandora_black.css
index 3db3587bef..e3df14e51e 100644
--- a/pandora_console/include/styles/pandora_black.css
+++ b/pandora_console/include/styles/pandora_black.css
@@ -1186,13 +1186,9 @@ a.pandora_pagination,
 }
 #box_online {
   background-image: url("../../images/update_pandora_black.jpg") !important;
-  background-position: left, left !important;
-  background-repeat: no-repeat;
   background-color: #000 !important;
   padding: 40px 50px;
   border: 1px solid #111 !important;
-  border-radius: 5px;
-  min-height: 600px;
   background-size: contain;
   box-shadow: 1px 1px 4px rgba(160, 160, 160, 0.514);
 }
diff --git a/pandora_console/update_manager_client/resources/styles/pandora.css b/pandora_console/update_manager_client/resources/styles/pandora.css
index 3781aa6fb2..537f28c823 100644
--- a/pandora_console/update_manager_client/resources/styles/pandora.css
+++ b/pandora_console/update_manager_client/resources/styles/pandora.css
@@ -156,19 +156,18 @@
 
 #box_online {
   background-image: url("../images/update_manager_background.jpg");
-  background-position: center center;
+  background-position: top right;
   background-repeat: no-repeat;
   background-color: #fff;
   padding: 40px 50px;
   border: 1px solid #f3f3f3;
   border-radius: 5px;
-  min-height: 600px;
+  min-height: 400px;
   background-size: contain;
 }
 
 div#box_online * {
-  font-size: 16pt;
-  /*margin-bottom: 50px;*/
+  font-size: 14pt;
 }
 
 #box_online .content {
@@ -226,7 +225,7 @@ a.update_manager_button:after {
   color: #82b92e;
   font-size: 6em;
   font-weight: bold;
-  margin: 35px 0 !important;
+  margin: 30px 0 !important;
 }
 
 /* METACONSOLE */
diff --git a/pandora_console/update_manager_client/resources/styles/um.css b/pandora_console/update_manager_client/resources/styles/um.css
index a876a69219..1f469512ef 100644
--- a/pandora_console/update_manager_client/resources/styles/um.css
+++ b/pandora_console/update_manager_client/resources/styles/um.css
@@ -26,10 +26,10 @@
 
 #um-loading {
   background-image: url(../images/spinner.gif);
-  height: 1.3em;
+  height: 1em;
   background-repeat: no-repeat;
   background-size: contain;
-  text-indent: 6em;
+  text-indent: 4.5em;
 }
 
 #um-buttons {
@@ -72,10 +72,10 @@
   background-color: #343434;
   background-repeat: no-repeat;
   background-position: 50% 20%;
-  height: 3em;
+  height: 1.8em;
   text-align: center;
   display: block;
-  padding-top: 5.7em;
+  padding-top: 5.3em;
   width: 100%;
 }
 #um-update-details-content {

From 05bcbfaf7942a21d49b440bb02f49b616faf297f Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Jos=C3=A9=20Gonz=C3=A1lez?= <jose.gonzalez@pandorafms.com>
Date: Fri, 10 Jun 2022 12:57:25 +0200
Subject: [PATCH 103/138] Minor fixes

---
 .../godmode/update_manager/update_manager.php | 49 ++++++++++++-------
 1 file changed, 32 insertions(+), 17 deletions(-)

diff --git a/pandora_console/godmode/update_manager/update_manager.php b/pandora_console/godmode/update_manager/update_manager.php
index e880e82a43..755680d6d1 100644
--- a/pandora_console/godmode/update_manager/update_manager.php
+++ b/pandora_console/godmode/update_manager/update_manager.php
@@ -1,21 +1,36 @@
 <?php
+/**
+ * Update manager.
+ *
+ * @category   Update Manager
+ * @package    Pandora FMS
+ * @subpackage Community
+ * @version    1.0.0
+ * @license    See below
+ *
+ *    ______                 ___                    _______ _______ ________
+ *   |   __ \.-----.--.--.--|  |.-----.----.-----. |    ___|   |   |     __|
+ *  |    __/|  _  |     |  _  ||  _  |   _|  _  | |    ___|       |__     |
+ * |___|   |___._|__|__|_____||_____|__| |___._| |___|   |__|_|__|_______|
+ *
+ * ============================================================================
+ * Copyright (c) 2005-2022 Artica Soluciones Tecnologicas
+ * Please see http://pandorafms.org for full contribution list
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation for version 2.
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ * ============================================================================
+ */
 
-// Pandora FMS - http://pandorafms.com
-// ==================================================
-// Copyright (c) 2005-2021 Artica Soluciones Tecnologicas
-// Please see http://pandorafms.org for full contribution list
-// This program is free software; you can redistribute it and/or
-// modify it under the terms of the GNU General Public License
-// as published by the Free Software Foundation; version 2
-// This program is distributed in the hope that it will be useful,
-// but WITHOUT ANY WARRANTY; without even the implied warranty of
-// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-// GNU General Public License for more details.
+// Begin.
 global $config;
 
 check_login();
-// The ajax is in
-// include/ajax/update_manager.php
+// The ajax is in include/ajax/update_manager.php.
 if (! check_acl($config['id_user'], 0, 'PM') && ! is_user_admin($config['id_user'])) {
     db_pandora_audit(
         AUDIT_LOG_ACL_VIOLATION,
@@ -36,28 +51,28 @@ if ($php_version_array[0] < 7) {
 $tab = get_parameter('tab', 'online');
 
 $buttons['setup'] = [
-    'active' => ($tab == 'setup') ? true : false,
+    'active' => ($tab === 'setup') ? true : false,
     'text'   => '<a href="'.ui_get_full_url(
         'index.php?sec=gsetup&sec2=godmode/update_manager/update_manager&tab=setup'
     ).'">'.html_print_image('images/gm_setup.png', true, ['title' => __('Setup'), 'class' => 'invert_filter']).'</a>',
 ];
 
 $buttons['history'] = [
-    'active' => ($tab == 'history') ? true : false,
+    'active' => ($tab === 'history') ? true : false,
     'text'   => '<a href="'.ui_get_full_url(
         'index.php?sec=gsetup&sec2=godmode/update_manager/update_manager&tab=histo'
     ).'ry">'.html_print_image('images/gm_db.png', true, ['title' => __('Journal'), 'class' => 'invert_filter']).'</a>',
 ];
 
 $buttons['offline'] = [
-    'active' => ($tab == 'offline') ? true : false,
+    'active' => ($tab === 'offline') ? true : false,
     'text'   => '<a href="'.ui_get_full_url(
         'index.php?sec=gsetup&sec2=godmode/update_manager/update_manager&tab=offli'
     ).'ne">'.html_print_image('images/box.png', true, ['title' => __('Offline update'), 'class' => 'invert_filter']).'</a>',
 ];
 
 $buttons['online'] = [
-    'active' => ($tab == 'online') ? true : false,
+    'active' => ($tab === 'online') ? true : false,
     'text'   => '<a href="'.ui_get_full_url(
         'index.php?sec=gsetup&sec2=godmode/update_manager/update_manager&tab=onlin'
     ).'e">'.html_print_image('images/op_gis.png', true, ['title' => __('Online update'), 'class' => 'invert_filter']).'</a>',

From 3ec50f10b4b0dc56e2d5bce29b0a353abc21bda7 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Jos=C3=A9=20Gonz=C3=A1lez?= <jose.gonzalez@pandorafms.com>
Date: Fri, 10 Jun 2022 12:57:45 +0200
Subject: [PATCH 104/138] Update warp strings

---
 pandora_console/include/class/OrderInterpreter.class.php | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/pandora_console/include/class/OrderInterpreter.class.php b/pandora_console/include/class/OrderInterpreter.class.php
index 5762a678a7..f32c48b1d0 100644
--- a/pandora_console/include/class/OrderInterpreter.class.php
+++ b/pandora_console/include/class/OrderInterpreter.class.php
@@ -336,7 +336,7 @@ class OrderInterpreter extends Wizard
                 ),
             ],
             [
-                'name' => __('WARP Update'),
+                'name' => __('Warp Update'),
                 'icon' => ui_get_full_url(
                     'images/menu/um_messages.menu_gray.png'
                 ),

From b068b35d78082a1f9fa246f47e3ab46958ccdac6 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Jos=C3=A9=20Gonz=C3=A1lez?= <jose.gonzalez@pandorafms.com>
Date: Fri, 10 Jun 2022 12:58:13 +0200
Subject: [PATCH 105/138] Visual improvements

---
 .../update_manager_client/resources/javascript/umc.js           | 2 +-
 pandora_console/update_manager_client/views/online.php          | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/pandora_console/update_manager_client/resources/javascript/umc.js b/pandora_console/update_manager_client/resources/javascript/umc.js
index e5b3ba1a5c..659a240c61 100644
--- a/pandora_console/update_manager_client/resources/javascript/umc.js
+++ b/pandora_console/update_manager_client/resources/javascript/umc.js
@@ -469,7 +469,7 @@ function umShowUpdateDetails(update) {
     if (typeof $ == "function") {
       $("#um-update-details").dialog({
         title: update,
-        width: 650,
+        width: 800,
         height: 600
       });
     }
diff --git a/pandora_console/update_manager_client/views/online.php b/pandora_console/update_manager_client/views/online.php
index 5fa953d74b..d58ad825aa 100644
--- a/pandora_console/update_manager_client/views/online.php
+++ b/pandora_console/update_manager_client/views/online.php
@@ -41,7 +41,7 @@
         <img src="images/wait.gif">
     </span>
 
-    <p style="font-weight: 600;margin-top: 3em;"><?php echo __('The latest version of package installed is').':'; ?></p>
+    <p style="font-weight: 600;"><?php echo __('The latest version of package installed is').':'; ?></p>
     <div id="pkg_version"><?php echo $version; ?></div>
 
     <div class="content">

From 46897aff83fb4c55ecc3587133aeca8dce68a96f Mon Sep 17 00:00:00 2001
From: artica <artica.devel@gmail.com>
Date: Sat, 11 Jun 2022 01:00:50 +0200
Subject: [PATCH 106/138] Auto-updated build strings.

---
 pandora_agents/unix/DEBIAN/control             | 2 +-
 pandora_agents/unix/DEBIAN/make_deb_package.sh | 2 +-
 pandora_agents/unix/pandora_agent              | 2 +-
 pandora_agents/unix/pandora_agent.redhat.spec  | 2 +-
 pandora_agents/unix/pandora_agent.spec         | 2 +-
 pandora_agents/unix/pandora_agent_installer    | 2 +-
 pandora_agents/win32/installer/pandora.mpi     | 2 +-
 pandora_agents/win32/pandora.cc                | 2 +-
 pandora_agents/win32/versioninfo.rc            | 2 +-
 pandora_console/DEBIAN/control                 | 2 +-
 pandora_console/DEBIAN/make_deb_package.sh     | 2 +-
 pandora_console/include/config_process.php     | 2 +-
 pandora_console/install.php                    | 2 +-
 pandora_console/pandora_console.redhat.spec    | 2 +-
 pandora_console/pandora_console.rhel7.spec     | 2 +-
 pandora_console/pandora_console.spec           | 2 +-
 pandora_server/DEBIAN/control                  | 2 +-
 pandora_server/DEBIAN/make_deb_package.sh      | 2 +-
 pandora_server/lib/PandoraFMS/Config.pm        | 2 +-
 pandora_server/lib/PandoraFMS/PluginTools.pm   | 2 +-
 pandora_server/pandora_server.redhat.spec      | 2 +-
 pandora_server/pandora_server.spec             | 2 +-
 pandora_server/pandora_server_installer        | 2 +-
 pandora_server/util/pandora_db.pl              | 2 +-
 pandora_server/util/pandora_manage.pl          | 2 +-
 25 files changed, 25 insertions(+), 25 deletions(-)

diff --git a/pandora_agents/unix/DEBIAN/control b/pandora_agents/unix/DEBIAN/control
index dd47d2cbf1..3bb0d738b9 100644
--- a/pandora_agents/unix/DEBIAN/control
+++ b/pandora_agents/unix/DEBIAN/control
@@ -1,5 +1,5 @@
 package: pandorafms-agent-unix
-Version: 7.0NG.762-220610
+Version: 7.0NG.762-220611
 Architecture: all
 Priority: optional
 Section: admin
diff --git a/pandora_agents/unix/DEBIAN/make_deb_package.sh b/pandora_agents/unix/DEBIAN/make_deb_package.sh
index a4b1c51141..716f2440d6 100644
--- a/pandora_agents/unix/DEBIAN/make_deb_package.sh
+++ b/pandora_agents/unix/DEBIAN/make_deb_package.sh
@@ -14,7 +14,7 @@
 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 # GNU General Public License for more details.
 
-pandora_version="7.0NG.762-220610"
+pandora_version="7.0NG.762-220611"
 
 echo "Test if you has the tools for to make the packages."
 whereis dpkg-deb | cut -d":" -f2 | grep dpkg-deb > /dev/null
diff --git a/pandora_agents/unix/pandora_agent b/pandora_agents/unix/pandora_agent
index 0407a9c3f9..d9cfb25cf1 100755
--- a/pandora_agents/unix/pandora_agent
+++ b/pandora_agents/unix/pandora_agent
@@ -1015,7 +1015,7 @@ my $Sem = undef;
 my $ThreadSem = undef;
 
 use constant AGENT_VERSION => '7.0NG.762';
-use constant AGENT_BUILD => '220610';
+use constant AGENT_BUILD => '220611';
 
 # Agent log default file size maximum and instances
 use constant DEFAULT_MAX_LOG_SIZE => 600000;
diff --git a/pandora_agents/unix/pandora_agent.redhat.spec b/pandora_agents/unix/pandora_agent.redhat.spec
index 1276e25dc7..126fb1d879 100644
--- a/pandora_agents/unix/pandora_agent.redhat.spec
+++ b/pandora_agents/unix/pandora_agent.redhat.spec
@@ -3,7 +3,7 @@
 #
 %define name        pandorafms_agent_unix
 %define version     7.0NG.762
-%define release     220610
+%define release     220611
 
 Summary:            Pandora FMS Linux agent, PERL version
 Name:               %{name}
diff --git a/pandora_agents/unix/pandora_agent.spec b/pandora_agents/unix/pandora_agent.spec
index 810b0caec0..88f33fd701 100644
--- a/pandora_agents/unix/pandora_agent.spec
+++ b/pandora_agents/unix/pandora_agent.spec
@@ -3,7 +3,7 @@
 #
 %define name        pandorafms_agent_unix
 %define version     7.0NG.762
-%define release     220610
+%define release     220611
 
 Summary:            Pandora FMS Linux agent, PERL version
 Name:               %{name}
diff --git a/pandora_agents/unix/pandora_agent_installer b/pandora_agents/unix/pandora_agent_installer
index f0bceb189f..d418abbe1a 100755
--- a/pandora_agents/unix/pandora_agent_installer
+++ b/pandora_agents/unix/pandora_agent_installer
@@ -10,7 +10,7 @@
 # **********************************************************************
 
 PI_VERSION="7.0NG.762"
-PI_BUILD="220610"
+PI_BUILD="220611"
 OS_NAME=`uname -s`
 
 FORCE=0
diff --git a/pandora_agents/win32/installer/pandora.mpi b/pandora_agents/win32/installer/pandora.mpi
index 4d5fe7ad73..4e1e94040a 100644
--- a/pandora_agents/win32/installer/pandora.mpi
+++ b/pandora_agents/win32/installer/pandora.mpi
@@ -186,7 +186,7 @@ UpgradeApplicationID
 {}
 
 Version
-{220610}
+{220611}
 
 ViewReadme
 {Yes}
diff --git a/pandora_agents/win32/pandora.cc b/pandora_agents/win32/pandora.cc
index 7386a63da8..713ed96989 100644
--- a/pandora_agents/win32/pandora.cc
+++ b/pandora_agents/win32/pandora.cc
@@ -30,7 +30,7 @@ using namespace Pandora;
 using namespace Pandora_Strutils;
 
 #define PATH_SIZE    _MAX_PATH+1
-#define PANDORA_VERSION ("7.0NG.762 Build 220610")
+#define PANDORA_VERSION ("7.0NG.762 Build 220611")
 
 string pandora_path;
 string pandora_dir;
diff --git a/pandora_agents/win32/versioninfo.rc b/pandora_agents/win32/versioninfo.rc
index 558c565907..53cad87a91 100644
--- a/pandora_agents/win32/versioninfo.rc
+++ b/pandora_agents/win32/versioninfo.rc
@@ -11,7 +11,7 @@ BEGIN
       VALUE "LegalCopyright", "Artica ST"
       VALUE "OriginalFilename", "PandoraAgent.exe"
       VALUE "ProductName", "Pandora FMS Windows Agent"
-      VALUE "ProductVersion", "(7.0NG.762(Build 220610))"
+      VALUE "ProductVersion", "(7.0NG.762(Build 220611))"
       VALUE "FileVersion", "1.0.0.0"
     END
   END
diff --git a/pandora_console/DEBIAN/control b/pandora_console/DEBIAN/control
index a1801d6703..bb5780bf0b 100644
--- a/pandora_console/DEBIAN/control
+++ b/pandora_console/DEBIAN/control
@@ -1,5 +1,5 @@
 package: pandorafms-console
-Version: 7.0NG.762-220610
+Version: 7.0NG.762-220611
 Architecture: all
 Priority: optional
 Section: admin
diff --git a/pandora_console/DEBIAN/make_deb_package.sh b/pandora_console/DEBIAN/make_deb_package.sh
index fd4de102b2..f257be03a5 100644
--- a/pandora_console/DEBIAN/make_deb_package.sh
+++ b/pandora_console/DEBIAN/make_deb_package.sh
@@ -14,7 +14,7 @@
 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 # GNU General Public License for more details.
 
-pandora_version="7.0NG.762-220610"
+pandora_version="7.0NG.762-220611"
 
 package_pear=0
 package_pandora=1
diff --git a/pandora_console/include/config_process.php b/pandora_console/include/config_process.php
index 1aa9892988..2365fc5d4a 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 = 'PC220610';
+$build_version = 'PC220611';
 $pandora_version = 'v7.0NG.762';
 
 // Do not overwrite default timezone set if defined.
diff --git a/pandora_console/install.php b/pandora_console/install.php
index 32dfac4eb9..919b8077b9 100644
--- a/pandora_console/install.php
+++ b/pandora_console/install.php
@@ -129,7 +129,7 @@
         <div style='height: 10px'>
             <?php
             $version = '7.0NG.762';
-            $build = '220610';
+            $build = '220611';
             $banner = "v$version Build $build";
 
             error_reporting(0);
diff --git a/pandora_console/pandora_console.redhat.spec b/pandora_console/pandora_console.redhat.spec
index c1dd94c61d..2c6ee15ead 100644
--- a/pandora_console/pandora_console.redhat.spec
+++ b/pandora_console/pandora_console.redhat.spec
@@ -3,7 +3,7 @@
 #
 %define name        pandorafms_console
 %define version     7.0NG.762
-%define release     220610
+%define release     220611
 
 # User and Group under which Apache is running
 %define httpd_name  httpd
diff --git a/pandora_console/pandora_console.rhel7.spec b/pandora_console/pandora_console.rhel7.spec
index ea00a4c339..b265e1b695 100644
--- a/pandora_console/pandora_console.rhel7.spec
+++ b/pandora_console/pandora_console.rhel7.spec
@@ -3,7 +3,7 @@
 #
 %define name        pandorafms_console
 %define version     7.0NG.762
-%define release     220610
+%define release     220611
 
 # User and Group under which Apache is running
 %define httpd_name  httpd
diff --git a/pandora_console/pandora_console.spec b/pandora_console/pandora_console.spec
index ca77332baa..e2e478e1d8 100644
--- a/pandora_console/pandora_console.spec
+++ b/pandora_console/pandora_console.spec
@@ -3,7 +3,7 @@
 #
 %define name        pandorafms_console
 %define version     7.0NG.762
-%define release     220610
+%define release     220611
 %define httpd_name      httpd
 # User and Group under which Apache is running
 %define httpd_name  apache2
diff --git a/pandora_server/DEBIAN/control b/pandora_server/DEBIAN/control
index 08a9a16cde..94b911b08a 100644
--- a/pandora_server/DEBIAN/control
+++ b/pandora_server/DEBIAN/control
@@ -1,5 +1,5 @@
 package: pandorafms-server
-Version: 7.0NG.762-220610
+Version: 7.0NG.762-220611
 Architecture: all
 Priority: optional
 Section: admin
diff --git a/pandora_server/DEBIAN/make_deb_package.sh b/pandora_server/DEBIAN/make_deb_package.sh
index 17571b7562..2e2c31b599 100644
--- a/pandora_server/DEBIAN/make_deb_package.sh
+++ b/pandora_server/DEBIAN/make_deb_package.sh
@@ -14,7 +14,7 @@
 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 # GNU General Public License for more details.
 
-pandora_version="7.0NG.762-220610"
+pandora_version="7.0NG.762-220611"
 
 package_cpan=0
 package_pandora=1
diff --git a/pandora_server/lib/PandoraFMS/Config.pm b/pandora_server/lib/PandoraFMS/Config.pm
index f9f1997c1f..be6e4537cd 100644
--- a/pandora_server/lib/PandoraFMS/Config.pm
+++ b/pandora_server/lib/PandoraFMS/Config.pm
@@ -46,7 +46,7 @@ our @EXPORT = qw(
 
 # version: Defines actual version of Pandora Server for this module only
 my $pandora_version = "7.0NG.762";
-my $pandora_build = "220610";
+my $pandora_build = "220611";
 our $VERSION = $pandora_version." ".$pandora_build;
 
 # Setup hash
diff --git a/pandora_server/lib/PandoraFMS/PluginTools.pm b/pandora_server/lib/PandoraFMS/PluginTools.pm
index 6d11c34eb5..0c1249859c 100644
--- a/pandora_server/lib/PandoraFMS/PluginTools.pm
+++ b/pandora_server/lib/PandoraFMS/PluginTools.pm
@@ -34,7 +34,7 @@ our @ISA = qw(Exporter);
 
 # version: Defines actual version of Pandora Server for this module only
 my $pandora_version = "7.0NG.762";
-my $pandora_build = "220610";
+my $pandora_build = "220611";
 our $VERSION = $pandora_version." ".$pandora_build;
 
 our %EXPORT_TAGS = ( 'all' => [ qw() ] );
diff --git a/pandora_server/pandora_server.redhat.spec b/pandora_server/pandora_server.redhat.spec
index 0c39fb9703..f4752d34f0 100644
--- a/pandora_server/pandora_server.redhat.spec
+++ b/pandora_server/pandora_server.redhat.spec
@@ -3,7 +3,7 @@
 #
 %define name        pandorafms_server
 %define version     7.0NG.762
-%define release     220610
+%define release     220611
 
 Summary:            Pandora FMS Server
 Name:               %{name}
diff --git a/pandora_server/pandora_server.spec b/pandora_server/pandora_server.spec
index 901f95c8ca..f52685469e 100644
--- a/pandora_server/pandora_server.spec
+++ b/pandora_server/pandora_server.spec
@@ -3,7 +3,7 @@
 #
 %define name        pandorafms_server
 %define version     7.0NG.762
-%define release     220610
+%define release     220611
 
 Summary:            Pandora FMS Server
 Name:               %{name}
diff --git a/pandora_server/pandora_server_installer b/pandora_server/pandora_server_installer
index 8c650a9f7c..8bbb7c4642 100755
--- a/pandora_server/pandora_server_installer
+++ b/pandora_server/pandora_server_installer
@@ -9,7 +9,7 @@
 # **********************************************************************
 
 PI_VERSION="7.0NG.762"
-PI_BUILD="220610"
+PI_BUILD="220611"
 
 MODE=$1
 if [ $# -gt 1 ]; then
diff --git a/pandora_server/util/pandora_db.pl b/pandora_server/util/pandora_db.pl
index d2932e46b5..bfb3d9cae2 100755
--- a/pandora_server/util/pandora_db.pl
+++ b/pandora_server/util/pandora_db.pl
@@ -35,7 +35,7 @@ use PandoraFMS::Config;
 use PandoraFMS::DB;
 
 # version: define current version
-my $version = "7.0NG.762 Build 220610";
+my $version = "7.0NG.762 Build 220611";
 
 # Pandora server configuration
 my %conf;
diff --git a/pandora_server/util/pandora_manage.pl b/pandora_server/util/pandora_manage.pl
index 5899e44c71..07c508751c 100755
--- a/pandora_server/util/pandora_manage.pl
+++ b/pandora_server/util/pandora_manage.pl
@@ -36,7 +36,7 @@ use Encode::Locale;
 Encode::Locale::decode_argv;
 
 # version: define current version
-my $version = "7.0NG.762 Build 220610";
+my $version = "7.0NG.762 Build 220611";
 
 # save program name for logging
 my $progname = basename($0);

From 62bcc9e267e0b02040b0c1f4c6d628238f1c49b8 Mon Sep 17 00:00:00 2001
From: artica <artica.devel@gmail.com>
Date: Sun, 12 Jun 2022 01:00:15 +0200
Subject: [PATCH 107/138] Auto-updated build strings.

---
 pandora_agents/unix/DEBIAN/control             | 2 +-
 pandora_agents/unix/DEBIAN/make_deb_package.sh | 2 +-
 pandora_agents/unix/pandora_agent              | 2 +-
 pandora_agents/unix/pandora_agent.redhat.spec  | 2 +-
 pandora_agents/unix/pandora_agent.spec         | 2 +-
 pandora_agents/unix/pandora_agent_installer    | 2 +-
 pandora_agents/win32/installer/pandora.mpi     | 2 +-
 pandora_agents/win32/pandora.cc                | 2 +-
 pandora_agents/win32/versioninfo.rc            | 2 +-
 pandora_console/DEBIAN/control                 | 2 +-
 pandora_console/DEBIAN/make_deb_package.sh     | 2 +-
 pandora_console/include/config_process.php     | 2 +-
 pandora_console/install.php                    | 2 +-
 pandora_console/pandora_console.redhat.spec    | 2 +-
 pandora_console/pandora_console.rhel7.spec     | 2 +-
 pandora_console/pandora_console.spec           | 2 +-
 pandora_server/DEBIAN/control                  | 2 +-
 pandora_server/DEBIAN/make_deb_package.sh      | 2 +-
 pandora_server/lib/PandoraFMS/Config.pm        | 2 +-
 pandora_server/lib/PandoraFMS/PluginTools.pm   | 2 +-
 pandora_server/pandora_server.redhat.spec      | 2 +-
 pandora_server/pandora_server.spec             | 2 +-
 pandora_server/pandora_server_installer        | 2 +-
 pandora_server/util/pandora_db.pl              | 2 +-
 pandora_server/util/pandora_manage.pl          | 2 +-
 25 files changed, 25 insertions(+), 25 deletions(-)

diff --git a/pandora_agents/unix/DEBIAN/control b/pandora_agents/unix/DEBIAN/control
index 3bb0d738b9..4380381744 100644
--- a/pandora_agents/unix/DEBIAN/control
+++ b/pandora_agents/unix/DEBIAN/control
@@ -1,5 +1,5 @@
 package: pandorafms-agent-unix
-Version: 7.0NG.762-220611
+Version: 7.0NG.762-220612
 Architecture: all
 Priority: optional
 Section: admin
diff --git a/pandora_agents/unix/DEBIAN/make_deb_package.sh b/pandora_agents/unix/DEBIAN/make_deb_package.sh
index 716f2440d6..f442fab846 100644
--- a/pandora_agents/unix/DEBIAN/make_deb_package.sh
+++ b/pandora_agents/unix/DEBIAN/make_deb_package.sh
@@ -14,7 +14,7 @@
 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 # GNU General Public License for more details.
 
-pandora_version="7.0NG.762-220611"
+pandora_version="7.0NG.762-220612"
 
 echo "Test if you has the tools for to make the packages."
 whereis dpkg-deb | cut -d":" -f2 | grep dpkg-deb > /dev/null
diff --git a/pandora_agents/unix/pandora_agent b/pandora_agents/unix/pandora_agent
index d9cfb25cf1..a891c3c19f 100755
--- a/pandora_agents/unix/pandora_agent
+++ b/pandora_agents/unix/pandora_agent
@@ -1015,7 +1015,7 @@ my $Sem = undef;
 my $ThreadSem = undef;
 
 use constant AGENT_VERSION => '7.0NG.762';
-use constant AGENT_BUILD => '220611';
+use constant AGENT_BUILD => '220612';
 
 # Agent log default file size maximum and instances
 use constant DEFAULT_MAX_LOG_SIZE => 600000;
diff --git a/pandora_agents/unix/pandora_agent.redhat.spec b/pandora_agents/unix/pandora_agent.redhat.spec
index 126fb1d879..7a19d511ab 100644
--- a/pandora_agents/unix/pandora_agent.redhat.spec
+++ b/pandora_agents/unix/pandora_agent.redhat.spec
@@ -3,7 +3,7 @@
 #
 %define name        pandorafms_agent_unix
 %define version     7.0NG.762
-%define release     220611
+%define release     220612
 
 Summary:            Pandora FMS Linux agent, PERL version
 Name:               %{name}
diff --git a/pandora_agents/unix/pandora_agent.spec b/pandora_agents/unix/pandora_agent.spec
index 88f33fd701..e91b782187 100644
--- a/pandora_agents/unix/pandora_agent.spec
+++ b/pandora_agents/unix/pandora_agent.spec
@@ -3,7 +3,7 @@
 #
 %define name        pandorafms_agent_unix
 %define version     7.0NG.762
-%define release     220611
+%define release     220612
 
 Summary:            Pandora FMS Linux agent, PERL version
 Name:               %{name}
diff --git a/pandora_agents/unix/pandora_agent_installer b/pandora_agents/unix/pandora_agent_installer
index d418abbe1a..13db328213 100755
--- a/pandora_agents/unix/pandora_agent_installer
+++ b/pandora_agents/unix/pandora_agent_installer
@@ -10,7 +10,7 @@
 # **********************************************************************
 
 PI_VERSION="7.0NG.762"
-PI_BUILD="220611"
+PI_BUILD="220612"
 OS_NAME=`uname -s`
 
 FORCE=0
diff --git a/pandora_agents/win32/installer/pandora.mpi b/pandora_agents/win32/installer/pandora.mpi
index 4e1e94040a..08f599e138 100644
--- a/pandora_agents/win32/installer/pandora.mpi
+++ b/pandora_agents/win32/installer/pandora.mpi
@@ -186,7 +186,7 @@ UpgradeApplicationID
 {}
 
 Version
-{220611}
+{220612}
 
 ViewReadme
 {Yes}
diff --git a/pandora_agents/win32/pandora.cc b/pandora_agents/win32/pandora.cc
index 713ed96989..9aa6b3067b 100644
--- a/pandora_agents/win32/pandora.cc
+++ b/pandora_agents/win32/pandora.cc
@@ -30,7 +30,7 @@ using namespace Pandora;
 using namespace Pandora_Strutils;
 
 #define PATH_SIZE    _MAX_PATH+1
-#define PANDORA_VERSION ("7.0NG.762 Build 220611")
+#define PANDORA_VERSION ("7.0NG.762 Build 220612")
 
 string pandora_path;
 string pandora_dir;
diff --git a/pandora_agents/win32/versioninfo.rc b/pandora_agents/win32/versioninfo.rc
index 53cad87a91..25a919f262 100644
--- a/pandora_agents/win32/versioninfo.rc
+++ b/pandora_agents/win32/versioninfo.rc
@@ -11,7 +11,7 @@ BEGIN
       VALUE "LegalCopyright", "Artica ST"
       VALUE "OriginalFilename", "PandoraAgent.exe"
       VALUE "ProductName", "Pandora FMS Windows Agent"
-      VALUE "ProductVersion", "(7.0NG.762(Build 220611))"
+      VALUE "ProductVersion", "(7.0NG.762(Build 220612))"
       VALUE "FileVersion", "1.0.0.0"
     END
   END
diff --git a/pandora_console/DEBIAN/control b/pandora_console/DEBIAN/control
index bb5780bf0b..19a301e8ad 100644
--- a/pandora_console/DEBIAN/control
+++ b/pandora_console/DEBIAN/control
@@ -1,5 +1,5 @@
 package: pandorafms-console
-Version: 7.0NG.762-220611
+Version: 7.0NG.762-220612
 Architecture: all
 Priority: optional
 Section: admin
diff --git a/pandora_console/DEBIAN/make_deb_package.sh b/pandora_console/DEBIAN/make_deb_package.sh
index f257be03a5..4ae5969467 100644
--- a/pandora_console/DEBIAN/make_deb_package.sh
+++ b/pandora_console/DEBIAN/make_deb_package.sh
@@ -14,7 +14,7 @@
 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 # GNU General Public License for more details.
 
-pandora_version="7.0NG.762-220611"
+pandora_version="7.0NG.762-220612"
 
 package_pear=0
 package_pandora=1
diff --git a/pandora_console/include/config_process.php b/pandora_console/include/config_process.php
index 2365fc5d4a..1195ce6eb0 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 = 'PC220611';
+$build_version = 'PC220612';
 $pandora_version = 'v7.0NG.762';
 
 // Do not overwrite default timezone set if defined.
diff --git a/pandora_console/install.php b/pandora_console/install.php
index 919b8077b9..d4ea215136 100644
--- a/pandora_console/install.php
+++ b/pandora_console/install.php
@@ -129,7 +129,7 @@
         <div style='height: 10px'>
             <?php
             $version = '7.0NG.762';
-            $build = '220611';
+            $build = '220612';
             $banner = "v$version Build $build";
 
             error_reporting(0);
diff --git a/pandora_console/pandora_console.redhat.spec b/pandora_console/pandora_console.redhat.spec
index 2c6ee15ead..7719b13180 100644
--- a/pandora_console/pandora_console.redhat.spec
+++ b/pandora_console/pandora_console.redhat.spec
@@ -3,7 +3,7 @@
 #
 %define name        pandorafms_console
 %define version     7.0NG.762
-%define release     220611
+%define release     220612
 
 # User and Group under which Apache is running
 %define httpd_name  httpd
diff --git a/pandora_console/pandora_console.rhel7.spec b/pandora_console/pandora_console.rhel7.spec
index b265e1b695..4f68b25a70 100644
--- a/pandora_console/pandora_console.rhel7.spec
+++ b/pandora_console/pandora_console.rhel7.spec
@@ -3,7 +3,7 @@
 #
 %define name        pandorafms_console
 %define version     7.0NG.762
-%define release     220611
+%define release     220612
 
 # User and Group under which Apache is running
 %define httpd_name  httpd
diff --git a/pandora_console/pandora_console.spec b/pandora_console/pandora_console.spec
index e2e478e1d8..3cbe6c54cd 100644
--- a/pandora_console/pandora_console.spec
+++ b/pandora_console/pandora_console.spec
@@ -3,7 +3,7 @@
 #
 %define name        pandorafms_console
 %define version     7.0NG.762
-%define release     220611
+%define release     220612
 %define httpd_name      httpd
 # User and Group under which Apache is running
 %define httpd_name  apache2
diff --git a/pandora_server/DEBIAN/control b/pandora_server/DEBIAN/control
index 94b911b08a..919a3ddc4b 100644
--- a/pandora_server/DEBIAN/control
+++ b/pandora_server/DEBIAN/control
@@ -1,5 +1,5 @@
 package: pandorafms-server
-Version: 7.0NG.762-220611
+Version: 7.0NG.762-220612
 Architecture: all
 Priority: optional
 Section: admin
diff --git a/pandora_server/DEBIAN/make_deb_package.sh b/pandora_server/DEBIAN/make_deb_package.sh
index 2e2c31b599..b95f43dda9 100644
--- a/pandora_server/DEBIAN/make_deb_package.sh
+++ b/pandora_server/DEBIAN/make_deb_package.sh
@@ -14,7 +14,7 @@
 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 # GNU General Public License for more details.
 
-pandora_version="7.0NG.762-220611"
+pandora_version="7.0NG.762-220612"
 
 package_cpan=0
 package_pandora=1
diff --git a/pandora_server/lib/PandoraFMS/Config.pm b/pandora_server/lib/PandoraFMS/Config.pm
index be6e4537cd..d09eb99b8d 100644
--- a/pandora_server/lib/PandoraFMS/Config.pm
+++ b/pandora_server/lib/PandoraFMS/Config.pm
@@ -46,7 +46,7 @@ our @EXPORT = qw(
 
 # version: Defines actual version of Pandora Server for this module only
 my $pandora_version = "7.0NG.762";
-my $pandora_build = "220611";
+my $pandora_build = "220612";
 our $VERSION = $pandora_version." ".$pandora_build;
 
 # Setup hash
diff --git a/pandora_server/lib/PandoraFMS/PluginTools.pm b/pandora_server/lib/PandoraFMS/PluginTools.pm
index 0c1249859c..75ae72ce0e 100644
--- a/pandora_server/lib/PandoraFMS/PluginTools.pm
+++ b/pandora_server/lib/PandoraFMS/PluginTools.pm
@@ -34,7 +34,7 @@ our @ISA = qw(Exporter);
 
 # version: Defines actual version of Pandora Server for this module only
 my $pandora_version = "7.0NG.762";
-my $pandora_build = "220611";
+my $pandora_build = "220612";
 our $VERSION = $pandora_version." ".$pandora_build;
 
 our %EXPORT_TAGS = ( 'all' => [ qw() ] );
diff --git a/pandora_server/pandora_server.redhat.spec b/pandora_server/pandora_server.redhat.spec
index f4752d34f0..b7b088b70f 100644
--- a/pandora_server/pandora_server.redhat.spec
+++ b/pandora_server/pandora_server.redhat.spec
@@ -3,7 +3,7 @@
 #
 %define name        pandorafms_server
 %define version     7.0NG.762
-%define release     220611
+%define release     220612
 
 Summary:            Pandora FMS Server
 Name:               %{name}
diff --git a/pandora_server/pandora_server.spec b/pandora_server/pandora_server.spec
index f52685469e..5c5e039465 100644
--- a/pandora_server/pandora_server.spec
+++ b/pandora_server/pandora_server.spec
@@ -3,7 +3,7 @@
 #
 %define name        pandorafms_server
 %define version     7.0NG.762
-%define release     220611
+%define release     220612
 
 Summary:            Pandora FMS Server
 Name:               %{name}
diff --git a/pandora_server/pandora_server_installer b/pandora_server/pandora_server_installer
index 8bbb7c4642..e9e2489314 100755
--- a/pandora_server/pandora_server_installer
+++ b/pandora_server/pandora_server_installer
@@ -9,7 +9,7 @@
 # **********************************************************************
 
 PI_VERSION="7.0NG.762"
-PI_BUILD="220611"
+PI_BUILD="220612"
 
 MODE=$1
 if [ $# -gt 1 ]; then
diff --git a/pandora_server/util/pandora_db.pl b/pandora_server/util/pandora_db.pl
index bfb3d9cae2..fd5966a22b 100755
--- a/pandora_server/util/pandora_db.pl
+++ b/pandora_server/util/pandora_db.pl
@@ -35,7 +35,7 @@ use PandoraFMS::Config;
 use PandoraFMS::DB;
 
 # version: define current version
-my $version = "7.0NG.762 Build 220611";
+my $version = "7.0NG.762 Build 220612";
 
 # Pandora server configuration
 my %conf;
diff --git a/pandora_server/util/pandora_manage.pl b/pandora_server/util/pandora_manage.pl
index 07c508751c..ca50006a36 100755
--- a/pandora_server/util/pandora_manage.pl
+++ b/pandora_server/util/pandora_manage.pl
@@ -36,7 +36,7 @@ use Encode::Locale;
 Encode::Locale::decode_argv;
 
 # version: define current version
-my $version = "7.0NG.762 Build 220611";
+my $version = "7.0NG.762 Build 220612";
 
 # save program name for logging
 my $progname = basename($0);

From 85f31c5ab456d0c150034e71e4d1abe02b44806b Mon Sep 17 00:00:00 2001
From: artica <artica.devel@gmail.com>
Date: Mon, 13 Jun 2022 01:00:16 +0200
Subject: [PATCH 108/138] Auto-updated build strings.

---
 pandora_agents/unix/DEBIAN/control             | 2 +-
 pandora_agents/unix/DEBIAN/make_deb_package.sh | 2 +-
 pandora_agents/unix/pandora_agent              | 2 +-
 pandora_agents/unix/pandora_agent.redhat.spec  | 2 +-
 pandora_agents/unix/pandora_agent.spec         | 2 +-
 pandora_agents/unix/pandora_agent_installer    | 2 +-
 pandora_agents/win32/installer/pandora.mpi     | 2 +-
 pandora_agents/win32/pandora.cc                | 2 +-
 pandora_agents/win32/versioninfo.rc            | 2 +-
 pandora_console/DEBIAN/control                 | 2 +-
 pandora_console/DEBIAN/make_deb_package.sh     | 2 +-
 pandora_console/include/config_process.php     | 2 +-
 pandora_console/install.php                    | 2 +-
 pandora_console/pandora_console.redhat.spec    | 2 +-
 pandora_console/pandora_console.rhel7.spec     | 2 +-
 pandora_console/pandora_console.spec           | 2 +-
 pandora_server/DEBIAN/control                  | 2 +-
 pandora_server/DEBIAN/make_deb_package.sh      | 2 +-
 pandora_server/lib/PandoraFMS/Config.pm        | 2 +-
 pandora_server/lib/PandoraFMS/PluginTools.pm   | 2 +-
 pandora_server/pandora_server.redhat.spec      | 2 +-
 pandora_server/pandora_server.spec             | 2 +-
 pandora_server/pandora_server_installer        | 2 +-
 pandora_server/util/pandora_db.pl              | 2 +-
 pandora_server/util/pandora_manage.pl          | 2 +-
 25 files changed, 25 insertions(+), 25 deletions(-)

diff --git a/pandora_agents/unix/DEBIAN/control b/pandora_agents/unix/DEBIAN/control
index 4380381744..77758e69fe 100644
--- a/pandora_agents/unix/DEBIAN/control
+++ b/pandora_agents/unix/DEBIAN/control
@@ -1,5 +1,5 @@
 package: pandorafms-agent-unix
-Version: 7.0NG.762-220612
+Version: 7.0NG.762-220613
 Architecture: all
 Priority: optional
 Section: admin
diff --git a/pandora_agents/unix/DEBIAN/make_deb_package.sh b/pandora_agents/unix/DEBIAN/make_deb_package.sh
index f442fab846..f0a5d37893 100644
--- a/pandora_agents/unix/DEBIAN/make_deb_package.sh
+++ b/pandora_agents/unix/DEBIAN/make_deb_package.sh
@@ -14,7 +14,7 @@
 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 # GNU General Public License for more details.
 
-pandora_version="7.0NG.762-220612"
+pandora_version="7.0NG.762-220613"
 
 echo "Test if you has the tools for to make the packages."
 whereis dpkg-deb | cut -d":" -f2 | grep dpkg-deb > /dev/null
diff --git a/pandora_agents/unix/pandora_agent b/pandora_agents/unix/pandora_agent
index a891c3c19f..67a52c8cbe 100755
--- a/pandora_agents/unix/pandora_agent
+++ b/pandora_agents/unix/pandora_agent
@@ -1015,7 +1015,7 @@ my $Sem = undef;
 my $ThreadSem = undef;
 
 use constant AGENT_VERSION => '7.0NG.762';
-use constant AGENT_BUILD => '220612';
+use constant AGENT_BUILD => '220613';
 
 # Agent log default file size maximum and instances
 use constant DEFAULT_MAX_LOG_SIZE => 600000;
diff --git a/pandora_agents/unix/pandora_agent.redhat.spec b/pandora_agents/unix/pandora_agent.redhat.spec
index 7a19d511ab..6e19bc9abc 100644
--- a/pandora_agents/unix/pandora_agent.redhat.spec
+++ b/pandora_agents/unix/pandora_agent.redhat.spec
@@ -3,7 +3,7 @@
 #
 %define name        pandorafms_agent_unix
 %define version     7.0NG.762
-%define release     220612
+%define release     220613
 
 Summary:            Pandora FMS Linux agent, PERL version
 Name:               %{name}
diff --git a/pandora_agents/unix/pandora_agent.spec b/pandora_agents/unix/pandora_agent.spec
index e91b782187..f6c87cb14c 100644
--- a/pandora_agents/unix/pandora_agent.spec
+++ b/pandora_agents/unix/pandora_agent.spec
@@ -3,7 +3,7 @@
 #
 %define name        pandorafms_agent_unix
 %define version     7.0NG.762
-%define release     220612
+%define release     220613
 
 Summary:            Pandora FMS Linux agent, PERL version
 Name:               %{name}
diff --git a/pandora_agents/unix/pandora_agent_installer b/pandora_agents/unix/pandora_agent_installer
index 13db328213..e1f22051f6 100755
--- a/pandora_agents/unix/pandora_agent_installer
+++ b/pandora_agents/unix/pandora_agent_installer
@@ -10,7 +10,7 @@
 # **********************************************************************
 
 PI_VERSION="7.0NG.762"
-PI_BUILD="220612"
+PI_BUILD="220613"
 OS_NAME=`uname -s`
 
 FORCE=0
diff --git a/pandora_agents/win32/installer/pandora.mpi b/pandora_agents/win32/installer/pandora.mpi
index 08f599e138..567e8751c9 100644
--- a/pandora_agents/win32/installer/pandora.mpi
+++ b/pandora_agents/win32/installer/pandora.mpi
@@ -186,7 +186,7 @@ UpgradeApplicationID
 {}
 
 Version
-{220612}
+{220613}
 
 ViewReadme
 {Yes}
diff --git a/pandora_agents/win32/pandora.cc b/pandora_agents/win32/pandora.cc
index 9aa6b3067b..28d4f93091 100644
--- a/pandora_agents/win32/pandora.cc
+++ b/pandora_agents/win32/pandora.cc
@@ -30,7 +30,7 @@ using namespace Pandora;
 using namespace Pandora_Strutils;
 
 #define PATH_SIZE    _MAX_PATH+1
-#define PANDORA_VERSION ("7.0NG.762 Build 220612")
+#define PANDORA_VERSION ("7.0NG.762 Build 220613")
 
 string pandora_path;
 string pandora_dir;
diff --git a/pandora_agents/win32/versioninfo.rc b/pandora_agents/win32/versioninfo.rc
index 25a919f262..c7990e794e 100644
--- a/pandora_agents/win32/versioninfo.rc
+++ b/pandora_agents/win32/versioninfo.rc
@@ -11,7 +11,7 @@ BEGIN
       VALUE "LegalCopyright", "Artica ST"
       VALUE "OriginalFilename", "PandoraAgent.exe"
       VALUE "ProductName", "Pandora FMS Windows Agent"
-      VALUE "ProductVersion", "(7.0NG.762(Build 220612))"
+      VALUE "ProductVersion", "(7.0NG.762(Build 220613))"
       VALUE "FileVersion", "1.0.0.0"
     END
   END
diff --git a/pandora_console/DEBIAN/control b/pandora_console/DEBIAN/control
index 19a301e8ad..df0a3dc5c1 100644
--- a/pandora_console/DEBIAN/control
+++ b/pandora_console/DEBIAN/control
@@ -1,5 +1,5 @@
 package: pandorafms-console
-Version: 7.0NG.762-220612
+Version: 7.0NG.762-220613
 Architecture: all
 Priority: optional
 Section: admin
diff --git a/pandora_console/DEBIAN/make_deb_package.sh b/pandora_console/DEBIAN/make_deb_package.sh
index 4ae5969467..9f71fde1d6 100644
--- a/pandora_console/DEBIAN/make_deb_package.sh
+++ b/pandora_console/DEBIAN/make_deb_package.sh
@@ -14,7 +14,7 @@
 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 # GNU General Public License for more details.
 
-pandora_version="7.0NG.762-220612"
+pandora_version="7.0NG.762-220613"
 
 package_pear=0
 package_pandora=1
diff --git a/pandora_console/include/config_process.php b/pandora_console/include/config_process.php
index 1195ce6eb0..21197bb7aa 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 = 'PC220612';
+$build_version = 'PC220613';
 $pandora_version = 'v7.0NG.762';
 
 // Do not overwrite default timezone set if defined.
diff --git a/pandora_console/install.php b/pandora_console/install.php
index d4ea215136..47a6e72997 100644
--- a/pandora_console/install.php
+++ b/pandora_console/install.php
@@ -129,7 +129,7 @@
         <div style='height: 10px'>
             <?php
             $version = '7.0NG.762';
-            $build = '220612';
+            $build = '220613';
             $banner = "v$version Build $build";
 
             error_reporting(0);
diff --git a/pandora_console/pandora_console.redhat.spec b/pandora_console/pandora_console.redhat.spec
index 7719b13180..5d3d25f936 100644
--- a/pandora_console/pandora_console.redhat.spec
+++ b/pandora_console/pandora_console.redhat.spec
@@ -3,7 +3,7 @@
 #
 %define name        pandorafms_console
 %define version     7.0NG.762
-%define release     220612
+%define release     220613
 
 # User and Group under which Apache is running
 %define httpd_name  httpd
diff --git a/pandora_console/pandora_console.rhel7.spec b/pandora_console/pandora_console.rhel7.spec
index 4f68b25a70..de2d2be11e 100644
--- a/pandora_console/pandora_console.rhel7.spec
+++ b/pandora_console/pandora_console.rhel7.spec
@@ -3,7 +3,7 @@
 #
 %define name        pandorafms_console
 %define version     7.0NG.762
-%define release     220612
+%define release     220613
 
 # User and Group under which Apache is running
 %define httpd_name  httpd
diff --git a/pandora_console/pandora_console.spec b/pandora_console/pandora_console.spec
index 3cbe6c54cd..a864c32583 100644
--- a/pandora_console/pandora_console.spec
+++ b/pandora_console/pandora_console.spec
@@ -3,7 +3,7 @@
 #
 %define name        pandorafms_console
 %define version     7.0NG.762
-%define release     220612
+%define release     220613
 %define httpd_name      httpd
 # User and Group under which Apache is running
 %define httpd_name  apache2
diff --git a/pandora_server/DEBIAN/control b/pandora_server/DEBIAN/control
index 919a3ddc4b..aa9e8a47ec 100644
--- a/pandora_server/DEBIAN/control
+++ b/pandora_server/DEBIAN/control
@@ -1,5 +1,5 @@
 package: pandorafms-server
-Version: 7.0NG.762-220612
+Version: 7.0NG.762-220613
 Architecture: all
 Priority: optional
 Section: admin
diff --git a/pandora_server/DEBIAN/make_deb_package.sh b/pandora_server/DEBIAN/make_deb_package.sh
index b95f43dda9..27de524149 100644
--- a/pandora_server/DEBIAN/make_deb_package.sh
+++ b/pandora_server/DEBIAN/make_deb_package.sh
@@ -14,7 +14,7 @@
 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 # GNU General Public License for more details.
 
-pandora_version="7.0NG.762-220612"
+pandora_version="7.0NG.762-220613"
 
 package_cpan=0
 package_pandora=1
diff --git a/pandora_server/lib/PandoraFMS/Config.pm b/pandora_server/lib/PandoraFMS/Config.pm
index d09eb99b8d..57ea747870 100644
--- a/pandora_server/lib/PandoraFMS/Config.pm
+++ b/pandora_server/lib/PandoraFMS/Config.pm
@@ -46,7 +46,7 @@ our @EXPORT = qw(
 
 # version: Defines actual version of Pandora Server for this module only
 my $pandora_version = "7.0NG.762";
-my $pandora_build = "220612";
+my $pandora_build = "220613";
 our $VERSION = $pandora_version." ".$pandora_build;
 
 # Setup hash
diff --git a/pandora_server/lib/PandoraFMS/PluginTools.pm b/pandora_server/lib/PandoraFMS/PluginTools.pm
index 75ae72ce0e..0d6be46a1d 100644
--- a/pandora_server/lib/PandoraFMS/PluginTools.pm
+++ b/pandora_server/lib/PandoraFMS/PluginTools.pm
@@ -34,7 +34,7 @@ our @ISA = qw(Exporter);
 
 # version: Defines actual version of Pandora Server for this module only
 my $pandora_version = "7.0NG.762";
-my $pandora_build = "220612";
+my $pandora_build = "220613";
 our $VERSION = $pandora_version." ".$pandora_build;
 
 our %EXPORT_TAGS = ( 'all' => [ qw() ] );
diff --git a/pandora_server/pandora_server.redhat.spec b/pandora_server/pandora_server.redhat.spec
index b7b088b70f..820393a670 100644
--- a/pandora_server/pandora_server.redhat.spec
+++ b/pandora_server/pandora_server.redhat.spec
@@ -3,7 +3,7 @@
 #
 %define name        pandorafms_server
 %define version     7.0NG.762
-%define release     220612
+%define release     220613
 
 Summary:            Pandora FMS Server
 Name:               %{name}
diff --git a/pandora_server/pandora_server.spec b/pandora_server/pandora_server.spec
index 5c5e039465..c929b470fa 100644
--- a/pandora_server/pandora_server.spec
+++ b/pandora_server/pandora_server.spec
@@ -3,7 +3,7 @@
 #
 %define name        pandorafms_server
 %define version     7.0NG.762
-%define release     220612
+%define release     220613
 
 Summary:            Pandora FMS Server
 Name:               %{name}
diff --git a/pandora_server/pandora_server_installer b/pandora_server/pandora_server_installer
index e9e2489314..d9d76e8c91 100755
--- a/pandora_server/pandora_server_installer
+++ b/pandora_server/pandora_server_installer
@@ -9,7 +9,7 @@
 # **********************************************************************
 
 PI_VERSION="7.0NG.762"
-PI_BUILD="220612"
+PI_BUILD="220613"
 
 MODE=$1
 if [ $# -gt 1 ]; then
diff --git a/pandora_server/util/pandora_db.pl b/pandora_server/util/pandora_db.pl
index fd5966a22b..185ecd2b86 100755
--- a/pandora_server/util/pandora_db.pl
+++ b/pandora_server/util/pandora_db.pl
@@ -35,7 +35,7 @@ use PandoraFMS::Config;
 use PandoraFMS::DB;
 
 # version: define current version
-my $version = "7.0NG.762 Build 220612";
+my $version = "7.0NG.762 Build 220613";
 
 # Pandora server configuration
 my %conf;
diff --git a/pandora_server/util/pandora_manage.pl b/pandora_server/util/pandora_manage.pl
index ca50006a36..59a75bb3a8 100755
--- a/pandora_server/util/pandora_manage.pl
+++ b/pandora_server/util/pandora_manage.pl
@@ -36,7 +36,7 @@ use Encode::Locale;
 Encode::Locale::decode_argv;
 
 # version: define current version
-my $version = "7.0NG.762 Build 220612";
+my $version = "7.0NG.762 Build 220613";
 
 # save program name for logging
 my $progname = basename($0);

From 2568c877a2cfb48ecaff59ae9333d2e3b55f95d7 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Jos=C3=A9=20Gonz=C3=A1lez?= <jose.gonzalez@pandorafms.com>
Date: Mon, 13 Jun 2022 12:31:33 +0200
Subject: [PATCH 109/138] Clear unnecessary CSS file

---
 .../resources/styles/pandora.css              | 317 ------------------
 .../update_manager_client/views/offline.php   |   1 -
 .../update_manager_client/views/online.php    |   1 -
 3 files changed, 319 deletions(-)
 delete mode 100644 pandora_console/update_manager_client/resources/styles/pandora.css

diff --git a/pandora_console/update_manager_client/resources/styles/pandora.css b/pandora_console/update_manager_client/resources/styles/pandora.css
deleted file mode 100644
index 537f28c823..0000000000
--- a/pandora_console/update_manager_client/resources/styles/pandora.css
+++ /dev/null
@@ -1,317 +0,0 @@
-.update_text p {
-  font-size: 11pt;
-}
-
-.update_text a {
-  font-size: 11pt;
-  color: #82b92e;
-}
-
-.update_manager_warning p {
-  font-size: 10pt;
-}
-
-.ui-widget-content,
-.ui-widget-content p {
-  font-size: 12pt;
-}
-.fileupload_form {
-  background-color: #373a3d;
-  background-image: -moz-linear-gradient(center, #373a3d, #313437);
-  border-radius: 3px;
-  margin: 0px;
-  padding: 30px;
-}
-#drop_file {
-  background-color: #e6e6e6;
-  border: 20px solid rgba(0, 0, 0, 0);
-  border-radius: 3px;
-  color: #707070;
-  font-size: 16px;
-  font-weight: bold;
-  margin-bottom: 30px;
-  padding: 40px 50px;
-  text-align: center;
-  text-transform: uppercase;
-}
-#drop_file table {
-  vertical-align: middle;
-}
-#drop_file table td,
-#drop_file table label {
-  color: #707070;
-  font-size: 16px;
-  font-weight: bold;
-  margin-top: 0;
-  vertical-align: middle;
-}
-#drop_file table select {
-  float: none;
-}
-#drop_file a {
-  background-color: #82b92e;
-  border-radius: 2px;
-  color: #ffffff;
-  cursor: pointer;
-  display: inline-block;
-  font-size: 14px;
-  line-height: 1;
-  padding: 12px 26px;
-}
-#drop_file a:hover {
-  background-color: #a6ce67;
-  text-decoration: none;
-}
-#drop_file input {
-  display: none;
-}
-
-.fileupload_form ul {
-  border-bottom: 1px solid #3d4043;
-  border-top: 1px solid #2b2e31;
-  list-style: none outside none;
-  margin: 0 -30px;
-  padding: 0;
-}
-.fileupload_form ul li {
-  background-color: #333639;
-  background-image: -moz-linear-gradient(center, #333639, #303335);
-  border-bottom: 1px solid #2b2e31;
-  border-top: 1px solid #3d4043;
-  padding: 15px;
-  position: relative;
-}
-.fileupload_form ul li #input-progress {
-  left: 68px;
-  position: absolute;
-}
-.fileupload_form ul li p {
-  color: #eeeeee;
-  font-size: 12px;
-  font-weight: bold;
-  left: 95px;
-  overflow: hidden;
-  position: absolute;
-  top: 12px;
-  white-space: nowrap;
-}
-.fileupload_form ul li i {
-  color: #7f7f7f;
-  display: block;
-  font-style: normal;
-  font-weight: normal;
-}
-.fileupload_form ul li canvas {
-  left: 13px;
-  position: absolute;
-  top: 15px;
-}
-.fileupload_form ul li span {
-  background: url("../images/check-cross.png") no-repeat scroll 0 0
-    rgba(0, 0, 0, 0);
-  cursor: pointer;
-  height: 12px;
-  position: absolute;
-  right: 13px;
-  top: 34px;
-  width: 15px;
-}
-.fileupload_form ul li div {
-  display: block !important;
-}
-.fileupload_form ul li.working span {
-  background-position: 0 -12px;
-  height: 16px;
-}
-.fileupload_form ul li.loading span {
-  background: url("../images/spinner.gif") no-repeat scroll 0 0 rgba(0, 0, 0, 0);
-  height: 16px;
-}
-.fileupload_form ul li.suc span {
-  background: url("../images/check-cross.png") no-repeat scroll 0 0
-    rgba(0, 0, 0, 0);
-  height: 12px;
-}
-.fileupload_form ul li.suc p {
-  color: #5a8629;
-}
-.fileupload_form ul li.error span {
-  background: url("../images/check-cross.png") no-repeat scroll 0 -12px rgba(0, 0, 0, 0);
-  height: 16px;
-}
-.fileupload_form ul li.error p {
-  color: #ff3333;
-}
-
-#log_zone {
-  background-color: #e6e6e6;
-  border: 20px solid rgba(0, 0, 0, 0);
-  border-radius: 3px;
-  color: #707070;
-  font-size: 12px;
-  margin-bottom: 30px;
-  padding: 10px;
-  text-align: left;
-}
-
-#box_online {
-  background-image: url("../images/update_manager_background.jpg");
-  background-position: top right;
-  background-repeat: no-repeat;
-  background-color: #fff;
-  padding: 40px 50px;
-  border: 1px solid #f3f3f3;
-  border-radius: 5px;
-  min-height: 400px;
-  background-size: contain;
-}
-
-div#box_online * {
-  font-size: 14pt;
-}
-
-#box_online .content {
-  max-width: 50%;
-}
-
-.update_popup {
-  display: flex;
-  justify-content: space-between;
-  align-items: center;
-  padding-left: 10px;
-  padding-right: 10px;
-}
-
-.update_icon {
-  padding-left: 20px;
-}
-
-.update_text h3 {
-  font-weight: bold;
-  font-size: 12pt;
-}
-
-.ui-dialog .ui-dialog-buttonpane .ui-dialog-buttonset {
-  float: left;
-  padding-left: 19px;
-  padding-bottom: 5px;
-}
-
-a.update_manager_button {
-  padding: 10px 12px;
-  margin-top: 10px;
-  display: inline-flex;
-  align-items: center;
-  font-size: 16px;
-  border-radius: 4px;
-  text-decoration: none;
-}
-
-a.update_manager_button:after {
-  content: url(../images/update_manager_button.png);
-  padding-left: 10px;
-}
-
-.progressbar {
-  margin-top: 15px;
-}
-
-.ui-draggable,
-.ui-draggable .ui-dialog-titlebar {
-  cursor: default;
-}
-
-#box_online #pkg_version {
-  color: #82b92e;
-  font-size: 6em;
-  font-weight: bold;
-  margin: 30px 0 !important;
-}
-
-/* METACONSOLE */
-.box_online_meta {
-  background: none;
-  min-height: 400px;
-  text-align: center;
-  border: none;
-}
-
-div#box_online.box_online_meta * {
-  font-size: 14pt;
-}
-
-#box_online.box_online_meta .content {
-  max-width: 100%;
-}
-
-#box_online.box_online_meta #pkg_version {
-  font-size: 60pt;
-}
-
-/* COMMUNITY */
-.update_manager_open {
-  max-width: 50%;
-  font-size: 10pt;
-  margin-top: 40px;
-  padding: 20px;
-  border: 1px solid #eaeaea;
-  border-radius: 5px;
-}
-
-.update_manager_warning {
-  display: flex;
-  align-items: center;
-  margin-bottom: 10px;
-}
-
-.update_manager_warning img {
-  padding-right: 20px;
-  width: 90px;
-}
-
-a.update_manager_button_open {
-  padding: 5px 10px;
-  font-size: 16px;
-  text-decoration: none;
-  border: 1px solid #82b92e;
-  color: #82b92e;
-  border-radius: 2px;
-}
-
-a.update_manager_button_open:hover {
-  color: #fff;
-  background-color: #82b92e;
-}
-
-#um-update-details-header {
-  background-image: url(../images/pandora_logo.png);
-}
-
-.um-progress-bar {
-  background-color: #8bb92e !important;
-}
-
-.um-error {
-  color: #e63c52;
-}
-
-.um-success {
-  color: #8bb92e;
-}
-
-.dz-success-mark svg {
-  background: #8bb92e;
-  border-radius: 50%;
-}
-
-.newsletter_div {
-  font-size: 12pt;
-  margin: 5px 20px;
-  float: left;
-  padding-top: 23px;
-}
-.register_update_manager {
-  margin: 5px 0 10px;
-  float: left;
-  padding-left: 15px;
-}
diff --git a/pandora_console/update_manager_client/views/offline.php b/pandora_console/update_manager_client/views/offline.php
index 0278491228..ae64d92fde 100644
--- a/pandora_console/update_manager_client/views/offline.php
+++ b/pandora_console/update_manager_client/views/offline.php
@@ -45,7 +45,6 @@
     <script src="<?php $asset('resources/javascript/jquery.iframe-transport.js'); ?>" type="text/javascript"></script>
     <script src="<?php $asset('resources/javascript/jquery.knob.js'); ?>" type="text/javascript"></script>
     <link rel="stylesheet" href="<?php $asset('resources/styles/um.css'); ?>">
-    <link rel="stylesheet" href="<?php $asset('resources/styles/pandora.css'); ?>">
 </head>
 
 <div id="box_offline">
diff --git a/pandora_console/update_manager_client/views/online.php b/pandora_console/update_manager_client/views/online.php
index d58ad825aa..2ba4787dd4 100644
--- a/pandora_console/update_manager_client/views/online.php
+++ b/pandora_console/update_manager_client/views/online.php
@@ -31,7 +31,6 @@
 ?>
 <head>
     <link rel="stylesheet" href="<?php $asset('resources/styles/um.css'); ?>">
-    <link rel="stylesheet" href="<?php $asset('resources/styles/pandora.css'); ?>">
     <script src="<?php $asset('resources/javascript/umc.js'); ?>" type="text/javascript"></script>
 </head>
 

From 5539ca51c52f0c49a3b71b2f823cf910b5af1d8e Mon Sep 17 00:00:00 2001
From: "alejandro.campos@artica.es" <alejandro.campos@artica.es>
Date: Mon, 13 Jun 2022 12:32:04 +0200
Subject: [PATCH 110/138] minor change

---
 .../godmode/update_manager/update_manager.php | 39 ++++++++++++++++---
 1 file changed, 34 insertions(+), 5 deletions(-)

diff --git a/pandora_console/godmode/update_manager/update_manager.php b/pandora_console/godmode/update_manager/update_manager.php
index 991491843a..80a81f8ecb 100644
--- a/pandora_console/godmode/update_manager/update_manager.php
+++ b/pandora_console/godmode/update_manager/update_manager.php
@@ -107,11 +107,40 @@ switch ($tab) {
 
     case 'online':
     default:
-        if ($config['node_metaconsole'] === 0) {
-            $mode = \UpdateManager\UI\Manager::MODE_ONLINE;
-            include $config['homedir'].'/godmode/um_client/index.php';
-        } else {
-            ui_print_warning_message(__('Please register on metaconsole.'));
+        if (is_metaconsole() === false && has_metaconsole() === true) {
+            $meta_puid = null;
+
+            $server_id = $config['metaconsole_node_id'];
+            $dbh = (object) $config['dbconnection'];
+
+            // Connect to metaconsole.
+            $result_code = metaconsole_load_external_db(
+                [
+                    'dbhost' => $config['replication_dbhost'],
+                    'dbuser' => $config['replication_dbuser'],
+                    'dbpass' => io_output_password($config['replication_dbpass']),
+                    'dbname' => $config['replication_dbname'],
+                ]
+            );
+
+            if ($result_code < 0) {
+                break;
+            }
+
+            $value = db_get_value('value', 'tconfig', 'token', 'pandora_uid');
+
+            $meta_puid = $value;
+
+            // Return connection to node.
+            metaconsole_restore_db();
+
+            if ($meta_puid === false || $meta_puid === null) {
+                ui_print_warning_message(__('Please register on metaconsole first.'));
+                break;
+            }
         }
+
+        $mode = \UpdateManager\UI\Manager::MODE_ONLINE;
+        include $config['homedir'].'/godmode/um_client/index.php';
     break;
 }

From b5de60fb691c5dbce8e868674f5d6abcc831e165 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Jos=C3=A9=20Gonz=C3=A1lez?= <jose.gonzalez@pandorafms.com>
Date: Mon, 13 Jun 2022 12:33:03 +0200
Subject: [PATCH 111/138] Update manager to Warp manager

---
 pandora_console/extras/delete_files/delete_files.txt | 1 +
 1 file changed, 1 insertion(+)

diff --git a/pandora_console/extras/delete_files/delete_files.txt b/pandora_console/extras/delete_files/delete_files.txt
index fe13fd3149..73284cb169 100644
--- a/pandora_console/extras/delete_files/delete_files.txt
+++ b/pandora_console/extras/delete_files/delete_files.txt
@@ -1665,3 +1665,4 @@ godmode/um_client/vendor/sebastian/object-enumerator/tests
 godmode/um_client/vendor/sebastian/object-enumerator
 godmode/um_client/vendor/sebastian
 godmode/um_client/vendor
+/update_manager_client/resources/styles/pandora.css
\ No newline at end of file

From 8e4cffbc0a426e9d6ee901c77bf0a080abe20bfe Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Jos=C3=A9=20Gonz=C3=A1lez?= <jose.gonzalez@pandorafms.com>
Date: Mon, 13 Jun 2022 12:34:16 +0200
Subject: [PATCH 112/138] Several style refactory

---
 pandora_console/include/styles/register.css   |   4 +-
 .../resources/javascript/umc.js               |   6 +-
 .../resources/styles/um.css                   | 325 +++++++++++++++++-
 .../update_manager_client/views/register.php  |  20 +-
 4 files changed, 339 insertions(+), 16 deletions(-)

diff --git a/pandora_console/include/styles/register.css b/pandora_console/include/styles/register.css
index b1d8068ef3..77d56dbc85 100644
--- a/pandora_console/include/styles/register.css
+++ b/pandora_console/include/styles/register.css
@@ -29,7 +29,7 @@ input[type="button"].submit-next {
   background: #fff;
   padding: 5px;
   font-size: 1.3em;
-  margin: 0.5em 1em 0.5em 0;
+  margin: 0.5em 0em;
   cursor: pointer;
   text-align: center;
   height: 30px;
@@ -71,7 +71,7 @@ div.submit_buttons_container {
   position: relative;
   margin: 10px auto 0px;
   bottom: 0px;
-  width: 90%;
+  width: 95%;
   clear: both;
   height: 4em;
 }
diff --git a/pandora_console/update_manager_client/resources/javascript/umc.js b/pandora_console/update_manager_client/resources/javascript/umc.js
index 659a240c61..af5832daba 100644
--- a/pandora_console/update_manager_client/resources/javascript/umc.js
+++ b/pandora_console/update_manager_client/resources/javascript/umc.js
@@ -460,7 +460,9 @@ function umShowUpdateDetails(update) {
   var um_update_details = document.getElementById("um-update-details");
   var header = document.getElementById("um-update-details-header");
   var content = document.getElementById("um-update-details-content");
-
+  var detailTitle = document
+    .getElementsByClassName("um-package-details")
+    .item(0).innerText;
   header.innerText = texts.updateText + " " + updates[update].version;
   content.innerText = updates[update].description;
 
@@ -468,7 +470,7 @@ function umShowUpdateDetails(update) {
     um_update_details.style.display = "block";
     if (typeof $ == "function") {
       $("#um-update-details").dialog({
-        title: update,
+        title: detailTitle,
         width: 800,
         height: 600
       });
diff --git a/pandora_console/update_manager_client/resources/styles/um.css b/pandora_console/update_manager_client/resources/styles/um.css
index 1f469512ef..d0208bd468 100644
--- a/pandora_console/update_manager_client/resources/styles/um.css
+++ b/pandora_console/update_manager_client/resources/styles/um.css
@@ -9,6 +9,58 @@
   margin: 5% auto;
   padding: 2em;
 }
+a.update_manager_button {
+  padding: 10px 12px;
+  margin-top: 10px;
+  display: inline-flex;
+  align-items: center;
+  font-size: 16px;
+  border-radius: 4px;
+  text-decoration: none;
+}
+
+a.update_manager_button:after {
+  content: url(../images/update_manager_button.png);
+  padding-left: 10px;
+}
+
+.progressbar {
+  margin-top: 15px;
+}
+
+#log_zone {
+  background-color: #e6e6e6;
+  border: 20px solid rgba(0, 0, 0, 0);
+  border-radius: 3px;
+  color: #707070;
+  font-size: 12px;
+  margin-bottom: 30px;
+  padding: 10px;
+  text-align: left;
+}
+
+#box_online {
+  background-image: url("../images/update_manager_background.jpg");
+  background-position: top right;
+  background-repeat: no-repeat;
+  background-color: #fff;
+  padding: 40px 50px;
+  border: 1px solid #f3f3f3;
+  border-radius: 5px;
+  min-height: 400px;
+  background-size: contain;
+}
+
+#box_online #pkg_version {
+  color: #82b92e;
+  font-size: 6em;
+  font-weight: bold;
+  margin: 30px 0 !important;
+}
+
+.update_manager_warning p {
+  font-size: 10pt;
+}
 #update-list {
   max-height: 0;
   overflow: hidden;
@@ -16,6 +68,31 @@
   flex-direction: column;
   transition: max-height 0.15s ease-in-out;
 }
+.update_popup {
+  display: flex;
+  justify-content: space-between;
+  align-items: center;
+  padding-left: 10px;
+  padding-right: 10px;
+}
+
+.update_icon {
+  padding-left: 20px;
+}
+
+.update_text h3 {
+  font-weight: bold;
+  font-size: 12pt;
+}
+
+.update_text p {
+  font-size: 11pt;
+}
+
+.update_text a {
+  font-size: 11pt;
+  color: #82b92e;
+}
 
 .update {
   display: flex;
@@ -23,7 +100,155 @@
   justify-content: space-around;
   align-items: center;
 }
+#drop_file {
+  background-color: #e6e6e6;
+  border: 20px solid rgba(0, 0, 0, 0);
+  border-radius: 3px;
+  color: #707070;
+  font-size: 16px;
+  font-weight: bold;
+  margin-bottom: 30px;
+  padding: 40px 50px;
+  text-align: center;
+  text-transform: uppercase;
+}
 
+#drop_file table {
+  vertical-align: middle;
+}
+
+#drop_file table td,
+#drop_file table label {
+  color: #707070;
+  font-size: 16px;
+  font-weight: bold;
+  margin-top: 0;
+  vertical-align: middle;
+}
+
+#drop_file table select {
+  float: none;
+}
+
+#drop_file a {
+  background-color: #82b92e;
+  border-radius: 2px;
+  color: #ffffff;
+  cursor: pointer;
+  display: inline-block;
+  font-size: 14px;
+  line-height: 1;
+  padding: 12px 26px;
+}
+
+#drop_file a:hover {
+  background-color: #a6ce67;
+  text-decoration: none;
+}
+
+#drop_file input {
+  display: none;
+}
+
+/* Offline form */
+.fileupload_form {
+  background-color: #373a3d;
+  background-image: -moz-linear-gradient(center, #373a3d, #313437);
+  border-radius: 3px;
+  margin: 0px;
+  padding: 30px;
+}
+
+.fileupload_form ul {
+  border-bottom: 1px solid #3d4043;
+  border-top: 1px solid #2b2e31;
+  list-style: none outside none;
+  margin: 0 -30px;
+  padding: 0;
+}
+
+.fileupload_form ul li {
+  background-color: #333639;
+  background-image: -moz-linear-gradient(center, #333639, #303335);
+  border-bottom: 1px solid #2b2e31;
+  border-top: 1px solid #3d4043;
+  padding: 15px;
+  position: relative;
+}
+
+.fileupload_form ul li #input-progress {
+  left: 68px;
+  position: absolute;
+}
+
+.fileupload_form ul li p {
+  color: #eeeeee;
+  font-size: 12px;
+  font-weight: bold;
+  left: 95px;
+  overflow: hidden;
+  position: absolute;
+  top: 12px;
+  white-space: nowrap;
+}
+
+.fileupload_form ul li i {
+  color: #7f7f7f;
+  display: block;
+  font-style: normal;
+  font-weight: normal;
+}
+
+.fileupload_form ul li canvas {
+  left: 13px;
+  position: absolute;
+  top: 15px;
+}
+
+.fileupload_form ul li span {
+  background: url("../images/check-cross.png") no-repeat scroll 0 0
+    rgba(0, 0, 0, 0);
+  cursor: pointer;
+  height: 12px;
+  position: absolute;
+  right: 13px;
+  top: 34px;
+  width: 15px;
+}
+
+.fileupload_form ul li div {
+  display: block !important;
+}
+
+.fileupload_form ul li.working span {
+  background-position: 0 -12px;
+  height: 16px;
+}
+
+.fileupload_form ul li.loading span {
+  background: url("../images/spinner.gif") no-repeat scroll 0 0 rgba(0, 0, 0, 0);
+  height: 16px;
+}
+
+.fileupload_form ul li.suc span {
+  background: url("../images/check-cross.png") no-repeat scroll 0 0
+    rgba(0, 0, 0, 0);
+  height: 12px;
+}
+
+.fileupload_form ul li.suc p {
+  color: #5a8629;
+}
+
+.fileupload_form ul li.error span {
+  background: url("../images/check-cross.png") no-repeat scroll 0 -12px rgba(0, 0, 0, 0);
+  height: 16px;
+}
+
+.fileupload_form ul li.error p {
+  top: 18px;
+  color: #ff3333;
+}
 #um-loading {
   background-image: url(../images/spinner.gif);
   height: 1em;
@@ -64,7 +289,7 @@
 }
 
 #um-update-details * {
-  font-size: 16pt;
+  font-size: 10pt;
 }
 
 #um-update-details-header {
@@ -115,11 +340,17 @@
   background-color: #1f282b;
 }
 
+div#box_online * {
+  font-size: 14pt;
+}
+
+#box_online .content {
+  max-width: 50%;
+}
 #box_offline form {
   background-color: #373a3d;
   background-image: -moz-linear-gradient(top, #373a3d, #313437);
   border-radius: 3px;
-  font-family: "PT Sans Narrow", sans-serif;
   margin: 0px;
   padding: 30px;
 }
@@ -180,7 +411,9 @@ span.warning {
   justify-content: space-between;
 }
 .ui-dialog-content.ui-widget-content p {
+  font-size: 10pt;
   word-break: keep-all;
+  text-align: justify;
 }
 
 .license_text {
@@ -204,3 +437,91 @@ input.error {
 textarea#signature {
   margin-top: 1em;
 }
+a.update_manager_button_open:hover {
+  color: #fff;
+  background-color: #82b92e;
+}
+
+#um-update-details-header {
+  background-image: url(../images/pandora_logo.png);
+  font-size: 16pt;
+}
+
+.um-progress-bar {
+  background-color: #8bb92e !important;
+}
+
+.um-error {
+  color: #e63c52;
+}
+
+.um-success {
+  color: #8bb92e;
+}
+
+.dz-success-mark svg {
+  background: #8bb92e;
+  border-radius: 50%;
+}
+
+.newsletter_div {
+  margin: 5px 20px;
+  float: left;
+  padding-top: 23px;
+}
+
+.register_update_manager {
+  margin: 5px 0 10px;
+  float: left;
+  padding-left: 15px;
+}
+
+/* METACONSOLE */
+.box_online_meta {
+  background: none;
+  min-height: 400px;
+  text-align: center;
+  border: none;
+}
+
+div#box_online.box_online_meta * {
+  font-size: 14pt;
+}
+
+#box_online.box_online_meta .content {
+  max-width: 100%;
+}
+
+#box_online.box_online_meta #pkg_version {
+  font-size: 60pt;
+}
+
+/* COMMUNITY */
+.update_manager_open {
+  max-width: 50%;
+  font-size: 10pt;
+  margin-top: 40px;
+  padding: 20px;
+  border: 1px solid #eaeaea;
+  border-radius: 5px;
+}
+
+.update_manager_warning {
+  display: flex;
+  align-items: center;
+  margin-bottom: 10px;
+}
+
+.update_manager_warning img {
+  padding-right: 20px;
+  width: 90px;
+}
+
+a.update_manager_button_open {
+  padding: 5px 10px;
+  font-size: 16px;
+  text-decoration: none;
+  border: 1px solid #82b92e;
+  color: #82b92e;
+  border-radius: 2px;
+}
diff --git a/pandora_console/update_manager_client/views/register.php b/pandora_console/update_manager_client/views/register.php
index 89225432ad..b893479c23 100644
--- a/pandora_console/update_manager_client/views/register.php
+++ b/pandora_console/update_manager_client/views/register.php
@@ -41,7 +41,6 @@ $product_name = get_product_name(); ?>
     <script src="<?php $asset('resources/javascript/umc.js'); ?>" type="text/javascript"></script>
     <link rel="stylesheet" href="<?php $asset('resources/styles/jquery-ui.min.css'); ?>">
     <link rel="stylesheet" href="<?php $asset('resources/styles/um.css'); ?>">
-    <link rel="stylesheet" href="<?php $asset('resources/styles/pandora.css'); ?>">
 </head>
 
 <div id="registration_wizard" title="
@@ -51,12 +50,12 @@ $product_name = get_product_name(); ?>
         <?php echo html_print_image('images/pandora_circle_big.png', true); ?>
     </div>
 
-    <div class="newsletter_div">
-        <?php echo __('Keep this %s console up to date with latest updates.', $product_name); ?>
+    <div class="newsletter_div lato font_10pt">
+            <?php echo __('Keep this %s console up to date with latest updates.', $product_name); ?>
     </div>
 
     <div class="license_text both">
-        <p>
+        <p class="lato font_10pt">
             <?php
             echo __(
                 'When you subscribe to the Warp update service for %s, you accept that we
@@ -71,12 +70,12 @@ $product_name = get_product_name(); ?>
             ?>
         </p>
 
-        <p>
+        <p class="lato font_10pt">
             <?php echo __('Visit our privacy policy for more information'); ?>:
             <a href="https://pandorafms.com/privacy-policy/" target="_blank">https://pandorafms.com/privacy-policy/</a>
         </p>
 
-        <input id="registration-email" type="email" placeholder="<?php echo __('Your email'); ?>" />
+        <input id="registration-email" class="lato" type="email" placeholder="<?php echo __('Your email'); ?>" />
     </div>
 
     <div class="submit_buttons_container">
@@ -86,7 +85,8 @@ $product_name = get_product_name(); ?>
                 __('Cancel'),
                 'cancel_registration',
                 false,
-                'class="ui-widget ui-state-default ui-corner-all ui-button-text-only sub upd submit-cancel"',
+                'class="lato ui-widget
+            ui-state-default ui-corner-all ui-button-text-only sub upd submit-cancel"',
                 true
             );
             ?>
@@ -97,7 +97,7 @@ $product_name = get_product_name(); ?>
                 __('OK!'),
                 'register',
                 false,
-                'class="ui-widget
+                'class="lato ui-widget
             ui-state-default ui-corner-all ui-button-text-only sub ok submit-next w100px"',
                 true
             );
@@ -108,7 +108,7 @@ $product_name = get_product_name(); ?>
 
 <!-- Verification modal.. -->
 <div id="reg_ensure_cancel" title="Confirmation Required" class="invisible">
-    <div class="font_12_20">
+    <div class="lato font_10pt">
         <?php echo __('Are you sure you don\'t want to use Warp update?'); ?>
         <p>
             <?php
@@ -124,7 +124,7 @@ $product_name = get_product_name(); ?>
 
 <!-- Results modal. -->
 <div id="reg_result" title="Registration process result" class="invisible">
-    <div id="reg_result_content" class="font_12_20">
+    <div id="reg_result_content" class="lato font_10pt">
     </div>
 </div>
 

From dc599d2fe6e302c0f38a188edc3de394c9866d21 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Jos=C3=A9=20Gonz=C3=A1lez?= <jose.gonzalez@pandorafms.com>
Date: Mon, 13 Jun 2022 16:23:37 +0200
Subject: [PATCH 113/138] Handle header image with community and with black
 theme

---
 pandora_console/general/main_menu.php         |  64 +++++----------
 .../custom_logo/logo-black-pandorafms.png     | Bin 0 -> 14859 bytes
 .../custom_logo/logo-default-pandorafms.png   | Bin 0 -> 19534 bytes
 .../images/custom_logo/logo-pandorafms-1.png  | Bin 16310 -> 0 bytes
 pandora_console/include/constants.php         |   6 +-
 pandora_console/include/functions_config.php  |   4 +-
 pandora_console/include/functions_html.php    |  76 ++++++++++++++++++
 .../include/styles/pandora_black.css          |   3 +
 8 files changed, 104 insertions(+), 49 deletions(-)
 create mode 100644 pandora_console/images/custom_logo/logo-black-pandorafms.png
 create mode 100644 pandora_console/images/custom_logo/logo-default-pandorafms.png
 delete mode 100644 pandora_console/images/custom_logo/logo-pandorafms-1.png

diff --git a/pandora_console/general/main_menu.php b/pandora_console/general/main_menu.php
index f0b75c51a5..590dbe328a 100644
--- a/pandora_console/general/main_menu.php
+++ b/pandora_console/general/main_menu.php
@@ -26,6 +26,8 @@
  * ============================================================================
  */
 
+use function PHPSTORM_META\map;
+
 // Begin.
 if (isset($config['id_user']) === false) {
     include 'general/login_page.php';
@@ -57,52 +59,22 @@ if (isset($config['autohidden_menu']) === true && (bool) $config['autohidden_men
 // Start of full lateral menu.
 echo sprintf('<div id="menu_full" class="menu_full_%s">', $menuTypeClass);
 
-$custom_logo = 'images/custom_logo/'.$config['custom_logo'];
-$custom_logo_collapsed = 'images/custom_logo/'.$config['custom_logo_collapsed'];
-
-if (defined('PANDORA_ENTERPRISE') === false) {
-    $logo_title = get_product_name().' Opensource';
-    $custom_logo = 'images/custom_logo/pandora_logo_head_3.png';
-    $custom_logo_collapsed = 'images/custom_logo/pandora_logo_green_collapsed.png';
-} else {
-    if (file_exists(ENTERPRISE_DIR.'/'.$custom_logo) === true) {
-        $custom_logo = ENTERPRISE_DIR.'/'.$custom_logo;
-    }
-
-    $logo_title = get_product_name().' Enterprise';
-}
-
-echo '<div class="logo_green"><a href="index.php?sec=main">';
-
-if (isset($config['custom_logo']) === true) {
-    echo html_print_image(
-        $custom_logo,
-        true,
-        [
-            'border' => '0',
-            'width'  => '215',
-            'alt'    => $logo_title,
-            'class'  => 'logo_full',
-            'style'  => ($menuCollapsed === true) ? 'display:none' : 'display:block',
-        ]
-    );
-}
-
-if (isset($config['custom_logo_collapsed']) === true) {
-    echo html_print_image(
-        $custom_logo_collapsed,
-        true,
-        [
-            'border' => '0',
-            'width'  => '60',
-            'alt'    => $logo_title,
-            'class'  => 'logo_icon',
-            'style'  => ($menuCollapsed === true) ? 'display:block' : 'display:none',
-        ]
-    );
-}
-
-echo '</a></div>';
+// Header logo.
+html_print_div(
+    [
+        'class'   => 'logo_green',
+        'content' => html_print_anchor(
+            [
+                'href'    => ui_get_full_url('index.php'),
+                'content' => html_print_header_logo_image(
+                    $menuCollapsed,
+                    true
+                ),
+            ],
+            true
+        ),
+    ]
+);
 
 require 'operation/menu.php';
 require 'godmode/menu.php';
diff --git a/pandora_console/images/custom_logo/logo-black-pandorafms.png b/pandora_console/images/custom_logo/logo-black-pandorafms.png
new file mode 100644
index 0000000000000000000000000000000000000000..b1b909089ecbbca54039bd31df0e04e2b2d43460
GIT binary patch
literal 14859
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
Q!T^AdhQYN`HT1pz19kXDKL7v#

literal 0
HcmV?d00001

diff --git a/pandora_console/images/custom_logo/logo-default-pandorafms.png b/pandora_console/images/custom_logo/logo-default-pandorafms.png
new file mode 100644
index 0000000000000000000000000000000000000000..6a32836fd38565fba9f8694bd08ac28f7114044b
GIT binary patch
literal 19534
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

literal 0
HcmV?d00001

diff --git a/pandora_console/images/custom_logo/logo-pandorafms-1.png b/pandora_console/images/custom_logo/logo-pandorafms-1.png
deleted file mode 100644
index 172802af8b55f163314a6975531ebb60857052d5..0000000000000000000000000000000000000000
GIT binary patch
literal 0
HcmV?d00001

literal 16310
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
Hz3{&PyZF!y

diff --git a/pandora_console/include/constants.php b/pandora_console/include/constants.php
index e1d24ede9c..966fd3c201 100644
--- a/pandora_console/include/constants.php
+++ b/pandora_console/include/constants.php
@@ -294,7 +294,11 @@ define('SERVICE_ELEMENT_DYNAMIC', 'dynamic');
 define('SERVICE_MODE_MANUAL', 0);
 define('SERVICE_MODE_SMART', 1);
 
-
+// New installation Product Logo.
+define('HEADER_LOGO_DEFAULT_CLASSIC', 'logo-default-pandorafms.png');
+define('HEADER_LOGO_DEFAULT_COLLAPSED', 'logo-default-pandorafms-collapsed.png');
+define('HEADER_LOGO_BLACK_CLASSIC', 'logo-black-pandorafms.png');
+define('HEADER_LOGO_BLACK_COLLAPSED', 'logo-default-pandorafms-collapsed.png');
 
 // Status images.
 // For modules.
diff --git a/pandora_console/include/functions_config.php b/pandora_console/include/functions_config.php
index 52d72063aa..caa86cc716 100644
--- a/pandora_console/include/functions_config.php
+++ b/pandora_console/include/functions_config.php
@@ -2358,11 +2358,11 @@ function config_process_config()
     }
 
     if (isset($config['custom_logo']) === false) {
-        config_update_value('custom_logo', 'logo-pandorafms-1.png');
+        config_update_value('custom_logo', HEADER_LOGO_DEFAULT_CLASSIC);
     }
 
     if (isset($config['custom_logo_collapsed']) === false) {
-        config_update_value('custom_logo_collapsed', 'logo-pandorafms-1-collapsed.png');
+        config_update_value('custom_logo_collapsed', HEADER_LOGO_DEFAULT_COLLAPSED);
     }
 
     if (is_metaconsole()) {
diff --git a/pandora_console/include/functions_html.php b/pandora_console/include/functions_html.php
index 10539fae91..a02d140290 100644
--- a/pandora_console/include/functions_html.php
+++ b/pandora_console/include/functions_html.php
@@ -4237,6 +4237,82 @@ function html_print_image(
 }
 
 
+/**
+ * Function for print the logo in menu header.
+ *
+ * @param boolean $menuCollapsed If true, the menu is collapsed.
+ * @param boolean $return        If true, the formed element is returned.
+ *
+ * @return mixed.
+ */
+function html_print_header_logo_image(bool $menuCollapsed, bool $return=false)
+{
+    global $config;
+
+    if (defined('PANDORA_ENTERPRISE') === false) {
+        if ($config['style'] === 'pandora_black') {
+            $custom_logo = 'images/custom_logo/'.HEADER_LOGO_BLACK_CLASSIC;
+            $custom_logo_collapsed = 'images/custom_logo/'.HEADER_LOGO_DEFAULT_COLLAPSED;
+        } else if ($config['style'] === 'pandora') {
+            $custom_logo = 'images/custom_logo/'.HEADER_LOGO_DEFAULT_CLASSIC;
+            $custom_logo_collapsed = 'images/custom_logo/'.HEADER_LOGO_DEFAULT_COLLAPSED;
+        }
+
+        $logo_title = get_product_name().' Opensource';
+    } else {
+        // Handle default logos when change theme.
+        if ($config['style'] === 'pandora_black' && $config['custom_logo'] === HEADER_LOGO_DEFAULT_CLASSIC) {
+            $config['custom_logo'] = HEADER_LOGO_BLACK_CLASSIC;
+        } else if ($config['style'] === 'pandora' && $config['custom_logo'] === HEADER_LOGO_BLACK_CLASSIC) {
+            $config['custom_logo'] = HEADER_LOGO_DEFAULT_CLASSIC;
+        }
+
+        $logo_title = get_product_name().' Enterprise';
+        $custom_logo = 'images/custom_logo/'.$config['custom_logo'];
+
+        $custom_logo_collapsed = 'images/custom_logo/'.$config['custom_logo_collapsed'];
+
+        if (file_exists(ENTERPRISE_DIR.'/'.$custom_logo) === true) {
+            $custom_logo = ENTERPRISE_DIR.'/'.$custom_logo;
+        }
+    }
+
+    if (isset($config['custom_logo']) === true) {
+        $output = html_print_image(
+            $custom_logo,
+            true,
+            [
+                'border' => '0',
+                'width'  => '215',
+                'alt'    => $logo_title,
+                'class'  => 'logo_full',
+                'style'  => ($menuCollapsed === true) ? 'display:none' : 'display:block',
+            ]
+        );
+    }
+
+    if (isset($config['custom_logo_collapsed']) === true) {
+        $output .= html_print_image(
+            $custom_logo_collapsed,
+            true,
+            [
+                'border' => '0',
+                'width'  => '60',
+                'alt'    => $logo_title,
+                'class'  => 'logo_icon',
+                'style'  => ($menuCollapsed === true) ? 'display:block' : 'display:none',
+            ]
+        );
+    }
+
+    if ($return === false) {
+        echo $output;
+    } else {
+        return $output;
+    }
+}
+
+
 /**
  * Render an input text element. Extended version, use html_print_input_text() to simplify.
  *
diff --git a/pandora_console/include/styles/pandora_black.css b/pandora_console/include/styles/pandora_black.css
index 3db3587bef..ac500a35a9 100644
--- a/pandora_console/include/styles/pandora_black.css
+++ b/pandora_console/include/styles/pandora_black.css
@@ -65,6 +65,9 @@ table.agent_info_table tr {
   color: #fff !important;
 }
 
+.logo_green {
+  background-color: #000;
+}
 #um-next:hover,
 #um-last:hover {
   border: 1px solid #888 !important;

From 38c207227cb855f0d88038dc087cb6a6993cacd1 Mon Sep 17 00:00:00 2001
From: Rafael Ameijeiras <rafael.ameijeiras@artica.es>
Date: Mon, 13 Jun 2022 17:41:49 +0200
Subject: [PATCH 114/138] ent-8673-13219-r-works-instalador-de-tentacle_server

---
 tentacle/.gitignore                    |    4 +
 tentacle/Makefile.PL                   |   22 +
 tentacle/NetBSD/tentacle_server        | 1869 ++++++++++++++++++++++++
 tentacle/build_tentacle_server.sh      |   26 +
 tentacle/conf/tentacle_server.conf.new |   75 +
 tentacle/man/man1/tentacle_server.1.gz |  Bin 0 -> 1309 bytes
 tentacle/tentacle_server_installer     |  438 ++++++
 tentacle/util/tentacle_serverd         |  185 +++
 tentacle/util/tentacle_serverd.service |   14 +
 9 files changed, 2633 insertions(+)
 create mode 100644 tentacle/.gitignore
 create mode 100644 tentacle/Makefile.PL
 create mode 100755 tentacle/NetBSD/tentacle_server
 create mode 100755 tentacle/build_tentacle_server.sh
 create mode 100644 tentacle/conf/tentacle_server.conf.new
 create mode 100644 tentacle/man/man1/tentacle_server.1.gz
 create mode 100755 tentacle/tentacle_server_installer
 create mode 100755 tentacle/util/tentacle_serverd
 create mode 100644 tentacle/util/tentacle_serverd.service

diff --git a/tentacle/.gitignore b/tentacle/.gitignore
new file mode 100644
index 0000000000..c39a713dcc
--- /dev/null
+++ b/tentacle/.gitignore
@@ -0,0 +1,4 @@
+dist/
+blib/
+Makefile
+pm_to_blib
\ No newline at end of file
diff --git a/tentacle/Makefile.PL b/tentacle/Makefile.PL
new file mode 100644
index 0000000000..cc444b8524
--- /dev/null
+++ b/tentacle/Makefile.PL
@@ -0,0 +1,22 @@
+use 5.000;
+use ExtUtils::MakeMaker;
+
+my %ARGV = map { my @r = split /=/,$_; defined $r[1] or $r[1]=1; @r } @ARGV;
+my @exe_files = qw(tentacle_server);
+
+WriteMakefile(
+	INSTALLSITELIB  => '/usr/lib/perl5',
+	(($^O eq 'freebsd')
+		? (INSTALLSITELIB => '') : ()
+	),
+	($^O eq 'netbsd') ? (
+		INSTALLSITELIB => '',
+		INSTALLSITESCRIPT => '/usr/local/bin',
+	) :(),
+
+	NAME            => 'PandoraFMS',
+	AUTHOR 			=> 'Artica ST <info@artica.es>',
+	EXE_FILES 		=> [ @exe_files ],
+	PMLIBDIRS  		=> [ 'lib' ],
+	'dist'		=> { 'TAR' => 'tar', 'TARFLAGS' => 'cvfz', 'SUFFIX' => '.gz', 'COMPRESS' => 'gzip'}
+);
diff --git a/tentacle/NetBSD/tentacle_server b/tentacle/NetBSD/tentacle_server
new file mode 100755
index 0000000000..d945a134e8
--- /dev/null
+++ b/tentacle/NetBSD/tentacle_server
@@ -0,0 +1,1869 @@
+#!/usr/bin/perl
+##########################################################################
+# Tentacle Server
+# See https://pandorafms.com/docs/ for protocol description.
+# Tentacle have IANA assigned port tpc/41121 as official port.
+##########################################################################
+# Copyright (c) 2007-2008  Ramon Novoa  <rnovoa@artica.es>
+# Copyright (c) 2005-2010 Artica Soluciones Tecnologicas S.L
+#
+# tentacle_server.pl	Tentacle Server. See https://pandorafms.com/docs/ for
+#                       protocol description.
+#
+# This program is free software; you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation; version 2 of the License.
+# 
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+# GNU General Public License for more details.
+# You should have received a copy of the GNU General Public License
+# along with this program; if not, write to the Free Software
+# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
+##########################################################################
+
+package tentacle::server;
+=head1 NAME
+
+tentacle_server - Tentacle Server
+
+=head1 VERSION
+
+Version 0.6.1
+
+=head1 USAGE
+
+tentacle_server B<< -s F<storage_directory> >> [I<options>]
+
+=head1 DESCRIPTION
+
+B<tentacle_server(1)> is a server for B<tentacle>, a B<client/server> file transfer protocol that aims to be:
+
+=over
+
+=item    * Secure by design.
+
+=item    * Easy to use.
+
+=item    * Versatile and cross-platform. 
+
+=back 
+
+Tentacle was created to replace more complex tools like SCP and FTP for simple file transfer/retrieval, and switch from authentication mechanisms like .netrc, interactive logins and SSH keys to X.509 certificates. Simple password authentication over a SSL secured connection is supported too.
+
+The client and server (B<TCP port 41121>) are designed to be run from the command line or called from a shell script, and B<no configuration files are needed>. 
+
+=cut
+
+use strict;
+use warnings;
+use Getopt::Std;
+use IO::Select;
+use IO::Compress::Zip qw(zip $ZipError);
+use IO::Uncompress::Unzip qw(unzip $UnzipError);
+use threads;
+use Thread::Semaphore;
+use POSIX ":sys_wait_h";
+use Time::HiRes qw(usleep);
+use Scalar::Util qw(refaddr);
+use POSIX qw(strftime);
+
+# Constants for Win32 services.
+use constant WIN32_SERVICE_STOPPED => 0x01;
+use constant WIN32_SERVICE_RUNNING => 0x04;
+
+my $t_libwrap_installed = eval { require Authen::Libwrap } ? 1 : 0;
+
+if ($t_libwrap_installed) {
+	Authen::Libwrap->import( qw( hosts_ctl STRING_UNKNOWN ) );
+}
+
+# Log errors, 1 enabled, 0 disabled
+my $t_log = 0;
+
+# Log information, 1 enabled, 0 enabled
+my $t_log_hard = 0;
+
+my $SOCKET_MODULE;
+if ($^O eq 'MSWin32') {
+	# Only support INET on windows
+	require IO::Socket::INET;
+	$SOCKET_MODULE = 'IO::Socket::INET';
+} else {
+	$SOCKET_MODULE =
+		eval { require IO::Socket::INET6 } ? 'IO::Socket::INET6'
+		  : eval { require IO::Socket::INET }  ? 'IO::Socket::INET'
+		  : die $@;
+}
+
+# Service name for Win32.
+my $SERVICE_NAME="Tentacle Server";
+
+# Service parameters.
+my $SERVICE_PARAMS=join(' ', @ARGV);
+
+# Program version
+our $VERSION = '0.6.2';
+
+# IPv4 address to listen on
+my @t_addresses = ('0', '0.0.0.0');
+
+# Block size for socket read/write operations in bytes
+my $t_block_size = 1024;
+
+# Client socket
+my $t_client_socket;
+
+# Run as daemon, 1 true, 0 false
+my $t_daemon = 0;
+
+# Storage directory
+my $t_directory = '';
+
+# Filters
+my @t_filters;
+
+# Enable (1) or disable (0) insecure mode
+my $t_insecure = 0;
+
+# String containing quoted invalid file name characters
+my $t_invalid_chars = '\?\[\]\/\\\=\+\<\>\:\;\'\,\*\~';
+
+# Maximum number of simultaneous connections
+my $t_max_conn = 10;
+
+# Maximum file size allowed by the server in bytes
+my $t_max_size = 2000000;
+
+# File overwrite, 1 enabled, 0 disabled
+my $t_overwrite = 0;
+
+# Port to listen on
+my $t_port = 41121;
+
+# Server password
+my $t_pwd = '';
+
+# Do not output error messages, 1 enabled, 0 disabled
+my $t_quiet = 0;
+
+# Number of retries for socket read/write operations
+my $t_retries = 3;
+
+# Select handler
+my $t_select;
+
+# Semaphore
+my $t_sem :shared;
+
+# Server socket
+my @t_server_sockets;
+
+# Server select handler
+my $t_server_select;
+
+# Use SSL, 1 true, 0 false
+my $t_ssl = 0;
+
+# SSL ca certificate file
+my $t_ssl_ca = '';
+
+# SSL certificate file
+my $t_ssl_cert = '';
+
+# SSL private key file
+my $t_ssl_key = '';
+
+# SSL private key password
+my $t_ssl_pwd = '';
+
+# Timeout for socket read/write operations in seconds
+my $t_timeout = 1;
+
+# Address to proxy client requests to
+my $t_proxy_ip = undef;
+
+# Port to proxy client requests to
+my $t_proxy_port = 41121;
+
+# Proxy socket
+my $t_proxy_socket;
+
+# Proxy selected handler
+my $t_proxy_select;
+
+# Use libwrap, 1 true, 0 false
+my $t_use_libwrap = 0;
+
+# Program name for libwrap
+my $t_program_name = $0;
+$t_program_name =~ s/.*\///g;
+
+# Log file
+my $log_file = undef;
+
+################################################################################
+## SUB print_help
+## Print help screen.
+################################################################################
+sub print_help {
+	$" = ',';
+
+	print ("Usage: $0 -s <storage directory> [options]\n\n");
+	print ("Tentacle server v$VERSION. See https://pandorafms.com/docs/ for protocol description.\n\n");
+	print ("Options:\n");
+	print ("\t-a ip_addresses\tIP addresses to listen on (default @t_addresses).\n");
+	print ("\t               \t(Multiple addresses separated by comma can be defined.)\n");
+	print ("\t-c number\tMaximum number of simultaneous connections (default $t_max_conn).\n");
+	print ("\t-d\t\tRun as daemon.\n");
+	print ("\t-e cert\t\tOpenSSL certificate file. Enables SSL.\n");
+	print ("\t-f ca_cert\tVerify that the peer certificate is signed by a ca.\n");
+	print ("\t-F config_file\tConfiguration file full path.\n");
+	print ("\t-h\t\tShow help.\n");
+	print ("\t-I\t\tEnable insecure operations (file listing and moving).\n");
+	print ("\t-i\t\tFilters.\n");
+	print ("\t-k key\t\tOpenSSL private key file.\n");
+	print ("\t-l log_file\t\tFile to write logs.\n");
+	print ("\t-m size\t\tMaximum file size in bytes (default ${t_max_size}b).\n");
+	print ("\t-o\t\tEnable file overwrite.\n");
+	print ("\t-p port\t\tPort to listen on (default $t_port).\n");
+	print ("\t-q\t\tQuiet. Do now print error messages.\n");
+	print ("\t-r number\tNumber of retries for network opertions (default $t_retries).\n");
+	print ("\t-S (install|uninstall|run) Manage the win32 service.\n");
+	print ("\t-t time\t\tTime-out for network operations in seconds (default ${t_timeout}s).\n");
+	print ("\t-v\t\tBe verbose (display errors).\n");
+	print ("\t-V\t\tBe verbose on hard way (display errors and other info).\n");
+	print ("\t-w\t\tPrompt for OpenSSL private key password.\n");
+	print ("\t-x pwd\t\tServer password.\n");
+	print ("\t-b ip_address\tProxy requests to the given address.\n");
+	print ("\t-g port\t\tProxy requests to the given port.\n");
+	print ("\t-T\t\tEnable tcpwrappers support.\n");
+	print ("\t  \t\t(To use this option, 'Authen::Libwrap' should be installed.)\n\n");
+}
+
+################################################################################
+## SUB daemonize
+## Turn the current process into a daemon.
+################################################################################
+sub daemonize {
+	my $pid;
+
+	require POSIX;
+
+	chdir ('/') || error ("Cannot chdir to /: $!.");
+	umask 0;
+
+	open (STDIN, '/dev/null') || error ("Cannot read /dev/null: $!.");
+
+	# Do not be verbose when running as a daemon
+	open (STDOUT, '>/dev/null') || error ("Cannot write to /dev/null: $!.");
+	open (STDERR, '>/dev/null') || error ("Cannot write to /dev/null: $!.");
+
+	# Fork
+	$pid = fork ();
+	if (! defined ($pid)) {
+		error ("Cannot fork: $!.");
+	}
+
+	# Parent
+	if ($pid != 0) {
+		exit;
+	}
+
+	# Child
+	POSIX::setsid () || error ("Cannot start a new session: $!.");
+}
+
+################################################################################
+## SUB parse_options
+## Parse command line options and initialize global variables.
+################################################################################
+sub parse_options {
+	my %opts;
+	my $CONF = {};
+	my $token_value;
+	my $tmp;
+	my @t_addresses_tmp;
+
+	# Get options
+	if (getopts ('a:b:c:de:f:F:g:hIi:k:l:m:op:qr:s:S:t:TvVwx:', \%opts) == 0 || defined ($opts{'h'})) {
+		print_help ();
+		exit 1;
+	}
+
+	# The Win32 service must be installed/uninstalled without checking other parameters.
+	if (defined ($opts{'S'})) {
+		my $service_action = $opts{'S'};
+		if ($^O ne 'MSWin32') {
+			error ("Windows services are only available on Win32.");
+		} else {
+			eval "use Win32::Daemon";
+			die($@) if ($@);
+
+			if ($service_action eq 'install') {
+				install_service();
+			} elsif ($service_action eq 'uninstall') {
+				uninstall_service();
+			}
+		}
+	}
+
+	# Configuration file
+	if (defined($opts{'F'})) {
+		parse_config_file($opts{'F'}, $CONF);
+	}
+
+	# Address
+	$token_value = get_config_value($opts{'a'}, $CONF->{'addresses'});
+	if (defined ($token_value)) {
+		@t_addresses = ();
+		@t_addresses_tmp = split(/,/, $token_value);
+		
+		foreach my $t_address (@t_addresses_tmp) {
+			$t_address =~ s/^ *(.*?) *$/$1/;
+			if (($t_address ne '0') && 
+				($t_address !~ /^[a-zA-Z\.]+$/ && ($t_address  !~ /^(\d+)\.(\d+)\.(\d+)\.(\d+)$/
+					|| $1 < 0 || $1 > 255 || $2 < 0 || $2 > 255
+					|| $3 < 0 || $3 > 255 || $4 < 0 || $4 > 255)) &&
+				($t_address !~ /^[0-9a-f:]+$/o)) {
+					error ("Address $t_address is not valid.");
+			}
+			push @t_addresses, $t_address;
+		}
+	}
+	
+	# Maximum simultaneous connections
+	$token_value = get_config_value($opts{'c'}, $CONF->{'max_connections'});
+	if (defined ($token_value)) {
+		$t_max_conn = $token_value;
+		if ($t_max_conn !~ /^\d+$/ || $t_max_conn < 1) {
+			error ("Invalid number of maximum simultaneous connections.");
+		}
+	}
+
+	# Run as daemon
+	$token_value = get_config_value($opts{'d'}, $CONF->{'daemon'}, 1);
+	if (defined ($token_value)) {
+		if ($^ eq 'MSWin32') {
+			error ("-d flag not available for this OS.");
+		}
+
+		$t_daemon = 1;
+	}
+
+	# Enable SSL
+	$token_value = get_config_value($opts{'e'}, $CONF->{'ssl_cert'});
+	if (defined ($token_value)) {
+
+		require IO::Socket::SSL;
+
+		$t_ssl_cert = $token_value;
+		if (! -f $t_ssl_cert) {
+			error ("File $t_ssl_cert does not exist.");
+		}
+
+		$t_ssl = 1;
+	}
+
+	# Verify peer certificate
+	$token_value = get_config_value($opts{'f'}, $CONF->{'ssl_ca'});
+	if (defined ($token_value)) {
+		$t_ssl_ca = $token_value;
+		if (! -f $t_ssl_ca) {
+			error ("File $t_ssl_ca does not exist.");
+		}
+	}
+
+	# Insecure mode
+	$token_value = get_config_value($opts{'I'}, $CONF->{'insecure'}, 1);
+	if (defined ($token_value)) {
+		$t_insecure = 1;
+	}
+
+	# Filters (regexp:dir;regexp:dir...)
+	$token_value = get_config_value($opts{'i'}, $CONF->{'filters'});
+	if (defined ($token_value)) {
+		my @filters = split (';', $token_value);
+		foreach my $filter (@filters) {
+			my ($regexp, $dir) = split (':', $filter);
+			next unless defined ($regexp) && defined ($dir);
+
+			# Remove any trailing /
+			my $char = chop ($dir);
+			$dir .= $char if ($char) ne '/';
+
+			push(@t_filters, [$regexp, $dir]);
+		}
+	}
+
+	# SSL private key file
+	$token_value = get_config_value($opts{'k'}, $CONF->{'ssl_key'});
+	if (defined ($token_value)) {
+		$t_ssl_key = $token_value;
+		if (! -f $t_ssl_key) {
+			error ("File $t_ssl_key does not exist.");
+		}
+	}
+
+	# Maximum file size
+	$token_value = get_config_value($opts{'m'}, $CONF->{'max_size'});
+	if (defined ($token_value)) {
+		$t_max_size = $token_value;
+		if ($t_max_size !~ /^\d+$/ || $t_max_size < 1) {
+			error ("Invalid maximum file size.");
+		}
+	}
+
+	# File overwrite
+	$token_value = get_config_value($opts{'o'}, $CONF->{'overwrite'}, 1);
+	if (defined ($token_value)) {
+		$t_overwrite = 1;
+	}
+
+	# Port
+	$token_value = get_config_value($opts{'p'}, $CONF->{'port'});
+	if (defined ($token_value)) {
+		$t_port = $token_value;
+		if ($t_port !~ /^\d+$/ || $t_port < 1 || $t_port > 65535) {
+			error ("Port $t_port is not valid.");
+		}
+	}
+
+	# Quiet mode
+	$token_value = get_config_value($opts{'q'}, $CONF->{'quiet'}, 1);
+	if (defined ($token_value)) {
+		$t_quiet = 1;
+	}
+
+	# Retries
+	$token_value = get_config_value($opts{'r'}, $CONF->{'retries'});
+	if (defined ($token_value)) {
+		$t_retries = $token_value;
+		if ($t_retries !~ /^\d+$/ || $t_retries < 1) {
+			error ("Invalid number of retries for network operations.");
+		}
+	}
+
+	# Storage directory
+	$token_value = get_config_value($opts{'s'}, $CONF->{'directory'});
+	if (defined ($token_value)) {
+
+		$t_directory = $token_value;
+		
+		# Check that directory exists
+		if (! -d $t_directory) {
+			error ("Directory $t_directory does not exist.");
+		}
+
+		# Check directory permissions
+		if (! -w $t_directory) {
+			error ("Cannot write to directory $t_directory.");
+		}
+
+		# Remove the trailing / if present
+		$tmp = chop ($t_directory);
+		if ($tmp ne '/') {
+			$t_directory .= $tmp;
+		}
+	}
+	else {
+		$token_value = get_config_value($opts{'b'}, $CONF->{'proxy_ip'});
+		if (! defined($token_value)) {
+			print_help ();
+			exit 1;
+		}
+	}
+
+	# Timeout
+	$token_value = get_config_value($opts{'t'}, $CONF->{'timeout'});
+	if (defined ($token_value)) {
+		$t_timeout = $token_value;
+		if ($t_timeout !~ /^\d+$/ || $t_timeout < 1) {
+			error ("Invalid timeout for network operations.");
+		}
+	}
+
+	# Read verbose from config file
+	if (defined($CONF->{'verbose'})) {
+		if ($CONF->{'verbose'} eq "1") {
+			$t_log = 1;
+		} elsif ($CONF->{'verbose'} eq "2") {
+			$t_log = 1;
+			$t_log_hard = 1;
+		}
+	}
+	# Be verbose
+	if (defined ($opts{'v'})) {
+		$t_log = 1;
+		$t_log_hard = 0;
+	}
+	# Be verbose hard
+	if (defined ($opts{'V'})) {
+		$t_log = 1;
+		$t_log_hard = 1;
+	}
+
+	# SSL private key password
+	$token_value = get_config_value($opts{'w'}, $CONF->{'ssl_password'}, 1);
+	if (defined ($token_value)) {
+		$t_ssl_pwd = ask_passwd ("Enter private key file password: ", "Enter private key file password again for confirmation: ");
+	}
+
+	# Server password
+	$token_value = get_config_value($opts{'x'}, $CONF->{'password'});
+	if (defined ($token_value)) {
+		$t_pwd = $token_value;
+	}
+	
+	#Proxy IP address
+	$token_value = get_config_value($opts{'b'}, $CONF->{'proxy_ip'});
+	if (defined ($token_value)) {
+		$t_proxy_ip = $token_value;
+		if ($t_proxy_ip !~ /^[a-zA-Z\.]+$/ && ($t_proxy_ip  !~ /^(\d+)\.(\d+)\.(\d+)\.(\d+)$/
+			|| $1 < 0 || $1 > 255 || $2 < 0 || $2 > 255
+			|| $3 < 0 || $3 > 255 || $4 < 0 || $4 > 255) &&
+			$t_proxy_ip !~ /^[0-9a-f:]+$/o) {
+			error ("Proxy address $t_proxy_ip is not valid.");
+		}		
+	}
+	
+	# Proxy Port
+	$token_value = get_config_value($opts{'g'}, $CONF->{'proxy_port'});
+	if (defined ($token_value)) {
+		$t_proxy_port = $token_value;
+		if ($t_proxy_port !~ /^\d+$/ || $t_proxy_port < 1 || $t_proxy_port > 65535) {
+			error ("Proxy port $t_port is not valid.");
+		}
+	}	
+
+	# TCP wrappers support
+	$token_value = get_config_value($opts{'T'}, $CONF->{'use_libwrap'}, 1);
+	if (defined ($token_value)) {
+		if ($t_libwrap_installed) {
+			$t_use_libwrap = 1;
+		} else {
+			error ("Authen::Libwrap is not installed.");
+		}
+	}
+
+	# Win32 service management
+	if (defined ($opts{'S'})) {
+		my $service_action = $opts{'S'};
+		if ($^O ne 'MSWin32') {
+			error ("Windows services are only available on Win32.");
+		} else {
+			eval "use Win32::Daemon";
+			die($@) if ($@);
+
+			if ($service_action eq 'run') {
+				Win32::Daemon::RegisterCallbacks({
+			        start       =>  \&callback_start,
+			        running     =>  \&callback_running,
+			        stop        =>  \&callback_stop,
+				});
+				Win32::Daemon::StartService();
+				exit 0;
+			} else {
+				error("Unknown action: $service_action");
+			}
+		}
+	}
+	
+	# Get the config file
+	$token_value = get_config_value($opts{'l'}, $CONF->{'log_file'});
+	if (defined ($token_value)) {
+		$log_file = $token_value;
+	}
+
+	# No command lines config values
+
+	# Get the block size
+	if (defined ($CONF->{'block_size'})) {
+		if ($t_port !~ /^\d+$/ || $t_port < 1) {
+			error ("Invalid block size: " . $CONF->{'block_size'} . ".");
+		}
+		$t_block_size = $CONF->{'block_size'};
+	}
+
+	# Configuration file invalid chars
+	if (defined ($CONF->{'invalid_chars'})) {
+		$t_invalid_chars = $CONF->{'invalid_chars'};
+	}
+}
+
+################################################################################
+## SUB parse_config_file
+## Get all options from a config file.
+################################################################################
+sub parse_config_file {
+	my ($config_file, $CONF) = @_;
+
+	# File should be writable
+	if (! -r $config_file) {
+		print "Configuration file $config_file is not readable.\n";
+		return;
+	}
+
+	# Open the file
+	my $FH;
+	if (! open ($FH, "< $config_file")) {
+		print "Cannot open configuration file $config_file.\n";
+		return;
+	}
+
+	# Read the file and only get the well formed lines
+	while (<$FH>) {
+		my $buffer_line = $_;
+		if ($buffer_line =~ /^[a-zA-Z]/){ # begins with letters
+			if ($buffer_line =~ m/([\w\-\_\.]+)\s+(.*)/){
+				$CONF->{$1} = $2 unless $2 eq "";
+			}
+		}
+	}
+
+ 	close ($FH);
+	return;
+}
+
+################################################################################
+## SUB parse_config_file
+## Search in command line options and config hash from configuration file
+## to get a value (command line is a priority)
+################################################################################
+sub get_config_value {
+	my ($cmd_value, $conf_value, $bool) = @_;
+	$bool = 0 unless defined($bool);
+
+	return $cmd_value if defined($cmd_value);
+	# The boolean type value is 1 or undef (0 should be translated like undefP)
+	if ($bool && defined($conf_value)) {
+		return undef if ($conf_value ne "1");
+	}
+	return $conf_value;
+}
+
+################################################################################
+## SUB start_proxy
+## Open the proxy server socket.
+################################################################################
+sub start_proxy {
+
+	# Connect to server
+	$t_proxy_socket = $SOCKET_MODULE->new (
+	    PeerAddr => $t_proxy_ip,
+		PeerPort => $t_proxy_port,
+	);
+
+	if (! defined ($t_proxy_socket)) {
+		error ("Cannot connect to $t_proxy_ip on port $t_proxy_port: $!.");
+	}
+	
+	# Create proxy selector
+	$t_proxy_select = IO::Select->new ();
+	$t_proxy_select->add ($t_proxy_socket);
+	
+}
+
+################################################################################
+## SUB start_server
+## Open the server socket.
+################################################################################
+sub start_server {
+
+	my $t_server_socket;
+
+	foreach my $t_address (@t_addresses) {
+
+		$t_server_socket = $SOCKET_MODULE->new (
+			Listen    => $t_max_conn,
+			LocalAddr => $t_address,
+			LocalPort => $t_port,
+			Proto     => 'tcp',
+			ReuseAddr     => 1,
+		);
+
+		if (! defined ($t_server_socket)) {
+			print_log ("Cannot open socket for address $t_address on port $t_port: $!.");
+			next;
+		}
+
+		print_log ("Server listening on $t_address port $t_port (press <ctr-c> to stop)");
+	
+		# Say message if tentacle proxy is enable
+		if (defined ($t_proxy_ip)) {
+			print_log ("Proxy Mode enable, data will be sent to $t_proxy_ip port $t_proxy_port");	
+		}
+	
+		push @t_server_sockets, $t_server_socket;
+	}
+
+	if (!@t_server_sockets) {
+		error ("Cannot open socket for all addresses on port $t_port: $!.");
+	}
+	
+	$t_server_select = IO::Select->new();
+	foreach my $t_server_socket (@t_server_sockets){
+		$t_server_select->add($t_server_socket);
+ 	}
+}
+
+################################################################################
+## SUB send_data_proxy
+## Send data to proxy socket.
+################################################################################
+sub send_data_proxy {
+	my $data = $_[0];
+	my $block_size;
+	my $retries = 0;
+	my $size;
+	my $total = 0;
+	my $written;
+
+	$size = length ($data);
+
+	while (1) {
+
+		# Try to write data to the socket
+		if ($t_proxy_select->can_write ($t_timeout)) {
+
+			$block_size = ($size - $total) > $t_block_size ? $t_block_size : ($size - $total);
+			$written = syswrite ($t_proxy_socket, $data, $size - $total, $total);
+
+			# Write error
+			if (! defined ($written)) {
+				error ("Connection error from " . $t_proxy_socket->sockhost () . ": $!.");
+			}
+			
+			# EOF
+			if ($written == 0) {
+				error ("Connection from " . $t_proxy_socket->sockhost () . " unexpectedly closed.");
+			}
+	
+			$total += $written;
+
+			# Check if all data was written
+			if ($total == $size) {
+				return;
+			}
+		}
+		# Retry
+		else {
+			$retries++;
+			if ($retries > $t_retries) {
+				error ("Connection from " . $t_proxy_socket->sockhost () . " timed out.");
+			}
+		}
+	}
+}
+
+################################################################################
+## SUB close_proxy
+## Close the proxy socket.
+################################################################################
+sub close_proxy {
+	$t_proxy_socket->shutdown (2);
+	$t_proxy_socket->close ();
+}
+
+################################################################################
+## SUB stop_server
+## Close the server socket.
+################################################################################
+sub stop_server {
+
+	foreach my $t_server_socket (@t_server_sockets) {
+		$t_server_socket->shutdown (2);
+		$t_server_socket->close ();
+	}
+	print_log ("Server going down");
+	
+	exit 0;
+}
+
+################################################################################
+## SUB start_ssl
+## Convert the client socket to an IO::Socket::SSL socket.
+################################################################################
+sub start_ssl {
+	my $err;
+
+	if ($t_ssl_ca eq '') {
+		IO::Socket::SSL->start_SSL (
+			$t_client_socket,
+			SSL_cert_file => $t_ssl_cert,
+			SSL_key_file => $t_ssl_key,
+			SSL_passwd_cb => sub {return $t_ssl_pwd},
+			SSL_server => 1,
+			# Verify peer
+			SSL_verify_mode => 0x01,
+		);
+	}
+	else {
+		IO::Socket::SSL->start_SSL (
+			$t_client_socket,
+			SSL_ca_file => $t_ssl_ca,
+			SSL_cert_file => $t_ssl_cert,
+			SSL_key_file => $t_ssl_key,
+			SSL_passwd_cb => sub {return $t_ssl_pwd},
+			SSL_server => 1,
+			# Fail verification if no peer certificate exists
+			SSL_verify_mode => 0x03,
+		);
+	}
+
+	$err = IO::Socket::SSL::errstr ();
+	if ($err ne '') {
+		error ($err);
+	}
+
+	print_log ("SSL started for " . $t_client_socket->sockhost ());
+}
+
+################################################################################
+## SUB accept_connections
+## Manage incoming connections.
+################################################################################
+sub accept_connections {
+	my $pid;
+	my $t_server_socket;
+
+	# Ignore SIGPIPE
+	$SIG{PIPE} = 'IGNORE';
+
+	# Start server
+	start_server ();
+
+	# Initialize semaphore
+	$t_sem = Thread::Semaphore->new ($t_max_conn);
+
+	while (1) {
+		my @ready = $t_server_select->can_read;
+		foreach $t_server_socket (@ready) {
+
+			# Accept connection
+			$t_client_socket = $t_server_socket->accept ();
+
+			if (! defined ($t_client_socket)) {
+				next if ($! ne ''); # EINTR
+				error ("accept: $!.");
+			}
+
+			print_info ("Client connected from " . $t_client_socket->peerhost ());
+
+			if ($t_use_libwrap && (! hosts_ctl($t_program_name, $t_client_socket))) {
+				print_log ("Connection from " . $t_client_socket->peerhost() . " is closed by tcpwrappers.");
+				$t_client_socket->shutdown (2);
+				$t_client_socket->close();
+			}
+			else {
+
+				# Create a new thread and serve the client
+				$t_sem->down();
+				my $thr = threads->create(\&serve_client);
+				if (! defined ($thr)) {
+					error ("Error creating thread: $!.");
+				}
+				$thr->detach();
+				$t_client_socket->close ();
+			}
+		}
+
+		usleep (1000);
+	}
+}
+
+################################################################################
+## SUB serve_client
+## Serve a connected client.
+################################################################################
+sub serve_client() {
+
+	eval {		
+		# Add client socket to select queue
+		$t_select = IO::Select->new ();
+		$t_select->add ($t_client_socket);
+			
+		# Start SSL
+		if ($t_ssl == 1) {
+			start_ssl ();
+		}
+	
+		# Authenticate client
+		if ($t_pwd ne '') {
+			auth_pwd ();
+		}
+	
+		# Check if proxy mode is enable
+		if (defined ($t_proxy_ip)) {
+			serve_proxy_connection ();	
+		} else {
+			serve_connection ();
+		}
+	};
+
+	$t_client_socket->shutdown (2);
+	$t_client_socket->close ();
+	$t_sem->up();
+}
+
+################################################################################
+## SUB serve_proxy_connection
+## Actuate as a proxy between its client and other tentacle server.
+################################################################################
+sub serve_proxy_connection {
+	
+	# We are a proxy! Start a connection to the Tentacle Server.
+	start_proxy();
+
+	# Forward data between the client and the server.
+	eval {
+		my $select = IO::Select->new ();
+		$select->add($t_proxy_socket);
+		$select->add($t_client_socket);
+		while (my @ready = $select->can_read()) {
+			foreach my $socket (@ready) {
+				if (refaddr($socket) == refaddr($t_client_socket)) {
+					my ($read, $data) = recv_data($t_block_size);
+					return unless defined($data);
+					send_data_proxy($data);
+				}
+				else {
+					my ($read, $data) = recv_data_proxy($t_block_size);
+					return unless defined($data);
+					send_data($data);
+				}
+			}
+		}
+	};
+
+	# Close the connection to the Tentacle Server.
+	close_proxy();
+}
+
+################################################################################
+## SUB serve_connection
+## Read and process commands from the client.
+################################################################################
+sub serve_connection {
+	my $command;
+
+	# Read commands
+	while ($command = recv_command ($t_block_size)) {
+		
+		# Client wants to send a file
+		if ($command =~ /^SEND <(.*)> SIZE (\d+)$/) {
+			print_info ("Request to send file '$1' size ${2}b from " . $t_client_socket->sockhost ());
+			recv_file ($1, $2);
+		}
+		# Client wants to receive a file
+		elsif ($command =~ /^RECV <(.*)>$/) {
+			print_info ("Request to receive file '$1' from " . $t_client_socket->sockhost ());
+			send_file ($1);
+		}
+		elsif ($command =~ /^ZSEND <(.*)> SIZE (\d+)$/) {
+			print_info ("Request to send compressed file '$1' size ${2}b from " . $t_client_socket->sockhost ());
+			zrecv_file ($1, $2);
+		}
+		# Client wants to receive a file
+		elsif ($command =~ /^ZRECV <(.*)>$/) {
+			print_info ("Request to receive compressed file '$1' from " . $t_client_socket->sockhost ());
+			zsend_file ($1);
+		}
+		# Quit
+		elsif ($command =~ /^QUIT$/) {
+			print_info ("Connection closed from " . $t_client_socket->sockhost ());
+			last;
+		}
+		# File listing.
+		elsif ($command =~ /^LS <(.*)>$/) {
+			if ($t_insecure == 0) {
+				print_info ("Insecure mode disabled. Rejected request to list files matched by filter $1 from " . $t_client_socket->sockhost ());
+				last;
+			}
+
+			print_info ("Request to list files matched by filter $1 from " . $t_client_socket->sockhost ());
+			send_file_list ($1);
+		}
+		# Client wants to move a file
+		elsif ($command =~ /^MV <(.*)>$/) {
+			if ($t_insecure == 0) {
+				print_info ("Insecure mode disabled. Rejected request to move file $1 from " . $t_client_socket->sockhost ());
+				last;
+			}
+
+			print_info ("Request to move file '$1' from " . $t_client_socket->sockhost ());
+			move_file ($1);
+		}
+		# Unknown command
+		else {
+			print_log ("Unknown command '$command' from " . $t_client_socket->sockhost ());
+			last;
+		}
+	}
+}
+
+################################################################################
+## SUB auth_pwd
+## Authenticate client with server password.
+################################################################################
+sub auth_pwd {
+	my $client_digest;
+	my $command;
+	my $pwd_digest;
+
+	require Digest::MD5;
+	
+	# Wait for password
+	$command = recv_command ($t_block_size);
+	if ($command !~ /^PASS (.*)$/) {
+		error ("Client " . $t_client_socket->sockhost () . " did not authenticate.");
+	}
+	
+	$client_digest = $1;
+	$pwd_digest = Digest::MD5::md5 ($t_pwd);
+	$pwd_digest = Digest::MD5::md5_hex ($pwd_digest);
+
+	if ($client_digest ne $pwd_digest) {
+		error ("Invalid password from " . $t_client_socket->sockhost () . ".");
+	}
+
+	print_log ("Client " . $t_client_socket->sockhost () . " authenticated");
+	send_data ("PASS OK\n");
+}
+
+################################################################################
+## SUB recv_file
+## Receive a file of size $_[1] and save it in $t_directory as $_[0].
+################################################################################
+sub recv_file {
+	my $base_name = $_[0];
+	my $data = '';
+	my $file;
+	my $size = $_[1];
+
+	# Check file name
+	if ($base_name =~ /[$t_invalid_chars]/) {
+		print_log ("File '$base_name' size ${size}b from " . $t_client_socket->sockhost () . " has an invalid file name");
+		send_data ("SEND ERR (invalid file name)\n");
+		return;
+	}
+
+	# Check file size, empty files are not allowed
+	if ($size < 1 || $size > $t_max_size) {
+		print_log ("File '$base_name' size ${size}b from " . $t_client_socket->sockhost () . " is too big");
+		send_data ("SEND ERR (file is too big)\n");
+		return;
+	}
+	
+	# Apply filters
+	$file = "$t_directory/" . apply_filters ($base_name) . $base_name;
+
+	# Check if file exists
+	if (-f $file && $t_overwrite == 0) {
+		print_log ("File '$base_name' size ${size}b from " . $t_client_socket->sockhost () . " already exists");
+		send_data ("SEND ERR (file already exists)\n");
+		return;
+	}
+
+	send_data ("SEND OK\n");
+
+	# Receive file
+	$data = recv_data_block ($size);
+
+	# Write it to disk
+	open (FILE, "> $file") || error ("Cannot open file '$file' for writing.");
+	binmode (FILE);
+	print (FILE $data);
+	close (FILE);
+
+	send_data ("SEND OK\n");
+	print_info ("Received file '$base_name' size ${size}b from " . $t_client_socket->sockhost ());
+}
+
+################################################################################
+## SUB zrecv_file
+## Receive a compressed file of size $_[1] and save it in $t_directory as $_[0].
+################################################################################
+sub zrecv_file {
+	my $base_name = $_[0];
+	my $data = '';
+	my $file;
+	my $size = $_[1];
+	my $zdata = '';
+
+	# Check file name
+	if ($base_name =~ /[$t_invalid_chars]/) {
+		print_log ("File '$base_name' size ${size}b from " . $t_client_socket->sockhost () . " has an invalid file name");
+		send_data ("ZSEND ERR (invalid file name)\n");
+		return;
+	}
+
+	# Check file size, empty files are not allowed
+	if ($size < 1 || $size > $t_max_size) {
+		print_log ("File '$base_name' size ${size}b from " . $t_client_socket->sockhost () . " is too big");
+		send_data ("ZSEND ERR (file is too big)\n");
+		return;
+	}
+	
+	# Apply filters
+	$file = "$t_directory/" . apply_filters ($base_name) . $base_name;
+
+	# Check if file exists
+	if (-f $file && $t_overwrite == 0) {
+		print_log ("File '$base_name' size ${size}b from " . $t_client_socket->sockhost () . " already exists");
+		send_data ("ZSEND ERR (file already exists)\n");
+		return;
+	}
+
+	send_data ("ZSEND OK\n");
+
+	# Receive file
+	$zdata = recv_data_block ($size);
+	if (!unzip(\$zdata => \$data)) {
+		print_log ("Uncompress error: $UnzipError");
+		send_data ("ZSEND ERR\n");
+		return;
+	}
+
+	# Write it to disk
+	open (FILE, "> $file") || error ("Cannot open file '$file' for writing.");
+	binmode (FILE);
+	print (FILE $data);
+	close (FILE);
+
+	send_data ("ZSEND OK\n");
+	print_info ("Received compressed file '$base_name' size ${size}b from " . $t_client_socket->sockhost ());
+}
+
+################################################################################
+## SUB send_file
+## Send a file to the client
+################################################################################
+sub send_file {
+	my $base_name = $_[0];
+	my $data = '';
+	my $file;
+	my $response;
+	my $size;
+
+	# Check file name
+	if ($base_name =~ /[$t_invalid_chars]/) {
+		print_log ("Requested file '$base_name' from " . $t_client_socket->sockhost () . " has an invalid file name");
+		send_data ("RECV ERR (file has an invalid file name)\n");
+		return;
+	}
+	
+	# Apply filters
+	$file = "$t_directory/" . apply_filters ($base_name) . $base_name;
+
+	# Check if file exists
+	if (! -f $file) {
+		print_log ("Requested file '$file' from " . $t_client_socket->sockhost () . " does not exist");
+		send_data ("RECV ERR (file does not exist)\n");
+		return;
+	}
+
+	$size = -s $file;
+	send_data ("RECV SIZE $size\n");
+	
+	# Wait for client response
+	$response = recv_command ($t_block_size);
+	if ($response ne "RECV OK") {
+		print_log ("Requested file '$file' from " . $t_client_socket->sockhost () . " not sent");
+		return;
+	}
+
+	# Send the file
+	open (FILE, $file) || error ("Cannot open file '$file' for reading.");
+	binmode (FILE);
+	{
+		local $/ = undef;
+		$data = <FILE>;
+	}
+
+	send_data ($data);
+	close (FILE);
+
+	print_log ("Requested file '$file' from " . $t_client_socket->sockhost () . " sent");
+}
+
+################################################################################
+## SUB zsend_file
+## Send a file to the client
+################################################################################
+sub zsend_file {
+	my $base_name = $_[0];
+	my $data = '';
+	my $file;
+	my $response;
+	my $size;
+
+	# Check file name
+	if ($base_name =~ /[$t_invalid_chars]/) {
+		print_log ("Requested compressed file '$base_name' from " . $t_client_socket->sockhost () . " has an invalid file name");
+		send_data ("ZRECV ERR (file has an invalid file name)\n");
+		return;
+	}
+	
+	# Apply filters
+	$file = "$t_directory/" . apply_filters ($base_name) . $base_name;
+
+	# Check if file exists
+	if (! -f $file) {
+		print_log ("Requested compressed '$file' from " . $t_client_socket->sockhost () . " does not exist");
+		send_data ("ZRECV ERR (file does not exist)\n");
+		return;
+	}
+
+	# Read the file and compress its contents
+	if (! zip($file => \$data)) {
+		send_data ("QUIT\n");
+		error ("Compression error: $ZipError");
+		return;
+	}
+
+	$size = length($data);
+	send_data ("ZRECV SIZE $size\n");
+	
+	# Wait for client response
+	$response = recv_command ($t_block_size);
+	if ($response ne "ZRECV OK") {
+		print_log ("Requested compressed '$file' from " . $t_client_socket->sockhost () . " not sent");
+		return;
+	}
+
+	# Send the file
+	send_data ($data);
+
+	print_log ("Requested compressed '$file' from " . $t_client_socket->sockhost () . " sent");
+}
+
+################################################################################
+# Common functions
+################################################################################
+
+################################################################################
+## SUB print_log
+## Print log messages.
+################################################################################
+sub print_log($) {
+
+	my ($msg) = @_;
+	
+	return unless ($t_log == 1);
+	
+	my $fh = *STDOUT;
+	if (defined($log_file)) {
+		open($fh, ">>", $log_file) || die("Starting log failed: $!.\n");
+	}
+
+	print ($fh strftime ("%Y-%m-%d %H:%M:%S", localtime()) . "[log]$msg.\n");
+
+	close ($fh) if (defined($log_file));
+
+}
+
+################################################################################
+## SUB print_log
+## Print log messages.
+################################################################################
+sub print_info($) {
+
+	my ($msg) = @_;
+	
+	return unless ($t_log_hard == 1);
+	
+	my $fh = *STDOUT;
+	if (defined($log_file)) {
+		open($fh, ">>", $log_file) || die("Starting log failed: $!.\n");
+	}
+
+	print ($fh strftime ("%Y-%m-%d %H:%M:%S", localtime()) . "[info]$msg.\n");
+
+	close ($fh) if (defined($log_file));
+
+}
+
+################################################################################
+## SUB error
+## Print an error and exit the program.
+################################################################################
+sub error {
+
+	my ($msg) = @_;
+	
+	return unless ($t_quiet == 0);
+
+	my $fh = *STDERR;
+	if (defined($log_file)) {
+		open($fh, ">>", $log_file) || die("$!\n");
+	}
+
+	print ($fh strftime ("%Y-%m-%d %H:%M:%S", localtime()) . "[err]$msg\n");
+
+	close ($fh) if (defined($log_file));
+
+	die("\n");
+}
+
+################################################################################
+## SUB move_file
+## Send a file to the client and delete it
+################################################################################
+sub move_file {
+	my $base_name = $_[0];
+	my $data = '';
+	my $file;
+	my $response;
+	my $size;
+
+	# Check file name
+	if ($base_name =~ /[$t_invalid_chars]/) {
+		print_log ("Requested file '$base_name' from " . $t_client_socket->sockhost () . " has an invalid file name");
+		send_data ("MV ERR\n");
+		return;
+	}
+	
+	# Apply filters
+	$file = "$t_directory/" . apply_filters ($base_name) . $base_name;
+
+	# Check if file exists
+	if (! -f $file) {
+		print_log ("Requested file '$file' from " . $t_client_socket->sockhost () . " does not exist");
+		send_data ("MV ERR\n");
+		return;
+	}
+
+	$size = -s $file;
+	send_data ("MV SIZE $size\n");
+	
+	# Wait for client response
+	$response = recv_command ($t_block_size);
+	if ($response ne "MV OK") {
+		print_log ("Requested file '$file' from " . $t_client_socket->sockhost () . " not sent");
+		return;
+	}
+
+	# Send the file
+	open (FILE, $file) || error ("Cannot open file '$file' for reading.");
+	binmode (FILE);
+
+	while ($data = <FILE>) {
+		send_data ($data);
+	}
+
+	close (FILE);
+	unlink($file);
+
+	print_log ("Requested file '$file' from " . $t_client_socket->sockhost () . " sent and deleted");
+}
+
+################################################################################
+## SUB send_file_list
+## Send a list of files to the client after applying the given filter.
+################################################################################
+sub send_file_list {
+	my $filter = $_[0];
+	my $data = '';
+	my $dir;
+	my $dh;
+	my $response;
+	my $size;
+
+	# Check file name
+	if ($filter =~ /[$t_invalid_chars]/) {
+		print_log ("Invalid file listing filter '$filter' from " . $t_client_socket->sockhost ());
+		send_data ("LS ERR\n");
+		return;
+	}
+	
+	# Apply filters
+	$dir = "$t_directory/" . apply_filters ($filter);
+
+	# Open the directory.
+	if (! opendir ($dh, $dir)) {
+		print_log ("Error opening directory $dir as requested from " . $t_client_socket->sockhost () . ": $!");
+		send_data ("LS ERR\n");
+		return;
+	}
+
+	# List files.
+	while (my $file = readdir ($dh)) {
+		next if ($file =~ /[$t_invalid_chars]/); # Only list files valid for Tentacle.
+		$data .= "$file\n";
+	}
+	closedir $dh;
+
+	$size = length ($data);
+	send_data ("LS SIZE $size\n");
+	
+	# Wait for client response
+	$response = recv_command ($t_block_size);
+	if ($response ne "LS OK") {
+		print_log ("Requested directory listing from " . $t_client_socket->sockhost () . " not sent");
+		return;
+	}
+
+	send_data ($data);
+
+	print_log ("Requested directory listing from " . $t_client_socket->sockhost () . " sent");
+}
+
+################################################################################
+## SUB recv_data_proxy
+## Recv data from proxy socket.
+################################################################################
+sub recv_data_proxy {
+	my $data;
+	my $read;
+	my $retries = 0;
+	my $size = $_[0];
+
+	while (1) {
+
+		# Try to read data from the socket
+		if ($t_proxy_select->can_read ($t_timeout)) {
+			
+			# Read at most $size bytes
+			$read = sysread ($t_proxy_socket, $data, $size);
+
+			# Read error
+			if (! defined ($read)) {
+				error ("Read error from " . $t_proxy_socket->sockhost () . ": $!.");
+			}
+	
+			# EOF
+			if ($read == 0) {
+				error ("Connection from " . $t_proxy_socket->sockhost () . " unexpectedly closed.");
+			}
+	
+			return ($read, $data);
+		}
+
+		# Retry
+		$retries++;
+
+		# But check for error conditions first
+		if ($retries > $t_retries) {
+			error ("Connection from " . $t_proxy_socket->sockhost () . " timed out.");
+		}
+	}
+}
+################################################################################
+## SUB recv_data
+## Read data from the client socket. Returns the number of bytes read and the
+## string of bytes as a two element array.
+################################################################################
+sub recv_data {
+	my $data;
+	my $read;
+	my $retries = 0;
+	my $size = $_[0];
+
+	while (1) {
+
+		# Try to read data from the socket
+		if ($t_select->can_read ($t_timeout)) {
+			
+			# Read at most $size bytes
+			$read = sysread ($t_client_socket, $data, $size);
+
+			# Read error
+			if (! defined ($read)) {
+				error ("Read error from " . $t_client_socket->sockhost () . ": $!.");
+			}
+	
+			# EOF
+			if ($read == 0) {
+				error ("Connection from " . $t_client_socket->sockhost () . " unexpectedly closed.");
+			}
+	
+			return ($read, $data);
+		}
+
+		# Retry
+		$retries++;
+
+		# But check for error conditions first
+		if ($retries > $t_retries) {
+			error ("Connection from " . $t_client_socket->sockhost () . " timed out.");
+		}
+	}
+}
+
+################################################################################
+## SUB send_data
+## Write data to the client socket.
+################################################################################
+sub send_data {
+	my $data = $_[0];
+	my $block_size;
+	my $retries = 0;
+	my $size;
+	my $total = 0;
+	my $written;
+
+	$size = length ($data);
+
+	while (1) {
+
+		# Try to write data to the socket
+		if ($t_select->can_write ($t_timeout)) {
+
+			$block_size = ($size - $total) > $t_block_size ? $t_block_size : ($size - $total);
+			$written = syswrite ($t_client_socket, $data, $block_size, $total);
+
+			# Write error
+			if (! defined ($written)) {
+				error ("Connection error from " . $t_client_socket->sockhost () . ": $!.");
+			}
+			
+			# EOF
+			if ($written == 0) {
+				error ("Connection from " . $t_client_socket->sockhost () . " unexpectedly closed.");
+			}
+	
+			$total += $written;
+
+			# Check if all data was written
+			if ($total == $size) {
+				return;
+			}
+		}
+		# Retry
+		else {
+			$retries++;
+			if ($retries > $t_retries) {
+				error ("Connection from " . $t_client_socket->sockhost () . " timed out.");
+			}
+		}
+	}
+}
+
+################################################################################
+## SUB recv_command
+## Read a command from the client, ended by a new line character.
+################################################################################
+sub recv_command {
+	my $buffer;
+	my $char;
+	my $command = '';
+	my $read;
+	my $total = 0;
+
+	while (1) {
+		
+		($read, $buffer) = recv_data ($t_block_size);
+		$command .= $buffer;
+		$total += $read;
+
+		# Check if the command is complete
+		$char = chop ($command);
+		if ($char eq "\n") {
+			return $command;
+		}
+	
+		$command .= $char;
+
+		# Avoid overflow
+		if ($total > $t_block_size) {
+			error ("Received too much data from " . $t_client_socket->sockhost () . ".");
+		}
+	}
+}
+
+################################################################################
+## SUB recv_data_block
+## Read $_[0] bytes of data from the client.
+################################################################################
+sub recv_data_block {
+	my $buffer = '';
+	my $data = '';
+	my $read;
+	my $size = $_[0];
+	my $total = 0;
+
+	while (1) {
+
+		($read, $buffer) = recv_data ($size - $total);
+		$data .= $buffer;
+		$total += $read;
+
+		# Check if all data has been read
+		if ($total == $size) {
+			return $data;
+		}
+	}
+}
+
+################################################################################
+## SUB ask_passwd
+## Asks the user for a password.
+################################################################################
+sub ask_passwd {
+	my $msg1 = $_[0];
+	my $msg2 = $_[1];
+	my $pwd1;
+	my $pwd2;
+
+	require Term::ReadKey;
+
+	# Disable keyboard echo
+	Term::ReadKey::ReadMode('noecho');
+	
+	# Promt for password
+	print ($msg1);
+	$pwd1 = Term::ReadKey::ReadLine(0);
+	print ("\n$msg2");
+	$pwd2 = Term::ReadKey::ReadLine(0);
+	print ("\n");
+
+	# Restore original settings
+	Term::ReadKey::ReadMode('restore');
+
+	if ($pwd1 ne $pwd2) {
+		print ("Error: passwords do not match.\n");
+		exit 1;
+	}
+
+	# Remove the trailing new line character
+	chop $pwd1;
+
+	return $pwd1;
+}
+
+################################################################################
+## SUB apply_filters
+## Applies filters to the given file.
+################################################################################
+sub apply_filters ($) {
+	my ($file_name) = @_;
+
+	foreach my $filter (@t_filters) {
+		my ($regexp, $dir) = @{$filter};
+		if ($file_name =~ /$regexp/) {
+			print_log ("File '$file_name' matches filter '$regexp' (changing to directory '$dir')");
+			return $dir . '/';
+		}
+	}
+
+	return '';
+}
+
+################################################################################
+## SUB install_service
+## Install the Windows service.
+################################################################################
+sub install_service() {
+
+	my $service_path = $0;
+	my $service_params = $SERVICE_PARAMS;
+
+	# Change the service parameter from 'install' to 'run'.
+	$service_params =~ s/\-S\s+\S+/\-S run/;
+
+	my %service_hash = (
+		machine =>  '',
+		name	=>  'TENTACLESRV',
+		display =>  $SERVICE_NAME,
+		path	=>  $service_path,
+		user	=>  '',
+		pwd	 =>  '',
+		description => 'Tentacle Server http://sourceforge.net/projects/tentacled/',
+		parameters => $service_params
+	);
+	
+	if (Win32::Daemon::CreateService(\%service_hash)) {
+		print "Successfully added.\n";
+		exit 0;
+	} else {
+		print "Failed to add service: " . Win32::FormatMessage(Win32::Daemon::GetLastError()) . "\n";
+		exit 1;
+	}
+}
+
+################################################################################
+## SUB uninstall_service
+## Install the Windows service.
+################################################################################
+sub uninstall_service() {
+	if (Win32::Daemon::DeleteService('', 'TENTACLESRV')) {
+		print "Successfully deleted.\n";
+		exit 0;
+	} else {
+		print "Failed to delete service: " . Win32::FormatMessage(Win32::Daemon::GetLastError()) . "\n";
+		exit 1;
+	}
+}
+
+################################################################################
+## SUB callback_running
+## Windows service callback function for the running event.
+################################################################################
+sub callback_running {
+
+	if (Win32::Daemon::State() == WIN32_SERVICE_RUNNING) {
+	}
+}
+
+################################################################################
+## SUB callback_start
+## Windows service callback function for the start event.
+################################################################################
+sub callback_start {
+
+	# Accept_connections ();
+	my $thr = threads->create(\&accept_connections);
+	if (!defined($thr)) {
+		Win32::Daemon::State(WIN32_SERVICE_STOPPED);
+		Win32::Daemon::StopService();
+		return;
+	}
+	$thr->detach();
+
+	Win32::Daemon::State(WIN32_SERVICE_RUNNING);
+}
+
+################################################################################
+## SUB callback_stop
+## Windows service callback function for the stop event.
+################################################################################
+sub callback_stop {
+
+	foreach my $t_server_socket (@t_server_sockets) {
+		$t_server_socket->shutdown (2);
+		$t_server_socket->close ();
+	}
+
+	Win32::Daemon::State(WIN32_SERVICE_STOPPED);
+	Win32::Daemon::StopService();
+}
+
+################################################################################
+# Main
+################################################################################
+
+# Never run as root
+if ($> == 0 && $^O ne 'MSWin32') {
+	print ("Error: for safety reasons $0 cannot be run with root privileges.\n");
+	exit 1;
+}
+
+# Parse command line options
+parse_options ();
+
+# Check command line arguments
+if ($#ARGV != -1) {
+	print_help ();
+	exit 1;
+}
+
+# Show IPv6 status
+if ($SOCKET_MODULE eq 'IO::Socket::INET') {
+	print_log ("IO::Socket::INET6 is not found. IPv6 is disabled.");
+}
+
+# Run as daemon?
+if ($t_daemon == 1 && $^O ne 'MSWin32') {
+	daemonize ();
+}
+
+# Handle ctr-c
+if ($^O eq 'MSWin32') {
+	no warnings;
+	$SIG{INT2} = \&stop_server;
+	use warnings;
+}
+else {
+	$SIG{INT} = \&stop_server;
+}
+
+# Accept connections
+accept_connections();
+
+__END__
+
+=head1 REQUIRED ARGUMENTES
+
+=over 
+
+=item B<< -s F<storage_directory> >>	Root directory to store the files received by the server
+
+=back 
+
+=head1 OPTIONS
+
+=over
+
+=item 	I<-a ip_address>	Address to B<listen> on (default I<0.0.0.0>).
+
+=item	I<-c number>		B<Maximum> number of simultaneous B<connections> (default I<10>).
+
+=item	I<-d>			Run as B<daemon>.
+
+=item	I<-e cert>		B<OpenSSL certificate> file. Enables SSL.
+
+=item	I<-f ca_cert>	Verify that the peer certificate is signed by a B<CA>.
+
+=item	I<-h>			Show B<help>.
+
+=item	I<-i>			B<Filters>.
+
+=item	I<-k key>		B<OpenSSL private key> file.
+
+=item	I<-m size>		B<Maximum file size> in bytes (default I<2000000b>).
+
+=item	I<-o>			Enable file B<overwrite>.
+
+=item	I<-p port>		B<Port to listen> on (default I<41121>).
+
+=item	I<-q>			B<Quiet>. Do now print error messages.
+
+=item	I<-r number>		B<Number of retries> for network opertions (default I<3>).
+
+=item	I<-t time>		B<Time-out> for network operations in B<seconds> (default I<1s>).
+
+=item	I<-v>			Be B<verbose>.
+
+=item	I<-w>			Prompt for B<OpenSSL private key password>.
+
+=item	I<-x> pwd		B<Server password>.
+
+=back
+
+=head1 EXIT STATUS
+
+=over 
+
+=item 0 on Success
+
+=item 1 on Error
+
+=back 
+
+=head1 CONFIGURATION
+
+Tentacle doesn't use any configurationf files, all the configuration is done by the options passed when it's started.
+
+=head1 DEPENDENCIES
+
+L<Getopt::Std>, L<IO::Select>, L<IO::Socket::INET>, L<Thread::Semaphore>, L<POSIX> 
+
+
+=head1 LICENSE
+
+This is released under the GNU Lesser General Public License.
+
+=head1 SEE ALSO
+
+L<Getopt::Std>, L<IO::Select>, L<IO::Socket::INET>, L<Thread::Semaphore>, L<POSIX> 
+
+Protocol description and more info at: L<< https://pandorafms.com/docs/index.php?title=Pandora:Documentation_en:Tentacle >>
+
+=head1 COPYRIGHT
+
+Copyright (c) 2005-2010 Artica Soluciones Tecnologicas S.L
+
+=cut
+ 
diff --git a/tentacle/build_tentacle_server.sh b/tentacle/build_tentacle_server.sh
new file mode 100755
index 0000000000..9f833edc99
--- /dev/null
+++ b/tentacle/build_tentacle_server.sh
@@ -0,0 +1,26 @@
+#!/bin/bash
+
+CODEHOME=$HOME/code/pandorafms
+
+# Add build string for nightly builds
+if [ "$1" == "nightly" ]; then
+	LOCAL_VERSION="$VERSION-$BUILD"
+else
+	LOCAL_VERSION=$1
+fi
+
+if [ ! -d $CODEHOME/tentacle/dist ]; then
+	mkdir -p $CODEHOME/tentacle/dist || exit 1
+fi
+
+echo "Creating source tarballs in $(pwd)/dist"
+
+# Server
+cd $CODEHOME && tar zcvf $CODEHOME/tentacle/dist/tentacle_server-$LOCAL_VERSION.tar.gz \
+--exclude \.svn \
+--exclude \.exe \
+--exclude dist \
+--exclude build_tentacle_server.sh \
+tentacle || exit 1
+
+exit 0
\ No newline at end of file
diff --git a/tentacle/conf/tentacle_server.conf.new b/tentacle/conf/tentacle_server.conf.new
new file mode 100644
index 0000000000..1acf082ca2
--- /dev/null
+++ b/tentacle/conf/tentacle_server.conf.new
@@ -0,0 +1,75 @@
+##########################################################################
+# Tentacle Server Parameters
+# See https://pandorafms.com/manual/en/documentation/08_technical_reference/09_tentacle
+# for protocol description.
+# Tentacle have IANA assigned port tpc/41121 as official port.
+##########################################################################
+
+# [-a] IPv4 address to listen on. Several IPs cam be selected separating if by comma.
+addresses 0.0.0.0
+
+# [-p] Port to listen on
+port 41121
+
+# [-c] Maximum number of simultaneous connections
+# max_connections 10
+
+# [-d] Run as daemon. 1 true, 0 false
+daemon 1
+
+# [-i] Enable insecure mode
+# insecure 0
+
+# Filters (regexp:dir;regexp:dir...)
+filters .*\.conf:conf;.*\.md5:md5;.*\.zip:collections;.*\.lock:trans;.*\.rcmd:commands
+
+# [-m] Maximum file size allowed by the server in bytes
+#max_size 2000000
+
+# [-o] Accept files with a repeated name
+# overwrite 0
+
+# [-q] Do not output error messages.
+# quiet 0
+
+# [-r] Number of retries for socket read/write operations
+# retries 3
+
+# [-s] Storage directory
+directory /var/spool/pandora/data_in
+
+# [-b] Address to proxy client requests to
+# proxy_ip 127.0.0.1
+
+# [-g] Port to proxy client requests to
+# proxy_port 41121
+
+# [-t] Timeout for socket read/write operations in seconds
+# timeout 1
+
+# [-v and -V] Verbose level
+#   0: Do not display any informative messages
+#   1: Display only important messages [-v]
+#   2: Display all messages [-V]
+# verbose 0
+
+# [-l] Log file
+log_file /dev/null
+
+# [-x] Server password
+# password PASSWORD
+
+# [-e] SSL certificate file full path
+# ssl_cert /path/to/ssl/cert
+
+# [-f] SSL CA file full path
+# ssl_ca /path/to/ssl/ca
+
+# [-k] SSL private key file
+# ssl_key /path/to/private/key/file
+
+# [-w] SSL password. Set to 1 to ask for password by command line
+# ssl_password 0
+
+# [-T] Use libwrap library (Authen::Libwrap perl module)
+# use_libwrap 0
\ No newline at end of file
diff --git a/tentacle/man/man1/tentacle_server.1.gz b/tentacle/man/man1/tentacle_server.1.gz
new file mode 100644
index 0000000000000000000000000000000000000000..eea67284be92f11ac83639c5c5fb9648e2629014
GIT binary patch
literal 1309
zcmV+&1>*W2iwFqFhU!ZK19W9>bYWv`WnXh;a&~2ME-?U=R&7rkM-cvgzhcCf+EF-c
z8rn3issM2mBwk$3N)rhQt<Ph;;%@h{yJtgxeV^I2IrEZ80m*QCGtbOC^USP&x!R$S
z<@kK{iY5ytHML8oN*gA>ux&M?xpgH|m{t@lO<_Te<Hp&Ny|)g2(fv#rYSayjIR!RB
zl@-gIEN{vzpM0Xp=zMZ`d^)-=Mwg#Qmo%iE{lRdsJ2==K4tHp0kniUM{4Llm+0k5A
zi0YK_b37qlu%)d4SA3%L!?RJg33Ba|!__WQ^FMNqzQxz`i*a#M#H^*_1y>D~wyu?#
z#lo}vh@OCFf7vEzYy964<HM*pzC0OEPA<+fv7W50DbpTFl$FN8-Vbx3uuy@Nu6?5Q
z9f71G3u;Qe_x(S!imE)@eLuS6vc(}F;CbT|>_M<c($ywu54+;t2d=49RpqHSZ%rA~
z6{n@1@r<VTh{$xy&T!R-$Elt=<?f%mtaMmtvk3=A#7?vCBf(LYJ=D5Vo=V3m039Vj
z6P1EcYU@}sYbw6OxdnKoZ<&hYF$u#TC*!CQuf^msJ9~};LM>JGI@)^VQZ8ujY)z^~
z{wC;BNt#r1xll&?dJUf&xR$R;o4`(?6j8Cg(I`le3Uuw3?<3h?@`J%2RI&?tE^zE~
zDpEF$@_uFA>}fPBjZ{E6g~H0#q2$sU!;vyV(|y}C)+H)zPM`^7Cmp0pk`{Usupox?
zW;om*_DO-P8GC(W5{sBG*P2wZ^lMv}(s=0>EE6MZ8TiuaCM3p;mBi-yrgbTE;n&A7
zh8aT0w>pTtja|h!GoGuq3QxpZb6D880cZ?#>lA%FD`KD{HRXy%!gk}d=O?(4&Kd_u
z7GfH+tD@WCd2vF=)caQhZUuc-DgYi`)TXRjB-jViSKFdeLohLwRe(q=-f&3z(ng$8
zg%~5Lz|PT3ttu*Pi-m>vSVk+JdL1z1AvEvy_BK;J%YA1g%Gr~a$z)%|p)T<7Y1|dG
zUP<d6Kr*XSCxgGM@b3xf=332W4hvBZ-(`pCK^j_V3?>9*sJG#GkjGyXx<M%;ifQX9
zyM%D2?sVPO>oXK5^8#mO*tUL4e7?gSZbQxhatS42NN0*`Yr0n)qlx}gtc!+?D0^!n
zq7HJjS2m9q-FNQu<gTtegwO2s{64KT=|#iHc^gh9BxxLb2n$kma0~bs3&>FRaCfY6
z{83ksm+ua5V`$9r<HRArr9{Dtl=y=~E%sjj$B$W!Dwku?=JXyLpkr}=5PzmyTw1s$
zDw3ycgO!7>I+G@5CX<~ajb+APZhxBm&h;D2|7kUcoIcn%kf;Z1gPpT7g5Kj=-6Fv~
z6U+I7NYeiFabh8Btg>6ERvPh0DZg%o4-qctdd<-U|Lxi~Ji|~41dL$?T3kC@%JW-*
zOMo0PfupJQTNJH?7VNDiLBG_z&HC+}?h>!7SxRm_h@D-U+R>N8v+?N&clu-u!;`1i
z_Z7Yz)O3XjdGq$*_uojKJwEqB-Nc7wR=jW>#jB9&XQJ^OdpkTk`cc3;AV1tEKNazN
zw@}a6u)cr#KNXqrDdU(oT*rf3e1h<Y=eZcDM<%P6QjW1-N_l<NZO^<c?C(^Pl9w-X
z7ZY^tVb41L)@p3dbYC3gZ{^Bc=$i$?fN+tbPaQ8tBRV`SF1l}lDTCgy{~A%_UA1Q9
T(Gf-|8fE_jMPl+Q`3e94Q~-)>

literal 0
HcmV?d00001

diff --git a/tentacle/tentacle_server_installer b/tentacle/tentacle_server_installer
new file mode 100755
index 0000000000..469ac326c3
--- /dev/null
+++ b/tentacle/tentacle_server_installer
@@ -0,0 +1,438 @@
+#!/bin/sh
+
+# Tentacle Server Installer
+# Linux/FreeBSD Version (generic), for SuSe, Debian/Ubuntu and FreeBSD only
+# other Linux distros could not work properly without modifications
+# Please see http://www.pandorafms.org
+# v1.0 Build 13062022
+# This code is licensed under GPL 2.0 license.
+# **********************************************************************
+
+PI_VERSION="7.0NG.762"
+PI_BUILD="220613"
+
+MODE=$1
+if [ $# -gt 1 ]; then
+	shift
+fi
+
+# Defaults
+PREFIX=/usr
+PANDORA_SPOOL=/var/spool/pandora
+TENTACLE_SERVER=/etc/init.d/tentacle_serverd
+TENTACLE_CFG_DIR=/etc/tentacle
+TENTACLE_CFG_FILE=$TENTACLE_CFG_DIR/tentacle_server.conf
+TENTACLE_CFG_FILE_DIST=conf/tentacle_server.conf.new
+TENTACLE_INIT_SCRIPT=util/tentacle_serverd
+PERL=perl
+MANDIR=$PREFIX/share/man/man1
+INITDIR=/etc/init.d
+WITHOUT_TENTACLE=0
+
+#
+# set_global_vars
+#	Check platform and set DISTRO, OS_VERSION and LINUX.
+#	Also, define some platform sepcific variables (e.g. PANDORA_RC_VAR for (Free|Net)BSD) 
+#	and override some of defaults defined above if needed.
+#
+set_global_vars () {
+	# Default
+	LINUX=NO
+	OS_VERSION=`uname -r`
+	DISTRO=`uname -s`
+
+	# set correct value for LINUX_DISTRO
+	case $DISTRO in
+	Linux)
+		# Default for Linux
+		LINUX=YES
+		DISTRO="GENERIC"
+		# Get Linux Distro type and version
+		# We assume we are on Linux unless told otherwise
+		if [ -f "/etc/SuSE-release" ]
+		then
+			OS_VERSION=`cat /etc/SuSE-release | grep VERSION | cut -f 3 -d " "`
+			DISTRO=SUSE
+		elif [ -f "/etc/lsb-release" ] && [ ! -f "/etc/redhat-release" ]
+		then
+			OS_VERSION=`cat /etc/lsb-release | grep DISTRIB_RELEASE | cut -f 2 -d "="`
+			DISTRO=UBUNTU
+			OS_VERSION="UBUNTU $OS_VERSION"
+		elif [ -f "/etc/debian_version" ]
+		then
+			OS_VERSION=`cat /etc/debian_version`
+			OS_VERSION="DEBIAN $OS_VERSION"
+			DISTRO=DEBIAN
+		elif [ -f "/etc/fedora-release" ]
+		then
+			OS_VERSION=`cat /etc/fedora-release | cut -f 4 -d " "`
+			OS_VERSION="FEDORA $OS_VERSION"
+			DISTRO=FEDORA
+		fi
+		;;
+	Darwin|AIX)
+		# For future reference, Darwin doesn't have /etc/init.d but uses LaunchDaemons.
+		# AIX doesn't have /etc/init.d
+		;;
+	SunOS)
+		# Some Solaris and other Unices don't have /etc/init.d, some have /usr/spool instead of /var/spool
+		DISTRO="Solaris"
+		;;
+	FreeBSD)
+		PREFIX=/usr/local
+		TENTACLE_SERVER=$PREFIX/etc/rc.d/tentacle_server
+		TENTACLE_CFG_DIR=$PREFIX/etc/tentacle
+		TENTACLE_CFG_FILE=$TENTACLE_CFG_DIR/tentacle_server.conf
+		TENTACLE_INIT_SCRIPT=$DISTRO/tentacle_server
+		MANDIR=$PREFIX/man/man1
+		INITDIR=$PREFIX/etc/rc.d
+		PERL=/usr/local/bin/perl
+		TENTACLE_RC_VAR="tentacle_server_enable"
+		;;
+	NetBSD)
+		PREFIX=/usr/local
+		TENTACLE_CFG_DIR=$PREFIX/etc/tentacle
+		TENTACLE_CFG_FILE=$TENTACLE_CFG_DIR/tentacle_server.conf
+		TENTACLE_SERVER=/etc/rc.d/tentacle_server
+		TENTACLE_INIT_SCRIPT=$DISTRO/tentacle_server
+		PERL=/usr/pkg/bin/perl
+		INITDIR=/etc/rc.d
+		PANDORA_RC_VAR="pandora_server"
+		TENTACLE_RC_VAR="tentacle_server"
+		;;
+	esac
+}
+
+#
+# install_startup_script [options...] SRC
+#	copy SRC into the $INITDIR and do additional required operation according to $DISTRO
+#	if $INITDIR is not set or empty, do nothing.
+#	If $DESTDIR is set, skip enabling service
+#	OPTIONS:
+#		-s SPRIO  specify startup priority for service
+#
+install_startup_script () {
+	[ "$INITDIR" ] || return 1
+	if [ "$1" = "-s" ]
+	then
+		SPRIO=$2
+		shift;shift
+	fi
+	SRC=$1
+	SCRIPT_NAME=`basename $SRC`
+
+	echo "Copying the daemon script into $INITDIR"
+	[ -d $DESTDIR$INITDIR ] || mkdir -p $DESTDIR$INITDIR
+	cp $SRC $DESTDIR$INITDIR
+
+	[ "$DESTDIR" ] && return
+
+	case $DISTRO in
+	UBUNTU|DEBIAN)
+		echo "Linking startup script to /etc/rc2.d"
+		update-rc.d $SCRIPT_NAME defaults
+		;;
+	SUSE)
+		echo "Creating startup daemons"
+		insserv $SCRIPT_NAME
+		;;
+	FeeBSD|NetBSD)
+		chmod 555 $DESTDIR$INITDIR/$SCRIPT_NAME
+		;;
+	*)
+		if [ "$LINUX" = YES ]
+		then
+			# Pandora FMS Server install (Other Distros)
+			INITLV=`grep '[0-9]:initdefault' /etc/inittab | cut -f 2 -d ':'`
+			: ${INITLV:=2}
+			echo "Linking startup script to /etc/rc.d/rc$INITLV.d/S$SPRIO$SCRIPT_NAME"
+			ln -s $INITDIR/$SCRIPT_NAME /etc/rc.d/rc$INITLV.d/S$SPRIO$SCRIPT_NAME
+		fi
+		;;
+	esac
+}
+
+install () {
+	set_global_vars
+
+	FORCE=0
+
+	# parse options
+	while :
+	do
+		case $1 in
+		--force) FORCE=1;;
+		--destdir) DESTDIR=$2;shift;;
+		*) break;;
+		esac
+		shift
+	done
+	
+	if [ "$LINUX" = YES ]
+	then
+		echo "$DISTRO distribution detected"
+	else 
+		echo "$DISTRO detected"
+	fi
+	
+	$PERL -v &> /dev/null
+	if [ $? != 0 ]; then
+		echo ' '
+		echo 'Error, no PERL Interpeter found, please install perl on your system'
+		exit 1
+	fi
+
+	#Check dependenciaes.
+	if [ $FORCE -eq 0 ]; then
+		# Execute tools check
+		execute_cmd "ps --version" 'Checking dependencies: ps' "Error ps not found, please install procps"
+		execute_cmd "sudo --version" 'Checking dependencies: sudo' "Error sudo not found, please install sudo"
+	fi
+
+	# install tentacle
+	$PERL Makefile.PL INSTALLMAN1DIR=none > output 2>&1
+	#&& sleep 2 && cat output | grep "found" | wc -l 
+	DEPENDENCIAS=`cat output | grep "found" | wc -l`
+
+	if [ $DEPENDENCIAS -gt 0 ] && [ $FORCE -eq 0 ]
+	then
+		echo "You are missing the following dependencies"
+		echo " "
+		cat output | awk -F ": prerequisite" '{print $2}' | awk -F " " '{print $1}'
+		echo "The complete installation guide is at: https://pandorafms.com/docs/"
+		echo " "
+		rm output
+		exit 1
+	fi		
+
+	echo "Installing binaries and libraries"
+	make
+	make DESTDIR=$DESTDIR install
+		
+	echo "Checking binaries at /usr/local/bin -> /usr/bin"
+	if [ ! -f "$DESTDIR/usr/bin/tentacle_server" ] 
+	then
+		if [ ! -f "$DESTDIR/usr/local/bin/tentacle_server" ]
+		then
+			echo "ERROR compiling Tentacle Server from sources. Aborting"
+			exit 1
+		fi
+		if [ "$DISTRO" != "FreeBSD" ] && [ "$DISTRO" != "NetBSD" ]
+		then
+			[ -d $DESTDIR$PREFIX/bin ] || mkdir -p $DESTDIR$PREFIX/bin
+			ln -s /usr/local/bin/tentacle_server $DESTDIR$PREFIX/bin
+
+		fi
+	fi
+	
+
+	echo "Creating common Pandora FMS directories"
+	id pandora 2> /dev/null
+	if [ $? -eq 0 ]; then
+		echo " "
+		echo "User pandora does exist, make sure the SSH directories are correct"
+	elif [ "$DESTDIR" ]
+	then
+		# chown can fail with fakeroot installation
+		echo "User 'pandora' does not exist. All chown operations may fail."
+		echo "You should manualy set proper ownership to $DESTDIR$PANDORA_SPOOL if needed."
+		echo
+	else
+		echo "Are you sure we can create a standard 'pandora' user locally? [y/N]"
+		read AREYOUSURE
+		if [ "$AREYOUSURE" = "y" ]; then
+			if [ "$DISTRO" = "FreeBSD" ]
+			then
+				echo "pandora:41121:::::Pandora FMS:/home/pandora:/usr/sbin/nologin:" | adduser -f - -w no 2> /dev/null
+			else
+				useradd pandora 
+				mkdir /home/pandora 2> /dev/null
+				mkdir /home/pandora/.ssh 2> /dev/null
+				chown -R pandora /home/pandora 
+			fi
+		else
+			echo "Please create the 'pandora' user manually according to your authentication scheme, then start again the installation"
+			echo "Aborting..."
+			exit 1
+		fi
+	fi
+
+	mkdir -p $DESTDIR$PANDORA_SPOOL/data_in 2> /dev/null
+	chmod 2770 $DESTDIR$PANDORA_SPOOL/data_in
+	mkdir $DESTDIR$PANDORA_SPOOL/data_in/conf 2> /dev/null
+	chmod 2770 $DESTDIR$PANDORA_SPOOL/data_in/conf
+	mkdir $DESTDIR$PANDORA_SPOOL/data_in/md5 2> /dev/null
+	chmod 2770 $DESTDIR$PANDORA_SPOOL/data_in/md5
+	mkdir $DESTDIR$PANDORA_SPOOL/data_in/collections 2> /dev/null
+	chmod 2770 $DESTDIR$PANDORA_SPOOL/data_in/collections
+	mkdir $DESTDIR$PANDORA_SPOOL/data_in/netflow 2> /dev/null
+	chmod 2770 $DESTDIR$PANDORA_SPOOL/data_in/netflow
+	mkdir $DESTDIR$PANDORA_SPOOL/data_in/trans 2> /dev/null
+	chmod 2770 $DESTDIR$PANDORA_SPOOL/data_in/trans
+	mkdir $DESTDIR$PANDORA_SPOOL/data_in/commands 2> /dev/null
+	chmod 2770 $DESTDIR$PANDORA_SPOOL/data_in/commands
+
+
+	echo "Giving proper permission to /var/spool/pandora"
+	for group in "www-data" wwwrun www apache
+	do
+		IDGROUP=`id -g "$group" 2> /dev/null`
+		if [ $? -eq 0 ]
+		then
+			GROUPNAME=`grep ":$IDGROUP:" /etc/group | awk -F":" '{print $1}'`
+			break
+		fi
+	done
+	if [ -z "$GROUPNAME" ]
+	then
+		echo "No web server user found, some functionality might not perform correctly"
+		GROUPNAME=0
+	fi
+	# when fakeroot installation, this can fail
+	chown -R pandora:$GROUPNAME $DESTDIR$PANDORA_SPOOL 2>/dev/null
+
+	chown apache:$GROUPNAME $DESTDIR$PANDORA_SPOOL/data_in/customer_key 2>/dev/null
+	
+	# install tentacle_server
+	install_startup_script -s 80 $TENTACLE_INIT_SCRIPT
+
+	# Create the directory to locate the Tentacle configuration file
+	echo "Creating setup Tentacle directory in $TENTACLE_CFG_DIR"
+	mkdir -p $DESTDIR$TENTACLE_CFG_DIR 2> /dev/null
+	if [ -f "$DESTDIR$TENTACLE_CFG_FILE" ]
+	then
+		echo cp $TENTACLE_CFG_FILE_DIST $DESTDIR$TENTACLE_CFG_DIR
+		cp $TENTACLE_CFG_FILE_DIST $DESTDIR$TENTACLE_CFG_DIR
+	else
+		echo cp $TENTACLE_CFG_FILE_DIST $DESTDIR$TENTACLE_CFG_FILE
+		cp $TENTACLE_CFG_FILE_DIST $DESTDIR$TENTACLE_CFG_FILE
+		chmod 774 $DESTDIR$TENTACLE_CFG_FILE
+	fi
+	
+	echo "Installing Tentacle Server manual"
+	[ -d $DESTDIR$MANDIR ] || mkdir -p $DESTDIR$MANDIR
+	cp man/man1/tentacle_server.1.gz $DESTDIR$MANDIR
+
+	# Fix util paths
+	sed -i -e "s|directory.*|directory $DESTDIR$PANDORA_SPOOL/data_in|g" $DESTDIR$TENTACLE_CFG_FILE 
+	sed -i -e "s|TENTACLE_PATH=\"/usr/bin\"|TENTACLE_PATH=$DESTDIR$PREFIX/bin|g" $DESTDIR$TENTACLE_SERVER
+	sed -i -e "s|^TENTACLE_CONFIG_FILE=.*|TENTACLE_CONFIG_FILE=$DESTDIR$TENTACLE_CFG_FILE|g" $DESTDIR$TENTACLE_SERVER
+
+	echo "Tentacle Server installed"
+
+
+}
+
+uninstall () {
+	set_global_vars
+
+	# parse options
+	while :
+	do
+		case $1 in
+		--destdir) DESTDIR=$2;shift;;
+		*) break;;
+		esac
+		shift
+	done
+
+	if [ "$LINUX" != "YES" ] && [ "$DISTRO" != "FreeBSD" ] && [ "$DISTRO" != "NetBSD" ]
+	then
+		echo "This is not a Linux-based distro. Uninstaller is currently not working for your OS"
+		exit 1
+	fi
+
+
+	echo "Removing Tentacle Server"
+	if [ -d $DESTDIR$PANDORA_SPOOL/data_out ]; then
+		rm -Rf $DESTDIR$PANDORA_SPOOL/data_in
+	else
+		rm -Rf $DESTDIR$PANDORA_SPOOL
+	fi
+
+	echo "If the user Pandora is not being used for any other operations, please delete using the following commands:"
+	if [ "$DISTRO" != "FreeBSD" ] || [ "$DISTRO" != "NetBSD" ]
+	then
+		echo "  rmuser pandora"
+	else
+		echo "	userdel pandora"
+		echo "	rm -Rf /home/pandora/"
+	fi
+
+	## Just to clarify here. Some people (like me) are using the pandora user 
+	## for other purposes and/or using an LDAP-based user management
+	## I would hate to have a script clear out this users' information without any notification
+
+
+	rm -f  $DESTDIR$TENTACLE_CFG_FILE 2> /dev/null
+	rm -f  "$DESTDIR$TENTACLE_CFG_FILE.new" 2> /dev/null
+	# Do not remove tentacle files if agent is still installed...
+	[ -e $DESTDIR$PREFIX/bin/pandora_agent ] || rm -f  $DESTDIR$PREFIX/bin/tentacle_server 2> /dev/null
+	[ -e $DESTDIR$PREFIX/bin/pandora_agent ] || rm -f  $DESTDIR$PREFIX/bin/tentacle_client 2> /dev/null
+	if [ "$DESTDIR" ]
+	then
+		rm -f $DESTDIR$TENTACLE_SERVER
+	elif [ "$DISTRO" = "UBUNTU" ] || [ "$DISTRO" = "DEBIAN" ]
+	then
+		update-rc.d -f tentacle_serverd remove
+	fi
+
+	rm -f $DESTDIR/etc/rc2.d/S80tentacle_serverd 2> /dev/null 
+	rm -f $DESTDIR/etc/rc.d/rc3.d/S80tentacle_serverd 2> /dev/null 
+
+	echo "Done"
+	echo $DESTDIR$TENTACLE_SERVER
+}
+
+help () {
+	echo "  --install	To install Pandora FMS Servers on this system (You have to be root)"
+	echo "  --uninstall	To uninstall and remove Pandora FMS Servers on this System"
+	echo " "
+	echo " Additional second parameter (after --install) "
+	echo " "
+	echo "  --force			Ignore dependency problems and do the install"
+	echo "  --destdir DIR	Specify root directory for \"fakeroot\" installation"
+	echo " "
+}
+
+execute_cmd () {
+    cmd="$1"
+    msg="$2"
+
+    echo "$msg"
+    $cmd &>> /dev/null
+    if [ $? -ne 0 ]; then
+        echo "Fail"
+        [ "$3" ] && echo "$3"
+        echo "Error installing Tentacle server"
+        exit 1
+    else
+        echo "Ok"
+        return 0
+    fi
+}
+
+##Main
+
+# Script banner at start
+echo " "
+echo "Tentacle Server Installer $PI_VERSION $PI_BUILD (c) 2008-2022 Artica ST"
+echo "This program is licensed under GPL2 Terms. http://pandorafms.com"
+echo " "
+
+case "$MODE" in
+
+'--install')
+	install "$@"
+	exit 0
+	;;
+
+'--uninstall')
+	uninstall "$@"
+	exit 0
+	;;
+
+*)
+	help
+esac
+
diff --git a/tentacle/util/tentacle_serverd b/tentacle/util/tentacle_serverd
new file mode 100755
index 0000000000..0c0f35ff97
--- /dev/null
+++ b/tentacle/util/tentacle_serverd
@@ -0,0 +1,185 @@
+#!/bin/bash
+# Copyright (c) 2005-2010 Artica ST
+#
+# Author: Sancho Lerena <slerena@artica.es> 2006-2010
+#
+# /etc/init.d/tentacle_server
+#
+# System startup script for Tentacle Server
+#
+# Comments to support chkconfig on RedHat Linux
+# chkconfig: 2345 90 90
+# description: Tentacle Server startup script
+#
+# Comments to support LSB init script conventions
+### BEGIN INIT INFO
+# Provides:       tentacle_server
+# Required-Start: $network
+# Should-Start:   $syslog
+# Required-Stop:  $network
+# Should-Stop:    $network
+# Default-Start:  2 3 5
+# Default-Stop:   0 1 6
+# Short-Description: Tentacle Server startup script
+# Description:    Tentacle Server startup script
+### END INIT INFO
+
+if [ -x /lib/lsb/init-functions ]; then
+. /lib/lsb/init-functions
+fi
+
+# Uses a wait limit before sending a KILL signal, before trying to stop
+# Pandora FMS server nicely. Some big systems need some time before close
+# all pending tasks / threads.
+
+export MAXWAIT=60
+
+# Check for SUSE status scripts
+if [ -f /etc/rc.status ]
+then
+	. /etc/rc.status
+	rc_reset
+else
+	# Define part of rc functions for non-suse systems
+	function rc_status () {
+		RETVAL=$?
+		case $1 in
+			-v) RETVAL=0;;
+		esac
+	}
+	function rc_exit () { exit $RETVAL; }
+	function rc_failed () { RETVAL=${1:-1}; }
+	RETVAL=0
+fi
+
+function get_pid {
+	# This sets COLUMNS to XXX chars, because if command is run 
+	# in a "strech" term, ps aux don't report more than COLUMNS
+	# characters and this will not work. 
+	COLUMNS=300
+	TENTACLE_PID=`ps -Af | grep "$TENTACLE_PATH$TENTACLE_DAEMON" | grep "$TENTACLE_CONFIG_FILE" | grep -v grep | tail -1 | awk '{ print $2 }'`
+	echo $TENTACLE_PID
+}
+
+function get_all_pid {
+	# This sets COLUMNS to XXX chars, because if command is run 
+	# in a "strech" term, ps aux don't report more than COLUMNS
+	# characters and this will not work. 
+	COLUMNS=300
+	TENTACLE_PIDS=`ps aux | grep "$TENTACLE_PATH$TENTACLE_DAEMON" | grep -v grep | awk '{ print $2 }'`
+	TENTACLE_PID="${TENTACLE_PIDS//\\n/' '}"
+	echo $TENTACLE_PID
+}
+
+# Tentacle server settings
+TENTACLE_DAEMON="tentacle_server"
+TENTACLE_PATH="/usr/bin"
+TENTACLE_USER="pandora"
+TENTACLE_CONFIG_FILE="/etc/tentacle/tentacle_server.conf"
+TENTACLE_EXT_OPTS=""
+
+# Set umask to 0002, because group MUST have access to write files to
+# use remote file management on Pandora FMS Enterprise.
+
+umask 0007
+
+# Main script
+TENTACLE_OPTS="-F $TENTACLE_CONFIG_FILE $TENTACLE_EXT_OPTS"
+
+# Fix TENTACLE_PATH
+case "$TENTACLE_PATH" in
+	*\/)
+	;;
+	*)
+		TENTACLE_PATH="${TENTACLE_PATH}/"
+	;;
+esac
+
+if [ ! -f "${TENTACLE_PATH}$TENTACLE_DAEMON" ]; then
+	echo "Tentacle Server not found in ${TENTACLE_PATH}$TENTACLE_DAEMON"
+	rc_failed 5 # program is not installed
+	rc_exit
+fi
+
+case "$1" in
+	start)
+		TENTACLE_PID=`get_pid`
+		if [ ! -z "$TENTACLE_PID" ]; then
+			echo "Tentacle Server is already running with PID $TENTACLE_PID"
+			rc_exit	# running start on a service already running
+		fi
+
+		# Init the tentacle process
+		sudo -u $TENTACLE_USER ${TENTACLE_PATH}$TENTACLE_DAEMON $TENTACLE_OPTS
+		sleep 1
+
+		TENTACLE_PID=`get_pid`
+		if [ ! -z "$TENTACLE_PID" ]; then
+			echo "Tentacle Server is now running with PID $TENTACLE_PID"
+			rc_status -v
+		else
+			echo "Tentacle Server could not be started."
+			echo "Verify that Tentacle port is not used."
+			rc_failed 7 # program not running
+		fi
+
+	;;
+	
+	stop)
+		TENTACLE_PID=`get_all_pid`
+		if [ -z "$TENTACLE_PID" ]; then
+			echo "Tentacle Server does not seem to be running"
+			rc_exit # running stop on a service already stopped or not running
+		else
+			kill $TENTACLE_PID
+			
+			COUNTER=0
+			while [ $COUNTER -lt $MAXWAIT ]
+	 		do
+ 				_PID=`get_all_pid`
+				if [ "$_PID" != "$TENTACLE_PID" ]
+					# tentacle already stopped
+ 				then
+					COUNTER=$MAXWAIT
+				fi
+				COUNTER=`expr $COUNTER + 1`
+				sleep 1
+			done
+
+			if [ "$_PID" = "$TENTACLE_PID" ]
+			then
+				kill -9 $TENTACLE_PID   > /dev/null 2>&1
+			fi
+			
+			echo "Stopping Tentacle Server"
+			rc_status -v
+		fi
+
+	;;
+
+	force-reload|restart)
+		$0 stop
+		sleep 1
+		$0 start
+		rc_status
+	;;
+
+	status)
+		TENTACLE_PID=`get_pid`
+		if [ -z "$TENTACLE_PID" ]; then
+			echo "Tentacle Server is not running."
+			rc_failed 7 # program is not running
+		else
+			echo "Tentacle Server is running with PID $TENTACLE_PID."
+			rc_status 
+		fi
+		
+	;;
+
+	*)
+		echo "Usage: $0  {start | stop | restart | status}"
+		exit 1
+	;;
+esac
+
+rc_exit
diff --git a/tentacle/util/tentacle_serverd.service b/tentacle/util/tentacle_serverd.service
new file mode 100644
index 0000000000..fb6d2af2e3
--- /dev/null
+++ b/tentacle/util/tentacle_serverd.service
@@ -0,0 +1,14 @@
+[Unit]
+Description=Tentacle server daemon
+After=network-online.target
+Requires=network.target
+
+[Service]
+Type=forking
+ExecStart=/usr/bin/tentacle_server -F /etc/tentacle/tentacle_server.conf
+User=pandora
+Restart=on-failure
+RestartPreventExitStatus=1
+
+[Install]
+WantedBy=multi-user.target

From c7b8c55284496a4b06aed7706811f557b8b74ea4 Mon Sep 17 00:00:00 2001
From: artica <artica.devel@gmail.com>
Date: Tue, 14 Jun 2022 01:00:42 +0200
Subject: [PATCH 115/138] Auto-updated build strings.

---
 pandora_agents/unix/DEBIAN/control             | 2 +-
 pandora_agents/unix/DEBIAN/make_deb_package.sh | 2 +-
 pandora_agents/unix/pandora_agent              | 2 +-
 pandora_agents/unix/pandora_agent.redhat.spec  | 2 +-
 pandora_agents/unix/pandora_agent.spec         | 2 +-
 pandora_agents/unix/pandora_agent_installer    | 2 +-
 pandora_agents/win32/installer/pandora.mpi     | 2 +-
 pandora_agents/win32/pandora.cc                | 2 +-
 pandora_agents/win32/versioninfo.rc            | 2 +-
 pandora_console/DEBIAN/control                 | 2 +-
 pandora_console/DEBIAN/make_deb_package.sh     | 2 +-
 pandora_console/include/config_process.php     | 2 +-
 pandora_console/install.php                    | 2 +-
 pandora_console/pandora_console.redhat.spec    | 2 +-
 pandora_console/pandora_console.rhel7.spec     | 2 +-
 pandora_console/pandora_console.spec           | 2 +-
 pandora_server/DEBIAN/control                  | 2 +-
 pandora_server/DEBIAN/make_deb_package.sh      | 2 +-
 pandora_server/lib/PandoraFMS/Config.pm        | 2 +-
 pandora_server/lib/PandoraFMS/PluginTools.pm   | 2 +-
 pandora_server/pandora_server.redhat.spec      | 2 +-
 pandora_server/pandora_server.spec             | 2 +-
 pandora_server/pandora_server_installer        | 2 +-
 pandora_server/util/pandora_db.pl              | 2 +-
 pandora_server/util/pandora_manage.pl          | 2 +-
 25 files changed, 25 insertions(+), 25 deletions(-)

diff --git a/pandora_agents/unix/DEBIAN/control b/pandora_agents/unix/DEBIAN/control
index 77758e69fe..ad4eead89a 100644
--- a/pandora_agents/unix/DEBIAN/control
+++ b/pandora_agents/unix/DEBIAN/control
@@ -1,5 +1,5 @@
 package: pandorafms-agent-unix
-Version: 7.0NG.762-220613
+Version: 7.0NG.762-220614
 Architecture: all
 Priority: optional
 Section: admin
diff --git a/pandora_agents/unix/DEBIAN/make_deb_package.sh b/pandora_agents/unix/DEBIAN/make_deb_package.sh
index f0a5d37893..25a646be50 100644
--- a/pandora_agents/unix/DEBIAN/make_deb_package.sh
+++ b/pandora_agents/unix/DEBIAN/make_deb_package.sh
@@ -14,7 +14,7 @@
 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 # GNU General Public License for more details.
 
-pandora_version="7.0NG.762-220613"
+pandora_version="7.0NG.762-220614"
 
 echo "Test if you has the tools for to make the packages."
 whereis dpkg-deb | cut -d":" -f2 | grep dpkg-deb > /dev/null
diff --git a/pandora_agents/unix/pandora_agent b/pandora_agents/unix/pandora_agent
index 67a52c8cbe..8763ad999e 100755
--- a/pandora_agents/unix/pandora_agent
+++ b/pandora_agents/unix/pandora_agent
@@ -1015,7 +1015,7 @@ my $Sem = undef;
 my $ThreadSem = undef;
 
 use constant AGENT_VERSION => '7.0NG.762';
-use constant AGENT_BUILD => '220613';
+use constant AGENT_BUILD => '220614';
 
 # Agent log default file size maximum and instances
 use constant DEFAULT_MAX_LOG_SIZE => 600000;
diff --git a/pandora_agents/unix/pandora_agent.redhat.spec b/pandora_agents/unix/pandora_agent.redhat.spec
index 6e19bc9abc..3dec167453 100644
--- a/pandora_agents/unix/pandora_agent.redhat.spec
+++ b/pandora_agents/unix/pandora_agent.redhat.spec
@@ -3,7 +3,7 @@
 #
 %define name        pandorafms_agent_unix
 %define version     7.0NG.762
-%define release     220613
+%define release     220614
 
 Summary:            Pandora FMS Linux agent, PERL version
 Name:               %{name}
diff --git a/pandora_agents/unix/pandora_agent.spec b/pandora_agents/unix/pandora_agent.spec
index f6c87cb14c..1249b8e6e7 100644
--- a/pandora_agents/unix/pandora_agent.spec
+++ b/pandora_agents/unix/pandora_agent.spec
@@ -3,7 +3,7 @@
 #
 %define name        pandorafms_agent_unix
 %define version     7.0NG.762
-%define release     220613
+%define release     220614
 
 Summary:            Pandora FMS Linux agent, PERL version
 Name:               %{name}
diff --git a/pandora_agents/unix/pandora_agent_installer b/pandora_agents/unix/pandora_agent_installer
index e1f22051f6..07f0a9babf 100755
--- a/pandora_agents/unix/pandora_agent_installer
+++ b/pandora_agents/unix/pandora_agent_installer
@@ -10,7 +10,7 @@
 # **********************************************************************
 
 PI_VERSION="7.0NG.762"
-PI_BUILD="220613"
+PI_BUILD="220614"
 OS_NAME=`uname -s`
 
 FORCE=0
diff --git a/pandora_agents/win32/installer/pandora.mpi b/pandora_agents/win32/installer/pandora.mpi
index 567e8751c9..4d65f05a32 100644
--- a/pandora_agents/win32/installer/pandora.mpi
+++ b/pandora_agents/win32/installer/pandora.mpi
@@ -186,7 +186,7 @@ UpgradeApplicationID
 {}
 
 Version
-{220613}
+{220614}
 
 ViewReadme
 {Yes}
diff --git a/pandora_agents/win32/pandora.cc b/pandora_agents/win32/pandora.cc
index 28d4f93091..6a4d7782f9 100644
--- a/pandora_agents/win32/pandora.cc
+++ b/pandora_agents/win32/pandora.cc
@@ -30,7 +30,7 @@ using namespace Pandora;
 using namespace Pandora_Strutils;
 
 #define PATH_SIZE    _MAX_PATH+1
-#define PANDORA_VERSION ("7.0NG.762 Build 220613")
+#define PANDORA_VERSION ("7.0NG.762 Build 220614")
 
 string pandora_path;
 string pandora_dir;
diff --git a/pandora_agents/win32/versioninfo.rc b/pandora_agents/win32/versioninfo.rc
index c7990e794e..ca70a5662b 100644
--- a/pandora_agents/win32/versioninfo.rc
+++ b/pandora_agents/win32/versioninfo.rc
@@ -11,7 +11,7 @@ BEGIN
       VALUE "LegalCopyright", "Artica ST"
       VALUE "OriginalFilename", "PandoraAgent.exe"
       VALUE "ProductName", "Pandora FMS Windows Agent"
-      VALUE "ProductVersion", "(7.0NG.762(Build 220613))"
+      VALUE "ProductVersion", "(7.0NG.762(Build 220614))"
       VALUE "FileVersion", "1.0.0.0"
     END
   END
diff --git a/pandora_console/DEBIAN/control b/pandora_console/DEBIAN/control
index df0a3dc5c1..28ad21f54e 100644
--- a/pandora_console/DEBIAN/control
+++ b/pandora_console/DEBIAN/control
@@ -1,5 +1,5 @@
 package: pandorafms-console
-Version: 7.0NG.762-220613
+Version: 7.0NG.762-220614
 Architecture: all
 Priority: optional
 Section: admin
diff --git a/pandora_console/DEBIAN/make_deb_package.sh b/pandora_console/DEBIAN/make_deb_package.sh
index 9f71fde1d6..af4c21ef4e 100644
--- a/pandora_console/DEBIAN/make_deb_package.sh
+++ b/pandora_console/DEBIAN/make_deb_package.sh
@@ -14,7 +14,7 @@
 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 # GNU General Public License for more details.
 
-pandora_version="7.0NG.762-220613"
+pandora_version="7.0NG.762-220614"
 
 package_pear=0
 package_pandora=1
diff --git a/pandora_console/include/config_process.php b/pandora_console/include/config_process.php
index 21197bb7aa..b7d03fe4f4 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 = 'PC220613';
+$build_version = 'PC220614';
 $pandora_version = 'v7.0NG.762';
 
 // Do not overwrite default timezone set if defined.
diff --git a/pandora_console/install.php b/pandora_console/install.php
index 47a6e72997..6b3aeef58f 100644
--- a/pandora_console/install.php
+++ b/pandora_console/install.php
@@ -129,7 +129,7 @@
         <div style='height: 10px'>
             <?php
             $version = '7.0NG.762';
-            $build = '220613';
+            $build = '220614';
             $banner = "v$version Build $build";
 
             error_reporting(0);
diff --git a/pandora_console/pandora_console.redhat.spec b/pandora_console/pandora_console.redhat.spec
index 5d3d25f936..ccc9b3922e 100644
--- a/pandora_console/pandora_console.redhat.spec
+++ b/pandora_console/pandora_console.redhat.spec
@@ -3,7 +3,7 @@
 #
 %define name        pandorafms_console
 %define version     7.0NG.762
-%define release     220613
+%define release     220614
 
 # User and Group under which Apache is running
 %define httpd_name  httpd
diff --git a/pandora_console/pandora_console.rhel7.spec b/pandora_console/pandora_console.rhel7.spec
index de2d2be11e..cc364d3d5d 100644
--- a/pandora_console/pandora_console.rhel7.spec
+++ b/pandora_console/pandora_console.rhel7.spec
@@ -3,7 +3,7 @@
 #
 %define name        pandorafms_console
 %define version     7.0NG.762
-%define release     220613
+%define release     220614
 
 # User and Group under which Apache is running
 %define httpd_name  httpd
diff --git a/pandora_console/pandora_console.spec b/pandora_console/pandora_console.spec
index a864c32583..d9f4fcdb85 100644
--- a/pandora_console/pandora_console.spec
+++ b/pandora_console/pandora_console.spec
@@ -3,7 +3,7 @@
 #
 %define name        pandorafms_console
 %define version     7.0NG.762
-%define release     220613
+%define release     220614
 %define httpd_name      httpd
 # User and Group under which Apache is running
 %define httpd_name  apache2
diff --git a/pandora_server/DEBIAN/control b/pandora_server/DEBIAN/control
index aa9e8a47ec..487239a2d6 100644
--- a/pandora_server/DEBIAN/control
+++ b/pandora_server/DEBIAN/control
@@ -1,5 +1,5 @@
 package: pandorafms-server
-Version: 7.0NG.762-220613
+Version: 7.0NG.762-220614
 Architecture: all
 Priority: optional
 Section: admin
diff --git a/pandora_server/DEBIAN/make_deb_package.sh b/pandora_server/DEBIAN/make_deb_package.sh
index 27de524149..8102a1c5d8 100644
--- a/pandora_server/DEBIAN/make_deb_package.sh
+++ b/pandora_server/DEBIAN/make_deb_package.sh
@@ -14,7 +14,7 @@
 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 # GNU General Public License for more details.
 
-pandora_version="7.0NG.762-220613"
+pandora_version="7.0NG.762-220614"
 
 package_cpan=0
 package_pandora=1
diff --git a/pandora_server/lib/PandoraFMS/Config.pm b/pandora_server/lib/PandoraFMS/Config.pm
index 57ea747870..8fec3e4bf4 100644
--- a/pandora_server/lib/PandoraFMS/Config.pm
+++ b/pandora_server/lib/PandoraFMS/Config.pm
@@ -46,7 +46,7 @@ our @EXPORT = qw(
 
 # version: Defines actual version of Pandora Server for this module only
 my $pandora_version = "7.0NG.762";
-my $pandora_build = "220613";
+my $pandora_build = "220614";
 our $VERSION = $pandora_version." ".$pandora_build;
 
 # Setup hash
diff --git a/pandora_server/lib/PandoraFMS/PluginTools.pm b/pandora_server/lib/PandoraFMS/PluginTools.pm
index 0d6be46a1d..4a1afb0c36 100644
--- a/pandora_server/lib/PandoraFMS/PluginTools.pm
+++ b/pandora_server/lib/PandoraFMS/PluginTools.pm
@@ -34,7 +34,7 @@ our @ISA = qw(Exporter);
 
 # version: Defines actual version of Pandora Server for this module only
 my $pandora_version = "7.0NG.762";
-my $pandora_build = "220613";
+my $pandora_build = "220614";
 our $VERSION = $pandora_version." ".$pandora_build;
 
 our %EXPORT_TAGS = ( 'all' => [ qw() ] );
diff --git a/pandora_server/pandora_server.redhat.spec b/pandora_server/pandora_server.redhat.spec
index 820393a670..1b5ebbdc00 100644
--- a/pandora_server/pandora_server.redhat.spec
+++ b/pandora_server/pandora_server.redhat.spec
@@ -3,7 +3,7 @@
 #
 %define name        pandorafms_server
 %define version     7.0NG.762
-%define release     220613
+%define release     220614
 
 Summary:            Pandora FMS Server
 Name:               %{name}
diff --git a/pandora_server/pandora_server.spec b/pandora_server/pandora_server.spec
index c929b470fa..785b404cb2 100644
--- a/pandora_server/pandora_server.spec
+++ b/pandora_server/pandora_server.spec
@@ -3,7 +3,7 @@
 #
 %define name        pandorafms_server
 %define version     7.0NG.762
-%define release     220613
+%define release     220614
 
 Summary:            Pandora FMS Server
 Name:               %{name}
diff --git a/pandora_server/pandora_server_installer b/pandora_server/pandora_server_installer
index d9d76e8c91..5642aa9ec6 100755
--- a/pandora_server/pandora_server_installer
+++ b/pandora_server/pandora_server_installer
@@ -9,7 +9,7 @@
 # **********************************************************************
 
 PI_VERSION="7.0NG.762"
-PI_BUILD="220613"
+PI_BUILD="220614"
 
 MODE=$1
 if [ $# -gt 1 ]; then
diff --git a/pandora_server/util/pandora_db.pl b/pandora_server/util/pandora_db.pl
index 185ecd2b86..c2cd3f5a11 100755
--- a/pandora_server/util/pandora_db.pl
+++ b/pandora_server/util/pandora_db.pl
@@ -35,7 +35,7 @@ use PandoraFMS::Config;
 use PandoraFMS::DB;
 
 # version: define current version
-my $version = "7.0NG.762 Build 220613";
+my $version = "7.0NG.762 Build 220614";
 
 # Pandora server configuration
 my %conf;
diff --git a/pandora_server/util/pandora_manage.pl b/pandora_server/util/pandora_manage.pl
index 59a75bb3a8..cffa3811ef 100755
--- a/pandora_server/util/pandora_manage.pl
+++ b/pandora_server/util/pandora_manage.pl
@@ -36,7 +36,7 @@ use Encode::Locale;
 Encode::Locale::decode_argv;
 
 # version: define current version
-my $version = "7.0NG.762 Build 220613";
+my $version = "7.0NG.762 Build 220614";
 
 # save program name for logging
 my $progname = basename($0);

From c09d1334d6297408fd6ccd5327d712af86cf3baa Mon Sep 17 00:00:00 2001
From: "alejandro.campos@artica.es" <alejandro.campos@artica.es>
Date: Tue, 14 Jun 2022 10:05:05 +0200
Subject: [PATCH 116/138] revert migrate file

---
 .../pandoradb_migrate_6.0_to_759.mysql.sql    | 73 -------------------
 1 file changed, 73 deletions(-)

diff --git a/pandora_console/extras/pandoradb_migrate_6.0_to_759.mysql.sql b/pandora_console/extras/pandoradb_migrate_6.0_to_759.mysql.sql
index df09c2b8e4..242e7d42c6 100644
--- a/pandora_console/extras/pandoradb_migrate_6.0_to_759.mysql.sql
+++ b/pandora_console/extras/pandoradb_migrate_6.0_to_759.mysql.sql
@@ -838,8 +838,6 @@ CREATE TABLE IF NOT EXISTS `treport_template` (
 	PRIMARY KEY(`id_report`)
 ) ENGINE = InnoDB DEFAULT CHARSET=utf8;
 
-ALTER TABLE `treport_template` MODIFY COLUMN `id_user` VARCHAR(255) NOT NULL DEFAULT '';
-
 -- -----------------------------------------------------
 -- Table `treport_content_template`
 -- -----------------------------------------------------
@@ -1056,7 +1054,6 @@ ALTER TABLE `tmetaconsole_event` ADD INDEX `tme_module_status_idx` (`module_stat
 ALTER TABLE `tmetaconsole_event` ADD INDEX `tme_criticity_idx` (`criticity`);
 ALTER TABLE `tmetaconsole_event` ADD INDEX `tme_agent_name_idx` (`agent_name`);
 ALTER TABLE `tmetaconsole_event` MODIFY `data` TINYTEXT default NULL;
-ALTER TABLE `tmetaconsole_event` MODIFY COLUMN `id_usuario` VARCHAR(255) NOT NULL DEFAULT '0';
 
 -- ---------------------------------------------------------------------
 -- Table `tmetaconsole_event_history`
@@ -1107,8 +1104,6 @@ ALTER TABLE `tmetaconsole_event_history` ADD COLUMN `data` double(50,5) default
 ALTER TABLE `tmetaconsole_event_history` ADD COLUMN `module_status` int(4) NOT NULL default '0';
 ALTER TABLE `tmetaconsole_event_history` ADD INDEX `tmeh_estado_idx` (`estado`);
 ALTER TABLE `tmetaconsole_event_history` ADD INDEX `tmeh_timestamp_idx` (`timestamp`);
-ALTER TABLE `tmetaconsole_event_history` MODIFY COLUMN `id_usuario` VARCHAR(255) NOT NULL DEFAULT '0';
-
 -- ---------------------------------------------------------------------
 -- Table `textension_translate_string`
 -- ---------------------------------------------------------------------
@@ -1459,7 +1454,6 @@ ALTER TABLE `talert_commands` MODIFY COLUMN `id_group` mediumint(8) unsigned NUL
 -- Table `tmap`
 -- ---------------------------------------------------------------------
 ALTER TABLE `tmap` MODIFY COLUMN `id_user` varchar(250) NOT NULL DEFAULT '';
-ALTER TABLE `tmap` MODIFY COLUMN `id_user` VARCHAR(255) NOT NULL DEFAULT '';
 
 -- ---------------------------------------------------------------------
 -- Table `ttag`
@@ -1755,7 +1749,6 @@ ALTER TABLE tgraph ADD COLUMN `average_series`  tinyint(1) UNSIGNED NOT NULL def
 ALTER TABLE tgraph ADD COLUMN `modules_series`  tinyint(1) UNSIGNED NOT NULL default '0';
 ALTER TABLE tgraph ADD COLUMN `fullscale` tinyint(1) UNSIGNED NOT NULL default '0';
 ALTER TABLE `tgraph` MODIFY COLUMN `percentil` tinyint(1) unsigned NOT NULL DEFAULT '0';
-ALTER TABLE `tgraph` MODIFY COLUMN `id_user` VARCHAR(255) NOT NULL DEFAULT '';
 
 -- ---------------------------------------------------------------------
 -- Table `tnetflow_filter`
@@ -1959,8 +1952,6 @@ CREATE TABLE IF NOT EXISTS `treset_pass_history` (
 	PRIMARY KEY (`id`)
 ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
 
-ALTER TABLE `treset_pass_history` MODIFY COLUMN `id_user` VARCHAR(255) NOT NULL;
-
 -- ---------------------------------------------------------------------
 -- Table `tcontainer_item`
 -- ---------------------------------------------------------------------
@@ -1987,9 +1978,6 @@ CREATE TABLE IF NOT EXISTS `tcontainer_item` (
 
 ALTER TABLE tusuario add default_event_filter int(10) unsigned NOT NULL DEFAULT 0;
 
--- ---------------------------------------------------------------------
--- Table `treset_pass`
--- ---------------------------------------------------------------------
 CREATE TABLE IF NOT EXISTS `treset_pass` (
     `id` bigint(10) unsigned NOT NULL auto_increment,
     `id_user` varchar(100) NOT NULL default '',
@@ -1998,8 +1986,6 @@ CREATE TABLE IF NOT EXISTS `treset_pass` (
     PRIMARY KEY (`id`) 
 )ENGINE=InnoDB DEFAULT CHARSET=utf8;
 
-ALTER TABLE `treset_pass` MODIFY COLUMN `id_user` VARCHAR(255) NOT NULL DEFAULT '';
-
 UPDATE tgis_map_connection SET conection_data = '{"type":"OSM","url":"http://tile.openstreetmap.org/${z}/${x}/${y}.png"}' where id_tmap_connection = 1;
 
 ALTER TABLE tpolicy_modules MODIFY post_process double(24,15) default 0;
@@ -2061,7 +2047,6 @@ INSERT INTO `ttipo_modulo` VALUES
 -- Table `tdashboard`
 -- ---------------------------------------------------------------------
 ALTER TABLE `tdashboard` ADD COLUMN `cells_slideshow` TINYINT(1) NOT NULL default 0;
-ALTER TABLE `tdashboard` MODIFY COLUMN `id_user` VARCHAR(255) NOT NULL DEFAULT '';
 
 -- ---------------------------------------------------------------------
 -- Table `tsnmp_filter`
@@ -2371,7 +2356,6 @@ ALTER TABLE `treport` ADD COLUMN `orientation` varchar(25) NOT NULL default 'ver
 ALTER TABLE `treport` MODIFY COLUMN `hidden` tinyint(1) NULL DEFAULT '0' AFTER `non_interactive`;
 ALTER TABLE `treport` ADD COLUMN `cover_page_render` tinyint(1) NOT NULL DEFAULT 1;
 ALTER TABLE `treport` ADD COLUMN `index_render` tinyint(1) NOT NULL DEFAULT 1;
-ALTER TABLE `treport` MODIFY COLUMN `id_user` VARCHAR(255) NOT NULL DEFAULT '';
 
 ALTER TABLE `trecon_task` ADD COLUMN `snmp_version` varchar(5) NOT NULL default '1';
 ALTER TABLE `trecon_task` ADD COLUMN `snmp_auth_user` varchar(255) NOT NULL default '';
@@ -2409,8 +2393,6 @@ ALTER TABLE `tevento` ADD COLUMN `module_status` int(4) NOT NULL default '0';
 
 ALTER TABLE `tevento` MODIFY `data` TINYTEXT default NULL;
 
-ALTER TABLE `tevento` MODIFY COLUMN `id_usuario` VARCHAR(255) NOT NULL DEFAULT '0';
-
 -- ---------------------------------------------------------------------
 -- Table `tevent_extended`
 -- ---------------------------------------------------------------------
@@ -2480,8 +2462,6 @@ CREATE TABLE IF NOT EXISTS `tuser_task_scheduled` (
 	PRIMARY KEY (`id`)
 ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
 
-ALTER TABLE `tuser_task_scheduled` MODIFY COLUMN `id_usuario` VARCHAR(255) NOT NULL DEFAULT '0';
-
 -- -----------------------------------------------------
 -- Table `tnotification_source`
 -- -----------------------------------------------------
@@ -2521,8 +2501,6 @@ ALTER TABLE `tmensajes` ADD CONSTRAINT `tsource_fk` FOREIGN KEY (`id_source`) RE
 ALTER TABLE `tmensajes` DROP COLUMN `id_usuario_destino`,
 	ADD UNIQUE INDEX `id_mensaje` (`id_mensaje`);
 
-ALTER TABLE `tmensajes` MODIFY COLUMN `id_usuario_origen` VARCHAR(255) NOT NULL DEFAULT '';
-
 -- ----------------------------------------------------------------------
 -- Table `tnotification_user`
 -- ----------------------------------------------------------------------
@@ -2818,7 +2796,6 @@ UPDATE `trecon_script` SET `description`='Specific&#x20;Pandora&#x20;FMS&#x20;In
 -- Table `tusuario_perfil`
 -- ---------------------------------------------------------------------
 ALTER TABLE `tusuario_perfil` MODIFY COLUMN `no_hierarchy` tinyint(1) NOT NULL DEFAULT '0';
-ALTER TABLE `tusuario_perfil` MODIFY COLUMN `id_usuario` VARCHAR(255) NOT NULL DEFAULT '';
 
 
 -- Extra tnetwork_component
@@ -4376,53 +4353,3 @@ ALTER TABLE `tnotification_user` ADD CONSTRAINT `tnotification_user_ibfk_2` FORE
 ALTER TABLE `tnotification_source_user` ADD CONSTRAINT `tnotification_source_user_ibfk_2` FOREIGN KEY (`id_user`) REFERENCES `tusuario` (`id_user`) ON DELETE CASCADE ON UPDATE CASCADE;
 ALTER TABLE `tnotification_source_group_user` ADD CONSTRAINT `tnotification_source_group_user_ibfk_2` FOREIGN KEY (`id_user`) REFERENCES `tusuario` (`id_user`) ON DELETE CASCADE ON UPDATE CASCADE;
 ALTER TABLE `tvisual_console_elements_cache` ADD CONSTRAINT `tvisual_console_elements_cache_ibfk_3` FOREIGN KEY (`user_id`) REFERENCES `tusuario` (`id_user`) ON DELETE CASCADE ON UPDATE CASCADE;
-
--- ----------------------------------------------------------------------
--- Table `tattachment`
--- ----------------------------------------------------------------------
-ALTER TABLE `tattachment` MODIFY COLUMN `id_usuario` VARCHAR(255) NOT NULL DEFAULT '';
-
--- ----------------------------------------------------------------------
--- Table `tincidencia`
--- ----------------------------------------------------------------------
-ALTER TABLE `tincidencia` MODIFY COLUMN `id_usuario` VARCHAR(255) NOT NULL DEFAULT '';
-
--- ----------------------------------------------------------------------
--- Table `tnota`
--- ----------------------------------------------------------------------
-ALTER TABLE `tnota` MODIFY COLUMN `id_usuario` VARCHAR(255) NOT NULL DEFAULT '0';
-
--- ----------------------------------------------------------------------
--- Table `tsesion`
--- ----------------------------------------------------------------------
-ALTER TABLE `tsesion` MODIFY COLUMN `id_usuario` VARCHAR(255) NOT NULL DEFAULT '0';
-
--- ----------------------------------------------------------------------
--- Table `ttrap`
--- ----------------------------------------------------------------------
-ALTER TABLE `ttrap` MODIFY COLUMN `id_usuario` VARCHAR(255) DEFAULT '';
-
--- ----------------------------------------------------------------------
--- Table `tplanned_downtime`
--- ----------------------------------------------------------------------
-ALTER TABLE `tplanned_downtime` MODIFY COLUMN `id_user` VARCHAR(255) NOT NULL DEFAULT '0';
-
--- ----------------------------------------------------------------------
--- Table `tnetwork_map`
--- ----------------------------------------------------------------------
-ALTER TABLE `tnetwork_map` MODIFY COLUMN `id_user` VARCHAR(255) NOT NULL;
-
--- ----------------------------------------------------------------------
--- Table `tpassword_history`
--- ----------------------------------------------------------------------
-ALTER TABLE `tpassword_history` MODIFY COLUMN `id_user` VARCHAR(255) NOT NULL;
-
--- ----------------------------------------------------------------------
--- Table `tupdate_journal`
--- ----------------------------------------------------------------------
-ALTER TABLE `tupdate_journal` MODIFY COLUMN `id_user` VARCHAR(255) NOT NULL DEFAULT '';
-
--- ----------------------------------------------------------------------
--- Table `tbackup`
--- ----------------------------------------------------------------------
-ALTER TABLE `tbackup` MODIFY COLUMN `id_user` VARCHAR(255) DEFAULT '';

From ac246aefb12573ec3af4d60820bd9b706d02d4ef Mon Sep 17 00:00:00 2001
From: "alejandro.campos@artica.es" <alejandro.campos@artica.es>
Date: Tue, 14 Jun 2022 10:06:28 +0200
Subject: [PATCH 117/138] revert migrate file

---
 .../pandoradb_migrate_6.0_to_759.mysql.sql    | 73 +++++++++++++++++++
 1 file changed, 73 insertions(+)

diff --git a/pandora_console/extras/pandoradb_migrate_6.0_to_759.mysql.sql b/pandora_console/extras/pandoradb_migrate_6.0_to_759.mysql.sql
index 242e7d42c6..df09c2b8e4 100644
--- a/pandora_console/extras/pandoradb_migrate_6.0_to_759.mysql.sql
+++ b/pandora_console/extras/pandoradb_migrate_6.0_to_759.mysql.sql
@@ -838,6 +838,8 @@ CREATE TABLE IF NOT EXISTS `treport_template` (
 	PRIMARY KEY(`id_report`)
 ) ENGINE = InnoDB DEFAULT CHARSET=utf8;
 
+ALTER TABLE `treport_template` MODIFY COLUMN `id_user` VARCHAR(255) NOT NULL DEFAULT '';
+
 -- -----------------------------------------------------
 -- Table `treport_content_template`
 -- -----------------------------------------------------
@@ -1054,6 +1056,7 @@ ALTER TABLE `tmetaconsole_event` ADD INDEX `tme_module_status_idx` (`module_stat
 ALTER TABLE `tmetaconsole_event` ADD INDEX `tme_criticity_idx` (`criticity`);
 ALTER TABLE `tmetaconsole_event` ADD INDEX `tme_agent_name_idx` (`agent_name`);
 ALTER TABLE `tmetaconsole_event` MODIFY `data` TINYTEXT default NULL;
+ALTER TABLE `tmetaconsole_event` MODIFY COLUMN `id_usuario` VARCHAR(255) NOT NULL DEFAULT '0';
 
 -- ---------------------------------------------------------------------
 -- Table `tmetaconsole_event_history`
@@ -1104,6 +1107,8 @@ ALTER TABLE `tmetaconsole_event_history` ADD COLUMN `data` double(50,5) default
 ALTER TABLE `tmetaconsole_event_history` ADD COLUMN `module_status` int(4) NOT NULL default '0';
 ALTER TABLE `tmetaconsole_event_history` ADD INDEX `tmeh_estado_idx` (`estado`);
 ALTER TABLE `tmetaconsole_event_history` ADD INDEX `tmeh_timestamp_idx` (`timestamp`);
+ALTER TABLE `tmetaconsole_event_history` MODIFY COLUMN `id_usuario` VARCHAR(255) NOT NULL DEFAULT '0';
+
 -- ---------------------------------------------------------------------
 -- Table `textension_translate_string`
 -- ---------------------------------------------------------------------
@@ -1454,6 +1459,7 @@ ALTER TABLE `talert_commands` MODIFY COLUMN `id_group` mediumint(8) unsigned NUL
 -- Table `tmap`
 -- ---------------------------------------------------------------------
 ALTER TABLE `tmap` MODIFY COLUMN `id_user` varchar(250) NOT NULL DEFAULT '';
+ALTER TABLE `tmap` MODIFY COLUMN `id_user` VARCHAR(255) NOT NULL DEFAULT '';
 
 -- ---------------------------------------------------------------------
 -- Table `ttag`
@@ -1749,6 +1755,7 @@ ALTER TABLE tgraph ADD COLUMN `average_series`  tinyint(1) UNSIGNED NOT NULL def
 ALTER TABLE tgraph ADD COLUMN `modules_series`  tinyint(1) UNSIGNED NOT NULL default '0';
 ALTER TABLE tgraph ADD COLUMN `fullscale` tinyint(1) UNSIGNED NOT NULL default '0';
 ALTER TABLE `tgraph` MODIFY COLUMN `percentil` tinyint(1) unsigned NOT NULL DEFAULT '0';
+ALTER TABLE `tgraph` MODIFY COLUMN `id_user` VARCHAR(255) NOT NULL DEFAULT '';
 
 -- ---------------------------------------------------------------------
 -- Table `tnetflow_filter`
@@ -1952,6 +1959,8 @@ CREATE TABLE IF NOT EXISTS `treset_pass_history` (
 	PRIMARY KEY (`id`)
 ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
 
+ALTER TABLE `treset_pass_history` MODIFY COLUMN `id_user` VARCHAR(255) NOT NULL;
+
 -- ---------------------------------------------------------------------
 -- Table `tcontainer_item`
 -- ---------------------------------------------------------------------
@@ -1978,6 +1987,9 @@ CREATE TABLE IF NOT EXISTS `tcontainer_item` (
 
 ALTER TABLE tusuario add default_event_filter int(10) unsigned NOT NULL DEFAULT 0;
 
+-- ---------------------------------------------------------------------
+-- Table `treset_pass`
+-- ---------------------------------------------------------------------
 CREATE TABLE IF NOT EXISTS `treset_pass` (
     `id` bigint(10) unsigned NOT NULL auto_increment,
     `id_user` varchar(100) NOT NULL default '',
@@ -1986,6 +1998,8 @@ CREATE TABLE IF NOT EXISTS `treset_pass` (
     PRIMARY KEY (`id`) 
 )ENGINE=InnoDB DEFAULT CHARSET=utf8;
 
+ALTER TABLE `treset_pass` MODIFY COLUMN `id_user` VARCHAR(255) NOT NULL DEFAULT '';
+
 UPDATE tgis_map_connection SET conection_data = '{"type":"OSM","url":"http://tile.openstreetmap.org/${z}/${x}/${y}.png"}' where id_tmap_connection = 1;
 
 ALTER TABLE tpolicy_modules MODIFY post_process double(24,15) default 0;
@@ -2047,6 +2061,7 @@ INSERT INTO `ttipo_modulo` VALUES
 -- Table `tdashboard`
 -- ---------------------------------------------------------------------
 ALTER TABLE `tdashboard` ADD COLUMN `cells_slideshow` TINYINT(1) NOT NULL default 0;
+ALTER TABLE `tdashboard` MODIFY COLUMN `id_user` VARCHAR(255) NOT NULL DEFAULT '';
 
 -- ---------------------------------------------------------------------
 -- Table `tsnmp_filter`
@@ -2356,6 +2371,7 @@ ALTER TABLE `treport` ADD COLUMN `orientation` varchar(25) NOT NULL default 'ver
 ALTER TABLE `treport` MODIFY COLUMN `hidden` tinyint(1) NULL DEFAULT '0' AFTER `non_interactive`;
 ALTER TABLE `treport` ADD COLUMN `cover_page_render` tinyint(1) NOT NULL DEFAULT 1;
 ALTER TABLE `treport` ADD COLUMN `index_render` tinyint(1) NOT NULL DEFAULT 1;
+ALTER TABLE `treport` MODIFY COLUMN `id_user` VARCHAR(255) NOT NULL DEFAULT '';
 
 ALTER TABLE `trecon_task` ADD COLUMN `snmp_version` varchar(5) NOT NULL default '1';
 ALTER TABLE `trecon_task` ADD COLUMN `snmp_auth_user` varchar(255) NOT NULL default '';
@@ -2393,6 +2409,8 @@ ALTER TABLE `tevento` ADD COLUMN `module_status` int(4) NOT NULL default '0';
 
 ALTER TABLE `tevento` MODIFY `data` TINYTEXT default NULL;
 
+ALTER TABLE `tevento` MODIFY COLUMN `id_usuario` VARCHAR(255) NOT NULL DEFAULT '0';
+
 -- ---------------------------------------------------------------------
 -- Table `tevent_extended`
 -- ---------------------------------------------------------------------
@@ -2462,6 +2480,8 @@ CREATE TABLE IF NOT EXISTS `tuser_task_scheduled` (
 	PRIMARY KEY (`id`)
 ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
 
+ALTER TABLE `tuser_task_scheduled` MODIFY COLUMN `id_usuario` VARCHAR(255) NOT NULL DEFAULT '0';
+
 -- -----------------------------------------------------
 -- Table `tnotification_source`
 -- -----------------------------------------------------
@@ -2501,6 +2521,8 @@ ALTER TABLE `tmensajes` ADD CONSTRAINT `tsource_fk` FOREIGN KEY (`id_source`) RE
 ALTER TABLE `tmensajes` DROP COLUMN `id_usuario_destino`,
 	ADD UNIQUE INDEX `id_mensaje` (`id_mensaje`);
 
+ALTER TABLE `tmensajes` MODIFY COLUMN `id_usuario_origen` VARCHAR(255) NOT NULL DEFAULT '';
+
 -- ----------------------------------------------------------------------
 -- Table `tnotification_user`
 -- ----------------------------------------------------------------------
@@ -2796,6 +2818,7 @@ UPDATE `trecon_script` SET `description`='Specific&#x20;Pandora&#x20;FMS&#x20;In
 -- Table `tusuario_perfil`
 -- ---------------------------------------------------------------------
 ALTER TABLE `tusuario_perfil` MODIFY COLUMN `no_hierarchy` tinyint(1) NOT NULL DEFAULT '0';
+ALTER TABLE `tusuario_perfil` MODIFY COLUMN `id_usuario` VARCHAR(255) NOT NULL DEFAULT '';
 
 
 -- Extra tnetwork_component
@@ -4353,3 +4376,53 @@ ALTER TABLE `tnotification_user` ADD CONSTRAINT `tnotification_user_ibfk_2` FORE
 ALTER TABLE `tnotification_source_user` ADD CONSTRAINT `tnotification_source_user_ibfk_2` FOREIGN KEY (`id_user`) REFERENCES `tusuario` (`id_user`) ON DELETE CASCADE ON UPDATE CASCADE;
 ALTER TABLE `tnotification_source_group_user` ADD CONSTRAINT `tnotification_source_group_user_ibfk_2` FOREIGN KEY (`id_user`) REFERENCES `tusuario` (`id_user`) ON DELETE CASCADE ON UPDATE CASCADE;
 ALTER TABLE `tvisual_console_elements_cache` ADD CONSTRAINT `tvisual_console_elements_cache_ibfk_3` FOREIGN KEY (`user_id`) REFERENCES `tusuario` (`id_user`) ON DELETE CASCADE ON UPDATE CASCADE;
+
+-- ----------------------------------------------------------------------
+-- Table `tattachment`
+-- ----------------------------------------------------------------------
+ALTER TABLE `tattachment` MODIFY COLUMN `id_usuario` VARCHAR(255) NOT NULL DEFAULT '';
+
+-- ----------------------------------------------------------------------
+-- Table `tincidencia`
+-- ----------------------------------------------------------------------
+ALTER TABLE `tincidencia` MODIFY COLUMN `id_usuario` VARCHAR(255) NOT NULL DEFAULT '';
+
+-- ----------------------------------------------------------------------
+-- Table `tnota`
+-- ----------------------------------------------------------------------
+ALTER TABLE `tnota` MODIFY COLUMN `id_usuario` VARCHAR(255) NOT NULL DEFAULT '0';
+
+-- ----------------------------------------------------------------------
+-- Table `tsesion`
+-- ----------------------------------------------------------------------
+ALTER TABLE `tsesion` MODIFY COLUMN `id_usuario` VARCHAR(255) NOT NULL DEFAULT '0';
+
+-- ----------------------------------------------------------------------
+-- Table `ttrap`
+-- ----------------------------------------------------------------------
+ALTER TABLE `ttrap` MODIFY COLUMN `id_usuario` VARCHAR(255) DEFAULT '';
+
+-- ----------------------------------------------------------------------
+-- Table `tplanned_downtime`
+-- ----------------------------------------------------------------------
+ALTER TABLE `tplanned_downtime` MODIFY COLUMN `id_user` VARCHAR(255) NOT NULL DEFAULT '0';
+
+-- ----------------------------------------------------------------------
+-- Table `tnetwork_map`
+-- ----------------------------------------------------------------------
+ALTER TABLE `tnetwork_map` MODIFY COLUMN `id_user` VARCHAR(255) NOT NULL;
+
+-- ----------------------------------------------------------------------
+-- Table `tpassword_history`
+-- ----------------------------------------------------------------------
+ALTER TABLE `tpassword_history` MODIFY COLUMN `id_user` VARCHAR(255) NOT NULL;
+
+-- ----------------------------------------------------------------------
+-- Table `tupdate_journal`
+-- ----------------------------------------------------------------------
+ALTER TABLE `tupdate_journal` MODIFY COLUMN `id_user` VARCHAR(255) NOT NULL DEFAULT '';
+
+-- ----------------------------------------------------------------------
+-- Table `tbackup`
+-- ----------------------------------------------------------------------
+ALTER TABLE `tbackup` MODIFY COLUMN `id_user` VARCHAR(255) DEFAULT '';

From 4d3d684eebf1ce170e7c0346f07d5bfb78ef136d Mon Sep 17 00:00:00 2001
From: "alejandro.campos@artica.es" <alejandro.campos@artica.es>
Date: Tue, 14 Jun 2022 10:15:15 +0200
Subject: [PATCH 118/138] revert migrate file

---
 .../pandoradb_migrate_6.0_to_759.mysql.sql    | 73 -------------------
 1 file changed, 73 deletions(-)

diff --git a/pandora_console/extras/pandoradb_migrate_6.0_to_759.mysql.sql b/pandora_console/extras/pandoradb_migrate_6.0_to_759.mysql.sql
index df09c2b8e4..242e7d42c6 100644
--- a/pandora_console/extras/pandoradb_migrate_6.0_to_759.mysql.sql
+++ b/pandora_console/extras/pandoradb_migrate_6.0_to_759.mysql.sql
@@ -838,8 +838,6 @@ CREATE TABLE IF NOT EXISTS `treport_template` (
 	PRIMARY KEY(`id_report`)
 ) ENGINE = InnoDB DEFAULT CHARSET=utf8;
 
-ALTER TABLE `treport_template` MODIFY COLUMN `id_user` VARCHAR(255) NOT NULL DEFAULT '';
-
 -- -----------------------------------------------------
 -- Table `treport_content_template`
 -- -----------------------------------------------------
@@ -1056,7 +1054,6 @@ ALTER TABLE `tmetaconsole_event` ADD INDEX `tme_module_status_idx` (`module_stat
 ALTER TABLE `tmetaconsole_event` ADD INDEX `tme_criticity_idx` (`criticity`);
 ALTER TABLE `tmetaconsole_event` ADD INDEX `tme_agent_name_idx` (`agent_name`);
 ALTER TABLE `tmetaconsole_event` MODIFY `data` TINYTEXT default NULL;
-ALTER TABLE `tmetaconsole_event` MODIFY COLUMN `id_usuario` VARCHAR(255) NOT NULL DEFAULT '0';
 
 -- ---------------------------------------------------------------------
 -- Table `tmetaconsole_event_history`
@@ -1107,8 +1104,6 @@ ALTER TABLE `tmetaconsole_event_history` ADD COLUMN `data` double(50,5) default
 ALTER TABLE `tmetaconsole_event_history` ADD COLUMN `module_status` int(4) NOT NULL default '0';
 ALTER TABLE `tmetaconsole_event_history` ADD INDEX `tmeh_estado_idx` (`estado`);
 ALTER TABLE `tmetaconsole_event_history` ADD INDEX `tmeh_timestamp_idx` (`timestamp`);
-ALTER TABLE `tmetaconsole_event_history` MODIFY COLUMN `id_usuario` VARCHAR(255) NOT NULL DEFAULT '0';
-
 -- ---------------------------------------------------------------------
 -- Table `textension_translate_string`
 -- ---------------------------------------------------------------------
@@ -1459,7 +1454,6 @@ ALTER TABLE `talert_commands` MODIFY COLUMN `id_group` mediumint(8) unsigned NUL
 -- Table `tmap`
 -- ---------------------------------------------------------------------
 ALTER TABLE `tmap` MODIFY COLUMN `id_user` varchar(250) NOT NULL DEFAULT '';
-ALTER TABLE `tmap` MODIFY COLUMN `id_user` VARCHAR(255) NOT NULL DEFAULT '';
 
 -- ---------------------------------------------------------------------
 -- Table `ttag`
@@ -1755,7 +1749,6 @@ ALTER TABLE tgraph ADD COLUMN `average_series`  tinyint(1) UNSIGNED NOT NULL def
 ALTER TABLE tgraph ADD COLUMN `modules_series`  tinyint(1) UNSIGNED NOT NULL default '0';
 ALTER TABLE tgraph ADD COLUMN `fullscale` tinyint(1) UNSIGNED NOT NULL default '0';
 ALTER TABLE `tgraph` MODIFY COLUMN `percentil` tinyint(1) unsigned NOT NULL DEFAULT '0';
-ALTER TABLE `tgraph` MODIFY COLUMN `id_user` VARCHAR(255) NOT NULL DEFAULT '';
 
 -- ---------------------------------------------------------------------
 -- Table `tnetflow_filter`
@@ -1959,8 +1952,6 @@ CREATE TABLE IF NOT EXISTS `treset_pass_history` (
 	PRIMARY KEY (`id`)
 ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
 
-ALTER TABLE `treset_pass_history` MODIFY COLUMN `id_user` VARCHAR(255) NOT NULL;
-
 -- ---------------------------------------------------------------------
 -- Table `tcontainer_item`
 -- ---------------------------------------------------------------------
@@ -1987,9 +1978,6 @@ CREATE TABLE IF NOT EXISTS `tcontainer_item` (
 
 ALTER TABLE tusuario add default_event_filter int(10) unsigned NOT NULL DEFAULT 0;
 
--- ---------------------------------------------------------------------
--- Table `treset_pass`
--- ---------------------------------------------------------------------
 CREATE TABLE IF NOT EXISTS `treset_pass` (
     `id` bigint(10) unsigned NOT NULL auto_increment,
     `id_user` varchar(100) NOT NULL default '',
@@ -1998,8 +1986,6 @@ CREATE TABLE IF NOT EXISTS `treset_pass` (
     PRIMARY KEY (`id`) 
 )ENGINE=InnoDB DEFAULT CHARSET=utf8;
 
-ALTER TABLE `treset_pass` MODIFY COLUMN `id_user` VARCHAR(255) NOT NULL DEFAULT '';
-
 UPDATE tgis_map_connection SET conection_data = '{"type":"OSM","url":"http://tile.openstreetmap.org/${z}/${x}/${y}.png"}' where id_tmap_connection = 1;
 
 ALTER TABLE tpolicy_modules MODIFY post_process double(24,15) default 0;
@@ -2061,7 +2047,6 @@ INSERT INTO `ttipo_modulo` VALUES
 -- Table `tdashboard`
 -- ---------------------------------------------------------------------
 ALTER TABLE `tdashboard` ADD COLUMN `cells_slideshow` TINYINT(1) NOT NULL default 0;
-ALTER TABLE `tdashboard` MODIFY COLUMN `id_user` VARCHAR(255) NOT NULL DEFAULT '';
 
 -- ---------------------------------------------------------------------
 -- Table `tsnmp_filter`
@@ -2371,7 +2356,6 @@ ALTER TABLE `treport` ADD COLUMN `orientation` varchar(25) NOT NULL default 'ver
 ALTER TABLE `treport` MODIFY COLUMN `hidden` tinyint(1) NULL DEFAULT '0' AFTER `non_interactive`;
 ALTER TABLE `treport` ADD COLUMN `cover_page_render` tinyint(1) NOT NULL DEFAULT 1;
 ALTER TABLE `treport` ADD COLUMN `index_render` tinyint(1) NOT NULL DEFAULT 1;
-ALTER TABLE `treport` MODIFY COLUMN `id_user` VARCHAR(255) NOT NULL DEFAULT '';
 
 ALTER TABLE `trecon_task` ADD COLUMN `snmp_version` varchar(5) NOT NULL default '1';
 ALTER TABLE `trecon_task` ADD COLUMN `snmp_auth_user` varchar(255) NOT NULL default '';
@@ -2409,8 +2393,6 @@ ALTER TABLE `tevento` ADD COLUMN `module_status` int(4) NOT NULL default '0';
 
 ALTER TABLE `tevento` MODIFY `data` TINYTEXT default NULL;
 
-ALTER TABLE `tevento` MODIFY COLUMN `id_usuario` VARCHAR(255) NOT NULL DEFAULT '0';
-
 -- ---------------------------------------------------------------------
 -- Table `tevent_extended`
 -- ---------------------------------------------------------------------
@@ -2480,8 +2462,6 @@ CREATE TABLE IF NOT EXISTS `tuser_task_scheduled` (
 	PRIMARY KEY (`id`)
 ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
 
-ALTER TABLE `tuser_task_scheduled` MODIFY COLUMN `id_usuario` VARCHAR(255) NOT NULL DEFAULT '0';
-
 -- -----------------------------------------------------
 -- Table `tnotification_source`
 -- -----------------------------------------------------
@@ -2521,8 +2501,6 @@ ALTER TABLE `tmensajes` ADD CONSTRAINT `tsource_fk` FOREIGN KEY (`id_source`) RE
 ALTER TABLE `tmensajes` DROP COLUMN `id_usuario_destino`,
 	ADD UNIQUE INDEX `id_mensaje` (`id_mensaje`);
 
-ALTER TABLE `tmensajes` MODIFY COLUMN `id_usuario_origen` VARCHAR(255) NOT NULL DEFAULT '';
-
 -- ----------------------------------------------------------------------
 -- Table `tnotification_user`
 -- ----------------------------------------------------------------------
@@ -2818,7 +2796,6 @@ UPDATE `trecon_script` SET `description`='Specific&#x20;Pandora&#x20;FMS&#x20;In
 -- Table `tusuario_perfil`
 -- ---------------------------------------------------------------------
 ALTER TABLE `tusuario_perfil` MODIFY COLUMN `no_hierarchy` tinyint(1) NOT NULL DEFAULT '0';
-ALTER TABLE `tusuario_perfil` MODIFY COLUMN `id_usuario` VARCHAR(255) NOT NULL DEFAULT '';
 
 
 -- Extra tnetwork_component
@@ -4376,53 +4353,3 @@ ALTER TABLE `tnotification_user` ADD CONSTRAINT `tnotification_user_ibfk_2` FORE
 ALTER TABLE `tnotification_source_user` ADD CONSTRAINT `tnotification_source_user_ibfk_2` FOREIGN KEY (`id_user`) REFERENCES `tusuario` (`id_user`) ON DELETE CASCADE ON UPDATE CASCADE;
 ALTER TABLE `tnotification_source_group_user` ADD CONSTRAINT `tnotification_source_group_user_ibfk_2` FOREIGN KEY (`id_user`) REFERENCES `tusuario` (`id_user`) ON DELETE CASCADE ON UPDATE CASCADE;
 ALTER TABLE `tvisual_console_elements_cache` ADD CONSTRAINT `tvisual_console_elements_cache_ibfk_3` FOREIGN KEY (`user_id`) REFERENCES `tusuario` (`id_user`) ON DELETE CASCADE ON UPDATE CASCADE;
-
--- ----------------------------------------------------------------------
--- Table `tattachment`
--- ----------------------------------------------------------------------
-ALTER TABLE `tattachment` MODIFY COLUMN `id_usuario` VARCHAR(255) NOT NULL DEFAULT '';
-
--- ----------------------------------------------------------------------
--- Table `tincidencia`
--- ----------------------------------------------------------------------
-ALTER TABLE `tincidencia` MODIFY COLUMN `id_usuario` VARCHAR(255) NOT NULL DEFAULT '';
-
--- ----------------------------------------------------------------------
--- Table `tnota`
--- ----------------------------------------------------------------------
-ALTER TABLE `tnota` MODIFY COLUMN `id_usuario` VARCHAR(255) NOT NULL DEFAULT '0';
-
--- ----------------------------------------------------------------------
--- Table `tsesion`
--- ----------------------------------------------------------------------
-ALTER TABLE `tsesion` MODIFY COLUMN `id_usuario` VARCHAR(255) NOT NULL DEFAULT '0';
-
--- ----------------------------------------------------------------------
--- Table `ttrap`
--- ----------------------------------------------------------------------
-ALTER TABLE `ttrap` MODIFY COLUMN `id_usuario` VARCHAR(255) DEFAULT '';
-
--- ----------------------------------------------------------------------
--- Table `tplanned_downtime`
--- ----------------------------------------------------------------------
-ALTER TABLE `tplanned_downtime` MODIFY COLUMN `id_user` VARCHAR(255) NOT NULL DEFAULT '0';
-
--- ----------------------------------------------------------------------
--- Table `tnetwork_map`
--- ----------------------------------------------------------------------
-ALTER TABLE `tnetwork_map` MODIFY COLUMN `id_user` VARCHAR(255) NOT NULL;
-
--- ----------------------------------------------------------------------
--- Table `tpassword_history`
--- ----------------------------------------------------------------------
-ALTER TABLE `tpassword_history` MODIFY COLUMN `id_user` VARCHAR(255) NOT NULL;
-
--- ----------------------------------------------------------------------
--- Table `tupdate_journal`
--- ----------------------------------------------------------------------
-ALTER TABLE `tupdate_journal` MODIFY COLUMN `id_user` VARCHAR(255) NOT NULL DEFAULT '';
-
--- ----------------------------------------------------------------------
--- Table `tbackup`
--- ----------------------------------------------------------------------
-ALTER TABLE `tbackup` MODIFY COLUMN `id_user` VARCHAR(255) DEFAULT '';

From ec7a2f89bd5fc9f72d65b69cdd0e88d54ddaba32 Mon Sep 17 00:00:00 2001
From: "alejandro.campos@artica.es" <alejandro.campos@artica.es>
Date: Tue, 14 Jun 2022 10:17:43 +0200
Subject: [PATCH 119/138] revert migrate file

---
 .../extras/pandoradb_migrate_6.0_to_759.mysql.sql | 15 ---------------
 1 file changed, 15 deletions(-)

diff --git a/pandora_console/extras/pandoradb_migrate_6.0_to_759.mysql.sql b/pandora_console/extras/pandoradb_migrate_6.0_to_759.mysql.sql
index 242e7d42c6..ca68a5472a 100644
--- a/pandora_console/extras/pandoradb_migrate_6.0_to_759.mysql.sql
+++ b/pandora_console/extras/pandoradb_migrate_6.0_to_759.mysql.sql
@@ -4338,18 +4338,3 @@ ALTER TABLE `talert_special_days` DROP COLUMN `same_day`;
 ALTER TABLE `talert_special_days` ADD FOREIGN KEY (`id_calendar`) REFERENCES `talert_calendar`(`id`) ON DELETE CASCADE ON UPDATE CASCADE;
 
 UPDATE `tconfig` c1 JOIN (select count(*) as n FROM `tconfig` c2 WHERE (c2.`token` = "node_metaconsole" AND c2.`value` = 1) OR (c2.`token` = "centralized_management" AND c2.`value` = 1) ) v SET c1. `value` = 0 WHERE c1.token = "autocreate_remote_users" AND v.n = 2;
-
--- ----------------------------------------------------------------------
--- Table `tusuario`
--- ----------------------------------------------------------------------
-ALTER TABLE `tuser_double_auth` DROP FOREIGN KEY `tuser_double_auth_ibfk_1`, MODIFY `id_user` VARCHAR(255) NOT NULL;
-ALTER TABLE `tnotification_user` DROP FOREIGN KEY `tnotification_user_ibfk_2`, MODIFY `id_user` VARCHAR(255) NOT NULL;
-ALTER TABLE `tnotification_source_user` DROP FOREIGN KEY `tnotification_source_user_ibfk_2`, MODIFY `id_user` VARCHAR(255) NOT NULL;
-ALTER TABLE `tnotification_source_group_user` DROP FOREIGN KEY `tnotification_source_group_user_ibfk_2`, MODIFY `id_user` VARCHAR(255) NOT NULL;
-ALTER TABLE `tvisual_console_elements_cache` DROP FOREIGN KEY `tvisual_console_elements_cache_ibfk_3`, MODIFY `user_id` VARCHAR(255) DEFAULT NULL;
-ALTER TABLE `tusuario` MODIFY `id_user` VARCHAR(255) NOT NULL DEFAULT '0';
-ALTER TABLE `tuser_double_auth` ADD CONSTRAINT `tuser_double_auth_ibfk_1` FOREIGN KEY (`id_user`) REFERENCES `tusuario` (`id_user`) ON DELETE CASCADE;
-ALTER TABLE `tnotification_user` ADD CONSTRAINT `tnotification_user_ibfk_2` FOREIGN KEY (`id_user`) REFERENCES `tusuario` (`id_user`) ON DELETE CASCADE ON UPDATE CASCADE;
-ALTER TABLE `tnotification_source_user` ADD CONSTRAINT `tnotification_source_user_ibfk_2` FOREIGN KEY (`id_user`) REFERENCES `tusuario` (`id_user`) ON DELETE CASCADE ON UPDATE CASCADE;
-ALTER TABLE `tnotification_source_group_user` ADD CONSTRAINT `tnotification_source_group_user_ibfk_2` FOREIGN KEY (`id_user`) REFERENCES `tusuario` (`id_user`) ON DELETE CASCADE ON UPDATE CASCADE;
-ALTER TABLE `tvisual_console_elements_cache` ADD CONSTRAINT `tvisual_console_elements_cache_ibfk_3` FOREIGN KEY (`user_id`) REFERENCES `tusuario` (`id_user`) ON DELETE CASCADE ON UPDATE CASCADE;

From 838cde88650a7aca5a8467039a06eba329ad6e7d Mon Sep 17 00:00:00 2001
From: Rafael Ameijeiras <rafael.ameijeiras@artica.es>
Date: Tue, 14 Jun 2022 12:43:43 +0200
Subject: [PATCH 120/138] Adding dependencies check for centos7/el8

---
 tentacle/tentacle_server_installer | 52 ++++++------------------------
 1 file changed, 9 insertions(+), 43 deletions(-)

diff --git a/tentacle/tentacle_server_installer b/tentacle/tentacle_server_installer
index 469ac326c3..176a4743e5 100755
--- a/tentacle/tentacle_server_installer
+++ b/tentacle/tentacle_server_installer
@@ -121,7 +121,7 @@ install_startup_script () {
 	SRC=$1
 	SCRIPT_NAME=`basename $SRC`
 
-	echo "Copying the daemon script into $INITDIR"
+	echo "Copying the daemon script into $DESTDIR$INITDIR"
 	[ -d $DESTDIR$INITDIR ] || mkdir -p $DESTDIR$INITDIR
 	cp $SRC $DESTDIR$INITDIR
 
@@ -187,56 +187,22 @@ install () {
 		# Execute tools check
 		execute_cmd "ps --version" 'Checking dependencies: ps' "Error ps not found, please install procps"
 		execute_cmd "sudo --version" 'Checking dependencies: sudo' "Error sudo not found, please install sudo"
+		execute_cmd "perl -MIO::Compress::Zip -le 'pass'" 'Checking dependencies: perl IO::Compress' "Error perl IO::Compress not found, please install perl IO::Compress"
 	fi
 
 	# install tentacle
-	$PERL Makefile.PL INSTALLMAN1DIR=none > output 2>&1
-	#&& sleep 2 && cat output | grep "found" | wc -l 
-	DEPENDENCIAS=`cat output | grep "found" | wc -l`
+	[ -d $DESTDIR$PREFIX/bin/ ] || mkdir -p $DESTDIR$PREFIX/bin/
+	echo ">Installing the tentacle_server binary to $DESTDIR$PREFIX/bin/..."
+	cp -f tentacle_server "$DESTDIR$PREFIX/bin/"
 
-	if [ $DEPENDENCIAS -gt 0 ] && [ $FORCE -eq 0 ]
-	then
-		echo "You are missing the following dependencies"
-		echo " "
-		cat output | awk -F ": prerequisite" '{print $2}' | awk -F " " '{print $1}'
-		echo "The complete installation guide is at: https://pandorafms.com/docs/"
-		echo " "
-		rm output
-		exit 1
-	fi		
-
-	echo "Installing binaries and libraries"
-	make
-	make DESTDIR=$DESTDIR install
-		
-	echo "Checking binaries at /usr/local/bin -> /usr/bin"
-	if [ ! -f "$DESTDIR/usr/bin/tentacle_server" ] 
-	then
-		if [ ! -f "$DESTDIR/usr/local/bin/tentacle_server" ]
-		then
-			echo "ERROR compiling Tentacle Server from sources. Aborting"
-			exit 1
-		fi
-		if [ "$DISTRO" != "FreeBSD" ] && [ "$DISTRO" != "NetBSD" ]
-		then
-			[ -d $DESTDIR$PREFIX/bin ] || mkdir -p $DESTDIR$PREFIX/bin
-			ln -s /usr/local/bin/tentacle_server $DESTDIR$PREFIX/bin
-
-		fi
-	fi
-	
+	echo ">Installing the tentacle_client binary to $DESTDIR$PREFIX/bin/..."
+	cp -f tentacle_client "$DESTDIR$PREFIX/bin/"
 
 	echo "Creating common Pandora FMS directories"
 	id pandora 2> /dev/null
 	if [ $? -eq 0 ]; then
 		echo " "
 		echo "User pandora does exist, make sure the SSH directories are correct"
-	elif [ "$DESTDIR" ]
-	then
-		# chown can fail with fakeroot installation
-		echo "User 'pandora' does not exist. All chown operations may fail."
-		echo "You should manualy set proper ownership to $DESTDIR$PANDORA_SPOOL if needed."
-		echo
 	else
 		echo "Are you sure we can create a standard 'pandora' user locally? [y/N]"
 		read AREYOUSURE
@@ -273,7 +239,7 @@ install () {
 	chmod 2770 $DESTDIR$PANDORA_SPOOL/data_in/commands
 
 
-	echo "Giving proper permission to /var/spool/pandora"
+	echo "Giving proper permission to $DESTDIR$PANDORA_SPOOL/"
 	for group in "www-data" wwwrun www apache
 	do
 		IDGROUP=`id -g "$group" 2> /dev/null`
@@ -297,7 +263,7 @@ install () {
 	install_startup_script -s 80 $TENTACLE_INIT_SCRIPT
 
 	# Create the directory to locate the Tentacle configuration file
-	echo "Creating setup Tentacle directory in $TENTACLE_CFG_DIR"
+	echo "Creating setup Tentacle directory in $DESTDIR$TENTACLE_CFG_DIR"
 	mkdir -p $DESTDIR$TENTACLE_CFG_DIR 2> /dev/null
 	if [ -f "$DESTDIR$TENTACLE_CFG_FILE" ]
 	then

From 30fd072cb96f2482b8d512d217f8bce36d695dea Mon Sep 17 00:00:00 2001
From: Rafael Ameijeiras <rafael.ameijeiras@artica.es>
Date: Tue, 14 Jun 2022 16:51:03 +0200
Subject: [PATCH 121/138] Adding dependencies to pandorafms rpm packages

---
 pandora_console/pandora_console.redhat.spec | 1 +
 1 file changed, 1 insertion(+)

diff --git a/pandora_console/pandora_console.redhat.spec b/pandora_console/pandora_console.redhat.spec
index ccc9b3922e..73f7cfca74 100644
--- a/pandora_console/pandora_console.redhat.spec
+++ b/pandora_console/pandora_console.redhat.spec
@@ -31,6 +31,7 @@ Requires:           php-gd, php-ldap, php-snmp, php-session, php-gettext
 Requires:           php-mysqlnd, php-mbstring, php-zip, php-zlib, php-curl
 Requires:           xorg-x11-fonts-75dpi, xorg-x11-fonts-misc, php-pecl-zip
 Requires:           graphviz
+Requires:           openldap-clients libzstd expect
 Provides:           %{name}-%{version}
 
 

From 26038b6aaa2893b622e3b1044e90db27896ee4c0 Mon Sep 17 00:00:00 2001
From: Rafael Ameijeiras <rafael.ameijeiras@artica.es>
Date: Tue, 14 Jun 2022 16:55:25 +0200
Subject: [PATCH 122/138] Adding dependencies to pandorafms rpm packages

---
 pandora_console/pandora_console.redhat.spec | 2 +-
 pandora_server/pandora_server.redhat.spec   | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/pandora_console/pandora_console.redhat.spec b/pandora_console/pandora_console.redhat.spec
index 73f7cfca74..0d00df75ab 100644
--- a/pandora_console/pandora_console.redhat.spec
+++ b/pandora_console/pandora_console.redhat.spec
@@ -31,7 +31,7 @@ Requires:           php-gd, php-ldap, php-snmp, php-session, php-gettext
 Requires:           php-mysqlnd, php-mbstring, php-zip, php-zlib, php-curl
 Requires:           xorg-x11-fonts-75dpi, xorg-x11-fonts-misc, php-pecl-zip
 Requires:           graphviz
-Requires:           openldap-clients libzstd expect
+Requires:           openldap-clients libzstd
 Provides:           %{name}-%{version}
 
 
diff --git a/pandora_server/pandora_server.redhat.spec b/pandora_server/pandora_server.redhat.spec
index 1b5ebbdc00..41cce7f5f1 100644
--- a/pandora_server/pandora_server.redhat.spec
+++ b/pandora_server/pandora_server.redhat.spec
@@ -30,7 +30,7 @@ Requires:           perl(NetAddr::IP) net-snmp net-tools
 Requires:           perl(IO::Socket::INET6) perl(IO::Socket::SSL) perl(Net::Telnet)
 Requires:           fping nmap sudo perl(JSON)
 Requires:           perl(Time::HiRes) perl(Encode::Locale)
-Requires:           perl perl(Sys::Syslog) perl(HTML::Entities) perl(Geo::IP)
+Requires:           perl perl(Sys::Syslog) perl(HTML::Entities) perl(Geo::IP) expect
 
 %description
 Pandora FMS is a monitoring system for big IT environments. It uses remote tests, or local agents to grab information. Pandora supports all standard OS (Linux, AIX, HP-UX, Solaris and Windows XP,2000/2003), and support multiple setups in HA enviroments.

From 20e1cdd9a77a903014e651f187c5653dcdcb0f1d Mon Sep 17 00:00:00 2001
From: Rafael Ameijeiras <rafael.ameijeiras@artica.es>
Date: Tue, 14 Jun 2022 17:23:51 +0200
Subject: [PATCH 123/138] Adding dependencies to online installation tools

---
 extras/deploy-scripts/pandora_deploy_community.sh     | 2 ++
 extras/deploy-scripts/pandora_deploy_community_el8.sh | 2 ++
 2 files changed, 4 insertions(+)

diff --git a/extras/deploy-scripts/pandora_deploy_community.sh b/extras/deploy-scripts/pandora_deploy_community.sh
index 87e4bb4b35..a0f08822e1 100644
--- a/extras/deploy-scripts/pandora_deploy_community.sh
+++ b/extras/deploy-scripts/pandora_deploy_community.sh
@@ -256,6 +256,8 @@ console_dependencies=" \
     poppler-data \
     php-yaml \
     mod_ssl \
+    libzstd \
+    openldap-clients \
     http://firefly.artica.es/centos8/phantomjs-2.1.1-1.el7.x86_64.rpm"
 execute_cmd "yum install -y $console_dependencies" "Installing Pandora FMS Console dependencies"
 
diff --git a/extras/deploy-scripts/pandora_deploy_community_el8.sh b/extras/deploy-scripts/pandora_deploy_community_el8.sh
index c8c7561ffc..5b549a2933 100644
--- a/extras/deploy-scripts/pandora_deploy_community_el8.sh
+++ b/extras/deploy-scripts/pandora_deploy_community_el8.sh
@@ -307,6 +307,8 @@ console_dependencies=" \
     poppler-data \
     php-yaml \
     mod_ssl \
+    libzstd \
+    openldap-clients \
     http://firefly.artica.es/centos8/perl-Net-Telnet-3.04-1.el8.noarch.rpm \
     http://firefly.artica.es/centos7/wmic-1.4-1.el7.x86_64.rpm \
     http://firefly.artica.es/centos8/phantomjs-2.1.1-1.el7.x86_64.rpm"

From 3ee1ba0bbcf07e7bc08ad06dce2538e71eb360ab Mon Sep 17 00:00:00 2001
From: artica <artica.devel@gmail.com>
Date: Wed, 15 Jun 2022 01:00:16 +0200
Subject: [PATCH 124/138] Auto-updated build strings.

---
 pandora_agents/unix/DEBIAN/control             | 2 +-
 pandora_agents/unix/DEBIAN/make_deb_package.sh | 2 +-
 pandora_agents/unix/pandora_agent              | 2 +-
 pandora_agents/unix/pandora_agent.redhat.spec  | 2 +-
 pandora_agents/unix/pandora_agent.spec         | 2 +-
 pandora_agents/unix/pandora_agent_installer    | 2 +-
 pandora_agents/win32/installer/pandora.mpi     | 2 +-
 pandora_agents/win32/pandora.cc                | 2 +-
 pandora_agents/win32/versioninfo.rc            | 2 +-
 pandora_console/DEBIAN/control                 | 2 +-
 pandora_console/DEBIAN/make_deb_package.sh     | 2 +-
 pandora_console/include/config_process.php     | 2 +-
 pandora_console/install.php                    | 2 +-
 pandora_console/pandora_console.redhat.spec    | 2 +-
 pandora_console/pandora_console.rhel7.spec     | 2 +-
 pandora_console/pandora_console.spec           | 2 +-
 pandora_server/DEBIAN/control                  | 2 +-
 pandora_server/DEBIAN/make_deb_package.sh      | 2 +-
 pandora_server/lib/PandoraFMS/Config.pm        | 2 +-
 pandora_server/lib/PandoraFMS/PluginTools.pm   | 2 +-
 pandora_server/pandora_server.redhat.spec      | 2 +-
 pandora_server/pandora_server.spec             | 2 +-
 pandora_server/pandora_server_installer        | 2 +-
 pandora_server/util/pandora_db.pl              | 2 +-
 pandora_server/util/pandora_manage.pl          | 2 +-
 25 files changed, 25 insertions(+), 25 deletions(-)

diff --git a/pandora_agents/unix/DEBIAN/control b/pandora_agents/unix/DEBIAN/control
index ad4eead89a..119f59a1e4 100644
--- a/pandora_agents/unix/DEBIAN/control
+++ b/pandora_agents/unix/DEBIAN/control
@@ -1,5 +1,5 @@
 package: pandorafms-agent-unix
-Version: 7.0NG.762-220614
+Version: 7.0NG.762-220615
 Architecture: all
 Priority: optional
 Section: admin
diff --git a/pandora_agents/unix/DEBIAN/make_deb_package.sh b/pandora_agents/unix/DEBIAN/make_deb_package.sh
index 25a646be50..8c9841cbb7 100644
--- a/pandora_agents/unix/DEBIAN/make_deb_package.sh
+++ b/pandora_agents/unix/DEBIAN/make_deb_package.sh
@@ -14,7 +14,7 @@
 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 # GNU General Public License for more details.
 
-pandora_version="7.0NG.762-220614"
+pandora_version="7.0NG.762-220615"
 
 echo "Test if you has the tools for to make the packages."
 whereis dpkg-deb | cut -d":" -f2 | grep dpkg-deb > /dev/null
diff --git a/pandora_agents/unix/pandora_agent b/pandora_agents/unix/pandora_agent
index 8763ad999e..e3a83cec84 100755
--- a/pandora_agents/unix/pandora_agent
+++ b/pandora_agents/unix/pandora_agent
@@ -1015,7 +1015,7 @@ my $Sem = undef;
 my $ThreadSem = undef;
 
 use constant AGENT_VERSION => '7.0NG.762';
-use constant AGENT_BUILD => '220614';
+use constant AGENT_BUILD => '220615';
 
 # Agent log default file size maximum and instances
 use constant DEFAULT_MAX_LOG_SIZE => 600000;
diff --git a/pandora_agents/unix/pandora_agent.redhat.spec b/pandora_agents/unix/pandora_agent.redhat.spec
index 3dec167453..03414f5138 100644
--- a/pandora_agents/unix/pandora_agent.redhat.spec
+++ b/pandora_agents/unix/pandora_agent.redhat.spec
@@ -3,7 +3,7 @@
 #
 %define name        pandorafms_agent_unix
 %define version     7.0NG.762
-%define release     220614
+%define release     220615
 
 Summary:            Pandora FMS Linux agent, PERL version
 Name:               %{name}
diff --git a/pandora_agents/unix/pandora_agent.spec b/pandora_agents/unix/pandora_agent.spec
index 1249b8e6e7..ce161155b3 100644
--- a/pandora_agents/unix/pandora_agent.spec
+++ b/pandora_agents/unix/pandora_agent.spec
@@ -3,7 +3,7 @@
 #
 %define name        pandorafms_agent_unix
 %define version     7.0NG.762
-%define release     220614
+%define release     220615
 
 Summary:            Pandora FMS Linux agent, PERL version
 Name:               %{name}
diff --git a/pandora_agents/unix/pandora_agent_installer b/pandora_agents/unix/pandora_agent_installer
index 07f0a9babf..88b55738c5 100755
--- a/pandora_agents/unix/pandora_agent_installer
+++ b/pandora_agents/unix/pandora_agent_installer
@@ -10,7 +10,7 @@
 # **********************************************************************
 
 PI_VERSION="7.0NG.762"
-PI_BUILD="220614"
+PI_BUILD="220615"
 OS_NAME=`uname -s`
 
 FORCE=0
diff --git a/pandora_agents/win32/installer/pandora.mpi b/pandora_agents/win32/installer/pandora.mpi
index 4d65f05a32..4a81e3c2a7 100644
--- a/pandora_agents/win32/installer/pandora.mpi
+++ b/pandora_agents/win32/installer/pandora.mpi
@@ -186,7 +186,7 @@ UpgradeApplicationID
 {}
 
 Version
-{220614}
+{220615}
 
 ViewReadme
 {Yes}
diff --git a/pandora_agents/win32/pandora.cc b/pandora_agents/win32/pandora.cc
index 6a4d7782f9..490ac8919b 100644
--- a/pandora_agents/win32/pandora.cc
+++ b/pandora_agents/win32/pandora.cc
@@ -30,7 +30,7 @@ using namespace Pandora;
 using namespace Pandora_Strutils;
 
 #define PATH_SIZE    _MAX_PATH+1
-#define PANDORA_VERSION ("7.0NG.762 Build 220614")
+#define PANDORA_VERSION ("7.0NG.762 Build 220615")
 
 string pandora_path;
 string pandora_dir;
diff --git a/pandora_agents/win32/versioninfo.rc b/pandora_agents/win32/versioninfo.rc
index ca70a5662b..695cb556d0 100644
--- a/pandora_agents/win32/versioninfo.rc
+++ b/pandora_agents/win32/versioninfo.rc
@@ -11,7 +11,7 @@ BEGIN
       VALUE "LegalCopyright", "Artica ST"
       VALUE "OriginalFilename", "PandoraAgent.exe"
       VALUE "ProductName", "Pandora FMS Windows Agent"
-      VALUE "ProductVersion", "(7.0NG.762(Build 220614))"
+      VALUE "ProductVersion", "(7.0NG.762(Build 220615))"
       VALUE "FileVersion", "1.0.0.0"
     END
   END
diff --git a/pandora_console/DEBIAN/control b/pandora_console/DEBIAN/control
index 28ad21f54e..51e17e0701 100644
--- a/pandora_console/DEBIAN/control
+++ b/pandora_console/DEBIAN/control
@@ -1,5 +1,5 @@
 package: pandorafms-console
-Version: 7.0NG.762-220614
+Version: 7.0NG.762-220615
 Architecture: all
 Priority: optional
 Section: admin
diff --git a/pandora_console/DEBIAN/make_deb_package.sh b/pandora_console/DEBIAN/make_deb_package.sh
index af4c21ef4e..558ea0017b 100644
--- a/pandora_console/DEBIAN/make_deb_package.sh
+++ b/pandora_console/DEBIAN/make_deb_package.sh
@@ -14,7 +14,7 @@
 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 # GNU General Public License for more details.
 
-pandora_version="7.0NG.762-220614"
+pandora_version="7.0NG.762-220615"
 
 package_pear=0
 package_pandora=1
diff --git a/pandora_console/include/config_process.php b/pandora_console/include/config_process.php
index b7d03fe4f4..9823d14fe5 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 = 'PC220614';
+$build_version = 'PC220615';
 $pandora_version = 'v7.0NG.762';
 
 // Do not overwrite default timezone set if defined.
diff --git a/pandora_console/install.php b/pandora_console/install.php
index 6b3aeef58f..07c51d5494 100644
--- a/pandora_console/install.php
+++ b/pandora_console/install.php
@@ -129,7 +129,7 @@
         <div style='height: 10px'>
             <?php
             $version = '7.0NG.762';
-            $build = '220614';
+            $build = '220615';
             $banner = "v$version Build $build";
 
             error_reporting(0);
diff --git a/pandora_console/pandora_console.redhat.spec b/pandora_console/pandora_console.redhat.spec
index ccc9b3922e..d4ca79d56d 100644
--- a/pandora_console/pandora_console.redhat.spec
+++ b/pandora_console/pandora_console.redhat.spec
@@ -3,7 +3,7 @@
 #
 %define name        pandorafms_console
 %define version     7.0NG.762
-%define release     220614
+%define release     220615
 
 # User and Group under which Apache is running
 %define httpd_name  httpd
diff --git a/pandora_console/pandora_console.rhel7.spec b/pandora_console/pandora_console.rhel7.spec
index cc364d3d5d..2e3929ae46 100644
--- a/pandora_console/pandora_console.rhel7.spec
+++ b/pandora_console/pandora_console.rhel7.spec
@@ -3,7 +3,7 @@
 #
 %define name        pandorafms_console
 %define version     7.0NG.762
-%define release     220614
+%define release     220615
 
 # User and Group under which Apache is running
 %define httpd_name  httpd
diff --git a/pandora_console/pandora_console.spec b/pandora_console/pandora_console.spec
index d9f4fcdb85..88670756ac 100644
--- a/pandora_console/pandora_console.spec
+++ b/pandora_console/pandora_console.spec
@@ -3,7 +3,7 @@
 #
 %define name        pandorafms_console
 %define version     7.0NG.762
-%define release     220614
+%define release     220615
 %define httpd_name      httpd
 # User and Group under which Apache is running
 %define httpd_name  apache2
diff --git a/pandora_server/DEBIAN/control b/pandora_server/DEBIAN/control
index 487239a2d6..5fba1e1706 100644
--- a/pandora_server/DEBIAN/control
+++ b/pandora_server/DEBIAN/control
@@ -1,5 +1,5 @@
 package: pandorafms-server
-Version: 7.0NG.762-220614
+Version: 7.0NG.762-220615
 Architecture: all
 Priority: optional
 Section: admin
diff --git a/pandora_server/DEBIAN/make_deb_package.sh b/pandora_server/DEBIAN/make_deb_package.sh
index 8102a1c5d8..4334b47273 100644
--- a/pandora_server/DEBIAN/make_deb_package.sh
+++ b/pandora_server/DEBIAN/make_deb_package.sh
@@ -14,7 +14,7 @@
 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 # GNU General Public License for more details.
 
-pandora_version="7.0NG.762-220614"
+pandora_version="7.0NG.762-220615"
 
 package_cpan=0
 package_pandora=1
diff --git a/pandora_server/lib/PandoraFMS/Config.pm b/pandora_server/lib/PandoraFMS/Config.pm
index 8fec3e4bf4..5352c013c0 100644
--- a/pandora_server/lib/PandoraFMS/Config.pm
+++ b/pandora_server/lib/PandoraFMS/Config.pm
@@ -46,7 +46,7 @@ our @EXPORT = qw(
 
 # version: Defines actual version of Pandora Server for this module only
 my $pandora_version = "7.0NG.762";
-my $pandora_build = "220614";
+my $pandora_build = "220615";
 our $VERSION = $pandora_version." ".$pandora_build;
 
 # Setup hash
diff --git a/pandora_server/lib/PandoraFMS/PluginTools.pm b/pandora_server/lib/PandoraFMS/PluginTools.pm
index 4a1afb0c36..ff33fdf1ce 100644
--- a/pandora_server/lib/PandoraFMS/PluginTools.pm
+++ b/pandora_server/lib/PandoraFMS/PluginTools.pm
@@ -34,7 +34,7 @@ our @ISA = qw(Exporter);
 
 # version: Defines actual version of Pandora Server for this module only
 my $pandora_version = "7.0NG.762";
-my $pandora_build = "220614";
+my $pandora_build = "220615";
 our $VERSION = $pandora_version." ".$pandora_build;
 
 our %EXPORT_TAGS = ( 'all' => [ qw() ] );
diff --git a/pandora_server/pandora_server.redhat.spec b/pandora_server/pandora_server.redhat.spec
index 1b5ebbdc00..5c4d09f07f 100644
--- a/pandora_server/pandora_server.redhat.spec
+++ b/pandora_server/pandora_server.redhat.spec
@@ -3,7 +3,7 @@
 #
 %define name        pandorafms_server
 %define version     7.0NG.762
-%define release     220614
+%define release     220615
 
 Summary:            Pandora FMS Server
 Name:               %{name}
diff --git a/pandora_server/pandora_server.spec b/pandora_server/pandora_server.spec
index 785b404cb2..9dead83f81 100644
--- a/pandora_server/pandora_server.spec
+++ b/pandora_server/pandora_server.spec
@@ -3,7 +3,7 @@
 #
 %define name        pandorafms_server
 %define version     7.0NG.762
-%define release     220614
+%define release     220615
 
 Summary:            Pandora FMS Server
 Name:               %{name}
diff --git a/pandora_server/pandora_server_installer b/pandora_server/pandora_server_installer
index 5642aa9ec6..f7453e724d 100755
--- a/pandora_server/pandora_server_installer
+++ b/pandora_server/pandora_server_installer
@@ -9,7 +9,7 @@
 # **********************************************************************
 
 PI_VERSION="7.0NG.762"
-PI_BUILD="220614"
+PI_BUILD="220615"
 
 MODE=$1
 if [ $# -gt 1 ]; then
diff --git a/pandora_server/util/pandora_db.pl b/pandora_server/util/pandora_db.pl
index c2cd3f5a11..d5ca16614c 100755
--- a/pandora_server/util/pandora_db.pl
+++ b/pandora_server/util/pandora_db.pl
@@ -35,7 +35,7 @@ use PandoraFMS::Config;
 use PandoraFMS::DB;
 
 # version: define current version
-my $version = "7.0NG.762 Build 220614";
+my $version = "7.0NG.762 Build 220615";
 
 # Pandora server configuration
 my %conf;
diff --git a/pandora_server/util/pandora_manage.pl b/pandora_server/util/pandora_manage.pl
index cffa3811ef..96ae2ece1a 100755
--- a/pandora_server/util/pandora_manage.pl
+++ b/pandora_server/util/pandora_manage.pl
@@ -36,7 +36,7 @@ use Encode::Locale;
 Encode::Locale::decode_argv;
 
 # version: define current version
-my $version = "7.0NG.762 Build 220614";
+my $version = "7.0NG.762 Build 220615";
 
 # save program name for logging
 my $progname = basename($0);

From 9a7e0e32289361fffda4e5025878a609e865a649 Mon Sep 17 00:00:00 2001
From: Daniel Maya <daniel.maya@pandorafms.com>
Date: Wed, 15 Jun 2022 09:37:29 +0200
Subject: [PATCH 125/138] #8899 Fixed history_db_enabled

---
 pandora_console/include/functions_config.php | 83 ++++++++++----------
 1 file changed, 43 insertions(+), 40 deletions(-)

diff --git a/pandora_console/include/functions_config.php b/pandora_console/include/functions_config.php
index c934a7aea7..635ca25767 100644
--- a/pandora_console/include/functions_config.php
+++ b/pandora_console/include/functions_config.php
@@ -1619,48 +1619,51 @@ function config_update_config()
                             $dbm->process();
                         } else if ($dbm->check() !== true) {
                             $errors[] = $dbm->getLastError();
+                            config_update_value('history_db_enabled', false);
+                        }
+
+                        if ($dbm->check() === true) {
+                            // Historical configuration tokens (stored in historical db).
+                            if (Config::set(
+                                'days_purge',
+                                get_parameter('history_dbh_purge'),
+                                true
+                            ) !== true
+                            ) {
+                                $error_update[] = __('Historical database purge');
+                            }
+
+                            if (Config::set(
+                                'history_partitions_auto',
+                                get_parameter_switch('history_partitions_auto', 0),
+                                true
+                            ) !== true
+                            ) {
+                                $error_update[] = __('Historical database partitions');
+                            }
+
+                            if (Config::set(
+                                'event_purge',
+                                get_parameter('history_dbh_events_purge'),
+                                true
+                            ) !== true
+                            ) {
+                                $error_update[] = __('Historical database events purge');
+                            }
+
+                            if (Config::set(
+                                'string_purge',
+                                get_parameter('history_dbh_string_purge'),
+                                true
+                            ) !== true
+                            ) {
+                                $error_update[] = __('Historical database string purge');
+                            }
+
+                            // Disable history db in history db.
+                            Config::set('history_db_enabled', 0, true);
                         }
                     }
-
-                    // Historical configuration tokens (stored in historical db).
-                    if (Config::set(
-                        'days_purge',
-                        get_parameter('history_dbh_purge'),
-                        true
-                    ) !== true
-                    ) {
-                        $error_update[] = __('Historical database purge');
-                    }
-
-                    if (Config::set(
-                        'history_partitions_auto',
-                        get_parameter_switch('history_partitions_auto', 0),
-                        true
-                    ) !== true
-                    ) {
-                        $error_update[] = __('Historical database partitions');
-                    }
-
-                    if (Config::set(
-                        'event_purge',
-                        get_parameter('history_dbh_events_purge'),
-                        true
-                    ) !== true
-                    ) {
-                        $error_update[] = __('Historical database events purge');
-                    }
-
-                    if (Config::set(
-                        'string_purge',
-                        get_parameter('history_dbh_string_purge'),
-                        true
-                    ) !== true
-                    ) {
-                        $error_update[] = __('Historical database string purge');
-                    }
-
-                    // Disable history db in history db.
-                    Config::set('history_db_enabled', 0, true);
                 break;
 
                 case 'ehorus':

From 592d09d34a99f3c019afe84cdd7ed31187a443ce Mon Sep 17 00:00:00 2001
From: artica <artica.devel@gmail.com>
Date: Thu, 16 Jun 2022 01:00:17 +0200
Subject: [PATCH 126/138] Auto-updated build strings.

---
 pandora_agents/unix/DEBIAN/control             | 2 +-
 pandora_agents/unix/DEBIAN/make_deb_package.sh | 2 +-
 pandora_agents/unix/pandora_agent              | 2 +-
 pandora_agents/unix/pandora_agent.redhat.spec  | 2 +-
 pandora_agents/unix/pandora_agent.spec         | 2 +-
 pandora_agents/unix/pandora_agent_installer    | 2 +-
 pandora_agents/win32/installer/pandora.mpi     | 2 +-
 pandora_agents/win32/pandora.cc                | 2 +-
 pandora_agents/win32/versioninfo.rc            | 2 +-
 pandora_console/DEBIAN/control                 | 2 +-
 pandora_console/DEBIAN/make_deb_package.sh     | 2 +-
 pandora_console/include/config_process.php     | 2 +-
 pandora_console/install.php                    | 2 +-
 pandora_console/pandora_console.redhat.spec    | 2 +-
 pandora_console/pandora_console.rhel7.spec     | 2 +-
 pandora_console/pandora_console.spec           | 2 +-
 pandora_server/DEBIAN/control                  | 2 +-
 pandora_server/DEBIAN/make_deb_package.sh      | 2 +-
 pandora_server/lib/PandoraFMS/Config.pm        | 2 +-
 pandora_server/lib/PandoraFMS/PluginTools.pm   | 2 +-
 pandora_server/pandora_server.redhat.spec      | 2 +-
 pandora_server/pandora_server.spec             | 2 +-
 pandora_server/pandora_server_installer        | 2 +-
 pandora_server/util/pandora_db.pl              | 2 +-
 pandora_server/util/pandora_manage.pl          | 2 +-
 25 files changed, 25 insertions(+), 25 deletions(-)

diff --git a/pandora_agents/unix/DEBIAN/control b/pandora_agents/unix/DEBIAN/control
index 119f59a1e4..7aa0b1dc23 100644
--- a/pandora_agents/unix/DEBIAN/control
+++ b/pandora_agents/unix/DEBIAN/control
@@ -1,5 +1,5 @@
 package: pandorafms-agent-unix
-Version: 7.0NG.762-220615
+Version: 7.0NG.762-220616
 Architecture: all
 Priority: optional
 Section: admin
diff --git a/pandora_agents/unix/DEBIAN/make_deb_package.sh b/pandora_agents/unix/DEBIAN/make_deb_package.sh
index 8c9841cbb7..da2264d92c 100644
--- a/pandora_agents/unix/DEBIAN/make_deb_package.sh
+++ b/pandora_agents/unix/DEBIAN/make_deb_package.sh
@@ -14,7 +14,7 @@
 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 # GNU General Public License for more details.
 
-pandora_version="7.0NG.762-220615"
+pandora_version="7.0NG.762-220616"
 
 echo "Test if you has the tools for to make the packages."
 whereis dpkg-deb | cut -d":" -f2 | grep dpkg-deb > /dev/null
diff --git a/pandora_agents/unix/pandora_agent b/pandora_agents/unix/pandora_agent
index e3a83cec84..746683baf2 100755
--- a/pandora_agents/unix/pandora_agent
+++ b/pandora_agents/unix/pandora_agent
@@ -1015,7 +1015,7 @@ my $Sem = undef;
 my $ThreadSem = undef;
 
 use constant AGENT_VERSION => '7.0NG.762';
-use constant AGENT_BUILD => '220615';
+use constant AGENT_BUILD => '220616';
 
 # Agent log default file size maximum and instances
 use constant DEFAULT_MAX_LOG_SIZE => 600000;
diff --git a/pandora_agents/unix/pandora_agent.redhat.spec b/pandora_agents/unix/pandora_agent.redhat.spec
index 03414f5138..d64f371dcd 100644
--- a/pandora_agents/unix/pandora_agent.redhat.spec
+++ b/pandora_agents/unix/pandora_agent.redhat.spec
@@ -3,7 +3,7 @@
 #
 %define name        pandorafms_agent_unix
 %define version     7.0NG.762
-%define release     220615
+%define release     220616
 
 Summary:            Pandora FMS Linux agent, PERL version
 Name:               %{name}
diff --git a/pandora_agents/unix/pandora_agent.spec b/pandora_agents/unix/pandora_agent.spec
index ce161155b3..9bfcd6774f 100644
--- a/pandora_agents/unix/pandora_agent.spec
+++ b/pandora_agents/unix/pandora_agent.spec
@@ -3,7 +3,7 @@
 #
 %define name        pandorafms_agent_unix
 %define version     7.0NG.762
-%define release     220615
+%define release     220616
 
 Summary:            Pandora FMS Linux agent, PERL version
 Name:               %{name}
diff --git a/pandora_agents/unix/pandora_agent_installer b/pandora_agents/unix/pandora_agent_installer
index 88b55738c5..e32d36a978 100755
--- a/pandora_agents/unix/pandora_agent_installer
+++ b/pandora_agents/unix/pandora_agent_installer
@@ -10,7 +10,7 @@
 # **********************************************************************
 
 PI_VERSION="7.0NG.762"
-PI_BUILD="220615"
+PI_BUILD="220616"
 OS_NAME=`uname -s`
 
 FORCE=0
diff --git a/pandora_agents/win32/installer/pandora.mpi b/pandora_agents/win32/installer/pandora.mpi
index 4a81e3c2a7..b50d0d622d 100644
--- a/pandora_agents/win32/installer/pandora.mpi
+++ b/pandora_agents/win32/installer/pandora.mpi
@@ -186,7 +186,7 @@ UpgradeApplicationID
 {}
 
 Version
-{220615}
+{220616}
 
 ViewReadme
 {Yes}
diff --git a/pandora_agents/win32/pandora.cc b/pandora_agents/win32/pandora.cc
index 490ac8919b..06b91d8b58 100644
--- a/pandora_agents/win32/pandora.cc
+++ b/pandora_agents/win32/pandora.cc
@@ -30,7 +30,7 @@ using namespace Pandora;
 using namespace Pandora_Strutils;
 
 #define PATH_SIZE    _MAX_PATH+1
-#define PANDORA_VERSION ("7.0NG.762 Build 220615")
+#define PANDORA_VERSION ("7.0NG.762 Build 220616")
 
 string pandora_path;
 string pandora_dir;
diff --git a/pandora_agents/win32/versioninfo.rc b/pandora_agents/win32/versioninfo.rc
index 695cb556d0..0610000718 100644
--- a/pandora_agents/win32/versioninfo.rc
+++ b/pandora_agents/win32/versioninfo.rc
@@ -11,7 +11,7 @@ BEGIN
       VALUE "LegalCopyright", "Artica ST"
       VALUE "OriginalFilename", "PandoraAgent.exe"
       VALUE "ProductName", "Pandora FMS Windows Agent"
-      VALUE "ProductVersion", "(7.0NG.762(Build 220615))"
+      VALUE "ProductVersion", "(7.0NG.762(Build 220616))"
       VALUE "FileVersion", "1.0.0.0"
     END
   END
diff --git a/pandora_console/DEBIAN/control b/pandora_console/DEBIAN/control
index 51e17e0701..9bc4338c1f 100644
--- a/pandora_console/DEBIAN/control
+++ b/pandora_console/DEBIAN/control
@@ -1,5 +1,5 @@
 package: pandorafms-console
-Version: 7.0NG.762-220615
+Version: 7.0NG.762-220616
 Architecture: all
 Priority: optional
 Section: admin
diff --git a/pandora_console/DEBIAN/make_deb_package.sh b/pandora_console/DEBIAN/make_deb_package.sh
index 558ea0017b..57af185b00 100644
--- a/pandora_console/DEBIAN/make_deb_package.sh
+++ b/pandora_console/DEBIAN/make_deb_package.sh
@@ -14,7 +14,7 @@
 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 # GNU General Public License for more details.
 
-pandora_version="7.0NG.762-220615"
+pandora_version="7.0NG.762-220616"
 
 package_pear=0
 package_pandora=1
diff --git a/pandora_console/include/config_process.php b/pandora_console/include/config_process.php
index 9823d14fe5..9db7f38355 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 = 'PC220615';
+$build_version = 'PC220616';
 $pandora_version = 'v7.0NG.762';
 
 // Do not overwrite default timezone set if defined.
diff --git a/pandora_console/install.php b/pandora_console/install.php
index 07c51d5494..727e4c4d98 100644
--- a/pandora_console/install.php
+++ b/pandora_console/install.php
@@ -129,7 +129,7 @@
         <div style='height: 10px'>
             <?php
             $version = '7.0NG.762';
-            $build = '220615';
+            $build = '220616';
             $banner = "v$version Build $build";
 
             error_reporting(0);
diff --git a/pandora_console/pandora_console.redhat.spec b/pandora_console/pandora_console.redhat.spec
index d4ca79d56d..59781de1a2 100644
--- a/pandora_console/pandora_console.redhat.spec
+++ b/pandora_console/pandora_console.redhat.spec
@@ -3,7 +3,7 @@
 #
 %define name        pandorafms_console
 %define version     7.0NG.762
-%define release     220615
+%define release     220616
 
 # User and Group under which Apache is running
 %define httpd_name  httpd
diff --git a/pandora_console/pandora_console.rhel7.spec b/pandora_console/pandora_console.rhel7.spec
index 2e3929ae46..d67df879aa 100644
--- a/pandora_console/pandora_console.rhel7.spec
+++ b/pandora_console/pandora_console.rhel7.spec
@@ -3,7 +3,7 @@
 #
 %define name        pandorafms_console
 %define version     7.0NG.762
-%define release     220615
+%define release     220616
 
 # User and Group under which Apache is running
 %define httpd_name  httpd
diff --git a/pandora_console/pandora_console.spec b/pandora_console/pandora_console.spec
index 88670756ac..b17922032b 100644
--- a/pandora_console/pandora_console.spec
+++ b/pandora_console/pandora_console.spec
@@ -3,7 +3,7 @@
 #
 %define name        pandorafms_console
 %define version     7.0NG.762
-%define release     220615
+%define release     220616
 %define httpd_name      httpd
 # User and Group under which Apache is running
 %define httpd_name  apache2
diff --git a/pandora_server/DEBIAN/control b/pandora_server/DEBIAN/control
index 5fba1e1706..88e8056af5 100644
--- a/pandora_server/DEBIAN/control
+++ b/pandora_server/DEBIAN/control
@@ -1,5 +1,5 @@
 package: pandorafms-server
-Version: 7.0NG.762-220615
+Version: 7.0NG.762-220616
 Architecture: all
 Priority: optional
 Section: admin
diff --git a/pandora_server/DEBIAN/make_deb_package.sh b/pandora_server/DEBIAN/make_deb_package.sh
index 4334b47273..c7a1a53370 100644
--- a/pandora_server/DEBIAN/make_deb_package.sh
+++ b/pandora_server/DEBIAN/make_deb_package.sh
@@ -14,7 +14,7 @@
 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 # GNU General Public License for more details.
 
-pandora_version="7.0NG.762-220615"
+pandora_version="7.0NG.762-220616"
 
 package_cpan=0
 package_pandora=1
diff --git a/pandora_server/lib/PandoraFMS/Config.pm b/pandora_server/lib/PandoraFMS/Config.pm
index 5352c013c0..6a2dffb4bc 100644
--- a/pandora_server/lib/PandoraFMS/Config.pm
+++ b/pandora_server/lib/PandoraFMS/Config.pm
@@ -46,7 +46,7 @@ our @EXPORT = qw(
 
 # version: Defines actual version of Pandora Server for this module only
 my $pandora_version = "7.0NG.762";
-my $pandora_build = "220615";
+my $pandora_build = "220616";
 our $VERSION = $pandora_version." ".$pandora_build;
 
 # Setup hash
diff --git a/pandora_server/lib/PandoraFMS/PluginTools.pm b/pandora_server/lib/PandoraFMS/PluginTools.pm
index ff33fdf1ce..74c972bf88 100644
--- a/pandora_server/lib/PandoraFMS/PluginTools.pm
+++ b/pandora_server/lib/PandoraFMS/PluginTools.pm
@@ -34,7 +34,7 @@ our @ISA = qw(Exporter);
 
 # version: Defines actual version of Pandora Server for this module only
 my $pandora_version = "7.0NG.762";
-my $pandora_build = "220615";
+my $pandora_build = "220616";
 our $VERSION = $pandora_version." ".$pandora_build;
 
 our %EXPORT_TAGS = ( 'all' => [ qw() ] );
diff --git a/pandora_server/pandora_server.redhat.spec b/pandora_server/pandora_server.redhat.spec
index 5c4d09f07f..6fb8f0728d 100644
--- a/pandora_server/pandora_server.redhat.spec
+++ b/pandora_server/pandora_server.redhat.spec
@@ -3,7 +3,7 @@
 #
 %define name        pandorafms_server
 %define version     7.0NG.762
-%define release     220615
+%define release     220616
 
 Summary:            Pandora FMS Server
 Name:               %{name}
diff --git a/pandora_server/pandora_server.spec b/pandora_server/pandora_server.spec
index 9dead83f81..7f8879a00c 100644
--- a/pandora_server/pandora_server.spec
+++ b/pandora_server/pandora_server.spec
@@ -3,7 +3,7 @@
 #
 %define name        pandorafms_server
 %define version     7.0NG.762
-%define release     220615
+%define release     220616
 
 Summary:            Pandora FMS Server
 Name:               %{name}
diff --git a/pandora_server/pandora_server_installer b/pandora_server/pandora_server_installer
index f7453e724d..2cfa52c101 100755
--- a/pandora_server/pandora_server_installer
+++ b/pandora_server/pandora_server_installer
@@ -9,7 +9,7 @@
 # **********************************************************************
 
 PI_VERSION="7.0NG.762"
-PI_BUILD="220615"
+PI_BUILD="220616"
 
 MODE=$1
 if [ $# -gt 1 ]; then
diff --git a/pandora_server/util/pandora_db.pl b/pandora_server/util/pandora_db.pl
index d5ca16614c..d9eb2ebdae 100755
--- a/pandora_server/util/pandora_db.pl
+++ b/pandora_server/util/pandora_db.pl
@@ -35,7 +35,7 @@ use PandoraFMS::Config;
 use PandoraFMS::DB;
 
 # version: define current version
-my $version = "7.0NG.762 Build 220615";
+my $version = "7.0NG.762 Build 220616";
 
 # Pandora server configuration
 my %conf;
diff --git a/pandora_server/util/pandora_manage.pl b/pandora_server/util/pandora_manage.pl
index 96ae2ece1a..5c6f848398 100755
--- a/pandora_server/util/pandora_manage.pl
+++ b/pandora_server/util/pandora_manage.pl
@@ -36,7 +36,7 @@ use Encode::Locale;
 Encode::Locale::decode_argv;
 
 # version: define current version
-my $version = "7.0NG.762 Build 220615";
+my $version = "7.0NG.762 Build 220616";
 
 # save program name for logging
 my $progname = basename($0);

From bb01bfe2d0d6dbc4531a1653a41386f83e306f76 Mon Sep 17 00:00:00 2001
From: Daniel Maya <daniel.maya@pandorafms.com>
Date: Thu, 16 Jun 2022 08:44:09 +0200
Subject: [PATCH 127/138] #8899 Fixed history_db_enabled 2

---
 pandora_console/include/functions_config.php  | 22 ++++++++-----------
 .../include/lib/Core/DBMaintainer.php         |  2 +-
 2 files changed, 10 insertions(+), 14 deletions(-)

diff --git a/pandora_console/include/functions_config.php b/pandora_console/include/functions_config.php
index 635ca25767..25a5093a69 100644
--- a/pandora_console/include/functions_config.php
+++ b/pandora_console/include/functions_config.php
@@ -1624,44 +1624,40 @@ function config_update_config()
 
                         if ($dbm->check() === true) {
                             // Historical configuration tokens (stored in historical db).
-                            if (Config::set(
+                            if ($dbm->setConfigToken(
                                 'days_purge',
-                                get_parameter('history_dbh_purge'),
-                                true
+                                get_parameter('history_dbh_purge')
                             ) !== true
                             ) {
                                 $error_update[] = __('Historical database purge');
                             }
 
-                            if (Config::set(
+                            if ($dbm->setConfigToken(
                                 'history_partitions_auto',
-                                get_parameter_switch('history_partitions_auto', 0),
-                                true
+                                get_parameter_switch('history_partitions_auto', 0)
                             ) !== true
                             ) {
                                 $error_update[] = __('Historical database partitions');
                             }
 
-                            if (Config::set(
+                            if ($dbm->setConfigToken(
                                 'event_purge',
-                                get_parameter('history_dbh_events_purge'),
-                                true
+                                get_parameter('history_dbh_events_purge')
                             ) !== true
                             ) {
                                 $error_update[] = __('Historical database events purge');
                             }
 
-                            if (Config::set(
+                            if ($dbm->setConfigToken(
                                 'string_purge',
-                                get_parameter('history_dbh_string_purge'),
-                                true
+                                get_parameter('history_dbh_string_purge')
                             ) !== true
                             ) {
                                 $error_update[] = __('Historical database string purge');
                             }
 
                             // Disable history db in history db.
-                            Config::set('history_db_enabled', 0, true);
+                            $dbm->setConfigToken('history_db_enabled', 0);
                         }
                     }
                 break;
diff --git a/pandora_console/include/lib/Core/DBMaintainer.php b/pandora_console/include/lib/Core/DBMaintainer.php
index 5bd0ba6695..aa09c385f8 100644
--- a/pandora_console/include/lib/Core/DBMaintainer.php
+++ b/pandora_console/include/lib/Core/DBMaintainer.php
@@ -384,7 +384,7 @@ final class DBMaintainer
      *
      * @return boolean Success or not.
      */
-    private function setConfigToken(string $token, $value)
+    public function setConfigToken(string $token, $value)
     {
         $prev = $this->getValue('tconfig', 'value', ['token' => $token]);
         // If failed or not found, then insert.

From 4ee4590690455ac753e0d8be4aaee58710b43224 Mon Sep 17 00:00:00 2001
From: "edu.corral" <eduardo.corral@artica.es>
Date: Thu, 16 Jun 2022 13:02:49 +0200
Subject: [PATCH 128/138] ent-9067 notifications fixed

---
 .../include/class/ConsoleSupervisor.php       |  12 +-
 .../include/functions_notifications.php       | 141 ++++++++----
 pandora_console/index.php                     | 200 +++++++++++-------
 3 files changed, 221 insertions(+), 132 deletions(-)

diff --git a/pandora_console/include/class/ConsoleSupervisor.php b/pandora_console/include/class/ConsoleSupervisor.php
index 2e27ee6c62..7a17aba028 100644
--- a/pandora_console/include/class/ConsoleSupervisor.php
+++ b/pandora_console/include/class/ConsoleSupervisor.php
@@ -2145,8 +2145,8 @@ class ConsoleSupervisor
                 [
                     'type'    => 'NOTIF.UPDATEMANAGER.REGISTRATION',
                     'title'   => __('This instance is not registered in the Update manager section'),
-                    'message' => __('Click <a class="bolder underline" href="javascript: force_run_register();"> here</a> to start the registration process'),
-                    'url'     => 'javascript: force_run_register();',
+                    'message' => __('Click here to start the registration process'),
+                    'url'     => '__url__/index.php?sec=messages&sec2=godmode/update_manager/update_manager&tab=online',
                 ]
             );
         } else {
@@ -2166,7 +2166,7 @@ class ConsoleSupervisor
         // Check default password for "admin".
         $admin_with_default_pass = db_get_value_sql(
             'SELECT count(*) FROM tusuario
-            WHERE 
+            WHERE
                 id_user="admin"
                 AND password="1da7ee7d45b96d0e1f45ee4ee23da560"
                 AND is_admin=1
@@ -2441,11 +2441,11 @@ class ConsoleSupervisor
         config_update_value('last_um_check', $future, true);
 
         $messages = update_manager_get_messages();
+
         if (is_array($messages) === true) {
             $source_id = get_notification_source_id(
                 'Official&#x20;communication'
             );
-
             foreach ($messages as $message) {
                 if (isset($message['url']) === false) {
                     $message['url'] = '#';
@@ -2476,8 +2476,8 @@ class ConsoleSupervisor
         // List all servers except satellite server.
         $server_version_list = db_get_all_rows_sql(
             sprintf(
-                'SELECT `name`, `version` 
-                FROM tserver 
+                'SELECT `name`, `version`
+                FROM tserver
                 WHERE server_type != %d
                 GROUP BY `version`',
                 SERVER_TYPE_ENTERPRISE_SATELLITE
diff --git a/pandora_console/include/functions_notifications.php b/pandora_console/include/functions_notifications.php
index ba18483af0..c72cfb15f4 100644
--- a/pandora_console/include/functions_notifications.php
+++ b/pandora_console/include/functions_notifications.php
@@ -84,10 +84,7 @@ function get_notification_targets(int $id_message)
 
     if (is_array($ret)) {
         foreach ($ret as $row) {
-            array_push(
-                $targets['users'],
-                get_user_fullname($row['id_user'])
-            );
+            array_push($targets['users'], get_user_fullname($row['id_user']));
         }
     }
 
@@ -227,8 +224,10 @@ function check_notification_readable(int $id_message)
  *
  * @return array [users] and [groups] with the targets.
  */
-function get_notification_source_targets(int $id_source, ?string $subtype=null)
-{
+function get_notification_source_targets(
+    int $id_source,
+    ?string $subtype=null
+) {
     $ret = [];
 
     $filter = '';
@@ -484,7 +483,8 @@ function notifications_add_group_to_source($source_id, $groups)
             continue;
         }
 
-        $res = $res && db_process_sql_insert(
+        $res = $res &&
+        db_process_sql_insert(
             'tnotification_source_group',
             [
                 'id_group'  => $group,
@@ -525,7 +525,8 @@ function notifications_add_users_to_source($source_id, $users)
             continue;
         }
 
-        $res = $res && db_process_sql_insert(
+        $res = $res &&
+        db_process_sql_insert(
             'tnotification_source_user',
             [
                 'id_user'   => $user,
@@ -551,7 +552,13 @@ function notifications_add_users_to_source($source_id, $users)
 function notifications_get_group_source_not_configured($source_id)
 {
     $groups_selected = notifications_get_group_sources_for_select($source_id);
-    $all_groups = users_get_groups_for_select(false, 'AR', false, true, $groups_selected);
+    $all_groups = users_get_groups_for_select(
+        false,
+        'AR',
+        false,
+        true,
+        $groups_selected
+    );
     return array_diff($all_groups, $groups_selected);
 }
 
@@ -566,12 +573,10 @@ function notifications_get_group_source_not_configured($source_id)
  */
 function notifications_get_user_source_not_configured($source_id)
 {
-    $users_selected = array_keys(notifications_get_user_sources_for_select($source_id));
-    $users = get_users(
-        'id_user',
-        ['!id_user' => $users_selected],
-        ['id_user']
+    $users_selected = array_keys(
+        notifications_get_user_sources_for_select($source_id)
     );
+    $users = get_users('id_user', ['!id_user' => $users_selected], ['id_user']);
     return index_array($users, 'id_user', 'id_user');
 }
 
@@ -587,8 +592,8 @@ function notifications_get_user_source_not_configured($source_id)
 function notifications_build_user_enable_return($status, $enabled)
 {
     return [
-        'status'  => ((bool) $status === true) ? 1 : 0,
-        'enabled' => ((bool) $enabled === true) ? 1 : 0,
+        'status'  => (bool) $status === true ? 1 : 0,
+        'enabled' => (bool) $enabled === true ? 1 : 0,
     ];
 }
 
@@ -625,16 +630,11 @@ function notifications_get_user_label_status($source, $user, $label)
 
     $common_groups = array_intersect(
         array_keys(users_get_groups($user)),
-        array_keys(
-            notifications_get_group_sources_for_select($source['id'])
-        )
+        array_keys(notifications_get_group_sources_for_select($source['id']))
     );
     // No group found, return no permissions.
     $value = empty($common_groups) ? false : $source[$label];
-    return notifications_build_user_enable_return(
-        $value,
-        false
-    );
+    return notifications_build_user_enable_return($value, false);
 }
 
 
@@ -681,13 +681,7 @@ function notifications_get_counters()
 {
     $num_notifications = 0;
     $last_id = 0;
-    $last_message = messages_get_overview(
-        'timestamp',
-        'DESC',
-        false,
-        false,
-        1
-    );
+    $last_message = messages_get_overview('timestamp', 'DESC', false, false, 1);
     if (!empty($last_message)) {
         $num_notifications = messages_get_count();
         $last_id = $last_message[0]['id_mensaje'];
@@ -718,7 +712,9 @@ function notifications_get_counters()
 function notifications_print_ball($num_notifications, $last_id)
 {
     $no_notifications = (int) $num_notifications === 0;
-    $class_status = ($no_notifications) ? 'notification-ball-no-messages' : 'notification-ball-new-messages';
+    $class_status = $no_notifications
+    ? 'notification-ball-no-messages'
+    : 'notification-ball-new-messages';
     return sprintf(
         '<div
             %s
@@ -728,7 +724,7 @@ function notifications_print_ball($num_notifications, $last_id)
         >
             %s
         </div>',
-        ($no_notifications) ? '' : 'onclick="addNotifications(event)"',
+        $no_notifications ? '' : 'onclick="addNotifications(event)"',
         $class_status,
         $last_id,
         $num_notifications
@@ -799,7 +795,7 @@ function notifications_print_global_source_configuration($source)
                     'type'        => 'switch',
                     'id'          => 'nt-'.$source['id'].'.'.$type.'-subtype',
                     'class'       => 'elem-clickable',
-                    'value'       => (isset($blacklist[$type]) === false),
+                    'value'       => isset($blacklist[$type]) === false,
                     'return'      => true,
                 ]
             );
@@ -833,14 +829,11 @@ function notifications_print_global_source_configuration($source)
  *
  * @return string HTML with the generated selector
  */
-function notifications_print_source_select_box(
-    $info_selec,
-    $id,
-    $source_id
-) {
-    $title = ($id === 'users') ? __('Notified users') : __('Notified groups');
-    $add_title = ($id === 'users') ? __('Add users') : __('Add groups');
-    $delete_title = ($id === 'users') ? __('Delete users') : __('Delete groups');
+function notifications_print_source_select_box($info_selec, $id, $source_id)
+{
+    $title = $id === 'users' ? __('Notified users') : __('Notified groups');
+    $add_title = $id === 'users' ? __('Add users') : __('Add groups');
+    $delete_title = $id === 'users' ? __('Delete users') : __('Delete groups');
 
     // Generate the HTML.
     return sprintf(
@@ -873,11 +866,7 @@ function notifications_print_source_select_box(
             true,
             [
                 'title'   => $add_title,
-                'onclick' => sprintf(
-                    "add_source_dialog('%s', '%s')",
-                    $id,
-                    $source_id
-                ),
+                'onclick' => sprintf("add_source_dialog('%s', '%s')", $id, $source_id),
             ]
         ),
         html_print_image(
@@ -1062,12 +1051,28 @@ function notifications_print_dropdown()
 function notifications_print_dropdown_element($message_info)
 {
     $action = '';
-
     switch ($message_info['description']) {
         case 'Official&#x20;communication':
             $action = 'show_modal(this.id);';
             $target = '';
             $body_preview = __('Click here to get more information');
+            preg_match(
+                '/LTS\s+(\d*)/',
+                io_safe_output($message_info['subject']),
+                $array_version
+            );
+
+            if (empty($array_version) === false
+                && isset($array_version[1]) === true
+            ) {
+                  $version = (int) $array_version[1];
+                  $result = notifications_curl_new_version_description($version);
+                if (empty($result) === false) {
+                    $title = explode('\n', $result);
+                    hd($title, true);
+                    $action = 'show_modal_lts("'.base64_encode(io_safe_output($message_info['subject'])).'","'.base64_encode($result).'")';
+                }
+            }
         break;
 
         default:
@@ -1128,3 +1133,45 @@ function notifications_print_dropdown_element($message_info)
         $body_preview
     );
 }
+
+
+function notifications_curl_new_version_description(int $version)
+{
+    global $config;
+
+    $pandora_license = db_get_value('value', 'tupdate_settings', '`key`', 'customer_key');
+
+    $params = [
+        'action'          => 'newer_packages',
+        'puid'            => $config['pandora_uid'],
+        'build'           => ($version - 1),
+        'current_package' => ($version - 1),
+        'license'         => $pandora_license,
+        'limit_count'     => 1,
+        'language'        => $config['language'],
+        'timezone'        => $config['timezone'],
+        'version'         => 'v7.0NG.'.$config['current_package'],
+        'email'           => '',
+        'format'          => 'lts',
+    ];
+    $defaults = [
+        CURLOPT_URL            => $config['url_update_manager'],
+        CURLOPT_POST           => true,
+        CURLOPT_POSTFIELDS     => $params,
+        CURLOPT_RETURNTRANSFER => 1,
+    ];
+    $ch = curl_init();
+    curl_setopt_array($ch, $defaults);
+    $result = curl_exec($ch);
+    curl_close($ch);
+
+    $result = json_decode($result, true);
+
+    if (isset($result[0]['description']) === false) {
+        $result = '';
+    } else {
+        $result = $result[0]['description'];
+    }
+
+    return $result;
+}
diff --git a/pandora_console/index.php b/pandora_console/index.php
index 15d1b1c4fc..3f3fc111b0 100755
--- a/pandora_console/index.php
+++ b/pandora_console/index.php
@@ -1,4 +1,5 @@
 <?php
+
 /**
  * Index.
  *
@@ -53,8 +54,8 @@ $develop_bypass = 0;
 
 if ($develop_bypass != 1) {
     // If no config file, automatically try to install.
-    if (! file_exists('include/config.php')) {
-        if (! file_exists('install.php')) {
+    if (!file_exists('include/config.php')) {
+        if (!file_exists('install.php')) {
             $url = explode('/', $_SERVER['REQUEST_URI']);
             $flag_url = 0;
             foreach ($url as $key => $value) {
@@ -128,8 +129,8 @@ if ($develop_bypass != 1) {
     }
 }
 
-if ((! file_exists('include/config.php'))
-    || (! is_readable('include/config.php'))
+if ((!file_exists('include/config.php'))
+    || (!is_readable('include/config.php'))
 ) {
     $login_screen = 'error_noconfig';
     include 'general/error_screen.php';
@@ -224,9 +225,9 @@ ob_start('ui_process_page_head');
 enterprise_include_once('index.php');
 
 echo '<script type="text/javascript">';
-    echo 'var dispositivo = navigator.userAgent.toLowerCase();';
-    echo 'if( dispositivo.search(/iphone|ipod|ipad|android/) > -1 ){';
-        echo 'document.location = "'.ui_get_full_url('/mobile').'";  }';
+echo 'var dispositivo = navigator.userAgent.toLowerCase();';
+echo 'if( dispositivo.search(/iphone|ipod|ipad|android/) > -1 ){';
+echo 'document.location = "'.ui_get_full_url('/mobile').'";  }';
 echo '</script>';
 
 // This tag is included in the buffer passed to ui_process_page_head so
@@ -275,7 +276,7 @@ if (strlen($search) > 0) {
 
 // Login process.
 enterprise_include_once('include/auth/saml.php');
-if (! isset($config['id_user'])) {
+if (!isset($config['id_user'])) {
     // Clear error messages.
     unset($_COOKIE['errormsg']);
     setcookie('errormsg', null, -1);
@@ -731,9 +732,9 @@ if (! isset($config['id_user'])) {
         }
 
         // Boolean parameters.
-        $correct_pass_change = (boolean) get_parameter('correct_pass_change', false);
-        $reset               = (boolean) get_parameter('reset', false);
-        $first               = (boolean) get_parameter('first', false);
+        $correct_pass_change = (bool) get_parameter('correct_pass_change', false);
+        $reset               = (bool) get_parameter('reset', false);
+        $first               = (bool) get_parameter('first', false);
         // Strings.
         $reset_hash          = get_parameter('reset_hash');
         $pass1               = get_parameter_post('pass1');
@@ -955,7 +956,7 @@ if (! isset($config['id_user'])) {
         exit('</html>');
     } else {
         if (((bool) $user_in_db['is_admin'] === false)
-            && (            (bool) $user_in_db['not_login'] === true
+            && ((bool) $user_in_db['not_login'] === true
             || (is_metaconsole() === false
             && has_metaconsole() === true
             && is_management_allowed() === false
@@ -1170,7 +1171,7 @@ if (has_metaconsole() === true
         $err .= '</div>';
         ?>
         <script type="text/javascript">
-            $(document).ready(function () {
+            $(document).ready(function() {
                 infoMessage({
                     title: '<?php echo __('Warning'); ?>',
                     text: '<?php echo $err; ?>',
@@ -1208,7 +1209,7 @@ if ($searchPage) {
                     $main_sec = $sec;
                 }
             } else if ($sec == 'gextensions') {
-                    $main_sec = get_parameter('extension_in_menu');
+                $main_sec = get_parameter('extension_in_menu');
                 if (empty($main_sec) === true) {
                     $main_sec = $sec;
                 }
@@ -1379,12 +1380,12 @@ if ($config['pure'] == 0) {
     // Main pure.
 }
 
-html_print_div(
+echo html_print_div(
     ['id' => 'wiz_container'],
     true
 );
 
-html_print_div(
+echo html_print_div(
     ['id' => 'um_msg_receiver'],
     true
 );
@@ -1426,26 +1427,27 @@ require 'include/php_to_js_values.php';
 ?>
 
 <script type="text/javascript" language="javascript">
-
     // When there are less than 5 rows, all rows must be white
     var theme = "<?php echo $config['style']; ?>";
-        if(theme === 'pandora'){
-        if($('table.info_table tr').length < 5){
+    if (theme === 'pandora') {
+        if ($('table.info_table tr').length < 5) {
             $('table.info_table tbody > tr').css('background-color', '#fff');
         }
     }
 
     // When the user scrolls down 400px from the top of the document, show the
     // button.
-    window.onscroll = function() {scrollFunction()};
+    window.onscroll = function() {
+        scrollFunction()
+    };
 
     function scrollFunction() {
         if (document.body.scrollTop > 400 || document.documentElement.scrollTop > 400) {
-            if(document.getElementById("top_btn")){
+            if (document.getElementById("top_btn")) {
                 document.getElementById("top_btn").style.display = "block";
             }
         } else {
-            if(document.getElementById("top_btn")){
+            if (document.getElementById("top_btn")) {
                 document.getElementById("top_btn").style.display = "none";
             }
         }
@@ -1455,48 +1457,49 @@ require 'include/php_to_js_values.php';
     function topFunction() {
 
         /*
-        * Safari.
-        * document.body.scrollTop = 0;
-        * For Chrome, Firefox, IE and Opera.
-        * document.documentElement.scrollTop = 0; 
-        */
+         * Safari.
+         * document.body.scrollTop = 0;
+         * For Chrome, Firefox, IE and Opera.
+         * document.documentElement.scrollTop = 0; 
+         */
 
-        $("HTML, BODY").animate({ scrollTop: 0 }, 500);
+        $("HTML, BODY").animate({
+            scrollTop: 0
+        }, 500);
     }
 
     // Initial load of page.
     $(document).ready(adjustFooter);
-    
+
     // Every resize of window.
     $(window).resize(adjustFooter);
-    
+
     // Every show/hide call may need footer re-layout.
     (function() {
         var oShow = jQuery.fn.show;
         var oHide = jQuery.fn.hide;
-        
-        jQuery.fn.show = function () {
+
+        jQuery.fn.show = function() {
             var rv = oShow.apply(this, arguments);
             adjustFooter();
             return rv;
         };
-        jQuery.fn.hide = function () {
+        jQuery.fn.hide = function() {
             var rv = oHide.apply(this, arguments);
             adjustFooter();
             return rv;
         };
     })();
 
-    function first_time_identification () {
-        jQuery.post ("ajax.php",
-            {
+    function first_time_identification() {
+        jQuery.post("ajax.php", {
                 "page": "general/register",
                 "load_wizards": 'initial'
             },
-            function (data) {
-                $('#wiz_container').empty ()
-                    .html (data);
-                run_configuration_wizard ();
+            function(data) {
+                $('#wiz_container').empty()
+                    .html(data);
+                run_configuration_wizard();
             },
             "html"
         );
@@ -1512,42 +1515,41 @@ require 'include/php_to_js_values.php';
             );
             return;
         }
-        jQuery.post ("ajax.php",
-            {
+        jQuery.post("ajax.php", {
                 "page": "godmode/setup/setup_notifications",
                 "get_notification": 1,
                 "id": match[2]
             },
-            function (data) {
+            function(data) {
                 notifications_hide();
                 try {
                     var json = JSON.parse(data);
                     $('#um_msg_receiver')
-                        .empty ()
-                        .html (json.mensaje);
+                        .empty()
+                        .html(json.mensaje);
 
                     $('#um_msg_receiver').prop('title', json.subject);
-                    
+
                     // Launch modal.
                     $("#um_msg_receiver").dialog({
                         resizable: true,
                         draggable: true,
                         modal: true,
                         width: 800,
-                        buttons: [
-                            {
-                                text: "OK",
-                                click: function() {
-                                    $( this ).dialog( "close" );
-                                }
+                        buttons: [{
+                            text: "OK",
+                            click: function() {
+                                $(this).dialog("close");
                             }
-                        ],
+                        }],
                         overlay: {
-                                opacity: 0.5,
-                                background: "black"
-                            },
+                            opacity: 0.5,
+                            background: "black"
+                        },
                         closeOnEscape: false,
-                        open: function(event, ui) { $(".ui-dialog-titlebar-close").hide(); }
+                        open: function(event, ui) {
+                            $(".ui-dialog-titlebar-close").hide();
+                        }
                     });
 
                     $(".ui-widget-overlay").css("background", "#000");
@@ -1563,30 +1565,70 @@ require 'include/php_to_js_values.php';
         );
     }
 
-    //Dynamically assign footer position and width.
-    function adjustFooter() {
-        /*
-        if (document.readyState !== 'complete' || $('#container').position() == undefined) {
-            return;
+    function show_modal_lts(title, description) {
+        notifications_hide();
+        // Launch modal.
+        try {
+            $('#um_msg_receiver').prop('title', atob(title));
+
+            $('#um_msg_receiver')
+                .empty()
+                .html('<div style="width:700px;height:500px">'+
+                '<pre>'+atob(description)+'</pre>'
+                +'</div>');
+
+                $("#um_msg_receiver").dialog({
+                    resizable: true,
+                    draggable: true,
+                    modal: true,
+                    width: 800,
+                    height: 600,
+                    overflow: 'auto',
+                    buttons: [{
+                        text: "OK",
+                        click: function() {
+                            $(this).dialog("close");
+                        }
+                    }],
+                    overlay: {
+                        opacity: 0.5,
+                        background: "black"
+                    },
+                    closeOnEscape: false,
+                    open: function(event, ui) {
+                        $(".ui-dialog-titlebar-close").hide();
+                    }
+                });
+            }
+            catch (error) {
+                console.log(error);
+            }
         }
-        // minimum top value (upper limit) for div#foot
-        var ulim = $('#container').position().top + $('#container').outerHeight(true);
-        // window height. $(window).height() returns wrong value on Opera and Google Chrome.
-        var wh = document.documentElement.clientHeight;
-        // save div#foot's height for latter use
-        var h = $('#foot').height();
-        // new top value for div#foot
-        var t = (ulim + $('#foot').outerHeight() > wh) ? ulim : wh - $('#foot').outerHeight();
-        /*
-        if ($('#foot').position().top != t) {
-            $('#foot').css({ position: "absolute", top: t, left: $('#foot').offset().left});
-            $('#foot').height(h);
+
+        //Dynamically assign footer position and width.
+        function adjustFooter() {
+            /*
+            if (document.readyState !== 'complete' || $('#container').position() == undefined) {
+                return;
+            }
+            // minimum top value (upper limit) for div#foot
+            var ulim = $('#container').position().top + $('#container').outerHeight(true);
+            // window height. $(window).height() returns wrong value on Opera and Google Chrome.
+            var wh = document.documentElement.clientHeight;
+            // save div#foot's height for latter use
+            var h = $('#foot').height();
+            // new top value for div#foot
+            var t = (ulim + $('#foot').outerHeight() > wh) ? ulim : wh - $('#foot').outerHeight();
+            /*
+            if ($('#foot').position().top != t) {
+                $('#foot').css({ position: "absolute", top: t, left: $('#foot').offset().left});
+                $('#foot').height(h);
+            }
+            if ($('#foot').width() !=  $(window).width()) {
+                $('#foot').width($(window).width());
+            }
+            */
         }
-        if ($('#foot').width() !=  $(window).width()) {
-            $('#foot').width($(window).width());
-        }
-        */
-    }
 </script>
 <?php
 if (__PAN_XHPROF__ === 1) {

From 4c2ad2822f0e8a24b8688e6db094cca1e4bdc30c Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Jos=C3=A9=20Gonz=C3=A1lez?= <jose.gonzalez@pandorafms.com>
Date: Thu, 16 Jun 2022 16:04:22 +0200
Subject: [PATCH 129/138] Fix visual issue

---
 pandora_console/include/graphs/pandora.d3.js | 10 ++++++++++
 1 file changed, 10 insertions(+)

diff --git a/pandora_console/include/graphs/pandora.d3.js b/pandora_console/include/graphs/pandora.d3.js
index 5f30f7379b..0813993829 100644
--- a/pandora_console/include/graphs/pandora.d3.js
+++ b/pandora_console/include/graphs/pandora.d3.js
@@ -404,6 +404,16 @@ function treeMap(recipient, data, width, height) {
   var isIE = true;
   var chartWidth = width;
   var chartHeight = height;
+  var consoleStyle = document.getElementById("hidden-selected_style_theme")
+    .value;
+  $("#tooltip").css(
+    "color",
+    consoleStyle === "pandora_black" ? "rgb(240, 240, 240)" : "rgb(0, 0, 0)"
+  );
+  $("#tooltip").css(
+    "background-color",
+    consoleStyle === "pandora_black" ? "rgb(0, 0, 0)" : "rgb(240, 240, 240)"
+  );
   if (width === "auto") {
     chartWidth = $(recipient).innerWidth();
   }

From a0f7c9e6a2b49762f6958943cd9354f82dda56e2 Mon Sep 17 00:00:00 2001
From: "edu.corral" <eduardo.corral@artica.es>
Date: Thu, 16 Jun 2022 16:19:33 +0200
Subject: [PATCH 130/138] ent-9067 fixed notification system

---
 .../include/functions_notifications.php       | 59 -------------------
 pandora_console/index.php                     | 41 +------------
 2 files changed, 1 insertion(+), 99 deletions(-)

diff --git a/pandora_console/include/functions_notifications.php b/pandora_console/include/functions_notifications.php
index c72cfb15f4..b655115aed 100644
--- a/pandora_console/include/functions_notifications.php
+++ b/pandora_console/include/functions_notifications.php
@@ -1056,23 +1056,6 @@ function notifications_print_dropdown_element($message_info)
             $action = 'show_modal(this.id);';
             $target = '';
             $body_preview = __('Click here to get more information');
-            preg_match(
-                '/LTS\s+(\d*)/',
-                io_safe_output($message_info['subject']),
-                $array_version
-            );
-
-            if (empty($array_version) === false
-                && isset($array_version[1]) === true
-            ) {
-                  $version = (int) $array_version[1];
-                  $result = notifications_curl_new_version_description($version);
-                if (empty($result) === false) {
-                    $title = explode('\n', $result);
-                    hd($title, true);
-                    $action = 'show_modal_lts("'.base64_encode(io_safe_output($message_info['subject'])).'","'.base64_encode($result).'")';
-                }
-            }
         break;
 
         default:
@@ -1133,45 +1116,3 @@ function notifications_print_dropdown_element($message_info)
         $body_preview
     );
 }
-
-
-function notifications_curl_new_version_description(int $version)
-{
-    global $config;
-
-    $pandora_license = db_get_value('value', 'tupdate_settings', '`key`', 'customer_key');
-
-    $params = [
-        'action'          => 'newer_packages',
-        'puid'            => $config['pandora_uid'],
-        'build'           => ($version - 1),
-        'current_package' => ($version - 1),
-        'license'         => $pandora_license,
-        'limit_count'     => 1,
-        'language'        => $config['language'],
-        'timezone'        => $config['timezone'],
-        'version'         => 'v7.0NG.'.$config['current_package'],
-        'email'           => '',
-        'format'          => 'lts',
-    ];
-    $defaults = [
-        CURLOPT_URL            => $config['url_update_manager'],
-        CURLOPT_POST           => true,
-        CURLOPT_POSTFIELDS     => $params,
-        CURLOPT_RETURNTRANSFER => 1,
-    ];
-    $ch = curl_init();
-    curl_setopt_array($ch, $defaults);
-    $result = curl_exec($ch);
-    curl_close($ch);
-
-    $result = json_decode($result, true);
-
-    if (isset($result[0]['description']) === false) {
-        $result = '';
-    } else {
-        $result = $result[0]['description'];
-    }
-
-    return $result;
-}
diff --git a/pandora_console/index.php b/pandora_console/index.php
index 3f3fc111b0..9e5c522e14 100755
--- a/pandora_console/index.php
+++ b/pandora_console/index.php
@@ -1536,6 +1536,7 @@ require 'include/php_to_js_values.php';
                         draggable: true,
                         modal: true,
                         width: 800,
+                        height: 600,
                         buttons: [{
                             text: "OK",
                             click: function() {
@@ -1565,46 +1566,6 @@ require 'include/php_to_js_values.php';
         );
     }
 
-    function show_modal_lts(title, description) {
-        notifications_hide();
-        // Launch modal.
-        try {
-            $('#um_msg_receiver').prop('title', atob(title));
-
-            $('#um_msg_receiver')
-                .empty()
-                .html('<div style="width:700px;height:500px">'+
-                '<pre>'+atob(description)+'</pre>'
-                +'</div>');
-
-                $("#um_msg_receiver").dialog({
-                    resizable: true,
-                    draggable: true,
-                    modal: true,
-                    width: 800,
-                    height: 600,
-                    overflow: 'auto',
-                    buttons: [{
-                        text: "OK",
-                        click: function() {
-                            $(this).dialog("close");
-                        }
-                    }],
-                    overlay: {
-                        opacity: 0.5,
-                        background: "black"
-                    },
-                    closeOnEscape: false,
-                    open: function(event, ui) {
-                        $(".ui-dialog-titlebar-close").hide();
-                    }
-                });
-            }
-            catch (error) {
-                console.log(error);
-            }
-        }
-
         //Dynamically assign footer position and width.
         function adjustFooter() {
             /*

From ddee99b0165864268d7c8f5045a0b0ed12257fa8 Mon Sep 17 00:00:00 2001
From: artica <artica.devel@gmail.com>
Date: Fri, 17 Jun 2022 01:00:19 +0200
Subject: [PATCH 131/138] Auto-updated build strings.

---
 pandora_agents/unix/DEBIAN/control             | 2 +-
 pandora_agents/unix/DEBIAN/make_deb_package.sh | 2 +-
 pandora_agents/unix/pandora_agent              | 2 +-
 pandora_agents/unix/pandora_agent.redhat.spec  | 2 +-
 pandora_agents/unix/pandora_agent.spec         | 2 +-
 pandora_agents/unix/pandora_agent_installer    | 2 +-
 pandora_agents/win32/installer/pandora.mpi     | 2 +-
 pandora_agents/win32/pandora.cc                | 2 +-
 pandora_agents/win32/versioninfo.rc            | 2 +-
 pandora_console/DEBIAN/control                 | 2 +-
 pandora_console/DEBIAN/make_deb_package.sh     | 2 +-
 pandora_console/include/config_process.php     | 2 +-
 pandora_console/install.php                    | 2 +-
 pandora_console/pandora_console.redhat.spec    | 2 +-
 pandora_console/pandora_console.rhel7.spec     | 2 +-
 pandora_console/pandora_console.spec           | 2 +-
 pandora_server/DEBIAN/control                  | 2 +-
 pandora_server/DEBIAN/make_deb_package.sh      | 2 +-
 pandora_server/lib/PandoraFMS/Config.pm        | 2 +-
 pandora_server/lib/PandoraFMS/PluginTools.pm   | 2 +-
 pandora_server/pandora_server.redhat.spec      | 2 +-
 pandora_server/pandora_server.spec             | 2 +-
 pandora_server/pandora_server_installer        | 2 +-
 pandora_server/util/pandora_db.pl              | 2 +-
 pandora_server/util/pandora_manage.pl          | 2 +-
 25 files changed, 25 insertions(+), 25 deletions(-)

diff --git a/pandora_agents/unix/DEBIAN/control b/pandora_agents/unix/DEBIAN/control
index 7aa0b1dc23..a35563b12c 100644
--- a/pandora_agents/unix/DEBIAN/control
+++ b/pandora_agents/unix/DEBIAN/control
@@ -1,5 +1,5 @@
 package: pandorafms-agent-unix
-Version: 7.0NG.762-220616
+Version: 7.0NG.762-220617
 Architecture: all
 Priority: optional
 Section: admin
diff --git a/pandora_agents/unix/DEBIAN/make_deb_package.sh b/pandora_agents/unix/DEBIAN/make_deb_package.sh
index da2264d92c..2baa62c604 100644
--- a/pandora_agents/unix/DEBIAN/make_deb_package.sh
+++ b/pandora_agents/unix/DEBIAN/make_deb_package.sh
@@ -14,7 +14,7 @@
 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 # GNU General Public License for more details.
 
-pandora_version="7.0NG.762-220616"
+pandora_version="7.0NG.762-220617"
 
 echo "Test if you has the tools for to make the packages."
 whereis dpkg-deb | cut -d":" -f2 | grep dpkg-deb > /dev/null
diff --git a/pandora_agents/unix/pandora_agent b/pandora_agents/unix/pandora_agent
index 746683baf2..9391ad4a12 100755
--- a/pandora_agents/unix/pandora_agent
+++ b/pandora_agents/unix/pandora_agent
@@ -1015,7 +1015,7 @@ my $Sem = undef;
 my $ThreadSem = undef;
 
 use constant AGENT_VERSION => '7.0NG.762';
-use constant AGENT_BUILD => '220616';
+use constant AGENT_BUILD => '220617';
 
 # Agent log default file size maximum and instances
 use constant DEFAULT_MAX_LOG_SIZE => 600000;
diff --git a/pandora_agents/unix/pandora_agent.redhat.spec b/pandora_agents/unix/pandora_agent.redhat.spec
index d64f371dcd..301e5299c9 100644
--- a/pandora_agents/unix/pandora_agent.redhat.spec
+++ b/pandora_agents/unix/pandora_agent.redhat.spec
@@ -3,7 +3,7 @@
 #
 %define name        pandorafms_agent_unix
 %define version     7.0NG.762
-%define release     220616
+%define release     220617
 
 Summary:            Pandora FMS Linux agent, PERL version
 Name:               %{name}
diff --git a/pandora_agents/unix/pandora_agent.spec b/pandora_agents/unix/pandora_agent.spec
index 9bfcd6774f..d309b8fc4e 100644
--- a/pandora_agents/unix/pandora_agent.spec
+++ b/pandora_agents/unix/pandora_agent.spec
@@ -3,7 +3,7 @@
 #
 %define name        pandorafms_agent_unix
 %define version     7.0NG.762
-%define release     220616
+%define release     220617
 
 Summary:            Pandora FMS Linux agent, PERL version
 Name:               %{name}
diff --git a/pandora_agents/unix/pandora_agent_installer b/pandora_agents/unix/pandora_agent_installer
index e32d36a978..e559012d66 100755
--- a/pandora_agents/unix/pandora_agent_installer
+++ b/pandora_agents/unix/pandora_agent_installer
@@ -10,7 +10,7 @@
 # **********************************************************************
 
 PI_VERSION="7.0NG.762"
-PI_BUILD="220616"
+PI_BUILD="220617"
 OS_NAME=`uname -s`
 
 FORCE=0
diff --git a/pandora_agents/win32/installer/pandora.mpi b/pandora_agents/win32/installer/pandora.mpi
index b50d0d622d..52a1c18d52 100644
--- a/pandora_agents/win32/installer/pandora.mpi
+++ b/pandora_agents/win32/installer/pandora.mpi
@@ -186,7 +186,7 @@ UpgradeApplicationID
 {}
 
 Version
-{220616}
+{220617}
 
 ViewReadme
 {Yes}
diff --git a/pandora_agents/win32/pandora.cc b/pandora_agents/win32/pandora.cc
index 06b91d8b58..d3ff2266e5 100644
--- a/pandora_agents/win32/pandora.cc
+++ b/pandora_agents/win32/pandora.cc
@@ -30,7 +30,7 @@ using namespace Pandora;
 using namespace Pandora_Strutils;
 
 #define PATH_SIZE    _MAX_PATH+1
-#define PANDORA_VERSION ("7.0NG.762 Build 220616")
+#define PANDORA_VERSION ("7.0NG.762 Build 220617")
 
 string pandora_path;
 string pandora_dir;
diff --git a/pandora_agents/win32/versioninfo.rc b/pandora_agents/win32/versioninfo.rc
index 0610000718..42a2dfc60d 100644
--- a/pandora_agents/win32/versioninfo.rc
+++ b/pandora_agents/win32/versioninfo.rc
@@ -11,7 +11,7 @@ BEGIN
       VALUE "LegalCopyright", "Artica ST"
       VALUE "OriginalFilename", "PandoraAgent.exe"
       VALUE "ProductName", "Pandora FMS Windows Agent"
-      VALUE "ProductVersion", "(7.0NG.762(Build 220616))"
+      VALUE "ProductVersion", "(7.0NG.762(Build 220617))"
       VALUE "FileVersion", "1.0.0.0"
     END
   END
diff --git a/pandora_console/DEBIAN/control b/pandora_console/DEBIAN/control
index 9bc4338c1f..7159f7c097 100644
--- a/pandora_console/DEBIAN/control
+++ b/pandora_console/DEBIAN/control
@@ -1,5 +1,5 @@
 package: pandorafms-console
-Version: 7.0NG.762-220616
+Version: 7.0NG.762-220617
 Architecture: all
 Priority: optional
 Section: admin
diff --git a/pandora_console/DEBIAN/make_deb_package.sh b/pandora_console/DEBIAN/make_deb_package.sh
index 57af185b00..2bbf5ad695 100644
--- a/pandora_console/DEBIAN/make_deb_package.sh
+++ b/pandora_console/DEBIAN/make_deb_package.sh
@@ -14,7 +14,7 @@
 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 # GNU General Public License for more details.
 
-pandora_version="7.0NG.762-220616"
+pandora_version="7.0NG.762-220617"
 
 package_pear=0
 package_pandora=1
diff --git a/pandora_console/include/config_process.php b/pandora_console/include/config_process.php
index 9db7f38355..d7bcd21358 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 = 'PC220616';
+$build_version = 'PC220617';
 $pandora_version = 'v7.0NG.762';
 
 // Do not overwrite default timezone set if defined.
diff --git a/pandora_console/install.php b/pandora_console/install.php
index 727e4c4d98..c01bbf5562 100644
--- a/pandora_console/install.php
+++ b/pandora_console/install.php
@@ -129,7 +129,7 @@
         <div style='height: 10px'>
             <?php
             $version = '7.0NG.762';
-            $build = '220616';
+            $build = '220617';
             $banner = "v$version Build $build";
 
             error_reporting(0);
diff --git a/pandora_console/pandora_console.redhat.spec b/pandora_console/pandora_console.redhat.spec
index 8c56a051ce..44216e6890 100644
--- a/pandora_console/pandora_console.redhat.spec
+++ b/pandora_console/pandora_console.redhat.spec
@@ -3,7 +3,7 @@
 #
 %define name        pandorafms_console
 %define version     7.0NG.762
-%define release     220616
+%define release     220617
 
 # User and Group under which Apache is running
 %define httpd_name  httpd
diff --git a/pandora_console/pandora_console.rhel7.spec b/pandora_console/pandora_console.rhel7.spec
index d67df879aa..613ffc6ea1 100644
--- a/pandora_console/pandora_console.rhel7.spec
+++ b/pandora_console/pandora_console.rhel7.spec
@@ -3,7 +3,7 @@
 #
 %define name        pandorafms_console
 %define version     7.0NG.762
-%define release     220616
+%define release     220617
 
 # User and Group under which Apache is running
 %define httpd_name  httpd
diff --git a/pandora_console/pandora_console.spec b/pandora_console/pandora_console.spec
index b17922032b..6ba638afdf 100644
--- a/pandora_console/pandora_console.spec
+++ b/pandora_console/pandora_console.spec
@@ -3,7 +3,7 @@
 #
 %define name        pandorafms_console
 %define version     7.0NG.762
-%define release     220616
+%define release     220617
 %define httpd_name      httpd
 # User and Group under which Apache is running
 %define httpd_name  apache2
diff --git a/pandora_server/DEBIAN/control b/pandora_server/DEBIAN/control
index 88e8056af5..ad94d7fdcd 100644
--- a/pandora_server/DEBIAN/control
+++ b/pandora_server/DEBIAN/control
@@ -1,5 +1,5 @@
 package: pandorafms-server
-Version: 7.0NG.762-220616
+Version: 7.0NG.762-220617
 Architecture: all
 Priority: optional
 Section: admin
diff --git a/pandora_server/DEBIAN/make_deb_package.sh b/pandora_server/DEBIAN/make_deb_package.sh
index c7a1a53370..3ac1e55342 100644
--- a/pandora_server/DEBIAN/make_deb_package.sh
+++ b/pandora_server/DEBIAN/make_deb_package.sh
@@ -14,7 +14,7 @@
 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 # GNU General Public License for more details.
 
-pandora_version="7.0NG.762-220616"
+pandora_version="7.0NG.762-220617"
 
 package_cpan=0
 package_pandora=1
diff --git a/pandora_server/lib/PandoraFMS/Config.pm b/pandora_server/lib/PandoraFMS/Config.pm
index 6a2dffb4bc..657fc81f18 100644
--- a/pandora_server/lib/PandoraFMS/Config.pm
+++ b/pandora_server/lib/PandoraFMS/Config.pm
@@ -46,7 +46,7 @@ our @EXPORT = qw(
 
 # version: Defines actual version of Pandora Server for this module only
 my $pandora_version = "7.0NG.762";
-my $pandora_build = "220616";
+my $pandora_build = "220617";
 our $VERSION = $pandora_version." ".$pandora_build;
 
 # Setup hash
diff --git a/pandora_server/lib/PandoraFMS/PluginTools.pm b/pandora_server/lib/PandoraFMS/PluginTools.pm
index 022033f69c..a1db3de86d 100644
--- a/pandora_server/lib/PandoraFMS/PluginTools.pm
+++ b/pandora_server/lib/PandoraFMS/PluginTools.pm
@@ -34,7 +34,7 @@ our @ISA = qw(Exporter);
 
 # version: Defines actual version of Pandora Server for this module only
 my $pandora_version = "7.0NG.762";
-my $pandora_build = "220616";
+my $pandora_build = "220617";
 our $VERSION = $pandora_version." ".$pandora_build;
 
 our %EXPORT_TAGS = ( 'all' => [ qw() ] );
diff --git a/pandora_server/pandora_server.redhat.spec b/pandora_server/pandora_server.redhat.spec
index 8c1e0fdab9..bcf2665a16 100644
--- a/pandora_server/pandora_server.redhat.spec
+++ b/pandora_server/pandora_server.redhat.spec
@@ -3,7 +3,7 @@
 #
 %define name        pandorafms_server
 %define version     7.0NG.762
-%define release     220616
+%define release     220617
 
 Summary:            Pandora FMS Server
 Name:               %{name}
diff --git a/pandora_server/pandora_server.spec b/pandora_server/pandora_server.spec
index 7f8879a00c..9a8257cafa 100644
--- a/pandora_server/pandora_server.spec
+++ b/pandora_server/pandora_server.spec
@@ -3,7 +3,7 @@
 #
 %define name        pandorafms_server
 %define version     7.0NG.762
-%define release     220616
+%define release     220617
 
 Summary:            Pandora FMS Server
 Name:               %{name}
diff --git a/pandora_server/pandora_server_installer b/pandora_server/pandora_server_installer
index 2cfa52c101..2ed259e5cb 100755
--- a/pandora_server/pandora_server_installer
+++ b/pandora_server/pandora_server_installer
@@ -9,7 +9,7 @@
 # **********************************************************************
 
 PI_VERSION="7.0NG.762"
-PI_BUILD="220616"
+PI_BUILD="220617"
 
 MODE=$1
 if [ $# -gt 1 ]; then
diff --git a/pandora_server/util/pandora_db.pl b/pandora_server/util/pandora_db.pl
index d9eb2ebdae..0a09b6006b 100755
--- a/pandora_server/util/pandora_db.pl
+++ b/pandora_server/util/pandora_db.pl
@@ -35,7 +35,7 @@ use PandoraFMS::Config;
 use PandoraFMS::DB;
 
 # version: define current version
-my $version = "7.0NG.762 Build 220616";
+my $version = "7.0NG.762 Build 220617";
 
 # Pandora server configuration
 my %conf;
diff --git a/pandora_server/util/pandora_manage.pl b/pandora_server/util/pandora_manage.pl
index 5c6f848398..55214a043d 100755
--- a/pandora_server/util/pandora_manage.pl
+++ b/pandora_server/util/pandora_manage.pl
@@ -36,7 +36,7 @@ use Encode::Locale;
 Encode::Locale::decode_argv;
 
 # version: define current version
-my $version = "7.0NG.762 Build 220616";
+my $version = "7.0NG.762 Build 220617";
 
 # save program name for logging
 my $progname = basename($0);

From 5ce0ebb72a6499e564de24b52e8392ea2e33597b Mon Sep 17 00:00:00 2001
From: Calvo <luis.calvo@artica.es>
Date: Fri, 17 Jun 2022 10:09:37 +0200
Subject: [PATCH 132/138] Fix agent view satellite name visual

---
 pandora_console/operation/agentes/estado_generalagente.php | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/pandora_console/operation/agentes/estado_generalagente.php b/pandora_console/operation/agentes/estado_generalagente.php
index 86597dae79..57109fa837 100755
--- a/pandora_console/operation/agentes/estado_generalagente.php
+++ b/pandora_console/operation/agentes/estado_generalagente.php
@@ -284,7 +284,7 @@ if ($has_remote_conf) {
             true,
             ['class' => 'invert_filter']
         );
-        $remote_cfg .= __('Satellite server: ').$satellite_name.'</p>';
+        $remote_cfg .= $satellite_name.'</p>';
     }
 } else {
     $remote_cfg = '';

From 6f903023a76f51045c6541ffc405539ecfb17810 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Jos=C3=A9=20Gonz=C3=A1lez?= <jose.gonzalez@pandorafms.com>
Date: Fri, 17 Jun 2022 12:42:24 +0200
Subject: [PATCH 133/138] Fix

---
 pandora_console/include/graphs/pandora.d3.js | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/pandora_console/include/graphs/pandora.d3.js b/pandora_console/include/graphs/pandora.d3.js
index 0813993829..c75309f105 100644
--- a/pandora_console/include/graphs/pandora.d3.js
+++ b/pandora_console/include/graphs/pandora.d3.js
@@ -782,6 +782,7 @@ function treeMap(recipient, data, width, height) {
     $("#tooltip").attr(
       "style",
       "background: #fff;" +
+        "color: #111;" +
         "position: absolute;" +
         "display: block;" +
         "width: 200px;" +
@@ -1028,6 +1029,7 @@ function sunburst(recipient, data, width, height) {
     $("#tooltip").attr(
       "style",
       "background: #fff;" +
+        "color: #111;" +
         "position: absolute;" +
         "display: block;" +
         "width: 200px;" +

From 7574e99e8073bc1ba31cad9a7f89c6e6b9104189 Mon Sep 17 00:00:00 2001
From: artica <artica.devel@gmail.com>
Date: Sat, 18 Jun 2022 01:00:19 +0200
Subject: [PATCH 134/138] Auto-updated build strings.

---
 pandora_agents/unix/DEBIAN/control             | 2 +-
 pandora_agents/unix/DEBIAN/make_deb_package.sh | 2 +-
 pandora_agents/unix/pandora_agent              | 2 +-
 pandora_agents/unix/pandora_agent.redhat.spec  | 2 +-
 pandora_agents/unix/pandora_agent.spec         | 2 +-
 pandora_agents/unix/pandora_agent_installer    | 2 +-
 pandora_agents/win32/installer/pandora.mpi     | 2 +-
 pandora_agents/win32/pandora.cc                | 2 +-
 pandora_agents/win32/versioninfo.rc            | 2 +-
 pandora_console/DEBIAN/control                 | 2 +-
 pandora_console/DEBIAN/make_deb_package.sh     | 2 +-
 pandora_console/include/config_process.php     | 2 +-
 pandora_console/install.php                    | 2 +-
 pandora_console/pandora_console.redhat.spec    | 2 +-
 pandora_console/pandora_console.rhel7.spec     | 2 +-
 pandora_console/pandora_console.spec           | 2 +-
 pandora_server/DEBIAN/control                  | 2 +-
 pandora_server/DEBIAN/make_deb_package.sh      | 2 +-
 pandora_server/lib/PandoraFMS/Config.pm        | 2 +-
 pandora_server/lib/PandoraFMS/PluginTools.pm   | 2 +-
 pandora_server/pandora_server.redhat.spec      | 2 +-
 pandora_server/pandora_server.spec             | 2 +-
 pandora_server/pandora_server_installer        | 2 +-
 pandora_server/util/pandora_db.pl              | 2 +-
 pandora_server/util/pandora_manage.pl          | 2 +-
 25 files changed, 25 insertions(+), 25 deletions(-)

diff --git a/pandora_agents/unix/DEBIAN/control b/pandora_agents/unix/DEBIAN/control
index a35563b12c..ac3852818d 100644
--- a/pandora_agents/unix/DEBIAN/control
+++ b/pandora_agents/unix/DEBIAN/control
@@ -1,5 +1,5 @@
 package: pandorafms-agent-unix
-Version: 7.0NG.762-220617
+Version: 7.0NG.762-220618
 Architecture: all
 Priority: optional
 Section: admin
diff --git a/pandora_agents/unix/DEBIAN/make_deb_package.sh b/pandora_agents/unix/DEBIAN/make_deb_package.sh
index 2baa62c604..872fa3e8ee 100644
--- a/pandora_agents/unix/DEBIAN/make_deb_package.sh
+++ b/pandora_agents/unix/DEBIAN/make_deb_package.sh
@@ -14,7 +14,7 @@
 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 # GNU General Public License for more details.
 
-pandora_version="7.0NG.762-220617"
+pandora_version="7.0NG.762-220618"
 
 echo "Test if you has the tools for to make the packages."
 whereis dpkg-deb | cut -d":" -f2 | grep dpkg-deb > /dev/null
diff --git a/pandora_agents/unix/pandora_agent b/pandora_agents/unix/pandora_agent
index 9391ad4a12..ce79eb9302 100755
--- a/pandora_agents/unix/pandora_agent
+++ b/pandora_agents/unix/pandora_agent
@@ -1015,7 +1015,7 @@ my $Sem = undef;
 my $ThreadSem = undef;
 
 use constant AGENT_VERSION => '7.0NG.762';
-use constant AGENT_BUILD => '220617';
+use constant AGENT_BUILD => '220618';
 
 # Agent log default file size maximum and instances
 use constant DEFAULT_MAX_LOG_SIZE => 600000;
diff --git a/pandora_agents/unix/pandora_agent.redhat.spec b/pandora_agents/unix/pandora_agent.redhat.spec
index 301e5299c9..94acea0706 100644
--- a/pandora_agents/unix/pandora_agent.redhat.spec
+++ b/pandora_agents/unix/pandora_agent.redhat.spec
@@ -3,7 +3,7 @@
 #
 %define name        pandorafms_agent_unix
 %define version     7.0NG.762
-%define release     220617
+%define release     220618
 
 Summary:            Pandora FMS Linux agent, PERL version
 Name:               %{name}
diff --git a/pandora_agents/unix/pandora_agent.spec b/pandora_agents/unix/pandora_agent.spec
index d309b8fc4e..572a1d5e15 100644
--- a/pandora_agents/unix/pandora_agent.spec
+++ b/pandora_agents/unix/pandora_agent.spec
@@ -3,7 +3,7 @@
 #
 %define name        pandorafms_agent_unix
 %define version     7.0NG.762
-%define release     220617
+%define release     220618
 
 Summary:            Pandora FMS Linux agent, PERL version
 Name:               %{name}
diff --git a/pandora_agents/unix/pandora_agent_installer b/pandora_agents/unix/pandora_agent_installer
index e559012d66..841cf199db 100755
--- a/pandora_agents/unix/pandora_agent_installer
+++ b/pandora_agents/unix/pandora_agent_installer
@@ -10,7 +10,7 @@
 # **********************************************************************
 
 PI_VERSION="7.0NG.762"
-PI_BUILD="220617"
+PI_BUILD="220618"
 OS_NAME=`uname -s`
 
 FORCE=0
diff --git a/pandora_agents/win32/installer/pandora.mpi b/pandora_agents/win32/installer/pandora.mpi
index 52a1c18d52..cd9f98a913 100644
--- a/pandora_agents/win32/installer/pandora.mpi
+++ b/pandora_agents/win32/installer/pandora.mpi
@@ -186,7 +186,7 @@ UpgradeApplicationID
 {}
 
 Version
-{220617}
+{220618}
 
 ViewReadme
 {Yes}
diff --git a/pandora_agents/win32/pandora.cc b/pandora_agents/win32/pandora.cc
index d3ff2266e5..da4b489820 100644
--- a/pandora_agents/win32/pandora.cc
+++ b/pandora_agents/win32/pandora.cc
@@ -30,7 +30,7 @@ using namespace Pandora;
 using namespace Pandora_Strutils;
 
 #define PATH_SIZE    _MAX_PATH+1
-#define PANDORA_VERSION ("7.0NG.762 Build 220617")
+#define PANDORA_VERSION ("7.0NG.762 Build 220618")
 
 string pandora_path;
 string pandora_dir;
diff --git a/pandora_agents/win32/versioninfo.rc b/pandora_agents/win32/versioninfo.rc
index 42a2dfc60d..15991ebd41 100644
--- a/pandora_agents/win32/versioninfo.rc
+++ b/pandora_agents/win32/versioninfo.rc
@@ -11,7 +11,7 @@ BEGIN
       VALUE "LegalCopyright", "Artica ST"
       VALUE "OriginalFilename", "PandoraAgent.exe"
       VALUE "ProductName", "Pandora FMS Windows Agent"
-      VALUE "ProductVersion", "(7.0NG.762(Build 220617))"
+      VALUE "ProductVersion", "(7.0NG.762(Build 220618))"
       VALUE "FileVersion", "1.0.0.0"
     END
   END
diff --git a/pandora_console/DEBIAN/control b/pandora_console/DEBIAN/control
index 7159f7c097..ec54c840dc 100644
--- a/pandora_console/DEBIAN/control
+++ b/pandora_console/DEBIAN/control
@@ -1,5 +1,5 @@
 package: pandorafms-console
-Version: 7.0NG.762-220617
+Version: 7.0NG.762-220618
 Architecture: all
 Priority: optional
 Section: admin
diff --git a/pandora_console/DEBIAN/make_deb_package.sh b/pandora_console/DEBIAN/make_deb_package.sh
index 2bbf5ad695..b477f5b825 100644
--- a/pandora_console/DEBIAN/make_deb_package.sh
+++ b/pandora_console/DEBIAN/make_deb_package.sh
@@ -14,7 +14,7 @@
 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 # GNU General Public License for more details.
 
-pandora_version="7.0NG.762-220617"
+pandora_version="7.0NG.762-220618"
 
 package_pear=0
 package_pandora=1
diff --git a/pandora_console/include/config_process.php b/pandora_console/include/config_process.php
index d7bcd21358..808a958688 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 = 'PC220617';
+$build_version = 'PC220618';
 $pandora_version = 'v7.0NG.762';
 
 // Do not overwrite default timezone set if defined.
diff --git a/pandora_console/install.php b/pandora_console/install.php
index c01bbf5562..c5ffea4eff 100644
--- a/pandora_console/install.php
+++ b/pandora_console/install.php
@@ -129,7 +129,7 @@
         <div style='height: 10px'>
             <?php
             $version = '7.0NG.762';
-            $build = '220617';
+            $build = '220618';
             $banner = "v$version Build $build";
 
             error_reporting(0);
diff --git a/pandora_console/pandora_console.redhat.spec b/pandora_console/pandora_console.redhat.spec
index 44216e6890..551d0c405d 100644
--- a/pandora_console/pandora_console.redhat.spec
+++ b/pandora_console/pandora_console.redhat.spec
@@ -3,7 +3,7 @@
 #
 %define name        pandorafms_console
 %define version     7.0NG.762
-%define release     220617
+%define release     220618
 
 # User and Group under which Apache is running
 %define httpd_name  httpd
diff --git a/pandora_console/pandora_console.rhel7.spec b/pandora_console/pandora_console.rhel7.spec
index 613ffc6ea1..ba5c59b737 100644
--- a/pandora_console/pandora_console.rhel7.spec
+++ b/pandora_console/pandora_console.rhel7.spec
@@ -3,7 +3,7 @@
 #
 %define name        pandorafms_console
 %define version     7.0NG.762
-%define release     220617
+%define release     220618
 
 # User and Group under which Apache is running
 %define httpd_name  httpd
diff --git a/pandora_console/pandora_console.spec b/pandora_console/pandora_console.spec
index 6ba638afdf..b0565debf9 100644
--- a/pandora_console/pandora_console.spec
+++ b/pandora_console/pandora_console.spec
@@ -3,7 +3,7 @@
 #
 %define name        pandorafms_console
 %define version     7.0NG.762
-%define release     220617
+%define release     220618
 %define httpd_name      httpd
 # User and Group under which Apache is running
 %define httpd_name  apache2
diff --git a/pandora_server/DEBIAN/control b/pandora_server/DEBIAN/control
index ad94d7fdcd..1beac0f62a 100644
--- a/pandora_server/DEBIAN/control
+++ b/pandora_server/DEBIAN/control
@@ -1,5 +1,5 @@
 package: pandorafms-server
-Version: 7.0NG.762-220617
+Version: 7.0NG.762-220618
 Architecture: all
 Priority: optional
 Section: admin
diff --git a/pandora_server/DEBIAN/make_deb_package.sh b/pandora_server/DEBIAN/make_deb_package.sh
index 3ac1e55342..ef8d7c2271 100644
--- a/pandora_server/DEBIAN/make_deb_package.sh
+++ b/pandora_server/DEBIAN/make_deb_package.sh
@@ -14,7 +14,7 @@
 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 # GNU General Public License for more details.
 
-pandora_version="7.0NG.762-220617"
+pandora_version="7.0NG.762-220618"
 
 package_cpan=0
 package_pandora=1
diff --git a/pandora_server/lib/PandoraFMS/Config.pm b/pandora_server/lib/PandoraFMS/Config.pm
index 657fc81f18..60c6886ecf 100644
--- a/pandora_server/lib/PandoraFMS/Config.pm
+++ b/pandora_server/lib/PandoraFMS/Config.pm
@@ -46,7 +46,7 @@ our @EXPORT = qw(
 
 # version: Defines actual version of Pandora Server for this module only
 my $pandora_version = "7.0NG.762";
-my $pandora_build = "220617";
+my $pandora_build = "220618";
 our $VERSION = $pandora_version." ".$pandora_build;
 
 # Setup hash
diff --git a/pandora_server/lib/PandoraFMS/PluginTools.pm b/pandora_server/lib/PandoraFMS/PluginTools.pm
index a1db3de86d..f425b6ee41 100644
--- a/pandora_server/lib/PandoraFMS/PluginTools.pm
+++ b/pandora_server/lib/PandoraFMS/PluginTools.pm
@@ -34,7 +34,7 @@ our @ISA = qw(Exporter);
 
 # version: Defines actual version of Pandora Server for this module only
 my $pandora_version = "7.0NG.762";
-my $pandora_build = "220617";
+my $pandora_build = "220618";
 our $VERSION = $pandora_version." ".$pandora_build;
 
 our %EXPORT_TAGS = ( 'all' => [ qw() ] );
diff --git a/pandora_server/pandora_server.redhat.spec b/pandora_server/pandora_server.redhat.spec
index bcf2665a16..882bb234f0 100644
--- a/pandora_server/pandora_server.redhat.spec
+++ b/pandora_server/pandora_server.redhat.spec
@@ -3,7 +3,7 @@
 #
 %define name        pandorafms_server
 %define version     7.0NG.762
-%define release     220617
+%define release     220618
 
 Summary:            Pandora FMS Server
 Name:               %{name}
diff --git a/pandora_server/pandora_server.spec b/pandora_server/pandora_server.spec
index 9a8257cafa..83f80d4ceb 100644
--- a/pandora_server/pandora_server.spec
+++ b/pandora_server/pandora_server.spec
@@ -3,7 +3,7 @@
 #
 %define name        pandorafms_server
 %define version     7.0NG.762
-%define release     220617
+%define release     220618
 
 Summary:            Pandora FMS Server
 Name:               %{name}
diff --git a/pandora_server/pandora_server_installer b/pandora_server/pandora_server_installer
index 2ed259e5cb..aaed1610b9 100755
--- a/pandora_server/pandora_server_installer
+++ b/pandora_server/pandora_server_installer
@@ -9,7 +9,7 @@
 # **********************************************************************
 
 PI_VERSION="7.0NG.762"
-PI_BUILD="220617"
+PI_BUILD="220618"
 
 MODE=$1
 if [ $# -gt 1 ]; then
diff --git a/pandora_server/util/pandora_db.pl b/pandora_server/util/pandora_db.pl
index 0a09b6006b..c0021482d4 100755
--- a/pandora_server/util/pandora_db.pl
+++ b/pandora_server/util/pandora_db.pl
@@ -35,7 +35,7 @@ use PandoraFMS::Config;
 use PandoraFMS::DB;
 
 # version: define current version
-my $version = "7.0NG.762 Build 220617";
+my $version = "7.0NG.762 Build 220618";
 
 # Pandora server configuration
 my %conf;
diff --git a/pandora_server/util/pandora_manage.pl b/pandora_server/util/pandora_manage.pl
index 55214a043d..36d9cd7d5f 100755
--- a/pandora_server/util/pandora_manage.pl
+++ b/pandora_server/util/pandora_manage.pl
@@ -36,7 +36,7 @@ use Encode::Locale;
 Encode::Locale::decode_argv;
 
 # version: define current version
-my $version = "7.0NG.762 Build 220617";
+my $version = "7.0NG.762 Build 220618";
 
 # save program name for logging
 my $progname = basename($0);

From d2e140e85b4d2431bbfd275575fb85325aaac811 Mon Sep 17 00:00:00 2001
From: artica <artica.devel@gmail.com>
Date: Sun, 19 Jun 2022 01:00:14 +0200
Subject: [PATCH 135/138] Auto-updated build strings.

---
 pandora_agents/unix/DEBIAN/control             | 2 +-
 pandora_agents/unix/DEBIAN/make_deb_package.sh | 2 +-
 pandora_agents/unix/pandora_agent              | 2 +-
 pandora_agents/unix/pandora_agent.redhat.spec  | 2 +-
 pandora_agents/unix/pandora_agent.spec         | 2 +-
 pandora_agents/unix/pandora_agent_installer    | 2 +-
 pandora_agents/win32/installer/pandora.mpi     | 2 +-
 pandora_agents/win32/pandora.cc                | 2 +-
 pandora_agents/win32/versioninfo.rc            | 2 +-
 pandora_console/DEBIAN/control                 | 2 +-
 pandora_console/DEBIAN/make_deb_package.sh     | 2 +-
 pandora_console/include/config_process.php     | 2 +-
 pandora_console/install.php                    | 2 +-
 pandora_console/pandora_console.redhat.spec    | 2 +-
 pandora_console/pandora_console.rhel7.spec     | 2 +-
 pandora_console/pandora_console.spec           | 2 +-
 pandora_server/DEBIAN/control                  | 2 +-
 pandora_server/DEBIAN/make_deb_package.sh      | 2 +-
 pandora_server/lib/PandoraFMS/Config.pm        | 2 +-
 pandora_server/lib/PandoraFMS/PluginTools.pm   | 2 +-
 pandora_server/pandora_server.redhat.spec      | 2 +-
 pandora_server/pandora_server.spec             | 2 +-
 pandora_server/pandora_server_installer        | 2 +-
 pandora_server/util/pandora_db.pl              | 2 +-
 pandora_server/util/pandora_manage.pl          | 2 +-
 25 files changed, 25 insertions(+), 25 deletions(-)

diff --git a/pandora_agents/unix/DEBIAN/control b/pandora_agents/unix/DEBIAN/control
index ac3852818d..985cf9ef4d 100644
--- a/pandora_agents/unix/DEBIAN/control
+++ b/pandora_agents/unix/DEBIAN/control
@@ -1,5 +1,5 @@
 package: pandorafms-agent-unix
-Version: 7.0NG.762-220618
+Version: 7.0NG.762-220619
 Architecture: all
 Priority: optional
 Section: admin
diff --git a/pandora_agents/unix/DEBIAN/make_deb_package.sh b/pandora_agents/unix/DEBIAN/make_deb_package.sh
index 872fa3e8ee..1eb5a4ccae 100644
--- a/pandora_agents/unix/DEBIAN/make_deb_package.sh
+++ b/pandora_agents/unix/DEBIAN/make_deb_package.sh
@@ -14,7 +14,7 @@
 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 # GNU General Public License for more details.
 
-pandora_version="7.0NG.762-220618"
+pandora_version="7.0NG.762-220619"
 
 echo "Test if you has the tools for to make the packages."
 whereis dpkg-deb | cut -d":" -f2 | grep dpkg-deb > /dev/null
diff --git a/pandora_agents/unix/pandora_agent b/pandora_agents/unix/pandora_agent
index ce79eb9302..e2d1de442d 100755
--- a/pandora_agents/unix/pandora_agent
+++ b/pandora_agents/unix/pandora_agent
@@ -1015,7 +1015,7 @@ my $Sem = undef;
 my $ThreadSem = undef;
 
 use constant AGENT_VERSION => '7.0NG.762';
-use constant AGENT_BUILD => '220618';
+use constant AGENT_BUILD => '220619';
 
 # Agent log default file size maximum and instances
 use constant DEFAULT_MAX_LOG_SIZE => 600000;
diff --git a/pandora_agents/unix/pandora_agent.redhat.spec b/pandora_agents/unix/pandora_agent.redhat.spec
index 94acea0706..347235da01 100644
--- a/pandora_agents/unix/pandora_agent.redhat.spec
+++ b/pandora_agents/unix/pandora_agent.redhat.spec
@@ -3,7 +3,7 @@
 #
 %define name        pandorafms_agent_unix
 %define version     7.0NG.762
-%define release     220618
+%define release     220619
 
 Summary:            Pandora FMS Linux agent, PERL version
 Name:               %{name}
diff --git a/pandora_agents/unix/pandora_agent.spec b/pandora_agents/unix/pandora_agent.spec
index 572a1d5e15..b91508103e 100644
--- a/pandora_agents/unix/pandora_agent.spec
+++ b/pandora_agents/unix/pandora_agent.spec
@@ -3,7 +3,7 @@
 #
 %define name        pandorafms_agent_unix
 %define version     7.0NG.762
-%define release     220618
+%define release     220619
 
 Summary:            Pandora FMS Linux agent, PERL version
 Name:               %{name}
diff --git a/pandora_agents/unix/pandora_agent_installer b/pandora_agents/unix/pandora_agent_installer
index 841cf199db..346b87c2c2 100755
--- a/pandora_agents/unix/pandora_agent_installer
+++ b/pandora_agents/unix/pandora_agent_installer
@@ -10,7 +10,7 @@
 # **********************************************************************
 
 PI_VERSION="7.0NG.762"
-PI_BUILD="220618"
+PI_BUILD="220619"
 OS_NAME=`uname -s`
 
 FORCE=0
diff --git a/pandora_agents/win32/installer/pandora.mpi b/pandora_agents/win32/installer/pandora.mpi
index cd9f98a913..37b5bd1c8b 100644
--- a/pandora_agents/win32/installer/pandora.mpi
+++ b/pandora_agents/win32/installer/pandora.mpi
@@ -186,7 +186,7 @@ UpgradeApplicationID
 {}
 
 Version
-{220618}
+{220619}
 
 ViewReadme
 {Yes}
diff --git a/pandora_agents/win32/pandora.cc b/pandora_agents/win32/pandora.cc
index da4b489820..d5f6c43b9d 100644
--- a/pandora_agents/win32/pandora.cc
+++ b/pandora_agents/win32/pandora.cc
@@ -30,7 +30,7 @@ using namespace Pandora;
 using namespace Pandora_Strutils;
 
 #define PATH_SIZE    _MAX_PATH+1
-#define PANDORA_VERSION ("7.0NG.762 Build 220618")
+#define PANDORA_VERSION ("7.0NG.762 Build 220619")
 
 string pandora_path;
 string pandora_dir;
diff --git a/pandora_agents/win32/versioninfo.rc b/pandora_agents/win32/versioninfo.rc
index 15991ebd41..0914e49161 100644
--- a/pandora_agents/win32/versioninfo.rc
+++ b/pandora_agents/win32/versioninfo.rc
@@ -11,7 +11,7 @@ BEGIN
       VALUE "LegalCopyright", "Artica ST"
       VALUE "OriginalFilename", "PandoraAgent.exe"
       VALUE "ProductName", "Pandora FMS Windows Agent"
-      VALUE "ProductVersion", "(7.0NG.762(Build 220618))"
+      VALUE "ProductVersion", "(7.0NG.762(Build 220619))"
       VALUE "FileVersion", "1.0.0.0"
     END
   END
diff --git a/pandora_console/DEBIAN/control b/pandora_console/DEBIAN/control
index ec54c840dc..002d445195 100644
--- a/pandora_console/DEBIAN/control
+++ b/pandora_console/DEBIAN/control
@@ -1,5 +1,5 @@
 package: pandorafms-console
-Version: 7.0NG.762-220618
+Version: 7.0NG.762-220619
 Architecture: all
 Priority: optional
 Section: admin
diff --git a/pandora_console/DEBIAN/make_deb_package.sh b/pandora_console/DEBIAN/make_deb_package.sh
index b477f5b825..1d0c6eeeb6 100644
--- a/pandora_console/DEBIAN/make_deb_package.sh
+++ b/pandora_console/DEBIAN/make_deb_package.sh
@@ -14,7 +14,7 @@
 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 # GNU General Public License for more details.
 
-pandora_version="7.0NG.762-220618"
+pandora_version="7.0NG.762-220619"
 
 package_pear=0
 package_pandora=1
diff --git a/pandora_console/include/config_process.php b/pandora_console/include/config_process.php
index 808a958688..f6780f4739 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 = 'PC220618';
+$build_version = 'PC220619';
 $pandora_version = 'v7.0NG.762';
 
 // Do not overwrite default timezone set if defined.
diff --git a/pandora_console/install.php b/pandora_console/install.php
index c5ffea4eff..f70f45cb57 100644
--- a/pandora_console/install.php
+++ b/pandora_console/install.php
@@ -129,7 +129,7 @@
         <div style='height: 10px'>
             <?php
             $version = '7.0NG.762';
-            $build = '220618';
+            $build = '220619';
             $banner = "v$version Build $build";
 
             error_reporting(0);
diff --git a/pandora_console/pandora_console.redhat.spec b/pandora_console/pandora_console.redhat.spec
index 551d0c405d..3b1411144e 100644
--- a/pandora_console/pandora_console.redhat.spec
+++ b/pandora_console/pandora_console.redhat.spec
@@ -3,7 +3,7 @@
 #
 %define name        pandorafms_console
 %define version     7.0NG.762
-%define release     220618
+%define release     220619
 
 # User and Group under which Apache is running
 %define httpd_name  httpd
diff --git a/pandora_console/pandora_console.rhel7.spec b/pandora_console/pandora_console.rhel7.spec
index ba5c59b737..7bea1a79c3 100644
--- a/pandora_console/pandora_console.rhel7.spec
+++ b/pandora_console/pandora_console.rhel7.spec
@@ -3,7 +3,7 @@
 #
 %define name        pandorafms_console
 %define version     7.0NG.762
-%define release     220618
+%define release     220619
 
 # User and Group under which Apache is running
 %define httpd_name  httpd
diff --git a/pandora_console/pandora_console.spec b/pandora_console/pandora_console.spec
index b0565debf9..fa33343448 100644
--- a/pandora_console/pandora_console.spec
+++ b/pandora_console/pandora_console.spec
@@ -3,7 +3,7 @@
 #
 %define name        pandorafms_console
 %define version     7.0NG.762
-%define release     220618
+%define release     220619
 %define httpd_name      httpd
 # User and Group under which Apache is running
 %define httpd_name  apache2
diff --git a/pandora_server/DEBIAN/control b/pandora_server/DEBIAN/control
index 1beac0f62a..23271b68f7 100644
--- a/pandora_server/DEBIAN/control
+++ b/pandora_server/DEBIAN/control
@@ -1,5 +1,5 @@
 package: pandorafms-server
-Version: 7.0NG.762-220618
+Version: 7.0NG.762-220619
 Architecture: all
 Priority: optional
 Section: admin
diff --git a/pandora_server/DEBIAN/make_deb_package.sh b/pandora_server/DEBIAN/make_deb_package.sh
index ef8d7c2271..4ca2e70a9a 100644
--- a/pandora_server/DEBIAN/make_deb_package.sh
+++ b/pandora_server/DEBIAN/make_deb_package.sh
@@ -14,7 +14,7 @@
 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 # GNU General Public License for more details.
 
-pandora_version="7.0NG.762-220618"
+pandora_version="7.0NG.762-220619"
 
 package_cpan=0
 package_pandora=1
diff --git a/pandora_server/lib/PandoraFMS/Config.pm b/pandora_server/lib/PandoraFMS/Config.pm
index 60c6886ecf..d20aa3b630 100644
--- a/pandora_server/lib/PandoraFMS/Config.pm
+++ b/pandora_server/lib/PandoraFMS/Config.pm
@@ -46,7 +46,7 @@ our @EXPORT = qw(
 
 # version: Defines actual version of Pandora Server for this module only
 my $pandora_version = "7.0NG.762";
-my $pandora_build = "220618";
+my $pandora_build = "220619";
 our $VERSION = $pandora_version." ".$pandora_build;
 
 # Setup hash
diff --git a/pandora_server/lib/PandoraFMS/PluginTools.pm b/pandora_server/lib/PandoraFMS/PluginTools.pm
index f425b6ee41..bd6a37691d 100644
--- a/pandora_server/lib/PandoraFMS/PluginTools.pm
+++ b/pandora_server/lib/PandoraFMS/PluginTools.pm
@@ -34,7 +34,7 @@ our @ISA = qw(Exporter);
 
 # version: Defines actual version of Pandora Server for this module only
 my $pandora_version = "7.0NG.762";
-my $pandora_build = "220618";
+my $pandora_build = "220619";
 our $VERSION = $pandora_version." ".$pandora_build;
 
 our %EXPORT_TAGS = ( 'all' => [ qw() ] );
diff --git a/pandora_server/pandora_server.redhat.spec b/pandora_server/pandora_server.redhat.spec
index 882bb234f0..84aa10adb9 100644
--- a/pandora_server/pandora_server.redhat.spec
+++ b/pandora_server/pandora_server.redhat.spec
@@ -3,7 +3,7 @@
 #
 %define name        pandorafms_server
 %define version     7.0NG.762
-%define release     220618
+%define release     220619
 
 Summary:            Pandora FMS Server
 Name:               %{name}
diff --git a/pandora_server/pandora_server.spec b/pandora_server/pandora_server.spec
index 83f80d4ceb..153d1395fc 100644
--- a/pandora_server/pandora_server.spec
+++ b/pandora_server/pandora_server.spec
@@ -3,7 +3,7 @@
 #
 %define name        pandorafms_server
 %define version     7.0NG.762
-%define release     220618
+%define release     220619
 
 Summary:            Pandora FMS Server
 Name:               %{name}
diff --git a/pandora_server/pandora_server_installer b/pandora_server/pandora_server_installer
index aaed1610b9..75f38b4044 100755
--- a/pandora_server/pandora_server_installer
+++ b/pandora_server/pandora_server_installer
@@ -9,7 +9,7 @@
 # **********************************************************************
 
 PI_VERSION="7.0NG.762"
-PI_BUILD="220618"
+PI_BUILD="220619"
 
 MODE=$1
 if [ $# -gt 1 ]; then
diff --git a/pandora_server/util/pandora_db.pl b/pandora_server/util/pandora_db.pl
index c0021482d4..dd53b00233 100755
--- a/pandora_server/util/pandora_db.pl
+++ b/pandora_server/util/pandora_db.pl
@@ -35,7 +35,7 @@ use PandoraFMS::Config;
 use PandoraFMS::DB;
 
 # version: define current version
-my $version = "7.0NG.762 Build 220618";
+my $version = "7.0NG.762 Build 220619";
 
 # Pandora server configuration
 my %conf;
diff --git a/pandora_server/util/pandora_manage.pl b/pandora_server/util/pandora_manage.pl
index 36d9cd7d5f..ad6edbae13 100755
--- a/pandora_server/util/pandora_manage.pl
+++ b/pandora_server/util/pandora_manage.pl
@@ -36,7 +36,7 @@ use Encode::Locale;
 Encode::Locale::decode_argv;
 
 # version: define current version
-my $version = "7.0NG.762 Build 220618";
+my $version = "7.0NG.762 Build 220619";
 
 # save program name for logging
 my $progname = basename($0);

From c4fadcd4611f908a39ad9a98cef4f9e68b2088db Mon Sep 17 00:00:00 2001
From: artica <artica.devel@gmail.com>
Date: Mon, 20 Jun 2022 01:00:14 +0200
Subject: [PATCH 136/138] Auto-updated build strings.

---
 pandora_agents/unix/DEBIAN/control             | 2 +-
 pandora_agents/unix/DEBIAN/make_deb_package.sh | 2 +-
 pandora_agents/unix/pandora_agent              | 2 +-
 pandora_agents/unix/pandora_agent.redhat.spec  | 2 +-
 pandora_agents/unix/pandora_agent.spec         | 2 +-
 pandora_agents/unix/pandora_agent_installer    | 2 +-
 pandora_agents/win32/installer/pandora.mpi     | 2 +-
 pandora_agents/win32/pandora.cc                | 2 +-
 pandora_agents/win32/versioninfo.rc            | 2 +-
 pandora_console/DEBIAN/control                 | 2 +-
 pandora_console/DEBIAN/make_deb_package.sh     | 2 +-
 pandora_console/include/config_process.php     | 2 +-
 pandora_console/install.php                    | 2 +-
 pandora_console/pandora_console.redhat.spec    | 2 +-
 pandora_console/pandora_console.rhel7.spec     | 2 +-
 pandora_console/pandora_console.spec           | 2 +-
 pandora_server/DEBIAN/control                  | 2 +-
 pandora_server/DEBIAN/make_deb_package.sh      | 2 +-
 pandora_server/lib/PandoraFMS/Config.pm        | 2 +-
 pandora_server/lib/PandoraFMS/PluginTools.pm   | 2 +-
 pandora_server/pandora_server.redhat.spec      | 2 +-
 pandora_server/pandora_server.spec             | 2 +-
 pandora_server/pandora_server_installer        | 2 +-
 pandora_server/util/pandora_db.pl              | 2 +-
 pandora_server/util/pandora_manage.pl          | 2 +-
 25 files changed, 25 insertions(+), 25 deletions(-)

diff --git a/pandora_agents/unix/DEBIAN/control b/pandora_agents/unix/DEBIAN/control
index 985cf9ef4d..a43b43fbe3 100644
--- a/pandora_agents/unix/DEBIAN/control
+++ b/pandora_agents/unix/DEBIAN/control
@@ -1,5 +1,5 @@
 package: pandorafms-agent-unix
-Version: 7.0NG.762-220619
+Version: 7.0NG.762-220620
 Architecture: all
 Priority: optional
 Section: admin
diff --git a/pandora_agents/unix/DEBIAN/make_deb_package.sh b/pandora_agents/unix/DEBIAN/make_deb_package.sh
index 1eb5a4ccae..87448e8cd5 100644
--- a/pandora_agents/unix/DEBIAN/make_deb_package.sh
+++ b/pandora_agents/unix/DEBIAN/make_deb_package.sh
@@ -14,7 +14,7 @@
 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 # GNU General Public License for more details.
 
-pandora_version="7.0NG.762-220619"
+pandora_version="7.0NG.762-220620"
 
 echo "Test if you has the tools for to make the packages."
 whereis dpkg-deb | cut -d":" -f2 | grep dpkg-deb > /dev/null
diff --git a/pandora_agents/unix/pandora_agent b/pandora_agents/unix/pandora_agent
index e2d1de442d..2076b7052f 100755
--- a/pandora_agents/unix/pandora_agent
+++ b/pandora_agents/unix/pandora_agent
@@ -1015,7 +1015,7 @@ my $Sem = undef;
 my $ThreadSem = undef;
 
 use constant AGENT_VERSION => '7.0NG.762';
-use constant AGENT_BUILD => '220619';
+use constant AGENT_BUILD => '220620';
 
 # Agent log default file size maximum and instances
 use constant DEFAULT_MAX_LOG_SIZE => 600000;
diff --git a/pandora_agents/unix/pandora_agent.redhat.spec b/pandora_agents/unix/pandora_agent.redhat.spec
index 347235da01..12daca8f79 100644
--- a/pandora_agents/unix/pandora_agent.redhat.spec
+++ b/pandora_agents/unix/pandora_agent.redhat.spec
@@ -3,7 +3,7 @@
 #
 %define name        pandorafms_agent_unix
 %define version     7.0NG.762
-%define release     220619
+%define release     220620
 
 Summary:            Pandora FMS Linux agent, PERL version
 Name:               %{name}
diff --git a/pandora_agents/unix/pandora_agent.spec b/pandora_agents/unix/pandora_agent.spec
index b91508103e..18de41e11f 100644
--- a/pandora_agents/unix/pandora_agent.spec
+++ b/pandora_agents/unix/pandora_agent.spec
@@ -3,7 +3,7 @@
 #
 %define name        pandorafms_agent_unix
 %define version     7.0NG.762
-%define release     220619
+%define release     220620
 
 Summary:            Pandora FMS Linux agent, PERL version
 Name:               %{name}
diff --git a/pandora_agents/unix/pandora_agent_installer b/pandora_agents/unix/pandora_agent_installer
index 346b87c2c2..1e83c788ba 100755
--- a/pandora_agents/unix/pandora_agent_installer
+++ b/pandora_agents/unix/pandora_agent_installer
@@ -10,7 +10,7 @@
 # **********************************************************************
 
 PI_VERSION="7.0NG.762"
-PI_BUILD="220619"
+PI_BUILD="220620"
 OS_NAME=`uname -s`
 
 FORCE=0
diff --git a/pandora_agents/win32/installer/pandora.mpi b/pandora_agents/win32/installer/pandora.mpi
index 37b5bd1c8b..e9027236c7 100644
--- a/pandora_agents/win32/installer/pandora.mpi
+++ b/pandora_agents/win32/installer/pandora.mpi
@@ -186,7 +186,7 @@ UpgradeApplicationID
 {}
 
 Version
-{220619}
+{220620}
 
 ViewReadme
 {Yes}
diff --git a/pandora_agents/win32/pandora.cc b/pandora_agents/win32/pandora.cc
index d5f6c43b9d..75735e3070 100644
--- a/pandora_agents/win32/pandora.cc
+++ b/pandora_agents/win32/pandora.cc
@@ -30,7 +30,7 @@ using namespace Pandora;
 using namespace Pandora_Strutils;
 
 #define PATH_SIZE    _MAX_PATH+1
-#define PANDORA_VERSION ("7.0NG.762 Build 220619")
+#define PANDORA_VERSION ("7.0NG.762 Build 220620")
 
 string pandora_path;
 string pandora_dir;
diff --git a/pandora_agents/win32/versioninfo.rc b/pandora_agents/win32/versioninfo.rc
index 0914e49161..8b8a991284 100644
--- a/pandora_agents/win32/versioninfo.rc
+++ b/pandora_agents/win32/versioninfo.rc
@@ -11,7 +11,7 @@ BEGIN
       VALUE "LegalCopyright", "Artica ST"
       VALUE "OriginalFilename", "PandoraAgent.exe"
       VALUE "ProductName", "Pandora FMS Windows Agent"
-      VALUE "ProductVersion", "(7.0NG.762(Build 220619))"
+      VALUE "ProductVersion", "(7.0NG.762(Build 220620))"
       VALUE "FileVersion", "1.0.0.0"
     END
   END
diff --git a/pandora_console/DEBIAN/control b/pandora_console/DEBIAN/control
index 002d445195..54575236a4 100644
--- a/pandora_console/DEBIAN/control
+++ b/pandora_console/DEBIAN/control
@@ -1,5 +1,5 @@
 package: pandorafms-console
-Version: 7.0NG.762-220619
+Version: 7.0NG.762-220620
 Architecture: all
 Priority: optional
 Section: admin
diff --git a/pandora_console/DEBIAN/make_deb_package.sh b/pandora_console/DEBIAN/make_deb_package.sh
index 1d0c6eeeb6..9ab336af88 100644
--- a/pandora_console/DEBIAN/make_deb_package.sh
+++ b/pandora_console/DEBIAN/make_deb_package.sh
@@ -14,7 +14,7 @@
 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 # GNU General Public License for more details.
 
-pandora_version="7.0NG.762-220619"
+pandora_version="7.0NG.762-220620"
 
 package_pear=0
 package_pandora=1
diff --git a/pandora_console/include/config_process.php b/pandora_console/include/config_process.php
index f6780f4739..530016aa01 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 = 'PC220619';
+$build_version = 'PC220620';
 $pandora_version = 'v7.0NG.762';
 
 // Do not overwrite default timezone set if defined.
diff --git a/pandora_console/install.php b/pandora_console/install.php
index f70f45cb57..81a352c816 100644
--- a/pandora_console/install.php
+++ b/pandora_console/install.php
@@ -129,7 +129,7 @@
         <div style='height: 10px'>
             <?php
             $version = '7.0NG.762';
-            $build = '220619';
+            $build = '220620';
             $banner = "v$version Build $build";
 
             error_reporting(0);
diff --git a/pandora_console/pandora_console.redhat.spec b/pandora_console/pandora_console.redhat.spec
index 3b1411144e..c6391d6b18 100644
--- a/pandora_console/pandora_console.redhat.spec
+++ b/pandora_console/pandora_console.redhat.spec
@@ -3,7 +3,7 @@
 #
 %define name        pandorafms_console
 %define version     7.0NG.762
-%define release     220619
+%define release     220620
 
 # User and Group under which Apache is running
 %define httpd_name  httpd
diff --git a/pandora_console/pandora_console.rhel7.spec b/pandora_console/pandora_console.rhel7.spec
index 7bea1a79c3..b7a7850eef 100644
--- a/pandora_console/pandora_console.rhel7.spec
+++ b/pandora_console/pandora_console.rhel7.spec
@@ -3,7 +3,7 @@
 #
 %define name        pandorafms_console
 %define version     7.0NG.762
-%define release     220619
+%define release     220620
 
 # User and Group under which Apache is running
 %define httpd_name  httpd
diff --git a/pandora_console/pandora_console.spec b/pandora_console/pandora_console.spec
index fa33343448..acbee11566 100644
--- a/pandora_console/pandora_console.spec
+++ b/pandora_console/pandora_console.spec
@@ -3,7 +3,7 @@
 #
 %define name        pandorafms_console
 %define version     7.0NG.762
-%define release     220619
+%define release     220620
 %define httpd_name      httpd
 # User and Group under which Apache is running
 %define httpd_name  apache2
diff --git a/pandora_server/DEBIAN/control b/pandora_server/DEBIAN/control
index 23271b68f7..6c12070028 100644
--- a/pandora_server/DEBIAN/control
+++ b/pandora_server/DEBIAN/control
@@ -1,5 +1,5 @@
 package: pandorafms-server
-Version: 7.0NG.762-220619
+Version: 7.0NG.762-220620
 Architecture: all
 Priority: optional
 Section: admin
diff --git a/pandora_server/DEBIAN/make_deb_package.sh b/pandora_server/DEBIAN/make_deb_package.sh
index 4ca2e70a9a..fbc6049862 100644
--- a/pandora_server/DEBIAN/make_deb_package.sh
+++ b/pandora_server/DEBIAN/make_deb_package.sh
@@ -14,7 +14,7 @@
 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 # GNU General Public License for more details.
 
-pandora_version="7.0NG.762-220619"
+pandora_version="7.0NG.762-220620"
 
 package_cpan=0
 package_pandora=1
diff --git a/pandora_server/lib/PandoraFMS/Config.pm b/pandora_server/lib/PandoraFMS/Config.pm
index d20aa3b630..28fbd652bd 100644
--- a/pandora_server/lib/PandoraFMS/Config.pm
+++ b/pandora_server/lib/PandoraFMS/Config.pm
@@ -46,7 +46,7 @@ our @EXPORT = qw(
 
 # version: Defines actual version of Pandora Server for this module only
 my $pandora_version = "7.0NG.762";
-my $pandora_build = "220619";
+my $pandora_build = "220620";
 our $VERSION = $pandora_version." ".$pandora_build;
 
 # Setup hash
diff --git a/pandora_server/lib/PandoraFMS/PluginTools.pm b/pandora_server/lib/PandoraFMS/PluginTools.pm
index bd6a37691d..3f53a64183 100644
--- a/pandora_server/lib/PandoraFMS/PluginTools.pm
+++ b/pandora_server/lib/PandoraFMS/PluginTools.pm
@@ -34,7 +34,7 @@ our @ISA = qw(Exporter);
 
 # version: Defines actual version of Pandora Server for this module only
 my $pandora_version = "7.0NG.762";
-my $pandora_build = "220619";
+my $pandora_build = "220620";
 our $VERSION = $pandora_version." ".$pandora_build;
 
 our %EXPORT_TAGS = ( 'all' => [ qw() ] );
diff --git a/pandora_server/pandora_server.redhat.spec b/pandora_server/pandora_server.redhat.spec
index 84aa10adb9..bb3b63219c 100644
--- a/pandora_server/pandora_server.redhat.spec
+++ b/pandora_server/pandora_server.redhat.spec
@@ -3,7 +3,7 @@
 #
 %define name        pandorafms_server
 %define version     7.0NG.762
-%define release     220619
+%define release     220620
 
 Summary:            Pandora FMS Server
 Name:               %{name}
diff --git a/pandora_server/pandora_server.spec b/pandora_server/pandora_server.spec
index 153d1395fc..f31e0fcd07 100644
--- a/pandora_server/pandora_server.spec
+++ b/pandora_server/pandora_server.spec
@@ -3,7 +3,7 @@
 #
 %define name        pandorafms_server
 %define version     7.0NG.762
-%define release     220619
+%define release     220620
 
 Summary:            Pandora FMS Server
 Name:               %{name}
diff --git a/pandora_server/pandora_server_installer b/pandora_server/pandora_server_installer
index 75f38b4044..72a13f9a0c 100755
--- a/pandora_server/pandora_server_installer
+++ b/pandora_server/pandora_server_installer
@@ -9,7 +9,7 @@
 # **********************************************************************
 
 PI_VERSION="7.0NG.762"
-PI_BUILD="220619"
+PI_BUILD="220620"
 
 MODE=$1
 if [ $# -gt 1 ]; then
diff --git a/pandora_server/util/pandora_db.pl b/pandora_server/util/pandora_db.pl
index dd53b00233..d554701dc2 100755
--- a/pandora_server/util/pandora_db.pl
+++ b/pandora_server/util/pandora_db.pl
@@ -35,7 +35,7 @@ use PandoraFMS::Config;
 use PandoraFMS::DB;
 
 # version: define current version
-my $version = "7.0NG.762 Build 220619";
+my $version = "7.0NG.762 Build 220620";
 
 # Pandora server configuration
 my %conf;
diff --git a/pandora_server/util/pandora_manage.pl b/pandora_server/util/pandora_manage.pl
index ad6edbae13..75ab7c90b3 100755
--- a/pandora_server/util/pandora_manage.pl
+++ b/pandora_server/util/pandora_manage.pl
@@ -36,7 +36,7 @@ use Encode::Locale;
 Encode::Locale::decode_argv;
 
 # version: define current version
-my $version = "7.0NG.762 Build 220619";
+my $version = "7.0NG.762 Build 220620";
 
 # save program name for logging
 my $progname = basename($0);

From 71326bf8bbe1914f4f0245d9b7f763066ba99eee Mon Sep 17 00:00:00 2001
From: Luis <luis.calvo@artica.es>
Date: Mon, 20 Jun 2022 14:57:45 +0000
Subject: [PATCH 137/138] Update pandoradb_migrate_6.0_to_759.mysql.sql

---
 pandora_console/extras/pandoradb_migrate_6.0_to_759.mysql.sql | 2 --
 1 file changed, 2 deletions(-)

diff --git a/pandora_console/extras/pandoradb_migrate_6.0_to_759.mysql.sql b/pandora_console/extras/pandoradb_migrate_6.0_to_759.mysql.sql
index 73203c82e9..ca68a5472a 100644
--- a/pandora_console/extras/pandoradb_migrate_6.0_to_759.mysql.sql
+++ b/pandora_console/extras/pandoradb_migrate_6.0_to_759.mysql.sql
@@ -1660,8 +1660,6 @@ ALTER TABLE tagente ADD COLUMN (alias varchar(600) not null default '');
 ALTER TABLE tagente ADD `alias_as_name` int(2) unsigned default '0';
 ALTER TABLE tagente ADD COLUMN `safe_mode_module` int(10) unsigned NOT NULL default '0';
 ALTER TABLE `tagente` ADD COLUMN `cps` int NOT NULL default 0;
-ALTER TABLE `tagente` ADD COLUMN `satellite_server` INT NOT NULL DEFAULT 0;
-
 
 UPDATE tagente SET tagente.alias = tagente.nombre;
 

From a5d13f5e164b81fad3f7efd84b5b61ea54243833 Mon Sep 17 00:00:00 2001
From: artica <artica.devel@gmail.com>
Date: Tue, 21 Jun 2022 01:00:18 +0200
Subject: [PATCH 138/138] Auto-updated build strings.

---
 pandora_agents/unix/DEBIAN/control             | 2 +-
 pandora_agents/unix/DEBIAN/make_deb_package.sh | 2 +-
 pandora_agents/unix/pandora_agent              | 2 +-
 pandora_agents/unix/pandora_agent.redhat.spec  | 2 +-
 pandora_agents/unix/pandora_agent.spec         | 2 +-
 pandora_agents/unix/pandora_agent_installer    | 2 +-
 pandora_agents/win32/installer/pandora.mpi     | 2 +-
 pandora_agents/win32/pandora.cc                | 2 +-
 pandora_agents/win32/versioninfo.rc            | 2 +-
 pandora_console/DEBIAN/control                 | 2 +-
 pandora_console/DEBIAN/make_deb_package.sh     | 2 +-
 pandora_console/include/config_process.php     | 2 +-
 pandora_console/install.php                    | 2 +-
 pandora_console/pandora_console.redhat.spec    | 2 +-
 pandora_console/pandora_console.rhel7.spec     | 2 +-
 pandora_console/pandora_console.spec           | 2 +-
 pandora_server/DEBIAN/control                  | 2 +-
 pandora_server/DEBIAN/make_deb_package.sh      | 2 +-
 pandora_server/lib/PandoraFMS/Config.pm        | 2 +-
 pandora_server/lib/PandoraFMS/PluginTools.pm   | 2 +-
 pandora_server/pandora_server.redhat.spec      | 2 +-
 pandora_server/pandora_server.spec             | 2 +-
 pandora_server/pandora_server_installer        | 2 +-
 pandora_server/util/pandora_db.pl              | 2 +-
 pandora_server/util/pandora_manage.pl          | 2 +-
 25 files changed, 25 insertions(+), 25 deletions(-)

diff --git a/pandora_agents/unix/DEBIAN/control b/pandora_agents/unix/DEBIAN/control
index a43b43fbe3..a0036b2d74 100644
--- a/pandora_agents/unix/DEBIAN/control
+++ b/pandora_agents/unix/DEBIAN/control
@@ -1,5 +1,5 @@
 package: pandorafms-agent-unix
-Version: 7.0NG.762-220620
+Version: 7.0NG.762-220621
 Architecture: all
 Priority: optional
 Section: admin
diff --git a/pandora_agents/unix/DEBIAN/make_deb_package.sh b/pandora_agents/unix/DEBIAN/make_deb_package.sh
index 87448e8cd5..120963407c 100644
--- a/pandora_agents/unix/DEBIAN/make_deb_package.sh
+++ b/pandora_agents/unix/DEBIAN/make_deb_package.sh
@@ -14,7 +14,7 @@
 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 # GNU General Public License for more details.
 
-pandora_version="7.0NG.762-220620"
+pandora_version="7.0NG.762-220621"
 
 echo "Test if you has the tools for to make the packages."
 whereis dpkg-deb | cut -d":" -f2 | grep dpkg-deb > /dev/null
diff --git a/pandora_agents/unix/pandora_agent b/pandora_agents/unix/pandora_agent
index 2076b7052f..08c1d4b6eb 100755
--- a/pandora_agents/unix/pandora_agent
+++ b/pandora_agents/unix/pandora_agent
@@ -1015,7 +1015,7 @@ my $Sem = undef;
 my $ThreadSem = undef;
 
 use constant AGENT_VERSION => '7.0NG.762';
-use constant AGENT_BUILD => '220620';
+use constant AGENT_BUILD => '220621';
 
 # Agent log default file size maximum and instances
 use constant DEFAULT_MAX_LOG_SIZE => 600000;
diff --git a/pandora_agents/unix/pandora_agent.redhat.spec b/pandora_agents/unix/pandora_agent.redhat.spec
index 12daca8f79..baea70960f 100644
--- a/pandora_agents/unix/pandora_agent.redhat.spec
+++ b/pandora_agents/unix/pandora_agent.redhat.spec
@@ -3,7 +3,7 @@
 #
 %define name        pandorafms_agent_unix
 %define version     7.0NG.762
-%define release     220620
+%define release     220621
 
 Summary:            Pandora FMS Linux agent, PERL version
 Name:               %{name}
diff --git a/pandora_agents/unix/pandora_agent.spec b/pandora_agents/unix/pandora_agent.spec
index 18de41e11f..af0f1b3595 100644
--- a/pandora_agents/unix/pandora_agent.spec
+++ b/pandora_agents/unix/pandora_agent.spec
@@ -3,7 +3,7 @@
 #
 %define name        pandorafms_agent_unix
 %define version     7.0NG.762
-%define release     220620
+%define release     220621
 
 Summary:            Pandora FMS Linux agent, PERL version
 Name:               %{name}
diff --git a/pandora_agents/unix/pandora_agent_installer b/pandora_agents/unix/pandora_agent_installer
index 1e83c788ba..bfb6150270 100755
--- a/pandora_agents/unix/pandora_agent_installer
+++ b/pandora_agents/unix/pandora_agent_installer
@@ -10,7 +10,7 @@
 # **********************************************************************
 
 PI_VERSION="7.0NG.762"
-PI_BUILD="220620"
+PI_BUILD="220621"
 OS_NAME=`uname -s`
 
 FORCE=0
diff --git a/pandora_agents/win32/installer/pandora.mpi b/pandora_agents/win32/installer/pandora.mpi
index e9027236c7..fef7490e41 100644
--- a/pandora_agents/win32/installer/pandora.mpi
+++ b/pandora_agents/win32/installer/pandora.mpi
@@ -186,7 +186,7 @@ UpgradeApplicationID
 {}
 
 Version
-{220620}
+{220621}
 
 ViewReadme
 {Yes}
diff --git a/pandora_agents/win32/pandora.cc b/pandora_agents/win32/pandora.cc
index 75735e3070..ddc0746f56 100644
--- a/pandora_agents/win32/pandora.cc
+++ b/pandora_agents/win32/pandora.cc
@@ -30,7 +30,7 @@ using namespace Pandora;
 using namespace Pandora_Strutils;
 
 #define PATH_SIZE    _MAX_PATH+1
-#define PANDORA_VERSION ("7.0NG.762 Build 220620")
+#define PANDORA_VERSION ("7.0NG.762 Build 220621")
 
 string pandora_path;
 string pandora_dir;
diff --git a/pandora_agents/win32/versioninfo.rc b/pandora_agents/win32/versioninfo.rc
index 8b8a991284..bc78bf9669 100644
--- a/pandora_agents/win32/versioninfo.rc
+++ b/pandora_agents/win32/versioninfo.rc
@@ -11,7 +11,7 @@ BEGIN
       VALUE "LegalCopyright", "Artica ST"
       VALUE "OriginalFilename", "PandoraAgent.exe"
       VALUE "ProductName", "Pandora FMS Windows Agent"
-      VALUE "ProductVersion", "(7.0NG.762(Build 220620))"
+      VALUE "ProductVersion", "(7.0NG.762(Build 220621))"
       VALUE "FileVersion", "1.0.0.0"
     END
   END
diff --git a/pandora_console/DEBIAN/control b/pandora_console/DEBIAN/control
index 54575236a4..20416c9a6a 100644
--- a/pandora_console/DEBIAN/control
+++ b/pandora_console/DEBIAN/control
@@ -1,5 +1,5 @@
 package: pandorafms-console
-Version: 7.0NG.762-220620
+Version: 7.0NG.762-220621
 Architecture: all
 Priority: optional
 Section: admin
diff --git a/pandora_console/DEBIAN/make_deb_package.sh b/pandora_console/DEBIAN/make_deb_package.sh
index 9ab336af88..d76894ce29 100644
--- a/pandora_console/DEBIAN/make_deb_package.sh
+++ b/pandora_console/DEBIAN/make_deb_package.sh
@@ -14,7 +14,7 @@
 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 # GNU General Public License for more details.
 
-pandora_version="7.0NG.762-220620"
+pandora_version="7.0NG.762-220621"
 
 package_pear=0
 package_pandora=1
diff --git a/pandora_console/include/config_process.php b/pandora_console/include/config_process.php
index 530016aa01..f031621c65 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 = 'PC220620';
+$build_version = 'PC220621';
 $pandora_version = 'v7.0NG.762';
 
 // Do not overwrite default timezone set if defined.
diff --git a/pandora_console/install.php b/pandora_console/install.php
index 81a352c816..16458f531d 100644
--- a/pandora_console/install.php
+++ b/pandora_console/install.php
@@ -129,7 +129,7 @@
         <div style='height: 10px'>
             <?php
             $version = '7.0NG.762';
-            $build = '220620';
+            $build = '220621';
             $banner = "v$version Build $build";
 
             error_reporting(0);
diff --git a/pandora_console/pandora_console.redhat.spec b/pandora_console/pandora_console.redhat.spec
index c6391d6b18..5b2f9a823d 100644
--- a/pandora_console/pandora_console.redhat.spec
+++ b/pandora_console/pandora_console.redhat.spec
@@ -3,7 +3,7 @@
 #
 %define name        pandorafms_console
 %define version     7.0NG.762
-%define release     220620
+%define release     220621
 
 # User and Group under which Apache is running
 %define httpd_name  httpd
diff --git a/pandora_console/pandora_console.rhel7.spec b/pandora_console/pandora_console.rhel7.spec
index b7a7850eef..605109573a 100644
--- a/pandora_console/pandora_console.rhel7.spec
+++ b/pandora_console/pandora_console.rhel7.spec
@@ -3,7 +3,7 @@
 #
 %define name        pandorafms_console
 %define version     7.0NG.762
-%define release     220620
+%define release     220621
 
 # User and Group under which Apache is running
 %define httpd_name  httpd
diff --git a/pandora_console/pandora_console.spec b/pandora_console/pandora_console.spec
index acbee11566..a32fedff3c 100644
--- a/pandora_console/pandora_console.spec
+++ b/pandora_console/pandora_console.spec
@@ -3,7 +3,7 @@
 #
 %define name        pandorafms_console
 %define version     7.0NG.762
-%define release     220620
+%define release     220621
 %define httpd_name      httpd
 # User and Group under which Apache is running
 %define httpd_name  apache2
diff --git a/pandora_server/DEBIAN/control b/pandora_server/DEBIAN/control
index 6c12070028..53d7ad8528 100644
--- a/pandora_server/DEBIAN/control
+++ b/pandora_server/DEBIAN/control
@@ -1,5 +1,5 @@
 package: pandorafms-server
-Version: 7.0NG.762-220620
+Version: 7.0NG.762-220621
 Architecture: all
 Priority: optional
 Section: admin
diff --git a/pandora_server/DEBIAN/make_deb_package.sh b/pandora_server/DEBIAN/make_deb_package.sh
index fbc6049862..1f6903a686 100644
--- a/pandora_server/DEBIAN/make_deb_package.sh
+++ b/pandora_server/DEBIAN/make_deb_package.sh
@@ -14,7 +14,7 @@
 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 # GNU General Public License for more details.
 
-pandora_version="7.0NG.762-220620"
+pandora_version="7.0NG.762-220621"
 
 package_cpan=0
 package_pandora=1
diff --git a/pandora_server/lib/PandoraFMS/Config.pm b/pandora_server/lib/PandoraFMS/Config.pm
index 28fbd652bd..1b43cfee3d 100644
--- a/pandora_server/lib/PandoraFMS/Config.pm
+++ b/pandora_server/lib/PandoraFMS/Config.pm
@@ -46,7 +46,7 @@ our @EXPORT = qw(
 
 # version: Defines actual version of Pandora Server for this module only
 my $pandora_version = "7.0NG.762";
-my $pandora_build = "220620";
+my $pandora_build = "220621";
 our $VERSION = $pandora_version." ".$pandora_build;
 
 # Setup hash
diff --git a/pandora_server/lib/PandoraFMS/PluginTools.pm b/pandora_server/lib/PandoraFMS/PluginTools.pm
index 3f53a64183..3f785b750d 100644
--- a/pandora_server/lib/PandoraFMS/PluginTools.pm
+++ b/pandora_server/lib/PandoraFMS/PluginTools.pm
@@ -34,7 +34,7 @@ our @ISA = qw(Exporter);
 
 # version: Defines actual version of Pandora Server for this module only
 my $pandora_version = "7.0NG.762";
-my $pandora_build = "220620";
+my $pandora_build = "220621";
 our $VERSION = $pandora_version." ".$pandora_build;
 
 our %EXPORT_TAGS = ( 'all' => [ qw() ] );
diff --git a/pandora_server/pandora_server.redhat.spec b/pandora_server/pandora_server.redhat.spec
index bb3b63219c..c04b045fc8 100644
--- a/pandora_server/pandora_server.redhat.spec
+++ b/pandora_server/pandora_server.redhat.spec
@@ -3,7 +3,7 @@
 #
 %define name        pandorafms_server
 %define version     7.0NG.762
-%define release     220620
+%define release     220621
 
 Summary:            Pandora FMS Server
 Name:               %{name}
diff --git a/pandora_server/pandora_server.spec b/pandora_server/pandora_server.spec
index f31e0fcd07..4b995009bd 100644
--- a/pandora_server/pandora_server.spec
+++ b/pandora_server/pandora_server.spec
@@ -3,7 +3,7 @@
 #
 %define name        pandorafms_server
 %define version     7.0NG.762
-%define release     220620
+%define release     220621
 
 Summary:            Pandora FMS Server
 Name:               %{name}
diff --git a/pandora_server/pandora_server_installer b/pandora_server/pandora_server_installer
index 72a13f9a0c..7949e21322 100755
--- a/pandora_server/pandora_server_installer
+++ b/pandora_server/pandora_server_installer
@@ -9,7 +9,7 @@
 # **********************************************************************
 
 PI_VERSION="7.0NG.762"
-PI_BUILD="220620"
+PI_BUILD="220621"
 
 MODE=$1
 if [ $# -gt 1 ]; then
diff --git a/pandora_server/util/pandora_db.pl b/pandora_server/util/pandora_db.pl
index d554701dc2..c242b947d1 100755
--- a/pandora_server/util/pandora_db.pl
+++ b/pandora_server/util/pandora_db.pl
@@ -35,7 +35,7 @@ use PandoraFMS::Config;
 use PandoraFMS::DB;
 
 # version: define current version
-my $version = "7.0NG.762 Build 220620";
+my $version = "7.0NG.762 Build 220621";
 
 # Pandora server configuration
 my %conf;
diff --git a/pandora_server/util/pandora_manage.pl b/pandora_server/util/pandora_manage.pl
index 75ab7c90b3..354baccbf4 100755
--- a/pandora_server/util/pandora_manage.pl
+++ b/pandora_server/util/pandora_manage.pl
@@ -36,7 +36,7 @@ use Encode::Locale;
 Encode::Locale::decode_argv;
 
 # version: define current version
-my $version = "7.0NG.762 Build 220620";
+my $version = "7.0NG.762 Build 220621";
 
 # save program name for logging
 my $progname = basename($0);